From ed570bdcef9825cf435d7628ea09a599fdf384ef Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Mon, 9 Feb 2026 22:53:49 -0600 Subject: [PATCH 01/16] Port PDS tools from sde-data-agents to akd-ext - Add tools for 6 PDS APIs: IMG, ODE, OPUS, PDS4, PDS Catalog, and SBN - Add Literal types derived from sde-data-agents resources (without resources) - Validate parity extensively for IMG, ODE, OPUS, PDS4, and PDS Catalog Note: SBN parity validation still TODO --- akd_ext/tools/__init__.py | 264 +++++ akd_ext/tools/pds/__init__.py | 299 ++++++ akd_ext/tools/pds/img/__init__.py | 74 ++ akd_ext/tools/pds/img/_types.py | 73 ++ akd_ext/tools/pds/img/count.py | 195 ++++ akd_ext/tools/pds/img/get_facets.py | 172 ++++ akd_ext/tools/pds/img/get_product.py | 163 ++++ akd_ext/tools/pds/img/search.py | 251 +++++ akd_ext/tools/pds/ode/__init__.py | 71 ++ akd_ext/tools/pds/ode/count_products.py | 129 +++ akd_ext/tools/pds/ode/get_feature_bounds.py | 134 +++ akd_ext/tools/pds/ode/list_feature_classes.py | 122 +++ akd_ext/tools/pds/ode/list_feature_names.py | 115 +++ akd_ext/tools/pds/ode/list_instruments.py | 154 +++ akd_ext/tools/pds/ode/search_products.py | 244 +++++ akd_ext/tools/pds/ode/types.py | 6 + akd_ext/tools/pds/opus/__init__.py | 72 ++ akd_ext/tools/pds/opus/opus_count.py | 140 +++ akd_ext/tools/pds/opus/opus_get_fields.py | 128 +++ akd_ext/tools/pds/opus/opus_get_files.py | 135 +++ akd_ext/tools/pds/opus/opus_get_metadata.py | 137 +++ akd_ext/tools/pds/opus/opus_search.py | 180 ++++ akd_ext/tools/pds/opus/types.py | 40 + akd_ext/tools/pds/pds4/__init__.py | 80 ++ .../tools/pds/pds4/crawl_context_product.py | 96 ++ akd_ext/tools/pds/pds4/get_product.py | 74 ++ akd_ext/tools/pds/pds4/search_bundles.py | 179 ++++ akd_ext/tools/pds/pds4/search_collections.py | 149 +++ .../tools/pds/pds4/search_instrument_hosts.py | 114 +++ akd_ext/tools/pds/pds4/search_instruments.py | 110 +++ .../tools/pds/pds4/search_investigations.py | 118 +++ akd_ext/tools/pds/pds4/search_products.py | 199 ++++ akd_ext/tools/pds/pds4/search_targets.py | 111 +++ akd_ext/tools/pds/pds4/types.py | 57 ++ akd_ext/tools/pds/pds_catalog/__init__.py | 64 ++ akd_ext/tools/pds/pds_catalog/get_dataset.py | 112 +++ .../tools/pds/pds_catalog/list_missions.py | 118 +++ akd_ext/tools/pds/pds_catalog/list_targets.py | 133 +++ akd_ext/tools/pds/pds_catalog/search.py | 207 ++++ akd_ext/tools/pds/pds_catalog/stats.py | 98 ++ akd_ext/tools/pds/pds_catalog/types.py | 18 + akd_ext/tools/pds/sbn/__init__.py | 38 + akd_ext/tools/pds/sbn/list_sources.py | 117 +++ akd_ext/tools/pds/sbn/search_coordinates.py | 171 ++++ akd_ext/tools/pds/sbn/search_object.py | 166 ++++ akd_ext/tools/pds/sbn/types.py | 52 + akd_ext/tools/pds/utils/__init__.py | 29 + akd_ext/tools/pds/utils/img_api_models.py | 303 ++++++ akd_ext/tools/pds/utils/img_client.py | 490 ++++++++++ akd_ext/tools/pds/utils/ode_api_models.py | 418 ++++++++ akd_ext/tools/pds/utils/ode_client.py | 421 ++++++++ akd_ext/tools/pds/utils/opus_api_models.py | 368 +++++++ akd_ext/tools/pds/utils/opus_client.py | 335 +++++++ akd_ext/tools/pds/utils/pds4_api_models.py | 494 ++++++++++ akd_ext/tools/pds/utils/pds4_client.py | 905 ++++++++++++++++++ .../tools/pds/utils/pds_catalog_api_models.py | 137 +++ akd_ext/tools/pds/utils/pds_catalog_client.py | 547 +++++++++++ akd_ext/tools/pds/utils/sbn_api_models.py | 300 ++++++ akd_ext/tools/pds/utils/sbn_client.py | 393 ++++++++ 59 files changed, 11019 insertions(+) create mode 100644 akd_ext/tools/pds/__init__.py create mode 100644 akd_ext/tools/pds/img/__init__.py create mode 100644 akd_ext/tools/pds/img/_types.py create mode 100644 akd_ext/tools/pds/img/count.py create mode 100644 akd_ext/tools/pds/img/get_facets.py create mode 100644 akd_ext/tools/pds/img/get_product.py create mode 100644 akd_ext/tools/pds/img/search.py create mode 100644 akd_ext/tools/pds/ode/__init__.py create mode 100644 akd_ext/tools/pds/ode/count_products.py create mode 100644 akd_ext/tools/pds/ode/get_feature_bounds.py create mode 100644 akd_ext/tools/pds/ode/list_feature_classes.py create mode 100644 akd_ext/tools/pds/ode/list_feature_names.py create mode 100644 akd_ext/tools/pds/ode/list_instruments.py create mode 100644 akd_ext/tools/pds/ode/search_products.py create mode 100644 akd_ext/tools/pds/ode/types.py create mode 100644 akd_ext/tools/pds/opus/__init__.py create mode 100644 akd_ext/tools/pds/opus/opus_count.py create mode 100644 akd_ext/tools/pds/opus/opus_get_fields.py create mode 100644 akd_ext/tools/pds/opus/opus_get_files.py create mode 100644 akd_ext/tools/pds/opus/opus_get_metadata.py create mode 100644 akd_ext/tools/pds/opus/opus_search.py create mode 100644 akd_ext/tools/pds/opus/types.py create mode 100644 akd_ext/tools/pds/pds4/__init__.py create mode 100644 akd_ext/tools/pds/pds4/crawl_context_product.py create mode 100644 akd_ext/tools/pds/pds4/get_product.py create mode 100644 akd_ext/tools/pds/pds4/search_bundles.py create mode 100644 akd_ext/tools/pds/pds4/search_collections.py create mode 100644 akd_ext/tools/pds/pds4/search_instrument_hosts.py create mode 100644 akd_ext/tools/pds/pds4/search_instruments.py create mode 100644 akd_ext/tools/pds/pds4/search_investigations.py create mode 100644 akd_ext/tools/pds/pds4/search_products.py create mode 100644 akd_ext/tools/pds/pds4/search_targets.py create mode 100644 akd_ext/tools/pds/pds4/types.py create mode 100644 akd_ext/tools/pds/pds_catalog/__init__.py create mode 100644 akd_ext/tools/pds/pds_catalog/get_dataset.py create mode 100644 akd_ext/tools/pds/pds_catalog/list_missions.py create mode 100644 akd_ext/tools/pds/pds_catalog/list_targets.py create mode 100644 akd_ext/tools/pds/pds_catalog/search.py create mode 100644 akd_ext/tools/pds/pds_catalog/stats.py create mode 100644 akd_ext/tools/pds/pds_catalog/types.py create mode 100644 akd_ext/tools/pds/sbn/__init__.py create mode 100644 akd_ext/tools/pds/sbn/list_sources.py create mode 100644 akd_ext/tools/pds/sbn/search_coordinates.py create mode 100644 akd_ext/tools/pds/sbn/search_object.py create mode 100644 akd_ext/tools/pds/sbn/types.py create mode 100644 akd_ext/tools/pds/utils/__init__.py create mode 100644 akd_ext/tools/pds/utils/img_api_models.py create mode 100644 akd_ext/tools/pds/utils/img_client.py create mode 100644 akd_ext/tools/pds/utils/ode_api_models.py create mode 100644 akd_ext/tools/pds/utils/ode_client.py create mode 100644 akd_ext/tools/pds/utils/opus_api_models.py create mode 100644 akd_ext/tools/pds/utils/opus_client.py create mode 100644 akd_ext/tools/pds/utils/pds4_api_models.py create mode 100644 akd_ext/tools/pds/utils/pds4_client.py create mode 100644 akd_ext/tools/pds/utils/pds_catalog_api_models.py create mode 100644 akd_ext/tools/pds/utils/pds_catalog_client.py create mode 100644 akd_ext/tools/pds/utils/sbn_api_models.py create mode 100644 akd_ext/tools/pds/utils/sbn_client.py diff --git a/akd_ext/tools/__init__.py b/akd_ext/tools/__init__.py index fb1328e..b26aa34 100644 --- a/akd_ext/tools/__init__.py +++ b/akd_ext/tools/__init__.py @@ -20,6 +20,136 @@ RepositorySearchToolOutputSchema, RepositorySearchToolConfig, ) +from .pds import ( + PDS4SearchBundlesTool, + PDS4SearchBundlesInputSchema, + PDS4SearchBundlesOutputSchema, + PDS4SearchProductsTool, + PDS4SearchProductsInputSchema, + PDS4SearchProductsOutputSchema, + PDS4SearchCollectionsTool, + PDS4SearchCollectionsInputSchema, + PDS4SearchCollectionsOutputSchema, + PDS4SearchInvestigationsTool, + PDS4SearchInvestigationsInputSchema, + PDS4SearchInvestigationsOutputSchema, + PDS4SearchTargetsTool, + PDS4SearchTargetsInputSchema, + PDS4SearchTargetsOutputSchema, + PDS4SearchInstrumentHostsTool, + PDS4SearchInstrumentHostsInputSchema, + PDS4SearchInstrumentHostsOutputSchema, + PDS4SearchInstrumentsTool, + PDS4SearchInstrumentsInputSchema, + PDS4SearchInstrumentsOutputSchema, + PDS4CrawlContextProductTool, + PDS4CrawlContextProductInputSchema, + PDS4CrawlContextProductOutputSchema, + PDS4GetProductTool, + PDS4GetProductInputSchema, + PDS4GetProductOutputSchema, + PDSCatalogSearchTool, + PDSCatalogSearchInputSchema, + PDSCatalogSearchOutputSchema, + PDSCatalogSearchToolConfig, + PDSCatalogGetDatasetTool, + PDSCatalogGetDatasetInputSchema, + PDSCatalogGetDatasetOutputSchema, + PDSCatalogGetDatasetToolConfig, + PDSCatalogListMissionsTool, + PDSCatalogListMissionsInputSchema, + PDSCatalogListMissionsOutputSchema, + PDSCatalogListMissionsToolConfig, + PDSCatalogMissionItem, + PDSCatalogListTargetsTool, + PDSCatalogListTargetsInputSchema, + PDSCatalogListTargetsOutputSchema, + PDSCatalogListTargetsToolConfig, + PDSCatalogTargetItem, + PDSCatalogStatsTool, + PDSCatalogStatsInputSchema, + PDSCatalogStatsOutputSchema, + PDSCatalogStatsToolConfig, + ODECountProductsTool, + ODECountProductsInputSchema, + ODECountProductsOutputSchema, + ODECountProductsToolConfig, + ODEGetFeatureBoundsTool, + ODEGetFeatureBoundsInputSchema, + ODEGetFeatureBoundsOutputSchema, + ODEGetFeatureBoundsToolConfig, + ODEListFeatureClassesTool, + ODEListFeatureClassesInputSchema, + ODEListFeatureClassesOutputSchema, + ODEListFeatureClassesToolConfig, + ODEListFeatureNamesTool, + ODEListFeatureNamesInputSchema, + ODEListFeatureNamesOutputSchema, + ODEListFeatureNamesToolConfig, + ODEListInstrumentsTool, + ODEListInstrumentsInputSchema, + ODEListInstrumentsOutputSchema, + ODEListInstrumentsToolConfig, + ODESearchProductsTool, + ODESearchProductsInputSchema, + ODESearchProductsOutputSchema, + ODESearchProductsToolConfig, + OPUSSearchTool, + OPUSSearchInputSchema, + OPUSSearchOutputSchema, + OPUSSearchToolConfig, + OPUSObservationSummary, + OPUSCountTool, + OPUSCountInputSchema, + OPUSCountOutputSchema, + OPUSCountToolConfig, + OPUSGetMetadataTool, + OPUSGetMetadataInputSchema, + OPUSGetMetadataOutputSchema, + OPUSGetMetadataToolConfig, + OPUSGetFilesTool, + OPUSGetFilesInputSchema, + OPUSGetFilesOutputSchema, + OPUSGetFilesToolConfig, + OPUSBrowseImages, + OPUSGetFieldsTool, + OPUSGetFieldsInputSchema, + OPUSGetFieldsOutputSchema, + OPUSGetFieldsToolConfig, + OPUSFieldItem, + IMGSearchTool, + IMGSearchInputSchema, + IMGSearchOutputSchema, + IMGSearchToolConfig, + IMGImageSize, + IMGProductSummary, + IMGCountTool, + IMGCountInputSchema, + IMGCountOutputSchema, + IMGCountToolConfig, + IMGGetProductTool, + IMGGetProductInputSchema, + IMGGetProductOutputSchema, + IMGGetProductToolConfig, + IMGProductDetailURLs, + IMGGetFacetsTool, + IMGGetFacetsInputSchema, + IMGGetFacetsOutputSchema, + IMGGetFacetsToolConfig, + IMGFacetValueItem, + SBNListSourcesTool, + SBNListSourcesInputSchema, + SBNListSourcesOutputSchema, + SBNListSourcesToolConfig, + SBNSearchObjectTool, + SBNSearchObjectInputSchema, + SBNSearchObjectOutputSchema, + SBNSearchObjectToolConfig, + SBNSearchCoordinatesTool, + SBNSearchCoordinatesInputSchema, + SBNSearchCoordinatesOutputSchema, + SBNSearchCoordinatesToolConfig, +) __all__ = [ "DummyTool", @@ -38,4 +168,138 @@ "RepositorySearchToolInputSchema", "RepositorySearchToolOutputSchema", "RepositorySearchToolConfig", + # PDS4 Tools + "PDS4SearchBundlesTool", + "PDS4SearchBundlesInputSchema", + "PDS4SearchBundlesOutputSchema", + "PDS4SearchProductsTool", + "PDS4SearchProductsInputSchema", + "PDS4SearchProductsOutputSchema", + "PDS4SearchCollectionsTool", + "PDS4SearchCollectionsInputSchema", + "PDS4SearchCollectionsOutputSchema", + "PDS4SearchInvestigationsTool", + "PDS4SearchInvestigationsInputSchema", + "PDS4SearchInvestigationsOutputSchema", + "PDS4SearchTargetsTool", + "PDS4SearchTargetsInputSchema", + "PDS4SearchTargetsOutputSchema", + "PDS4SearchInstrumentHostsTool", + "PDS4SearchInstrumentHostsInputSchema", + "PDS4SearchInstrumentHostsOutputSchema", + "PDS4SearchInstrumentsTool", + "PDS4SearchInstrumentsInputSchema", + "PDS4SearchInstrumentsOutputSchema", + "PDS4CrawlContextProductTool", + "PDS4CrawlContextProductInputSchema", + "PDS4CrawlContextProductOutputSchema", + "PDS4GetProductTool", + "PDS4GetProductInputSchema", + "PDS4GetProductOutputSchema", + # PDS Catalog Tools + "PDSCatalogSearchTool", + "PDSCatalogSearchInputSchema", + "PDSCatalogSearchOutputSchema", + "PDSCatalogSearchToolConfig", + "PDSCatalogGetDatasetTool", + "PDSCatalogGetDatasetInputSchema", + "PDSCatalogGetDatasetOutputSchema", + "PDSCatalogGetDatasetToolConfig", + "PDSCatalogListMissionsTool", + "PDSCatalogListMissionsInputSchema", + "PDSCatalogListMissionsOutputSchema", + "PDSCatalogListMissionsToolConfig", + "PDSCatalogMissionItem", + "PDSCatalogListTargetsTool", + "PDSCatalogListTargetsInputSchema", + "PDSCatalogListTargetsOutputSchema", + "PDSCatalogListTargetsToolConfig", + "PDSCatalogTargetItem", + "PDSCatalogStatsTool", + "PDSCatalogStatsInputSchema", + "PDSCatalogStatsOutputSchema", + "PDSCatalogStatsToolConfig", + # ODE Tools + "ODECountProductsTool", + "ODECountProductsInputSchema", + "ODECountProductsOutputSchema", + "ODECountProductsToolConfig", + "ODEGetFeatureBoundsTool", + "ODEGetFeatureBoundsInputSchema", + "ODEGetFeatureBoundsOutputSchema", + "ODEGetFeatureBoundsToolConfig", + "ODEListFeatureClassesTool", + "ODEListFeatureClassesInputSchema", + "ODEListFeatureClassesOutputSchema", + "ODEListFeatureClassesToolConfig", + "ODEListFeatureNamesTool", + "ODEListFeatureNamesInputSchema", + "ODEListFeatureNamesOutputSchema", + "ODEListFeatureNamesToolConfig", + "ODEListInstrumentsTool", + "ODEListInstrumentsInputSchema", + "ODEListInstrumentsOutputSchema", + "ODEListInstrumentsToolConfig", + "ODESearchProductsTool", + "ODESearchProductsInputSchema", + "ODESearchProductsOutputSchema", + "ODESearchProductsToolConfig", + # OPUS Tools + "OPUSSearchTool", + "OPUSSearchInputSchema", + "OPUSSearchOutputSchema", + "OPUSSearchToolConfig", + "OPUSObservationSummary", + "OPUSCountTool", + "OPUSCountInputSchema", + "OPUSCountOutputSchema", + "OPUSCountToolConfig", + "OPUSGetMetadataTool", + "OPUSGetMetadataInputSchema", + "OPUSGetMetadataOutputSchema", + "OPUSGetMetadataToolConfig", + "OPUSGetFilesTool", + "OPUSGetFilesInputSchema", + "OPUSGetFilesOutputSchema", + "OPUSGetFilesToolConfig", + "OPUSBrowseImages", + "OPUSGetFieldsTool", + "OPUSGetFieldsInputSchema", + "OPUSGetFieldsOutputSchema", + "OPUSGetFieldsToolConfig", + "OPUSFieldItem", + # IMG Tools + "IMGSearchTool", + "IMGSearchInputSchema", + "IMGSearchOutputSchema", + "IMGSearchToolConfig", + "IMGImageSize", + "IMGProductSummary", + "IMGCountTool", + "IMGCountInputSchema", + "IMGCountOutputSchema", + "IMGCountToolConfig", + "IMGGetProductTool", + "IMGGetProductInputSchema", + "IMGGetProductOutputSchema", + "IMGGetProductToolConfig", + "IMGProductDetailURLs", + "IMGGetFacetsTool", + "IMGGetFacetsInputSchema", + "IMGGetFacetsOutputSchema", + "IMGGetFacetsToolConfig", + "IMGFacetValueItem", + # SBN Tools + "SBNListSourcesTool", + "SBNListSourcesInputSchema", + "SBNListSourcesOutputSchema", + "SBNListSourcesToolConfig", + "SBNSearchObjectTool", + "SBNSearchObjectInputSchema", + "SBNSearchObjectOutputSchema", + "SBNSearchObjectToolConfig", + "SBNSearchCoordinatesTool", + "SBNSearchCoordinatesInputSchema", + "SBNSearchCoordinatesOutputSchema", + "SBNSearchCoordinatesToolConfig", ] diff --git a/akd_ext/tools/pds/__init__.py b/akd_ext/tools/pds/__init__.py new file mode 100644 index 0000000..95bf7d9 --- /dev/null +++ b/akd_ext/tools/pds/__init__.py @@ -0,0 +1,299 @@ +"""PDS (Planetary Data System) tools and utilities. + +This module contains all PDS-related tools for accessing various planetary data systems: +- IMG: IMG Atlas for planetary imagery search +- ODE: Orbital Data Explorer for planetary data access +- OPUS: Outer Planets Unified Search +- PDS4: NASA Planetary Data System Registry API +- PDS Catalog: Pre-scraped PDS datasets +- SBN: SBN CATCH for comet and asteroid observations +""" + +# PDS4 Tools +from akd_ext.tools.pds.pds4 import ( + PDS4CrawlContextProductInputSchema, + PDS4CrawlContextProductOutputSchema, + PDS4CrawlContextProductTool, + PDS4GetProductInputSchema, + PDS4GetProductOutputSchema, + PDS4GetProductTool, + PDS4SearchBundlesInputSchema, + PDS4SearchBundlesOutputSchema, + PDS4SearchBundlesTool, + PDS4SearchCollectionsInputSchema, + PDS4SearchCollectionsOutputSchema, + PDS4SearchCollectionsTool, + PDS4SearchInstrumentHostsInputSchema, + PDS4SearchInstrumentHostsOutputSchema, + PDS4SearchInstrumentHostsTool, + PDS4SearchInstrumentsInputSchema, + PDS4SearchInstrumentsOutputSchema, + PDS4SearchInstrumentsTool, + PDS4SearchInvestigationsInputSchema, + PDS4SearchInvestigationsOutputSchema, + PDS4SearchInvestigationsTool, + PDS4SearchProductsInputSchema, + PDS4SearchProductsOutputSchema, + PDS4SearchProductsTool, + PDS4SearchTargetsInputSchema, + PDS4SearchTargetsOutputSchema, + PDS4SearchTargetsTool, +) + +# PDS Catalog Tools +from akd_ext.tools.pds.pds_catalog import ( + PDSCatalogGetDatasetInputSchema, + PDSCatalogGetDatasetOutputSchema, + PDSCatalogGetDatasetTool, + PDSCatalogGetDatasetToolConfig, + PDSCatalogListMissionsInputSchema, + PDSCatalogListMissionsOutputSchema, + PDSCatalogListMissionsTool, + PDSCatalogListMissionsToolConfig, + PDSCatalogListTargetsInputSchema, + PDSCatalogListTargetsOutputSchema, + PDSCatalogListTargetsTool, + PDSCatalogListTargetsToolConfig, + PDSCatalogMissionItem, + PDSCatalogSearchInputSchema, + PDSCatalogSearchOutputSchema, + PDSCatalogSearchTool, + PDSCatalogSearchToolConfig, + PDSCatalogStatsInputSchema, + PDSCatalogStatsOutputSchema, + PDSCatalogStatsTool, + PDSCatalogStatsToolConfig, + PDSCatalogTargetItem, +) + +# ODE Tools +from akd_ext.tools.pds.ode import ( + ODECountProductsInputSchema, + ODECountProductsOutputSchema, + ODECountProductsTool, + ODECountProductsToolConfig, + ODEGetFeatureBoundsInputSchema, + ODEGetFeatureBoundsOutputSchema, + ODEGetFeatureBoundsTool, + ODEGetFeatureBoundsToolConfig, + ODEListFeatureClassesInputSchema, + ODEListFeatureClassesOutputSchema, + ODEListFeatureClassesTool, + ODEListFeatureClassesToolConfig, + ODEListFeatureNamesInputSchema, + ODEListFeatureNamesOutputSchema, + ODEListFeatureNamesTool, + ODEListFeatureNamesToolConfig, + ODEListInstrumentsInputSchema, + ODEListInstrumentsOutputSchema, + ODEListInstrumentsTool, + ODEListInstrumentsToolConfig, + ODESearchProductsInputSchema, + ODESearchProductsOutputSchema, + ODESearchProductsTool, + ODESearchProductsToolConfig, +) + +# OPUS Tools +from akd_ext.tools.pds.opus import ( + OPUSBrowseImages, + OPUSCountInputSchema, + OPUSCountOutputSchema, + OPUSCountTool, + OPUSCountToolConfig, + OPUSFieldItem, + OPUSGetFieldsInputSchema, + OPUSGetFieldsOutputSchema, + OPUSGetFieldsTool, + OPUSGetFieldsToolConfig, + OPUSGetFilesInputSchema, + OPUSGetFilesOutputSchema, + OPUSGetFilesTool, + OPUSGetFilesToolConfig, + OPUSGetMetadataInputSchema, + OPUSGetMetadataOutputSchema, + OPUSGetMetadataTool, + OPUSGetMetadataToolConfig, + OPUSObservationSummary, + OPUSSearchInputSchema, + OPUSSearchOutputSchema, + OPUSSearchTool, + OPUSSearchToolConfig, +) + +# IMG Tools +from akd_ext.tools.pds.img import ( + IMGCountInputSchema, + IMGCountOutputSchema, + IMGCountTool, + IMGCountToolConfig, + IMGFacetValueItem, + IMGGetFacetsInputSchema, + IMGGetFacetsOutputSchema, + IMGGetFacetsTool, + IMGGetFacetsToolConfig, + IMGGetProductInputSchema, + IMGGetProductOutputSchema, + IMGGetProductTool, + IMGGetProductToolConfig, + IMGImageSize, + IMGProductDetailURLs, + IMGProductSummary, + IMGSearchInputSchema, + IMGSearchOutputSchema, + IMGSearchTool, + IMGSearchToolConfig, +) + +# SBN Tools +from akd_ext.tools.pds.sbn import ( + SBNListSourcesInputSchema, + SBNListSourcesOutputSchema, + SBNListSourcesTool, + SBNListSourcesToolConfig, + SBNSearchCoordinatesInputSchema, + SBNSearchCoordinatesOutputSchema, + SBNSearchCoordinatesTool, + SBNSearchCoordinatesToolConfig, + SBNSearchObjectInputSchema, + SBNSearchObjectOutputSchema, + SBNSearchObjectTool, + SBNSearchObjectToolConfig, +) + +__all__ = [ + # PDS4 Tools + "PDS4SearchBundlesTool", + "PDS4SearchBundlesInputSchema", + "PDS4SearchBundlesOutputSchema", + "PDS4SearchProductsTool", + "PDS4SearchProductsInputSchema", + "PDS4SearchProductsOutputSchema", + "PDS4SearchCollectionsTool", + "PDS4SearchCollectionsInputSchema", + "PDS4SearchCollectionsOutputSchema", + "PDS4SearchInvestigationsTool", + "PDS4SearchInvestigationsInputSchema", + "PDS4SearchInvestigationsOutputSchema", + "PDS4SearchTargetsTool", + "PDS4SearchTargetsInputSchema", + "PDS4SearchTargetsOutputSchema", + "PDS4SearchInstrumentHostsTool", + "PDS4SearchInstrumentHostsInputSchema", + "PDS4SearchInstrumentHostsOutputSchema", + "PDS4SearchInstrumentsTool", + "PDS4SearchInstrumentsInputSchema", + "PDS4SearchInstrumentsOutputSchema", + "PDS4CrawlContextProductTool", + "PDS4CrawlContextProductInputSchema", + "PDS4CrawlContextProductOutputSchema", + "PDS4GetProductTool", + "PDS4GetProductInputSchema", + "PDS4GetProductOutputSchema", + # PDS Catalog Tools + "PDSCatalogSearchTool", + "PDSCatalogSearchInputSchema", + "PDSCatalogSearchOutputSchema", + "PDSCatalogSearchToolConfig", + "PDSCatalogGetDatasetTool", + "PDSCatalogGetDatasetInputSchema", + "PDSCatalogGetDatasetOutputSchema", + "PDSCatalogGetDatasetToolConfig", + "PDSCatalogListMissionsTool", + "PDSCatalogListMissionsInputSchema", + "PDSCatalogListMissionsOutputSchema", + "PDSCatalogListMissionsToolConfig", + "PDSCatalogMissionItem", + "PDSCatalogListTargetsTool", + "PDSCatalogListTargetsInputSchema", + "PDSCatalogListTargetsOutputSchema", + "PDSCatalogListTargetsToolConfig", + "PDSCatalogTargetItem", + "PDSCatalogStatsTool", + "PDSCatalogStatsInputSchema", + "PDSCatalogStatsOutputSchema", + "PDSCatalogStatsToolConfig", + # ODE Tools + "ODECountProductsTool", + "ODECountProductsInputSchema", + "ODECountProductsOutputSchema", + "ODECountProductsToolConfig", + "ODEGetFeatureBoundsTool", + "ODEGetFeatureBoundsInputSchema", + "ODEGetFeatureBoundsOutputSchema", + "ODEGetFeatureBoundsToolConfig", + "ODEListFeatureClassesTool", + "ODEListFeatureClassesInputSchema", + "ODEListFeatureClassesOutputSchema", + "ODEListFeatureClassesToolConfig", + "ODEListFeatureNamesTool", + "ODEListFeatureNamesInputSchema", + "ODEListFeatureNamesOutputSchema", + "ODEListFeatureNamesToolConfig", + "ODEListInstrumentsTool", + "ODEListInstrumentsInputSchema", + "ODEListInstrumentsOutputSchema", + "ODEListInstrumentsToolConfig", + "ODESearchProductsTool", + "ODESearchProductsInputSchema", + "ODESearchProductsOutputSchema", + "ODESearchProductsToolConfig", + # OPUS Tools + "OPUSSearchTool", + "OPUSSearchInputSchema", + "OPUSSearchOutputSchema", + "OPUSSearchToolConfig", + "OPUSObservationSummary", + "OPUSCountTool", + "OPUSCountInputSchema", + "OPUSCountOutputSchema", + "OPUSCountToolConfig", + "OPUSGetMetadataTool", + "OPUSGetMetadataInputSchema", + "OPUSGetMetadataOutputSchema", + "OPUSGetMetadataToolConfig", + "OPUSGetFilesTool", + "OPUSGetFilesInputSchema", + "OPUSGetFilesOutputSchema", + "OPUSGetFilesToolConfig", + "OPUSBrowseImages", + "OPUSGetFieldsTool", + "OPUSGetFieldsInputSchema", + "OPUSGetFieldsOutputSchema", + "OPUSGetFieldsToolConfig", + "OPUSFieldItem", + # IMG Tools + "IMGSearchTool", + "IMGSearchInputSchema", + "IMGSearchOutputSchema", + "IMGSearchToolConfig", + "IMGImageSize", + "IMGProductSummary", + "IMGCountTool", + "IMGCountInputSchema", + "IMGCountOutputSchema", + "IMGCountToolConfig", + "IMGGetProductTool", + "IMGGetProductInputSchema", + "IMGGetProductOutputSchema", + "IMGGetProductToolConfig", + "IMGProductDetailURLs", + "IMGGetFacetsTool", + "IMGGetFacetsInputSchema", + "IMGGetFacetsOutputSchema", + "IMGGetFacetsToolConfig", + "IMGFacetValueItem", + # SBN Tools + "SBNListSourcesTool", + "SBNListSourcesInputSchema", + "SBNListSourcesOutputSchema", + "SBNListSourcesToolConfig", + "SBNSearchObjectTool", + "SBNSearchObjectInputSchema", + "SBNSearchObjectOutputSchema", + "SBNSearchObjectToolConfig", + "SBNSearchCoordinatesTool", + "SBNSearchCoordinatesInputSchema", + "SBNSearchCoordinatesOutputSchema", + "SBNSearchCoordinatesToolConfig", +] diff --git a/akd_ext/tools/pds/img/__init__.py b/akd_ext/tools/pds/img/__init__.py new file mode 100644 index 0000000..b264a21 --- /dev/null +++ b/akd_ext/tools/pds/img/__init__.py @@ -0,0 +1,74 @@ +"""IMG Atlas tools for planetary imagery search and discovery.""" + +from akd_ext.tools.pds.img._types import ( + IMGFacetField, + IMGInstrument, + IMGMission, + IMGProductType, + IMGSortField, + IMGSortOrder, + IMGTarget, +) +from akd_ext.tools.pds.img.count import ( + IMGCountInputSchema, + IMGCountOutputSchema, + IMGCountTool, + IMGCountToolConfig, +) +from akd_ext.tools.pds.img.get_facets import ( + IMGFacetValueItem, + IMGGetFacetsInputSchema, + IMGGetFacetsOutputSchema, + IMGGetFacetsTool, + IMGGetFacetsToolConfig, +) +from akd_ext.tools.pds.img.get_product import ( + IMGGetProductInputSchema, + IMGGetProductOutputSchema, + IMGGetProductTool, + IMGGetProductToolConfig, + IMGProductDetailURLs, +) +from akd_ext.tools.pds.img.search import ( + IMGImageSize, + IMGProductSummary, + IMGSearchInputSchema, + IMGSearchOutputSchema, + IMGSearchTool, + IMGSearchToolConfig, +) + +__all__ = [ + # Shared types + "IMGTarget", + "IMGMission", + "IMGInstrument", + "IMGProductType", + "IMGSortField", + "IMGSortOrder", + "IMGFacetField", + # Search tool + "IMGSearchTool", + "IMGSearchInputSchema", + "IMGSearchOutputSchema", + "IMGSearchToolConfig", + "IMGImageSize", + "IMGProductSummary", + # Count tool + "IMGCountTool", + "IMGCountInputSchema", + "IMGCountOutputSchema", + "IMGCountToolConfig", + # Get product tool + "IMGGetProductTool", + "IMGGetProductInputSchema", + "IMGGetProductOutputSchema", + "IMGGetProductToolConfig", + "IMGProductDetailURLs", + # Get facets tool + "IMGGetFacetsTool", + "IMGGetFacetsInputSchema", + "IMGGetFacetsOutputSchema", + "IMGGetFacetsToolConfig", + "IMGFacetValueItem", +] diff --git a/akd_ext/tools/pds/img/_types.py b/akd_ext/tools/pds/img/_types.py new file mode 100644 index 0000000..60c3914 --- /dev/null +++ b/akd_ext/tools/pds/img/_types.py @@ -0,0 +1,73 @@ +"""Shared type definitions for IMG Atlas tools. + +This module defines common Literal types used across multiple IMG tools +to avoid repetition and ensure consistency. +""" + +from typing import Literal + +# Target bodies available in IMG Atlas +IMGTarget = Literal[ + "Mars", + "Saturn", + "Moon", + "Mercury", + "Titan", + "Enceladus", + "Jupiter", + "Io", + "Europa", + "Ganymede", + "Callisto", +] + +# Missions available in IMG Atlas +IMGMission = Literal[ + "MARS EXPLORATION ROVER", + "MARS SCIENCE LABORATORY", + "MARS 2020", + "CASSINI-HUYGENS", + "VOYAGER", + "LUNAR RECONNAISSANCE ORBITER", + "MESSENGER", +] + +# Instruments available in IMG Atlas (flattened from all missions) +IMGInstrument = Literal[ + "CHEMCAM", + "HAZCAM", + "ISS", + "LROC", + "MAHLI", + "MARDI", + "MASTCAM", + "MASTCAM-Z", + "MDIS", + "MI", + "NAVCAM", + "PANCAM", + "PIXL", + "SHERLOC", + "VIMS", +] + +# Product types +IMGProductType = Literal["EDR", "RDR"] + +# Sort fields +IMGSortField = Literal["START_TIME", "PLANET_DAY_NUMBER", "EXPOSURE_DURATION"] + +# Sort order +IMGSortOrder = Literal["asc", "desc"] + +# Facet fields for get_facets tool +IMGFacetField = Literal[ + "TARGET", + "ATLAS_MISSION_NAME", + "ATLAS_INSTRUMENT_NAME", + "ATLAS_SPACECRAFT_NAME", + "PRODUCT_TYPE", + "FRAME_TYPE", + "FILTER_NAME", + "pds_standard", +] \ No newline at end of file diff --git a/akd_ext/tools/pds/img/count.py b/akd_ext/tools/pds/img/count.py new file mode 100644 index 0000000..daa747e --- /dev/null +++ b/akd_ext/tools/pds/img/count.py @@ -0,0 +1,195 @@ +"""IMG Atlas count tool for counting imagery products.""" + +import logging +from typing import Annotated, Any + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.img._types import IMGInstrument, IMGMission, IMGProductType, IMGTarget +from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError + +logger = logging.getLogger(__name__) + + +class IMGCountInputSchema(InputSchema): + """Input schema for IMGCountTool.""" + + target: IMGTarget | None = Field( + None, + description="Target body to filter imagery", + ) + mission: IMGMission | None = Field( + None, + description="Mission name to filter imagery", + ) + instrument: IMGInstrument | None = Field( + None, + description=( + "Instrument name to filter imagery. Common by mission: " + "MER (HAZCAM, NAVCAM, PANCAM, MI), " + "MSL (HAZCAM, NAVCAM, MASTCAM, MAHLI, MARDI, CHEMCAM), " + "Mars2020 (HAZCAM, NAVCAM, MASTCAM-Z, SHERLOC, PIXL), " + "Cassini (ISS, VIMS), " + "Voyager (ISS), " + "LRO (LROC), " + "MESSENGER (MDIS)" + ), + ) + spacecraft: str | None = Field( + None, + description="Spacecraft name filter (e.g., 'CURIOSITY', 'SPIRIT')", + ) + start_time: str | None = Field( + None, description="Start of time range in ISO 8601 format (e.g., '2020-01-01T00:00:00Z')" + ) + stop_time: str | None = Field( + None, description="End of time range in ISO 8601 format (e.g., '2020-12-31T23:59:59Z')" + ) + sol_min: Annotated[int, Field(ge=0)] | None = Field(None, description="Minimum sol number (Mars missions only)") + sol_max: Annotated[int, Field(ge=0)] | None = Field(None, description="Maximum sol number (Mars missions only)") + product_type: IMGProductType | None = Field( + None, description="Product type: 'EDR' for raw data, 'RDR' for processed data" + ) + filter_name: str | None = Field( + None, description="Camera filter name (e.g., 'L0', 'R0', 'RED', 'GREEN', 'BLUE')" + ) + frame_type: str | None = Field(None, description="Frame type filter (e.g., 'FULL', 'SUBFRAME')") + exposure_min: Annotated[float, Field(ge=0)] | None = Field( + None, description="Minimum exposure duration in milliseconds" + ) + exposure_max: Annotated[float, Field(ge=0)] | None = Field( + None, description="Maximum exposure duration in milliseconds" + ) + local_solar_time: str | None = Field( + None, description="Local true solar time filter (e.g., '12:00' for noon images)" + ) + + +class IMGCountOutputSchema(OutputSchema): + """Output schema for IMGCountTool.""" + + status: str = Field(..., description="Status of the request: 'success' or 'error'") + count: int = Field(..., description="Total number of products matching the criteria") + query_time_ms: int = Field(..., description="Query execution time in milliseconds") + filters: dict[str, Any] = Field( + default_factory=dict, description="Applied filters echoed back for reference" + ) + error: str | None = Field(None, description="Error message if status is 'error'") + + +class IMGCountToolConfig(BaseToolConfig): + """Configuration for IMGCountTool.""" + + base_url: str = Field( + default="https://pds-imaging.jpl.nasa.gov/solr/pds_archives/", + description="Base URL for the IMG Atlas API", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + retry_delay: float = Field(default=1.0, description="Base delay between retries in seconds") + + +@mcp_tool +class IMGCountTool(BaseTool[IMGCountInputSchema, IMGCountOutputSchema]): + """Count imagery products matching criteria without retrieving them. + + This tool is useful for understanding data availability before running full searches. + It efficiently returns just the count of matching products without fetching metadata, + which is faster than a full search when you only need to know how many results exist. + + Examples: + Count all Mars images from Curiosity: + target="Mars", mission="MARS SCIENCE LABORATORY" + + Count images from a specific sol range: + target="Mars", sol_min=100, sol_max=200 + + Count images from a specific time range: + start_time="2020-01-01T00:00:00Z", stop_time="2020-12-31T23:59:59Z" + + Count only raw (EDR) images: + target="Mars", product_type="EDR" + """ + + input_schema = IMGCountInputSchema + output_schema = IMGCountOutputSchema + config_schema = IMGCountToolConfig + + async def _arun(self, params: IMGCountInputSchema) -> IMGCountOutputSchema: + """Execute the IMG count tool.""" + try: + async with IMGAtlasClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + retry_delay=self.config.retry_delay, + ) as client: + response = await client.count_products( + target=params.target, + mission=params.mission, + instrument=params.instrument, + spacecraft=params.spacecraft, + start_time=params.start_time, + stop_time=params.stop_time, + sol_min=params.sol_min, + sol_max=params.sol_max, + product_type=params.product_type, + filter_name=params.filter_name, + frame_type=params.frame_type, + exposure_min=params.exposure_min, + exposure_max=params.exposure_max, + local_solar_time=params.local_solar_time, + ) + + if response.status == "error": + return IMGCountOutputSchema( + status="error", + count=0, + query_time_ms=0, + error=response.error, + ) + + # Build filters dictionary for reference + filters = { + "target": params.target, + "mission": params.mission, + "instrument": params.instrument, + "spacecraft": params.spacecraft, + "start_time": params.start_time, + "stop_time": params.stop_time, + "sol_min": params.sol_min, + "sol_max": params.sol_max, + "product_type": params.product_type, + "filter_name": params.filter_name, + "frame_type": params.frame_type, + "exposure_min": params.exposure_min, + "exposure_max": params.exposure_max, + "local_solar_time": params.local_solar_time, + } + + return IMGCountOutputSchema( + status="success", + count=response.count, + query_time_ms=response.query_time_ms, + filters=filters, + ) + + except IMGAtlasClientError as e: + logger.error(f"IMG Atlas client error in IMGCountTool: {e}") + return IMGCountOutputSchema( + status="error", + count=0, + query_time_ms=0, + error=str(e), + ) + except Exception as e: + logger.error(f"Unexpected error in IMGCountTool: {e}") + return IMGCountOutputSchema( + status="error", + count=0, + query_time_ms=0, + error=f"Internal error: {e}", + ) diff --git a/akd_ext/tools/pds/img/get_facets.py b/akd_ext/tools/pds/img/get_facets.py new file mode 100644 index 0000000..496df59 --- /dev/null +++ b/akd_ext/tools/pds/img/get_facets.py @@ -0,0 +1,172 @@ +"""IMG Atlas get facets tool for discovering available field values.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.img._types import IMGFacetField, IMGInstrument, IMGMission, IMGTarget +from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError + +logger = logging.getLogger(__name__) + + +class IMGFacetValueItem(BaseModel): + """A single facet value with its count.""" + + value: str = Field(..., description="The facet value (e.g., 'Mars', 'MASTCAM')") + count: int = Field(..., description="Number of products with this value") + + +class IMGGetFacetsInputSchema(InputSchema): + """Input schema for IMGGetFacetsTool.""" + + facet_field: IMGFacetField = Field( + ..., + description=( + "Field to get values for. Valid fields:\n" + "- 'TARGET': Planetary targets (Mars, Saturn, Moon, Titan, etc.)\n" + "- 'ATLAS_MISSION_NAME': Mission names (MSL, Cassini, Voyager, etc.)\n" + "- 'ATLAS_INSTRUMENT_NAME': Instruments (MASTCAM, ISS, LROC, etc.)\n" + "- 'ATLAS_SPACECRAFT_NAME': Spacecraft names\n" + "- 'PRODUCT_TYPE': Product types (EDR, RDR, etc.)\n" + "- 'FRAME_TYPE': Frame types (FULL, SUBFRAME, etc.)\n" + "- 'FILTER_NAME': Camera filter names\n" + "- 'pds_standard': PDS version (PDS3, PDS4)" + ), + ) + limit: Annotated[int, Field(ge=1, le=1000)] = Field( + 100, description="Maximum number of values to return" + ) + target: IMGTarget | None = Field( + None, description="Optional target filter to narrow results" + ) + mission: IMGMission | None = Field( + None, description="Optional mission filter to narrow results" + ) + instrument: IMGInstrument | None = Field( + None, description="Optional instrument filter to narrow results" + ) + + +class IMGGetFacetsOutputSchema(OutputSchema): + """Output schema for IMGGetFacetsTool.""" + + status: str = Field(..., description="Status of the request: 'success' or 'error'") + facet_field: str = Field(..., description="The facet field that was queried") + query_time_ms: int = Field(..., description="Query execution time in milliseconds") + count: int = Field(..., description="Number of unique values returned") + values: list[IMGFacetValueItem] = Field( + default_factory=list, description="List of facet values with counts, sorted by count descending" + ) + error: str | None = Field(None, description="Error message if status is 'error'") + + +class IMGGetFacetsToolConfig(BaseToolConfig): + """Configuration for IMGGetFacetsTool.""" + + base_url: str = Field( + default="https://pds-imaging.jpl.nasa.gov/solr/pds_archives/", + description="Base URL for the IMG Atlas API", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + retry_delay: float = Field(default=1.0, description="Base delay between retries in seconds") + + +@mcp_tool +class IMGGetFacetsTool(BaseTool[IMGGetFacetsInputSchema, IMGGetFacetsOutputSchema]): + """Get available values and counts for a field in the IMG Atlas archive. + + Use this tool to dynamically discover available targets, missions, instruments, + product types, and other field values. This is more accurate than static lists + as it queries the actual archive and returns current data with counts. + + The results are sorted by count in descending order, showing the most common + values first. + + Examples: + Discover all available targets: + facet_field="TARGET" + + Discover all missions: + facet_field="ATLAS_MISSION_NAME" + + Discover all instruments: + facet_field="ATLAS_INSTRUMENT_NAME" + + Discover instruments for Mars missions only: + facet_field="ATLAS_INSTRUMENT_NAME", target="Mars" + + Discover product types available for Cassini: + facet_field="PRODUCT_TYPE", mission="CASSINI-HUYGENS" + + Discover available filter names for MASTCAM: + facet_field="FILTER_NAME", instrument="MASTCAM" + """ + + input_schema = IMGGetFacetsInputSchema + output_schema = IMGGetFacetsOutputSchema + config_schema = IMGGetFacetsToolConfig + + async def _arun(self, params: IMGGetFacetsInputSchema) -> IMGGetFacetsOutputSchema: + """Execute the IMG get facets tool.""" + try: + async with IMGAtlasClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + retry_delay=self.config.retry_delay, + ) as client: + response = await client.get_facets( + facet_field=params.facet_field, + limit=params.limit, + target=params.target, + mission=params.mission, + instrument=params.instrument, + ) + + if response.status == "error": + return IMGGetFacetsOutputSchema( + status="error", + facet_field=params.facet_field, + query_time_ms=0, + count=0, + error=response.error, + ) + + # Convert to output schema format + values = [ + IMGFacetValueItem(value=v.value, count=v.count) + for v in response.values + ] + + return IMGGetFacetsOutputSchema( + status="success", + facet_field=response.facet_field, + query_time_ms=response.query_time_ms, + count=len(values), + values=values, + ) + + except IMGAtlasClientError as e: + logger.error(f"IMG Atlas client error in IMGGetFacetsTool: {e}") + return IMGGetFacetsOutputSchema( + status="error", + facet_field=params.facet_field, + query_time_ms=0, + count=0, + error=str(e), + ) + except Exception as e: + logger.error(f"Unexpected error in IMGGetFacetsTool: {e}") + return IMGGetFacetsOutputSchema( + status="error", + facet_field=params.facet_field, + query_time_ms=0, + count=0, + error=f"Internal error: {e}", + ) diff --git a/akd_ext/tools/pds/img/get_product.py b/akd_ext/tools/pds/img/get_product.py new file mode 100644 index 0000000..79c4a1b --- /dev/null +++ b/akd_ext/tools/pds/img/get_product.py @@ -0,0 +1,163 @@ +"""IMG Atlas get product tool for retrieving detailed product metadata.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError + +logger = logging.getLogger(__name__) + + +class IMGProductDetailURLs(BaseModel): + """URL container for IMG product detail.""" + + data: str | None = Field(None, description="URL to download the image data file") + label: str | None = Field(None, description="URL to download the PDS label file") + browse: str | None = Field(None, description="URL to browse version of the image") + thumbnail: str | None = Field(None, description="URL to thumbnail version of the image") + + +class IMGGetProductInputSchema(InputSchema): + """Input schema for IMGGetProductTool.""" + + product_id: str = Field(..., description="Product identifier (uuid or PRODUCT_ID)") + + +class IMGGetProductOutputSchema(OutputSchema): + """Output schema for IMGGetProductTool.""" + + status: str = Field(..., description="Status of the request: 'success', 'not_found', or 'error'") + uuid: str | None = Field(None, description="Unique identifier for the product") + product_id: str | None = Field(None, description="PDS product ID") + pds_standard: str | None = Field(None, description="PDS standard version (PDS3 or PDS4)") + target: str | None = Field(None, description="Target body (e.g., Mars, Saturn, Moon)") + product_type: str | None = Field(None, description="Product type (EDR, RDR)") + mission: str | None = Field(None, description="Mission name") + spacecraft: str | None = Field(None, description="Spacecraft name") + instrument: str | None = Field(None, description="Instrument name") + start_time: str | None = Field(None, description="Image start time (ISO 8601)") + stop_time: str | None = Field(None, description="Image stop time (ISO 8601)") + product_creation_time: str | None = Field(None, description="Product creation time (ISO 8601)") + sol: int | None = Field(None, description="Mars sol number (Mars missions only)") + local_solar_time: str | None = Field(None, description="Local true solar time") + solar_azimuth: float | None = Field(None, description="Solar azimuth angle in degrees") + solar_elevation: float | None = Field(None, description="Solar elevation angle in degrees") + lines: int | None = Field(None, description="Number of lines (height) in pixels") + line_samples: int | None = Field(None, description="Number of samples per line (width) in pixels") + exposure_duration_ms: float | None = Field(None, description="Exposure duration in milliseconds") + compression_ratio: float | None = Field(None, description="Compression ratio") + frame_type: str | None = Field(None, description="Frame type (FULL, SUBFRAME)") + center_latitude: float | None = Field(None, description="Center latitude in degrees") + center_longitude: float | None = Field(None, description="Center longitude in degrees") + urls: IMGProductDetailURLs | None = Field(None, description="URLs for data, label, browse, and thumbnail") + error: str | None = Field(None, description="Error message if status is 'error'") + message: str | None = Field(None, description="Additional message (e.g., not found reason)") + + +class IMGGetProductToolConfig(BaseToolConfig): + """Configuration for IMGGetProductTool.""" + + base_url: str = Field( + default="https://pds-imaging.jpl.nasa.gov/solr/pds_archives/", + description="Base URL for the IMG Atlas API", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + retry_delay: float = Field(default=1.0, description="Base delay between retries in seconds") + + +@mcp_tool +class IMGGetProductTool(BaseTool[IMGGetProductInputSchema, IMGGetProductOutputSchema]): + """Get detailed metadata for a specific imagery product. + + This tool retrieves comprehensive metadata for a single product identified by its + uuid or PRODUCT_ID. Use this when you need full details about a specific image + that you found through a search. + + Examples: + Get product by uuid: + product_id="a1b2c3d4-e5f6-7890-abcd-ef1234567890" + + Get product by PRODUCT_ID: + product_id="2N123456789EFFAM00P1234L0M1" + """ + + input_schema = IMGGetProductInputSchema + output_schema = IMGGetProductOutputSchema + config_schema = IMGGetProductToolConfig + + async def _arun(self, params: IMGGetProductInputSchema) -> IMGGetProductOutputSchema: + """Execute the IMG get product tool.""" + try: + async with IMGAtlasClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + retry_delay=self.config.retry_delay, + ) as client: + response = await client.get_product(params.product_id) + + if response.status == "error": + return IMGGetProductOutputSchema( + status="error", + error=response.error, + ) + + if not response.products: + return IMGGetProductOutputSchema( + status="not_found", + message=f"Product '{params.product_id}' not found", + ) + + product = response.products[0] + + urls = IMGProductDetailURLs( + data=product.data_url, + label=product.label_url, + browse=product.browse_url, + thumbnail=product.thumbnail_url, + ) + + return IMGGetProductOutputSchema( + status="success", + uuid=product.uuid, + product_id=product.product_id, + pds_standard=product.pds_standard, + target=product.target, + product_type=product.product_type, + mission=product.mission_name, + spacecraft=product.spacecraft_name, + instrument=product.instrument_name, + start_time=product.start_time, + stop_time=product.stop_time, + product_creation_time=product.product_creation_time, + sol=product.planet_day_number, + local_solar_time=product.local_true_solar_time, + solar_azimuth=product.solar_azimuth, + solar_elevation=product.solar_elevation, + lines=product.lines, + line_samples=product.line_samples, + exposure_duration_ms=product.exposure_duration, + compression_ratio=product.compression_ratio, + frame_type=product.frame_type, + center_latitude=product.center_latitude, + center_longitude=product.center_longitude, + urls=urls, + ) + + except IMGAtlasClientError as e: + logger.error(f"IMG Atlas client error in IMGGetProductTool: {e}") + return IMGGetProductOutputSchema( + status="error", + error=str(e), + ) + except Exception as e: + logger.error(f"Unexpected error in IMGGetProductTool: {e}") + return IMGGetProductOutputSchema( + status="error", + error=f"Internal error: {e}", + ) diff --git a/akd_ext/tools/pds/img/search.py b/akd_ext/tools/pds/img/search.py new file mode 100644 index 0000000..9074e38 --- /dev/null +++ b/akd_ext/tools/pds/img/search.py @@ -0,0 +1,251 @@ +"""IMG Atlas search tool for planetary imagery products.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.img._types import ( + IMGInstrument, + IMGMission, + IMGProductType, + IMGSortField, + IMGSortOrder, + IMGTarget, +) +from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError + +logger = logging.getLogger(__name__) + + +class IMGImageSize(BaseModel): + """Image dimensions in pixels.""" + + lines: int = Field(..., description="Number of lines (height) in pixels") + samples: int = Field(..., description="Number of samples per line (width) in pixels") + + +class IMGProductSummary(BaseModel): + """Product summary in IMG search results.""" + + uuid: str | None = Field(None, description="Unique identifier for the product") + target: str | None = Field(None, description="Target body (e.g., Mars, Saturn, Moon)") + mission: str | None = Field(None, description="Mission name (e.g., MARS SCIENCE LABORATORY)") + spacecraft: str | None = Field(None, description="Spacecraft name (e.g., CURIOSITY)") + instrument: str | None = Field(None, description="Instrument name (e.g., MASTCAM, ISS)") + product_type: str | None = Field(None, description="Product type (EDR for raw, RDR for processed)") + start_time: str | None = Field(None, description="Image start time (ISO 8601 format)") + stop_time: str | None = Field(None, description="Image stop time (ISO 8601 format)") + sol: int | None = Field(None, description="Mars sol number (Mars missions only)") + image_size: IMGImageSize | None = Field(None, description="Image dimensions in pixels") + data_url: str | None = Field(None, description="URL to download the image data file") + label_url: str | None = Field(None, description="URL to download the PDS label file") + browse_url: str | None = Field(None, description="URL to browse version of the image") + thumbnail_url: str | None = Field(None, description="URL to thumbnail version of the image") + + +class IMGSearchInputSchema(InputSchema): + """Input schema for IMGSearchTool.""" + + target: IMGTarget | None = Field( + None, + description=( + "Target body to filter imagery. " + "Use img_get_facets with facet_field='TARGET' to discover additional targets." + ), + ) + mission: IMGMission | None = Field( + None, + description=( + "Mission name to filter imagery. " + "Use img_get_facets with facet_field='ATLAS_MISSION_NAME' to discover additional missions." + ), + ) + instrument: IMGInstrument | None = Field( + None, + description=( + "Instrument name to filter imagery. Common by mission: " + "MER (HAZCAM, NAVCAM, PANCAM, MI), " + "MSL (HAZCAM, NAVCAM, MASTCAM, MAHLI, MARDI, CHEMCAM), " + "Mars2020 (HAZCAM, NAVCAM, MASTCAM-Z, SHERLOC, PIXL), " + "Cassini (ISS, VIMS), " + "Voyager (ISS), " + "LRO (LROC), " + "MESSENGER (MDIS). " + "Use img_get_facets with facet_field='ATLAS_INSTRUMENT_NAME' to discover additional instruments." + ), + ) + spacecraft: str | None = Field( + None, + description="Spacecraft name filter (e.g., 'CURIOSITY', 'SPIRIT', 'CASSINI ORBITER')", + ) + start_time: str | None = Field( + None, description="Start of time range in ISO 8601 format (e.g., '2020-01-01T00:00:00Z')" + ) + stop_time: str | None = Field( + None, description="End of time range in ISO 8601 format (e.g., '2020-12-31T23:59:59Z')" + ) + sol_min: Annotated[int, Field(ge=0)] | None = Field(None, description="Minimum sol number (Mars missions only)") + sol_max: Annotated[int, Field(ge=0)] | None = Field(None, description="Maximum sol number (Mars missions only)") + product_type: IMGProductType | None = Field( + None, description="Product type: 'EDR' for raw data, 'RDR' for processed data" + ) + filter_name: str | None = Field( + None, description="Camera filter name (e.g., 'L0', 'R0', 'RED', 'GREEN', 'BLUE')" + ) + frame_type: str | None = Field(None, description="Frame type filter (e.g., 'FULL', 'SUBFRAME')") + exposure_min: Annotated[float, Field(ge=0)] | None = Field( + None, description="Minimum exposure duration in milliseconds" + ) + exposure_max: Annotated[float, Field(ge=0)] | None = Field( + None, description="Maximum exposure duration in milliseconds" + ) + local_solar_time: str | None = Field( + None, description="Local true solar time filter (e.g., '12:00' for noon images)" + ) + sort_by: IMGSortField | None = Field( + None, description="Field to sort results by" + ) + sort_order: IMGSortOrder = Field("desc", description="Sort direction: 'asc' or 'desc'") + rows: Annotated[int, Field(ge=1, le=1000)] = Field(100, description="Maximum number of products to return") + start: Annotated[int, Field(ge=0)] = Field(0, description="Pagination offset (for retrieving additional pages)") + + +class IMGSearchOutputSchema(OutputSchema): + """Output schema for IMGSearchTool.""" + + status: str = Field(..., description="Status of the request: 'success' or 'error'") + num_found: int = Field(..., description="Total number of products matching the query") + start: int = Field(..., description="Pagination offset used in the query") + query_time_ms: int = Field(..., description="Query execution time in milliseconds") + products: list[IMGProductSummary] = Field( + default_factory=list, description="List of imagery products matching the search criteria" + ) + error: str | None = Field(None, description="Error message if status is 'error'") + + +class IMGSearchToolConfig(BaseToolConfig): + """Configuration for IMGSearchTool.""" + + base_url: str = Field( + default="https://pds-imaging.jpl.nasa.gov/solr/pds_archives/", + description="Base URL for the IMG Atlas API", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + retry_delay: float = Field(default=1.0, description="Base delay between retries in seconds") + + +@mcp_tool +class IMGSearchTool(BaseTool[IMGSearchInputSchema, IMGSearchOutputSchema]): + """Search for planetary imagery in the PDS Imaging Node Atlas archive. + + The Atlas archive contains 30+ million images from Mars rovers (Spirit, Opportunity, + Curiosity, Perseverance), Cassini, Voyager, LRO, and MESSENGER missions. + + This tool provides comprehensive search capabilities across multiple missions with filtering + by target, mission, instrument, time range, sol number, and various image properties. + """ + + input_schema = IMGSearchInputSchema + output_schema = IMGSearchOutputSchema + config_schema = IMGSearchToolConfig + + async def _arun(self, params: IMGSearchInputSchema) -> IMGSearchOutputSchema: + """Execute the IMG search tool.""" + try: + # Build sort parameter + sort_param = None + if params.sort_by: + order = params.sort_order if params.sort_order in ("asc", "desc") else "desc" + sort_param = f"{params.sort_by} {order}" + + async with IMGAtlasClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + retry_delay=self.config.retry_delay, + ) as client: + response = await client.search_products( + target=params.target, + mission=params.mission, + instrument=params.instrument, + spacecraft=params.spacecraft, + start_time=params.start_time, + stop_time=params.stop_time, + sol_min=params.sol_min, + sol_max=params.sol_max, + product_type=params.product_type, + filter_name=params.filter_name, + frame_type=params.frame_type, + exposure_min=params.exposure_min, + exposure_max=params.exposure_max, + local_solar_time=params.local_solar_time, + rows=params.rows, + start=params.start, + sort=sort_param, + ) + + if response.status == "error": + return IMGSearchOutputSchema( + status="error", + num_found=0, + start=0, + query_time_ms=0, + error=response.error, + ) + + # Convert products to summary format + products = [] + for product in response.products: + product_summary = IMGProductSummary( + uuid=product.uuid, + target=product.target, + mission=product.mission_name, + spacecraft=product.spacecraft_name, + instrument=product.instrument_name, + product_type=product.product_type, + start_time=product.start_time, + stop_time=product.stop_time, + sol=product.planet_day_number, + image_size=( + IMGImageSize(lines=product.lines, samples=product.line_samples) + if product.lines is not None and product.line_samples is not None + else None + ), + data_url=product.data_url, + label_url=product.label_url, + browse_url=product.browse_url, + thumbnail_url=product.thumbnail_url, + ) + products.append(product_summary) + + return IMGSearchOutputSchema( + status="success", + num_found=response.num_found, + start=response.start, + query_time_ms=response.query_time_ms, + products=products, + ) + + except IMGAtlasClientError as e: + logger.error(f"IMG Atlas client error in IMGSearchTool: {e}") + return IMGSearchOutputSchema( + status="error", + num_found=0, + start=0, + query_time_ms=0, + error=str(e), + ) + except Exception as e: + logger.error(f"Unexpected error in IMGSearchTool: {e}") + return IMGSearchOutputSchema( + status="error", + num_found=0, + start=0, + query_time_ms=0, + error=f"Internal error: {e}", + ) diff --git a/akd_ext/tools/pds/ode/__init__.py b/akd_ext/tools/pds/ode/__init__.py new file mode 100644 index 0000000..4885872 --- /dev/null +++ b/akd_ext/tools/pds/ode/__init__.py @@ -0,0 +1,71 @@ +"""ODE (Orbital Data Explorer) tools for planetary data access.""" + +from akd_ext.tools.pds.ode.count_products import ( + ODECountProductsInputSchema, + ODECountProductsOutputSchema, + ODECountProductsTool, + ODECountProductsToolConfig, +) +from akd_ext.tools.pds.ode.get_feature_bounds import ( + ODEGetFeatureBoundsInputSchema, + ODEGetFeatureBoundsOutputSchema, + ODEGetFeatureBoundsTool, + ODEGetFeatureBoundsToolConfig, +) +from akd_ext.tools.pds.ode.list_feature_classes import ( + ODEListFeatureClassesInputSchema, + ODEListFeatureClassesOutputSchema, + ODEListFeatureClassesTool, + ODEListFeatureClassesToolConfig, +) +from akd_ext.tools.pds.ode.list_feature_names import ( + ODEListFeatureNamesInputSchema, + ODEListFeatureNamesOutputSchema, + ODEListFeatureNamesTool, + ODEListFeatureNamesToolConfig, +) +from akd_ext.tools.pds.ode.list_instruments import ( + ODEListInstrumentsInputSchema, + ODEListInstrumentsOutputSchema, + ODEListInstrumentsTool, + ODEListInstrumentsToolConfig, +) +from akd_ext.tools.pds.ode.search_products import ( + ODESearchProductsInputSchema, + ODESearchProductsOutputSchema, + ODESearchProductsTool, + ODESearchProductsToolConfig, +) + +__all__ = [ + # Count Products + "ODECountProductsTool", + "ODECountProductsInputSchema", + "ODECountProductsOutputSchema", + "ODECountProductsToolConfig", + # Get Feature Bounds + "ODEGetFeatureBoundsTool", + "ODEGetFeatureBoundsInputSchema", + "ODEGetFeatureBoundsOutputSchema", + "ODEGetFeatureBoundsToolConfig", + # List Feature Classes + "ODEListFeatureClassesTool", + "ODEListFeatureClassesInputSchema", + "ODEListFeatureClassesOutputSchema", + "ODEListFeatureClassesToolConfig", + # List Feature Names + "ODEListFeatureNamesTool", + "ODEListFeatureNamesInputSchema", + "ODEListFeatureNamesOutputSchema", + "ODEListFeatureNamesToolConfig", + # List Instruments + "ODEListInstrumentsTool", + "ODEListInstrumentsInputSchema", + "ODEListInstrumentsOutputSchema", + "ODEListInstrumentsToolConfig", + # Search Products + "ODESearchProductsTool", + "ODESearchProductsInputSchema", + "ODESearchProductsOutputSchema", + "ODESearchProductsToolConfig", +] diff --git a/akd_ext/tools/pds/ode/count_products.py b/akd_ext/tools/pds/ode/count_products.py new file mode 100644 index 0000000..de66769 --- /dev/null +++ b/akd_ext/tools/pds/ode/count_products.py @@ -0,0 +1,129 @@ +"""Count products matching criteria without retrieving them.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.ode.types import TargetType +from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError + +logger = logging.getLogger(__name__) + + +class ODECountProductsInputSchema(InputSchema): + """Input schema for ODECountProductsTool.""" + + target: TargetType = Field(..., description="Planetary body to search") + ihid: str = Field(..., description="Instrument Host ID (e.g., 'MRO', 'LRO', 'MESS')") + iid: str = Field(..., description="Instrument ID (e.g., 'HIRISE', 'CTX', 'LROC', 'MDIS')") + pt: str = Field(..., description="Product Type (e.g., 'RDRV11', 'EDR')") + minlat: Annotated[float, Field(ge=-90, le=90)] | None = Field(None, description="Minimum latitude filter") + maxlat: Annotated[float, Field(ge=-90, le=90)] | None = Field(None, description="Maximum latitude filter") + westlon: Annotated[float, Field(ge=0, le=360)] | None = Field(None, description="Western longitude filter") + eastlon: Annotated[float, Field(ge=0, le=360)] | None = Field(None, description="Eastern longitude filter") + minobtime: str | None = Field( + None, description="Minimum observation time in UTC format (e.g., '2020-01-01' or '2020-01-01T00:00:00')" + ) + maxobtime: str | None = Field( + None, description="Maximum observation time in UTC format (e.g., '2020-01-31' or '2020-01-31T23:59:59')" + ) + + +class ODECountProductsOutputSchema(OutputSchema): + """Output schema for ODECountProductsTool.""" + + status: str = Field(..., description="Response status ('success' or 'error')") + target: str | None = Field(None, description="Planetary body that was searched") + instrument_host: str | None = Field(None, description="Instrument Host ID") + instrument: str | None = Field(None, description="Instrument ID") + product_type: str | None = Field(None, description="Product Type") + count: int = Field(..., description="Number of products matching criteria") + error: str | None = Field(None, description="Error message if status is 'error'") + + +class ODECountProductsToolConfig(BaseToolConfig): + """Configuration for ODECountProductsTool.""" + + base_url: str = Field( + default="https://oderest.rsl.wustl.edu/live2/", + description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class ODECountProductsTool(BaseTool[ODECountProductsInputSchema, ODECountProductsOutputSchema]): + """Count products matching criteria without retrieving them. + + This tool provides a fast count of products matching your search criteria without + returning the actual product data. This is useful for: + - Understanding data availability before running full searches + - Determining if you need to narrow your search criteria + - Checking if data exists for a specific region/time period + + Note: Unlike ODESearchProductsTool, this tool requires all three identifiers + (ihid, iid, pt) to be specified - it does not support searching by pdsid alone. + """ + + input_schema = ODECountProductsInputSchema + output_schema = ODECountProductsOutputSchema + config_schema = ODECountProductsToolConfig + + async def _arun(self, params: ODECountProductsInputSchema) -> ODECountProductsOutputSchema: + """Execute the product count query. + + Args: + params: Input parameters for the count query + + Returns: + Count of products matching the criteria + + Raises: + ODEClientError: If the API request fails + """ + try: + async with ODEClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.count_products( + target=params.target, + ihid=params.ihid, + iid=params.iid, + pt=params.pt, + minlat=params.minlat, + maxlat=params.maxlat, + westlon=params.westlon, + eastlon=params.eastlon, + minobtime=params.minobtime, + maxobtime=params.maxobtime, + ) + + if response.status == "ERROR": + return ODECountProductsOutputSchema( + status="error", + count=0, + error=response.error, + ) + + return ODECountProductsOutputSchema( + status="success", + target=params.target, + instrument_host=params.ihid, + instrument=params.iid, + product_type=params.pt, + count=response.count, + ) + + except ODEClientError as e: + logger.error(f"ODE client error in count_products: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in count_products: {e}") + raise RuntimeError(f"Internal error during product count: {e}") from e diff --git a/akd_ext/tools/pds/ode/get_feature_bounds.py b/akd_ext/tools/pds/ode/get_feature_bounds.py new file mode 100644 index 0000000..2ee551f --- /dev/null +++ b/akd_ext/tools/pds/ode/get_feature_bounds.py @@ -0,0 +1,134 @@ +"""Get geographic bounds (lat/lon) for a named planetary feature.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.ode.types import TargetType +from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError + +logger = logging.getLogger(__name__) + + +class ODEGetFeatureBoundsInputSchema(InputSchema): + """Input schema for ODEGetFeatureBoundsTool.""" + + target: TargetType = Field(..., description="Planetary body to query") + feature_class: str = Field(..., description="Feature type (e.g., 'crater', 'chasma', 'mons', 'vallis', 'mare')") + feature_name: str = Field(..., description="Name of the feature (e.g., 'Gale', 'Jezero', 'Olympus Mons')") + + +class ODEGetFeatureBoundsOutputSchema(OutputSchema): + """Output schema for ODEGetFeatureBoundsTool.""" + + status: str = Field(..., description="Response status ('success', 'not_found', or 'error')") + target: str | None = Field(None, description="Planetary body that was queried") + feature_class: str | None = Field(None, description="Feature type") + feature_name: str | None = Field(None, description="Feature name") + bounds: dict[str, float] | None = Field( + None, description="Geographic bounds with keys: min_lat, max_lat, west_lon, east_lon" + ) + message: str | None = Field(None, description="Status message for not_found cases") + error: str | None = Field(None, description="Error message if status is 'error'") + + +class ODEGetFeatureBoundsToolConfig(BaseToolConfig): + """Configuration for ODEGetFeatureBoundsTool.""" + + base_url: str = Field( + default="https://oderest.rsl.wustl.edu/live2/", + description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class ODEGetFeatureBoundsTool(BaseTool[ODEGetFeatureBoundsInputSchema, ODEGetFeatureBoundsOutputSchema]): + """Get geographic bounds (lat/lon) for a named planetary feature. + + Look up the bounding box for named features like craters, valleys, volcanoes, etc. + This is useful for finding data products in specific regions by using the returned + bounds with the ODESearchProductsTool. + + Common Feature Classes: + Mars: + - crater: Impact craters (e.g., "Gale", "Jezero") + - chasma: Canyons (e.g., "Valles Marineris") + - mons: Mountains/volcanoes (e.g., "Olympus Mons") + - vallis: Valleys (e.g., "Ma'adim Vallis") + - planum: Plains (e.g., "Hesperia Planum") + + Moon: + - crater: Lunar craters (e.g., "Tycho", "Copernicus") + - mare: Lunar maria (e.g., "Mare Tranquillitatis") + - mons: Lunar mountains + + Mercury: + - crater: Mercurian craters (e.g., "Caloris") + - planitia: Plains + """ + + input_schema = ODEGetFeatureBoundsInputSchema + output_schema = ODEGetFeatureBoundsOutputSchema + config_schema = ODEGetFeatureBoundsToolConfig + + async def _arun(self, params: ODEGetFeatureBoundsInputSchema) -> ODEGetFeatureBoundsOutputSchema: + """Execute the feature bounds query. + + Args: + params: Input parameters for the query + + Returns: + Geographic bounds for the named feature + + Raises: + ODEClientError: If the API request fails + """ + try: + async with ODEClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.get_feature_bounds( + target=params.target, + feature_class=params.feature_class, + feature_name=params.feature_name, + ) + + if response.status == "ERROR": + return ODEGetFeatureBoundsOutputSchema( + status="error", + error=response.error, + ) + + if not response.features: + return ODEGetFeatureBoundsOutputSchema( + status="not_found", + message=f"Feature '{params.feature_name}' of type '{params.feature_class}' not found on {params.target}", + ) + + feature = response.features[0] + return ODEGetFeatureBoundsOutputSchema( + status="success", + target=params.target, + feature_class=feature.feature_class, + feature_name=feature.feature_name, + bounds={ + "min_lat": feature.min_lat, + "max_lat": feature.max_lat, + "west_lon": feature.west_lon, + "east_lon": feature.east_lon, + }, + ) + + except ODEClientError as e: + logger.error(f"ODE client error in get_feature_bounds: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in get_feature_bounds: {e}") + raise RuntimeError(f"Internal error during feature bounds query: {e}") from e diff --git a/akd_ext/tools/pds/ode/list_feature_classes.py b/akd_ext/tools/pds/ode/list_feature_classes.py new file mode 100644 index 0000000..9f3c885 --- /dev/null +++ b/akd_ext/tools/pds/ode/list_feature_classes.py @@ -0,0 +1,122 @@ +"""Get available feature types for a planetary target.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.ode.types import TargetType +from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError + +logger = logging.getLogger(__name__) + + +class ODEListFeatureClassesInputSchema(InputSchema): + """Input schema for ODEListFeatureClassesTool.""" + + target: TargetType = Field(..., description="Planetary body to query") + + +class ODEListFeatureClassesOutputSchema(OutputSchema): + """Output schema for ODEListFeatureClassesTool.""" + + status: str = Field(..., description="Response status ('success' or 'error')") + target: str | None = Field(None, description="Planetary body that was queried") + feature_classes: list[str] = Field(default_factory=list, description="List of available feature types") + count: int = Field(..., description="Number of feature classes available") + error: str | None = Field(None, description="Error message if status is 'error'") + + +class ODEListFeatureClassesToolConfig(BaseToolConfig): + """Configuration for ODEListFeatureClassesTool.""" + + base_url: str = Field( + default="https://oderest.rsl.wustl.edu/live2/", + description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class ODEListFeatureClassesTool(BaseTool[ODEListFeatureClassesInputSchema, ODEListFeatureClassesOutputSchema]): + """Get available feature types for a planetary target. + + Returns all feature classes (crater, chasma, mons, vallis, etc.) + available for the specified planetary body. Use this to discover what + types of features can be queried before using ODEGetFeatureBoundsTool + or ODEListFeatureNamesTool. + + Common Feature Classes by Target: + + Mars: + - crater: Impact craters + - chasma: Canyons and deep valleys + - mons: Mountains and volcanoes + - vallis: Valleys + - planum: Plains + - labyrinthus: Complex canyon systems + - mensa: Mesa features + - patera: Shallow craters + + Moon: + - crater: Lunar craters + - mare: Lunar maria (dark plains) + - mons: Lunar mountains + - lacus: Small lunar maria + - oceanus: Large lunar maria + - sinus: Bays + + Mercury: + - crater: Impact craters + - planitia: Smooth plains + - vallis: Valleys + - rupes: Scarps + """ + + input_schema = ODEListFeatureClassesInputSchema + output_schema = ODEListFeatureClassesOutputSchema + config_schema = ODEListFeatureClassesToolConfig + + async def _arun(self, params: ODEListFeatureClassesInputSchema) -> ODEListFeatureClassesOutputSchema: + """Execute the feature classes query. + + Args: + params: Input parameters for the query + + Returns: + List of available feature classes for the target + + Raises: + ODEClientError: If the API request fails + """ + try: + async with ODEClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.list_feature_classes(params.target) + + if response.status == "ERROR": + return ODEListFeatureClassesOutputSchema( + status="error", + count=0, + error=response.error, + ) + + return ODEListFeatureClassesOutputSchema( + status="success", + target=params.target, + feature_classes=response.feature_classes, + count=len(response.feature_classes), + ) + + except ODEClientError as e: + logger.error(f"ODE client error in list_feature_classes: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in list_feature_classes: {e}") + raise RuntimeError(f"Internal error during feature classes query: {e}") from e diff --git a/akd_ext/tools/pds/ode/list_feature_names.py b/akd_ext/tools/pds/ode/list_feature_names.py new file mode 100644 index 0000000..a381644 --- /dev/null +++ b/akd_ext/tools/pds/ode/list_feature_names.py @@ -0,0 +1,115 @@ +"""Get names of planetary features by class.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.ode.types import TargetType +from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError + +logger = logging.getLogger(__name__) + +MAX_FEATURE_NAMES_LIMIT = 50 # Max feature names + + +class ODEListFeatureNamesInputSchema(InputSchema): + """Input schema for ODEListFeatureNamesTool.""" + + target: TargetType = Field(..., description="Planetary body to query") + feature_class: str = Field(..., description="Feature type (e.g., 'crater', 'chasma', 'mons', 'vallis', 'mare')") + limit: Annotated[int, Field(ge=1, le=50)] = Field(50, description="Maximum names to return (default 50, max 50)") + + +class ODEListFeatureNamesOutputSchema(OutputSchema): + """Output schema for ODEListFeatureNamesTool.""" + + status: str = Field(..., description="Response status ('success' or 'error')") + target: str | None = Field(None, description="Planetary body that was queried") + feature_class: str | None = Field(None, description="Feature type that was queried") + feature_names: list[str] = Field(default_factory=list, description="List of feature names") + count: int = Field(..., description="Number of feature names returned") + error: str | None = Field(None, description="Error message if status is 'error'") + + +class ODEListFeatureNamesToolConfig(BaseToolConfig): + """Configuration for ODEListFeatureNamesTool.""" + + base_url: str = Field( + default="https://oderest.rsl.wustl.edu/live2/", + description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class ODEListFeatureNamesTool(BaseTool[ODEListFeatureNamesInputSchema, ODEListFeatureNamesOutputSchema]): + """Get names of planetary features by class. + + Returns names of features of the specified type (e.g., all named craters on Mars). + Use this to discover specific feature names that can be used with ODEGetFeatureBoundsTool + to get geographic bounds for searching data products. + + Workflow: + 1. Use ODEListFeatureClassesTool to discover available feature types + 2. Use this tool to get names of features in a specific class + 3. Use ODEGetFeatureBoundsTool to get bounds for a specific feature + 4. Use ODESearchProductsTool with those bounds to find data + """ + + input_schema = ODEListFeatureNamesInputSchema + output_schema = ODEListFeatureNamesOutputSchema + config_schema = ODEListFeatureNamesToolConfig + + async def _arun(self, params: ODEListFeatureNamesInputSchema) -> ODEListFeatureNamesOutputSchema: + """Execute the feature names query. + + Args: + params: Input parameters for the query + + Returns: + List of feature names for the specified class and target + + Raises: + ODEClientError: If the API request fails + """ + try: + async with ODEClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + # Enforce maximum limit + limit = min(params.limit, MAX_FEATURE_NAMES_LIMIT) + + response = await client.list_feature_names( + target=params.target, + feature_class=params.feature_class, + limit=limit, + ) + + if response.status == "ERROR": + return ODEListFeatureNamesOutputSchema( + status="error", + count=0, + error=response.error, + ) + + return ODEListFeatureNamesOutputSchema( + status="success", + target=params.target, + feature_class=params.feature_class, + feature_names=response.feature_names, + count=len(response.feature_names), + ) + + except ODEClientError as e: + logger.error(f"ODE client error in list_feature_names: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in list_feature_names: {e}") + raise RuntimeError(f"Internal error during feature names query: {e}") from e diff --git a/akd_ext/tools/pds/ode/list_instruments.py b/akd_ext/tools/pds/ode/list_instruments.py new file mode 100644 index 0000000..2bce73e --- /dev/null +++ b/akd_ext/tools/pds/ode/list_instruments.py @@ -0,0 +1,154 @@ +"""Get valid instrument and product type combinations for a planetary target.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.ode.types import TargetType +from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError + +logger = logging.getLogger(__name__) + +MAX_INSTRUMENTS_LIMIT = 25 # Max instruments returned + + +class ODEInstrumentSummary(BaseModel): + """Instrument item in list_instruments results.""" + + ihid: str + instrument_host_name: str + iid: str + instrument_name: str + pt: str + product_type_name: str + number_products: int + + +class ODEListInstrumentsInputSchema(InputSchema): + """Input schema for ODEListInstrumentsTool.""" + + target: TargetType = Field(..., description="Planetary body to query") + ihid: str | None = Field( + None, description="Filter by Instrument Host ID (e.g., 'MRO', 'LRO', 'MESS'). Optional." + ) + iid: str | None = Field(None, description="Filter by Instrument ID (e.g., 'HIRISE', 'CTX', 'LROC'). Optional.") + limit: int = Field(25, ge=1, le=25, description="Maximum combinations to return (default 25, max 25)") + + +class ODEListInstrumentsOutputSchema(OutputSchema): + """Output schema for ODEListInstrumentsTool.""" + + status: str = Field(..., description="Response status ('success' or 'error')") + target: str = Field(..., description="Planetary body that was queried") + count: int = Field(..., description="Number of instrument combinations returned") + total_available: int = Field(..., description="Total number of combinations available") + has_more: bool = Field(..., description="Whether more combinations are available") + instruments: list[ODEInstrumentSummary] = Field( + default_factory=list, description="List of instrument combinations with product counts" + ) + error: str | None = Field(None, description="Error message if status is 'error'") + + +class ODEListInstrumentsToolConfig(BaseToolConfig): + """Configuration for ODEListInstrumentsTool.""" + + base_url: str = Field( + default="https://oderest.rsl.wustl.edu/live2/", + description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class ODEListInstrumentsTool(BaseTool[ODEListInstrumentsInputSchema, ODEListInstrumentsOutputSchema]): + """Get valid instrument and product type combinations for a planetary target. + + This tool returns available instrument host/instrument/product type combinations + with product counts. Use this to discover what data is available before searching. + + Each combination represents a specific type of data product available in ODE: + - Instrument Host (ihid): The spacecraft or mission (e.g., "MRO", "LRO") + - Instrument (iid): The specific instrument (e.g., "HIRISE", "CTX") + - Product Type (pt): The data product type (e.g., "RDRV11", "EDR") + + This information is essential for constructing valid search queries, as the + ODESearchProductsTool requires these identifiers. + """ + + input_schema = ODEListInstrumentsInputSchema + output_schema = ODEListInstrumentsOutputSchema + config_schema = ODEListInstrumentsToolConfig + + async def _arun(self, params: ODEListInstrumentsInputSchema) -> ODEListInstrumentsOutputSchema: + """Execute the instruments list query. + + Args: + params: Input parameters for the query + + Returns: + List of available instrument combinations with product counts + + Raises: + ODEClientError: If the API request fails + """ + try: + async with ODEClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.list_instruments(params.target) + + if response.status == "ERROR": + return ODEListInstrumentsOutputSchema( + status="error", + target=params.target, + count=0, + total_available=0, + has_more=False, + error=response.error, + ) + + # Filter by instrument host and/or instrument if specified + filtered_instruments = response.instruments + if params.ihid: + filtered_instruments = [inst for inst in filtered_instruments if inst.ihid == params.ihid] + if params.iid: + filtered_instruments = [inst for inst in filtered_instruments if inst.iid == params.iid] + + total_available = len(filtered_instruments) + + # Enforce maximum limit + limit = min(params.limit, MAX_INSTRUMENTS_LIMIT) + instruments = [ + ODEInstrumentSummary( + ihid=inst.ihid, + instrument_host_name=inst.instrument_host_name, + iid=inst.iid, + instrument_name=inst.instrument_name, + pt=inst.pt, + product_type_name=inst.pt_name, + number_products=inst.number_products, + ) + for inst in filtered_instruments[:limit] + ] + + return ODEListInstrumentsOutputSchema( + status="success", + target=params.target, + count=len(instruments), + total_available=total_available, + has_more=len(instruments) < total_available, + instruments=instruments, + ) + + except ODEClientError as e: + logger.error(f"ODE client error in list_instruments: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in list_instruments: {e}") + raise RuntimeError(f"Internal error during instruments query: {e}") from e diff --git a/akd_ext/tools/pds/ode/search_products.py b/akd_ext/tools/pds/ode/search_products.py new file mode 100644 index 0000000..d861425 --- /dev/null +++ b/akd_ext/tools/pds/ode/search_products.py @@ -0,0 +1,244 @@ +"""Search ODE planetary data products with geographic and temporal filtering.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.ode.types import TargetType +from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError + +logger = logging.getLogger(__name__) + +# Response size limits to prevent overwhelming LLM context windows +MAX_SEARCH_LIMIT = 10 # Max products per search +MAX_FILES_PER_PRODUCT = 3 # Max files shown per product + + +class ODEProductFileSummary(BaseModel): + """File item in product search results.""" + + name: str | None = None + url: str | None = None + type: str | None = None + size_kb: str | None = None + + +class ODEProductSummary(BaseModel): + """Product item in search results.""" + + pdsid: str | None = None + ode_id: str | None = None + data_set_id: str | None = None + instrument_host: str | None = None + instrument: str | None = None + product_type: str | None = None + center_latitude: float | None = None + center_longitude: float | None = None + observation_time: str | None = None + min_latitude: float | None = None + max_latitude: float | None = None + west_longitude: float | None = None + east_longitude: float | None = None + emission_angle: float | None = None + incidence_angle: float | None = None + phase_angle: float | None = None + map_scale: float | None = None + label_url: str | None = None + files: list[ODEProductFileSummary] = Field(default_factory=list) + files_truncated: bool | None = None + total_files: int | None = None + + +class ODESearchProductsInputSchema(InputSchema): + """Input schema for ODESearchProductsTool.""" + + target: TargetType = Field(..., description="Planetary body to search") + ihid: str | None = Field( + None, + description="Instrument Host ID (e.g., 'MRO' for Mars Reconnaissance Orbiter, 'LRO' for Lunar Reconnaissance Orbiter, 'MESS' for MESSENGER)", + ) + iid: str | None = Field(None, description="Instrument ID (e.g., 'HIRISE', 'CTX', 'LROC', 'MDIS')") + pt: str | None = Field(None, description="Product Type (e.g., 'RDRV11', 'EDR')") + pdsid: str | None = Field(None, description="PDS Product ID for direct lookup (e.g., 'ESP_012600_1655_RED')") + minlat: Annotated[float, Field(ge=-90, le=90)] | None = Field(None, description="Minimum latitude (-90 to 90)") + maxlat: Annotated[float, Field(ge=-90, le=90)] | None = Field(None, description="Maximum latitude (-90 to 90)") + westlon: Annotated[float, Field(ge=0, le=360)] | None = Field(None, description="Western longitude (0 to 360)") + eastlon: Annotated[float, Field(ge=0, le=360)] | None = Field(None, description="Eastern longitude (0 to 360)") + minobtime: str | None = Field( + None, description="Minimum observation time in UTC format (e.g., '2018-05-01' or '2018-05-01T00:00:00')" + ) + maxobtime: str | None = Field( + None, description="Maximum observation time in UTC format (e.g., '2018-08-31' or '2018-08-31T23:59:59')" + ) + limit: Annotated[int, Field(ge=1, le=10)] = Field(10, description="Maximum products to return (default 10)") + offset: Annotated[int, Field(ge=0)] = Field(0, description="Pagination offset (default 0)") + + +class ODESearchProductsOutputSchema(OutputSchema): + """Output schema for ODESearchProductsTool.""" + + status: str = Field(..., description="Response status ('success' or 'error')") + target: str = Field(..., description="Planetary body that was searched") + count: int = Field(..., description="Number of products returned in this response") + total_available: int = Field(..., description="Total number of products matching criteria") + offset: int = Field(..., description="Pagination offset used") + has_more: bool = Field(..., description="Whether more products are available") + products: list[ODEProductSummary] = Field( + default_factory=list, description="List of matching products with metadata" + ) + error: str | None = Field(None, description="Error message if status is 'error'") + + +class ODESearchProductsToolConfig(BaseToolConfig): + """Configuration for ODESearchProductsTool.""" + + base_url: str = Field( + default="https://oderest.rsl.wustl.edu/live2/", + description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class ODESearchProductsTool(BaseTool[ODESearchProductsInputSchema, ODESearchProductsOutputSchema]): + """Search ODE planetary data products with geographic and temporal filtering. + + This tool searches for Mars, Moon, Mercury, Phobos, Deimos, or Venus data products in the + Orbital Data Explorer (ODE). Use either instrument identifiers (ihid+iid+pt) or a PDS Product ID (pdsid). + + Key Features: + - Geographic filtering: Search by latitude/longitude bounds + - Temporal filtering: Search by observation time ranges + - Instrument filtering: Search by specific instruments and product types + - Pagination: Handle large result sets with offset/limit + + Common Instruments: + Mars: + - MRO/HIRISE: High Resolution Imaging Science Experiment + - MRO/CTX: Context Camera + - MRO/CRISM: Compact Reconnaissance Imaging Spectrometer + + Moon: + - LRO/LROC: Lunar Reconnaissance Orbiter Camera + - LRO/DIVINER: Diviner Lunar Radiometer + + Mercury: + - MESS/MDIS: Mercury Dual Imaging System + """ + + input_schema = ODESearchProductsInputSchema + output_schema = ODESearchProductsOutputSchema + config_schema = ODESearchProductsToolConfig + + async def _arun(self, params: ODESearchProductsInputSchema) -> ODESearchProductsOutputSchema: + """Execute the product search. + + Args: + params: Input parameters for the search + + Returns: + Search results with products and metadata + + Raises: + ODEClientError: If the API request fails + ValueError: If parameters are invalid + """ + try: + async with ODEClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + # Enforce maximum limit to prevent large responses + limit = min(params.limit, MAX_SEARCH_LIMIT) + + response = await client.search_products( + target=params.target, + ihid=params.ihid, + iid=params.iid, + pt=params.pt, + pdsid=params.pdsid, + minlat=params.minlat, + maxlat=params.maxlat, + westlon=params.westlon, + eastlon=params.eastlon, + minobtime=params.minobtime, + maxobtime=params.maxobtime, + results="fpc", + limit=limit, + offset=params.offset, + ) + + if response.status == "ERROR": + return ODESearchProductsOutputSchema( + status="error", + target=params.target, + count=0, + total_available=0, + offset=params.offset, + has_more=False, + error=response.error, + ) + + products = [] + for product in response.products: + files_list = product.product_files or [] + truncated = len(files_list) > MAX_FILES_PER_PRODUCT + + product_summary = ODEProductSummary( + pdsid=product.pdsid, + ode_id=product.ode_id, + data_set_id=product.data_set_id, + instrument_host=product.ihid, + instrument=product.iid, + product_type=product.pt, + center_latitude=product.center_latitude, + center_longitude=product.center_longitude, + observation_time=product.observation_time, + min_latitude=product.minimum_latitude, + max_latitude=product.maximum_latitude, + west_longitude=product.westernmost_longitude, + east_longitude=product.easternmost_longitude, + emission_angle=product.emission_angle, + incidence_angle=product.incidence_angle, + phase_angle=product.phase_angle, + map_scale=product.map_scale, + label_url=product.label_url, + files=[ + ODEProductFileSummary( + name=f.file_name, + url=f.url, + type=f.file_type, + size_kb=f.kbytes, + ) + for f in files_list[:MAX_FILES_PER_PRODUCT] + ], + files_truncated=True if truncated else None, + total_files=len(files_list) if truncated else None, + ) + products.append(product_summary) + + return ODESearchProductsOutputSchema( + status="success", + target=params.target, + count=len(products), + total_available=response.count, + offset=params.offset, + has_more=params.offset + len(products) < response.count, + products=products, + ) + + except ODEClientError as e: + logger.error(f"ODE client error in search_products: {e}") + raise + except ValueError as e: + logger.error(f"Validation error in search_products: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_products: {e}") + raise RuntimeError(f"Internal error during product search: {e}") from e diff --git a/akd_ext/tools/pds/ode/types.py b/akd_ext/tools/pds/ode/types.py new file mode 100644 index 0000000..3b4e75f --- /dev/null +++ b/akd_ext/tools/pds/ode/types.py @@ -0,0 +1,6 @@ +"""Shared type definitions for ODE tools.""" + +from typing import Literal + +# Supported planetary targets in the ODE system +TargetType = Literal["mars", "moon", "mercury", "phobos", "deimos", "venus"] diff --git a/akd_ext/tools/pds/opus/__init__.py b/akd_ext/tools/pds/opus/__init__.py new file mode 100644 index 0000000..3133c26 --- /dev/null +++ b/akd_ext/tools/pds/opus/__init__.py @@ -0,0 +1,72 @@ +"""OPUS (Outer Planets Unified Search) Tools. + +Tools for searching and retrieving outer planets observations from Cassini, +Voyager, Galileo, New Horizons, Juno, and Hubble Space Telescope missions. + +Base URL: https://opus.pds-rings.seti.org/opus/api/ +""" + +from akd_ext.tools.pds.opus.opus_count import ( + OPUSCountInputSchema, + OPUSCountOutputSchema, + OPUSCountTool, + OPUSCountToolConfig, +) +from akd_ext.tools.pds.opus.opus_get_fields import ( + OPUSFieldItem, + OPUSGetFieldsInputSchema, + OPUSGetFieldsOutputSchema, + OPUSGetFieldsTool, + OPUSGetFieldsToolConfig, +) +from akd_ext.tools.pds.opus.opus_get_files import ( + OPUSBrowseImages, + OPUSGetFilesInputSchema, + OPUSGetFilesOutputSchema, + OPUSGetFilesTool, + OPUSGetFilesToolConfig, +) +from akd_ext.tools.pds.opus.opus_get_metadata import ( + OPUSGetMetadataInputSchema, + OPUSGetMetadataOutputSchema, + OPUSGetMetadataTool, + OPUSGetMetadataToolConfig, +) +from akd_ext.tools.pds.opus.opus_search import ( + OPUSObservationSummary, + OPUSSearchInputSchema, + OPUSSearchOutputSchema, + OPUSSearchTool, + OPUSSearchToolConfig, +) + +__all__ = [ + # opus_search + "OPUSSearchTool", + "OPUSSearchInputSchema", + "OPUSSearchOutputSchema", + "OPUSSearchToolConfig", + "OPUSObservationSummary", + # opus_count + "OPUSCountTool", + "OPUSCountInputSchema", + "OPUSCountOutputSchema", + "OPUSCountToolConfig", + # opus_get_metadata + "OPUSGetMetadataTool", + "OPUSGetMetadataInputSchema", + "OPUSGetMetadataOutputSchema", + "OPUSGetMetadataToolConfig", + # opus_get_files + "OPUSGetFilesTool", + "OPUSGetFilesInputSchema", + "OPUSGetFilesOutputSchema", + "OPUSGetFilesToolConfig", + "OPUSBrowseImages", + # opus_get_fields + "OPUSGetFieldsTool", + "OPUSGetFieldsInputSchema", + "OPUSGetFieldsOutputSchema", + "OPUSGetFieldsToolConfig", + "OPUSFieldItem", +] diff --git a/akd_ext/tools/pds/opus/opus_count.py b/akd_ext/tools/pds/opus/opus_count.py new file mode 100644 index 0000000..6bc2b8a --- /dev/null +++ b/akd_ext/tools/pds/opus/opus_count.py @@ -0,0 +1,140 @@ +"""OPUS Count Tool - Count observations matching criteria.""" + +import logging +from typing import Any + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.opus.types import OPUS_INSTRUMENTS, OPUS_MISSIONS, OPUS_PLANETS +from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError + +logger = logging.getLogger(__name__) + + +class OPUSCountInputSchema(InputSchema): + """Input schema for OPUSCountTool. + + Valid planets: Jupiter, Saturn, Uranus, Neptune, Pluto, Other + Valid missions: Cassini, Voyager 1, Voyager 2, Galileo, New Horizons, Juno, Hubble + Valid instruments by mission: + - Cassini: ISS, VIMS, UVIS, CIRS, RSS + - Voyager: ISS, IRIS + - Galileo: SSI + - New Horizons: LORRI, MVIC + - Juno: JunoCam, JIRAM + - Hubble: WFPC2, WFC3, ACS, STIS, NICMOS + """ + + target: str | None = Field( + None, + description='Target body filter (e.g., "Saturn", "Titan")', + ) + mission: OPUS_MISSIONS | None = Field( + None, + description='Mission name filter (e.g., "Cassini")', + ) + instrument: OPUS_INSTRUMENTS | None = Field( + None, + description='Instrument name filter (e.g., "ISS", "VIMS")', + ) + planet: OPUS_PLANETS | None = Field( + None, + description='Planet system filter (e.g., "Saturn")', + ) + time_min: str | None = Field( + None, + description="Start of time range (ISO 8601 format)", + ) + time_max: str | None = Field( + None, + description="End of time range (ISO 8601 format)", + ) + + +class OPUSCountOutputSchema(OutputSchema): + """Output schema for OPUSCountTool.""" + + status: str = Field(..., description="Status of the count operation (success/error)") + count: int = Field(..., description="Number of observations matching the criteria") + filters: dict[str, Any] = Field( + default_factory=dict, + description="Applied filters for reference", + ) + + +class OPUSCountToolConfig(BaseToolConfig): + """Configuration for OPUSCountTool.""" + + base_url: str = Field( + default="https://opus.pds-rings.seti.org/opus/api/", + description="OPUS API base URL", + ) + timeout: float = Field( + default=30.0, + description="Request timeout in seconds", + ) + max_retries: int = Field( + default=3, + description="Maximum number of retry attempts", + ) + + +@mcp_tool +class OPUSCountTool(BaseTool[OPUSCountInputSchema, OPUSCountOutputSchema]): + """Count observations matching criteria without retrieving them. + + This is useful for understanding data availability before running full searches. + It's much faster than a full search and doesn't consume as much bandwidth. + """ + + input_schema = OPUSCountInputSchema + output_schema = OPUSCountOutputSchema + config_schema = OPUSCountToolConfig + + async def _arun(self, params: OPUSCountInputSchema) -> OPUSCountOutputSchema: + """Execute the count.""" + try: + async with OPUSClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.count_observations( + target=params.target, + mission=params.mission, + instrument=params.instrument, + planet=params.planet, + time_min=params.time_min, + time_max=params.time_max, + ) + + if response.status == "error": + logger.error(f"OPUS count error: {response.error}") + return OPUSCountOutputSchema( + status="error", + count=0, + filters={}, + ) + + return OPUSCountOutputSchema( + status="success", + count=response.count, + filters={ + "target": params.target, + "mission": params.mission, + "instrument": params.instrument, + "planet": params.planet, + "time_min": params.time_min, + "time_max": params.time_max, + }, + ) + + except OPUSClientError as e: + logger.error(f"OPUS client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in OPUS count: {e}") + raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/opus/opus_get_fields.py b/akd_ext/tools/pds/opus/opus_get_fields.py new file mode 100644 index 0000000..af4253c --- /dev/null +++ b/akd_ext/tools/pds/opus/opus_get_fields.py @@ -0,0 +1,128 @@ +"""OPUS Get Fields Tool - Get available search fields.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError + +logger = logging.getLogger(__name__) + + +class OPUSFieldItem(BaseModel): + """Field definition item.""" + + id: str + label: str + search_label: str | None = None + + +class OPUSGetFieldsInputSchema(InputSchema): + """Input schema for OPUSGetFieldsTool. + + This tool takes no parameters - it retrieves all available fields. + """ + + pass + + +class OPUSGetFieldsOutputSchema(OutputSchema): + """Output schema for OPUSGetFieldsTool.""" + + status: str = Field(..., description="Status of the field retrieval") + categories: list[str] = Field( + default_factory=list, + description="List of field categories", + ) + fields_by_category: dict[str, list[OPUSFieldItem]] = Field( + default_factory=dict, + description="Field definitions organized by category", + ) + total_fields: int = Field(..., description="Total number of fields available") + + +class OPUSGetFieldsToolConfig(BaseToolConfig): + """Configuration for OPUSGetFieldsTool.""" + + base_url: str = Field( + default="https://opus.pds-rings.seti.org/opus/api/", + description="OPUS API base URL", + ) + timeout: float = Field( + default=30.0, + description="Request timeout in seconds", + ) + max_retries: int = Field( + default=3, + description="Maximum number of retry attempts", + ) + + +@mcp_tool +class OPUSGetFieldsTool(BaseTool[OPUSGetFieldsInputSchema, OPUSGetFieldsOutputSchema]): + """Get all available search fields in OPUS. + + Returns field definitions organized by category, useful for understanding + what parameters can be used in advanced searches. Categories include: + - General Constraints + - PDS Constraints + - Image Constraints + - Wavelength Constraints + - Ring Geometry Constraints + - Surface Geometry Constraints + - Instrument-specific Constraints + """ + + input_schema = OPUSGetFieldsInputSchema + output_schema = OPUSGetFieldsOutputSchema + config_schema = OPUSGetFieldsToolConfig + + async def _arun(self, params: OPUSGetFieldsInputSchema) -> OPUSGetFieldsOutputSchema: + """Execute the fields retrieval.""" + try: + async with OPUSClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.get_fields() + + if response.status == "error": + logger.error(f"OPUS fields error: {response.error}") + return OPUSGetFieldsOutputSchema( + status="error", + categories=[], + fields_by_category={}, + total_fields=0, + ) + + # Organize fields by category + fields_by_category: dict[str, list[OPUSFieldItem]] = {} + for field in response.fields: + category = field.category or "Other" + if category not in fields_by_category: + fields_by_category[category] = [] + + field_item = OPUSFieldItem( + id=field.field_id, + label=field.label, + search_label=field.search_label, + ) + fields_by_category[category].append(field_item) + + return OPUSGetFieldsOutputSchema( + status="success", + categories=response.categories, + fields_by_category=fields_by_category, + total_fields=len(response.fields), + ) + + except OPUSClientError as e: + logger.error(f"OPUS client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in OPUS get fields: {e}") + raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/opus/opus_get_files.py b/akd_ext/tools/pds/opus/opus_get_files.py new file mode 100644 index 0000000..d620688 --- /dev/null +++ b/akd_ext/tools/pds/opus/opus_get_files.py @@ -0,0 +1,135 @@ +"""OPUS Get Files Tool - Get downloadable file URLs for observations.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError + +logger = logging.getLogger(__name__) + + +class OPUSBrowseImages(BaseModel): + """Browse image URLs for an observation.""" + + thumbnail: str | None = None + small: str | None = None + medium: str | None = None + full: str | None = None + + +class OPUSGetFilesInputSchema(InputSchema): + """Input schema for OPUSGetFilesTool.""" + + opusid: str = Field( + ..., + description='OPUS observation ID (e.g., "co-iss-n1460960653")', + ) + + +class OPUSGetFilesOutputSchema(OutputSchema): + """Output schema for OPUSGetFilesTool.""" + + status: str = Field(..., description="Status of the file retrieval") + opusid: str = Field(..., description="OPUS observation ID") + raw_files: list[str] | None = Field( + None, + description="URLs for raw data files", + ) + calibrated_files: list[str] | None = Field( + None, + description="URLs for calibrated data files", + ) + browse_images: OPUSBrowseImages | None = Field( + None, + description="Browse image URLs at various resolutions", + ) + all_file_categories: dict[str, list[str]] | None = Field( + None, + description="All files organized by category", + ) + + +class OPUSGetFilesToolConfig(BaseToolConfig): + """Configuration for OPUSGetFilesTool.""" + + base_url: str = Field( + default="https://opus.pds-rings.seti.org/opus/api/", + description="OPUS API base URL", + ) + timeout: float = Field( + default=30.0, + description="Request timeout in seconds", + ) + max_retries: int = Field( + default=3, + description="Maximum number of retry attempts", + ) + + +@mcp_tool +class OPUSGetFilesTool(BaseTool[OPUSGetFilesInputSchema, OPUSGetFilesOutputSchema]): + """Get downloadable file URLs for an observation. + + Returns URLs for: + - Raw data files (original instrument data) + - Calibrated data files (processed/calibrated versions) + - Browse images at various resolutions (thumbnail, small, medium, full) + """ + + input_schema = OPUSGetFilesInputSchema + output_schema = OPUSGetFilesOutputSchema + config_schema = OPUSGetFilesToolConfig + + async def _arun(self, params: OPUSGetFilesInputSchema) -> OPUSGetFilesOutputSchema: + """Execute the file retrieval.""" + try: + async with OPUSClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.get_files(params.opusid) + + if response.status == "error": + logger.error(f"OPUS files error: {response.error}") + return OPUSGetFilesOutputSchema( + status="error", + opusid=params.opusid, + ) + + if not response.files: + logger.warning(f"Files not found for observation: {params.opusid}") + return OPUSGetFilesOutputSchema( + status="not_found", + opusid=params.opusid, + ) + + files = response.files + browse = None + if any([files.browse_thumb, files.browse_small, files.browse_medium, files.browse_full]): + browse = OPUSBrowseImages( + thumbnail=files.browse_thumb, + small=files.browse_small, + medium=files.browse_medium, + full=files.browse_full, + ) + + return OPUSGetFilesOutputSchema( + status="success", + opusid=files.opusid, + raw_files=files.raw_files if files.raw_files else None, + calibrated_files=files.calibrated_files if files.calibrated_files else None, + browse_images=browse, + all_file_categories=files.all_files if files.all_files else None, + ) + + except OPUSClientError as e: + logger.error(f"OPUS client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in OPUS get files: {e}") + raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/opus/opus_get_metadata.py b/akd_ext/tools/pds/opus/opus_get_metadata.py new file mode 100644 index 0000000..35e8347 --- /dev/null +++ b/akd_ext/tools/pds/opus/opus_get_metadata.py @@ -0,0 +1,137 @@ +"""OPUS Get Metadata Tool - Get detailed metadata for observations.""" + +import logging +from typing import Any + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError + +logger = logging.getLogger(__name__) + + +class OPUSGetMetadataInputSchema(InputSchema): + """Input schema for OPUSGetMetadataTool.""" + + opusid: str = Field( + ..., + description='OPUS observation ID (e.g., "co-iss-n1460960653")', + ) + + +class OPUSGetMetadataOutputSchema(OutputSchema): + """Output schema for OPUSGetMetadataTool.""" + + status: str = Field(..., description="Status of the metadata retrieval") + opusid: str = Field(..., description="OPUS observation ID") + general: dict[str, Any] | None = Field( + None, + description="General constraints (target, mission, instrument, time)", + ) + pds: dict[str, Any] | None = Field( + None, + description="PDS constraints (bundle ID, dataset ID, product ID)", + ) + image: dict[str, Any] | None = Field( + None, + description="Image constraints (dimensions, levels, image type)", + ) + wavelength: dict[str, Any] | None = Field( + None, + description="Wavelength constraints (wavelength range, wavenumber range)", + ) + ring_geometry: dict[str, Any] | None = Field( + None, + description="Ring geometry constraints (ring radius, opening angles)", + ) + surface_geometry: dict[str, Any] | None = Field( + None, + description="Surface geometry constraints", + ) + instrument_specific: dict[str, Any] | None = Field( + None, + description="Instrument-specific constraints", + ) + + +class OPUSGetMetadataToolConfig(BaseToolConfig): + """Configuration for OPUSGetMetadataTool.""" + + base_url: str = Field( + default="https://opus.pds-rings.seti.org/opus/api/", + description="OPUS API base URL", + ) + timeout: float = Field( + default=30.0, + description="Request timeout in seconds", + ) + max_retries: int = Field( + default=3, + description="Maximum number of retry attempts", + ) + + +@mcp_tool +class OPUSGetMetadataTool(BaseTool[OPUSGetMetadataInputSchema, OPUSGetMetadataOutputSchema]): + """Get detailed metadata for a specific observation. + + Returns comprehensive metadata organized by category including: + - General constraints (target, mission, instrument, time) + - PDS constraints (bundle ID, dataset ID, product ID) + - Image constraints (dimensions, levels, image type) + - Wavelength constraints (wavelength range, wavenumber range) + - Ring geometry constraints (ring radius, opening angles) + - Surface geometry constraints + - Instrument-specific constraints + """ + + input_schema = OPUSGetMetadataInputSchema + output_schema = OPUSGetMetadataOutputSchema + config_schema = OPUSGetMetadataToolConfig + + async def _arun(self, params: OPUSGetMetadataInputSchema) -> OPUSGetMetadataOutputSchema: + """Execute the metadata retrieval.""" + try: + async with OPUSClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.get_metadata(params.opusid) + + if response.status == "error": + logger.error(f"OPUS metadata error: {response.error}") + return OPUSGetMetadataOutputSchema( + status="error", + opusid=params.opusid, + ) + + if not response.metadata: + logger.warning(f"Metadata not found for observation: {params.opusid}") + return OPUSGetMetadataOutputSchema( + status="not_found", + opusid=params.opusid, + ) + + metadata = response.metadata + return OPUSGetMetadataOutputSchema( + status="success", + opusid=metadata.opusid, + general=metadata.general_constraints if metadata.general_constraints else None, + pds=metadata.pds_constraints if metadata.pds_constraints else None, + image=metadata.image_constraints if metadata.image_constraints else None, + wavelength=metadata.wavelength_constraints if metadata.wavelength_constraints else None, + ring_geometry=metadata.ring_geometry_constraints if metadata.ring_geometry_constraints else None, + surface_geometry=metadata.surface_geometry_constraints if metadata.surface_geometry_constraints else None, + instrument_specific=metadata.instrument_constraints if metadata.instrument_constraints else None, + ) + + except OPUSClientError as e: + logger.error(f"OPUS client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in OPUS get metadata: {e}") + raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/opus/opus_search.py b/akd_ext/tools/pds/opus/opus_search.py new file mode 100644 index 0000000..300866f --- /dev/null +++ b/akd_ext/tools/pds/opus/opus_search.py @@ -0,0 +1,180 @@ +"""OPUS Search Tool - Search outer planets observations.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.opus.types import OPUS_INSTRUMENTS, OPUS_MISSIONS, OPUS_PLANETS +from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError + +logger = logging.getLogger(__name__) + + +class OPUSObservationSummary(BaseModel): + """Observation item in search results.""" + + opusid: str + instrument: str | None = None + target: str | None = None + mission: str | None = None + planet: str | None = None + time_start: str | None = None + time_end: str | None = None + duration_seconds: float | None = None + + +class OPUSSearchInputSchema(InputSchema): + """Input schema for OPUSSearchTool. + + Valid planets: Jupiter, Saturn, Uranus, Neptune, Pluto, Other + Valid missions: Cassini, Voyager 1, Voyager 2, Galileo, New Horizons, Juno, Hubble + Valid instruments by mission: + - Cassini: ISS, VIMS, UVIS, CIRS, RSS + - Voyager: ISS, IRIS + - Galileo: SSI + - New Horizons: LORRI, MVIC + - Juno: JunoCam, JIRAM + - Hubble: WFPC2, WFC3, ACS, STIS, NICMOS + """ + + target: str | None = Field( + None, + description='Target body (e.g., "Saturn", "Titan", "Saturn Rings", "Io")', + ) + mission: OPUS_MISSIONS | None = Field( + None, + description="Mission name filter", + ) + instrument: OPUS_INSTRUMENTS | None = Field( + None, + description='Instrument name filter (e.g., "ISS", "VIMS")', + ) + planet: OPUS_PLANETS | None = Field( + None, + description="Planet system filter", + ) + time_min: str | None = Field( + None, + description='Start of time range (ISO 8601 format, e.g., "2004-01-01")', + ) + time_max: str | None = Field( + None, + description="End of time range (ISO 8601 format)", + ) + limit: Annotated[int, Field(ge=1, le=1000)] = Field( + 100, + description="Maximum observations to return", + ) + startobs: Annotated[int, Field(ge=1)] = Field( + 1, + description="Starting observation index for pagination", + ) + + +class OPUSSearchOutputSchema(OutputSchema): + """Output schema for OPUSSearchTool.""" + + status: str = Field(..., description="Status of the search (success/error)") + available: int = Field(..., description="Total observations available matching criteria") + start_obs: int = Field(..., description="Starting observation index") + limit: int = Field(..., description="Maximum observations returned") + count: int = Field(..., description="Number of observations in this response") + observations: list[OPUSObservationSummary] = Field( + default_factory=list, + description="List of observations with basic metadata", + ) + + +class OPUSSearchToolConfig(BaseToolConfig): + """Configuration for OPUSSearchTool.""" + + base_url: str = Field( + default="https://opus.pds-rings.seti.org/opus/api/", + description="OPUS API base URL", + ) + timeout: float = Field( + default=30.0, + description="Request timeout in seconds", + ) + max_retries: int = Field( + default=3, + description="Maximum number of retry attempts", + ) + + +@mcp_tool +class OPUSSearchTool(BaseTool[OPUSSearchInputSchema, OPUSSearchOutputSchema]): + """Search for outer planets observations in the OPUS database. + + OPUS contains 400,000+ observations from Cassini, Voyager, Galileo, + New Horizons, Juno, and Hubble Space Telescope missions covering outer + planets (Jupiter, Saturn, Uranus, Neptune, Pluto). + """ + + input_schema = OPUSSearchInputSchema + output_schema = OPUSSearchOutputSchema + config_schema = OPUSSearchToolConfig + + async def _arun(self, params: OPUSSearchInputSchema) -> OPUSSearchOutputSchema: + """Execute the search.""" + try: + async with OPUSClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_observations( + target=params.target, + mission=params.mission, + instrument=params.instrument, + planet=params.planet, + time_min=params.time_min, + time_max=params.time_max, + limit=params.limit, + startobs=params.startobs, + ) + + if response.status == "error": + logger.error(f"OPUS search error: {response.error}") + return OPUSSearchOutputSchema( + status="error", + available=0, + start_obs=params.startobs, + limit=params.limit, + count=0, + observations=[], + ) + + observations = [ + OPUSObservationSummary( + opusid=obs.opusid, + instrument=obs.instrument, + target=obs.target, + mission=obs.mission, + planet=obs.planet, + time_start=obs.time1, + time_end=obs.time2, + duration_seconds=obs.observation_duration, + ) + for obs in response.observations + ] + + return OPUSSearchOutputSchema( + status="success", + available=response.available, + start_obs=response.start_obs, + limit=response.limit, + count=response.count, + observations=observations, + ) + + except OPUSClientError as e: + logger.error(f"OPUS client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in OPUS search: {e}") + raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/opus/types.py b/akd_ext/tools/pds/opus/types.py new file mode 100644 index 0000000..a1318c8 --- /dev/null +++ b/akd_ext/tools/pds/opus/types.py @@ -0,0 +1,40 @@ +"""OPUS type definitions. + +Shared type definitions for OPUS tools based on the OPUS API +and MCP resource definitions. +""" + +from typing import Literal + +# Valid planets in OPUS database +OPUS_PLANETS = Literal["Jupiter", "Saturn", "Uranus", "Neptune", "Pluto", "Other"] + +# Valid missions in OPUS database +OPUS_MISSIONS = Literal["Cassini", "Voyager 1", "Voyager 2", "Galileo", "New Horizons", "Juno", "Hubble"] + +# Valid instruments in OPUS database (from MCP resource://opus_instruments) +# Organized by mission for clarity +OPUS_INSTRUMENTS = Literal[ + # Cassini + "ISS", + "VIMS", + "UVIS", + "CIRS", + "RSS", + # Voyager + "IRIS", + # Galileo + "SSI", + # New Horizons + "LORRI", + "MVIC", + # Juno + "JunoCam", + "JIRAM", + # Hubble + "WFPC2", + "WFC3", + "ACS", + "STIS", + "NICMOS", +] diff --git a/akd_ext/tools/pds/pds4/__init__.py b/akd_ext/tools/pds/pds4/__init__.py new file mode 100644 index 0000000..11435d5 --- /dev/null +++ b/akd_ext/tools/pds/pds4/__init__.py @@ -0,0 +1,80 @@ +"""PDS4 NASA Planetary Data System Registry API tools.""" + +from akd_ext.tools.pds.pds4.crawl_context_product import ( + PDS4CrawlContextProductInputSchema, + PDS4CrawlContextProductOutputSchema, + PDS4CrawlContextProductTool, +) +from akd_ext.tools.pds.pds4.get_product import ( + PDS4GetProductInputSchema, + PDS4GetProductOutputSchema, + PDS4GetProductTool, +) +from akd_ext.tools.pds.pds4.search_bundles import ( + PDS4SearchBundlesInputSchema, + PDS4SearchBundlesOutputSchema, + PDS4SearchBundlesTool, +) +from akd_ext.tools.pds.pds4.search_collections import ( + PDS4SearchCollectionsInputSchema, + PDS4SearchCollectionsOutputSchema, + PDS4SearchCollectionsTool, +) +from akd_ext.tools.pds.pds4.search_instrument_hosts import ( + PDS4SearchInstrumentHostsInputSchema, + PDS4SearchInstrumentHostsOutputSchema, + PDS4SearchInstrumentHostsTool, +) +from akd_ext.tools.pds.pds4.search_instruments import ( + PDS4SearchInstrumentsInputSchema, + PDS4SearchInstrumentsOutputSchema, + PDS4SearchInstrumentsTool, +) +from akd_ext.tools.pds.pds4.search_investigations import ( + PDS4SearchInvestigationsInputSchema, + PDS4SearchInvestigationsOutputSchema, + PDS4SearchInvestigationsTool, +) +from akd_ext.tools.pds.pds4.search_products import ( + PDS4SearchProductsInputSchema, + PDS4SearchProductsOutputSchema, + PDS4SearchProductsTool, +) +from akd_ext.tools.pds.pds4.search_targets import ( + PDS4SearchTargetsInputSchema, + PDS4SearchTargetsOutputSchema, + PDS4SearchTargetsTool, +) + +__all__ = [ + # Tools + "PDS4SearchBundlesTool", + "PDS4SearchProductsTool", + "PDS4SearchCollectionsTool", + "PDS4SearchInvestigationsTool", + "PDS4SearchTargetsTool", + "PDS4SearchInstrumentHostsTool", + "PDS4SearchInstrumentsTool", + "PDS4CrawlContextProductTool", + "PDS4GetProductTool", + # Input Schemas + "PDS4SearchBundlesInputSchema", + "PDS4SearchProductsInputSchema", + "PDS4SearchCollectionsInputSchema", + "PDS4SearchInvestigationsInputSchema", + "PDS4SearchTargetsInputSchema", + "PDS4SearchInstrumentHostsInputSchema", + "PDS4SearchInstrumentsInputSchema", + "PDS4CrawlContextProductInputSchema", + "PDS4GetProductInputSchema", + # Output Schemas + "PDS4SearchBundlesOutputSchema", + "PDS4SearchProductsOutputSchema", + "PDS4SearchCollectionsOutputSchema", + "PDS4SearchInvestigationsOutputSchema", + "PDS4SearchTargetsOutputSchema", + "PDS4SearchInstrumentHostsOutputSchema", + "PDS4SearchInstrumentsOutputSchema", + "PDS4CrawlContextProductOutputSchema", + "PDS4GetProductOutputSchema", +] diff --git a/akd_ext/tools/pds/pds4/crawl_context_product.py b/akd_ext/tools/pds/pds4/crawl_context_product.py new file mode 100644 index 0000000..031dfe9 --- /dev/null +++ b/akd_ext/tools/pds/pds4/crawl_context_product.py @@ -0,0 +1,96 @@ +"""Crawl a single PDS Context product and return other PDS Context products it is associated with.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class PDS4CrawlContextProductInputSchema(InputSchema): + """Input schema for PDS4CrawlContextProductTool.""" + + urn: str = Field(..., description="URN identifier for the context product to crawl") + + +class PDS4CrawlContextProductOutputSchema(OutputSchema): + """Output schema for PDS4CrawlContextProductTool.""" + + investigations: dict[str, dict] = Field( + default_factory=dict, description="Related investigation products keyed by URN" + ) + observing_system_components: dict[str, dict] = Field( + default_factory=dict, description="Related instrument/host products keyed by URN" + ) + targets: dict[str, dict] = Field(default_factory=dict, description="Related target products keyed by URN") + errors: list[str] | None = Field(None, description="List of any fetch errors encountered") + + +class PDS4CrawlContextProductToolConfig(BaseToolConfig): + """Configuration for PDS4CrawlContextProductTool.""" + + base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum retry attempts") + + +@mcp_tool +class PDS4CrawlContextProductTool(BaseTool[PDS4CrawlContextProductInputSchema, PDS4CrawlContextProductOutputSchema]): + """Crawl a single PDS Context product and return other PDS Context products it is associated with. + + Example: Mars 2020: Perseverance Rover (Investigation) is associated with Mars (Target) + and Mastcam (Instrument), so it returns Mars and Mastcam. + + **WARNING: Takes a long time to run and performs several sequential API calls. Use wisely.** + + This tool fetches a context product and then concurrently fetches all related products + (investigations, instruments, instrument hosts, and targets). + + Each related product includes: + - id: URN identifier + - title: Product title + - description: Product description (if available) + + Example Usage: + tool = CrawlContextProductTool() + result = await tool.arun(PDS4CrawlContextProductInputSchema( + urn="urn:nasa:pds:context:investigation:mission.mars2020" + )) + + # Access related products + print(f"Targets: {result.targets}") + print(f"Instruments: {result.observing_system_components}") + """ + + input_schema = PDS4CrawlContextProductInputSchema + output_schema = PDS4CrawlContextProductOutputSchema + config_schema = PDS4CrawlContextProductToolConfig + + async def _arun(self, params: PDS4CrawlContextProductInputSchema) -> PDS4CrawlContextProductOutputSchema: + """Execute the context product crawl.""" + try: + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + results = await client.crawl_context_product(params.urn) + + return PDS4CrawlContextProductOutputSchema( + investigations=results.get("investigations", {}), + observing_system_components=results.get("observing_system_components", {}), + targets=results.get("targets", {}), + errors=results.get("errors"), + ) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in crawl_context_product: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in crawl_context_product: {e}") + raise RuntimeError(f"Internal error during context product crawl: {e}") from e diff --git a/akd_ext/tools/pds/pds4/get_product.py b/akd_ext/tools/pds/pds4/get_product.py new file mode 100644 index 0000000..7ea5bb0 --- /dev/null +++ b/akd_ext/tools/pds/pds4/get_product.py @@ -0,0 +1,74 @@ +"""Get a single PDS product by its URN identifier.""" + +import logging +from typing import Any + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class PDS4GetProductInputSchema(InputSchema): + """Input schema for PDS4GetProductTool.""" + + urn: str = Field(..., description="URN identifier for the product") + + +class PDS4GetProductOutputSchema(OutputSchema): + """Output schema for PDS4GetProductTool.""" + + product: dict[str, Any] = Field(..., description="Raw product data from PDS4 API") + + +class PDS4GetProductToolConfig(BaseToolConfig): + """Configuration for PDS4GetProductTool.""" + + base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum retry attempts") + + +@mcp_tool +class PDS4GetProductTool(BaseTool[PDS4GetProductInputSchema, PDS4GetProductOutputSchema]): + """Get a single PDS product by its URN identifier. + + Retrieves detailed information about a specific product from the PDS4 registry. + The URN can be obtained from other search tools or known in advance. + + Example URNs: + - urn:nasa:pds:context:investigation:mission.juno + - urn:nasa:pds:context:target:planet.mars + - urn:nasa:pds:cassini_iss + + The returned product data includes all available metadata fields for the product, + including identification, investigation areas, time coordinates, and more. + + """ + + input_schema = PDS4GetProductInputSchema + output_schema = PDS4GetProductOutputSchema + config_schema = PDS4GetProductToolConfig + + async def _arun(self, params: PDS4GetProductInputSchema) -> PDS4GetProductOutputSchema: + """Execute the product retrieval.""" + try: + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + result = await client.get_product(params.urn) + + return PDS4GetProductOutputSchema(product=result) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in get_product: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in get_product: {e}") + raise RuntimeError(f"Internal error during product retrieval: {e}") from e diff --git a/akd_ext/tools/pds/pds4/search_bundles.py b/akd_ext/tools/pds/pds4/search_bundles.py new file mode 100644 index 0000000..c9defa2 --- /dev/null +++ b/akd_ext/tools/pds/pds4/search_bundles.py @@ -0,0 +1,179 @@ +"""Search for bundles in PDS4 with comprehensive results.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds4.types import PROCESSING_LEVEL +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class BundleSummary(BaseModel): + """Bundle item in search results.""" + + id: str + lid: str | None = None + lidvid: str | None = None + title: str | None = None + investigation_area: dict | None = None + identification_area: dict | None = None + target_identification: dict | None = None + time_coordinates: dict | None = None + harvest_info: dict | None = None + + +class PDS4SearchBundlesInputSchema(InputSchema): + """Input schema for PDS4SearchBundlesTool.""" + + title_query: str | None = Field(None, description="Search query for bundle titles (e.g., 'Lunar', 'Mars')") + start_time: str | None = Field( + None, description="Start of time range (ISO 8601 format, e.g., '2020-01-01T00:00:00Z')" + ) + end_time: str | None = Field(None, description="End of time range (ISO 8601 format)") + processing_level: PROCESSING_LEVEL | None = Field( + None, description="Filter by processing level" + ) + limit: Annotated[int, Field(ge=0, le=100)] = Field( + 0, description="Number of actual products to return (set to 0 for facets only)" + ) + facet_fields: str | None = Field( + None, + description="Comma-separated list of fields to facet on (e.g., 'pds:Identification_Area.pds:title,lidvid')", + ) + facet_limit: Annotated[int, Field(ge=1, le=100)] = Field( + 25, description="Maximum number of facet values to return (default: 25)" + ) + + +class PDS4SearchBundlesOutputSchema(OutputSchema): + """Output schema for PDS4SearchBundlesTool.""" + + total_hits: int = Field(..., description="Total number of matching bundles") + query_time_ms: int | None = Field(None, description="Query execution time in milliseconds") + query: str | None = Field(None, description="The query string that was executed") + limit: int = Field(..., description="Number of results returned") + bundles: list[BundleSummary] = Field(default_factory=list, description="List of matching bundles") + facets: dict[str, dict[str, int]] = Field(default_factory=dict, description="Facet counts organized by field name") + + +class PDS4SearchBundlesToolConfig(BaseToolConfig): + """Configuration for PDS4SearchBundlesTool.""" + + base_url: str = Field( + default="https://pds.mcp.nasa.gov/api/search/1/", + description="PDS4 API base URL (can be overridden with PDS4_BASE_URL env var)", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class PDS4SearchBundlesTool(BaseTool[PDS4SearchBundlesInputSchema, PDS4SearchBundlesOutputSchema]): + """Search for bundles in PDS4 with comprehensive results. + + This tool searches for data bundles in the NASA Planetary Data System (PDS4) registry. + Bundles are high-level organizational units that group related collections. + + Every PDS4 file is associated with a unique URN identifier. For example: + - urn:nasa:pds:context:investigation:mission.juno is the URN for the Juno Mission + - urn:nasa:pds:cassini_iss is a bundle URN for Cassini ISS data + + Use faceting (set limit=0 and provide facet_fields) to discover available values + before narrowing down your search with specific filters. + + Processing Levels: + - Raw: Unprocessed instrument data as received from spacecraft + - Calibrated: Instrument effects removed, science-ready data + - Derived: Higher-level data products (maps, mosaics, etc.) + """ + + input_schema = PDS4SearchBundlesInputSchema + output_schema = PDS4SearchBundlesOutputSchema + config_schema = PDS4SearchBundlesToolConfig + + async def _arun(self, params: PDS4SearchBundlesInputSchema) -> PDS4SearchBundlesOutputSchema: + """Execute the bundle search. + + Args: + params: Input parameters for the search + + Returns: + Search results with bundles and facets + + Raises: + PDS4ClientError: If the API request fails + """ + try: + # Parse facet fields if provided + facet_field_list = None + if params.facet_fields: + facet_field_list = [field.strip() for field in params.facet_fields.split(",")] + + # Create client and perform search + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_bundles( + title_query=params.title_query, + start_time=params.start_time, + end_time=params.end_time, + processing_level=params.processing_level, + limit=params.limit, + facet_fields=facet_field_list, + facet_limit=params.facet_limit, + ) + + # Format response with requested properties + bundles: list[BundleSummary] = [] + for bundle in response.data: + bundle_data = BundleSummary( + id=bundle.id, + lid=bundle.lid, + lidvid=bundle.lidvid, + title=bundle.title, + investigation_area=( + bundle.investigation_area.model_dump(exclude_none=True) if bundle.investigation_area else None + ), + identification_area=( + bundle.identification_area.model_dump(exclude_none=True) if bundle.identification_area else None + ), + target_identification=( + bundle.target_identification.model_dump(exclude_none=True) + if bundle.target_identification + else None + ), + time_coordinates=( + bundle.time_coordinates.model_dump(exclude_none=True) if bundle.time_coordinates else None + ), + harvest_info=bundle.harvest_info.model_dump(exclude_none=True) if bundle.harvest_info else None, + ) + bundles.append(bundle_data) + + # Format facets + facets: dict[str, dict[str, int]] = {} + for facet in response.facets: + facets[facet.property] = facet.counts + + return PDS4SearchBundlesOutputSchema( + total_hits=response.summary.hits, + query_time_ms=response.summary.took, + query=response.summary.q, + limit=params.limit, + bundles=bundles, + facets=facets, + ) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in search_bundles: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_bundles: {e}") + raise RuntimeError(f"Internal error during bundle search: {e}") from e diff --git a/akd_ext/tools/pds/pds4/search_collections.py b/akd_ext/tools/pds/pds4/search_collections.py new file mode 100644 index 0000000..886ab5b --- /dev/null +++ b/akd_ext/tools/pds/pds4/search_collections.py @@ -0,0 +1,149 @@ +"""Search PDS data collections filtered by instrument, target, instrument host, and investigation.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds4.types import PROCESSING_LEVEL +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class CollectionSummary(BaseModel): + """Collection item in search results.""" + + id: str + lid: str | None = None + lidvid: str | None = None + title: str | None = None + ref_lid_instrument: str | None = None + ref_lid_target: str | None = None + ref_lid_instrument_host: str | None = None + ref_lid_investigation: str | None = None + label_file_info: dict | None = None + + +class PDS4SearchCollectionsInputSchema(InputSchema): + """Input schema for PDS4SearchCollectionsTool.""" + + ref_lid_instrument: str | None = Field( + None, description="URN identifier for instrument (e.g. urn:nasa:pds:context:instrument:mars2020.mastcamz)" + ) + ref_lid_target: str | None = Field( + None, description="URN identifier for target (e.g. urn:nasa:pds:context:target:planet.mars)" + ) + ref_lid_instrument_host: str | None = Field( + None, + description="URN identifier for instrument host (e.g. urn:nasa:pds:context:instrument_host:spacecraft.mars2020)", + ) + ref_lid_investigation: str | None = Field( + None, description="URN identifier for investigation (e.g. urn:nasa:pds:context:investigation:mission.mars2020)" + ) + start_time: str | None = Field( + None, description="Start of time range in ISO 8601 format (e.g., '2020-01-01T00:00:00Z')" + ) + end_time: str | None = Field( + None, description="End of time range in ISO 8601 format (e.g., '2021-01-01T00:00:00Z')" + ) + processing_level: PROCESSING_LEVEL | None = Field( + None, description="Filter by calibration level" + ) + limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + + +class PDS4SearchCollectionsOutputSchema(OutputSchema): + """Output schema for PDS4SearchCollectionsTool.""" + + total_hits: int = Field(..., description="Total number of matching collections") + query_time_ms: int | None = Field(None, description="Query execution time in milliseconds") + query: str | None = Field(None, description="The query string that was executed") + limit: int = Field(..., description="Number of results requested") + collections: list[CollectionSummary] = Field(default_factory=list, description="List of matching collections") + + +class PDS4SearchCollectionsToolConfig(BaseToolConfig): + """Configuration for PDS4SearchCollectionsTool.""" + + base_url: str = Field( + default="https://pds.mcp.nasa.gov/api/search/1/", + description="PDS4 API base URL", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum retry attempts") + + +@mcp_tool +class PDS4SearchCollectionsTool(BaseTool[PDS4SearchCollectionsInputSchema, PDS4SearchCollectionsOutputSchema]): + """Search PDS data collections filtered by instrument, target, instrument host, investigation, time range, or processing level. + + Example: Mars Reconnaissance Orbiter HiRISE data collections targeting Mars. + + Collections organize data products from specific instruments and missions. + Use context URNs from search_investigations, search_targets, search_instruments, or search_instrument_hosts + to filter collections by their associated context products. + + Processing Levels: + - Raw: Unprocessed instrument data + - Calibrated: Instrument effects removed + - Derived: Higher-level data products + """ + + input_schema = PDS4SearchCollectionsInputSchema + output_schema = PDS4SearchCollectionsOutputSchema + config_schema = PDS4SearchCollectionsToolConfig + + async def _arun(self, params: PDS4SearchCollectionsInputSchema) -> PDS4SearchCollectionsOutputSchema: + """Execute the collection search.""" + try: + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_context_collections( + ref_lid_instrument=params.ref_lid_instrument, + ref_lid_target=params.ref_lid_target, + ref_lid_instrument_host=params.ref_lid_instrument_host, + ref_lid_investigation=params.ref_lid_investigation, + start_time=params.start_time, + end_time=params.end_time, + processing_level=params.processing_level, + limit=params.limit, + ) + + collections: list[CollectionSummary] = [] + for collection in response.data: + coll_summary = CollectionSummary( + id=collection.id, + lid=collection.lid, + lidvid=collection.lidvid, + title=collection.title, + ref_lid_instrument=collection.ref_lid_instrument, + ref_lid_target=collection.ref_lid_target, + ref_lid_instrument_host=collection.ref_lid_instrument_host, + ref_lid_investigation=collection.ref_lid_investigation, + label_file_info=( + collection.label_file_info.model_dump(exclude_none=True) if collection.label_file_info else None + ), + ) + collections.append(coll_summary) + + return PDS4SearchCollectionsOutputSchema( + total_hits=response.summary.hits, + query_time_ms=response.summary.took, + query=response.summary.q, + limit=params.limit, + collections=collections, + ) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in search_collections: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_collections: {e}") + raise RuntimeError(f"Internal error during collection search: {e}") from e diff --git a/akd_ext/tools/pds/pds4/search_instrument_hosts.py b/akd_ext/tools/pds/pds4/search_instrument_hosts.py new file mode 100644 index 0000000..a037e8f --- /dev/null +++ b/akd_ext/tools/pds/pds4/search_instrument_hosts.py @@ -0,0 +1,114 @@ +"""Search PDS Context products that are Instrument Hosts (spacecraft, rovers, telescopes).""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds4.types import INSTRUMENT_HOST_TYPE +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class InstrumentHostSummary(BaseModel): + """Instrument host item in search results.""" + + id: str + lid: str | None = None + lidvid: str | None = None + title: str | None = None + instrument_host: dict | None = None + + +class PDS4SearchInstrumentHostsInputSchema(InputSchema): + """Input schema for PDS4SearchInstrumentHostsTool.""" + + keywords: str | None = Field( + None, description="Space-delimited search terms (e.g. 'mars rover', 'voyager spacecraft')" + ) + instrument_host_type: INSTRUMENT_HOST_TYPE | None = Field( + None, description="Filter by instrument host type" + ) + limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + + +class PDS4SearchInstrumentHostsOutputSchema(OutputSchema): + """Output schema for PDS4SearchInstrumentHostsTool.""" + + total_hits: int = Field(..., description="Total number of matching instrument hosts") + query_time_ms: int | None = Field(None, description="Query execution time in milliseconds") + query: str | None = Field(None, description="The query string that was executed") + limit: int = Field(..., description="Number of results requested") + instrument_hosts: list[InstrumentHostSummary] = Field( + default_factory=list, description="List of matching instrument hosts" + ) + + +class PDS4SearchInstrumentHostsToolConfig(BaseToolConfig): + """Configuration for PDS4SearchInstrumentHostsTool.""" + + base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum retry attempts") + + +@mcp_tool +class PDS4SearchInstrumentHostsTool(BaseTool[PDS4SearchInstrumentHostsInputSchema, PDS4SearchInstrumentHostsOutputSchema]): + """Search PDS Context products that are Instrument Hosts (spacecraft, rovers, telescopes). + + Instrument Hosts are platforms that carry scientific instruments: spacecraft, rovers, landers, telescopes. + + Example: Cassini Orbiter - urn:nasa:pds:context:instrument_host:spacecraft.cassini + + Use for queries about specific spacecraft, rovers, or platforms that carry instruments. + """ + + input_schema = PDS4SearchInstrumentHostsInputSchema + output_schema = PDS4SearchInstrumentHostsOutputSchema + config_schema = PDS4SearchInstrumentHostsToolConfig + + async def _arun(self, params: PDS4SearchInstrumentHostsInputSchema) -> PDS4SearchInstrumentHostsOutputSchema: + """Execute the instrument host search.""" + try: + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_context_instrument_hosts( + keywords=params.keywords, + instrument_host_type=params.instrument_host_type, + limit=params.limit, + ) + + instrument_hosts: list[InstrumentHostSummary] = [] + for host in response.data: + host_summary = InstrumentHostSummary( + id=host.id, + lid=host.lid, + lidvid=host.lidvid, + title=host.title, + instrument_host=( + host.instrument_host.model_dump(exclude_none=True) if host.instrument_host else None + ), + ) + instrument_hosts.append(host_summary) + + return PDS4SearchInstrumentHostsOutputSchema( + total_hits=response.summary.hits, + query_time_ms=response.summary.took, + query=response.summary.q, + limit=params.limit, + instrument_hosts=instrument_hosts, + ) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in search_instrument_hosts: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_instrument_hosts: {e}") + raise RuntimeError(f"Internal error during instrument host search: {e}") from e diff --git a/akd_ext/tools/pds/pds4/search_instruments.py b/akd_ext/tools/pds/pds4/search_instruments.py new file mode 100644 index 0000000..3125762 --- /dev/null +++ b/akd_ext/tools/pds/pds4/search_instruments.py @@ -0,0 +1,110 @@ +"""Search the latest-versioned instances of PDS Context products that are Instruments.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds4.types import INSTRUMENT_TYPE +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class InstrumentSummary(BaseModel): + """Instrument item in search results.""" + + id: str + lid: str | None = None + lidvid: str | None = None + title: str | None = None + instrument: dict | None = None + + +class PDS4SearchInstrumentsInputSchema(InputSchema): + """Input schema for PDS4SearchInstrumentsTool.""" + + keywords: str | None = Field( + None, description="Space-delimited search terms (e.g. 'camera mars', 'spectrometer cassini')" + ) + instrument_type: INSTRUMENT_TYPE | None = Field(None, description="Filter by instrument type") + limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + + +class PDS4SearchInstrumentsOutputSchema(OutputSchema): + """Output schema for PDS4SearchInstrumentsTool.""" + + total_hits: int = Field(..., description="Total number of matching instruments") + query_time_ms: int | None = Field(None, description="Query execution time in milliseconds") + query: str | None = Field(None, description="The query string that was executed") + limit: int = Field(..., description="Number of results requested") + instruments: list[InstrumentSummary] = Field(default_factory=list, description="List of matching instruments") + + +class PDS4SearchInstrumentsToolConfig(BaseToolConfig): + """Configuration for PDS4SearchInstrumentsTool.""" + + base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum retry attempts") + + +@mcp_tool +class PDS4SearchInstrumentsTool(BaseTool[PDS4SearchInstrumentsInputSchema, PDS4SearchInstrumentsOutputSchema]): + """Search the latest-versioned instances of PDS Context products that are Instruments. + + Instruments are scientific devices (cameras, spectrometers, etc.) used on spacecraft to collect data. + + Example: Cassini RADAR - urn:nasa:pds:context:instrument:radar.cassini + + Use for queries about specific instruments, instrument types, or instruments on missions/spacecraft. + """ + + input_schema = PDS4SearchInstrumentsInputSchema + output_schema = PDS4SearchInstrumentsOutputSchema + config_schema = PDS4SearchInstrumentsToolConfig + + async def _arun(self, params: PDS4SearchInstrumentsInputSchema) -> PDS4SearchInstrumentsOutputSchema: + """Execute the instrument search.""" + try: + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_context_instruments( + keywords=params.keywords, + instrument_type=params.instrument_type, + limit=params.limit, + ) + + instruments: list[InstrumentSummary] = [] + for instrument_item in response.data: + inst_summary = InstrumentSummary( + id=instrument_item.id, + lid=instrument_item.lid, + lidvid=instrument_item.lidvid, + title=instrument_item.title, + instrument=( + instrument_item.instrument.model_dump(exclude_none=True) if instrument_item.instrument else None + ), + ) + instruments.append(inst_summary) + + return PDS4SearchInstrumentsOutputSchema( + total_hits=response.summary.hits, + query_time_ms=response.summary.took, + query=response.summary.q, + limit=params.limit, + instruments=instruments, + ) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in search_instruments: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_instruments: {e}") + raise RuntimeError(f"Internal error during instrument search: {e}") from e diff --git a/akd_ext/tools/pds/pds4/search_investigations.py b/akd_ext/tools/pds/pds4/search_investigations.py new file mode 100644 index 0000000..b87720c --- /dev/null +++ b/akd_ext/tools/pds/pds4/search_investigations.py @@ -0,0 +1,118 @@ +"""Search PDS Context products that are Investigations (missions/projects).""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class InvestigationSummary(BaseModel): + """Investigation item in search results.""" + + id: str + lid: str | None = None + lidvid: str | None = None + title: str | None = None + investigation: dict | None = None + label_file_info: dict | None = None + + +class PDS4SearchInvestigationsInputSchema(InputSchema): + """Input schema for PDS4SearchInvestigationsTool.""" + + keywords: str | None = Field( + None, description="Space-delimited search terms (e.g. 'mars rover', 'jupiter cassini')" + ) + limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + + +class PDS4SearchInvestigationsOutputSchema(OutputSchema): + """Output schema for PDS4SearchInvestigationsTool.""" + + total_hits: int = Field(..., description="Total number of matching investigations") + query_time_ms: int | None = Field(None, description="Query execution time in milliseconds") + query: str | None = Field(None, description="The query string that was executed") + limit: int = Field(..., description="Number of results requested") + investigations: list[InvestigationSummary] = Field( + default_factory=list, description="List of matching investigations" + ) + + +class PDS4SearchInvestigationsToolConfig(BaseToolConfig): + """Configuration for PDS4SearchInvestigationsTool.""" + + base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum retry attempts") + + +@mcp_tool +class PDS4SearchInvestigationsTool(BaseTool[PDS4SearchInvestigationsInputSchema, PDS4SearchInvestigationsOutputSchema]): + """Search PDS Context products that are Investigations (missions/projects). + + Investigations are organized missions or projects that collect scientific data. + + Example: Cassini-Huygens - urn:nasa:pds:context:investigation:mission.cassini-huygens + + Use for queries about space missions, mission timelines, or finding missions that studied + specific targets. + """ + + input_schema = PDS4SearchInvestigationsInputSchema + output_schema = PDS4SearchInvestigationsOutputSchema + config_schema = PDS4SearchInvestigationsToolConfig + + async def _arun(self, params: PDS4SearchInvestigationsInputSchema) -> PDS4SearchInvestigationsOutputSchema: + """Execute the investigation search.""" + try: + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_context_investigations( + keywords=params.keywords, + limit=params.limit, + ) + + investigations: list[InvestigationSummary] = [] + for investigation in response.data: + inv_summary = InvestigationSummary( + id=investigation.id, + lid=investigation.lid, + lidvid=investigation.lidvid, + title=investigation.title, + investigation=( + investigation.investigation.model_dump(exclude_none=True) + if investigation.investigation + else None + ), + label_file_info=( + investigation.label_file_info.model_dump(exclude_none=True) + if investigation.label_file_info + else None + ), + ) + investigations.append(inv_summary) + + return PDS4SearchInvestigationsOutputSchema( + total_hits=response.summary.hits, + query_time_ms=response.summary.took, + query=response.summary.q, + limit=params.limit, + investigations=investigations, + ) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in search_investigations: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_investigations: {e}") + raise RuntimeError(f"Internal error during investigation search: {e}") from e diff --git a/akd_ext/tools/pds/pds4/search_products.py b/akd_ext/tools/pds/pds4/search_products.py new file mode 100644 index 0000000..0d963c6 --- /dev/null +++ b/akd_ext/tools/pds/pds4/search_products.py @@ -0,0 +1,199 @@ +"""Search PDS observational products with advanced filtering.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds4.types import PROCESSING_LEVEL +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class ProductSummary(BaseModel): + """Product item in search results.""" + + id: str + lid: str | None = None + lidvid: str | None = None + title: str | None = None + ref_lid_target: str | None = None + time_coordinates: dict | None = None + processing_level: str | None = None + bounding_coordinates: dict[str, float] | None = None + + +class PDS4SearchProductsInputSchema(InputSchema): + """Input schema for PDS4SearchProductsTool.""" + + keywords: str | None = Field(None, description="Search terms for product titles (e.g., 'HiRISE', 'spectra')") + start_time: str | None = Field( + None, description="Start of time range in ISO 8601 format (e.g., '2020-01-01T00:00:00Z')" + ) + end_time: str | None = Field( + None, description="End of time range in ISO 8601 format (e.g., '2021-01-01T00:00:00Z')" + ) + processing_level: PROCESSING_LEVEL | None = Field( + None, description="Filter by calibration level" + ) + bbox_north: Annotated[float, Field(ge=-90, le=90)] | None = Field( + None, description="North bounding coordinate (latitude, -90 to 90)" + ) + bbox_south: Annotated[float, Field(ge=-90, le=90)] | None = Field( + None, description="South bounding coordinate (latitude, -90 to 90)" + ) + bbox_east: Annotated[float, Field(ge=-180, le=180)] | None = Field( + None, description="East bounding coordinate (longitude, -180 to 180)" + ) + bbox_west: Annotated[float, Field(ge=-180, le=180)] | None = Field( + None, description="West bounding coordinate (longitude, -180 to 180)" + ) + ref_lid_target: str | None = Field( + None, description="URN identifier for target (e.g., 'urn:nasa:pds:context:target:planet.mars')" + ) + limit: Annotated[int, Field(ge=0, le=100)] = Field(100, description="Maximum results to return (default 100)") + + +class PDS4SearchProductsOutputSchema(OutputSchema): + """Output schema for PDS4SearchProductsTool.""" + + total_hits: int = Field(..., description="Total number of matching products") + query_time_ms: int | None = Field(None, description="Query execution time in milliseconds") + query: str | None = Field(None, description="The query string that was executed") + limit: int = Field(..., description="Number of results requested") + products: list[ProductSummary] = Field(default_factory=list, description="List of matching products with metadata") + + +class PDS4SearchProductsToolConfig(BaseToolConfig): + """Configuration for PDS4SearchProductsTool.""" + + base_url: str = Field( + default="https://pds.mcp.nasa.gov/api/search/1/", + description="PDS4 API base URL (can be overridden with PDS4_BASE_URL env var)", + ) + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class PDS4SearchProductsTool(BaseTool[PDS4SearchProductsInputSchema, PDS4SearchProductsOutputSchema]): + """Search PDS observational products with advanced filtering. + + This tool searches for actual science data products in the NASA Planetary Data System (PDS4). + Supports temporal, processing level, spatial (bounding box), and target filters. + + Use this tool for finding specific observational data products like images, spectra, and + other scientific measurements. + + Processing Levels: + - Raw: Unprocessed instrument data as received from spacecraft + - Calibrated: Instrument effects removed, science-ready data + - Derived: Higher-level data products (maps, mosaics, etc.) + + Bounding Box Coordinates: + - Latitude (North/South): -90 to 90 degrees + - Longitude (East/West): -180 to 180 degrees + - Products that intersect the query box will be returned + """ + + input_schema = PDS4SearchProductsInputSchema + output_schema = PDS4SearchProductsOutputSchema + config_schema = PDS4SearchProductsToolConfig + + async def _arun(self, params: PDS4SearchProductsInputSchema) -> PDS4SearchProductsOutputSchema: + """Execute the product search. + + Args: + params: Input parameters for the search + + Returns: + Search results with products and metadata + + Raises: + PDS4ClientError: If the API request fails + ValueError: If coordinate values are invalid + """ + try: + # Create client and perform search + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_products_advanced( + keywords=params.keywords, + start_time=params.start_time, + end_time=params.end_time, + processing_level=params.processing_level, + bbox_north=params.bbox_north, + bbox_south=params.bbox_south, + bbox_east=params.bbox_east, + bbox_west=params.bbox_west, + ref_lid_target=params.ref_lid_target, + limit=params.limit, + ) + + # Format response + products: list[ProductSummary] = [] + for product in response.data: + processing_level_val = None + bbox = None + + if product.properties: + props = product.properties + if "pds:Primary_Result_Summary.pds:processing_level" in props: + level = props["pds:Primary_Result_Summary.pds:processing_level"] + processing_level_val = level[0] if isinstance(level, list) else level + + # Build bounding coordinates + bbox_dict: dict[str, float] = {} + for coord_key, bbox_key in [ + ("cart:Bounding_Coordinates.cart:north_bounding_coordinate", "north"), + ("cart:Bounding_Coordinates.cart:south_bounding_coordinate", "south"), + ("cart:Bounding_Coordinates.cart:east_bounding_coordinate", "east"), + ("cart:Bounding_Coordinates.cart:west_bounding_coordinate", "west"), + ]: + if coord_key in props: + val = props[coord_key] + val = val[0] if isinstance(val, list) else val + if val and val != "null": + bbox_dict[bbox_key] = float(val) if isinstance(val, str) else val + if bbox_dict: + bbox = bbox_dict + + product_summary = ProductSummary( + id=product.id, + lid=product.lid, + lidvid=product.lidvid, + title=product.title, + ref_lid_target=product.ref_lid_target, + time_coordinates=( + product.time_coordinates.model_dump(exclude_none=True) if product.time_coordinates else None + ), + processing_level=processing_level_val, + bounding_coordinates=bbox, + ) + products.append(product_summary) + + return PDS4SearchProductsOutputSchema( + total_hits=response.summary.hits, + query_time_ms=response.summary.took, + query=response.summary.q, + limit=params.limit, + products=products, + ) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in search_products: {e}") + raise + except ValueError as e: + # Re-raise validation errors (e.g., invalid coordinates) + logger.error(f"Validation error in search_products: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_products: {e}") + raise RuntimeError(f"Internal error during product search: {e}") from e diff --git a/akd_ext/tools/pds/pds4/search_targets.py b/akd_ext/tools/pds/pds4/search_targets.py new file mode 100644 index 0000000..ee6cbd5 --- /dev/null +++ b/akd_ext/tools/pds/pds4/search_targets.py @@ -0,0 +1,111 @@ +"""Search PDS Context products that are Targets (celestial bodies, phenomena).""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds4.types import TARGET_TYPE +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError + +logger = logging.getLogger(__name__) + + +class TargetSummary(BaseModel): + """Target item in search results.""" + + id: str + lid: str | None = None + lidvid: str | None = None + title: str | None = None + target: dict | None = None + alias: dict | None = None + + +class PDS4SearchTargetsInputSchema(InputSchema): + """Input schema for PDS4SearchTargetsTool.""" + + keywords: str | None = Field( + None, description="Space-delimited search terms (e.g. 'jupiter moon', 'asteroid belt')" + ) + target_type: TARGET_TYPE | None = Field(None, description="Filter by target type") + limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + + +class PDS4SearchTargetsOutputSchema(OutputSchema): + """Output schema for PDS4SearchTargetsTool.""" + + total_hits: int = Field(..., description="Total number of matching targets") + query_time_ms: int | None = Field(None, description="Query execution time in milliseconds") + query: str | None = Field(None, description="The query string that was executed") + limit: int = Field(..., description="Number of results requested") + targets: list[TargetSummary] = Field(default_factory=list, description="List of matching targets") + + +class PDS4SearchTargetsToolConfig(BaseToolConfig): + """Configuration for PDS4SearchTargetsTool.""" + + base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + timeout: float = Field(default=30.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum retry attempts") + + +@mcp_tool +class PDS4SearchTargetsTool(BaseTool[PDS4SearchTargetsInputSchema, PDS4SearchTargetsOutputSchema]): + """Search PDS Context products that are Targets (celestial bodies, phenomena). + + Targets are objects of scientific study: planets, moons, asteroids, comets, etc. + + Example: Mars - urn:nasa:pds:context:target:planet.mars + + Use for queries about specific celestial bodies, finding targets by type, or targets + studied by missions. + """ + + input_schema = PDS4SearchTargetsInputSchema + output_schema = PDS4SearchTargetsOutputSchema + config_schema = PDS4SearchTargetsToolConfig + + async def _arun(self, params: PDS4SearchTargetsInputSchema) -> PDS4SearchTargetsOutputSchema: + """Execute the target search.""" + try: + async with PDS4Client( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_context_targets( + keywords=params.keywords, + target_type=params.target_type, + limit=params.limit, + ) + + targets: list[TargetSummary] = [] + for target_item in response.data: + target_summary = TargetSummary( + id=target_item.id, + lid=target_item.lid, + lidvid=target_item.lidvid, + title=target_item.title, + target=target_item.target.model_dump(exclude_none=True) if target_item.target else None, + alias=target_item.alias.model_dump(exclude_none=True) if target_item.alias else None, + ) + targets.append(target_summary) + + return PDS4SearchTargetsOutputSchema( + total_hits=response.summary.hits, + query_time_ms=response.summary.took, + query=response.summary.q, + limit=params.limit, + targets=targets, + ) + + except PDS4ClientError as e: + logger.error(f"PDS4 client error in search_targets: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_targets: {e}") + raise RuntimeError(f"Internal error during target search: {e}") from e diff --git a/akd_ext/tools/pds/pds4/types.py b/akd_ext/tools/pds/pds4/types.py new file mode 100644 index 0000000..8fdc6ab --- /dev/null +++ b/akd_ext/tools/pds/pds4/types.py @@ -0,0 +1,57 @@ +"""PDS4 type definitions. + +Shared type definitions for PDS4 tools based on the PDS4 registry API. +""" + +from typing import Literal + +# Processing levels for PDS4 data products +PROCESSING_LEVEL = Literal["Raw", "Calibrated", "Derived"] + +# Instrument host types +INSTRUMENT_HOST_TYPE = Literal["Rover", "Lander", "Spacecraft"] + +# Instrument types from PDS4 registry +INSTRUMENT_TYPE = Literal[ + "Energetic Particle Detector", + "Plasma Analyzer", + "Regolith Properties", + "Spectrograph", + "Imager", + "Atmospheric Sciences", + "Spectrometer", + "Radio-Radar", + "Ultraviolet Spectrometer", + "Small Bodies Sciences", + "Dust", + "Particle Detector", + "Photometer", + "Polarimeter", + "Plasma Wave Spectrometer", +] + +# Target types from PDS4 registry +TARGET_TYPE = Literal[ + "Planetary Nebula", + "Galaxy", + "Calibrator", + "Trans-Neptunian Object", + "Planetary System", + "Satellite", + "Centaur", + "Astrophysical", + "Star Cluster", + "Laboratory Analog", + "Dust", + "Asteroid", + "Comet", + "Equipment", + "Star", + "Ring", + "Dwarf Planet", + "Calibration Field", + "Planet", + "Plasma Cloud", + "Plasma Stream", + "Magnetic Field", +] diff --git a/akd_ext/tools/pds/pds_catalog/__init__.py b/akd_ext/tools/pds/pds_catalog/__init__.py new file mode 100644 index 0000000..47b4502 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/__init__.py @@ -0,0 +1,64 @@ +"""PDS Catalog tools for searching pre-scraped PDS datasets.""" + +from akd_ext.tools.pds.pds_catalog.get_dataset import ( + PDSCatalogGetDatasetInputSchema, + PDSCatalogGetDatasetOutputSchema, + PDSCatalogGetDatasetTool, + PDSCatalogGetDatasetToolConfig, +) +from akd_ext.tools.pds.pds_catalog.list_missions import ( + PDSCatalogListMissionsInputSchema, + PDSCatalogListMissionsOutputSchema, + PDSCatalogListMissionsTool, + PDSCatalogListMissionsToolConfig, + PDSCatalogMissionItem, +) +from akd_ext.tools.pds.pds_catalog.list_targets import ( + PDSCatalogListTargetsInputSchema, + PDSCatalogListTargetsOutputSchema, + PDSCatalogListTargetsTool, + PDSCatalogListTargetsToolConfig, + PDSCatalogTargetItem, +) +from akd_ext.tools.pds.pds_catalog.search import ( + PDSCatalogSearchInputSchema, + PDSCatalogSearchOutputSchema, + PDSCatalogSearchTool, + PDSCatalogSearchToolConfig, +) +from akd_ext.tools.pds.pds_catalog.stats import ( + PDSCatalogStatsInputSchema, + PDSCatalogStatsOutputSchema, + PDSCatalogStatsTool, + PDSCatalogStatsToolConfig, +) + +__all__ = [ + # Search tool + "PDSCatalogSearchTool", + "PDSCatalogSearchInputSchema", + "PDSCatalogSearchOutputSchema", + "PDSCatalogSearchToolConfig", + # Get dataset tool + "PDSCatalogGetDatasetTool", + "PDSCatalogGetDatasetInputSchema", + "PDSCatalogGetDatasetOutputSchema", + "PDSCatalogGetDatasetToolConfig", + # List missions tool + "PDSCatalogListMissionsTool", + "PDSCatalogListMissionsInputSchema", + "PDSCatalogListMissionsOutputSchema", + "PDSCatalogListMissionsToolConfig", + "PDSCatalogMissionItem", + # List targets tool + "PDSCatalogListTargetsTool", + "PDSCatalogListTargetsInputSchema", + "PDSCatalogListTargetsOutputSchema", + "PDSCatalogListTargetsToolConfig", + "PDSCatalogTargetItem", + # Stats tool + "PDSCatalogStatsTool", + "PDSCatalogStatsInputSchema", + "PDSCatalogStatsOutputSchema", + "PDSCatalogStatsToolConfig", +] diff --git a/akd_ext/tools/pds/pds_catalog/get_dataset.py b/akd_ext/tools/pds/pds_catalog/get_dataset.py new file mode 100644 index 0000000..ae54440 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/get_dataset.py @@ -0,0 +1,112 @@ +"""Get detailed information about a specific PDS dataset.""" + +import logging +from typing import Any + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.pds_catalog_client import FIELD_PROFILES, PDSCatalogClient, PDSCatalogClientError, filter_dataset + +logger = logging.getLogger(__name__) + + +class PDSCatalogGetDatasetInputSchema(InputSchema): + """Input schema for PDSCatalogGetDatasetTool.""" + + dataset_id: str = Field( + ..., + description="The dataset ID (LIDVID for PDS4, VOLUME_ID for PDS3)", + ) + + +class PDSCatalogGetDatasetOutputSchema(OutputSchema): + """Output schema for PDSCatalogGetDatasetTool.""" + + status: str = Field(..., description="Status of the request ('success' or 'not_found')") + dataset: dict[str, Any] | None = Field( + None, + description="Full dataset information if found", + ) + error: str | None = Field( + None, + description="Error message if dataset not found", + ) + + +class PDSCatalogGetDatasetToolConfig(BaseToolConfig): + """Configuration for PDSCatalogGetDatasetTool.""" + + catalog_dir: str | None = Field( + default=None, + description="Directory containing catalog JSONL files (uses PDS_CATALOG_DIR env var or default if None)", + ) + + +@mcp_tool +class PDSCatalogGetDatasetTool(BaseTool[PDSCatalogGetDatasetInputSchema, PDSCatalogGetDatasetOutputSchema]): + """Get detailed information about a specific dataset. + + This tool retrieves full metadata for a specific PDS dataset by its ID. + Use this when you have a dataset ID from search results and need complete details. + + Dataset IDs: + - PDS4: LIDVID format (e.g., "urn:nasa:pds:cassini_iss::1.0") + - PDS3: VOLUME_ID format (e.g., "GO_0017") + + Returns all available metadata including: + - Basic info: ID, title, description + - Classification: node, PDS version, type + - Discovery metadata: missions, targets, instruments + - Temporal coverage: start and stop dates + - Access URLs: browse, download, label + - Additional metadata: keywords, processing level + + """ + + input_schema = PDSCatalogGetDatasetInputSchema + output_schema = PDSCatalogGetDatasetOutputSchema + config_schema = PDSCatalogGetDatasetToolConfig + + async def _arun(self, params: PDSCatalogGetDatasetInputSchema) -> PDSCatalogGetDatasetOutputSchema: + """Execute the dataset retrieval. + + Args: + params: Input parameters with dataset ID + + Returns: + Dataset information if found, error message otherwise + + Raises: + PDSCatalogClientError: If the catalog cannot be accessed + """ + try: + # Create client + client = PDSCatalogClient(catalog_dir=self.config.catalog_dir) + + # Get dataset + dataset = await client.get_dataset(params.dataset_id) + + if dataset is None: + return PDSCatalogGetDatasetOutputSchema( + status="not_found", + error=f"Dataset not found: {params.dataset_id}", + ) + + # Return full fields + field_set = FIELD_PROFILES["full"] + filtered_dataset = filter_dataset(dataset, field_set) + + return PDSCatalogGetDatasetOutputSchema( + status="success", + dataset=filtered_dataset, + ) + + except PDSCatalogClientError as e: + logger.error(f"PDS Catalog client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in get_dataset: {e}") + raise RuntimeError(f"Internal error retrieving dataset: {e}") from e diff --git a/akd_ext/tools/pds/pds_catalog/list_missions.py b/akd_ext/tools/pds/pds_catalog/list_missions.py new file mode 100644 index 0000000..476ea36 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/list_missions.py @@ -0,0 +1,118 @@ +"""List missions available in the PDS catalog.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds_catalog.types import PDS_NODE +from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClient, PDSCatalogClientError + +logger = logging.getLogger(__name__) + + +class PDSCatalogMissionItem(BaseModel): + """Mission item in list results.""" + + name: str = Field(description="Mission name (proper casing)") + count: int = Field(description="Number of datasets for this mission") + nodes: list[str] = Field(description="List of PDS nodes containing datasets for this mission") + + +class PDSCatalogListMissionsInputSchema(InputSchema): + """Input schema for PDSCatalogListMissionsTool.""" + + node: PDS_NODE | None = Field( + None, + description="Filter by PDS node (optional)", + ) + limit: Annotated[int, Field(ge=1, le=50)] = Field( + 50, + description="Maximum missions to return (default 50)", + ) + + +class PDSCatalogListMissionsOutputSchema(OutputSchema): + """Output schema for PDSCatalogListMissionsTool.""" + + status: str = Field(..., description="Status of the request ('success')") + count: int = Field(..., description="Number of missions returned") + missions: list[PDSCatalogMissionItem] = Field( + default_factory=list, + description="List of missions with dataset counts", + ) + + +class PDSCatalogListMissionsToolConfig(BaseToolConfig): + """Configuration for PDSCatalogListMissionsTool.""" + + catalog_dir: str | None = Field( + default=None, + description="Directory containing catalog JSONL files (uses PDS_CATALOG_DIR env var or default if None)", + ) + + +@mcp_tool +class PDSCatalogListMissionsTool(BaseTool[PDSCatalogListMissionsInputSchema, PDSCatalogListMissionsOutputSchema]): + """List missions available in the catalog. + + This tool returns all missions present in the PDS catalog with dataset counts. + Use this to discover what missions have data available before searching. + + Each mission entry includes: + - name: Mission name with proper casing + - count: Number of datasets for this mission + - nodes: List of PDS nodes containing data for this mission + + Optionally filter by PDS node to see missions available at specific nodes. + + """ + + input_schema = PDSCatalogListMissionsInputSchema + output_schema = PDSCatalogListMissionsOutputSchema + config_schema = PDSCatalogListMissionsToolConfig + + async def _arun(self, params: PDSCatalogListMissionsInputSchema) -> PDSCatalogListMissionsOutputSchema: + """Execute the mission listing. + + Args: + params: Input parameters with optional node filter + + Returns: + List of missions with counts and nodes + + Raises: + PDSCatalogClientError: If the catalog cannot be accessed + """ + try: + # Create client + client = PDSCatalogClient(catalog_dir=self.config.catalog_dir) + + # List missions + missions = await client.list_missions(node=params.node, limit=params.limit) + + # Convert to output format + mission_items = [ + PDSCatalogMissionItem( + name=m["name"], + count=m["count"], + nodes=m["nodes"], + ) + for m in missions + ] + + return PDSCatalogListMissionsOutputSchema( + status="success", + count=len(mission_items), + missions=mission_items, + ) + + except PDSCatalogClientError as e: + logger.error(f"PDS Catalog client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in list_missions: {e}") + raise RuntimeError(f"Internal error listing missions: {e}") from e diff --git a/akd_ext/tools/pds/pds_catalog/list_targets.py b/akd_ext/tools/pds/pds_catalog/list_targets.py new file mode 100644 index 0000000..9fcc95a --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/list_targets.py @@ -0,0 +1,133 @@ +"""List targets (celestial bodies) available in the PDS catalog.""" + +import logging +from typing import Annotated + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds_catalog.types import PDS_NODE +from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClient, PDSCatalogClientError + +logger = logging.getLogger(__name__) + + +class PDSCatalogTargetItem(BaseModel): + """Target item in list results.""" + + name: str = Field(description="Target name (proper casing)") + count: int = Field(description="Number of datasets for this target") + nodes: list[str] = Field(description="List of PDS nodes containing datasets for this target") + + +class PDSCatalogListTargetsInputSchema(InputSchema): + """Input schema for PDSCatalogListTargetsTool.""" + + node: PDS_NODE | None = Field( + None, + description="Filter by PDS node (optional)", + ) + limit: Annotated[int, Field(ge=1, le=50)] = Field( + 50, + description="Maximum targets to return (default 50)", + ) + + +class PDSCatalogListTargetsOutputSchema(OutputSchema): + """Output schema for PDSCatalogListTargetsTool.""" + + status: str = Field(..., description="Status of the request ('success')") + count: int = Field(..., description="Number of targets returned") + targets: list[PDSCatalogTargetItem] = Field( + default_factory=list, + description="List of targets with dataset counts", + ) + + +class PDSCatalogListTargetsToolConfig(BaseToolConfig): + """Configuration for PDSCatalogListTargetsTool.""" + + catalog_dir: str | None = Field( + default=None, + description="Directory containing catalog JSONL files (uses PDS_CATALOG_DIR env var or default if None)", + ) + + +@mcp_tool +class PDSCatalogListTargetsTool(BaseTool[PDSCatalogListTargetsInputSchema, PDSCatalogListTargetsOutputSchema]): + """List targets (celestial bodies) available in the catalog. + + This tool returns all targets (planets, moons, asteroids, comets, etc.) present + in the PDS catalog with dataset counts. Use this to discover what celestial bodies + have data available before searching. + + Each target entry includes: + - name: Target name with proper casing (e.g., "Mars", "Saturn", "Enceladus") + - count: Number of datasets for this target + - nodes: List of PDS nodes containing data for this target + + Optionally filter by PDS node to see targets available at specific nodes. + + Example Usage: + # List all targets + tool = PDSCatalogListTargetsTool() + result = await tool.arun(PDSCatalogListTargetsInputSchema()) + + # List targets at the Ring-Moon Systems node + result = await tool.arun(PDSCatalogListTargetsInputSchema( + node="rms" + )) + + # Get top 30 targets + result = await tool.arun(PDSCatalogListTargetsInputSchema( + limit=30 + )) + """ + + input_schema = PDSCatalogListTargetsInputSchema + output_schema = PDSCatalogListTargetsOutputSchema + config_schema = PDSCatalogListTargetsToolConfig + + async def _arun(self, params: PDSCatalogListTargetsInputSchema) -> PDSCatalogListTargetsOutputSchema: + """Execute the target listing. + + Args: + params: Input parameters with optional node filter + + Returns: + List of targets with counts and nodes + + Raises: + PDSCatalogClientError: If the catalog cannot be accessed + """ + try: + # Create client + client = PDSCatalogClient(catalog_dir=self.config.catalog_dir) + + # List targets + targets = await client.list_targets(node=params.node, limit=params.limit) + + # Convert to output format + target_items = [ + PDSCatalogTargetItem( + name=t["name"], + count=t["count"], + nodes=t["nodes"], + ) + for t in targets + ] + + return PDSCatalogListTargetsOutputSchema( + status="success", + count=len(target_items), + targets=target_items, + ) + + except PDSCatalogClientError as e: + logger.error(f"PDS Catalog client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in list_targets: {e}") + raise RuntimeError(f"Internal error listing targets: {e}") from e diff --git a/akd_ext/tools/pds/pds_catalog/search.py b/akd_ext/tools/pds/pds_catalog/search.py new file mode 100644 index 0000000..7e7597f --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/search.py @@ -0,0 +1,207 @@ +"""Search the PDS dataset catalog.""" + +import logging +from datetime import date +from typing import Annotated, Any + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.pds_catalog.types import DATASET_TYPE, FIELD_PROFILE, PDS_NODE, PDS_VERSION +from akd_ext.tools.pds.utils.pds_catalog_client import ( + FIELD_PROFILES, + MAX_RESULTS_LIMIT, + PDSCatalogClient, + PDSCatalogClientError, + filter_dataset, +) + +logger = logging.getLogger(__name__) + + +class PDSCatalogSearchInputSchema(InputSchema): + """Input schema for PDSCatalogSearchTool.""" + + query: str | None = Field( + None, + description=( + "Text search across title, description, missions, targets, instruments. " + "Examples: 'mars images', 'cassini saturn', 'comet spectra'" + ), + ) + node: PDS_NODE | None = Field( + None, + description=( + "Filter by PDS node. Valid values: " + "atm (Atmospheres), geo (Geosciences), img (Imaging), " + "naif (SPICE/Navigation), ppi (Plasma), rms (Ring-Moon), sbn (Small Bodies)" + ), + ) + mission: str | None = Field( + None, + description="Filter by mission name. Examples: 'Cassini', 'Mars 2020', 'Voyager'", + ) + instrument: str | None = Field( + None, + description="Filter by instrument name. Examples: 'JEDI', 'CAPS', 'magnetometer'", + ) + target: str | None = Field( + None, + description="Filter by target body. Examples: 'Mars', 'Saturn', 'Comet'", + ) + pds_version: PDS_VERSION | None = Field( + None, + description="Filter by archive version: 'PDS3' or 'PDS4'", + ) + dataset_type: DATASET_TYPE | None = Field( + None, + description="Filter by type: 'volume' (PDS3), 'bundle' (PDS4), or 'collection' (PDS4)", + ) + start_date: str | None = Field( + None, + description="Filter datasets that have data on or after this date (YYYY-MM-DD)", + ) + stop_date: str | None = Field( + None, + description="Filter datasets that have data on or before this date (YYYY-MM-DD)", + ) + limit: Annotated[int, Field(ge=1, le=50)] = Field( + 20, + description="Maximum results to return (default 20, max 50)", + ) + offset: Annotated[int, Field(ge=0)] = Field( + 0, + description="Skip first N results for pagination (default 0)", + ) + fields: FIELD_PROFILE = Field( + "summary", + description="Response detail level - 'essential', 'summary' (default), or 'full'", + ) + + +class PDSCatalogSearchOutputSchema(OutputSchema): + """Output schema for PDSCatalogSearchTool.""" + + status: str = Field(..., description="Status of the search ('success' or 'error')") + count: int = Field(..., description="Number of datasets returned in this response") + total: int = Field(..., description="Total number of matching datasets") + offset: int = Field(..., description="Offset used for pagination") + limit: int = Field(..., description="Limit used for pagination") + has_more: bool = Field(..., description="Whether more results are available") + fields: str = Field(..., description="Field profile used ('essential', 'summary', or 'full')") + datasets: list[dict[str, Any]] = Field( + default_factory=list, + description="List of matching datasets with fields based on the selected profile", + ) + + +class PDSCatalogSearchToolConfig(BaseToolConfig): + """Configuration for PDSCatalogSearchTool.""" + + catalog_dir: str | None = Field( + default=None, + description="Directory containing catalog JSONL files (uses PDS_CATALOG_DIR env var or default if None)", + ) + + +@mcp_tool +class PDSCatalogSearchTool(BaseTool[PDSCatalogSearchInputSchema, PDSCatalogSearchOutputSchema]): + """Search the PDS dataset catalog. + + This tool searches across all PDS nodes for datasets matching your criteria. + The catalog is a pre-scraped collection of PDS datasets stored locally in JSONL format. + + Supports: + - Text search across titles, descriptions, and metadata + - Filtering by node, mission, instrument, target + - Temporal filtering by observation dates + - Pagination for large result sets + - Three detail levels: essential, summary, and full + + PDS Nodes: + - atm: Atmospheres node + - geo: Geosciences node + - img: Imaging node + - naif: Navigation and Ancillary Information (SPICE kernels) + - ppi: Planetary Plasma Interactions node + - rms: Ring-Moon Systems node + - sbn: Small Bodies node + + Dataset Types: + - volume: PDS3 data volumes + - bundle: PDS4 top-level collections + - collection: PDS4 data collections + """ + + input_schema = PDSCatalogSearchInputSchema + output_schema = PDSCatalogSearchOutputSchema + config_schema = PDSCatalogSearchToolConfig + + async def _arun(self, params: PDSCatalogSearchInputSchema) -> PDSCatalogSearchOutputSchema: + """Execute the catalog search. + + Args: + params: Input parameters for the search + + Returns: + Search results with datasets and pagination metadata + + Raises: + PDSCatalogClientError: If the catalog cannot be loaded or searched + """ + try: + # Create client + client = PDSCatalogClient(catalog_dir=self.config.catalog_dir) + + # Parse date strings + parsed_start = date.fromisoformat(params.start_date) if params.start_date else None + parsed_stop = date.fromisoformat(params.stop_date) if params.stop_date else None + + # Enforce max limit + effective_limit = min(params.limit, MAX_RESULTS_LIMIT) + + # Get field set for filtering + field_set = FIELD_PROFILES.get(params.fields, FIELD_PROFILES["summary"]) + + # Perform search + datasets, total = await client.search( + query=params.query, + node=params.node, + mission=params.mission, + instrument=params.instrument, + target=params.target, + pds_version=params.pds_version, + dataset_type=params.dataset_type, + start_date=parsed_start, + stop_date=parsed_stop, + limit=effective_limit, + offset=params.offset, + ) + + # Filter datasets to requested fields + results = [filter_dataset(d, field_set) for d in datasets] + has_more = params.offset + len(results) < total + + return PDSCatalogSearchOutputSchema( + status="success", + count=len(results), + total=total, + offset=params.offset, + limit=effective_limit, + has_more=has_more, + fields=params.fields, + datasets=results, + ) + + except PDSCatalogClientError as e: + logger.error(f"PDS Catalog client error: {e}") + raise + except ValueError as e: + # Date parsing errors + logger.error(f"Invalid date format: {e}") + raise ValueError(f"Invalid date format. Use YYYY-MM-DD format: {e}") from e + except Exception as e: + logger.error(f"Unexpected error in catalog search: {e}") + raise RuntimeError(f"Internal error during catalog search: {e}") from e diff --git a/akd_ext/tools/pds/pds_catalog/stats.py b/akd_ext/tools/pds/pds_catalog/stats.py new file mode 100644 index 0000000..d5db3f6 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/stats.py @@ -0,0 +1,98 @@ +"""Get statistics about the PDS catalog.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClient, PDSCatalogClientError + +logger = logging.getLogger(__name__) + + +class PDSCatalogStatsInputSchema(InputSchema): + """Input schema for PDSCatalogStatsTool. + + This tool requires no input parameters. + """ + + pass + + +class PDSCatalogStatsOutputSchema(OutputSchema): + """Output schema for PDSCatalogStatsTool.""" + + status: str = Field(..., description="Status of the request ('success')") + total_datasets: int = Field(..., description="Total number of datasets in the catalog") + by_node: dict[str, int] = Field(..., description="Dataset counts by PDS node") + by_pds_version: dict[str, int] = Field(..., description="Dataset counts by PDS version (PDS3/PDS4)") + by_type: dict[str, int] = Field(..., description="Dataset counts by type (volume/bundle/collection)") + missions_count: int = Field(..., description="Total number of unique missions in the catalog") + targets_count: int = Field(..., description="Total number of unique targets in the catalog") + + +class PDSCatalogStatsToolConfig(BaseToolConfig): + """Configuration for PDSCatalogStatsTool.""" + + catalog_dir: str | None = Field( + default=None, + description="Directory containing catalog JSONL files (uses PDS_CATALOG_DIR env var or default if None)", + ) + + +@mcp_tool +class PDSCatalogStatsTool(BaseTool[PDSCatalogStatsInputSchema, PDSCatalogStatsOutputSchema]): + """Get catalog statistics. + + This tool returns comprehensive statistics about the PDS catalog including: + - Total number of datasets + - Breakdown by PDS node (atm, geo, img, naif, ppi, rms, sbn) + - Breakdown by PDS version (PDS3 vs PDS4) + - Breakdown by dataset type (volume, bundle, collection) + - Number of unique missions + - Number of unique targets + + Use this to understand the catalog's coverage before searching. + """ + + input_schema = PDSCatalogStatsInputSchema + output_schema = PDSCatalogStatsOutputSchema + config_schema = PDSCatalogStatsToolConfig + + async def _arun(self, params: PDSCatalogStatsInputSchema) -> PDSCatalogStatsOutputSchema: + """Execute the stats retrieval. + + Args: + params: Input parameters (none required) + + Returns: + Catalog statistics + + Raises: + PDSCatalogClientError: If the catalog cannot be accessed + """ + try: + # Create client + client = PDSCatalogClient(catalog_dir=self.config.catalog_dir) + + # Get stats + stats = await client.get_stats() + + return PDSCatalogStatsOutputSchema( + status="success", + total_datasets=stats["total_datasets"], + by_node=stats["by_node"], + by_pds_version=stats["by_pds_version"], + by_type=stats["by_type"], + missions_count=stats["missions_count"], + targets_count=stats["targets_count"], + ) + + except PDSCatalogClientError as e: + logger.error(f"PDS Catalog client error: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in get_stats: {e}") + raise RuntimeError(f"Internal error retrieving stats: {e}") from e diff --git a/akd_ext/tools/pds/pds_catalog/types.py b/akd_ext/tools/pds/pds_catalog/types.py new file mode 100644 index 0000000..70cd8d8 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/types.py @@ -0,0 +1,18 @@ +"""PDS Catalog type definitions. + +Shared type definitions for PDS Catalog tools. +""" + +from typing import Literal + +# Valid PDS node types +PDS_NODE = Literal["atm", "geo", "img", "naif", "ppi", "rms", "sbn"] + +# Valid PDS archive versions +PDS_VERSION = Literal["PDS3", "PDS4"] + +# Valid dataset types +DATASET_TYPE = Literal["volume", "bundle", "collection"] + +# Valid field profile levels +FIELD_PROFILE = Literal["essential", "summary", "full"] diff --git a/akd_ext/tools/pds/sbn/__init__.py b/akd_ext/tools/pds/sbn/__init__.py new file mode 100644 index 0000000..c5f195c --- /dev/null +++ b/akd_ext/tools/pds/sbn/__init__.py @@ -0,0 +1,38 @@ +"""SBN CATCH tools for searching comet and asteroid observations.""" + +from akd_ext.tools.pds.sbn.list_sources import ( + SBNListSourcesInputSchema, + SBNListSourcesOutputSchema, + SBNListSourcesTool, + SBNListSourcesToolConfig, +) +from akd_ext.tools.pds.sbn.search_coordinates import ( + SBNSearchCoordinatesInputSchema, + SBNSearchCoordinatesOutputSchema, + SBNSearchCoordinatesTool, + SBNSearchCoordinatesToolConfig, +) +from akd_ext.tools.pds.sbn.search_object import ( + SBNSearchObjectInputSchema, + SBNSearchObjectOutputSchema, + SBNSearchObjectTool, + SBNSearchObjectToolConfig, +) + +__all__ = [ + # List Sources + "SBNListSourcesTool", + "SBNListSourcesInputSchema", + "SBNListSourcesOutputSchema", + "SBNListSourcesToolConfig", + # Search Object + "SBNSearchObjectTool", + "SBNSearchObjectInputSchema", + "SBNSearchObjectOutputSchema", + "SBNSearchObjectToolConfig", + # Search Coordinates + "SBNSearchCoordinatesTool", + "SBNSearchCoordinatesInputSchema", + "SBNSearchCoordinatesOutputSchema", + "SBNSearchCoordinatesToolConfig", +] diff --git a/akd_ext/tools/pds/sbn/list_sources.py b/akd_ext/tools/pds/sbn/list_sources.py new file mode 100644 index 0000000..f400a7d --- /dev/null +++ b/akd_ext/tools/pds/sbn/list_sources.py @@ -0,0 +1,117 @@ +"""List available CATCH data sources with their current status.""" + +import logging + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import BaseModel, Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.utils.sbn_client import SBNCatchClient, SBNCatchClientError + +logger = logging.getLogger(__name__) + + +class SBNSourceSummary(BaseModel): + """Source item in list_sources results.""" + + source: str + source_name: str | None = None + count: int + start_date: str | None = None + stop_date: str | None = None + nights: int | None = None + updated: str | None = None + + +class SBNListSourcesInputSchema(InputSchema): + """Input schema for SBNListSourcesTool. + + This tool requires no input parameters. + """ + + pass + + +class SBNListSourcesOutputSchema(OutputSchema): + """Output schema for SBNListSourcesTool.""" + + total_sources: int = Field(..., description="Total number of data sources available") + sources: list[SBNSourceSummary] = Field(default_factory=list, description="List of data sources with metadata") + + +class SBNListSourcesToolConfig(BaseToolConfig): + """Configuration for SBNListSourcesTool.""" + + base_url: str = Field( + default="https://catch-api.astro.umd.edu/", + description="CATCH API base URL (can be overridden with SBN_BASE_URL env var)", + ) + timeout: float = Field(default=60.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class SBNListSourcesTool(BaseTool[SBNListSourcesInputSchema, SBNListSourcesOutputSchema]): + """List available CATCH data sources with their current status. + + This tool queries the SBN CATCH API to retrieve information about all available + astronomical survey data sources. Each source represents a different survey that + has observed comets and asteroids. + + The response includes for each source: + - source: Short identifier (e.g., "neat_palomar_tricam", "ps1dr2") + - source_name: Human-readable name + - count: Number of observations available + - start_date/stop_date: Temporal coverage range + - nights: Number of observing nights + - updated: Last update timestamp + + Use this tool to: + 1. Discover available data sources before searching + 2. Check temporal coverage and observation counts + 3. Verify source availability and last update times + """ + + input_schema = SBNListSourcesInputSchema + output_schema = SBNListSourcesOutputSchema + config_schema = SBNListSourcesToolConfig + + async def _arun(self, params: SBNListSourcesInputSchema) -> SBNListSourcesOutputSchema: + """Execute the tool to list available data sources.""" + try: + async with SBNCatchClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.list_sources() + + if response.error: + logger.error(f"CATCH API returned error: {response.error}") + raise SBNCatchClientError(response.error) + + sources = [ + SBNSourceSummary( + source=s.source, + source_name=s.source_name, + count=s.count, + start_date=s.start_date, + stop_date=s.stop_date, + nights=s.nights, + updated=s.updated, + ) + for s in response.sources + ] + + return SBNListSourcesOutputSchema( + total_sources=len(sources), + sources=sources, + ) + + except SBNCatchClientError as e: + logger.error(f"SBN client error in list_sources: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in list_sources: {e}") + raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/sbn/search_coordinates.py b/akd_ext/tools/pds/sbn/search_coordinates.py new file mode 100644 index 0000000..61c7d83 --- /dev/null +++ b/akd_ext/tools/pds/sbn/search_coordinates.py @@ -0,0 +1,171 @@ +"""Search for observations at fixed sky coordinates.""" + +import logging +from typing import Annotated, Any, Literal + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.sbn.types import ( + DEFAULT_OBSERVATIONS_LIMIT, + FIELD_PROFILES, + MAX_OBSERVATIONS_LIMIT, + SUMMARY_FIELDS, + VALID_SOURCES_DESCRIPTION, + filter_observation, +) +from akd_ext.tools.pds.utils.sbn_client import SBNCatchClient, SBNCatchClientError + +logger = logging.getLogger(__name__) + + +class SBNSearchCoordinatesInputSchema(InputSchema): + """Input schema for SBNSearchCoordinatesTool.""" + + ra: str = Field( + ..., + description="Right ascension. Formats: Sexagesimal '12:34:56.7' (hours) or decimal degrees '123.45'", + ) + dec: str = Field( + ..., + description="Declination. Formats: Sexagesimal '+12:34:56.7' or '-12:34:56.7', or decimal degrees '-30.5'", + ) + radius: Annotated[float, Field(gt=0, le=120)] = Field( + 10.0, description="Search radius in arcminutes (0-120, default 10)" + ) + sources: list[str] | None = Field(None, description=VALID_SOURCES_DESCRIPTION) + start_date: str | None = Field(None, description="Start date filter (format: 'YYYY-MM-DD')") + stop_date: str | None = Field(None, description="Stop date filter (format: 'YYYY-MM-DD')") + limit: Annotated[int, Field(ge=1, le=10)] = Field( + DEFAULT_OBSERVATIONS_LIMIT, description="Maximum observations to return (default 10, max 10)" + ) + offset: Annotated[int, Field(ge=0)] = Field(0, description="Skip first N observations for pagination (default 0)") + fields: Literal["essential", "summary", "full"] = Field( + "summary", description="Field profile: 'essential' (minimal), 'summary' (default), or 'full' (all fields)" + ) + + +class SBNSearchCoordinatesOutputSchema(OutputSchema): + """Output schema for SBNSearchCoordinatesTool.""" + + ra: str = Field(..., description="Right ascension that was searched") + dec: str = Field(..., description="Declination that was searched") + radius: float = Field(..., description="Search radius in arcminutes") + count: int = Field(..., description="Number of observations returned in this response") + total_available: int = Field(..., description="Total number of observations available") + offset: int = Field(..., description="Offset used for pagination") + limit: int = Field(..., description="Limit applied to this response") + has_more: bool = Field(..., description="Whether more results are available beyond this response") + fields: str = Field(..., description="Field profile used for filtering") + observations: list[dict[str, Any]] = Field( + default_factory=list, description="List of observations with filtered fields" + ) + + +class SBNSearchCoordinatesToolConfig(BaseToolConfig): + """Configuration for SBNSearchCoordinatesTool.""" + + base_url: str = Field( + default="https://catch-api.astro.umd.edu/", + description="CATCH API base URL (can be overridden with SBN_BASE_URL env var)", + ) + timeout: float = Field(default=60.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class SBNSearchCoordinatesTool(BaseTool[SBNSearchCoordinatesInputSchema, SBNSearchCoordinatesOutputSchema]): + """Search for observations at fixed sky coordinates. + + This tool searches survey data for observations covering a specific position + in the sky. This is useful for finding serendipitous observations of objects + at known coordinates, or for checking if a particular sky region has been + observed by any surveys. + + Coordinate Formats: + - Right Ascension (RA): + - Sexagesimal: "12:34:56.7" (hours:minutes:seconds) + - Decimal degrees: "123.45" + - Declination (Dec): + - Sexagesimal: "+12:34:56.7" or "-12:34:56.7" (degrees:arcmin:arcsec) + - Decimal degrees: "-30.5" or "45.2" + + Search Radius: + - Specified in arcminutes (0-120) + - Default: 10 arcminutes + - Larger radii may return more results but take longer + + Field Profiles: + - essential: product_id, source, date, archive_url (minimal metadata) + - summary: essential + ra, dec, vmag, filter, exposure (most useful fields) + - full: all available fields including ephemeris, photometry, observing conditions + + Unlike moving target searches, fixed coordinate searches return results + immediately without requiring job polling. + + """ + + input_schema = SBNSearchCoordinatesInputSchema + output_schema = SBNSearchCoordinatesOutputSchema + config_schema = SBNSearchCoordinatesToolConfig + + async def _arun(self, params: SBNSearchCoordinatesInputSchema) -> SBNSearchCoordinatesOutputSchema: + """Execute the tool to search for observations at fixed coordinates.""" + try: + async with SBNCatchClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_fixed_target( + ra=params.ra, + dec=params.dec, + radius=params.radius, + sources=params.sources, + start_date=params.start_date, + stop_date=params.stop_date, + ) + + if response.error: + logger.error(f"CATCH API returned error: {response.error}") + raise SBNCatchClientError(response.error) + + # Get field set for filtering + field_set = FIELD_PROFILES.get(params.fields, SUMMARY_FIELDS) + + # Enforce maximum limit + effective_limit = min(params.limit, MAX_OBSERVATIONS_LIMIT) + + # Get total count before limiting + total_available = len(response.observations) + + # Apply offset and limit + limited_observations = response.observations[params.offset : params.offset + effective_limit] + has_more = params.offset + len(limited_observations) < total_available + + # Filter fields for each observation + observations = [ + filter_observation(obs.model_dump(exclude_none=True), field_set) for obs in limited_observations + ] + + return SBNSearchCoordinatesOutputSchema( + ra=params.ra, + dec=params.dec, + radius=params.radius, + count=len(observations), + total_available=total_available, + offset=params.offset, + limit=effective_limit, + has_more=has_more, + fields=params.fields, + observations=observations, + ) + + except SBNCatchClientError as e: + logger.error(f"SBN client error in search_coordinates: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_coordinates: {e}") + raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/sbn/search_object.py b/akd_ext/tools/pds/sbn/search_object.py new file mode 100644 index 0000000..4a8f03f --- /dev/null +++ b/akd_ext/tools/pds/sbn/search_object.py @@ -0,0 +1,166 @@ +"""Search for observations of a comet or asteroid.""" + +import logging +from typing import Annotated, Any, Literal + +from akd._base import InputSchema, OutputSchema +from akd.tools import BaseTool, BaseToolConfig +from pydantic import Field + +from akd_ext.mcp.decorators import mcp_tool +from akd_ext.tools.pds.sbn.types import ( + DEFAULT_OBSERVATIONS_LIMIT, + FIELD_PROFILES, + MAX_OBSERVATIONS_LIMIT, + SUMMARY_FIELDS, + VALID_SOURCES_DESCRIPTION, + SBNSourceStatusSummary, + filter_observation, +) +from akd_ext.tools.pds.utils.sbn_client import SBNCatchClient, SBNCatchClientError + +logger = logging.getLogger(__name__) + + +class SBNSearchObjectInputSchema(InputSchema): + """Input schema for SBNSearchObjectTool.""" + + target: str = Field(..., description="JPL Horizons-resolvable designation (e.g., '65803', '1P/Halley', 'Didymos')") + sources: list[str] | None = Field(None, description=VALID_SOURCES_DESCRIPTION) + start_date: str | None = Field( + None, description="Start date filter (format: 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM')" + ) + stop_date: str | None = Field(None, description="Stop date filter (format: 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM')") + cached: bool = Field(True, description="Use cached results if available (default True, faster)") + timeout: Annotated[float, Field(gt=0, le=600)] = Field( + 120.0, description="Maximum time to wait for results in seconds (default 120)" + ) + limit: Annotated[int, Field(ge=1, le=10)] = Field( + DEFAULT_OBSERVATIONS_LIMIT, description="Maximum observations to return (default 10, max 10)" + ) + offset: Annotated[int, Field(ge=0)] = Field(0, description="Skip first N observations for pagination (default 0)") + fields: Literal["essential", "summary", "full"] = Field( + "summary", description="Field profile: 'essential' (minimal), 'summary' (default), or 'full' (all fields)" + ) + + +class SBNSearchObjectOutputSchema(OutputSchema): + """Output schema for SBNSearchObjectTool.""" + + target: str = Field(..., description="The target that was searched") + count: int = Field(..., description="Number of observations returned in this response") + total_available: int = Field(..., description="Total number of observations available") + offset: int = Field(..., description="Offset used for pagination") + limit: int = Field(..., description="Limit applied to this response") + has_more: bool = Field(..., description="Whether more results are available beyond this response") + fields: str = Field(..., description="Field profile used for filtering") + observations: list[dict[str, Any]] = Field( + default_factory=list, description="List of observations with filtered fields" + ) + source_status: list[SBNSourceStatusSummary] = Field( + default_factory=list, description="Status of each data source queried" + ) + + +class SBNSearchObjectToolConfig(BaseToolConfig): + """Configuration for SBNSearchObjectTool.""" + + base_url: str = Field( + default="https://catch-api.astro.umd.edu/", + description="CATCH API base URL (can be overridden with SBN_BASE_URL env var)", + ) + timeout: float = Field(default=60.0, description="Request timeout in seconds") + max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") + + +@mcp_tool +class SBNSearchObjectTool(BaseTool[SBNSearchObjectInputSchema, SBNSearchObjectOutputSchema]): + """Search for observations of a comet or asteroid. + + This tool searches astronomical survey data for observations of a specified + small body (comet or asteroid) using its JPL Horizons designation. The CATCH + API queries multiple survey archives to find all available observations. + + Target Designation Formats: + - Asteroid number: "65803" (Didymos) + - Asteroid name: "Ceres", "Vesta", "Didymos" + - Provisional designation: "2019 DQ123" + - Periodic comet: "1P/Halley", "65P" + - Comet fragment: "73P-B" + - Provisional comet: "P/2001 YX127" + - Interstellar object: "1I" (Oumuamua) + + Field Profiles: + - essential: product_id, source, date, archive_url (minimal metadata) + - summary: essential + ra, dec, vmag, filter, exposure (most useful fields) + - full: all available fields including ephemeris, photometry, observing conditions + + The tool automatically waits for long-running searches to complete using the + specified timeout parameter. Results are paginated client-side since the CATCH + API returns all results at once. + """ + + input_schema = SBNSearchObjectInputSchema + output_schema = SBNSearchObjectOutputSchema + config_schema = SBNSearchObjectToolConfig + + async def _arun(self, params: SBNSearchObjectInputSchema) -> SBNSearchObjectOutputSchema: + """Execute the tool to search for observations of a moving target.""" + try: + async with SBNCatchClient( + base_url=self.config.base_url, + timeout=self.config.timeout, + max_retries=self.config.max_retries, + ) as client: + response = await client.search_and_wait( + target=params.target, + sources=params.sources, + start_date=params.start_date, + stop_date=params.stop_date, + cached=params.cached, + timeout=params.timeout, + ) + + if response.error: + logger.error(f"CATCH API returned error: {response.error}") + raise SBNCatchClientError(response.error) + + # Get field set for filtering + field_set = FIELD_PROFILES.get(params.fields, SUMMARY_FIELDS) + + # Enforce maximum limit + effective_limit = min(params.limit, MAX_OBSERVATIONS_LIMIT) + + # Get total count before limiting + total_available = len(response.observations) + + # Apply offset and limit (client-side since CATCH API has no pagination) + limited_observations = response.observations[params.offset : params.offset + effective_limit] + has_more = params.offset + len(limited_observations) < total_available + + # Filter fields for each observation + observations = [ + filter_observation(obs.model_dump(exclude_none=True), field_set) for obs in limited_observations + ] + + return SBNSearchObjectOutputSchema( + target=params.target, + count=len(observations), + total_available=total_available, + offset=params.offset, + limit=effective_limit, + has_more=has_more, + fields=params.fields, + observations=observations, + source_status=[ + SBNSourceStatusSummary(source=s.source, status=s.status, count=s.count) + for s in response.source_status + ], + ) + + except SBNCatchClientError as e: + logger.error(f"SBN client error in search_object: {e}") + raise + except Exception as e: + logger.error(f"Unexpected error in search_object: {e}") + raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/sbn/types.py b/akd_ext/tools/pds/sbn/types.py new file mode 100644 index 0000000..c22c31d --- /dev/null +++ b/akd_ext/tools/pds/sbn/types.py @@ -0,0 +1,52 @@ +"""Shared types and constants for SBN CATCH tools.""" + +from typing import Any + +from pydantic import BaseModel + +# Response size limits (CATCH API has no pagination, so limit client-side) +MAX_OBSERVATIONS_LIMIT = 10 +DEFAULT_OBSERVATIONS_LIMIT = 10 + +# Field profiles for response filtering +ESSENTIAL_FIELDS = {"product_id", "source", "date", "archive_url"} +SUMMARY_FIELDS = ESSENTIAL_FIELDS | {"ra", "dec", "vmag", "filter", "exposure"} +FULL_FIELDS = SUMMARY_FIELDS | { + "rh", + "delta", + "phase", + "dra", + "ddec", + "seeing", + "airmass", + "maglimit", + "cutout_url", + "preview_url", + "mjd_start", +} +FIELD_PROFILES: dict[str, set[str]] = { + "essential": ESSENTIAL_FIELDS, + "summary": SUMMARY_FIELDS, + "full": FULL_FIELDS, +} + +# Valid data sources description for input schema documentation +VALID_SOURCES_DESCRIPTION = ( + "List of data sources to search (None = all sources). " + "Valid sources: neat_palomar_tricam, neat_maui_geodss, ps1dr2, catalina_bigelow, " + "catalina_lemmon, catalina_kittpeak, skymapper_dr4, atlas_hko, atlas_mlo, atlas_rio, " + "atlas_chl, atlas_sth, spacewatch_0.9m, spacewatch_mosaic, loneos" +) + + +def filter_observation(obs_dict: dict[str, Any], fields: set[str]) -> dict[str, Any]: + """Filter observation to specified fields, excluding None values.""" + return {k: v for k, v in obs_dict.items() if k in fields and v is not None} + + +class SBNSourceStatusSummary(BaseModel): + """Source status item in search results.""" + + source: str + status: str + count: int | None = None diff --git a/akd_ext/tools/pds/utils/__init__.py b/akd_ext/tools/pds/utils/__init__.py new file mode 100644 index 0000000..933f9ad --- /dev/null +++ b/akd_ext/tools/pds/utils/__init__.py @@ -0,0 +1,29 @@ +"""Utility modules for PDS tools.""" + +from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError, IMGAtlasRateLimitError +from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError, ODERateLimitError +from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError, OPUSRateLimitError +from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError, PDS4RateLimitError +from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClient, PDSCatalogClientError +from akd_ext.tools.pds.utils.sbn_client import SBNCatchClient, SBNCatchClientError, SBNCatchJobError, SBNCatchRateLimitError + +__all__ = [ + "IMGAtlasClient", + "IMGAtlasClientError", + "IMGAtlasRateLimitError", + "ODEClient", + "ODEClientError", + "ODERateLimitError", + "OPUSClient", + "OPUSClientError", + "OPUSRateLimitError", + "PDS4Client", + "PDS4ClientError", + "PDS4RateLimitError", + "PDSCatalogClient", + "PDSCatalogClientError", + "SBNCatchClient", + "SBNCatchClientError", + "SBNCatchJobError", + "SBNCatchRateLimitError", +] diff --git a/akd_ext/tools/pds/utils/img_api_models.py b/akd_ext/tools/pds/utils/img_api_models.py new file mode 100644 index 0000000..5b47031 --- /dev/null +++ b/akd_ext/tools/pds/utils/img_api_models.py @@ -0,0 +1,303 @@ +"""Pydantic models for IMG Atlas API responses. + +The PDS Imaging Node Atlas API uses Apache Solr for querying planetary imagery +from various missions including MER, MSL, Mars 2020, Cassini, Voyager, LRO, and MESSENGER. +""" + +from typing import Any + +from pydantic import BaseModel, ConfigDict, Field + + +def _unwrap_value(value: Any) -> Any: + """Unwrap a value that might be a list (Solr sometimes returns arrays).""" + if value is None: + return None + if isinstance(value, list): + return value[0] if value else None + return value + + +def _parse_float(value: Any) -> float | None: + """Parse a value to float, returning None if not possible.""" + value = _unwrap_value(value) + if value is None: + return None + try: + return float(value) + except (ValueError, TypeError): + return None + + +def _parse_int(value: Any) -> int | None: + """Parse a value to int, returning None if not possible.""" + value = _unwrap_value(value) + if value is None: + return None + try: + return int(value) + except (ValueError, TypeError): + return None + + +def _parse_str(value: Any) -> str | None: + """Parse a value to string, handling arrays.""" + value = _unwrap_value(value) + if value is None: + return None + return str(value) + + +class IMGProduct(BaseModel): + """IMG Atlas product representation.""" + + model_config = ConfigDict(populate_by_name=True) + + # Identifiers + uuid: str | None = None + pds_standard: str | None = Field(None, alias="pds_standard") + product_id: str | None = Field(None, alias="PRODUCT_ID") + + # Target + target: str | None = Field(None, alias="TARGET") + + # Product type + product_type: str | None = Field(None, alias="PRODUCT_TYPE") + + # Mission/Spacecraft/Instrument + mission_name: str | None = Field(None, alias="ATLAS_MISSION_NAME") + spacecraft_name: str | None = Field(None, alias="ATLAS_SPACECRAFT_NAME") + instrument_name: str | None = Field(None, alias="ATLAS_INSTRUMENT_NAME") + + # Time + start_time: str | None = Field(None, alias="START_TIME") + stop_time: str | None = Field(None, alias="STOP_TIME") + product_creation_time: str | None = Field(None, alias="PRODUCT_CREATION_TIME") + + # Mars rover specific + planet_day_number: int | None = Field(None, alias="PLANET_DAY_NUMBER") + local_true_solar_time: str | None = Field(None, alias="LOCAL_TRUE_SOLAR_TIME") + + # Solar geometry + solar_azimuth: float | None = Field(None, alias="SOLAR_AZIMUTH") + solar_elevation: float | None = Field(None, alias="SOLAR_ELEVATION") + + # Spacecraft clock + spacecraft_clock_start_count: str | None = Field(None, alias="SPACECRAFT_CLOCK_START_COUNT") + + # Image properties + exposure_duration: float | None = Field(None, alias="EXPOSURE_DURATION") + compression_ratio: float | None = Field(None, alias="INST_CMPRS_RATIO") + frame_type: str | None = Field(None, alias="FRAME_TYPE") + lines: int | None = Field(None, alias="LINES") + line_samples: int | None = Field(None, alias="LINE_SAMPLES") + + # Geographic + center_latitude: float | None = Field(None, alias="center_latitude") + center_longitude: float | None = Field(None, alias="center_longitude") + + # URLs + data_url: str | None = Field(None, alias="ATLAS_DATA_URL") + label_url: str | None = Field(None, alias="ATLAS_LABEL_URL") + browse_url: str | None = Field(None, alias="ATLAS_BROWSE_URL") + thumbnail_url: str | None = Field(None, alias="ATLAS_THUMBNAIL_URL") + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "IMGProduct": + """Create IMGProduct from raw Solr document.""" + # Pre-process fields that need parsing (Solr sometimes returns arrays) + processed_data = { + "uuid": _parse_str(data.get("uuid")), + "pds_standard": _parse_str(data.get("pds_standard")), + "PRODUCT_ID": _parse_str(data.get("PRODUCT_ID")), + "TARGET": _parse_str(data.get("TARGET")), + "PRODUCT_TYPE": _parse_str(data.get("PRODUCT_TYPE")), + "ATLAS_MISSION_NAME": _parse_str(data.get("ATLAS_MISSION_NAME")), + "ATLAS_SPACECRAFT_NAME": _parse_str(data.get("ATLAS_SPACECRAFT_NAME")), + "ATLAS_INSTRUMENT_NAME": _parse_str(data.get("ATLAS_INSTRUMENT_NAME")), + "START_TIME": _parse_str(data.get("START_TIME")), + "STOP_TIME": _parse_str(data.get("STOP_TIME")), + "PRODUCT_CREATION_TIME": _parse_str(data.get("PRODUCT_CREATION_TIME")), + "PLANET_DAY_NUMBER": _parse_int(data.get("PLANET_DAY_NUMBER")), + "LOCAL_TRUE_SOLAR_TIME": _parse_str(data.get("LOCAL_TRUE_SOLAR_TIME")), + "SOLAR_AZIMUTH": _parse_float(data.get("SOLAR_AZIMUTH")), + "SOLAR_ELEVATION": _parse_float(data.get("SOLAR_ELEVATION")), + "SPACECRAFT_CLOCK_START_COUNT": _parse_str(data.get("SPACECRAFT_CLOCK_START_COUNT")), + "EXPOSURE_DURATION": _parse_float(data.get("EXPOSURE_DURATION")), + "INST_CMPRS_RATIO": _parse_float(data.get("INST_CMPRS_RATIO")), + "FRAME_TYPE": _parse_str(data.get("FRAME_TYPE")), + "LINES": _parse_int(data.get("LINES")), + "LINE_SAMPLES": _parse_int(data.get("LINE_SAMPLES")), + "center_latitude": _parse_float(data.get("center_latitude")), + "center_longitude": _parse_float(data.get("center_longitude")), + "ATLAS_DATA_URL": _parse_str(data.get("ATLAS_DATA_URL")), + "ATLAS_LABEL_URL": _parse_str(data.get("ATLAS_LABEL_URL")), + "ATLAS_BROWSE_URL": _parse_str(data.get("ATLAS_BROWSE_URL")), + "ATLAS_THUMBNAIL_URL": _parse_str(data.get("ATLAS_THUMBNAIL_URL")), + } + return cls.model_validate(processed_data) + + +class IMGSearchResponse(BaseModel): + """IMG Atlas search response wrapper.""" + + status: str = "success" + num_found: int = 0 + start: int = 0 + query_time_ms: int = 0 + products: list[IMGProduct] = Field(default_factory=list) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "IMGSearchResponse": + """Create from raw Solr API response.""" + # Check for error response + if "error" in data: + error_info = data.get("error", {}) + return cls( + status="error", + error=error_info.get("msg", "Unknown error"), + ) + + # Parse response header + response_header = data.get("responseHeader", {}) + status_code = response_header.get("status", 0) + query_time = response_header.get("QTime", 0) + + if status_code != 0: + return cls( + status="error", + error=f"Solr error status: {status_code}", + query_time_ms=query_time, + ) + + # Parse response body + response = data.get("response", {}) + num_found = response.get("numFound", 0) + start = response.get("start", 0) + docs = response.get("docs", []) + + products = [IMGProduct.from_raw_data(doc) for doc in docs] + + return cls( + status="success", + num_found=num_found, + start=start, + query_time_ms=query_time, + products=products, + ) + + +class IMGCountResponse(BaseModel): + """IMG Atlas count response.""" + + status: str = "success" + count: int = 0 + query_time_ms: int = 0 + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "IMGCountResponse": + """Create from raw Solr API response.""" + # Check for error response + if "error" in data: + error_info = data.get("error", {}) + return cls( + status="error", + error=error_info.get("msg", "Unknown error"), + ) + + # Parse response header + response_header = data.get("responseHeader", {}) + status_code = response_header.get("status", 0) + query_time = response_header.get("QTime", 0) + + if status_code != 0: + return cls( + status="error", + error=f"Solr error status: {status_code}", + query_time_ms=query_time, + ) + + # Parse response body - just need numFound + response = data.get("response", {}) + num_found = response.get("numFound", 0) + + return cls( + status="success", + count=num_found, + query_time_ms=query_time, + ) + + +class IMGFacetValue(BaseModel): + """A single facet value with its count.""" + + value: str + count: int + + +class IMGFacetResponse(BaseModel): + """IMG Atlas facet response for dynamic field discovery.""" + + status: str = "success" + facet_field: str = "" + values: list[IMGFacetValue] = Field(default_factory=list) + query_time_ms: int = 0 + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any], facet_field: str) -> "IMGFacetResponse": + """Create from raw Solr API response with facet data. + + Solr returns facets in the format: + { + "facet_counts": { + "facet_fields": { + "FIELD_NAME": ["value1", count1, "value2", count2, ...] + } + } + } + """ + # Check for error response + if "error" in data: + error_info = data.get("error", {}) + return cls( + status="error", + facet_field=facet_field, + error=error_info.get("msg", "Unknown error"), + ) + + # Parse response header + response_header = data.get("responseHeader", {}) + status_code = response_header.get("status", 0) + query_time = response_header.get("QTime", 0) + + if status_code != 0: + return cls( + status="error", + facet_field=facet_field, + error=f"Solr error status: {status_code}", + query_time_ms=query_time, + ) + + # Parse facet data + facet_counts = data.get("facet_counts", {}) + facet_fields = facet_counts.get("facet_fields", {}) + raw_values = facet_fields.get(facet_field, []) + + # Convert alternating list [value, count, value, count, ...] to list of dicts + values: list[IMGFacetValue] = [] + for i in range(0, len(raw_values), 2): + if i + 1 < len(raw_values): + value = str(raw_values[i]) + count = int(raw_values[i + 1]) + if count > 0: # Only include values with counts + values.append(IMGFacetValue(value=value, count=count)) + + return cls( + status="success", + facet_field=facet_field, + values=values, + query_time_ms=query_time, + ) diff --git a/akd_ext/tools/pds/utils/img_client.py b/akd_ext/tools/pds/utils/img_client.py new file mode 100644 index 0000000..0c3a29c --- /dev/null +++ b/akd_ext/tools/pds/utils/img_client.py @@ -0,0 +1,490 @@ +"""IMG Atlas API client wrapper with httpx. + +The PDS Imaging Node Atlas API uses Apache Solr for querying planetary imagery +from various missions including MER, MSL, Mars 2020, Cassini, Voyager, LRO, and MESSENGER. + +Base URL: https://pds-imaging.jpl.nasa.gov/solr/pds_archives/ +""" + +import asyncio +import logging +from types import TracebackType +from typing import Any + +import httpx + +from .img_api_models import IMGCountResponse, IMGFacetResponse, IMGSearchResponse + +logger = logging.getLogger(__name__) + + +class IMGAtlasClientError(Exception): + """Base exception for IMG Atlas client errors.""" + + pass + + +class IMGAtlasRateLimitError(IMGAtlasClientError): + """Rate limit error for IMG Atlas API.""" + + def __init__(self, retry_after: int | None = None): + self.retry_after = retry_after + super().__init__(f"Rate limit exceeded. Retry after {retry_after} seconds.") + + +class IMGAtlasClient: + """Async HTTP client for IMG Atlas Solr API.""" + + BASE_URL = "https://pds-imaging.jpl.nasa.gov/solr/pds_archives/" + DEFAULT_TIMEOUT = 30.0 + + # Valid targets from the API documentation + VALID_TARGETS: set[str] = { + "mars", + "saturn", + "moon", + "mercury", + "titan", + "enceladus", + "jupiter", + "io", + "europa", + "ganymede", + "callisto", + } + + # Valid facet fields that can be queried + VALID_FACET_FIELDS: set[str] = { + "TARGET", + "ATLAS_MISSION_NAME", + "ATLAS_INSTRUMENT_NAME", + "ATLAS_SPACECRAFT_NAME", + "PRODUCT_TYPE", + "FRAME_TYPE", + "FILTER_NAME", + "pds_standard", + } + + def __init__( + self, + base_url: str | None = None, + timeout: float = DEFAULT_TIMEOUT, + max_retries: int = 3, + retry_delay: float = 1.0, + ): + """Initialize IMG Atlas client. + + Args: + base_url: API base URL (default: https://pds-imaging.jpl.nasa.gov/solr/pds_archives/) + timeout: Request timeout in seconds + max_retries: Maximum number of retry attempts + retry_delay: Base delay between retries in seconds + """ + self.base_url = base_url or self.BASE_URL + self.timeout = timeout + self.max_retries = max_retries + self.retry_delay = retry_delay + self._client: httpx.AsyncClient | None = None + + async def __aenter__(self) -> "IMGAtlasClient": + """Async context manager entry.""" + self._client = httpx.AsyncClient( + base_url=self.base_url, + timeout=self.timeout, + headers=self._get_headers(), + ) + return self + + async def __aexit__( + self, + _exc_type: type[BaseException] | None, + _exc_val: BaseException | None, + _exc_tb: TracebackType | None, + ) -> None: + """Async context manager exit.""" + if self._client: + await self._client.aclose() + self._client = None + + def _get_headers(self) -> dict[str, str]: + """Get HTTP headers for requests.""" + return { + "Accept": "application/json", + "User-Agent": "IMG-MCP-Server/0.1.0", + } + + def _build_filter_queries( + self, + target: str | None = None, + mission: str | None = None, + instrument: str | None = None, + spacecraft: str | None = None, + start_time: str | None = None, + stop_time: str | None = None, + sol_min: int | None = None, + sol_max: int | None = None, + product_type: str | None = None, + filter_name: str | None = None, + frame_type: str | None = None, + exposure_min: float | None = None, + exposure_max: float | None = None, + local_solar_time: str | None = None, + ) -> list[str]: + """Build Solr filter queries from parameters.""" + fq_list: list[str] = [] + + if target: + fq_list.append(f"TARGET:{target}") + + if mission: + # Use quotes for exact matching when spaces are present, wildcard otherwise + if " " in mission: + fq_list.append(f'ATLAS_MISSION_NAME:"{mission}"') + else: + fq_list.append(f"ATLAS_MISSION_NAME:*{mission}*") + + if instrument: + if " " in instrument: + fq_list.append(f'ATLAS_INSTRUMENT_NAME:"{instrument}"') + else: + fq_list.append(f"ATLAS_INSTRUMENT_NAME:*{instrument}*") + + if spacecraft: + if " " in spacecraft: + fq_list.append(f'ATLAS_SPACECRAFT_NAME:"{spacecraft}"') + else: + fq_list.append(f"ATLAS_SPACECRAFT_NAME:*{spacecraft}*") + + if product_type: + fq_list.append(f"PRODUCT_TYPE:{product_type}") + + if filter_name: + fq_list.append(f"FILTER_NAME:*{filter_name}*") + + if frame_type: + fq_list.append(f"FRAME_TYPE:{frame_type}") + + # Time range + if start_time or stop_time: + time_start = start_time or "*" + time_end = stop_time or "*" + fq_list.append(f"START_TIME:[{time_start} TO {time_end}]") + + # Sol range (Mars missions) + if sol_min is not None or sol_max is not None: + sol_start = sol_min if sol_min is not None else "*" + sol_end = sol_max if sol_max is not None else "*" + fq_list.append(f"PLANET_DAY_NUMBER:[{sol_start} TO {sol_end}]") + + # Exposure duration range (in milliseconds) + if exposure_min is not None or exposure_max is not None: + exp_start = exposure_min if exposure_min is not None else "*" + exp_end = exposure_max if exposure_max is not None else "*" + fq_list.append(f"EXPOSURE_DURATION:[{exp_start} TO {exp_end}]") + + # Local solar time filter + if local_solar_time: + fq_list.append(f"LOCAL_TRUE_SOLAR_TIME:*{local_solar_time}*") + + return fq_list + + async def _request( + self, + endpoint: str, + params: dict[str, Any], + ) -> httpx.Response: + """Make HTTP request with retry logic.""" + if not self._client: + raise RuntimeError("Client not initialized. Use async context manager.") + + for attempt in range(self.max_retries + 1): + try: + response = await self._client.get(endpoint, params=params) + + if response.status_code == 429: + try: + retry_after = int(response.headers.get("retry-after", self.retry_delay)) + except (ValueError, TypeError): + retry_after = int(self.retry_delay) + if attempt < self.max_retries: + logger.warning(f"Rate limited. Retrying in {retry_after} seconds...") + await asyncio.sleep(retry_after) + continue + else: + raise IMGAtlasRateLimitError(retry_after) + + response.raise_for_status() + return response + + except httpx.HTTPError as e: + if attempt < self.max_retries: + wait_time = self.retry_delay * (2**attempt) + logger.warning(f"Request failed (attempt {attempt + 1}). Retrying in {wait_time}s...") + await asyncio.sleep(wait_time) + else: + raise IMGAtlasClientError(f"Request failed after {self.max_retries} retries: {e}") + + raise IMGAtlasClientError("Maximum retries exceeded") + + async def search_products( + self, + target: str | None = None, + mission: str | None = None, + instrument: str | None = None, + spacecraft: str | None = None, + start_time: str | None = None, + stop_time: str | None = None, + sol_min: int | None = None, + sol_max: int | None = None, + product_type: str | None = None, + filter_name: str | None = None, + frame_type: str | None = None, + exposure_min: float | None = None, + exposure_max: float | None = None, + local_solar_time: str | None = None, + rows: int = 100, + start: int = 0, + sort: str | None = None, + fields: list[str] | None = None, + ) -> IMGSearchResponse: + """Search for imagery products in the Atlas archive. + + Args: + target: Target body (e.g., "Mars", "Saturn", "Moon") + mission: Mission name filter (e.g., "MSL", "MER", "Cassini") + instrument: Instrument name filter (e.g., "HAZCAM", "MASTCAM", "ISS") + spacecraft: Spacecraft name filter (e.g., "CURIOSITY", "SPIRIT") + start_time: Start of time range (ISO 8601 format) + stop_time: End of time range (ISO 8601 format) + sol_min: Minimum sol number (Mars missions) + sol_max: Maximum sol number (Mars missions) + product_type: Product type filter (e.g., "EDR", "RDR") + filter_name: Camera filter name (e.g., "L0", "R0", "RED") + frame_type: Frame type filter (e.g., "FULL", "SUBFRAME") + exposure_min: Minimum exposure duration in milliseconds + exposure_max: Maximum exposure duration in milliseconds + local_solar_time: Local true solar time filter (e.g., "12:00") + rows: Maximum products to return (default 100) + start: Pagination offset (default 0) + sort: Sort order (e.g., "START_TIME desc") + fields: Specific fields to return (None for all) + + Returns: + IMGSearchResponse with products and metadata + """ + # Build filter queries + fq_list = self._build_filter_queries( + target=target, + mission=mission, + instrument=instrument, + spacecraft=spacecraft, + start_time=start_time, + stop_time=stop_time, + sol_min=sol_min, + sol_max=sol_max, + product_type=product_type, + filter_name=filter_name, + frame_type=frame_type, + exposure_min=exposure_min, + exposure_max=exposure_max, + local_solar_time=local_solar_time, + ) + + params: dict[str, Any] = { + "q": "*:*", + "wt": "json", + "rows": str(rows), + "start": str(start), + } + + # Add filter queries + if fq_list: + params["fq"] = fq_list + + # Add sort if specified + if sort: + params["sort"] = sort + + # Add field list if specified + if fields: + params["fl"] = ",".join(fields) + + response = await self._request("select", params) + + try: + data = response.json() + return IMGSearchResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse IMG Atlas search response: {e}") + raise IMGAtlasClientError(f"Invalid response format: {e}") + + async def count_products( + self, + target: str | None = None, + mission: str | None = None, + instrument: str | None = None, + spacecraft: str | None = None, + start_time: str | None = None, + stop_time: str | None = None, + sol_min: int | None = None, + sol_max: int | None = None, + product_type: str | None = None, + filter_name: str | None = None, + frame_type: str | None = None, + exposure_min: float | None = None, + exposure_max: float | None = None, + local_solar_time: str | None = None, + ) -> IMGCountResponse: + """Count products matching criteria without retrieving them. + + Args: + target: Target body filter + mission: Mission name filter + instrument: Instrument name filter + spacecraft: Spacecraft name filter + start_time: Start of time range + stop_time: End of time range + sol_min: Minimum sol number + sol_max: Maximum sol number + product_type: Product type filter + filter_name: Camera filter name + frame_type: Frame type filter + exposure_min: Minimum exposure duration in milliseconds + exposure_max: Maximum exposure duration in milliseconds + local_solar_time: Local true solar time filter + + Returns: + IMGCountResponse with count + """ + # Build filter queries + fq_list = self._build_filter_queries( + target=target, + mission=mission, + instrument=instrument, + spacecraft=spacecraft, + start_time=start_time, + stop_time=stop_time, + sol_min=sol_min, + sol_max=sol_max, + product_type=product_type, + filter_name=filter_name, + frame_type=frame_type, + exposure_min=exposure_min, + exposure_max=exposure_max, + local_solar_time=local_solar_time, + ) + + params: dict[str, Any] = { + "q": "*:*", + "wt": "json", + "rows": "0", # Don't return any documents, just count + } + + # Add filter queries + if fq_list: + params["fq"] = fq_list + + response = await self._request("select", params) + + try: + data = response.json() + return IMGCountResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse IMG Atlas count response: {e}") + raise IMGAtlasClientError(f"Invalid response format: {e}") + + async def get_product( + self, + product_id: str, + ) -> IMGSearchResponse: + """Get a single product by its ID. + + Args: + product_id: Product identifier (uuid or PRODUCT_ID) + + Returns: + IMGSearchResponse with the single product + """ + # Try to find by uuid or PRODUCT_ID + params: dict[str, Any] = { + "q": f'uuid:"{product_id}" OR PRODUCT_ID:"{product_id}"', + "wt": "json", + "rows": "1", + } + + response = await self._request("select", params) + + try: + data = response.json() + return IMGSearchResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse IMG Atlas product response: {e}") + raise IMGAtlasClientError(f"Invalid response format: {e}") + + async def get_facets( + self, + facet_field: str, + limit: int = 100, + target: str | None = None, + mission: str | None = None, + instrument: str | None = None, + ) -> IMGFacetResponse: + """Get available values and counts for a faceted field. + + This enables dynamic discovery of targets, missions, instruments, etc. + without relying on hardcoded lists. + + Args: + facet_field: Field to facet on (e.g., "TARGET", "ATLAS_MISSION_NAME", + "ATLAS_INSTRUMENT_NAME", "PRODUCT_TYPE", "FRAME_TYPE", "FILTER_NAME") + limit: Maximum number of facet values to return (default 100) + target: Optional target filter to narrow results + mission: Optional mission filter to narrow results + instrument: Optional instrument filter to narrow results + + Returns: + IMGFacetResponse with available values and counts + """ + # Validate facet field + if facet_field not in self.VALID_FACET_FIELDS: + raise IMGAtlasClientError( + f"Invalid facet field: {facet_field}. " f"Valid fields: {', '.join(sorted(self.VALID_FACET_FIELDS))}" + ) + + # Build filter queries for optional filters + fq_list: list[str] = [] + if target: + fq_list.append(f"TARGET:{target}") + if mission: + if " " in mission: + fq_list.append(f'ATLAS_MISSION_NAME:"{mission}"') + else: + fq_list.append(f"ATLAS_MISSION_NAME:*{mission}*") + if instrument: + if " " in instrument: + fq_list.append(f'ATLAS_INSTRUMENT_NAME:"{instrument}"') + else: + fq_list.append(f"ATLAS_INSTRUMENT_NAME:*{instrument}*") + + params: dict[str, Any] = { + "q": "*:*", + "wt": "json", + "rows": "0", # Don't return documents, just facets + "facet": "true", + "facet.field": facet_field, + "facet.limit": str(limit), + "facet.mincount": "1", # Only values with at least 1 document + "facet.sort": "count", # Sort by count descending + } + + if fq_list: + params["fq"] = fq_list + + response = await self._request("select", params) + + try: + data = response.json() + return IMGFacetResponse.from_raw_data(data, facet_field) + except Exception as e: + logger.error(f"Failed to parse IMG Atlas facet response: {e}") + raise IMGAtlasClientError(f"Invalid response format: {e}") diff --git a/akd_ext/tools/pds/utils/ode_api_models.py b/akd_ext/tools/pds/utils/ode_api_models.py new file mode 100644 index 0000000..7afde09 --- /dev/null +++ b/akd_ext/tools/pds/utils/ode_api_models.py @@ -0,0 +1,418 @@ +"""Pydantic models for ODE REST API responses. + +The Orbital Data Explorer (ODE) provides access to NASA's planetary science +data archives for Mars, Moon, Mercury, and other bodies. +""" + +import xml.etree.ElementTree as ET +from typing import Any + +from pydantic import BaseModel, ConfigDict, Field + + +def _parse_float(value: Any) -> float | None: + """Parse a value to float, returning None if not possible.""" + if value is None: + return None + try: + return float(value) + except (ValueError, TypeError): + return None + + +def _parse_int(value: Any) -> int: + """Parse a value to int, returning 0 if not possible.""" + if value is None: + return 0 + try: + return int(value) + except (ValueError, TypeError): + return 0 + + +class ODEProductFile(BaseModel): + """ODE product file information.""" + + model_config = ConfigDict(populate_by_name=True) + + file_name: str | None = Field(None, alias="FileName") + url: str | None = Field(None, alias="URL") + description: str | None = Field(None, alias="Description") + file_type: str | None = Field(None, alias="Type") + kbytes: str | None = Field(None, alias="KBytes") + creation_date: str | None = Field(None, alias="Creation_date") + + +class ODEProduct(BaseModel): + """ODE product representation.""" + + model_config = ConfigDict(populate_by_name=True) + + # Identifiers + pdsid: str | None = None + ode_id: str | None = None + data_set_id: str | None = None + ihid: str | None = None + iid: str | None = None + pt: str | None = None + + # Geographic + center_latitude: float | None = None + center_longitude: float | None = None + minimum_latitude: float | None = None + maximum_latitude: float | None = None + westernmost_longitude: float | None = None + easternmost_longitude: float | None = None + + # Footprint + footprint_geometry: str | None = None + + # Temporal + observation_time: str | None = None + utc_start_time: str | None = None + utc_stop_time: str | None = None + + # Viewing geometry + emission_angle: float | None = None + incidence_angle: float | None = None + phase_angle: float | None = None + + # Resolution + map_scale: float | None = None + + # Metadata + target_name: str | None = None + label_file_name: str | None = None + description: str | None = None + + # Files + product_files: list[ODEProductFile] = Field(default_factory=list) + + # URLs + product_url: str | None = None + label_url: str | None = None + files_url: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "ODEProduct": + """Create ODEProduct from raw API response data.""" + # Handle nested Product_files structure + product_files: list[ODEProductFile] = [] + files_data = data.get("Product_files", {}) + if files_data: + file_list = files_data.get("Product_file", []) + # Handle both single file (dict) and multiple files (list) + if isinstance(file_list, dict): + file_list = [file_list] + for file_data in file_list: + product_files.append(ODEProductFile(**file_data)) + + return cls( + pdsid=data.get("pdsid"), + ode_id=data.get("ode_id"), + data_set_id=data.get("Data_Set_Id"), + ihid=data.get("ihid"), + iid=data.get("iid"), + pt=data.get("pt"), + center_latitude=_parse_float(data.get("Center_latitude")), + center_longitude=_parse_float(data.get("Center_longitude")), + minimum_latitude=_parse_float(data.get("Minimum_latitude")), + maximum_latitude=_parse_float(data.get("Maximum_latitude")), + westernmost_longitude=_parse_float(data.get("Westernmost_longitude")), + easternmost_longitude=_parse_float(data.get("Easternmost_longitude")), + footprint_geometry=data.get("Footprint_C0_geometry"), + observation_time=data.get("Observation_time"), + utc_start_time=data.get("UTC_start_time"), + utc_stop_time=data.get("UTC_stop_time"), + emission_angle=_parse_float(data.get("Emission_angle")), + incidence_angle=_parse_float(data.get("Incidence_angle")), + phase_angle=_parse_float(data.get("Phase_angle")), + map_scale=_parse_float(data.get("Map_scale")), + target_name=data.get("Target_name"), + label_file_name=data.get("LabelFileName"), + description=data.get("Description"), + product_files=product_files, + product_url=data.get("ProductURL"), + label_url=data.get("LabelURL"), + files_url=data.get("FilesURL"), + ) + + +class ODEProductSearchResponse(BaseModel): + """ODE product search response.""" + + status: str + count: int = 0 + products: list[ODEProduct] = Field(default_factory=list) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "ODEProductSearchResponse": + """Create from raw API response.""" + if not isinstance(data, dict): + return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") + ode_results = data.get("ODEResults", {}) + status = ode_results.get("Status", "ERROR") + + if status == "ERROR": + return cls( + status=status, + error=ode_results.get("Error"), + ) + + # Parse products + products_data = ode_results.get("Products", {}) + product_list = products_data.get("Product", []) + + # Handle single product (dict) vs multiple (list) + if isinstance(product_list, dict): + product_list = [product_list] + + # Filter out non-dict items and parse valid products + products = [ODEProduct.from_raw_data(p) for p in product_list if isinstance(p, dict)] + + # Get count + count = _parse_int(ode_results.get("Count", len(products))) + + return cls( + status=status, + count=count, + products=products, + ) + + +class ODEProductCountResponse(BaseModel): + """ODE product count response.""" + + status: str + count: int = 0 + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "ODEProductCountResponse": + """Create from raw API response.""" + if not isinstance(data, dict): + return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") + ode_results = data.get("ODEResults", {}) + status = ode_results.get("Status", "ERROR") + + if status == "ERROR": + return cls(status=status, error=ode_results.get("Error")) + + return cls( + status=status, + count=_parse_int(ode_results.get("Count", 0)), + ) + + +class ODEInstrumentInfo(BaseModel): + """ODE instrument/product type information.""" + + model_config = ConfigDict(populate_by_name=True) + + ihid: str = Field(alias="IHID") + ihn: str = Field(default="", alias="IHN") # Instrument Host Name (older API format) + ih_name: str = Field(default="", alias="IHName") # Instrument Host Name (newer API format) + iid: str = Field(alias="IID") + iin: str = Field(default="", alias="IIN") # Instrument Name (older API format) + i_name: str = Field(default="", alias="IName") # Instrument Name (newer API format) + pt: str = Field(alias="PT") + pt_name: str = Field(alias="PTName") + number_products: int = Field(default=0, alias="NumberProducts") + + @property + def instrument_host_name(self) -> str: + """Get instrument host name from either API format.""" + return self.ih_name or self.ihn + + @property + def instrument_name(self) -> str: + """Get instrument name from either API format.""" + return self.i_name or self.iin + + +class ODEIIPTResponse(BaseModel): + """ODE IIPT (Instrument/Product Type) response.""" + + status: str + instruments: list[ODEInstrumentInfo] = Field(default_factory=list) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "ODEIIPTResponse": + """Create from raw API response.""" + if not isinstance(data, dict): + return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") + ode_results = data.get("ODEResults", {}) + status = ode_results.get("Status", "ERROR") + + if status == "ERROR": + return cls(status=status, error=ode_results.get("Error")) + + # Handle both "IIPT" and "IIPTSets" keys (API inconsistency) + iipt_data = ode_results.get("IIPT", {}) or ode_results.get("IIPTSets", {}) + iipt_set = iipt_data.get("IIPTSet", []) + + # Handle single item vs list + if isinstance(iipt_set, dict): + iipt_set = [iipt_set] + + instruments = [] + for item in iipt_set: + instruments.append( + ODEInstrumentInfo( + IHID=item.get("IHID", ""), + IHN=item.get("IHN", ""), + IHName=item.get("IHName", ""), + IID=item.get("IID", ""), + IIN=item.get("IIN", ""), + IName=item.get("IName", ""), + PT=item.get("PT", ""), + PTName=item.get("PTName", ""), + NumberProducts=_parse_int(item.get("NumberProducts", 0)), + ) + ) + + return cls(status=status, instruments=instruments) + + +class ODEFeature(BaseModel): + """ODE planetary feature.""" + + feature_class: str + feature_name: str + min_lat: float + max_lat: float + west_lon: float + east_lon: float + + +class ODEFeatureDataResponse(BaseModel): + """ODE feature data response.""" + + status: str + features: list[ODEFeature] = Field(default_factory=list) + count: int = 0 + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "ODEFeatureDataResponse": + """Create from raw JSON API response.""" + if not isinstance(data, dict): + return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") + ode_results = data.get("ODEResults", {}) + status = ode_results.get("Status", "ERROR") + + if status == "ERROR": + return cls(status=status, error=ode_results.get("Error")) + + features_data = ode_results.get("Features", {}) + feature_list = features_data.get("Feature", []) + + if isinstance(feature_list, dict): + feature_list = [feature_list] + + features = [] + for f in feature_list: + features.append( + ODEFeature( + feature_class=f.get("FeatureClass", ""), + feature_name=f.get("FeatureName", ""), + min_lat=float(f.get("MinLat", 0)), + max_lat=float(f.get("MaxLat", 0)), + west_lon=float(f.get("WestLon", 0)), + east_lon=float(f.get("EastLon", 0)), + ) + ) + + return cls( + status=status, + features=features, + count=_parse_int(ode_results.get("Count", len(features))), + ) + + @classmethod + def from_xml(cls, xml_text: str) -> "ODEFeatureDataResponse": + """Create from XML API response.""" + try: + root = ET.fromstring(xml_text) + + status = root.findtext("Status", "ERROR") + if status == "ERROR": + return cls(status=status, error=root.findtext("Error")) + + features = [] + for feature_elem in root.findall(".//Feature"): + features.append( + ODEFeature( + feature_class=feature_elem.findtext("FeatureClass", ""), + feature_name=feature_elem.findtext("FeatureName", ""), + min_lat=float(feature_elem.findtext("MinLat", "0")), + max_lat=float(feature_elem.findtext("MaxLat", "0")), + west_lon=float(feature_elem.findtext("WestLon", "0")), + east_lon=float(feature_elem.findtext("EastLon", "0")), + ) + ) + + return cls( + status=status, + features=features, + count=_parse_int(root.findtext("Count", str(len(features)))), + ) + except ET.ParseError as e: + return cls(status="ERROR", error=f"XML parse error: {e}") + + +class ODEFeatureClassesResponse(BaseModel): + """ODE feature classes response.""" + + status: str + feature_classes: list[str] = Field(default_factory=list) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "ODEFeatureClassesResponse": + """Create from raw API response.""" + if not isinstance(data, dict): + return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") + ode_results = data.get("ODEResults", {}) + status = ode_results.get("Status", "ERROR") + + if status == "ERROR": + return cls(status=status, error=ode_results.get("Error")) + + # Handle both "FeatureTypes" and "FeatureClasses" keys (API inconsistency) + feature_types = ode_results.get("FeatureTypes", {}) or ode_results.get("FeatureClasses", {}) + feature_type_list = feature_types.get("FeatureType", []) or feature_types.get("FeatureClass", []) + + if isinstance(feature_type_list, str): + feature_type_list = [feature_type_list] + + return cls(status=status, feature_classes=feature_type_list) + + +class ODEFeatureNamesResponse(BaseModel): + """ODE feature names response.""" + + status: str + feature_names: list[str] = Field(default_factory=list) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "ODEFeatureNamesResponse": + """Create from raw API response.""" + if not isinstance(data, dict): + return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") + ode_results = data.get("ODEResults", {}) + status = ode_results.get("Status", "ERROR") + + if status == "ERROR": + return cls(status=status, error=ode_results.get("Error")) + + feature_names_data = ode_results.get("FeatureNames", {}) + feature_name_list = feature_names_data.get("FeatureName", []) + + if isinstance(feature_name_list, str): + feature_name_list = [feature_name_list] + + return cls(status=status, feature_names=feature_name_list) diff --git a/akd_ext/tools/pds/utils/ode_client.py b/akd_ext/tools/pds/utils/ode_client.py new file mode 100644 index 0000000..bf31ce0 --- /dev/null +++ b/akd_ext/tools/pds/utils/ode_client.py @@ -0,0 +1,421 @@ +"""ODE REST API client wrapper with httpx. + +The Orbital Data Explorer (ODE) provides access to NASA's planetary science +data archives for Mars, Moon, Mercury, and other bodies. + +Base URL: https://oderest.rsl.wustl.edu/live2/ +""" + +import asyncio +import logging +from types import TracebackType +from typing import Any, Literal + +import httpx + +from akd_ext.tools.pds.utils.ode_api_models import ( + ODEFeatureClassesResponse, + ODEFeatureDataResponse, + ODEFeatureNamesResponse, + ODEIIPTResponse, + ODEProductCountResponse, + ODEProductSearchResponse, +) + +logger = logging.getLogger(__name__) + +# Valid ODE targets +ODETarget = Literal["mars", "moon", "mercury", "phobos", "deimos", "venus"] + +# Valid result types +ODEResultType = Literal["op", "m", "f", "fpc", "c", "cm"] + + +class ODEClientError(Exception): + """Base exception for ODE client errors.""" + + pass + + +class ODERateLimitError(ODEClientError): + """Rate limit error for ODE API.""" + + def __init__(self, retry_after: int | None = None): + self.retry_after = retry_after + super().__init__(f"Rate limit exceeded. Retry after {retry_after} seconds.") + + +class ODEClient: + """Async HTTP client for ODE REST API.""" + + BASE_URL = "https://oderest.rsl.wustl.edu/live2/" + DEFAULT_TIMEOUT = 30.0 + + VALID_TARGETS: set[str] = {"mars", "moon", "mercury", "phobos", "deimos", "venus"} + + def __init__( + self, + base_url: str | None = None, + timeout: float = DEFAULT_TIMEOUT, + max_retries: int = 3, + retry_delay: float = 1.0, + ): + """Initialize ODE client. + + Args: + base_url: ODE API base URL (default: https://oderest.rsl.wustl.edu/live2/) + timeout: Request timeout in seconds + max_retries: Maximum number of retry attempts + retry_delay: Base delay between retries in seconds + """ + self.base_url = base_url or self.BASE_URL + self.timeout = timeout + self.max_retries = max_retries + self.retry_delay = retry_delay + self._client: httpx.AsyncClient | None = None + + async def __aenter__(self) -> "ODEClient": + """Async context manager entry.""" + self._client = httpx.AsyncClient( + base_url=self.base_url, + timeout=self.timeout, + headers=self._get_headers(), + ) + return self + + async def __aexit__( + self, + _exc_type: type[BaseException] | None, + _exc_val: BaseException | None, + _exc_tb: TracebackType | None, + ) -> None: + """Async context manager exit.""" + if self._client: + await self._client.aclose() + self._client = None + + def _get_headers(self) -> dict[str, str]: + """Get HTTP headers for requests.""" + return { + "Accept": "application/json", + "User-Agent": "AKD-EXT-ODE-Client/0.1.0", + } + + def _validate_target(self, target: str) -> None: + """Validate that target is a valid ODE target.""" + if target.lower() not in self.VALID_TARGETS: + raise ValueError(f"Invalid target: {target}. Must be one of: {', '.join(sorted(self.VALID_TARGETS))}") + + async def _request( + self, + params: dict[str, Any], + ) -> httpx.Response: + """Make HTTP request with retry logic.""" + if not self._client: + raise RuntimeError("Client not initialized. Use async context manager.") + + for attempt in range(self.max_retries + 1): + try: + response = await self._client.get("", params=params) + + if response.status_code == 429: + try: + retry_after = int(response.headers.get("retry-after", self.retry_delay)) + except (ValueError, TypeError): + retry_after = int(self.retry_delay) + if attempt < self.max_retries: + logger.warning(f"Rate limited. Retrying in {retry_after} seconds...") + await asyncio.sleep(retry_after) + continue + else: + raise ODERateLimitError(retry_after) + + response.raise_for_status() + return response + + except httpx.HTTPError as e: + if attempt < self.max_retries: + wait_time = self.retry_delay * (2**attempt) + logger.warning(f"Request failed (attempt {attempt + 1}). Retrying in {wait_time}s...") + await asyncio.sleep(wait_time) + else: + raise ODEClientError(f"Request failed after {self.max_retries} retries: {e}") + + raise ODEClientError("Maximum retries exceeded") + + async def search_products( + self, + target: str, + ihid: str | None = None, + iid: str | None = None, + pt: str | None = None, + pdsid: str | None = None, + minlat: float | None = None, + maxlat: float | None = None, + westlon: float | None = None, + eastlon: float | None = None, + minobtime: str | None = None, + maxobtime: str | None = None, + results: ODEResultType = "fpc", + limit: int = 100, + offset: int = 0, + ) -> ODEProductSearchResponse: + """Search for ODE products. + + Args: + target: Planetary body (mars, moon, mercury, phobos, deimos, venus) + ihid: Instrument Host ID (e.g., "MRO", "LRO", "MESS") + iid: Instrument ID (e.g., "HIRISE", "CTX", "LROC") + pt: Product Type (e.g., "RDRV11", "EDR") + pdsid: PDS Product ID for direct lookup + minlat: Minimum latitude (-90 to 90) + maxlat: Maximum latitude (-90 to 90) + westlon: Western longitude + eastlon: Eastern longitude + minobtime: Minimum observation time in UTC format (e.g., "2018-05-01") + maxobtime: Maximum observation time in UTC format (e.g., "2018-08-31") + results: Result type (op, m, f, fpc, c, cm) + limit: Maximum products to return + offset: Pagination offset + + Returns: + ODEProductSearchResponse with products and metadata + """ + self._validate_target(target) + + # Validate that we have either ihid+iid+pt or pdsid + if not pdsid and not (ihid and iid and pt): + raise ValueError("Must provide either 'pdsid' or all of 'ihid', 'iid', and 'pt'") + + params: dict[str, Any] = { + "target": target.lower(), + "query": "product", + "results": results, + "output": "JSON", + "limit": str(limit), + "offset": str(offset), + } + + if pdsid: + params["pdsid"] = pdsid + else: + params["ihid"] = ihid + params["iid"] = iid + params["pt"] = pt + + # Add geographic bounds + if minlat is not None: + params["minlat"] = str(minlat) + if maxlat is not None: + params["maxlat"] = str(maxlat) + if westlon is not None: + params["westlon"] = str(westlon) + if eastlon is not None: + params["eastlon"] = str(eastlon) + + # Add temporal bounds + if minobtime is not None: + params["minobtime"] = minobtime + if maxobtime is not None: + params["maxobtime"] = maxobtime + + response = await self._request(params) + + try: + data = response.json() + return ODEProductSearchResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse ODE product search response: {e}") + raise ODEClientError(f"Invalid response format: {e}") + + async def count_products( + self, + target: str, + ihid: str, + iid: str, + pt: str, + minlat: float | None = None, + maxlat: float | None = None, + westlon: float | None = None, + eastlon: float | None = None, + minobtime: str | None = None, + maxobtime: str | None = None, + ) -> ODEProductCountResponse: + """Count products matching criteria. + + Args: + target: Planetary body + ihid: Instrument Host ID + iid: Instrument ID + pt: Product Type + minlat: Minimum latitude + maxlat: Maximum latitude + westlon: Western longitude + eastlon: Eastern longitude + minobtime: Minimum observation time in UTC format (e.g., "2020-01-01") + maxobtime: Maximum observation time in UTC format (e.g., "2020-01-31") + + Returns: + ODEProductCountResponse with count + """ + self._validate_target(target) + + params: dict[str, Any] = { + "target": target.lower(), + "query": "product", + "results": "c", + "output": "JSON", + "ihid": ihid, + "iid": iid, + "pt": pt, + } + + if minlat is not None: + params["minlat"] = str(minlat) + if maxlat is not None: + params["maxlat"] = str(maxlat) + if westlon is not None: + params["westlon"] = str(westlon) + if eastlon is not None: + params["eastlon"] = str(eastlon) + + # Add temporal bounds + if minobtime is not None: + params["minobtime"] = minobtime + if maxobtime is not None: + params["maxobtime"] = maxobtime + + response = await self._request(params) + + try: + data = response.json() + return ODEProductCountResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse ODE count response: {e}") + raise ODEClientError(f"Invalid response format: {e}") + + async def list_instruments( + self, + target: str, + ) -> ODEIIPTResponse: + """Get valid instrument/product type combinations for a target. + + Args: + target: Planetary body + + Returns: + ODEIIPTResponse with instrument combinations + """ + self._validate_target(target) + + params = { + "query": "iipt", + "target": target.lower(), + "output": "JSON", + } + + response = await self._request(params) + + try: + data = response.json() + return ODEIIPTResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse ODE IIPT response: {e}") + raise ODEClientError(f"Invalid response format: {e}") + + async def get_feature_bounds( + self, + target: str, + feature_class: str, + feature_name: str, + ) -> ODEFeatureDataResponse: + """Get lat/lon bounds for a named planetary feature. + + Args: + target: Planetary body (mars, moon, etc.) + feature_class: Feature type (crater, chasma, mons, etc.) + feature_name: Name of the feature (Gale, Jezero, Olympus Mons, etc.) + + Returns: + ODEFeatureDataResponse with geographic bounds + """ + params = { + "query": "featuredata", + "odemetadb": target.lower(), + "featureclass": feature_class.lower(), + "featurename": feature_name, + } + + response = await self._request(params) + + try: + content_type = response.headers.get("content-type", "").lower() + if "json" in content_type: + data = response.json() + return ODEFeatureDataResponse.from_raw_data(data) + else: + # Parse XML response + return ODEFeatureDataResponse.from_xml(response.text) + except Exception as e: + logger.error(f"Failed to parse ODE feature data response: {e}") + raise ODEClientError(f"Invalid response format: {e}") + + async def list_feature_classes( + self, + target: str, + ) -> ODEFeatureClassesResponse: + """Get available feature types for a target. + + Args: + target: Planetary body + + Returns: + ODEFeatureClassesResponse with feature classes + """ + params = { + "query": "featureclasses", + "odemetadb": target.lower(), + "output": "JSON", + } + + response = await self._request(params) + + try: + data = response.json() + return ODEFeatureClassesResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse ODE feature classes response: {e}") + raise ODEClientError(f"Invalid response format: {e}") + + async def list_feature_names( + self, + target: str, + feature_class: str, + limit: int = 100, + ) -> ODEFeatureNamesResponse: + """Get names of features by class. + + Args: + target: Planetary body + feature_class: Feature type (crater, chasma, etc.) + limit: Maximum names to return + + Returns: + ODEFeatureNamesResponse with feature names + """ + params = { + "query": "featurenames", + "odemetadb": target.lower(), + "featureclass": feature_class.lower(), + "limit": str(limit), + "output": "JSON", + } + + response = await self._request(params) + + try: + data = response.json() + return ODEFeatureNamesResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse ODE feature names response: {e}") + raise ODEClientError(f"Invalid response format: {e}") diff --git a/akd_ext/tools/pds/utils/opus_api_models.py b/akd_ext/tools/pds/utils/opus_api_models.py new file mode 100644 index 0000000..b244054 --- /dev/null +++ b/akd_ext/tools/pds/utils/opus_api_models.py @@ -0,0 +1,368 @@ +"""Pydantic models for OPUS API responses. + +The OPUS (Outer Planets Unified Search) API provides access to outer planets +observations from Cassini, Voyager, Galileo, New Horizons, Juno, and HST. + +Base URL: https://opus.pds-rings.seti.org/opus/api/ +""" + +from typing import Any + +from pydantic import BaseModel, Field + + +def _parse_float(value: Any) -> float | None: + """Parse a value to float, returning None if not possible.""" + if value is None: + return None + try: + return float(value) + except (ValueError, TypeError): + return None + + +def _parse_int(value: Any) -> int | None: + """Parse a value to int, returning None if not possible.""" + if value is None: + return None + try: + return int(value) + except (ValueError, TypeError): + return None + + +class OPUSObservation(BaseModel): + """OPUS observation representation from search results.""" + + opusid: str + instrument: str | None = None + planet: str | None = None + target: str | None = None + mission: str | None = None + time1: str | None = None + time2: str | None = None + observation_duration: float | None = None + ring_obs_id: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "OPUSObservation": + """Create OPUSObservation from raw API response data (dict format).""" + return cls( + opusid=data.get("opusid", ""), + instrument=data.get("instrument"), + planet=data.get("planet"), + target=data.get("target"), + mission=data.get("mission"), + time1=data.get("time1"), + time2=data.get("time2"), + observation_duration=_parse_float(data.get("observationduration")), + ring_obs_id=data.get("ringobsid"), + ) + + @classmethod + def from_row_data(cls, columns: list[str], row: list[Any]) -> "OPUSObservation": + """Create OPUSObservation from row data (array format from API). + + The OPUS API returns data as arrays where columns map to row values. + """ + # Create a mapping from column names to values + col_map = dict(zip(columns, row)) + + return cls( + opusid=col_map.get("OPUS ID", ""), + instrument=col_map.get("Instrument Name"), + planet=col_map.get("Planet"), + target=col_map.get("Intended Target Name(s)"), + time1=col_map.get("Observation Start Time (YMDhms)"), + observation_duration=_parse_float(col_map.get("Observation Duration (secs)")), + ) + + +class OPUSSearchResponse(BaseModel): + """OPUS search response wrapper.""" + + status: str = "success" + start_obs: int = 1 + limit: int = 100 + count: int = 0 + available: int = 0 + order: str = "" + observations: list[OPUSObservation] = Field(default_factory=list) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "OPUSSearchResponse": + """Create from raw API response.""" + # Check for error response + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + # Parse page data - OPUS returns arrays, not dictionaries + page = data.get("page", []) + columns = data.get("columns", []) + + # Handle both array format (API default) and dict format + observations: list[OPUSObservation] = [] + if page and columns and isinstance(page[0], list): + # Array format: columns define the keys, page rows are arrays + observations = [OPUSObservation.from_row_data(columns, row) for row in page] + elif page and isinstance(page[0], dict): + # Dict format (in case API changes or different endpoint) + observations = [OPUSObservation.from_raw_data(obs) for obs in page] + + return cls( + status="success", + start_obs=data.get("start_obs", 1), + limit=data.get("limit", 100), + count=data.get("count", len(observations)), + available=data.get("available", 0), + order=data.get("order", ""), + observations=observations, + ) + + +class OPUSCountResponse(BaseModel): + """OPUS count response.""" + + status: str = "success" + count: int = 0 + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "OPUSCountResponse": + """Create from raw API response.""" + # Check for error response + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + # Extract count from data array + data_array = data.get("data", []) + if data_array and len(data_array) > 0: + count = data_array[0].get("result_count", 0) + else: + count = 0 + + return cls( + status="success", + count=count, + ) + + +class OPUSMetadata(BaseModel): + """OPUS observation metadata.""" + + opusid: str + general_constraints: dict[str, Any] = Field(default_factory=dict) + pds_constraints: dict[str, Any] = Field(default_factory=dict) + image_constraints: dict[str, Any] = Field(default_factory=dict) + wavelength_constraints: dict[str, Any] = Field(default_factory=dict) + ring_geometry_constraints: dict[str, Any] = Field(default_factory=dict) + surface_geometry_constraints: dict[str, Any] = Field(default_factory=dict) + instrument_constraints: dict[str, Any] = Field(default_factory=dict) + raw_data: dict[str, Any] = Field(default_factory=dict) + + @classmethod + def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSMetadata": + """Create from raw API response.""" + return cls( + opusid=opusid, + general_constraints=data.get("General Constraints", {}), + pds_constraints=data.get("PDS Constraints", {}), + image_constraints=data.get("Image Constraints", {}), + wavelength_constraints=data.get("Wavelength Constraints", {}), + ring_geometry_constraints=data.get("Ring Geometry Constraints", {}), + surface_geometry_constraints=data.get("Surface Geometry Constraints", {}), + instrument_constraints=cls._extract_instrument_constraints(data), + raw_data=data, + ) + + @staticmethod + def _extract_instrument_constraints(data: dict[str, Any]) -> dict[str, Any]: + """Extract instrument-specific constraints from metadata.""" + instrument_keys = [ + "Cassini ISS Constraints", + "Cassini VIMS Constraints", + "Cassini UVIS Constraints", + "Cassini CIRS Constraints", + "Voyager ISS Constraints", + "Galileo SSI Constraints", + "New Horizons LORRI Constraints", + "New Horizons MVIC Constraints", + "Juno JunoCam Constraints", + "Juno JIRAM Constraints", + "HST Constraints", + ] + for key in instrument_keys: + if key in data: + return data[key] + return {} + + +class OPUSMetadataResponse(BaseModel): + """OPUS metadata response wrapper.""" + + status: str = "success" + metadata: OPUSMetadata | None = None + error: str | None = None + + @classmethod + def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSMetadataResponse": + """Create from raw API response.""" + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + metadata = OPUSMetadata.from_raw_data(opusid, data) + return cls( + status="success", + metadata=metadata, + ) + + +class OPUSFileInfo(BaseModel): + """OPUS file information.""" + + category: str + version: str = "Current" + files: list[str] = Field(default_factory=list) + + +class OPUSFiles(BaseModel): + """OPUS files for an observation.""" + + opusid: str + raw_files: list[str] = Field(default_factory=list) + calibrated_files: list[str] = Field(default_factory=list) + browse_thumb: str | None = None + browse_small: str | None = None + browse_medium: str | None = None + browse_full: str | None = None + all_files: dict[str, list[str]] = Field(default_factory=dict) + + @classmethod + def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSFiles": + """Create from raw API response.""" + # Get the file data for this opusid + file_data = data.get(opusid, {}) + + raw_files: list[str] = [] + calibrated_files: list[str] = [] + all_files: dict[str, list[str]] = {} + browse_thumb: str | None = None + browse_small: str | None = None + browse_medium: str | None = None + browse_full: str | None = None + + for category, category_data in file_data.items(): + if category.startswith("browse_"): + # Browse images are direct URLs + if category == "browse_thumb": + browse_thumb = category_data if isinstance(category_data, str) else None + elif category == "browse_small": + browse_small = category_data if isinstance(category_data, str) else None + elif category == "browse_medium": + browse_medium = category_data if isinstance(category_data, str) else None + elif category == "browse_full": + browse_full = category_data if isinstance(category_data, str) else None + elif isinstance(category_data, dict): + # Data files are nested by version + files = category_data.get("Current", []) + if isinstance(files, list): + all_files[category] = files + if "raw" in category.lower(): + raw_files.extend(files) + elif "calib" in category.lower(): + calibrated_files.extend(files) + + return cls( + opusid=opusid, + raw_files=raw_files, + calibrated_files=calibrated_files, + browse_thumb=browse_thumb, + browse_small=browse_small, + browse_medium=browse_medium, + browse_full=browse_full, + all_files=all_files, + ) + + +class OPUSFilesResponse(BaseModel): + """OPUS files response wrapper.""" + + status: str = "success" + files: OPUSFiles | None = None + error: str | None = None + + @classmethod + def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSFilesResponse": + """Create from raw API response.""" + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + files = OPUSFiles.from_raw_data(opusid, data) + return cls( + status="success", + files=files, + ) + + +class OPUSField(BaseModel): + """OPUS search field definition.""" + + field_id: str + label: str + category: str + search_label: str | None = None + full_label: str | None = None + + +class OPUSFieldsResponse(BaseModel): + """OPUS fields response wrapper.""" + + status: str = "success" + fields: list[OPUSField] = Field(default_factory=list) + categories: list[str] = Field(default_factory=list) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "OPUSFieldsResponse": + """Create from raw API response.""" + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + fields: list[OPUSField] = [] + categories: set[str] = set() + + for field_id, field_data in data.items(): + if isinstance(field_data, dict): + category = field_data.get("category", "") + categories.add(category) + fields.append( + OPUSField( + field_id=field_id, + label=field_data.get("label", field_id), + category=category, + search_label=field_data.get("search_label"), + full_label=field_data.get("full_label"), + ) + ) + + return cls( + status="success", + fields=fields, + categories=sorted(categories), + ) diff --git a/akd_ext/tools/pds/utils/opus_client.py b/akd_ext/tools/pds/utils/opus_client.py new file mode 100644 index 0000000..5206206 --- /dev/null +++ b/akd_ext/tools/pds/utils/opus_client.py @@ -0,0 +1,335 @@ +"""OPUS API client wrapper with httpx. + +The OPUS (Outer Planets Unified Search) API provides access to outer planets +observations from Cassini, Voyager, Galileo, New Horizons, Juno, and HST. + +Base URL: https://opus.pds-rings.seti.org/opus/api/ +""" + +import asyncio +import logging +from types import TracebackType +from typing import Any + +import httpx + +from .opus_api_models import ( + OPUSCountResponse, + OPUSFieldsResponse, + OPUSFilesResponse, + OPUSMetadataResponse, + OPUSSearchResponse, +) + +logger = logging.getLogger(__name__) + + +class OPUSClientError(Exception): + """Base exception for OPUS client errors.""" + + pass + + +class OPUSRateLimitError(OPUSClientError): + """Rate limit error for OPUS API.""" + + def __init__(self, retry_after: int | None = None): + self.retry_after = retry_after + super().__init__(f"Rate limit exceeded. Retry after {retry_after} seconds.") + + +class OPUSClient: + """Async HTTP client for OPUS REST API.""" + + BASE_URL = "https://opus.pds-rings.seti.org/opus/api/" + DEFAULT_TIMEOUT = 30.0 + + # Valid planets from the API documentation + VALID_PLANETS: set[str] = {"jupiter", "saturn", "uranus", "neptune", "pluto", "other"} + + # Valid missions + VALID_MISSIONS: set[str] = { + "cassini", + "voyager", + "galileo", + "new horizons", + "juno", + "hst", + } + + def __init__( + self, + base_url: str | None = None, + timeout: float = DEFAULT_TIMEOUT, + max_retries: int = 3, + retry_delay: float = 1.0, + ): + """Initialize OPUS client. + + Args: + base_url: API base URL (default: https://opus.pds-rings.seti.org/opus/api/) + timeout: Request timeout in seconds + max_retries: Maximum number of retry attempts + retry_delay: Base delay between retries in seconds + """ + self.base_url = base_url or self.BASE_URL + self.timeout = timeout + self.max_retries = max_retries + self.retry_delay = retry_delay + self._client: httpx.AsyncClient | None = None + + async def __aenter__(self) -> "OPUSClient": + """Async context manager entry.""" + self._client = httpx.AsyncClient( + base_url=self.base_url, + timeout=self.timeout, + headers=self._get_headers(), + ) + return self + + async def __aexit__( + self, + _exc_type: type[BaseException] | None, + _exc_val: BaseException | None, + _exc_tb: TracebackType | None, + ) -> None: + """Async context manager exit.""" + if self._client: + await self._client.aclose() + self._client = None + + def _get_headers(self) -> dict[str, str]: + """Get HTTP headers for requests.""" + return { + "Accept": "application/json", + "User-Agent": "akd-ext-OPUS-Client/0.1.0", + } + + async def _request( + self, + endpoint: str, + params: dict[str, Any] | None = None, + ) -> httpx.Response: + """Make HTTP request with retry logic.""" + if not self._client: + raise RuntimeError("Client not initialized. Use async context manager.") + + for attempt in range(self.max_retries + 1): + try: + response = await self._client.get(endpoint, params=params) + + if response.status_code == 429: + try: + retry_after = int(response.headers.get("retry-after", self.retry_delay)) + except (ValueError, TypeError): + retry_after = int(self.retry_delay) + if attempt < self.max_retries: + logger.warning(f"Rate limited. Retrying in {retry_after} seconds...") + await asyncio.sleep(retry_after) + continue + else: + raise OPUSRateLimitError(retry_after) + + response.raise_for_status() + return response + + except httpx.HTTPError as e: + if attempt < self.max_retries: + wait_time = self.retry_delay * (2**attempt) + logger.warning(f"Request failed (attempt {attempt + 1}). Retrying in {wait_time}s...") + await asyncio.sleep(wait_time) + else: + raise OPUSClientError(f"Request failed after {self.max_retries} retries: {e}") + + raise OPUSClientError("Maximum retries exceeded") + + def _build_search_params( + self, + target: str | None = None, + mission: str | None = None, + instrument: str | None = None, + planet: str | None = None, + time_min: str | None = None, + time_max: str | None = None, + limit: int = 100, + startobs: int = 1, + order: str = "time1,opusid", + ) -> dict[str, Any]: + """Build search parameters for OPUS API.""" + params: dict[str, Any] = { + "limit": str(limit), + "startobs": str(startobs), + "order": order, + } + + if target: + params["target"] = target + + if mission: + params["mission"] = mission + + if instrument: + params["instrument"] = instrument + + if planet: + params["planet"] = planet + + if time_min: + params["time1"] = time_min + + if time_max: + params["time2"] = time_max + + return params + + async def search_observations( + self, + target: str | None = None, + mission: str | None = None, + instrument: str | None = None, + planet: str | None = None, + time_min: str | None = None, + time_max: str | None = None, + limit: int = 100, + startobs: int = 1, + order: str = "time1,opusid", + ) -> OPUSSearchResponse: + """Search for observations in OPUS. + + Args: + target: Target body (e.g., "Saturn", "Titan", "Saturn Rings") + mission: Mission name (e.g., "Cassini", "Voyager") + instrument: Instrument name (e.g., "Cassini ISS", "Voyager ISS") + planet: Planet filter (jupiter, saturn, uranus, neptune, pluto) + time_min: Start of time range (ISO 8601 format) + time_max: End of time range (ISO 8601 format) + limit: Maximum observations to return (default 100) + startobs: Starting observation index for pagination (default 1) + order: Sort order (default "time1,opusid") + + Returns: + OPUSSearchResponse with observations and metadata + """ + params = self._build_search_params( + target=target, + mission=mission, + instrument=instrument, + planet=planet, + time_min=time_min, + time_max=time_max, + limit=limit, + startobs=startobs, + order=order, + ) + + response = await self._request("data.json", params) + + try: + data = response.json() + return OPUSSearchResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse OPUS search response: {e}") + raise OPUSClientError(f"Invalid response format: {e}") + + async def count_observations( + self, + target: str | None = None, + mission: str | None = None, + instrument: str | None = None, + planet: str | None = None, + time_min: str | None = None, + time_max: str | None = None, + ) -> OPUSCountResponse: + """Count observations matching criteria without retrieving them. + + Args: + target: Target body filter + mission: Mission name filter + instrument: Instrument name filter + planet: Planet filter + time_min: Start of time range + time_max: End of time range + + Returns: + OPUSCountResponse with count + """ + params = self._build_search_params( + target=target, + mission=mission, + instrument=instrument, + planet=planet, + time_min=time_min, + time_max=time_max, + limit=1, # We only need the count + startobs=1, + ) + # Remove limit and startobs for count request + del params["limit"] + del params["startobs"] + del params["order"] + + response = await self._request("meta/result_count.json", params) + + try: + data = response.json() + return OPUSCountResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse OPUS count response: {e}") + raise OPUSClientError(f"Invalid response format: {e}") + + async def get_metadata( + self, + opusid: str, + ) -> OPUSMetadataResponse: + """Get detailed metadata for a specific observation. + + Args: + opusid: OPUS observation ID (e.g., "co-iss-n1460960653") + + Returns: + OPUSMetadataResponse with full observation metadata + """ + response = await self._request(f"metadata/{opusid}.json") + + try: + data = response.json() + return OPUSMetadataResponse.from_raw_data(opusid, data) + except Exception as e: + logger.error(f"Failed to parse OPUS metadata response: {e}") + raise OPUSClientError(f"Invalid response format: {e}") + + async def get_files( + self, + opusid: str, + ) -> OPUSFilesResponse: + """Get downloadable file URLs for an observation. + + Args: + opusid: OPUS observation ID (e.g., "co-iss-n1460960653") + + Returns: + OPUSFilesResponse with raw, calibrated, and browse image URLs + """ + response = await self._request(f"files/{opusid}.json") + + try: + data = response.json() + return OPUSFilesResponse.from_raw_data(opusid, data) + except Exception as e: + logger.error(f"Failed to parse OPUS files response: {e}") + raise OPUSClientError(f"Invalid response format: {e}") + + async def get_fields(self) -> OPUSFieldsResponse: + """Get all available search fields. + + Returns: + OPUSFieldsResponse with field definitions and categories + """ + response = await self._request("fields.json") + + try: + data = response.json() + return OPUSFieldsResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse OPUS fields response: {e}") + raise OPUSClientError(f"Invalid response format: {e}") diff --git a/akd_ext/tools/pds/utils/pds4_api_models.py b/akd_ext/tools/pds/utils/pds4_api_models.py new file mode 100644 index 0000000..74fbdf0 --- /dev/null +++ b/akd_ext/tools/pds/utils/pds4_api_models.py @@ -0,0 +1,494 @@ +"""Pydantic models for PDS4 API responses.""" + +from datetime import datetime +from typing import Any + +from pydantic import BaseModel, ConfigDict, Field + + +def get_first_value(properties: dict[str, Any], key: str) -> str | None: + """Extract first value from a PDS4 properties array. + + PDS4 API returns property values as arrays. This helper extracts + the first element or returns None if empty/missing. + + Args: + properties: Dictionary of PDS4 properties + key: The property key to extract + + Returns: + First value from the array, or None if empty/missing + """ + values = properties.get(key, []) + if isinstance(values, list): + return str(values[0]) if values else None + return str(values) if values is not None else None + + +def parse_datetime(value: str | None) -> datetime | None: + """Parse a datetime string from PDS4 API response. + + Handles ISO 8601 format datetime strings with timezone. + + Args: + value: ISO 8601 datetime string or None + + Returns: + Parsed datetime object or None if parsing fails + """ + if not value: + return None + try: + # Handle 'Z' suffix (UTC) + if value.endswith("Z"): + value = value[:-1] + "+00:00" + return datetime.fromisoformat(value) + except (ValueError, TypeError): + return None + + +def parse_int(value: str | None) -> int | None: + """Parse an integer string from PDS4 API response. + + Args: + value: Integer string or None + + Returns: + Parsed integer or None if parsing fails + """ + if not value: + return None + try: + return int(value) + except (ValueError, TypeError): + return None + + +def has_values(model: BaseModel) -> bool: + """Check if a Pydantic model has any non-None values. + + Args: + model: Pydantic model instance + + Returns: + True if any field has a non-None value + """ + return any(model.model_dump(exclude_none=True).values()) + + +class PDS4Summary(BaseModel): + """PDS4 search response summary.""" + + hits: int + took: int | None = None + q: str | None = None + start: int = 0 + properties: list[Any] = Field(default_factory=list) + facets: list[dict[str, Any]] = Field(default_factory=list) + + +class PDS4Facet(BaseModel): + """PDS4 facet information.""" + + property: str + type: str + counts: dict[str, int] + + +class PDS4IdentificationArea(BaseModel): + """PDS4 Identification Area properties.""" + + model_config = ConfigDict(populate_by_name=True) + + title: str | None = Field(None, alias="pds:Identification_Area.pds:title") + logical_identifier: str | None = Field(None, alias="pds:Identification_Area.pds:logical_identifier") + version_id: str | None = Field(None, alias="pds:Identification_Area.pds:version_id") + product_class: str | None = Field(None, alias="pds:Identification_Area.pds:product_class") + + @classmethod + def from_properties(cls, properties: dict[str, Any]) -> "PDS4IdentificationArea": + """Create from PDS4 properties dict where values are arrays.""" + return cls( + title=get_first_value(properties, "pds:Identification_Area.pds:title"), + logical_identifier=get_first_value(properties, "pds:Identification_Area.pds:logical_identifier"), + version_id=get_first_value(properties, "pds:Identification_Area.pds:version_id"), + product_class=get_first_value(properties, "pds:Identification_Area.pds:product_class"), + ) + + +class PDS4ScienceFacets(BaseModel): + """PDS4 Science Facets properties.""" + + model_config = ConfigDict(populate_by_name=True) + + discipline_name: str | None = Field(None, alias="pds:Science_Facets.pds:discipline_name") + wavelength_range: str | None = Field(None, alias="pds:Science_Facets.pds:wavelength_range") + domain: str | None = Field(None, alias="pds:Science_Facets.pds:domain") + + +class PDS4InvestigationArea(BaseModel): + """PDS4 Investigation Area properties.""" + + model_config = ConfigDict(populate_by_name=True) + + name: str | None = Field(None, alias="pds:Investigation_Area.pds:name") + type: str | None = Field(None, alias="pds:Investigation_Area.pds:type") + title: str | None = Field(None, alias="pds:Investigation_Area.pds:title") + + @classmethod + def from_properties(cls, properties: dict[str, Any]) -> "PDS4InvestigationArea": + """Create from PDS4 properties dict where values are arrays.""" + return cls( + name=get_first_value(properties, "pds:Investigation_Area.pds:name"), + type=get_first_value(properties, "pds:Investigation_Area.pds:type"), + title=get_first_value(properties, "pds:Investigation_Area.pds:title"), + ) + + +class PDS4TargetIdentification(BaseModel): + """PDS4 Target Identification properties.""" + + model_config = ConfigDict(populate_by_name=True) + + name: str | None = Field(None, alias="pds:Target_Identification.pds:name") + type: str | None = Field(None, alias="pds:Target_Identification.pds:type") + + +class PDS4TimeCoordinates(BaseModel): + """PDS4 Time Coordinates properties.""" + + model_config = ConfigDict(populate_by_name=True) + + start_date_time: datetime | None = Field(None, alias="pds:Time_Coordinates.pds:start_date_time") + stop_date_time: datetime | None = Field(None, alias="pds:Time_Coordinates.pds:stop_date_time") + + +class PDS4Provenance(BaseModel): + """PDS4 Operational Provenance properties.""" + + model_config = ConfigDict(populate_by_name=True) + + parent_bundle_identifier: str | None = Field(None, alias="ops:Provenance.ops:parent_bundle_identifier") + parent_collection_identifier: str | None = Field(None, alias="ops:Provenance.ops:parent_collection_identifier") + + +class PDS4HarvestInfo(BaseModel): + """PDS4 Harvest Information properties.""" + + model_config = ConfigDict(populate_by_name=True) + + node_name: str | None = Field(None, alias="ops:Harvest_Info.ops:node_name") + harvest_date_time: datetime | None = Field(None, alias="ops:Harvest_Info.ops:harvest_date_time") + + +class PDS4DataFileInfo(BaseModel): + """PDS4 Data File Information properties.""" + + model_config = ConfigDict(populate_by_name=True) + + file_ref: str | None = Field(None, alias="ops:Data_File_Info.ops:file_ref") + file_size: int | None = Field(None, alias="ops:Data_File_Info.ops:file_size") + mime_type: str | None = Field(None, alias="ops:Data_File_Info.ops:mime_type") + + +class PDS4PrimaryResultSummary(BaseModel): + """PDS4 Primary Result Summary properties.""" + + model_config = ConfigDict(populate_by_name=True) + + processing_level: str | None = Field(None, alias="pds:Primary_Result_Summary.pds:processing_level") + purpose: str | None = Field(None, alias="pds:Primary_Result_Summary.pds:purpose") + + +class PDS4Collection(BaseModel): + """PDS4 Collection properties.""" + + model_config = ConfigDict(populate_by_name=True) + + collection_type: str | None = Field(None, alias="pds:Collection.pds:collection_type") + + +class PDS4BundleMemberEntry(BaseModel): + """PDS4 Bundle Member Entry properties.""" + + model_config = ConfigDict(populate_by_name=True) + + lidvid_reference: str | None = Field(None, alias="pds:Bundle_Member_Entry.pds:lidvid_reference") + member_status: str | None = Field(None, alias="pds:Bundle_Member_Entry.pds:member_status") + + +class PDS4Investigation(BaseModel): + """PDS4 Investigation properties.""" + + model_config = ConfigDict(populate_by_name=True) + + start_date: str | None = Field(None, alias="pds:Investigation.pds:start_date") + stop_date: str | None = Field(None, alias="pds:Investigation.pds:stop_date") + type: str | None = Field(None, alias="pds:Investigation.pds:type") + + +class PDS4Target(BaseModel): + """PDS4 Target properties.""" + + model_config = ConfigDict(populate_by_name=True) + + type: str | None = Field(None, alias="pds:Target.pds:type") + description: str | None = Field(None, alias="pds:Target.pds:description") + + +class PDS4Instrument(BaseModel): + """PDS4 Instrument properties.""" + + model_config = ConfigDict(populate_by_name=True) + + type: str | None = Field(None, alias="pds:Instrument.pds:type") + description: str | None = Field(None, alias="pds:Instrument.pds:description") + + +class PDS4InstrumentHost(BaseModel): + """PDS4 Instrument Host properties.""" + + model_config = ConfigDict(populate_by_name=True) + + type: str | None = Field(None, alias="pds:Instrument_Host.pds:type") + description: str | None = Field(None, alias="pds:Instrument_Host.pds:description") + + +class PDS4Alias(BaseModel): + """PDS4 Alias properties.""" + + model_config = ConfigDict(populate_by_name=True) + + alternate_title: str | None = Field(None, alias="pds:Alias.pds:alternate_title") + + +class PDS4LabelFileInfo(BaseModel): + """PDS4 Label File Info properties.""" + + model_config = ConfigDict(populate_by_name=True) + + file_ref: str | None = Field(None, alias="ops:Label_File_Info.ops:file_ref") + + +class PDS4Product(BaseModel): + """PDS4 Product representation with structured properties.""" + + # Universal identifiers + id: str + lid: str | None = None + lidvid: str | None = None + title: str | None = None + + # Structured properties + identification_area: PDS4IdentificationArea | None = None + science_facets: PDS4ScienceFacets | None = None + investigation_area: PDS4InvestigationArea | None = None + target_identification: PDS4TargetIdentification | None = None + time_coordinates: PDS4TimeCoordinates | None = None + provenance: PDS4Provenance | None = None + harvest_info: PDS4HarvestInfo | None = None + data_file_info: PDS4DataFileInfo | None = None + primary_result_summary: PDS4PrimaryResultSummary | None = None + collection: PDS4Collection | None = None + bundle_member_entry: PDS4BundleMemberEntry | None = None + + # Context-specific properties + investigation: PDS4Investigation | None = None + target: PDS4Target | None = None + instrument: PDS4Instrument | None = None + instrument_host: PDS4InstrumentHost | None = None + alias: PDS4Alias | None = None + label_file_info: PDS4LabelFileInfo | None = None + + # Reference fields for collections + ref_lid_instrument: str | None = None + ref_lid_target: str | None = None + ref_lid_instrument_host: str | None = None + ref_lid_investigation: str | None = None + + # Raw properties for any additional fields + properties: dict[str, Any] = Field(default_factory=dict) + + model_config = ConfigDict(populate_by_name=True) + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "PDS4Product": + """Create PDS4Product from raw API response data. + + Parses the raw JSON response from the PDS4 API into a structured + PDS4Product model with properly typed fields. + + Args: + data: Raw API response dictionary + + Returns: + Populated PDS4Product instance + """ + props = data.get("properties", {}) if "properties" in data else data + + identification_area = PDS4IdentificationArea.from_properties(props) + investigation_area = PDS4InvestigationArea.from_properties(props) + + # Simplified extraction for other properties + science_facets = PDS4ScienceFacets( + discipline_name=get_first_value(props, "pds:Science_Facets.pds:discipline_name"), + wavelength_range=get_first_value(props, "pds:Science_Facets.pds:wavelength_range"), + domain=get_first_value(props, "pds:Science_Facets.pds:domain"), + ) + + target_identification = PDS4TargetIdentification( + name=get_first_value(props, "pds:Target_Identification.pds:name"), + type=get_first_value(props, "pds:Target_Identification.pds:type"), + ) + + # Parse datetime fields from string values + time_coordinates = PDS4TimeCoordinates( + start_date_time=parse_datetime(get_first_value(props, "pds:Time_Coordinates.pds:start_date_time")), + stop_date_time=parse_datetime(get_first_value(props, "pds:Time_Coordinates.pds:stop_date_time")), + ) + + provenance = PDS4Provenance( + parent_bundle_identifier=get_first_value(props, "ops:Provenance.ops:parent_bundle_identifier"), + parent_collection_identifier=get_first_value(props, "ops:Provenance.ops:parent_collection_identifier"), + ) + + harvest_info = PDS4HarvestInfo( + node_name=get_first_value(props, "ops:Harvest_Info.ops:node_name"), + harvest_date_time=parse_datetime(get_first_value(props, "ops:Harvest_Info.ops:harvest_date_time")), + ) + + data_file_info = PDS4DataFileInfo( + file_ref=get_first_value(props, "ops:Data_File_Info.ops:file_ref"), + file_size=parse_int(get_first_value(props, "ops:Data_File_Info.ops:file_size")), + mime_type=get_first_value(props, "ops:Data_File_Info.ops:mime_type"), + ) + + primary_result_summary = PDS4PrimaryResultSummary( + processing_level=get_first_value(props, "pds:Primary_Result_Summary.pds:processing_level"), + purpose=get_first_value(props, "pds:Primary_Result_Summary.pds:purpose"), + ) + + collection = PDS4Collection( + collection_type=get_first_value(props, "pds:Collection.pds:collection_type"), + ) + + bundle_member_entry = PDS4BundleMemberEntry( + lidvid_reference=get_first_value(props, "pds:Bundle_Member_Entry.pds:lidvid_reference"), + member_status=get_first_value(props, "pds:Bundle_Member_Entry.pds:member_status"), + ) + + # Context-specific properties + investigation = PDS4Investigation( + start_date=get_first_value(props, "pds:Investigation.pds:start_date"), + stop_date=get_first_value(props, "pds:Investigation.pds:stop_date"), + type=get_first_value(props, "pds:Investigation.pds:type"), + ) + + target = PDS4Target( + type=get_first_value(props, "pds:Target.pds:type"), + description=get_first_value(props, "pds:Target.pds:description"), + ) + + instrument = PDS4Instrument( + type=get_first_value(props, "pds:Instrument.pds:type"), + description=get_first_value(props, "pds:Instrument.pds:description"), + ) + + instrument_host = PDS4InstrumentHost( + type=get_first_value(props, "pds:Instrument_Host.pds:type"), + description=get_first_value(props, "pds:Instrument_Host.pds:description"), + ) + + alias = PDS4Alias( + alternate_title=get_first_value(props, "pds:Alias.pds:alternate_title"), + ) + + label_file_info = PDS4LabelFileInfo( + file_ref=get_first_value(props, "ops:Label_File_Info.ops:file_ref"), + ) + + return cls( + id=data.get("id", ""), + lid=get_first_value(props, "lid"), + lidvid=get_first_value(props, "lidvid"), + title=( + data.get("title") + or get_first_value(props, "pds:Identification_Area.pds:title") + or get_first_value(props, "title") + ), + identification_area=identification_area if has_values(identification_area) else None, + science_facets=science_facets if has_values(science_facets) else None, + investigation_area=investigation_area if has_values(investigation_area) else None, + target_identification=target_identification if has_values(target_identification) else None, + time_coordinates=time_coordinates if has_values(time_coordinates) else None, + provenance=provenance if has_values(provenance) else None, + harvest_info=harvest_info if has_values(harvest_info) else None, + data_file_info=data_file_info if has_values(data_file_info) else None, + primary_result_summary=primary_result_summary if has_values(primary_result_summary) else None, + collection=collection if has_values(collection) else None, + bundle_member_entry=bundle_member_entry if has_values(bundle_member_entry) else None, + investigation=investigation if has_values(investigation) else None, + target=target if has_values(target) else None, + instrument=instrument if has_values(instrument) else None, + instrument_host=instrument_host if has_values(instrument_host) else None, + alias=alias if has_values(alias) else None, + label_file_info=label_file_info if has_values(label_file_info) else None, + ref_lid_instrument=get_first_value(props, "ref_lid_instrument"), + ref_lid_target=get_first_value(props, "ref_lid_target"), + ref_lid_instrument_host=get_first_value(props, "ref_lid_instrument_host"), + ref_lid_investigation=get_first_value(props, "ref_lid_investigation"), + properties=props, + ) + + +class PDS4SearchResponse(BaseModel): + """PDS4 search response wrapper.""" + + summary: PDS4Summary + data: list[PDS4Product] = Field(default_factory=list) + facets: list[PDS4Facet] = Field(default_factory=list) + + model_config = ConfigDict(populate_by_name=True) + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "PDS4SearchResponse": + """Create PDS4SearchResponse from raw API response data.""" + summary_data = data.get("summary", {}) + + # Parse facets from summary + facets = [] + for facet_data in summary_data.get("facets", []): + facets.append(PDS4Facet(**facet_data)) + + # Create summary without facets (they're handled separately) + summary = PDS4Summary( + hits=summary_data.get("hits", 0), + took=summary_data.get("took"), + q=summary_data.get("q"), + start=summary_data.get("start", 0), + properties=summary_data.get("properties", []), + ) + + products = [] + for item in data.get("data", []): + products.append(PDS4Product.from_raw_data(item)) + + return cls( + summary=summary, + data=products, + facets=facets, + ) + + +class PDS4Error(BaseModel): + """PDS4 API error response.""" + + status: int + title: str + detail: str | None = None + + +class PDS4ErrorResponse(BaseModel): + """PDS4 API error response wrapper.""" + + errors: list[PDS4Error] diff --git a/akd_ext/tools/pds/utils/pds4_client.py b/akd_ext/tools/pds/utils/pds4_client.py new file mode 100644 index 0000000..ce83d8f --- /dev/null +++ b/akd_ext/tools/pds/utils/pds4_client.py @@ -0,0 +1,905 @@ +"""PDS4 API client wrapper with httpx. + +Recommended Discovery Workflow: +1. search_bundles() - Discover high-level data bundles via faceting +2. search_collections() - Find specific collections with limit > 0 +3. get_collection_products() - Use lidvid from step 2 to explore products +4. search_observational() - Direct search for observational data products + +Context-based Discovery: +- search_context_investigations() - Find missions/projects +- search_context_targets() - Find celestial bodies +- search_context_instruments() - Find scientific instruments +- search_context_instrument_hosts() - Find spacecraft/rovers +- search_context_collections() - Find data collections by context references + +Always extract URNs dynamically from search results rather than using hardcoded values. +""" + +import asyncio +import logging +import re +from types import TracebackType +from typing import Any +from urllib.parse import urlencode, urljoin + +import httpx +from pydantic import ValidationError + +logger = logging.getLogger(__name__) + + +def validate_urn(urn: str) -> str: + """Validate and return a PDS4 URN. + + Args: + urn: The URN to validate + + Returns: + The validated URN + + Raises: + ValueError: If the URN format is invalid + """ + # Basic URN pattern - starts with urn:nasa:pds: and contains valid characters + pattern = r"^urn:nasa:pds:[a-z_]+:[a-z_\.\-\w:]+$" + if not re.match(pattern, urn, re.IGNORECASE): + raise ValueError(f"Invalid URN format: {urn}") + return urn + + +def validate_coordinates( + bbox_north: float | None = None, + bbox_south: float | None = None, + bbox_east: float | None = None, + bbox_west: float | None = None, +) -> None: + """Validate geographic bounding box coordinates. + + Args: + bbox_north: North latitude (-90 to 90) + bbox_south: South latitude (-90 to 90) + bbox_east: East longitude (-180 to 360, planetary bodies can use 0-360) + bbox_west: West longitude (-180 to 360) + + Raises: + ValueError: If coordinates are out of valid range + """ + if bbox_north is not None and not (-90 <= bbox_north <= 90): + raise ValueError(f"bbox_north must be between -90 and 90, got {bbox_north}") + if bbox_south is not None and not (-90 <= bbox_south <= 90): + raise ValueError(f"bbox_south must be between -90 and 90, got {bbox_south}") + if bbox_north is not None and bbox_south is not None and bbox_north < bbox_south: + raise ValueError(f"bbox_north ({bbox_north}) must be >= bbox_south ({bbox_south})") + # Longitude validation - planetary data often uses 0-360 range + if bbox_east is not None and not (-180 <= bbox_east <= 360): + raise ValueError(f"bbox_east must be between -180 and 360, got {bbox_east}") + if bbox_west is not None and not (-180 <= bbox_west <= 360): + raise ValueError(f"bbox_west must be between -180 and 360, got {bbox_west}") + + +class PDS4ClientError(Exception): + """Base exception for PDS4 client errors.""" + + pass + + +class PDS4RateLimitError(PDS4ClientError): + """Rate limit error for PDS4 API.""" + + def __init__(self, retry_after: int | None = None): + self.retry_after = retry_after + super().__init__(f"Rate limit exceeded. Retry after {retry_after} seconds.") + + +class PDS4Client: + """Async HTTP client for NASA PDS4 Search API.""" + + BASE_URL = "https://pds.mcp.nasa.gov/api/search/1/" + DEFAULT_TIMEOUT = 30.0 + DEFAULT_PAGE_SIZE = 25 + MAX_PAGE_SIZE = 1000 + + def __init__( + self, + base_url: str | None = None, + timeout: float = DEFAULT_TIMEOUT, + max_retries: int = 3, + retry_delay: float = 1.0, + ): + """Initialize PDS4 client. + + Args: + base_url: PDS4 API base URL + timeout: Request timeout in seconds + max_retries: Maximum number of retry attempts + retry_delay: Base delay between retries in seconds + """ + self.base_url = base_url or self.BASE_URL + self.timeout = timeout + self.max_retries = max_retries + self.retry_delay = retry_delay + self._client: httpx.AsyncClient | None = None + + async def __aenter__(self) -> "PDS4Client": + """Async context manager entry.""" + self._client = httpx.AsyncClient( + base_url=self.base_url, + timeout=self.timeout, + headers=self._get_headers(), + ) + return self + + async def __aexit__( + self, + _exc_type: type[BaseException] | None, + _exc_val: BaseException | None, + _exc_tb: TracebackType | None, + ) -> None: + """Async context manager exit.""" + if self._client: + await self._client.aclose() + self._client = None + + def _get_headers(self) -> dict[str, str]: + """Get HTTP headers for requests.""" + headers = { + "Accept": "application/json", + "User-Agent": "PDS4-MCP-Server/0.1.0", + } + return headers + + def _clean_urn(self, urn: str) -> str: + """Clean a URN by removing version information. + + Args: + urn: The URN to clean (e.g., "urn:nasa:pds:context:investigation:mission.juno::1.0") + + Returns: + Cleaned URN without version (e.g., "urn:nasa:pds:context:investigation:mission.juno") + """ + if "::" in urn: + return urn.split("::")[0] + return urn + + def _build_search_url(self, base_url: str, params: dict[str, Any]) -> str: + """Build a search URL from base URL and parameters. + + Args: + base_url: The base API URL + params: Dictionary of query parameters + + Returns: + Complete URL with query parameters + """ + # Filter out None values and empty strings + filtered_params = {k: v for k, v in params.items() if v is not None and v != ""} + query_string = urlencode(filtered_params) + return f"{base_url}?{query_string}" if query_string else base_url + + async def _request( + self, + method: str, + endpoint: str, + params: dict[str, Any] | None = None, + **kwargs, + ) -> httpx.Response: + """Make HTTP request with retry logic.""" + if not self._client: + raise RuntimeError("Client not initialized. Use async context manager.") + + url = urljoin(self.base_url, endpoint) + + for attempt in range(self.max_retries + 1): + try: + response = await self._client.request( + method=method, + url=url, + params=params, + **kwargs, + ) + + if response.status_code == 429: + try: + retry_after = int(response.headers.get("retry-after", self.retry_delay)) + except (ValueError, TypeError): + retry_after = int(self.retry_delay) + if attempt < self.max_retries: + logger.warning(f"Rate limited. Retrying in {retry_after} seconds...") + await asyncio.sleep(retry_after) + continue + else: + raise PDS4RateLimitError(retry_after) + + response.raise_for_status() + return response + + except httpx.HTTPError as e: + if attempt < self.max_retries: + wait_time = self.retry_delay * (2**attempt) + logger.warning(f"Request failed (attempt {attempt + 1}). Retrying in {wait_time}s...") + await asyncio.sleep(wait_time) + else: + raise PDS4ClientError(f"Request failed after {self.max_retries} retries: {e}") + + raise PDS4ClientError("Maximum retries exceeded") + + async def search_bundles( + self, + title_query: str | None = None, + start_time: str | None = None, + end_time: str | None = None, + processing_level: str | None = None, + limit: int | None = None, + facet_fields: list[str] | None = None, + facet_limit: int = 25, + ): + """Search for bundles in PDS4. + + Args: + title_query: Search query for bundle titles (e.g., "Lunar") + start_time: Start of time range (ISO 8601 format, e.g., "2020-01-01T00:00:00Z") + end_time: End of time range (ISO 8601 format) + processing_level: Filter by processing level ("Raw", "Calibrated", "Derived") + limit: Number of actual products to return (set to 0 for facets only) + facet_fields: List of fields to facet on (e.g., ["pds:Identification_Area.pds:title", "lidvid"]) + facet_limit: Maximum number of facet values to return + + Returns: + PDS4SearchResponse containing bundles and facets + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params: dict[str, str] = {} + filters: list[str] = [] + + if title_query: + filters.append(f'(title like "{title_query}")') + + # Temporal filters + if start_time: + filters.append(f'(pds:Time_Coordinates.pds:start_date_time ge "{start_time}")') + if end_time: + filters.append(f'(pds:Time_Coordinates.pds:stop_date_time lt "{end_time}")') + + # Processing level filter + if processing_level: + filters.append(f'(pds:Primary_Result_Summary.pds:processing_level eq "{processing_level}")') + + if filters: + params["q"] = f"({' and '.join(filters)})" + + if facet_fields: + params["facet-fields"] = ",".join(facet_fields) + + params["facet-limit"] = str(facet_limit) + params["limit"] = str(limit or 0) + + response = await self._request("GET", "classes/bundle", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse bundle search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def search_collections( + self, + title_query: str | None = None, + start_time: str | None = None, + end_time: str | None = None, + processing_level: str | None = None, + limit: int | None = None, + facet_fields: list[str] | None = None, + facet_limit: int = 25, + ): + """Search for collections in PDS4. + + Args: + title_query: Search query for collection titles (e.g., "Lunar") + start_time: Start of time range (ISO 8601 format, e.g., "2020-01-01T00:00:00Z") + end_time: End of time range (ISO 8601 format) + processing_level: Filter by processing level ("Raw", "Calibrated", "Derived") + limit: Number of actual products to return (set to 0 for facets only) + facet_fields: List of fields to facet on (e.g., ["pds:Identification_Area.pds:title", "lidvid"]) + facet_limit: Maximum number of facet values to return + + Returns: + PDS4SearchResponse containing collections and facets + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params: dict[str, str] = {} + filters: list[str] = [] + + if title_query: + filters.append(f'(title like "{title_query}")') + + # Temporal filters + if start_time: + filters.append(f'(pds:Time_Coordinates.pds:start_date_time ge "{start_time}")') + if end_time: + filters.append(f'(pds:Time_Coordinates.pds:stop_date_time lt "{end_time}")') + + # Processing level filter + if processing_level: + filters.append(f'(pds:Primary_Result_Summary.pds:processing_level eq "{processing_level}")') + + if filters: + params["q"] = f"({' and '.join(filters)})" + + if facet_fields: + params["facet-fields"] = ",".join(facet_fields) + + params["facet-limit"] = str(facet_limit) + params["limit"] = str(limit or 0) + + response = await self._request("GET", "classes/collection", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse collection search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def search_observational( + self, + title_query: str | None = None, + limit: int | None = None, + facet_fields: list[str] | None = None, + facet_limit: int = 25, + ): + """Search for observational products in PDS4. + + Args: + title_query: Search query for product titles (e.g., "LRO") + limit: Number of actual products to return (set to 0 for facets only) + facet_fields: List of fields to facet on (e.g., ["pds:Identification_Area.pds:title", "lidvid"]) + facet_limit: Maximum number of facet values to return + + Returns: + PDS4SearchResponse containing observational products and facets + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params: dict[str, str] = {} + + if title_query: + params["q"] = f'((title like "{title_query}"))' + + if facet_fields: + params["facet-fields"] = ",".join(facet_fields) + + params["facet-limit"] = str(facet_limit) + params["limit"] = str(limit or 0) + + response = await self._request("GET", "classes/observational", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse observational search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def get_collection_products( + self, + collection_urn: str, + limit: int | None = None, + ): + """Get products from a specific collection. + + Best Practice: Extract collection_urn from search_collections results, not hardcoded values. + + Typical workflow: + 1. Call search_collections() to discover available collections + 2. Extract 'lidvid' field from interesting collections in the response + 3. Use that lidvid as collection_urn parameter here + 4. Iterate through multiple collections if some are empty + + Args: + collection_urn: URN of the collection from search results (e.g., extracted from response.data[0].lidvid) + limit: Number of products to return + + Returns: + PDS4SearchResponse containing collection products (uses /members endpoint) + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params = {} + + if limit: + params["limit"] = str(limit) + + response = await self._request("GET", f"products/{collection_urn}/members", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse collection products response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def search_context_investigations( + self, + keywords: str | None = None, + limit: int = 10, + ): + """Search PDS Context products that are Investigations (missions/projects). + + Args: + keywords: Search terms for investigations (e.g., "mars rover", "jupiter cassini") + limit: Maximum number of results to return + + Returns: + PDS4SearchResponse containing investigation context products + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params = { + "q": r'(product_class eq "Product_Context" and lid like "urn:nasa:pds:context:investigation:*")', + "fields": ( + "title,lid,pds:Investigation.pds:stop_date,pds:Investigation.pds:start_date," + "pds:Investigation.pds:type,ops:Label_File_Info.ops:file_ref" + ), + "limit": str(limit), + } + + if keywords: + keywords_str = " ".join(keywords.split()) + keyword_query = f'((title like "{keywords_str}") or (description like "{keywords_str}"))' + params["q"] = f"({params['q']} and {keyword_query})" + + response = await self._request("GET", "products", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse investigation search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def search_context_targets( + self, + keywords: str | None = None, + target_type: str | None = None, + limit: int = 10, + ): + """Search PDS Context products that are Targets (celestial bodies, phenomena). + + Args: + keywords: Search terms for targets (e.g., "jupiter moon", "asteroid belt") + target_type: Filter by target type (e.g., "Planet", "Satellite") + limit: Maximum number of results to return + + Returns: + PDS4SearchResponse containing target context products + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params = { + "q": r'(product_class eq "Product_Context" and lid like "urn:nasa:pds:context:target:*")', + "fields": "title,lid,pds:Target.pds:type,pds:Alias.pds:alternate_title", + "limit": str(limit), + } + + if keywords: + keyword_query = f'((title like "{keywords}") or (pds:Target.pds:description like "{keywords}"))' + params["q"] = f"({params['q']} and {keyword_query})" + + if target_type: + params["q"] = f'({params["q"]} and (pds:Target.pds:type like "{target_type}"))' + + response = await self._request("GET", "products", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse target search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def search_context_instrument_hosts( + self, + keywords: str | None = None, + instrument_host_type: str | None = None, + limit: int = 10, + ): + """Search PDS Context products that are Instrument Hosts (spacecraft, rovers, telescopes). + + Args: + keywords: Search terms for instrument hosts (e.g., "mars rover", "voyager spacecraft") + instrument_host_type: Filter by type (e.g., "Rover", "Spacecraft") + limit: Maximum number of results to return + + Returns: + PDS4SearchResponse containing instrument host context products + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params = { + "q": r'(product_class eq "Product_Context" and lid like "urn:nasa:pds:context:instrument_host:*")', + "fields": "pds:Instrument_Host.pds:type", + "limit": str(limit), + } + + if keywords: + keyword_query = f'((title like "{keywords}") or (pds:Instrument_Host.pds:description like "{keywords}"))' + params["q"] = f"({params['q']} and {keyword_query})" + + if instrument_host_type: + params["q"] = f'({params["q"]} and (pds:Instrument_Host.pds:type like "{instrument_host_type}"))' + + response = await self._request("GET", "products", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse instrument host search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def search_context_instruments( + self, + keywords: str | None = None, + instrument_type: str | None = None, + limit: int = 10, + ): + """Search PDS Context products that are Instruments. + + Args: + keywords: Search terms for instruments (e.g., "camera mars", "spectrometer cassini") + instrument_type: Filter by instrument type (e.g., "Spectrometer", "Imager") + limit: Maximum number of results to return + + Returns: + PDS4SearchResponse containing instrument context products + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params = { + "q": r'(product_class eq "Product_Context" and lid like "urn:nasa:pds:context:instrument:*")', + "fields": "pds:Instrument.pds:type", + "limit": str(limit), + } + + if keywords: + # Search title, description, and LID (where abbreviations like "jade", "jedi" appear) + keyword_query = ( + f'((title like "{keywords}") or ' + f'(pds:Instrument.pds:description like "{keywords}") or ' + f'(lid like "*{keywords.lower()}*"))' + ) + params["q"] = f"({params['q']} and {keyword_query})" + + if instrument_type: + params["q"] = f'({params["q"]} and (pds:Instrument.pds:type like "{instrument_type}"))' + + response = await self._request("GET", "products", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse instrument search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def search_context_collections( + self, + ref_lid_instrument: str | None = None, + ref_lid_target: str | None = None, + ref_lid_instrument_host: str | None = None, + ref_lid_investigation: str | None = None, + start_time: str | None = None, + end_time: str | None = None, + processing_level: str | None = None, + limit: int = 10, + ): + """Search PDS data collections filtered by context references and advanced filters. + + Args: + ref_lid_instrument: URN identifier for instrument + ref_lid_target: URN identifier for target + ref_lid_instrument_host: URN identifier for instrument host + ref_lid_investigation: URN identifier for investigation + start_time: Start of time range (ISO 8601 format, e.g., "2020-01-01T00:00:00Z") + end_time: End of time range (ISO 8601 format) + processing_level: Filter by processing level ("Raw", "Calibrated", "Derived") + limit: Maximum number of results to return + + Returns: + PDS4SearchResponse containing collection products + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + params = { + "q": r'(product_class eq "Product_Collection")', + "fields": ( + "title,lid,ref_lid_instrument,ref_lid_target,ref_lid_instrument_host," + "ref_lid_investigation,ops:Label_File_Info.ops:file_ref," + "pds:Time_Coordinates.pds:start_date_time," + "pds:Time_Coordinates.pds:stop_date_time," + "pds:Primary_Result_Summary.pds:processing_level" + ), + "limit": str(limit), + } + + # Add filters for each provided parameter + filters = [] + + if ref_lid_instrument: + clean_instrument = self._clean_urn(ref_lid_instrument) + filters.append(f'(ref_lid_instrument eq "{clean_instrument}")') + + if ref_lid_target: + clean_target = self._clean_urn(ref_lid_target) + filters.append(f'(ref_lid_target eq "{clean_target}")') + + if ref_lid_instrument_host: + clean_host = self._clean_urn(ref_lid_instrument_host) + filters.append(f'(ref_lid_instrument_host eq "{clean_host}")') + + if ref_lid_investigation: + clean_investigation = self._clean_urn(ref_lid_investigation) + filters.append(f'(ref_lid_investigation eq "{clean_investigation}")') + + # Temporal filters - don't escape datetime values as colons are part of ISO 8601 format + if start_time: + filters.append(f'(pds:Time_Coordinates.pds:start_date_time ge "{start_time}")') + if end_time: + # Use stop_date_time for end filter to properly filter by when data collection ended + filters.append(f'(pds:Time_Coordinates.pds:stop_date_time lt "{end_time}")') + + # Processing level filter + if processing_level: + filters.append(f'(pds:Primary_Result_Summary.pds:processing_level eq "{processing_level}")') + + # Combine all filters + if filters: + params["q"] = f"({params['q']} and {' and '.join(filters)})" + + response = await self._request("GET", "products", params=params) + + try: + data = response.json() + + # Process file_ref paths to remove filename and show directory + for item in data.get("data", []): + if "ops:Label_File_Info.ops:file_ref" in item: + file_ref = item["ops:Label_File_Info.ops:file_ref"] + if file_ref and isinstance(file_ref, list) and file_ref: + # Split by '/' and remove the last part (filename), then rejoin + path_parts = file_ref[0].split("/") + if len(path_parts) > 1: + # Remove the last part (filename) to get the directory + directory_path = "/".join(path_parts[:-1]) + item["ops:Label_File_Info.ops:file_ref"] = [directory_path] + + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse collection search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def get_product(self, urn: str) -> dict[str, Any]: + """Get a single PDS product by its URN identifier. + + Args: + urn: URN identifier for the product + + Returns: + Raw JSON response containing the product details + """ + # Clean the URN to remove version information + clean_urn_id = self._clean_urn(urn) + + response = await self._request("GET", f"products/{clean_urn_id}") + + try: + result: dict[str, Any] = response.json() + return result + except Exception as e: + logger.error(f"Failed to parse product response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def search_products_advanced( + self, + keywords: str | None = None, + start_time: str | None = None, + end_time: str | None = None, + processing_level: str | None = None, + bbox_north: float | None = None, + bbox_south: float | None = None, + bbox_east: float | None = None, + bbox_west: float | None = None, + ref_lid_target: str | None = None, + limit: int = 100, + ): + """Search for observational products with advanced filtering. + + Supports temporal, processing level, and spatial (bounding box) filters. + + Args: + keywords: Search terms for product titles + start_time: Start of time range (ISO 8601 format, e.g., "2020-01-01T00:00:00Z") + end_time: End of time range (ISO 8601 format) + processing_level: Filter by processing level ("Raw", "Calibrated", "Derived") + bbox_north: North bounding coordinate (latitude, -90 to 90) + bbox_south: South bounding coordinate (latitude, -90 to 90) + bbox_east: East bounding coordinate (longitude) + bbox_west: West bounding coordinate (longitude) + ref_lid_target: URN identifier for target (e.g., "urn:nasa:pds:context:target:planet.mars") + limit: Maximum number of results to return + + Returns: + PDS4SearchResponse containing matching observational products + + Raises: + ValueError: If coordinate values are out of valid range + """ + # Import here to avoid circular dependency + from akd_ext.tools.pds.utils.pds4_api_models import PDS4SearchResponse + + # Validate coordinates + validate_coordinates(bbox_north, bbox_south, bbox_east, bbox_west) + + filters = ['(product_class eq "Product_Observational")'] + + # Keywords filter + if keywords: + filters.append(f'(title like "{keywords}")') + + # Temporal filters + if start_time: + filters.append(f'(pds:Time_Coordinates.pds:start_date_time ge "{start_time}")') + if end_time: + # Use stop_date_time for end filter to properly filter by when data collection ended + filters.append(f'(pds:Time_Coordinates.pds:stop_date_time lt "{end_time}")') + + # Processing level filter + if processing_level: + filters.append(f'(pds:Primary_Result_Summary.pds:processing_level eq "{processing_level}")') + + # Spatial (bounding box) filters - find products that intersect the query box + if bbox_north is not None: + filters.append(f"(cart:Bounding_Coordinates.cart:south_bounding_coordinate le {bbox_north})") + if bbox_south is not None: + filters.append(f"(cart:Bounding_Coordinates.cart:north_bounding_coordinate ge {bbox_south})") + if bbox_east is not None: + filters.append(f"(cart:Bounding_Coordinates.cart:west_bounding_coordinate le {bbox_east})") + if bbox_west is not None: + filters.append(f"(cart:Bounding_Coordinates.cart:east_bounding_coordinate ge {bbox_west})") + + # Target filter + if ref_lid_target: + clean_target = self._clean_urn(ref_lid_target) + filters.append(f'(ref_lid_target eq "{clean_target}")') + + # Build query + query = " and ".join(filters) + params = { + "q": f"({query})", + "fields": ( + "title,lid,lidvid,ref_lid_target," + "pds:Time_Coordinates.pds:start_date_time," + "pds:Time_Coordinates.pds:stop_date_time," + "pds:Primary_Result_Summary.pds:processing_level," + "cart:Bounding_Coordinates.cart:north_bounding_coordinate," + "cart:Bounding_Coordinates.cart:south_bounding_coordinate," + "cart:Bounding_Coordinates.cart:east_bounding_coordinate," + "cart:Bounding_Coordinates.cart:west_bounding_coordinate" + ), + "limit": str(limit), + } + + response = await self._request("GET", "products", params=params) + + try: + data = response.json() + return PDS4SearchResponse.from_raw_data(data) + except ValidationError as e: + logger.error(f"Failed to parse advanced product search response: {e}") + raise PDS4ClientError(f"Invalid response format: {e}") + + async def crawl_context_product(self, urn: str) -> dict[str, Any]: + """Crawl a single PDS Context product and return associated context products. + + This method fetches related products concurrently using async HTTP requests. + + Args: + urn: URN identifier for the context product to crawl + + Returns: + Dictionary containing the associated context products with keys: + - "investigations": Related investigation products + - "observing_system_components": Related instrument/host products + - "targets": Related target products + - "errors": List of any fetch errors encountered (if any) + """ + # Clean the URN to remove version information + clean_urn_id = self._clean_urn(urn) + + # Get the main product + product_response = await self._request("GET", f"products/{clean_urn_id}") + response_data = product_response.json() + + # Filter to keep only relevant keys + response_data = { + k: v + for k, v in response_data.items() + if k in ("investigations", "observing_system_components", "targets", "title", "id") + } + + urn_dict: dict[str, dict[str, str]] = { + "investigations": {}, + "observing_system_components": {}, + "targets": {}, + } + + if "investigations" in response_data: + for item in response_data["investigations"]: + urn_dict["investigations"][item["id"]] = item["href"] + if "observing_system_components" in response_data: + for item in response_data["observing_system_components"]: + urn_dict["observing_system_components"][item["id"]] = item["href"] + if "targets" in response_data: + for item in response_data["targets"]: + urn_dict["targets"][item["id"]] = item["href"] + + # Create a results dict with the same structure as urn_dict + results: dict[str, Any] = { + "investigations": {}, + "observing_system_components": {}, + "targets": {}, + } + errors: list[str] = [] + + # Async helper to fetch a single related product + async def fetch_related(category: str, urn_id: str, href: str) -> tuple[str, str, dict[str, Any] | None]: + try: + async with httpx.AsyncClient(timeout=self.timeout) as client: + resp = await client.get(href, headers={"Accept": "application/kvp+json"}) + if resp.status_code == 200: + data = resp.json() + subset_keys = ["title", "description", "id"] + return category, urn_id, {k: v for k, v in data.items() if k in subset_keys} + else: + logger.warning(f"Failed to fetch {href}: {resp.status_code}") + return category, urn_id, None + except httpx.HTTPError as e: + logger.error(f"HTTP error fetching {href}: {e}") + errors.append(f"Failed to fetch {urn_id}: {e}") + return category, urn_id, None + except Exception as e: + logger.error(f"Error fetching {href}: {e}") + errors.append(f"Failed to fetch {urn_id}: {e}") + return category, urn_id, None + + # Build list of fetch tasks + tasks = [] + for category in urn_dict: + for urn_id, href in urn_dict[category].items(): + tasks.append(fetch_related(category, urn_id, href)) + + # Execute all fetches concurrently + if tasks: + fetch_results = await asyncio.gather(*tasks) + for category, urn_id, data in fetch_results: + if data is not None: + results[category][urn_id] = data + + # Include errors in response if any occurred + if errors: + results["errors"] = errors + + return results diff --git a/akd_ext/tools/pds/utils/pds_catalog_api_models.py b/akd_ext/tools/pds/utils/pds_catalog_api_models.py new file mode 100644 index 0000000..6e3e503 --- /dev/null +++ b/akd_ext/tools/pds/utils/pds_catalog_api_models.py @@ -0,0 +1,137 @@ +"""Pydantic models for PDS Catalog API responses. + +These models represent the internal structure of PDS Catalog data, +used by the PDSCatalogClient for parsing catalog JSONL files. +""" + +import json +import logging +from datetime import date, datetime +from enum import Enum +from pathlib import Path + +from pydantic import BaseModel, Field + +logger = logging.getLogger(__name__) + + +class PDSNode(str, Enum): + """PDS node identifiers.""" + + ATM = "atm" # Atmospheres + GEO = "geo" # Geosciences + IMG = "img" # Imaging + NAIF = "naif" # Navigation and Ancillary Information + PPI = "ppi" # Planetary Plasma Interactions + RMS = "rms" # Ring-Moon Systems + SBN = "sbn" # Small Bodies + + +class PDSVersion(str, Enum): + """PDS archive version.""" + + PDS3 = "PDS3" + PDS4 = "PDS4" + + +class DatasetType(str, Enum): + """Type of PDS dataset.""" + + BUNDLE = "bundle" + COLLECTION = "collection" + VOLUME = "volume" + + +class PDSDataset(BaseModel): + """Unified schema for PDS4 bundles and PDS3 volumes. + + This model represents a single dataset entry in the PDS catalog, + containing all the metadata researchers need for data discovery. + """ + + # Identity + id: str = Field(description="LIDVID for PDS4, VOLUME_ID for PDS3") + title: str = Field(description="Human-readable title") + description: str | None = Field(default=None, description="Abstract/description") + + # Classification + node: PDSNode = Field(description="PDS node (atm, geo, img, naif, ppi, rms, sbn)") + pds_version: PDSVersion = Field(description="PDS3 or PDS4") + type: DatasetType = Field(description="bundle, collection, or volume") + + # Discovery fields (what researchers search for) + missions: list[str] = Field(default_factory=list, description="Mission names") + targets: list[str] = Field(default_factory=list, description="Target bodies") + instruments: list[str] = Field(default_factory=list, description="Instrument names") + instrument_hosts: list[str] = Field(default_factory=list, description="Spacecraft/rover names") + data_types: list[str] = Field(default_factory=list, description="Data types (images, spectra, etc.)") + + # Temporal coverage + start_date: date | None = Field(default=None, description="Observation start date") + stop_date: date | None = Field(default=None, description="Observation end date") + + # Access URLs + browse_url: str = Field(description="Link to browse data") + download_url: str | None = Field(default=None, description="Direct download if available") + label_url: str | None = Field(default=None, description="URL to PDS4 label XML") + + # Metadata + source_url: str = Field(description="Where we found this dataset") + scraped_at: datetime = Field(default_factory=datetime.utcnow, description="When we scraped it") + + # Additional metadata + keywords: list[str] = Field(default_factory=list, description="Additional keywords for search") + processing_level: str | None = Field(default=None, description="Data processing level") + file_count: int | None = Field(default=None, description="Number of files in dataset") + total_size_bytes: int | None = Field(default=None, description="Total size in bytes") + + def to_search_text(self) -> str: + """Generate searchable text from all fields.""" + parts = [ + self.title, + self.description or "", + " ".join(self.missions), + " ".join(self.targets), + " ".join(self.instruments), + " ".join(self.instrument_hosts), + " ".join(self.data_types), + " ".join(self.keywords), + ] + return " ".join(parts).lower() + + +def load_from_jsonl(input_path: Path) -> list[PDSDataset]: + """Load datasets from JSONL format. + + Args: + input_path: Input file path + + Returns: + List of PDSDataset objects + """ + datasets = [] + + with open(input_path) as f: + for line in f: + if line.strip(): + data = json.loads(line) + datasets.append(PDSDataset.model_validate(data)) + + logger.info(f"Loaded {len(datasets)} datasets from {input_path}") + return datasets + + +class MissionSummary(BaseModel): + """Mission summary with dataset counts.""" + + name: str = Field(description="Mission name (proper casing)") + count: int = Field(description="Number of datasets for this mission") + nodes: list[str] = Field(description="List of PDS nodes containing datasets for this mission") + + +class TargetSummary(BaseModel): + """Target summary with dataset counts.""" + + name: str = Field(description="Target name (proper casing)") + count: int = Field(description="Number of datasets for this target") + nodes: list[str] = Field(description="List of PDS nodes containing datasets for this target") diff --git a/akd_ext/tools/pds/utils/pds_catalog_client.py b/akd_ext/tools/pds/utils/pds_catalog_client.py new file mode 100644 index 0000000..2d46f81 --- /dev/null +++ b/akd_ext/tools/pds/utils/pds_catalog_client.py @@ -0,0 +1,547 @@ +"""PDS Catalog client for searching pre-scraped catalog data. + +This client provides an in-memory search index for PDS datasets stored in JSONL format. +It supports filtering by node, mission, instrument, target, and temporal range. +""" + +import logging +import os +from datetime import date +from pathlib import Path +from typing import Any + +from rapidfuzz import fuzz + +from akd_ext.tools.pds.utils.pds_catalog_api_models import PDSDataset, load_from_jsonl + +logger = logging.getLogger(__name__) + +# Default catalog directory containing scraped JSONL files +DEFAULT_CATALOG_DIR = Path(__file__).parent.parent.parent / "sde-data-agents" / "src" / "pds_catalog_mcp" / "scraped_data" + +# Response limits +MAX_RESULTS_LIMIT = 50 +DEFAULT_RESULTS_LIMIT = 20 + +# Minimal mission abbreviations (only non-obvious ones) +# Many PDS3 datasets use abbreviated mission names in their IDs/titles +MISSION_ABBREVIATIONS: dict[str, list[str]] = { + "juno": ["jno"], + "cassini": ["co-"], + "cassini huygens": ["co-"], + "galileo": ["go-"], + "voyager": ["vg1", "vg2"], + "voyager 1": ["vg1"], + "voyager 2": ["vg2"], + "pioneer 10": ["p10"], + "pioneer 11": ["p11"], + "magellan": ["mgn"], + "phoenix": ["phx"], + "mars express": ["mex"], +} + +# Minimal instrument abbreviations (only non-obvious ones) +INSTRUMENT_ABBREVIATIONS: dict[str, list[str]] = { + "jade": ["jad"], + "jedi": ["jed"], + "magnetometer": ["mag", "fgm"], + "fluxgate magnetometer": ["fgm"], + "plasma wave": ["pws", "rpws", "wav"], + "plasma spectrometer": ["caps", "pls"], +} + +# Field profiles for response filtering +ESSENTIAL_FIELDS = {"id", "title", "node", "browse_url"} +SUMMARY_FIELDS = ESSENTIAL_FIELDS | {"missions", "targets", "instruments", "pds_version", "type"} +FULL_FIELDS = SUMMARY_FIELDS | { + "description", + "instrument_hosts", + "data_types", + "start_date", + "stop_date", + "keywords", + "processing_level", + "label_url", + "source_url", +} +FIELD_PROFILES: dict[str, set[str]] = { + "essential": ESSENTIAL_FIELDS, + "summary": SUMMARY_FIELDS, + "full": FULL_FIELDS, +} + + +class PDSCatalogClientError(Exception): + """Base exception for PDS Catalog client errors.""" + + pass + + +def _matches_term( + dataset: PDSDataset, + term: str, + metadata_list: list[str], + abbreviations: dict[str, list[str]], +) -> bool: + """Check if term matches in metadata, title, or ID. + + Order of precedence: + 1. Metadata list (most accurate) + 2. Title substring (works for human-readable PDS4 titles) + 3. ID substring (works for abbreviated PDS3 IDs) + 4. Abbreviation lookup (fallback for non-obvious mappings) + + Args: + dataset: The dataset to check + term: The search term (e.g., mission or instrument name) + metadata_list: The metadata field to check (e.g., dataset.missions or dataset.instruments) + abbreviations: Mapping of terms to their abbreviations + + Returns: + True if the term matches the dataset + """ + term_lower = term.lower() + + # 1. Check metadata list + if any(term_lower in m.lower() for m in metadata_list): + return True + + # 2. Check title + if term_lower in dataset.title.lower(): + return True + + # 3. Check ID + if term_lower in dataset.id.lower(): + return True + + # 4. Check abbreviations + for abbrev in abbreviations.get(term_lower, []): + if abbrev in dataset.id.lower() or abbrev in dataset.title.lower(): + return True + + return False + + +def filter_dataset(dataset: PDSDataset, fields: set[str]) -> dict[str, Any]: + """Filter dataset to specified fields.""" + result: dict[str, Any] = {} + + if "id" in fields: + result["id"] = dataset.id + if "title" in fields: + result["title"] = dataset.title + if "description" in fields and dataset.description: + result["description"] = dataset.description + if "node" in fields: + result["node"] = dataset.node.value + if "pds_version" in fields: + result["pds_version"] = dataset.pds_version.value + if "type" in fields: + result["type"] = dataset.type.value + if "missions" in fields and dataset.missions: + result["missions"] = dataset.missions + if "targets" in fields and dataset.targets: + result["targets"] = dataset.targets + if "instruments" in fields and dataset.instruments: + result["instruments"] = dataset.instruments + if "instrument_hosts" in fields and dataset.instrument_hosts: + result["instrument_hosts"] = dataset.instrument_hosts + if "data_types" in fields and dataset.data_types: + result["data_types"] = dataset.data_types + if "start_date" in fields and dataset.start_date: + result["start_date"] = str(dataset.start_date) + if "stop_date" in fields and dataset.stop_date: + result["stop_date"] = str(dataset.stop_date) + if "browse_url" in fields: + result["browse_url"] = dataset.browse_url + if "label_url" in fields and dataset.label_url: + result["label_url"] = dataset.label_url + if "source_url" in fields: + result["source_url"] = dataset.source_url + if "keywords" in fields and dataset.keywords: + result["keywords"] = dataset.keywords + if "processing_level" in fields and dataset.processing_level: + result["processing_level"] = dataset.processing_level + + return result + + +class CatalogIndex: + """In-memory index for the PDS catalog.""" + + def __init__(self, datasets: list[PDSDataset]): + """Initialize the catalog index. + + Args: + datasets: List of PDSDataset objects + """ + self.datasets = datasets + self._by_node: dict[str, list[PDSDataset]] = {} + self._by_mission: dict[str, list[PDSDataset]] = {} + self._by_target: dict[str, list[PDSDataset]] = {} + self._by_type: dict[str, list[PDSDataset]] = {} + + # Build indexes + for ds in datasets: + # By node + node_key = ds.node.value + if node_key not in self._by_node: + self._by_node[node_key] = [] + self._by_node[node_key].append(ds) + + # By mission + for mission in ds.missions: + mission_lower = mission.lower() + if mission_lower not in self._by_mission: + self._by_mission[mission_lower] = [] + self._by_mission[mission_lower].append(ds) + + # By target + for target in ds.targets: + target_lower = target.lower() + if target_lower not in self._by_target: + self._by_target[target_lower] = [] + self._by_target[target_lower].append(ds) + + # By type (volume, bundle, collection) + type_key = ds.type.value + if type_key not in self._by_type: + self._by_type[type_key] = [] + self._by_type[type_key].append(ds) + + def search( + self, + query: str | None = None, + node: str | None = None, + mission: str | None = None, + instrument: str | None = None, + target: str | None = None, + pds_version: str | None = None, + dataset_type: str | None = None, + start_date: date | None = None, + stop_date: date | None = None, + limit: int = DEFAULT_RESULTS_LIMIT, + offset: int = 0, + ) -> tuple[list[PDSDataset], int]: + """Search the catalog with filters. + + Args: + query: Text search query + node: Filter by PDS node + mission: Filter by mission name + instrument: Filter by instrument name + target: Filter by target body + pds_version: Filter by PDS version (PDS3 or PDS4) + dataset_type: Filter by type (volume, bundle, collection) + start_date: Filter datasets that have data on or after this date + stop_date: Filter datasets that have data on or before this date + limit: Maximum results to return + offset: Skip first N results + + Returns: + Tuple of (matching datasets, total count) + """ + # Start with all datasets or filtered subset + if node: + results = self._by_node.get(node.lower(), []) + elif target: + # Target can use direct index lookup since target metadata is reliable + results = self._by_target.get(target.lower(), []) + else: + # For mission filter or no filter, start with all datasets + # Mission filter needs full scan due to ID/title fallback matching + results = self.datasets + + # Apply mission filter with fallback to ID/title matching + if mission: + results = [d for d in results if _matches_term(d, mission, d.missions, MISSION_ABBREVIATIONS)] + + # Apply instrument filter with fallback to ID/title matching + if instrument: + results = [d for d in results if _matches_term(d, instrument, d.instruments, INSTRUMENT_ABBREVIATIONS)] + + # Apply node filter if combined with mission or target + if node and (mission or target): + results = [d for d in results if d.node.value == node.lower()] + + if target and not node: + target_lower = target.lower() + results = [d for d in results if any(target_lower in t.lower() for t in d.targets)] + + if pds_version: + results = [d for d in results if d.pds_version.value == pds_version.upper()] + + # Filter by dataset type + if dataset_type: + results = [d for d in results if d.type.value == dataset_type.lower()] + + # Temporal filtering - find datasets that overlap with the requested date range + if start_date: + # Include datasets that end on or after the requested start date + results = [d for d in results if d.stop_date is None or d.stop_date >= start_date] + if stop_date: + # Include datasets that start on or before the requested stop date + results = [d for d in results if d.start_date is None or d.start_date <= stop_date] + + # Apply text search with fuzzy matching + if query: + query_lower = query.lower() + scored_results = [] + # Use lower threshold for short queries (acronyms like "JADE", "JEDI") + threshold = 60 if len(query_lower) <= 5 else 70 + for d in results: + search_text = d.to_search_text() + # Use partial ratio for substring-like matching + # and token_set_ratio for word reordering tolerance + score = max( + fuzz.partial_ratio(query_lower, search_text), + fuzz.token_set_ratio(query_lower, search_text), + ) + + # Boost score for exact substring matches on short queries + # This helps "JADE" match datasets with "JAD" in the title + # (PDS datasets often use abbreviated forms like "JAD" for "JADE") + if len(query_lower) <= 5: + if query_lower in search_text: + # Exact substring match gets high score + score = max(score, 95) + elif len(query_lower) > 2 and query_lower[:-1] in search_text: + # "JADE" matches "JAD" (remove last char) + score = max(score, 90) + elif len(query_lower) > 3 and query_lower[:-2] in search_text: + # "JEDI" matches "JED" (remove last 2 chars) + score = max(score, 85) + + if score >= threshold: + scored_results.append((score, d)) + # Sort by score descending + scored_results.sort(key=lambda x: x[0], reverse=True) + results = [d for _, d in scored_results] + + total = len(results) + paginated = results[offset : offset + limit] + + return paginated, total + + def get_dataset_by_id(self, dataset_id: str) -> PDSDataset | None: + """Get a dataset by its ID. + + Args: + dataset_id: The dataset ID (LIDVID for PDS4, VOLUME_ID for PDS3) + + Returns: + The dataset if found, None otherwise + """ + for dataset in self.datasets: + if dataset.id == dataset_id: + return dataset + return None + + def get_stats(self) -> dict[str, Any]: + """Get catalog statistics.""" + stats = { + "total_datasets": len(self.datasets), + "by_node": {k: len(v) for k, v in sorted(self._by_node.items())}, + "by_pds_version": {}, + "by_type": {k: len(v) for k, v in sorted(self._by_type.items())}, + "missions_count": len(self._by_mission), + "targets_count": len(self._by_target), + } + + # Count by PDS version + for ds in self.datasets: + version = ds.pds_version.value + stats["by_pds_version"][version] = stats["by_pds_version"].get(version, 0) + 1 + + return stats + + def list_missions(self, node: str | None = None, limit: int = 50) -> list[dict[str, Any]]: + """List all missions with dataset counts. + + Args: + node: Filter by PDS node (optional) + limit: Maximum missions to return + + Returns: + List of missions with counts and nodes + """ + missions = [] + for mission, datasets in sorted(self._by_mission.items()): + mission_data = { + "name": datasets[0].missions[0] if datasets else mission, # Use proper casing + "count": len(datasets), + "nodes": list({d.node.value for d in datasets}), + } + + if node and node.lower() not in mission_data["nodes"]: + continue + + missions.append(mission_data) + + return missions[:limit] + + def list_targets(self, node: str | None = None, limit: int = 50) -> list[dict[str, Any]]: + """List all targets with dataset counts. + + Args: + node: Filter by PDS node (optional) + limit: Maximum targets to return + + Returns: + List of targets with counts and nodes + """ + targets = [] + for target, datasets in sorted(self._by_target.items()): + target_data = { + "name": datasets[0].targets[0] if datasets else target, # Use proper casing + "count": len(datasets), + "nodes": list({d.node.value for d in datasets}), + } + + if node and node.lower() not in target_data["nodes"]: + continue + + targets.append(target_data) + + return targets[:limit] + + +class PDSCatalogClient: + """Client for accessing the PDS Catalog. + + This client loads JSONL catalog files and provides search capabilities. + """ + + def __init__(self, catalog_dir: str | Path | None = None): + """Initialize the catalog client. + + Args: + catalog_dir: Directory containing catalog JSONL files. If None, uses default location + or PDS_CATALOG_DIR environment variable. + """ + if catalog_dir is None: + catalog_dir = Path(os.getenv("PDS_CATALOG_DIR", str(DEFAULT_CATALOG_DIR))) + else: + catalog_dir = Path(catalog_dir) + + self._catalog_dir = catalog_dir + self._index: CatalogIndex | None = None + + def _load_catalog(self) -> CatalogIndex: + """Load catalog from JSONL files.""" + all_datasets: list[PDSDataset] = [] + + if self._catalog_dir.is_dir(): + for jsonl_file in self._catalog_dir.glob("*_catalog.jsonl"): + # Skip test files + if "test" in jsonl_file.name: + continue + logger.info(f"Loading catalog from {jsonl_file}") + datasets = load_from_jsonl(jsonl_file) + all_datasets.extend(datasets) + elif self._catalog_dir.is_file(): + # Backwards compat: single file + logger.info(f"Loading catalog from {self._catalog_dir}") + all_datasets = load_from_jsonl(self._catalog_dir) + + if not all_datasets: + logger.warning(f"No catalog files found in: {self._catalog_dir}") + logger.warning("The catalog may be empty or the directory may not exist.") + + return CatalogIndex(all_datasets) + + @property + def index(self) -> CatalogIndex: + """Get the catalog index, loading it if necessary.""" + if self._index is None: + self._index = self._load_catalog() + return self._index + + async def search( + self, + query: str | None = None, + node: str | None = None, + mission: str | None = None, + instrument: str | None = None, + target: str | None = None, + pds_version: str | None = None, + dataset_type: str | None = None, + start_date: date | None = None, + stop_date: date | None = None, + limit: int = DEFAULT_RESULTS_LIMIT, + offset: int = 0, + ) -> tuple[list[PDSDataset], int]: + """Search the catalog. + + Args: + query: Text search query + node: Filter by PDS node + mission: Filter by mission name + instrument: Filter by instrument name + target: Filter by target body + pds_version: Filter by PDS version (PDS3 or PDS4) + dataset_type: Filter by type (volume, bundle, collection) + start_date: Filter datasets that have data on or after this date + stop_date: Filter datasets that have data on or before this date + limit: Maximum results to return + offset: Skip first N results + + Returns: + Tuple of (matching datasets, total count) + """ + return self.index.search( + query=query, + node=node, + mission=mission, + instrument=instrument, + target=target, + pds_version=pds_version, + dataset_type=dataset_type, + start_date=start_date, + stop_date=stop_date, + limit=limit, + offset=offset, + ) + + async def get_dataset(self, dataset_id: str) -> PDSDataset | None: + """Get a dataset by ID. + + Args: + dataset_id: The dataset ID + + Returns: + The dataset if found, None otherwise + """ + return self.index.get_dataset_by_id(dataset_id) + + async def list_missions(self, node: str | None = None, limit: int = 50) -> list[dict[str, Any]]: + """List all missions. + + Args: + node: Filter by PDS node (optional) + limit: Maximum missions to return + + Returns: + List of missions with counts + """ + return self.index.list_missions(node=node, limit=limit) + + async def list_targets(self, node: str | None = None, limit: int = 50) -> list[dict[str, Any]]: + """List all targets. + + Args: + node: Filter by PDS node (optional) + limit: Maximum targets to return + + Returns: + List of targets with counts + """ + return self.index.list_targets(node=node, limit=limit) + + async def get_stats(self) -> dict[str, Any]: + """Get catalog statistics. + + Returns: + Statistics about the catalog + """ + return self.index.get_stats() diff --git a/akd_ext/tools/pds/utils/sbn_api_models.py b/akd_ext/tools/pds/utils/sbn_api_models.py new file mode 100644 index 0000000..23b4893 --- /dev/null +++ b/akd_ext/tools/pds/utils/sbn_api_models.py @@ -0,0 +1,300 @@ +"""Pydantic models for SBN CATCH API responses. + +The CATCH (Comet Asteroid Telescopic Catalog Hunter) API provides access to +observations of comets and asteroids from various astronomical surveys. + +Base URL: https://catch-api.astro.umd.edu/ +""" + +from typing import Any + +from pydantic import BaseModel, Field + + +def _parse_float(value: Any) -> float | None: + """Parse a value to float, returning None if not possible.""" + if value is None: + return None + try: + return float(value) + except (ValueError, TypeError): + return None + + +def _parse_int(value: Any) -> int | None: + """Parse a value to int, returning None if not possible.""" + if value is None: + return None + try: + return int(value) + except (ValueError, TypeError): + return None + + +class CatchSource(BaseModel): + """CATCH data source information.""" + + source: str + source_name: str | None = None + count: int = 0 + start_date: str | None = None + stop_date: str | None = None + nights: int | None = None + updated: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "CatchSource": + """Create CatchSource from raw API response data.""" + return cls( + source=data.get("source", ""), + source_name=data.get("source_name"), + count=_parse_int(data.get("count")) or 0, + start_date=data.get("start_date"), + stop_date=data.get("stop_date"), + nights=_parse_int(data.get("nights")), + updated=data.get("updated"), + ) + + +class CatchSourcesResponse(BaseModel): + """CATCH sources list response.""" + + status: str = "success" + sources: list[CatchSource] = Field(default_factory=list) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: list[dict[str, Any]] | dict[str, Any]) -> "CatchSourcesResponse": + """Create from raw API response.""" + if isinstance(data, dict) and "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + if isinstance(data, list): + sources = [CatchSource.from_raw_data(s) for s in data] + return cls( + status="success", + sources=sources, + ) + + return cls(status="error", error="Unexpected response format") + + +class CatchObservation(BaseModel): + """CATCH observation/detection from a survey.""" + + product_id: str + source: str + mjd_start: float | None = None + mjd_stop: float | None = None + filter: str | None = None + exposure: float | None = None + seeing: float | None = None + airmass: float | None = None + maglimit: float | None = None + archive_url: str | None = None + cutout_url: str | None = None + preview_url: str | None = None + + # Ephemeris fields (for moving targets) + ra: float | None = None + dec: float | None = None + dra: float | None = None + ddec: float | None = None + rh: float | None = None + delta: float | None = None + phase: float | None = None + vmag: float | None = None + unc_a: float | None = None + unc_b: float | None = None + unc_theta: float | None = None + date: str | None = None + + # Field of view (can be string or list depending on source) + fov: str | list[list[float]] | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "CatchObservation": + """Create CatchObservation from raw API response data.""" + return cls( + product_id=data.get("product_id", ""), + source=data.get("source", ""), + mjd_start=_parse_float(data.get("mjd_start")), + mjd_stop=_parse_float(data.get("mjd_stop")), + filter=data.get("filter"), + exposure=_parse_float(data.get("exposure")), + seeing=_parse_float(data.get("seeing")), + airmass=_parse_float(data.get("airmass")), + maglimit=_parse_float(data.get("maglimit")), + archive_url=data.get("archive_url"), + cutout_url=data.get("cutout_url"), + preview_url=data.get("preview_url"), + ra=_parse_float(data.get("ra")), + dec=_parse_float(data.get("dec")), + dra=_parse_float(data.get("dra")), + ddec=_parse_float(data.get("ddec")), + rh=_parse_float(data.get("rh")), + delta=_parse_float(data.get("delta")), + phase=_parse_float(data.get("phase")), + vmag=_parse_float(data.get("vmag")), + unc_a=_parse_float(data.get("unc_a")), + unc_b=_parse_float(data.get("unc_b")), + unc_theta=_parse_float(data.get("unc_theta")), + date=data.get("date"), + fov=data.get("fov"), + ) + + +class CatchSourceStatus(BaseModel): + """Status of a data source in a job.""" + + source: str + status: str + count: int | None = None + elapsed: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "CatchSourceStatus": + """Create from raw API response data.""" + return cls( + source=data.get("source", ""), + status=data.get("status", "unknown"), + count=_parse_int(data.get("count")), + elapsed=data.get("elapsed"), + ) + + +class CatchJobResponse(BaseModel): + """CATCH job submission response.""" + + status: str = "success" + job_id: str | None = None + queued: bool = False + results_url: str | None = None + message_stream: str | None = None + query: dict[str, Any] = Field(default_factory=dict) + version: str | None = None + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "CatchJobResponse": + """Create from raw API response.""" + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + return cls( + status="success", + job_id=data.get("job_id"), + queued=data.get("queued", False), + results_url=data.get("results"), + message_stream=data.get("message_stream"), + query=data.get("query", {}), + version=data.get("version"), + ) + + +class CatchResultsResponse(BaseModel): + """CATCH job results response.""" + + status: str = "success" + job_id: str = "" + count: int = 0 + observations: list[CatchObservation] = Field(default_factory=list) + source_status: list[CatchSourceStatus] = Field(default_factory=list) + parameters: dict[str, Any] = Field(default_factory=dict) + version: str | None = None + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "CatchResultsResponse": + """Create from raw API response.""" + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + # Parse observations from data array + observations_data = data.get("data", []) + observations = [CatchObservation.from_raw_data(obs) for obs in observations_data] + + # Parse source status + status_data = data.get("status", []) + source_status = [CatchSourceStatus.from_raw_data(s) for s in status_data] + + return cls( + status="success", + job_id=data.get("job_id", ""), + count=_parse_int(data.get("count")) or len(observations), + observations=observations, + source_status=source_status, + parameters=data.get("parameters", {}), + version=data.get("version"), + ) + + +class CatchStatusResponse(BaseModel): + """CATCH job status response.""" + + status: str = "success" + job_id: str = "" + source_status: list[CatchSourceStatus] = Field(default_factory=list) + parameters: dict[str, Any] = Field(default_factory=dict) + version: str | None = None + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "CatchStatusResponse": + """Create from raw API response.""" + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + # Parse source status + status_data = data.get("status", []) + source_status = [CatchSourceStatus.from_raw_data(s) for s in status_data] + + return cls( + status="success", + job_id=data.get("job_id", ""), + source_status=source_status, + parameters=data.get("parameters", {}), + version=data.get("version"), + ) + + +class CatchFixedResponse(BaseModel): + """CATCH fixed coordinate search response.""" + + status: str = "success" + count: int = 0 + observations: list[CatchObservation] = Field(default_factory=list) + parameters: dict[str, Any] = Field(default_factory=dict) + error: str | None = None + + @classmethod + def from_raw_data(cls, data: dict[str, Any]) -> "CatchFixedResponse": + """Create from raw API response.""" + if "error" in data: + return cls( + status="error", + error=str(data.get("error")), + ) + + # Parse observations from data array + observations_data = data.get("data", []) + observations = [CatchObservation.from_raw_data(obs) for obs in observations_data] + + return cls( + status="success", + count=_parse_int(data.get("count")) or len(observations), + observations=observations, + parameters=data.get("parameters", {}), + ) diff --git a/akd_ext/tools/pds/utils/sbn_client.py b/akd_ext/tools/pds/utils/sbn_client.py new file mode 100644 index 0000000..f0b2cd5 --- /dev/null +++ b/akd_ext/tools/pds/utils/sbn_client.py @@ -0,0 +1,393 @@ +"""SBN CATCH API client wrapper with httpx. + +The CATCH (Comet Asteroid Telescopic Catalog Hunter) API provides access to +observations of comets and asteroids from various astronomical surveys. + +Base URL: https://catch-api.astro.umd.edu/ +""" + +import asyncio +import logging +from types import TracebackType +from typing import Any + +import httpx + +from .sbn_api_models import ( + CatchFixedResponse, + CatchJobResponse, + CatchResultsResponse, + CatchSourcesResponse, + CatchStatusResponse, +) + +logger = logging.getLogger(__name__) + + +class SBNCatchClientError(Exception): + """Base exception for SBN CATCH client errors.""" + + pass + + +class SBNCatchRateLimitError(SBNCatchClientError): + """Rate limit error for CATCH API.""" + + def __init__(self, retry_after: int | None = None): + self.retry_after = retry_after + super().__init__(f"Rate limit exceeded. Retry after {retry_after} seconds.") + + +class SBNCatchJobError(SBNCatchClientError): + """Job-related error for CATCH API.""" + + def __init__(self, job_id: str, message: str): + self.job_id = job_id + super().__init__(f"Job {job_id}: {message}") + + +class SBNCatchClient: + """Async HTTP client for SBN CATCH API.""" + + BASE_URL = "https://catch-api.astro.umd.edu/" + DEFAULT_TIMEOUT = 60.0 + + def __init__( + self, + base_url: str | None = None, + timeout: float = DEFAULT_TIMEOUT, + max_retries: int = 3, + retry_delay: float = 1.0, + ): + """Initialize CATCH client. + + Args: + base_url: CATCH API base URL (default: https://catch-api.astro.umd.edu/) + timeout: Request timeout in seconds + max_retries: Maximum number of retry attempts + retry_delay: Base delay between retries in seconds + """ + self.base_url = base_url or self.BASE_URL + self.timeout = timeout + self.max_retries = max_retries + self.retry_delay = retry_delay + self._client: httpx.AsyncClient | None = None + + async def __aenter__(self) -> "SBNCatchClient": + """Async context manager entry.""" + self._client = httpx.AsyncClient( + base_url=self.base_url, + timeout=self.timeout, + headers=self._get_headers(), + ) + return self + + async def __aexit__( + self, + _exc_type: type[BaseException] | None, + _exc_val: BaseException | None, + _exc_tb: TracebackType | None, + ) -> None: + """Async context manager exit.""" + if self._client: + await self._client.aclose() + self._client = None + + def _get_headers(self) -> dict[str, str]: + """Get HTTP headers for requests.""" + return { + "Accept": "application/json", + "User-Agent": "SBN-AKD-EXT/0.1.0", + } + + async def _request( + self, + method: str, + endpoint: str, + params: dict[str, Any] | None = None, + ) -> httpx.Response: + """Make HTTP request with retry logic.""" + if not self._client: + raise RuntimeError("Client not initialized. Use async context manager.") + + for attempt in range(self.max_retries + 1): + try: + response = await self._client.request(method, endpoint, params=params) + + if response.status_code == 429: + try: + retry_after = int(response.headers.get("retry-after", self.retry_delay)) + except (ValueError, TypeError): + retry_after = int(self.retry_delay) + if attempt < self.max_retries: + logger.warning(f"Rate limited. Retrying in {retry_after} seconds...") + await asyncio.sleep(retry_after) + continue + else: + raise SBNCatchRateLimitError(retry_after) + + response.raise_for_status() + return response + + except httpx.HTTPError as e: + if attempt < self.max_retries: + wait_time = self.retry_delay * (2**attempt) + logger.warning(f"Request failed (attempt {attempt + 1}). Retrying in {wait_time}s...") + await asyncio.sleep(wait_time) + else: + raise SBNCatchClientError(f"Request failed after {self.max_retries} retries: {e}") + + raise SBNCatchClientError("Maximum retries exceeded") + + async def list_sources(self) -> CatchSourcesResponse: + """List available data sources. + + Returns: + CatchSourcesResponse with available survey sources + """ + response = await self._request("GET", "status/sources") + + try: + data = response.json() + return CatchSourcesResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse CATCH sources response: {e}") + raise SBNCatchClientError(f"Invalid response format: {e}") + + async def search_moving_target( + self, + target: str, + sources: list[str] | None = None, + start_date: str | None = None, + stop_date: str | None = None, + uncertainty_ellipse: bool = False, + padding: float = 0.0, + cached: bool = True, + ) -> CatchJobResponse: + """Search for observations of a moving target (comet/asteroid). + + Args: + target: JPL Horizons-resolvable designation (e.g., "65803", "1P/Halley", "2019 DQ123") + sources: List of data sources to search (None = all sources) + start_date: Start date filter (format: "YYYY-MM-DD HH:MM") + stop_date: Stop date filter (format: "YYYY-MM-DD HH:MM") + uncertainty_ellipse: Include ephemeris uncertainty in search + padding: Search margin in arcminutes (0-120) + cached: Use cached results if available + + Returns: + CatchJobResponse with job_id and status + """ + params: dict[str, Any] = { + "target": target, + "cached": str(cached).lower(), + } + + if sources: + params["sources"] = sources + if start_date: + params["start_date"] = start_date + if stop_date: + params["stop_date"] = stop_date + if uncertainty_ellipse: + params["uncertainty_ellipse"] = "true" + if padding > 0: + params["padding"] = str(padding) + + response = await self._request("GET", "catch", params=params) + + try: + data = response.json() + return CatchJobResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse CATCH job response: {e}") + raise SBNCatchClientError(f"Invalid response format: {e}") + + async def get_caught_results(self, job_id: str) -> CatchResultsResponse: + """Get results for a completed job. + + Args: + job_id: Job ID from search_moving_target + + Returns: + CatchResultsResponse with observations + """ + response = await self._request("GET", f"caught/{job_id}") + + try: + data = response.json() + return CatchResultsResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse CATCH results response: {e}") + raise SBNCatchClientError(f"Invalid response format: {e}") + + async def get_job_status(self, job_id: str) -> CatchStatusResponse: + """Check status of a job. + + Args: + job_id: Job ID to check + + Returns: + CatchStatusResponse with job status + """ + response = await self._request("GET", f"status/{job_id}") + + try: + data = response.json() + return CatchStatusResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse CATCH status response: {e}") + raise SBNCatchClientError(f"Invalid response format: {e}") + + async def wait_for_job( + self, + job_id: str, + timeout: float = 120.0, + poll_interval: float = 2.0, + ) -> CatchResultsResponse: + """Wait for a job to complete and return results. + + Args: + job_id: Job ID to wait for + timeout: Maximum time to wait in seconds + poll_interval: Time between status checks in seconds + + Returns: + CatchResultsResponse with observations + + Raises: + SBNCatchJobError: If job fails or times out + """ + start_time = asyncio.get_event_loop().time() + + while True: + elapsed = asyncio.get_event_loop().time() - start_time + if elapsed > timeout: + raise SBNCatchJobError(job_id, f"Job timed out after {timeout} seconds") + + status = await self.get_job_status(job_id) + + if status.error: + raise SBNCatchJobError(job_id, status.error) + + # Check if all sources are complete + all_complete = True + has_error = False + for source_status in status.source_status: + if source_status.status in ("queued", "running"): + all_complete = False + elif source_status.status == "error": + has_error = True + + if all_complete: + if has_error: + logger.warning(f"Job {job_id} completed with some source errors") + return await self.get_caught_results(job_id) + + await asyncio.sleep(poll_interval) + + async def search_fixed_target( + self, + ra: str, + dec: str, + sources: list[str] | None = None, + radius: float = 10.0, + start_date: str | None = None, + stop_date: str | None = None, + intersection_type: str | None = None, + ) -> CatchFixedResponse: + """Search for observations at fixed sky coordinates. + + Args: + ra: Right ascension (sexagesimal HH:MM:SS or decimal degrees) + dec: Declination (sexagesimal ±DD:MM:SS or decimal degrees) + sources: List of data sources to search (None = all sources) + radius: Search radius in arcminutes (0-120) + start_date: Start date filter (format: "YYYY-MM-DD HH:MM") + stop_date: Stop date filter (format: "YYYY-MM-DD HH:MM") + intersection_type: How search area intersects images + (ImageIntersectsArea, ImageContainsArea, AreaContainsImage) + + Returns: + CatchFixedResponse with observations + """ + params: dict[str, Any] = { + "ra": ra, + "dec": dec, + "radius": str(radius), + } + + if sources: + params["sources"] = sources + if start_date: + params["start_date"] = start_date + if stop_date: + params["stop_date"] = stop_date + if intersection_type: + params["intersection_type"] = intersection_type + + response = await self._request("GET", "fixed", params=params) + + try: + data = response.json() + return CatchFixedResponse.from_raw_data(data) + except Exception as e: + logger.error(f"Failed to parse CATCH fixed response: {e}") + raise SBNCatchClientError(f"Invalid response format: {e}") + + async def search_and_wait( + self, + target: str, + sources: list[str] | None = None, + start_date: str | None = None, + stop_date: str | None = None, + uncertainty_ellipse: bool = False, + padding: float = 0.0, + cached: bool = True, + timeout: float = 120.0, + poll_interval: float = 2.0, + ) -> CatchResultsResponse: + """Search for a moving target and wait for results. + + Convenience method that combines search_moving_target and wait_for_job. + + Args: + target: JPL Horizons-resolvable designation + sources: List of data sources to search + start_date: Start date filter + stop_date: Stop date filter + uncertainty_ellipse: Include ephemeris uncertainty + padding: Search margin in arcminutes + cached: Use cached results if available + timeout: Maximum time to wait in seconds + poll_interval: Time between status checks in seconds + + Returns: + CatchResultsResponse with observations + """ + job = await self.search_moving_target( + target=target, + sources=sources, + start_date=start_date, + stop_date=stop_date, + uncertainty_ellipse=uncertainty_ellipse, + padding=padding, + cached=cached, + ) + + if job.error: + raise SBNCatchClientError(job.error) + + if not job.job_id: + raise SBNCatchClientError("No job ID returned from search") + + # If not queued, results are already available + if not job.queued: + return await self.get_caught_results(job.job_id) + + # Wait for job to complete + return await self.wait_for_job( + job_id=job.job_id, + timeout=timeout, + poll_interval=poll_interval, + ) From 552995cccce208e31e199266851556c99b513b83 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Tue, 10 Feb 2026 12:18:57 -0600 Subject: [PATCH 02/16] Add scraped data to fix empty output --- .../scraped_data/atm_catalog.jsonl | 2741 +++++++++++++++++ .../scraped_data/geo_catalog.jsonl | 725 +++++ .../scraped_data/img_catalog.jsonl | 138 + .../scraped_data/naif_catalog.jsonl | 85 + .../scraped_data/ppi_catalog.jsonl | 1421 +++++++++ .../scraped_data/rms_catalog.jsonl | 53 + .../scraped_data/sbn_catalog.jsonl | 1542 ++++++++++ akd_ext/tools/pds/utils/pds_catalog_client.py | 2 +- 8 files changed, 6706 insertions(+), 1 deletion(-) create mode 100644 akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl create mode 100644 akd_ext/tools/pds/pds_catalog/scraped_data/geo_catalog.jsonl create mode 100644 akd_ext/tools/pds/pds_catalog/scraped_data/img_catalog.jsonl create mode 100644 akd_ext/tools/pds/pds_catalog/scraped_data/naif_catalog.jsonl create mode 100644 akd_ext/tools/pds/pds_catalog/scraped_data/ppi_catalog.jsonl create mode 100644 akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl create mode 100644 akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl new file mode 100644 index 0000000..e3071ff --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl @@ -0,0 +1,2741 @@ +{"id":"atm:messmas_1001_messenger_mascs_uncalibrated_data_archive:ee85b049","title":"ATM Volume messmas_1001 (MESSENGER Mascs Uncalibrated Data Archive)","description":"This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2014-260 (17 Sep). 1.MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0 This data set consists of the MESSENGER MASCS UVVS uncalibrated observations, also known as EDRs. 2.MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0 This data set consists of the MESSENGER MASCS VIRS uncalibrated observations, also known as EDRs.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:messmas_2001_messenger_mascs_calibrated_and_derived_data_archive:a7131f3b","title":"ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)","description":"This volume contains calibrated MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2014-260 (17 Sep). 1. MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0 The MESSENGER MASCS UVVS calibrated observations consist of science and instrument data collected by the UVVS detector during cruise, flyby operations of Earth/Moon, Venus, and Mercury, and orbit operations of Mercury. 2. MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0 The MESSENGER MASCS VIRS calibrated observations consist of science and instrument data collected by the VIRS detector during cruise, flyby operations of Earth/Moon, Venus, and Mercury, and orbit operations of Mercury. 3. MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0 The MESSENGER MASCS UVVS derived data records consist of science and instrument data collected by the UVVS detector during orbital operations of Mercury. 4. MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0 The MESSENGER MASCS VIRS derived observations consist of science and instrument data collected by the VIRS detector during flyby and orbital operations of Mercury. 5. MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0 The MESSENGER MASCS VIRS derived analysis product dataset consists of a 500 meter per pixel mosaic map of 1 wavelength (750 nm) of VIRS spectral data for footprints covering the planet Mercury.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:messmas_2101_messenger_mascs_calibrated_and_derived_data_archive:08655949","title":"ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)","description":"This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr). 1. MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0 The MESSENGER MASCS UVVS calibrated observations consist of science and instrument data collected by the UVVS detector during cruise, flyby operations of Earth/Moon, Venus, and Mercury, and orbit operations of Mercury. 2. MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0 The MESSENGER MASCS UVVS derived data records consist of science and instrument data collected by the UVVS detector during orbital operations of Mercury. 3. MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0 The MESSENGER MASCS UVVS+VIRS combined derived data records consist of science and instrument data collected by the UVVS and VIRS detectors during orbital operations of Mercury. 4. MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0 The MESSENGER MASCS VIRS calibrated observations consist of science and instrument data collected by the VIRS detector during cruise, flyby operations of Earth/Moon, Venus, and Mercury, and orbit operations of Mercury. 5. MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0 The MESSENGER MASCS VIRS derived analysis product dataset consists of a 500 meter per pixel mosaic map of 1 wavelength (750 nm) of VIRS spectral data for footprints covering the planet Mercury.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:go_0002_galileo_solid_state_imaging_redr_data:d41d8cd9","title":"ATM Volume go_0002 (galileo:solid state imaging redr data)","description":"this volume contains images from the galileo orbiter spacecraft. it also contains documentation, software and index directories to support access to the image files on this disk.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_0002 (galileo:solid state imaging redr data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:go_1001_galileo_near_infrared_mapping_spectrometer_nims_edr_data:d41d8cd9","title":"ATM Volume go_1001 (galileo:near-infrared mapping spectrometer (nims) edr data)","description":"this volume contains a first set of the galileo near-infrared mapping spectrometer (nims) experiment data records (edrs). this collection consists of edrs acquired by the nims instrument starting at galileo launch through the first earth encounter. included are data for the earth, the earth's moon and venus. additional test, star and calibration edr data are also included.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1001 (galileo:near-infrared mapping spectrometer (nims) edr data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:go_1101_galileo_nims_cube_data_venus:d41d8cd9","title":"ATM Volume go_1101 (galileo nims cube data: venus)","description":"this volume is the first containing galileo near infrared mapping spectrometer (nims) spectral image cubes, also known as nims mosaics. it is derived from data acquired by the nims instrument during galileo's venus encounter.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1101 (galileo nims cube data: venus)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:messmas_2001_messenger_mascs_calibrated_data_archive:a7131f3b","title":"ATM Volume messmas_2001 (messenger mascs calibrated data archive)","description":"this volume contains calibrated messenger mascs data collected by the uvvs and virs detectors at earth, venus and mercury over the interval 2004-240 (27-aug) to 2011-138 (18 may). 1.mess-e/v/h-mascs-3-uvvs-cdr-caldata-v1.0 this data set consists of the messenger mascs uvvs calibrated observations, also known as cdrs. 2.mess-e/v/h-mascs-3-virs-cdr-caldata-v1.0 this data set consists of the messenger mascs virs calibrated observations, also known as cdrs.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2201_mg_2202_mg_2203_mg_2204_mg_2205_mg_2206_mg_2207_mg_2208_mg_2209_mg_2210_mg_2211_mg_2212_mg_2213_mg_2214_magellan_radio_occultation_raw_data_records:4b1ee5bf","title":"ATM Volume mg_2201 , mg_2202 , mg_2203 , mg_2204 , mg_2205 , mg_2206 , mg_2207 , mg_2208 , mg_2209 , mg_2210 , mg_2211 , mg_2212 , mg_2213 , mg_2214 (Magellan Radio Occultation Raw Data Records)","description":"These volumes contain raw data, partially processed data, and ancillary files from Magellan radio occultation experiments: 1.MGN-V-RSS-1-ROCC-V2.0 This data set is a time-ordered collection of raw and partially processed data from radio occultation experiments conducted using the Magellan spacecraft while it orbited Venus","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2401_magellan_venus_radio_occultation_atmospheric_profiles:68e5eb45","title":"ATM Volume mg_2401 (Magellan Venus Radio Occultation Atmospheric Profiles)","description":"This volume contains archival data produced from dual-frequency ingress radio occultation experiments using the Magellan orbiter on three consecutive orbits (#3212 - #3214) on October 5 and 6, 1991. The data sets include vertical profiles of refractivity, temperature, pressure and density in the neutral Venus atmosphere, and vertical profiles of 13-cm and 3.6-cm absorptivity and abundance of sulfuric acid vapor (H2SO4). The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM: 1.MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0 This data set includes vertical profiles of 13-cm and 3.6-cm absorptivity and abundance of sulfuric acid vapor (H2SO4). 2.MGN-V-RSS-5-OCC-PROF-RTPD-V1.0 This data set includes vertical profiles of refractivity, temperature, pressure and density in the neutral Venus atmosphere.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:pv01_1001_pv01_1002_pioneer_venus_orbiter_ouvs_inbound_monochrome_images:b49baee9","title":"ATM Volume pv01_1001 , pv01_1002 (Pioneer Venus Orbiter OUVS Inbound Monochrome Images)","description":"These volumes contain Inbound Monochrome Images (IMIDR) produced from the Orbiter Ultraviolet Spectrometer (OUVS) instrument on the Pioneer Venus spacecraft. Data contained here were obtained between 1978 and 1992. The volume also contains documentation in the form of ancillary files, to support access of the data on these volumes. 1.PVO-V-OUVS-5-IMIDR-V1.0 This data set provides a mission-long set of images at several far-UV and near-UV wavelengths associated with day and night airglow emissions and with reflected sunlight. All Venus phases are sampled, as are all levels of solar activity during 1978-1992.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:pv03_0001_pioneer_venus_orbiter_neutral_mass_spectrometer:d41d8cd9","title":"ATM Volume pv03_0001 (Pioneer Venus Orbiter Neutral Mass Spectrometer)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=pv03_0001 (Pioneer Venus Orbiter Neutral Mass Spectrometer)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir1_0001_venus_climate_orbiter_ir1_data:4eecabb7","title":"ATM Volume vcoir1_0001 (VENUS CLIMATE ORBITER IR1 DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR1-2-EDR-V1.0 Venus Climate Orbiter IR1 raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir1_1001_venus_climate_orbiter_ir1_data:d8683109","title":"ATM Volume vcoir1_1001 (VENUS CLIMATE ORBITER IR1 DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR1-3-CDR-V1.0 Venus Climate Orbiter IR1 calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir1_2001_venus_climate_orbiter_ir1_data:f46e4306","title":"ATM Volume vcoir1_2001 (VENUS CLIMATE ORBITER IR1 DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR1-3-SEDR-V1.0 Venus Climate Orbiter IR1 geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir2_0001_venus_climate_orbiter_ir2_data:b4401440","title":"ATM Volume vcoir2_0001 (VENUS CLIMATE ORBITER IR2 DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR2-2-EDR-V1.0 Venus Climate Orbiter IR2 raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir2_1001_venus_climate_orbiter_ir2_data:7235613f","title":"ATM Volume vcoir2_1001 (VENUS CLIMATE ORBITER IR2 DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR2-3-CDR-V1.0 Venus Climate Orbiter IR2 calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir2_2001_venus_climate_orbiter_ir2_data:7e83ed4b","title":"ATM Volume vcoir2_2001 (VENUS CLIMATE ORBITER IR2 DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR2-3-SEDR-V1.0 Venus Climate Orbiter IR2 geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0001_venus_climate_orbiter_lir_data:2c84a890","title":"ATM Volume vcolir_0001 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03. 1. VCO-V-LIR-2-EDR-V1.0 Venus Climate Orbiter LIR raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0002_venus_climate_orbiter_lir_data:1a6af38b","title":"ATM Volume vcolir_0002 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07. 1. VCO-V-LIR-2-EDR-V1.0 Venus Climate Orbiter LIR raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0003_venus_climate_orbiter_lir_data:cb71b1d2","title":"ATM Volume vcolir_0003 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04. 1. VCO-V-LIR-2-EDR-V1.0 Venus Climate Orbiter LIR raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0004_venus_climate_orbiter_lir_data:e399c0b0","title":"ATM Volume vcolir_0004 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08. 1. VCO-V-LIR-2-EDR-V1.0 Venus Climate Orbiter LIR raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0005_venus_climate_orbiter_lir_data:418903f3","title":"ATM Volume vcolir_0005 (VENUS CLIMATE ORBITER LIR DATA)","description":"1. VCO-V-LIR-2-EDR-V1.0 This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0006_venus_climate_orbiter_lir_data:740ffb53","title":"ATM Volume vcolir_0006 (VENUS CLIMATE ORBITER LIR DATA)","description":"1. VCO-V-LIR-2-EDR-V1.0 This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vco_v_lir_2_edr_v1_0_this_volume_contains_venus_climate_orbiter_vco_also_known_as_planet_c_and_akatsuki_data_collected_by_the_lir_instrument_over_the_interval_2021_06_07_to_2021_12_02:d41d8cd9","title":"ATM Volume VCO-V-LIR-2-EDR-V1.0 This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=VCO-V-LIR-2-EDR-V1.0 This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1001_venus_climate_orbiter_lir_data:23e6b014","title":"ATM Volume vcolir_1001 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1002_venus_climate_orbiter_lir_data:e04bdd03","title":"ATM Volume vcolir_1002 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1003_venus_climate_orbiter_lir_data:3e611371","title":"ATM Volume vcolir_1003 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1004_venus_climate_orbiter_lir_data:44ed4461","title":"ATM Volume vcolir_1004 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1005_venus_climate_orbiter_lir_data:440b0cd9","title":"ATM Volume vcolir_1005 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1006_venus_climate_orbiter_lir_data:2c873272","title":"ATM Volume vcolir_1006 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1007_venus_climate_orbiter_lir_data:77c35266","title":"ATM Volume vcolir_1007 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2001_venus_climate_orbiter_lir_data:b5bf0369","title":"ATM Volume vcolir_2001 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2002_venus_climate_orbiter_lir_data:36adc0cb","title":"ATM Volume vcolir_2002 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2003_venus_climate_orbiter_lir_data:6ff500e4","title":"ATM Volume vcolir_2003 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2004_venus_climate_orbiter_lir_data:efb0b2b4","title":"ATM Volume vcolir_2004 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2005_venus_climate_orbiter_lir_data:4565cf21","title":"ATM Volume vcolir_2005 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2006_venus_climate_orbiter_lir_data:0badc6a6","title":"ATM Volume vcolir_2006 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2007_venus_climate_orbiter_lir_data:1063ae1c","title":"ATM Volume vcolir_2007 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_1001_venus_climate_orbiter_rs_data:4a179434","title":"ATM Volume vcors_1001 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11. 1. VCO-V-RS-3-OCC-V1.0 Venus Climate Orbiter Doppler and signal intensity time series obtained by Radio Science experiment","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_1002_venus_climate_orbiter_rs_data:a094f6b5","title":"ATM Volume vcors_1002 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26. 1. VCO-V-RS-3-OCC-V1.0 Venus Climate Orbiter Doppler and signal intensity time series obtained by Radio Science experiment","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_1003_venus_climate_orbiter_rs_data:f15e3c6f","title":"ATM Volume vcors_1003 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2019-02-09 to 2020-08-24. 1. VCO-V-RS-3-OCC-V1.0 Venus Climate Orbiter Doppler and signal intensity time series obtained by Radio Science experiment","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_1004_venus_climate_orbiter_rs_data:fdbbcc3f","title":"ATM Volume vcors_1004 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13. 1. VCO-V-RS-3-OCC-V1.0 Venus Climate Orbiter Doppler and signal intensity time series obtained by Radio Science experiment","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_2001_venus_climate_orbiter_rs_data:0ff5cef6","title":"ATM Volume vcors_2001 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11. 1. VCO-V-RS-5-OCC-V1.0 Venus Climate Orbiter bending angle and temperature/pressure profiles obtained by Radio Science experiments","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_2002_venus_climate_orbiter_rs_data:d78cb565","title":"ATM Volume vcors_2002 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26. 1. VCO-V-RS-5-OCC-V1.0 Venus Climate Orbiter bending angle and temperature/pressure profiles obtained by Radio Science experiments","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_2003_venus_climate_orbiter_rs_data:1b653add","title":"ATM Volume vcors_2003 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2020-02-09 to 2020-08-24. 1. VCO-V-RS-5-OCC-V1.0 Venus Climate Orbiter bending angle and temperature/pressure profiles obtained by Radio Science experiments","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_2004_venus_climate_orbiter_rs_data:1e2d5cdf","title":"ATM Volume vcors_2004 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13. 1. VCO-V-RS-5-OCC-V1.0 Venus Climate Orbiter bending angle and temperature/pressure profiles obtained by Radio Science experiments","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0001_venus_climate_orbiter_uvi_data:caeec82f","title":"ATM Volume vcouvi_0001 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0002_venus_climate_orbiter_uvi_data:58eb9af3","title":"ATM Volume vcouvi_0002 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0003_venus_climate_orbiter_uvi_data:44a7719e","title":"ATM Volume vcouvi_0003 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0004_venus_climate_orbiter_uvi_data:e7e3c1eb","title":"ATM Volume vcouvi_0004 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0005_venus_climate_orbiter_uvi_data:e30eeb99","title":"ATM Volume vcouvi_0005 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0006_venus_climate_orbiter_uvi_data:330cb00c","title":"ATM Volume vcouvi_0006 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0007_venus_climate_orbiter_uvi_data:9d4f1376","title":"ATM Volume vcouvi_0007 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1001_venus_climate_orbiter_uvi_data:2d8ec82f","title":"ATM Volume vcouvi_1001 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1002_venus_climate_orbiter_uvi_data:adadfa32","title":"ATM Volume vcouvi_1002 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1003_venus_climate_orbiter_uvi_data:b22ed255","title":"ATM Volume vcouvi_1003 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1004_venus_climate_orbiter_uvi_data:775001af","title":"ATM Volume vcouvi_1004 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1005_venus_climate_orbiter_uvi_data:844b1494","title":"ATM Volume vcouvi_1005 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1006_venus_climate_orbiter_uvi_data:f0abd8d1","title":"ATM Volume vcouvi_1006 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1007_venus_climate_orbiter_uvi_data:1aa6fc20","title":"ATM Volume vcouvi_1007 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2001_venus_climate_orbiter_uvi_data:fc3874a8","title":"ATM Volume vcouvi_2001 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2002_venus_climate_orbiter_uvi_data:083f6f2f","title":"ATM Volume vcouvi_2002 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2003_venus_climate_orbiter_uvi_data:5e1d2c75","title":"ATM Volume vcouvi_2003 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2004_venus_climate_orbiter_uvi_data:044150bb","title":"ATM Volume vcouvi_2004 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2005_venus_climate_orbiter_uvi_data:ac203683","title":"ATM Volume vcouvi_2005 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2006_venus_climate_orbiter_uvi_data:951d0112","title":"ATM Volume vcouvi_2006 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2007_venus_climate_orbiter_uvi_data:25150ca0","title":"ATM Volume vcouvi_2007 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vega_5001_vega_venus_data:710ee113","title":"ATM Volume vega_5001 (VEGA VENUS DATA)","description":"This volume contains Vega observations from the balloon and lander at Venus. VEGA1/VEGA2-V-2/3-VENUS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vega_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vxrs_1101_vxrs_1102_vxrs_1103_vxrs_1104_vex_raw_dsn_radio_science_data_extended_mission:9cc5852f","title":"ATM Volume VXRS_1101 , VXRS_1102 , VXRS_1103 , VXRS_1104 (VEX: Raw DSN Radio Science Data Extended Mission)","description":"This volume contains raw and partially processed radio science data and ancillary files from the Venus Express mission. VEX-V-RSS-1-ENT-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://atmos.nmsu.edu/PDS/data/VXRS_1104/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:go_0002_go_0015_galileo_orbiter_images:d41d8cd9","title":"ATM Volume go_0002 - go_0015 (Galileo Orbiter Images)","description":"These volumes contain images from the Galileo Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_0002 - go_0015 (Galileo Orbiter Images)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:go_1001_go_1004_galileo_orbiter_nims_edrs:d41d8cd9","title":"ATM Volume go_1001 - go_1004 (Galileo Orbiter NIMS EDRs)","description":"These volumes contain NIMS EDRs from the Galileo Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1001 - go_1004 (Galileo Orbiter NIMS EDRs)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:go_1102_go_1103_galileo_orbiter_nims_cubes:d41d8cd9","title":"ATM Volume go_1102,go_1103 (Galileo Orbiter NIMS CUBEs)","description":"These volumes contain NIMS CUBEs from the Galileo Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1102,go_1103 (Galileo Orbiter NIMS CUBEs)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gr_0001_gr_0009_geologic_remote_sensing_field_experiment:d41d8cd9","title":"ATM Volume gr_0001 - gr_0009 (Geologic Remote Sensing Field Experiment)","description":"This data set collection includes the following data sets from the Geologic Remote Sensing Field Experiment which may be of use to Atmospheres Node users: 1.FIELD EXP E AWND CALIB RDR TEMPERATURE AND VELOCITY V1.0 This data set consists of near surface wind observations at two sites on Lunar Lake Playa. 2.FIELD EXP E RANGER II PLUS RDMT & THRM CALIB RDR TEMP V1.0 This data set consists of directional variations in thermal emission of different surfaces. 3.FIELD EXP E REAG CALIBRATED RDR OPTICAL DEPTH V1.0 This data set consists of optical depth measurements made using the Reagan Radiometer. 4.FIELD EXP E SHYG CALIBRATED RDR OPTICAL DEPTH V1.0 This data set consists of observations by the spectral hygrometer. 5.FIELD EXP E WTHS CALIB RDR TEMPERATURE AND VELOCITY V1.0 This data set consists of wind velocity, direction, and air temperature measurements at Lunar Lake. 6.ER2 EARTH AVIRIS CALIBRATED REDUCED DATA RECORD IMAGE V1.0 This data set consists of Airborne Visible and Infrared Imaging Spectrometer observations","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=gr_0001 - gr_0009 (Geologic Remote Sensing Field Experiment)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:atmos_0006_mars_ancillary_data:68fb1a37","title":"ATM Volume atmos_0006 (Mars Ancillary Data)","description":"This volume contains archival data produced from the three types of Mars experiments. Two of the experiments were part of the Mars Consortium data sets. The third experiment was produced using photogrammetry of Viking Orbiter images and Earth-based radar altimetry. This CD-WO is not PDS compliant in that the CD-WO does not fully comply with the set of PDS standards required to make this a PDS archive product. However, the files, structure, and data sets contained on the CD-WO do conform to PDS standards. 1.MARS DIGITAL ALBEDO MAP The data set provides a map of phase-corrected albedo between -60 and +60 degrees latitude, and is binned at 1 x 1 degree resolution in latitude and longitude. 2.MARS THERMAL INERTIA MAP The data set provides a map of thermal inertia between -60 and +60 degrees latitude, and is binned at 2 x 2 degree resolution in latitude and longitude. 3.MARS TOPOGRAPHIC MAP The data set was produced using photogrammetry of Viking Orbiter images and Earth-based radar altimetry. The data set provides coverage between -56 and +56 degrees of latitude, and was rebinned by LASP at 1 x 1 degree latitude/longitude resolution from original 0.1 degree resolution","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=atmos_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:merimu_1001_mars_exploration_rovers_1_2_inertial_measurement_unit_edl_data:9f8d3929","title":"ATM Volume merimu_1001 (Mars Exploration Rovers 1/2 Inertial Measurement Unit EDL Data)","description":"This volume contains entry, descent and landing data from Mars Exploration Rovers 1/2 Inertial Measurement Unit investigations. 1.MER1/MER2-M-IMU-4-EDL-V1.0 This data set includes reduced data from Entry, Descent, and Landing (EDL) phases of each rover mission, specifically measurements from the accelerometers and gyros within the two inertial measurement units (IMUs), one each within the rover and within the backshell, on each of the two Mars Exploration Rovers","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=merimu_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:merimu_2001_mer1_mer2_mars_imu_entry_descent_landing_derived_data:a0c6a404","title":"ATM Volume merimu_2001 (MER1/MER2 Mars IMU Entry Descent & Landing Derived Data)","description":"This volume contains time ordered records of measured acceleration derived velocity, derived position, derived atmospheric properties and, other quantities determined from IMU measurements recorded during the EDLs of MER-1 and MER-2. MER1/MER2-M-IMU-5-EDL-DERIVED-V1.0 This data set includes data products from the Entry, Descent, and Landing (EDL) phases of each rover mission, specifically reconstructed spacecraft positions, spacecraft velocities, atmospheric densities, atmospheric pressures and atmospheric temperatures.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=merimu_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mexpfs_1001_mars_express_mars_pfs_edr_nominal_mission_data:bf0851db","title":"ATM Volume mexpfs_1001 (Mars Express Mars PFS EDR Nominal Mission Data)","description":"This volume contains data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF-IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA). MEX-M-PFS-2-EDR-NOMINAL-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mexpfs_1002_mars_express_mars_pfs_edr_nominal_mission_data:14213405","title":"ATM Volume mexpfs_1002 (Mars Express Mars PFS EDR Nominal Mission Data)","description":"This volume contains data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF-IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA). MEX-M-PFS-2-EDR-EXT1-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mexspi_0auv_mex_spicam_cruise_mars_uv_edr_raw:8bc06d71","title":"ATM Volume mexspi_0auv (MEX SPICAM CRUISE/MARS UV EDR-RAW)","description":"This volume release contains Mars Express SPICAM UV Raw Data Products (level 0A), in ADU units, along with documentation and other ancillary information about the data products. MEX-Y/M-SPI-2-UVEDR-RAWXCRUISE/MARS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexspi_0auv","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mexspi_0bir_mex_spicam_cruise_mars_ir_edr_raw:88d7b9c4","title":"ATM Volume mexspi_0bir (MEX SPICAM CRUISE/MARS IR EDR-RAW)","description":"This volume release contains Mars Express SPICAM IR Raw Data Products (level 0B), in ADU units, along with documentation and other ancillary information about the data products. MEX-Y/M-SPI-2-IREDR-RAWXCRUISE/MARS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexspi_0bir","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mgs_0001_mars_global_surveyor_sampler_cd:8ca2ac16","title":"ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)","description":"This volume contains science data products mainly from observations acquired by Mars Global Surveyor (MGS) instruments between October 13 and November 7, 1997 (MGS orbits 19 through 36). These orbits correspond to the Assessment Subphase of the Orbit Insertion Phase of the mission. MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0 The Science Sampler Collection is intended to provide users with samples of MGS data products from each instrument, to allow them to prepare for data products that will be delivered routinely after MGS achieves its mapping orbit in March 1999. The collection includes MGS data products from the Mars Orbiter Camera (MOC), the Mars Orbiter Laser Altimeter (MOLA), the Thermal Emission Spectrometer (TES), and the Magnetometer / Electron Reflectometer (MAG/ER). It also includes two gravity models of Mars based on Mariner 9 and Viking data, which will be updated with the results of the MGS Radio Science Subsystem (RSS) observations. (No RSS data were collected during the Assessment Subphase, and none were available for release when this sampler collection was being assembled.) Finally, SPICE kernels and orbit nadir ground track files are included to allow the user to understand where data were acquired during the Assessment Subphase of the mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mgsa_0001_mars_global_surveyor_accelerometer_raw_data:ffc7f2bc","title":"ATM Volume mgsa_0001 (Mars Global Surveyor Accelerometer Raw Data)","description":"This volume contains raw data from Mars Global Surveyor Accelerometer investigations. 1.MGS-M-ACCEL-0-ACCEL_DATA-V1.0 This data set consists of raw counts from the MGS Accelerometer and other orbital information.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mgsa_0002_mars_global_surveyor_accelerometer_reduced_data:0f432171","title":"ATM Volume mgsa_0002 (Mars Global Surveyor Accelerometer Reduced Data)","description":"This volume contains reduced data from Mars Global Surveyor Accelerometer investigations. 1.MGS-M-ACCEL-5-PROFILE-V1.1 This data set consists of orbital profiles from the MGS Accelerometer. 2.MGS-M-ACCEL-5-ALTITUDE-V1.0 This data set consists of densities and density scale heights at six different altitudes from the MGS Accelerometer.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mgsl_300x_mars_global_surveyor_mars_orbiter_laser_altimeter_topographic_maps:d41d8cd9","title":"ATM Volume mgsl_300x (Mars Global Surveyor Mars Orbiter Laser Altimeter Topographic Maps)","description":"The MOLA Mission Experiment Gridded Data Records (MEGDRs) are global topographic maps of Mars created by binning altimetry values from the MOLA PEDR products acquired over the entire MGS mission. MEGDRs have been produced at resolutions of 4, 16, 32, 64, and 128 pixels per degree","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=mgsl_300x (Mars Global Surveyor Mars Orbiter Laser Altimeter Topographic Maps)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mgst_1100_mgst_1407_mars_global_surveyor_thermal_emission_spectrometer_data:d41d8cd9","title":"These volumes contain data from Mars Global Surveyor Thermal Emission Spectrometer investigations","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=mgst_1100 - mgst_1407 (Mars Global Surveyor Thermal Emission Spectrometer Data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mogc_0001_ames_mars_general_circulation_model_data_record:56f92dc0","title":"ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)","description":"This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1.MODEL-M-AMES-GCM-5-LAT-V1.0 This data set contains the time and zonally averaged values calculated by the Ames Mars General Circulation Model for the mean surface and sea level pressures and for several of the vertically integrated heat and angular momentum variables. The data are given as a function of latitude. 2.MODEL-M-AMES-GCM-5-LAT-LON-V1.0 This data set contains the instantaneous values for the surface temperature minimum and maximum, and for the amount of CO2 frost on the ground, calculated by the Ames Mars General Circulation Model. The data are given as a function of longitude and latitude. 3.MODEL-M-AMES-GCM-5-LAT-PRES-V1.0 This data set contains the time and zonally averaged values for several first order, heating, eddy, phase and amplitude variables, calculated by the Ames Mars General Circulation Model. The data are given as a function of latitude and vertical pressure. 4.MODEL-M-AMES-GCM-5-LAT-TIME-V1.0 This data set contains the zonally averaged values for the surface temperature mean, calculated by the Ames Mars General Circulation Model. The data are given as a function of latitude and local time. 5.MODEL-M-AMES-GCM-5-TIME-V1.0 This data set contains the meridionally and zonally averaged values for the CO2 mass condensation rate, calculated by the Ames Mars General Circulation Model. The data are given as a function of local time. 6.MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0 This data set contains the surface topography used by the Ames GCM, obtained from a combination of relevant ground-based and spacecraft data (commonly known as the \"Mars Consortium\" data set). The data were smoothed for compatibility with the model resolution. The model has 25 latitude bins (7.5 degree resolution) and 40 longitude bins (9.0 degree resolution).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_0101_mors_0156_mars_global_surveyor_radio_science_cruise_data:7c3d9228","title":"ATM Volume mors_0101 - mors_0156 (Mars Global Surveyor Radio Science Cruise Data)","description":"These volumes contain raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation. They also contain documentation in the form of ancillary files, to support access of the data on these CD-ROMs. 1.MGS-M-RSS-1-CRU-V1.0 This data set was collected while the spacecraft was en route from Earth to Mars (the MGS Cruise Phase); it can serve as calibration for later Mars observations. During Cruise, the spacecraft was far from other bodies, so evolution of its trajectory was very smooth. Range and Doppler behavior could be predicted long in advance, and variability resulted from intrinsic limitations of the equipment (including unmodeled spacecraft activity) -- not from the phenomena being measured. Some of the Cruise data have intrinsic science value of their own. Approximately halfway through Cruise, three weeks of spacecraft and ground system time was devoted to a search for gravitational waves, presumably originating outside the solar system.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_0201_mors_0359_mars_global_surveyor_radio_science_mars_orbit_insertion_moi_data:1c901307","title":"ATM Volume mors_0201 - mors_0359 (Mars Global Surveyor Radio Science Mars Orbit Insertion (MOI) Data)","description":"These volumes contain raw MOI data from Mars Global Surveyor Radio Science investigations. 1.MGS-M-RSS-1-MOI-V1.0 This data set was collected during the Mars Orbit Insertion (MOI) Phase -- while the spacecraft was on final approach to Mars, entering Mars orbit, and adjusting the orbit in preparation for the Mapping Phase. Most of the radio data supported MGS Navigation activities though some, especially toward the end when periapsis was low and near the pole, have intrinsic science value of their own.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_0401_mors_0584_mars_global_surveyor_radio_science_mapping_data:71233664","title":"ATM Volume mors_0401 - mors_0584 (Mars Global Surveyor Radio Science Mapping Data)","description":"These volumes contain raw mapping data from Mars Global Surveyor Radio Science investigations. 1.MGS-M-RSS-1-MAP-V1.0 This data set was collected during the MGS Mars Mapping (MAP) mission phase -- while the spacecraft was in a near-circular orbit and systematically collecting data from Mars. Some of the data supported MGS Navigation activities, but the majority went directly to science analysis.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_0601_mors_08xx_mars_global_surveyor_radio_science_mapping_data:f8f48512","title":"ATM Volume mors_0601 - mors_08xx (Mars Global Surveyor Radio Science Mapping Data)","description":"These volumes contain raw mapping data from Mars Global Surveyor Extended Mission Radio Science investigations. 1.MGS-M-RSS-1-EXT-V1.0 This data set was collected during the MGS Extended (EXT) mission phase.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1001_mors_1002_mors_1003_mors_1004_mors_1005_mors_1006_mors_1007_mors_1008_mors_1009_mors_1010_mors_1011_mors_1012_mors_1013_mors_1014_mors_1015_mors_1016_mors_1017_mors_1018_mors_1019_mors_1020_mors_1021_mors_1022_mors_1023_mors_1024_mors_1025_mors_1026_mors_1027_mors_1028_mors_1029_mors_1030_mors_1031_mors_1032_mors_1033_mors_1034_mors_1035_mors_1036_mors_1037_mors_1038_mars_global_surveyor_radio_science_reduced_data:8b3d3956","title":"ATM Volume mors_1001 , mors_1002 , mors_1003 , mors_1004 , mors_1005 , mors_1006 , mors_1007 , mors_1008 , mors_1009 , mors_1010 , mors_1011 , mors_1012 , mors_1013 , mors_1014 , mors_1015 , mors_1016 , mors_1017 , mors_1018 , mors_1019 , mors_1020 , mors_1021 , mors_1022 , mors_1023 , mors_1024 , mors_1025 , mors_1026 , mors_1027 , mors_1028 , mors_1029 , mors_1030 , mors_1031 , mors_1032 , mors_1033 , mors_1034 , mors_1035 , mors_1036 , mors_1037 , mors_1038 (Mars Global Surveyor Radio Science Reduced Data)","description":"These volumes contain reduced data from Mars Global Surveyor Radio Science investigations. 1.MGS-M-RSS-5-SDP-V1.0 The Mars Global Surveyor (MGS) Radio Science (RS) Archive Data Collection (ADC) of Science Data Products (SDP) includes data from radio occultation, gravity, and surface reflection investigations conducted by members of the MGS Radio Science Team (RST).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1101_mgs_rs_atmospheric_temperature_pressure_profiles:baaae302","title":"ATM Volume mors_1101 (MGS RS: Atmospheric Temperature-Pressure Profiles)","description":"This archival volume contains the entire collection of radio occultation neutral atmosphere temperature-pressure (T-p) profiles derived from Mars Global Surveyor (MGS) data during the MGS mission. The profiles were archived previously as part of the MGS-M-RSS-5-SDP-V1.0 data set (38 volumes, from MORS_1001 through MORS_1038). These are the same profiles, but they have been collected into a single volume where they are organized chronologically. The accompanying PDS detached labels are also the same except for minor edits needed for conformance to the new data set. MGS-M-RSS-5-TPS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1102_mgs_radio_science_science_data_products:716bbf77","title":"ATM Volume mors_1102 (MGS Radio Science - Science Data Products)","description":"This archival volume contains the complete collection of Mars Global Surveyor radio occultation ionosphere electron density profiles reorganized into a single archival volume. MGS-M-RSS-5-EDS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mpam_0001_mars_pathfinder_atmospheric_structure_instrument_meteorology_package:464e0ffe","title":"ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)","description":"This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission. 1. MPFL MARS ATM STRUCT INST AND MET PKG RAW AND CALIB EDL V1.0 This data set contains the raw and calibrated ASI/MET data collected during the EDL phase of the mission. These data were collected by accelerometers, temperature sensors, a pressure sensor, and a wind sensor. 2. MPFL MARS ATM STRUCT INST AND MET PKG DERIVED EDL V1.0 This data set contains temperature, pressure, and density profiles derived from the data in the first data set. 3. MPFL MARS ATM STRUCT INST AND MET PKG RAW SURFACE V1.0 This data set contains the raw MET data collected during the Surface phase of the mission. These data were acquired by temperature sensors, a pressure sensor, and a wind sensor. 4. MPFL MARS ATM STRUCT INST AND MET PKG CALIB SURFACE V1.0 This data set contains the calibrated versions of the data in the third data set.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mpim_0001_mpim_0003_mars_pathfinder_imager:d41d8cd9","title":"ATM Volume mpim_0001 - mpim_0003 (Mars Pathfinder Imager)","description":"These volumes contain Mars Pathfinder IMP EDR images and ancillary files. Each volume also contains a complete set of documentation files that describe the archive EDR images. 1.MPF LANDER MARS IMAGER FOR MARS PATHFINDER 2 EDR V1.0 This data set contains images taken by the Imager for Mars Pathfinder. The images are EDRs, which have been decoded and decompressed in single frame form, but not calibrated or radiometrically corrected. The data set also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, a gazetteer, an HTML image browser, and index tables.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=mpim_0001 - mpim_0003 (Mars Pathfinder Imager)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mr9_1001_mariner_9_infrared_interferometer_spectrometer_iris_spectral_observations_of_mars:fccf34b2","title":"ATM Volume mr9_1001 (Mariner 9 Infrared Interferometer Spectrometer (IRIS) Spectral Observations of Mars)","description":"This volume contains data produced from the Mariner 9 IRIS experiment. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1.MR9-M-IRIS-3-RDR-V1.0 The dataset contains measurements from the infrared interferometer spectrometer and ancillary data. Each record of the dataset consists of a header and a spectral observation of Mars; the header contains pointing and other information on the geometry of the observation.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mr9_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mroa_0001_mro_accelerometer_data:fcb88589","title":"ATM Volume mroa_0001 (MRO ACCELEROMETER DATA)","description":"This volume contains archival accelerometer results from the Mars Reconnaissance Orbiter (MRO) mission. This volume includes raw data from aerobraking and also includes reduced data. 1. MRO-M-ACCEL-5-ALTITUDE-V1.0 2. MRO-M-ACCEL-5-PROFILE-V1.0 3. MRO-M-ACCEL-2-ACCELDATA-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0001_mrom_0002_mrom_0003_mrom_0004_mrom_0005_mrom_0006_mrom_0007_mrom_0008_mrom_0009_mrom_0010_mrom_0011_mrom_0012_mrom_0013_mrom_0014_mrom_0015_mrom_0016_mrom_0017_mrom_0018_mrom_0019_mrom_0020_mrom_0021_mrom_0022_mrom_0023_mrom_0024_mrom_0025_mrom_0026_mrom_0027_mrom_0028_mrom_0029_mrom_0030_mrom_0031_mrom_0032_mrom_0033_mrom_0034_mrom_0035_mrom_0036_mrom_0040_mrom_0041_mrom_0042_mrom_0043_mrom_0044_mrom_0045_mrom_0046_mrom_0047_mrom_0048_mrom_0049_mrom_0050_mrom_0051_mrom_0052_mrom_0053_mrom_0054_mrom_0055_mrom_0056_mrom_0057_mrom_0058_mrom_0059_mrom_0060_mrom_0061_mrom_0062_mrom_0063_mrom_0064_mrom_0065_mrom_0066_mrom_0067_mrom_0068_mrom_0069_mrom_0070_mrom_0071_mrom_0072_mrom_0073_mrom_0074_mrom_0075_mrom_0076_mrom_0077_mrom_0078_mrom_0079_mrom_0080_mrom_0081_mrom_0082_mrom_0083_mrom_0084_mrom_0085_mrom_0086_mrom_0087_mrom_0088_mrom_0089_mrom_0090_mrom_0091_mrom_0092_mrom_0093_mrom_0094_mrom_0095_mrom_0096_mrom_0097_mrom_0098_mrom_0099_mrom_0100_mrom_0101_mrom_0102_mrom_0103_mrom_0104_mrom_0105_mrom_0106_mrom_0107_mrom_0108_mrom_0109_mrom_0110_mrom_0111_mrom_0112_mrom_0113_mrom_0114_mrom_0115_mrom_0116_mrom_0117_mrom_0118_mrom_0119_mrom_0120_mrom_0121_mrom_0122_mrom_0123_mrom_0124_mrom_0125_mrom_0126_mrom_0127_mrom_0128_mrom_0129_mrom_0130_mrom_0131_mrom_0132_mrom_0133_mrom_0134_mrom_0135_mrom_0136_mrom_0137_mrom_0138_mrom_0139_mrom_0140_mrom_0141_mrom_0142_mrom_0143_mrom_0144_mrom_0145_mrom_0146_mrom_0147_mrom_0148_mrom_0149_mrom_0150_mrom_0151_mrom_0152_mrom_0153_mrom_0154_mrom_0155_mrom_0156_mrom_0157_mrom_0158_mrom_0159_mrom_0160_mrom_0161_mrom_0162_mrom_0163_mrom_0164_mrom_0165_mrom_0166_mrom_0167_mrom_0168_mrom_0169_mrom_0170_mrom_0171_mrom_0172_mrom_0173_mrom_0174_mrom_0175_mrom_0176_mrom_0177_mrom_0178_mrom_0179_mrom_0180_mrom_0181_mrom_0182_mrom_0183_mrom_0184_mrom_0185_mrom_0186_mrom_0187_mrom_0188_mrom_0189_mrom_0190_mrom_0191_mrom_0192_mrom_0193_mrom_0194_mrom_0195_mrom_0196_mrom_0197_mrom_0198_mrom_0199_mrom_0200_mrom_0201_mrom_0202_mrom_0203_mrom_0204_mrom_0205_mrom_0206_mrom_0207_mrom_0208_mrom_0209_mrom_0210_mrom_0211_mrom_0212_mrom_0213_mrom_0214_mrom_0215_mrom_0216_mrom_0217_mrom_0218_mrom_0219_mrom_0220_mrom_0221_mrom_0222_mrom_0223_mrom_0224_mrom_0225_mrom_0226_mrom_0227_mars_climate_sounder_edr:5bf2f76f","title":"ATM Volume mrom_0001 , mrom_0002 , mrom_0003 , mrom_0004 , mrom_0005 , mrom_0006 , mrom_0007 , mrom_0008 , mrom_0009 , mrom_0010 , mrom_0011 , mrom_0012 , mrom_0013 , mrom_0014 , mrom_0015 , mrom_0016 , mrom_0017 , mrom_0018 , mrom_0019 , mrom_0020 , mrom_0021 , mrom_0022 , mrom_0023 , mrom_0024 , mrom_0025 , mrom_0026 , mrom_0027 , mrom_0028 , mrom_0029 , mrom_0030 , mrom_0031 , mrom_0032 , mrom_0033 , mrom_0034 , mrom_0035 , mrom_0036 , mrom_0040 , mrom_0041 , mrom_0042 , mrom_0043 , mrom_0044 , mrom_0045 , mrom_0046 , mrom_0047 , mrom_0048 , mrom_0049 , mrom_0050 , mrom_0051 , mrom_0052 , mrom_0053 , mrom_0054 , mrom_0055 , mrom_0056 , mrom_0057 , mrom_0058 , mrom_0059 , mrom_0060 , mrom_0061 , mrom_0062 , mrom_0063 , mrom_0064 , mrom_0065 , mrom_0066 , mrom_0067 , mrom_0068 , mrom_0069 , mrom_0070 , mrom_0071 , mrom_0072 , mrom_0073 , mrom_0074 , mrom_0075 , mrom_0076 , mrom_0077 , mrom_0078 , mrom_0079 , mrom_0080 , mrom_0081 , mrom_0082 , mrom_0083 , mrom_0084 , mrom_0085 , mrom_0086 , mrom_0087 , mrom_0088 , mrom_0089 , mrom_0090 , mrom_0091 , mrom_0092 , mrom_0093 , mrom_0094 , mrom_0095 , mrom_0096 , mrom_0097 , mrom_0098 , mrom_0099 , mrom_0100 , mrom_0101 , mrom_0102 , mrom_0103 , mrom_0104 , mrom_0105 , mrom_0106 , mrom_0107 , mrom_0108 , mrom_0109 , mrom_0110 , mrom_0111 , mrom_0112 , mrom_0113 , mrom_0114 , mrom_0115 , mrom_0116 , mrom_0117 , mrom_0118 , mrom_0119 , mrom_0120 , mrom_0121 , mrom_0122 , mrom_0123 , mrom_0124 , mrom_0125 , mrom_0126 , mrom_0127 , mrom_0128 , mrom_0129 , mrom_0130 , mrom_0131 , mrom_0132 , mrom_0133 , mrom_0134 , mrom_0135 , mrom_0136 , mrom_0137 , mrom_0138 , mrom_0139 , mrom_0140 , mrom_0141 , mrom_0142 , mrom_0143 , mrom_0144 , mrom_0145 , mrom_0146 , mrom_0147 , mrom_0148 , mrom_0149 , mrom_0150 , mrom_0151 , mrom_0152 , mrom_0153 , mrom_0154 , mrom_0155 , mrom_0156 , mrom_0157 , mrom_0158 , mrom_0159 , mrom_0160 , mrom_0161 , mrom_0162 , mrom_0163 , mrom_0164 , mrom_0165 , mrom_0166 , mrom_0167 , mrom_0168 , mrom_0169 , mrom_0170 , mrom_0171 , mrom_0172 , mrom_0173 , mrom_0174 , mrom_0175 , mrom_0176 , mrom_0177 , mrom_0178 , mrom_0179 , mrom_0180 , mrom_0181 , mrom_0182 , mrom_0183 , mrom_0184 , mrom_0185 , mrom_0186 , mrom_0187 , mrom_0188 , mrom_0189 , mrom_0190 , mrom_0191 , mrom_0192 , mrom_0193 , mrom_0194 , mrom_0195 , mrom_0196 , mrom_0197 , mrom_0198 , mrom_0199 , mrom_0200 , mrom_0201 , mrom_0202 , mrom_0203 , mrom_0204 , mrom_0205 , mrom_0206 , mrom_0207 , mrom_0208 , mrom_0209 , mrom_0210 , mrom_0211 , mrom_0212 , mrom_0213 , mrom_0214 , mrom_0215 , mrom_0216 , mrom_0217 , mrom_0218 , mrom_0219 , mrom_0220 , mrom_0221 , mrom_0222 , mrom_0223 , mrom_0224 , mrom_0225 , mrom_0226 , mrom_0227 (MARS CLIMATE SOUNDER EDR)","description":"This volume contains one month of raw sensor-level data (NASA level 0, CODMAC level 2) from the Mars Climate Sounder (MCS), flying aboard the Mars Reconnaissance Orbiter (MRO) spacecraft. These measurements include instrument engineering and housekeeping data, as well as detector science measurements of scene views and of calibration targets. 1. MRO-M-MCS-2-EDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1001_mrom_1002_mrom_1003_mrom_1004_mrom_1005_mrom_1006_mrom_1007_mrom_1008_mrom_1009_mrom_1010_mrom_1011_mrom_1012_mrom_1013_mrom_1014_mrom_1015_mrom_1016_mrom_1017_mrom_1018_mrom_1019_mrom_1020_mrom_1021_mrom_1022_mrom_1023_mrom_1024_mrom_1025_mrom_1026_mrom_1027_mrom_1028_mrom_1029_mrom_1030_mrom_1031_mrom_1032_mrom_1033_mrom_1034_mrom_1035_mrom_1036_mrom_1040_mrom_1041_mrom_1042_mrom_1043_mrom_1044_mrom_1045_mrom_1046_mrom_1047_mrom_1048_mrom_1049_mrom_1050_mrom_1051_mrom_1052_mrom_1053_mrom_1054_mrom_1055_mrom_1056_mrom_1057_mrom_1058_mrom_1059_mrom_1060_mrom_1061_mrom_1062_mrom_1063_mrom_1064_mrom_1065_mrom_1066_mrom_1067_mrom_1068_mrom_1069_mrom_1070_mrom_1071_mrom_1072_mrom_1073_mrom_1074_mrom_1075_mrom_1076_mrom_1077_mrom_1078_mrom_1079_mrom_1080_mrom_1081_mrom_1082_mrom_1083_mrom_1084_mrom_1085_mrom_1086_mrom_1087_mrom_1088_mrom_1089_mrom_1090_mrom_1091_mrom_1092_mrom_1093_mrom_1094_mrom_1095_mrom_1096_mrom_1097_mrom_1098_mrom_1099_mrom_1099_mrom_1100_mrom_1101_mrom_1102_mrom_1103_mrom_1104_mrom_1105_mrom_1106_mrom_1107_mrom_1108_mrom_1109_mrom_1110_mrom_1111_mrom_1112_mrom_1113_mrom_1114_mrom_1115_mrom_1116_mrom_1117_mrom_1118_mrom_1119_mrom_1120_mrom_1121_mrom_1122_mrom_1123_mrom_1124_mrom_1125_mrom_1126_mrom_1127_mrom_1128_mrom_1129_mrom_1130_mrom_1131_mrom_1132_mrom_1133_mrom_1134_mrom_1135_mrom_1136_mrom_1137_mrom_1138_mrom_1139_mrom_1140_mrom_1141_mrom_1142_mrom_1143_mrom_1144_mrom_1145_mrom_1146_mrom_1147_mrom_1148_mrom_1149_mrom_1150_mrom_1151_mrom_1152_mrom_1153_mrom_1154_mrom_1155_mrom_1156_mrom_1157_mrom_1158_mrom_1159_mrom_1160_mrom_1161_mrom_1162_mrom_1163_mrom_1164_mrom_1165_mrom_1166_mrom_1167_mrom_1168_mrom_1169_mrom_1170_mrom_1171_mrom_1172_mrom_1173_mrom_1174_mrom_1175_mrom_1176_mrom_1177_mrom_1178_mrom_1179_mrom_1180_mrom_1181_mrom_1182_mrom_1183_mrom_1184_mrom_1185_mrom_1186_mrom_1187_mrom_1188_mrom_1189_mrom_1190_mrom_1191_mrom_1192_mrom_1193_mrom_1194_mrom_1195_mrom_1196_mrom_1197_mrom_1198_mrom_1199_mrom_1200_mrom_1201_mrom_1202_mrom_1203_mrom_1204_mrom_1205_mrom_1206_mrom_1207_mrom_1208_mrom_1209_mrom_1210_mrom_1211_mrom_1212_mrom_1213_mrom_1214_mrom_1215_mrom_1216_mrom_1217_mrom_1218_mrom_1219_mrom_1220_mrom_1221_mrom_1222_mrom_1223_mrom_1224_mrom_1225_mrom_1226_mrom_1227_mars_climate_sounder_rdr:835ee98a","title":"ATM Volume mrom_1001 , mrom_1002 , mrom_1003 , mrom_1004 , mrom_1005 , mrom_1006 , mrom_1007 , mrom_1008 , mrom_1009 , mrom_1010 , mrom_1011 , mrom_1012 , mrom_1013 , mrom_1014 , mrom_1015 , mrom_1016 , mrom_1017 , mrom_1018 , mrom_1019 , mrom_1020 , mrom_1021 , mrom_1022 , mrom_1023 , mrom_1024 , mrom_1025 , mrom_1026 , mrom_1027 , mrom_1028 , mrom_1029 , mrom_1030 , mrom_1031 , mrom_1032 , mrom_1033 , mrom_1034 , mrom_1035 , mrom_1036 , mrom_1040 , mrom_1041 , mrom_1042 , mrom_1043 , mrom_1044 , mrom_1045 , mrom_1046 , mrom_1047 , mrom_1048 , mrom_1049 , mrom_1050 , mrom_1051 , mrom_1052 , mrom_1053 , mrom_1054 , mrom_1055 , mrom_1056 , mrom_1057 , mrom_1058 , mrom_1059 , mrom_1060 , mrom_1061 , mrom_1062 , mrom_1063 , mrom_1064 , mrom_1065 , mrom_1066 , mrom_1067 , mrom_1068 , mrom_1069 , mrom_1070 , mrom_1071 , mrom_1072 , mrom_1073 , mrom_1074 , mrom_1075 , mrom_1076 , mrom_1077 , mrom_1078 , mrom_1079 , mrom_1080 , mrom_1081 , mrom_1082 , mrom_1083 , mrom_1084 , mrom_1085 , mrom_1086 , mrom_1087 , mrom_1088 , mrom_1089 , mrom_1090 , mrom_1091 , mrom_1092 , mrom_1093 , mrom_1094 , mrom_1095 , mrom_1096 , mrom_1097 , mrom_1098 , mrom_1099 , mrom_1099 , mrom_1100 , mrom_1101 , mrom_1102 , mrom_1103 , mrom_1104 , mrom_1105 , mrom_1106 , mrom_1107 , mrom_1108 , mrom_1109 , mrom_1110 , mrom_1111 , mrom_1112 , mrom_1113 , mrom_1114 , mrom_1115 , mrom_1116 , mrom_1117 , mrom_1118 , mrom_1119 , mrom_1120 , mrom_1121 , mrom_1122 , mrom_1123 , mrom_1124 , mrom_1125 , mrom_1126 , mrom_1127 , mrom_1128 , mrom_1129 , mrom_1130 , mrom_1131 , mrom_1132 , mrom_1133 , mrom_1134 , mrom_1135 , mrom_1136 , mrom_1137 , mrom_1138 , mrom_1139 , mrom_1140 , mrom_1141 , mrom_1142 , mrom_1143 , mrom_1144 , mrom_1145 , mrom_1146 , mrom_1147 , mrom_1148 , mrom_1149 , mrom_1150 , mrom_1151 , mrom_1152 , mrom_1153 , mrom_1154 , mrom_1155 , mrom_1156 , mrom_1157 , mrom_1158 , mrom_1159 , mrom_1160 , mrom_1161 , mrom_1162 , mrom_1163 , mrom_1164 , mrom_1165 , mrom_1166 , mrom_1167 , mrom_1168 , mrom_1169 , mrom_1170 , mrom_1171 , mrom_1172 , mrom_1173 , mrom_1174 , mrom_1175 , mrom_1176 , mrom_1177 , mrom_1178 , mrom_1179 , mrom_1180 , mrom_1181 , mrom_1182 , mrom_1183 , mrom_1184 , mrom_1185 , mrom_1186 , mrom_1187 , mrom_1188 , mrom_1189 , mrom_1190 , mrom_1191 , mrom_1192 , mrom_1193 , mrom_1194 , mrom_1195 , mrom_1196 , mrom_1197 , mrom_1198 , mrom_1199 , mrom_1200 , mrom_1201 , mrom_1202 , mrom_1203 , mrom_1204 , mrom_1205 , mrom_1206 , mrom_1207 , mrom_1208 , mrom_1209 , mrom_1210 , mrom_1211 , mrom_1212 , mrom_1213 , mrom_1214 , mrom_1215 , mrom_1216 , mrom_1217 , mrom_1218 , mrom_1219 , mrom_1220 , mrom_1221 , mrom_1222 , mrom_1223 , mrom_1224 , mrom_1225 , mrom_1226 , mrom_1227 (MARS CLIMATE SOUNDER RDR)","description":"These volumes each contain one month of raw sensor-level data (NASA level 1B; CODMAC level 4) from the Mars Climate Sounder (MCS), flying aboard the Mars Reconnaissance Orbiter (MRO) spacecraft. These measurements include instrument engineering and housekeeping data, as well as detector science measurements of scene views and of calibration targets. 1. MRO-M-MCS-4-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2001_mrom_2002_mrom_2003_mrom_2004_mrom_2005_mrom_2006_mrom_2007_mrom_2008_mrom_2009_mrom_2010_mrom_2011_mrom_2012_mrom_2013_mrom_2014_mrom_2015_mrom_2016_mrom_2017_mrom_2018_mrom_2019_mrom_2020_mrom_2021_mrom_2022_mrom_2023_mrom_2024_mrom_2025_mrom_2026_mrom_2027_mrom_2028_mrom_2029_mrom_2030_mrom_2031_mrom_2032_mrom_2033_mrom_2034_mrom_2035_mrom_2036_mrom_2040_mrom_2041_mrom_2042_mrom_2043_mrom_2044_mrom_2045_mrom_2046_mrom_2047_mrom_2048_mrom_2049_mrom_2050_mrom_2051_mrom_2052_mrom_2053_mrom_2054_mrom_2055_mrom_2056_mrom_2057_mrom_2058_mrom_2059_mrom_2060_mrom_2061_mrom_2062_mrom_2063_mrom_2064_mrom_2065_mrom_2066_mrom_2067_mrom_2068_mrom_2069_mrom_2070_mrom_2071_mrom_2072_mrom_2073_mrom_2074_mrom_2075_mrom_2076_mrom_2077_mrom_2078_mrom_2079_mrom_2080_mrom_2081_mrom_2082_mrom_2083_mrom_2084_mrom_2085_mrom_2086_mrom_2087_mrom_2088_mrom_2089_mrom_2090_mrom_2091_mrom_2092_mrom_2093_mrom_2094_mrom_2095_mrom_2096_mrom_2097_mrom_2098_mrom_2099_mrom_2100_mrom_2101_mrom_2102_mrom_2103_mrom_2104_mrom_2105_mrom_2106_mrom_2107_mrom_2108_mrom_2109_mrom_2110_mrom_2111_mrom_2112_mrom_2113_mrom_2114_mrom_2115_mrom_2116_mrom_2117_mrom_2118_mrom_2119_mrom_2120_mrom_2121_mrom_2122_mrom_2123_mrom_2124_mrom_2125_mrom_2126_mrom_2127_mrom_2128_mrom_2129_mrom_2130_mrom_2131_mrom_2132_mrom_2133_mrom_2134_mrom_2135_mrom_2136_mrom_2137_mrom_2138_mrom_2139_mrom_2140_mrom_2141_mrom_2142_mrom_2143_mrom_2144_mrom_2145_mrom_2146_mrom_2147_mrom_2148_mrom_2149_mrom_2150_mrom_2151_mrom_2152_mrom_2153_mrom_2154_mrom_2155_mrom_2156_mrom_2157_mrom_2158_mrom_2159_mrom_2160_mrom_2161_mrom_2162_mrom_2163_mrom_2164_mrom_2165_mrom_2166_mrom_2167_mrom_2168_mrom_2169_mrom_2170_mrom_2171_mrom_2172_mrom_2173_mrom_2174_mrom_2175_mrom_2176_mrom_2177_mrom_2178_mrom_2179_mrom_2180_mrom_2181_mrom_2182_mrom_2183_mrom_2184_mrom_2185_mrom_2186_mrom_2187_mrom_2188_mrom_2189_mrom_2190_mrom_2191_mrom_2192_mrom_2193_mrom_2194_mrom_2195_mrom_2196_mrom_2197_mrom_2198_mrom_2199_mrom_2200_mrom_2201_mrom_2202_mrom_2203_mrom_2204_mrom_2205_mrom_2206_mrom_2207_mrom_2208_mrom_2209_mrom_2210_mrom_2211_mrom_2212_mrom_2213_mrom_2214_mrom_2215_mrom_2216_mrom_2217_mrom_2218_mrom_2219_mrom_2220_mrom_2221_mrom_2222_mrom_2223_mrom_2224_mrom_2225_mrom_2226_mrom_2227_mars_climate_sounder_ddr:3afb3fa4","title":"ATM Volume mrom_2001 , mrom_2002 , mrom_2003 , mrom_2004 , mrom_2005 , mrom_2006 , mrom_2007 , mrom_2008 , mrom_2009 , mrom_2010 , mrom_2011 , mrom_2012 , mrom_2013 , mrom_2014 , mrom_2015 , mrom_2016 , mrom_2017 , mrom_2018 , mrom_2019 , mrom_2020 , mrom_2021 , mrom_2022 , mrom_2023 , mrom_2024 , mrom_2025 , mrom_2026 , mrom_2027 , mrom_2028 , mrom_2029 , mrom_2030 , mrom_2031 , mrom_2032 , mrom_2033 , mrom_2034 , mrom_2035 , mrom_2036 , mrom_2040 , mrom_2041 , mrom_2042 , mrom_2043 , mrom_2044 , mrom_2045 , mrom_2046 , mrom_2047 , mrom_2048 , mrom_2049 , mrom_2050 , mrom_2051 , mrom_2052 , mrom_2053 , mrom_2054 , mrom_2055 , mrom_2056 , mrom_2057 , mrom_2058 , mrom_2059 , mrom_2060 , mrom_2061 , mrom_2062 , mrom_2063 , mrom_2064 , mrom_2065 , mrom_2066 , mrom_2067 , mrom_2068 , mrom_2069 , mrom_2070 , mrom_2071 , mrom_2072 , mrom_2073 , mrom_2074 , mrom_2075 , mrom_2076 , mrom_2077 , mrom_2078 , mrom_2079 , mrom_2080 , mrom_2081 , mrom_2082 , mrom_2083 , mrom_2084 , mrom_2085 , mrom_2086 , mrom_2087 , mrom_2088 , mrom_2089 , mrom_2090 , mrom_2091 , mrom_2092 , mrom_2093 , mrom_2094 , mrom_2095 , mrom_2096 , mrom_2097 , mrom_2098 , mrom_2099 , mrom_2100 , mrom_2101 , mrom_2102 , mrom_2103 , mrom_2104 , mrom_2105 , mrom_2106 , mrom_2107 , mrom_2108 , mrom_2109 , mrom_2110 , mrom_2111 , mrom_2112 , mrom_2113 , mrom_2114 , mrom_2115 , mrom_2116 , mrom_2117 , mrom_2118 , mrom_2119 , mrom_2120 , mrom_2121 , mrom_2122 , mrom_2123 , mrom_2124 , mrom_2125 , mrom_2126 , mrom_2127 , mrom_2128 , mrom_2129 , mrom_2130 , mrom_2131 , mrom_2132 , mrom_2133 , mrom_2134 , mrom_2135 , mrom_2136 , mrom_2137 , mrom_2138 , mrom_2139 , mrom_2140 , mrom_2141 , mrom_2142 , mrom_2143 , mrom_2144 , mrom_2145 , mrom_2146 , mrom_2147 , mrom_2148 , mrom_2149 , mrom_2150 , mrom_2151 , mrom_2152 , mrom_2153 , mrom_2154 , mrom_2155 , mrom_2156 , mrom_2157 , mrom_2158 , mrom_2159 , mrom_2160 , mrom_2161 , mrom_2162 , mrom_2163 , mrom_2164 , mrom_2165 , mrom_2166 , mrom_2167 , mrom_2168 , mrom_2169 , mrom_2170 , mrom_2171 , mrom_2172 , mrom_2173 , mrom_2174 , mrom_2175 , mrom_2176 , mrom_2177 , mrom_2178 , mrom_2179 , mrom_2180 , mrom_2181 , mrom_2182 , mrom_2183 , mrom_2184 , mrom_2185 , mrom_2186 , mrom_2187 , mrom_2188 , mrom_2189 , mrom_2190 , mrom_2191 , mrom_2192 , mrom_2193 , mrom_2194 , mrom_2195 , mrom_2196 , mrom_2197 , mrom_2198 , mrom_2199 , mrom_2200 , mrom_2201 , mrom_2202 , mrom_2203 , mrom_2204 , mrom_2205 , mrom_2206 , mrom_2207 , mrom_2208 , mrom_2209 , mrom_2210 , mrom_2211 , mrom_2212 , mrom_2213 , mrom_2214 , mrom_2215 , mrom_2216 , mrom_2217 , mrom_2218 , mrom_2219 , mrom_2220 , mrom_2221 , mrom_2222 , mrom_2223 , mrom_2224 , mrom_2225 , mrom_2226 , mrom_2227 (Mars Climate Sounder DDR)","description":"These volumes each contain one month of derived sensor-level data (NASA Level 2; CODMAC Level 5) from the Mars Climate Sounder (MCS), flying aboard the Mars Reconnaissance Orbiter (MRO) spacecraft. These measurements include instrument engineering and housekeeping data, as well as detector science measurements of scene views and of calibration targets. 1.MRO-M-MCS-5-DDR-V6.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mslrem_0001_rems_edr_data:0dfbec69","title":"ATM Volume mslrem_0001 (REMS EDR DATA)","description":"This volume contains raw data from the Mars Science Laboratory REMS instrument. 1.MSL-M-REMS-2-EDR-V1.0 Raw, unprocessed scientific and housekeeping engineering data taken from the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mslrem_1001_rems_rdr_data:f23fef1f","title":"ATM Volume mslrem_1001 (REMS RDR DATA)","description":"This volume contains processed data from the Mars Science Laboratory REMS instrument. 1. MSL-M-REMS-3-TELRDR-V1.0 Data taken by the sensors of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory, in electrical and thermal units. 2. MSL-M-REMS-4-ENVRDR-V1.0 Data taken by the sensors of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory, in physical units. 3. MSL-M-REMS-5-MODRDR-V1.0 Data taken by the sensors of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory, in physical units, with corrections and modeling. 4. MSL-M-REMS-6-ADR-V1.0 Ancillary data used in the processing of the data taken by the sensors of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory. 5. MSL-M-REMS-5-UVRDR-V1.0 UV fluxes measured by the UV sensor of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory in physical units, with corrections and modeling.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrors_2001_mro_rs_tps_archive:99f1bc32","title":"ATM Volume mrors_2001 (MRO RS TPS ARCHIVE)","description":"The Mars Reconnaissance Orbiter (MRO) Radio Science (RS Occultation Data Collection contains Radio Science Atmospheric Temperature-Pressure Profile (RSTP) data files. MRO-M-RSS-5-TPS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mrors_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:odt_xxxx_mars_odyssey_themis_data:d41d8cd9","title":"ATM Volume odt_xxxx (Mars Odyssey THEMIS Data)","description":"This volume contains 2001 Mars Odyssey THEMIS Standard Data Products, along with documentation and other ancillary information about the data products. 1.ODY-M-THM-2-IREDR-V1.0 2.ODY-M-THM-2-VISEDR-V1.0 3.ODY-M-THM-3-IRRDR-V1.0 4.ODY-M-THM-3-VISRDR-V1.0 5.ODY-M-THM-3-IRBTR-V1.0 6.ODY-M-THM-3-VISABR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=odt_xxxx (Mars Odyssey THEMIS Data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:odya_0001_ody_accelerometer_data:b6045ae2","title":"ATM Volume odya_0001 (ODY Accelerometer Data)","description":"This volume contains archival accelerometer results from the Mars Odyssey (ODY) mission. This volume includes raw and reduced data from the Aerobraking Phase of the mission. 1. ODY-M-ACCEL-5-ALTITUDE-V2.0 2. ODY-M-ACCEL-5-PROFILE-V2.0 3. ODY-M-ACCEL-2-ACCELDATA-V2.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:odya_1001_odyssey_accelerometer_derived_data:2da57ee2","title":"ATM Volume odya_1001 (Odyssey Accelerometer Derived Data)","description":"This volume contains archival data products obtained from accelerometer observations from the aerobraking phase of the Mars Odyssey mission, specifically raw low rate and high rate accelerations, derived density profiles, derived densities and density scale heights at constant altitudes, and ancillary information. 1. ODY-M-ACCEL-5-DERIVED-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phld_0001_phld_0002_phld_0003_phoenix_mars_met_lidar_atmospheric_profiles:876cea7c","title":"ATM Volume phld_0001 , phld_0002 , phld_0003 (Phoenix Mars MET LIDAR Atmospheric Profiles)","description":"This volume contains Phoenix MET Lidar TSDR (Time-Sequential Data Record) products, and documentation which describes the TSDRs. 1. PHX-M-MET-2-L-EDR-V1.0 This volume contains unprocessed laser scattering atmospheric profiles for photon counting data at 532nm, and analog data at both 532 and 1064nm wavelengths (expressed in Digital Numbers). The range data is provided as a time series of profiles between 5 and 90 min in total duration, with each profile representing an accumulation or average over 1.28-20.24 sec. Supplemental data of estimated laser power and inter-profile analog background skylight estimates are also provided. 2. PHX-M-MET-3-L-RDR-V1.0 This volume contains raw (volts and counts) laser scattering atmospheric profiles for photon counting data at 532nm, and analog data at both 532 and 1064nm wavelengths. The range data is provided as a time series of profiles between 5 and 90 min in total duration, with each profile representing an accumulation or average over 1.28-20.24 sec. Supplemental data of estimated laser power (given as a voltage) and inter-profile analog background skylight estimates are also provided.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phmt_0001_phmt_0002_phmt_0003_phoenix_mars_meteorological_pressure_temperature:69b637e0","title":"ATM Volume phmt_0001 , phmt_0002 , phmt_0003 (Phoenix Mars Meteorological Pressure / Temperature)","description":"This volume contains Phoenix MET P&T TSDR (Time-Sequential Data Record) products, and documentation which describes the TSDRs. PHX-M-MET-2-PT-EDR-V1.0 This volume contains pre-processed (Digital Numbers) temperature and pressure data. The temperature data was collected at 250, 500 and 1000mm above the Phoenix Lander deck, and the pressure data was collected at (nearly) the height of the Lander deck. Nominally the data was collected at 2 sec resolution, but is also provided at 512 sec averages (with distribution statistics). PHX-M-MET-3-PT-RDR-V1.0 This volume contains calibrated temperature and pressure data. The temperature data was collected at 250, 500 and 1000mm above the Phoenix Lander deck, and the pressure data was collected at (nearly) the height of the Lander deck. Nominally the data was collected at 2 sec resolution, but is also provided at 512 sec averages (with distribution statistics). Owing to the placement of a heater near the pressure sensor, a corrected set of values was required, and is provided for the pressure data.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phxao_1001_phx_mars_ssi_atmospheric_opacity_rdr:0ccde453","title":"ATM Volume phxao_1001 (PHX Mars SSI Atmospheric Opacity RDR)","description":"This volume contains the atmospheric opacity derived products from the SSI experiment of the PHOENIX mission. PHX-M-SSI-5-ATMOS-OPACITY-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxao_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phxase_0001_phoenix_mars_atmospheric_structure_experiment:c4ff7563","title":"ATM Volume phxase_0001 (Phoenix Mars Atmospheric Structure Experiment)","description":"This volume contains Atmospheric Structure Experiment (ASE) results. This volume includes data from Entry, Descent, and Landing (EDL) phases of the mission, specifically measurements from the accelerometers and gyros. PHX-M-ASE-2-EDL-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phxase_0002_phoenix_atmospheric_structure_experiment_archive:7e817e14","title":"ATM Volume phxase_0002 (Phoenix Atmospheric Structure Experiment Archive)","description":"This volume contains time ordered records of measured acceleration, derived velocity, derived position, derived atmospheric properties and, other quantities determined from IMU (ASE) measurements recorded during the EDL of PHX. PHX-M-ASE-5-EDL-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phxwnd_0001_phoenix_mars_telltale_wind_velocity_direction:e248e5ba","title":"ATM Volume phxwnd_0001 (Phoenix Mars Telltale Wind Velocity & Direction)","description":"This volume contains Telltale Experiment (TT) results from the PHOENIX Lander mission. PHX-M-TT-5-WIND-VEL-DIR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxwnd_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vl_0001_vl_0002_viking_lander_images:d41d8cd9","title":"ATM Volume vl_0001, vl_0002 (Viking Lander Images)","description":"These volumes contain Viking Lander EDR images and ancillary files. Each volume also contains a complete set of documentation and errata files that describe the archive and EDR images. 1.VL1/VL2 MARS LCS EXPERIMENT DATA RECORD V1.0 The data set consists of EDR images from the Viking Lander spacecraft.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vl_0001, vl_0002 (Viking Lander Images)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vl_1001_viking_lander_products:6e4f99af","title":"ATM Volume vl_1001 (Viking Lander Products)","description":"This volume contains data from the Viking Lander 1 & 2 spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO: 1.VL1-M-MET-4-BINNED-P-T-V-CORR-V1.0 This data set contains binned and splined data obtained from the Viking Meteorology Instrument System (VMIS) through portions of the Viking Lander 1 mission. The data set consists of mean values of pressure, temperature, and wind speed (zonal and meridional) calculated for 25 bins of equal duration per day. 2.VL1/VL2-M-MET-4-DAILY-AVG-PRESSURE-V1.0 This data set contains summary pressure data obtained from the Viking Meteorology Instrument System (VMIS) through the duration of the Viking Lander 1 and 2 missions. The data are derived from the ambient pressure sensor carried onboard the Landers. The data set consists of the daily average pressure values and relevant statistics presented on a sol by sol basis. 3.VL1/VL2-M-LCS-5-ATMOS-OPTICAL-DEPTH-V1.0 Viking Lander camera images of the Sun were used to compute total normal atmospheric optical depth at the two landing sites over a period of about 900 Mars days. This data set contains 1044 measurements of optical depth and associated error estimates. The optical depths were derived from Sun diode images, which were obtained by the Lander cameras at a wavelength of 0.67 micrometers. 4.VL1/VL2-M-MET-3-P-V1.0 This data set contains the martian surface atmospheric pressure readings obtained through much of the duration of the Viking Lander 1 and 2 missions (data are included for Viking Lander 1 sols 0 - 2245 and Viking Lander 2 sols 0 - 1050). The data are derived from the ambient pressure sensor carried onboard the Landers and values are presented on a point by point basis. 5.VL1/VL2-M-MET-4-BINNED-P-T-V-V1.0 This data set contains binned and splined data obtained from the Viking Meteorology Instrument System (VMIS) through most of the Viking Lander 2 mission and the early days of the Lander 1 mission. The data set consists of mean values of pressure, temperature, and wind speed (zonal, meridional, and combined) and relevant statistics and warning flags calculated for 25 bins of equal duration per day.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vl_1002_viking_lander_products:2d51c11b","title":"ATM Volume vl_1002 (Viking Lander Products)","description":"This volume contains archival data produced from the Viking Lander missions to Mars. The data sets included were produced from the Lander Footpad Temperature Sensors. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1.VL1/VL2-M-FTS-3-FOOTPAD-TEMP-V1.0 This data set contains the Martian near-surface temperatures obtained from the Viking Lander 1 and 2 thermocouple footpad temperature sensors. The data set is composed of the following parameter fields (listed as the field name followed by a description). 2.VL1/VL2-M-FTS-4-SOL-AVG-FTPD-TEMP-V1.0 This data set contains sol averages of the Martian near-surface temperatures obtained from the Viking Lander 1 and 2 thermocouple footpad temperature sensors. The data set consists of the daily average footpad temperature values and relevant statistics presented on a sol by sol basis. The data set is composed of the following parameter fields (listed as the field name followed by a description).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vo_0001_viking_orbiter_irtm:d41d8cd9","title":"ATM Volume vo_0001 (Viking Orbiter IRTM)","description":"This volume contains a single data set from the Viking Orbiter spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO: 1.VO1/VO2 MARS INFRARED THERMAL MAPPER RESAMPLED DATA V1.0 This data set contains the Infrared Thermal Mapping (IRTM) data of Mars acquired by the Viking orbiters. The database contains the time, geometry, and radiative parameters obtained by the IRTM instrument.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vo_0001 (Viking Orbiter IRTM)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vo_1001_vo_1032_vo_1051_vo_1064_viking_orbiter_images:d41d8cd9","title":"ATM Volume vo_1001 - vo_1032, vo_1051 - vo_1064 (Viking Orbiter Images)","description":"These volumes contain compressed level-2 (unprocessed) images and subsampled browse images from the Viking Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks. 1.VO1/VO2 MARS VISUAL IMAGING SS EXPRMNT DATA RECORD V2.0 The data set consists of compressed images from the Viking Orbiter spacecraft. The images are compressed using a Huffman encoding scheme. 2.VO1/VO2 MARS VISUAL IMAGING SS EXPRMNT DATA REC BROWSE V2.0 This data set consists of subsampled browse images from the Viking Orbiter spacecraft. The image data are not compressed but subsampled by a factor of 4 in both lines and samples.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vo_1001 - vo_1032, vo_1051 - vo_1064 (Viking Orbiter Images)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vo_3001_viking_orbiter_mawd:f789f723","title":"ATM Volume vo_3001 (Viking Orbiter MAWD)","description":"This volume contains data from the Viking Orbiter spacecraft MAWD experiments. It also contains documentation in the form of ancillary files, to support access of the data. 1.VO1/VO2 MARS ATMOSPHERIC WATER DETECTOR 4 V1.0 This data set consists of the raster-averaged radiant intensities and associated data parameters produced from data acquired by the Mars Atmospheric Water Detectors (MAWD) onboard the Viking Orbiters. The basic observations give temporal coverage spanning just over two martian years and variable, but extensive, spatial coverage of the planet. MAWD was a five-channel grating spectrometer measuring solar radiation reflected from the surface and atmosphere of Mars in and out of water vapor bands in the 1.4 micrometer spectral interval. The data set described here contains the solar reflected radiant intensities (i.e., radiances) measured by MAWD, derived water vapor column abundances, a derived '1.4-micrometer brightness', and ancillary data (e.g., viewing geometry, surface elevation and airmass).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vo_3002_viking_orbiter_irtm:f7b75140","title":"ATM Volume vo_3002 (Viking Orbiter IRTM)","description":"This volume contains data derived from the Viking Orbiter spacecraft IRTM experiments. It also contains documentation in the form of ancillary files, to support access of the data. 1.VO1/VO2-M-IRTM-5-BINNED/CLOUDS-V1.0 This data set, derived from the Viking Orbiter Infrared Thermal Mapper (IRTM) data set, has been binned in both space and time. It consists of two complementary portions, water ice cloud observations and surface observations. An algorithm for detecting clouds was employed, based upon the contrasts among the brightness temperatures derived from the 7, 9, and 20 micrometer IRTM channels. Water ice clouds were identified by their characteristic thermal signature. The IRTM observations in which clouds were detected were binned at 2 x 2 degree spatial (latitude, longitude) resolution for every 10 degrees in areocentric solar longitude.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vomr_0001_mars_clouds:60baf1a8","title":"ATM Volume vomr_0001 (Mars Clouds)","description":"This volume contains a single data set from the Mariner 9 and Viking Orbiter spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO: MR9/VO1/VO2-M-ISS/VIS-5-CLOUD-V1.0 This data set consists of a catalog of clouds observed in Mariner 9 and Viking Orbiter images. Seven 'cloud types' were defined according to easily observable objective morphologic criteria. The entire Mariner 9 and Viking Orbiter image data sets (approximately 7400 and over 50000 images, respectively) were examined at least twice, by two separate observers. Cloud occurrences were compiled by examining images for specific cloud morphologies, examining the same area at different times, utilizing limb images, and consulting photomosaics to determine the spatial relations of cloud obscurations. The data set contains details of the cloud occurrences and the images in which they were observed.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vomr_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0010_cocirs_0011_cocirs_0012_cocirs_0101_cocirs_0102_cocirs_0103_cocirs_0104_cocirs_0107_cocirs_0110_cocirs_0201_cocirs_0205_cocirs_0207_cocirs_0209_cocirs_0210_cocirs_0301_cocirs_0304_cocirs_0306_cassini_cirs_jupiter_raw_and_calibrated_data_archive:4d41dbce","title":"ATM Volume cocirs_0010 , cocirs_0011 , cocirs_0012 , cocirs_0101 , cocirs_0102 , cocirs_0103 , cocirs_0104 , cocirs_0107 , cocirs_0110 , cocirs_0201 , cocirs_0205 , cocirs_0207 , cocirs_0209 , cocirs_0210 , cocirs_0301 , cocirs_0304 , cocirs_0306 (Cassini Cirs Jupiter Raw and Calibrated Data Archive)","description":"These volumes contain infrared interferograms and spectra from the Cassini CIRS Instrument. These volumes also contain Cassini CIRS TSDR (Time-Sequential Data Record) products, and documentation which describes the TSDRs. CO-J-CIRS-2/3/4-TSDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/review/CIRSV2/COCIRS_0306","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0001_cassini_ultraviolet_imaging_spectrograph_data:151f53dd","title":"ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2000-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-J-UVIS-2-CUBE-V1.2 2. CO-J-UVIS-2-SPEC-V1.2 3. CO-J-UVIS-2-SSB-V1.2 4. CO-J-UVIS-2-WAV-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:coiss_0011_cassini_iss_experiment_data_records_and_calibration_files:8e3ca792","title":"ATM Volume coiss_0011 (CASSINI ISS EXPERIMENT DATA RECORDS AND CALIBRATION FILES)","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras. CO_CAL_ISSNA/ISSWA_2_EDR_V4.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coiss_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0002_cassini_ultraviolet_imaging_spectrograph_data:08537b20","title":"ATM Volume couvis_0002 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-J-UVIS-2-CUBE-V1.2 2. CO-J-UVIS-2-SPEC-V1.2 3. CO-J-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gbat_0001_spectrophotometry_of_the_jovian_planets_and_titan:ac90c4e0","title":"ATM Volume gbat_0001 (Spectrophotometry of the Jovian Planets and Titan)","description":"This volume contains archival data produced from ground based observations of the Jovian planets and Titan tabulating the methane absorption coefficient and the full disk albedos of the Jovian planets and Titan at wavelengths from 300 nm to 1000 nm. 1.ESO-J/S/N/U-SPECTROPHOTOMETER-4-V2.0 Full-disk albedo spectra of the jovian planets and Titan were derived from observations at the European Southern Observatory in July 1995.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gbat_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:go_0016_go_0022_galileo_orbiter_images:d41d8cd9","title":"ATM Volume go_0016 - go_0022 (Galileo Orbiter Images)","description":"These volumes contain images from the Galileo Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_0016 - go_0022 (Galileo Orbiter Images)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:go_1005_go_1007_go_1104_go_1119_galileo_orbiter_nims_data:d41d8cd9","title":"ATM Volume go_1005 - go_1007 , go_1104 - go_1119 (Galileo Orbiter NIMS Data)","description":"These volumes contain data from the Galileo Orbiter NIMS instrument. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1005 - go_1007 , go_1104 - go_1119 (Galileo Orbiter NIMS Data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gopr_5001_gopr_5002_galileo_ppr:211a88de","title":"ATM Volume gopr_5001 , gopr_5002 (Galileo PPR)","description":"This volume contains data records (R_EDRs and RDRs) for the Photopolarimeter/Radiometer (PPR) during the Jupiter Orbital phase of the Galileo Mission. 1.GO-J-PPR-2-REDR-V1.0 2.GO-J-PPR-3-RDR-V1.0 These volumes contain the raw and reduced data archive from the Galileo Orbiter Photopolarimeter/Radiometer (PPR) instrument. All observations from orbit G1 up to and including orbit E11 are included on GOPR_5001; and observations from orbit E12 up to and including orbit I33 are included on GOPR_5002.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gouv_0002_gouv_0003_galileo_ultraviolet_spectrometer_data:ae349f91","title":"ATM Volume gouv_0002 , gouv_0003 (GALILEO ULTRAVIOLET SPECTROMETER DATA)","description":"This volume contains raw data records for the Ultraviolet Spectrometer (UVS) and Extreme Ultraviolet Spectrometer (EUV) during the Jupiter Orbital phase of the Galileo Mission. 1.GO-J-EUV-2-EDR-JUPITER-V1.0 2.GO-J-UVS-2-EDR-JUPITER-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gp_0001_galileo_probe_archive:e73d6a20","title":"ATM Volume gp_0001 (Galileo Probe Archive)","description":"This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. 1.GP-J-ASI-3-ENTRY-V1.0 2.GP-J-DWE-3-ENTRY-V1.0 3.GP-J-EPI-3-ENTRY-V1.0 4.GP-J-HAD-3-ENTRY-V1.0 5.GP-J-LRD-3-ENTRY-V1.0 6.GP-J-NEP-3-ENTRY-V1.0 7.GP-J-NFR-3-ENTRY-V1.0 8.GP-J-NMS-3-ENTRY-V1.0 These data sets correspond as follows: 1.ASI - This data set contains data from the Atmospheric Structure Instrument. 2.DWE - This data set contains data from the Doppler Wind Experiment, which is not an actual instrument on board the Probe but an analysis of the radio signals to determine the atmospheric winds. 3.EPI - This data set contains data from the Energetic Particle Instrument. 4.HAD - This data set contains data from the Helium Abundance Detector. 5.LRD - This data set contains data from the Lightning and Radio Emission Detector. 6.NEP - This data set contains data from the Nephelometer. 7.NFR - This data set contains data from the Net Flux Radiometer. 8.NMS - This data set contains data from the Neutral Mass Spectrometer.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnogrv_0001_juno_outer_cruise_raw_rs_gravity_data:0a4355ee","title":"ATM Volume jnogrv_0001 (JUNO OUTER CRUISE RAW RS GRAVITY DATA)","description":"This archive contains raw data and ancillary files for the gravity science from the Juno spacecraft during outer cruise between the Earth Flyby in October 2013 to Orbit Insertion in July 2016. JUNO OUTER CRUISE RAW GRAVITY SCIENCE 1 V1.0 Raw gravity science data and ancillary files for the Juno outer cruise phase.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnogrv_0002_juno_gravity_science_instrument_derived_l_2_data:5b3b2be6","title":"ATM Volume jnogrv_0002 (JUNO GRAVITY SCIENCE INSTRUMENT DERIVED L-2 DATA)","description":"This volume contains derived gravity science data from the Juno gravity science investigation. JUNO DERIVED RADIO SCIENCE GRAVITY DATA V1.0 Juno reduced gravity data.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnogrv_1001_juno_jupiter_raw_rs_gravity_data:de617829","title":"ATM Volume jnogrv_1001 (JUNO JUPITER RAW RS GRAVITY DATA)","description":"This archive contains raw data and ancillary files from the Juno spacecraft during the science mission phase starting in July 2016. JUNO JUPITER RAW GRAVITY SCIENCE 1 V1.0 Raw gravity science data and ancillary files for the Juno outer cruise phase.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1000_juno_jiram_data:524435a4","title":"ATM Volume jnojir_1000 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated. JUNO JUPITER JIRAM EXPERIMENT DATA RECORD V1.0 This data set contains the CODMAC Level 2 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1001_jnojir_1002_jnojir_1003_jnojir_1004_jnojir_1005_jnojir_1006_jnojir_1007_jnojir_1008_jnojir_1009_jnojir_1010_jnojir_1011_jnojir_1012_jnojir_1013_jnojir_1014_jnojir_1015_jnojir_1016_jnojir_1017_jnojir_1018_jnojir_1019_jnojir_1020_jnojir_1021_jnojir_1022_jnojir_1023_jnojir_1024_jnojir_1025_jnojir_1026_jnojir_1027_jnojir_1028_jnojir_1029_jnojir_1030_jnojir_1031_jnojir_1032_jnojir_1033_jnojir_1034_jnojir_1035_jnojir_1036_jnojir_1037_jnojir_1038_jnojir_1039_jnojir_1040_jnojir_1041_jnojir_1042_jnojir_1043_jnojir_1044_jnojir_1045_jnojir_1046_jnojir_1047_jnojir_1048_jnojir_1049_jnojir_1050_jnojir_1051_jnojir_1052_jnojir_1053_jnojir_1054_jnojir_1055_jnojir_1056_jnojir_1057_jnojir_1058_jnojir_1060_jnojir_1061_jnojir_1062_jnojir_1063_jnojir_1064_jnojir_1065_jnojir_1066_jnojir_1067_jnojir_1068_juno_jiram_data:b6d25e60","title":"ATM Volume jnojir_1001 , jnojir_1002 , jnojir_1003 , jnojir_1004 , jnojir_1005 , jnojir_1006 , jnojir_1007 , jnojir_1008 , jnojir_1009 , jnojir_1010 , jnojir_1011 , jnojir_1012 , jnojir_1013 , jnojir_1014 , jnojir_1015 , jnojir_1016 , jnojir_1017 , jnojir_1018 , jnojir_1019 , jnojir_1020 , jnojir_1021 , jnojir_1022 , jnojir_1023 , jnojir_1024 , jnojir_1025 , jnojir_1026 , jnojir_1027 , jnojir_1028 , jnojir_1029 , jnojir_1030 , jnojir_1031 , jnojir_1032 , jnojir_1033 , jnojir_1034 , jnojir_1035 , jnojir_1036 , jnojir_1037 , jnojir_1038 , jnojir_1039 , jnojir_1040 , jnojir_1041 , jnojir_1042 , jnojir_1043 , jnojir_1044 , jnojir_1045 , jnojir_1046 , jnojir_1047 , jnojir_1048 , jnojir_1049 , jnojir_1050 , jnojir_1051 , jnojir_1052 , jnojir_1053 , jnojir_1054 , jnojir_1055 , jnojir_1056 , jnojir_1057 , jnojir_1058 , jnojir_1060 , jnojir_1061 , jnojir_1062 , jnojir_1063 , jnojir_1064 , jnojir_1065 , jnojir_1066 , jnojir_1067 , jnojir_1068 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated. JUNO JUPITER JIRAM EXPERIMENT DATA RECORD V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2000_juno_jiram_data:871b2e46","title":"ATM Volume jnojir_2000 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2013-10-09. JUNO MOON JIRAM EXPERIMENT DATA RECORD V3.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2001_jnojir_2002_jnojir_2003_juno_jiram_data:feaa6b74","title":"ATM Volume jnojir_2001 , jnojir_2002 , jnojir_2003 , (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2016-07-10 to 2016-07-20. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2004_juno_jiram_data:a2b3bb68","title":"ATM Volume jnojir_2004 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-02-01 to 2017-02-03. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2005_juno_jiram_data:f346ee21","title":"ATM Volume jnojir_2005 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-03-26 to 2017-03-27. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2006_juno_jiram_data:671e5b08","title":"ATM Volume jnojir_2006 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-05-18 to 2017-05-22. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2007_jnojir_2008_juno_jiram_data:31bfb064","title":"ATM Volume jnojir_2007 , jnojir_2008 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-07-10 to 2017-07-11. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2009_jnojir_2010_juno_jiram_data:7a557e09","title":"ATM Volume jnojir_2009 , jnojir_2010 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-10-23 to 2017-10-25. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2011_juno_jiram_data:f57c15bf","title":"ATM Volume jnojir_2011 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-02-06 to 2018-02-08. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2012_juno_jiram_data:eda10a07","title":"ATM Volume jnojir_2012 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-03-31 to 2018-04-01. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2013_jnojir_2014_juno_jiram_data:23af089a","title":"ATM Volume jnojir_2013 , jnojir_2014 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-05-23 to 2018-05-25. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2015_juno_jiram_data:3c1b196d","title":"ATM Volume jnojir_2015 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-09-06 to 2018-09-07. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2016_juno_jiram_data:ba26f825","title":"ATM Volume jnojir_2016 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-10-29. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2017_juno_jiram_data:da100278","title":"ATM Volume jnojir_2017 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-12-20 to 2018-12-21. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2018_juno_jiram_data:1f459b84","title":"ATM Volume jnojir_2018 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2019-02-12. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2019_juno_jiram_data:ffa6fa5c","title":"ATM Volume jnojir_2019 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-04-05 and 2019-04-06. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2020_juno_jiram_data:bddde4aa","title":"ATM Volume jnojir_2020 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-05-28 and 2019-05-29. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2021_juno_jiram_data:a9eca9db","title":"ATM Volume jnojir_2021 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-07-20 and 2019-07-21. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2022_juno_jiram_data:f90968d7","title":"ATM Volume jnojir_2022 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-09-11 and 2019-09-12. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2023_juno_jiram_data:0dbc91ea","title":"ATM Volume jnojir_2023 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-11-03 and 2019-11-04. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2024_juno_jiram_data:7a0b3df4","title":"ATM Volume jnojir_2024 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2020-02-16. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2025_jnojir_2026_jnojir_2027_juno_jiram_data:2c778b3d","title":"ATM Volume jnojir_2025 , jnojir_2026 , jnojir_2027 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2019-12-26. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2028_juno_jiram_data:d9e4f328","title":"ATM Volume jnojir_2028 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-07-24 and 2020-07-25.\" JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2029_juno_jiram_data:bbd062e9","title":"ATM Volume jnojir_2029 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-09-15 and 2020-09-16. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2030_jnojir_2031_juno_jiram_data:27832dc4","title":"ATM Volume jnojir_2030 , jnojir_2031 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-11-07 and 2020-11-08. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2032_juno_jiram_data:1fae5be8","title":"ATM Volume jnojir_2032 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-02-20 and 2021-02-22. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2033_juno_jiram_data:de0acb34","title":"ATM Volume jnojir_2033 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-04-15 and 2021-04-16. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2034_juno_jiram_data:8204280a","title":"ATM Volume jnojir_2034 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-06-07 and 2021-07-19. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2035_juno_jiram_data:024bc836","title":"ATM Volume jnojir_2035 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-07-20 and 2021-07-21. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2036_juno_jiram_data:cfe1ef2b","title":"ATM Volume jnojir_2036 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-09-02 and 2021-09-03. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2037_juno_jiram_data:4657b1a0","title":"ATM Volume jnojir_2037 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2021-10-16. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2038_juno_jiram_data:262ae9f0","title":"ATM Volume jnojir_2038 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2021-11-29. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2039_juno_jiram_data:78cc7a74","title":"ATM Volume jnojir_2039 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2022-01-12. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2040_juno_jiram_data:6112f90f","title":"ATM Volume jnojir_2040 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2022-02-24 and 2022-02-25. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2041_juno_jiram_data:e860e26c","title":"ATM Volume jnojir_2041 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2022-04-09. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2042_juno_jiram_data:6aef4a8b","title":"ATM Volume jnojir_2042 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-05-22 and 2022-05-23. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2043_juno_jiram_data:8bc6c6a0","title":"ATM Volume jnojir_2043 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-07-04 and 2022-07-05. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2044_juno_jiram_data:d36a400e","title":"ATM Volume jnojir_2044 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-08-16 and 2022-08-18. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2045_juno_jiram_data:9164106e","title":"ATM Volume jnojir_2045 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2022-09-29 and 2022-09-30. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2046_juno_jiram_data:e9b7cbcb","title":"ATM Volume jnojir_2046 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2022-11-06 and 2022-11-07. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2047_juno_jiram_data:3ec13ed9","title":"ATM Volume jnojir_2047 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2022-12-14 and 2022-12-15. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2048_juno_jiram_data:1257fe3f","title":"ATM Volume jnojir_2048 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2023-01-21 and 2023-01-22. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2049_juno_jiram_data:c1bb6d9a","title":"ATM Volume jnojir_2049 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2023-02-28 and 2023-03-01. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2050_juno_jiram_data:fb6fe1ea","title":"ATM Volume jnojir_2050 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2023-04-08 and 2023-05-02. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2051_juno_jiram_data:17e12438","title":"ATM Volume jnojir_2051 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-05-15 and 2023-05-16. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2052_juno_jiram_data:45d5da41","title":"ATM Volume jnojir_2052 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-06-22 and 2023-06-26. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2053_juno_jiram_data:1d6eec33","title":"ATM Volume jnojir_2053 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-07-31 and 2023-08-02. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2054_juno_jiram_data:e60608f3","title":"ATM Volume jnojir_2054 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-09-07 and 2023-09-09. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2055_juno_jiram_data:1b6340d4","title":"ATM Volume jnojir_2055 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-10-14 and 2023-10-16. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2056_juno_jiram_data:9d84a254","title":"ATM Volume jnojir_2056 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates 2023-11-23. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2057_juno_jiram_data:523bd7ce","title":"ATM Volume jnojir_2057 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2023-12-30 and 2024-01-08 JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2058_juno_jiram_data:43de64ed","title":"ATM Volume jnojir_2058 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2024-02-03. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2061_juno_jiram_data:bb09ee38","title":"ATM Volume jnojir_2061 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2024-05-12. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2062_juno_jiram_data:073cf76e","title":"ATM Volume jnojir_2062 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2024-06-13 and 2024-06-14. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2063_juno_jiram_data:5041e313","title":"ATM Volume jnojir_2063 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date between 2024-07-16 and 2024-07-17. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2064_juno_jiram_data:24cf1b36","title":"ATM Volume jnojir_2064 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2024-08-18. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2065_juno_jiram_data:bee68f1f","title":"ATM Volume jnojir_2065 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2024-09-20. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2066_juno_jiram_data:3730f912","title":"ATM Volume jnojir_2066 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-10-22 and 2024-10-23. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2067_juno_jiram_data:6a6687f1","title":"ATM Volume jnojir_2067 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-11-24 and 2024-11-25. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2068_juno_jiram_data:cb4c2124","title":"ATM Volume jnojir_2068 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-12-27 and 2024-12-28. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_0000_juno_mwr:32304145","title":"ATM Volume jnomwr_0000 (JUNO MWR)","description":"This volume contains documentation and all available Juno MWR telemetry for spacecraft event times (SCET) 2011-08-24 to 2016-06-29. These are raw data and are not intended for use by the wider community. The companion volume JNOMWR_1000 contains calibrated useful for the wider public. JUNO MWR CRUISE/SKY EDR DATA RECORDS V1.2 The Juno MWR EDR data set in this volume includes all uncalibrated MWR science data records for the cruise phase of the Juno mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_0100_juno_mwr_jupiter_standard_raw_products:8d67c7f1","title":"ATM Volume jnomwr_0100 (JUNO MWR JUPITER STANDARD RAW PRODUCTS)","description":"This volume contains documentation and all available Juno MWR telemetry starting from spacecraft event time (SCET) 2016-07-06 to the end of the mission. JUNO JUPITER MWR 2 EXPERIMENT DATA RECORDS V2.0 The Juno MWR EDR data set in this volume includes uncalibrated MWR science data records from the Jupiter phase of the Juno mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_1000_juno_mwr:dc51ce33","title":"ATM Volume jnomwr_1000 (JUNO MWR)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_1100_juno_mwr_jupiter_standard_calibrated_products:b909ff7b","title":"ATM Volume jnomwr_1100 (JUNO MWR JUPITER STANDARD CALIBRATED PRODUCTS)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_2100_juno_mwr_jupiter_high_level_products:8a4dfec1","title":"ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnouvs_2001_juno_uvs_observations:be8055b7","title":"ATM Volume jnouvs_2001 (JUNO UVS OBSERVATIONS)","description":"This volume contains experiment data record (EDR) data acquired by the Juno Ultraviolet Spectrograph. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table. JUNO JUPITER UVS 2 EXPERIMENT DATA RECORD V1.0 The Juno Ultraviolet Spectrograph (UVS) CODMAC Level 2 Experiment Data Record is a collection of the far ultraviolet photon detections obtained by the UVS instrument, in raw form","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnouvs_3001_juno_uvs_observations:4a2106d6","title":"ATM Volume jnouvs_3001 (JUNO UVS OBSERVATIONS)","description":"This volume contains reduced data record (RDR) data acquired by the Juno Ultraviolet Spectrograph. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table. JUNO JUPITER UVS 3 REDUCED DATA RECORD V1.0 The Juno Ultraviolet Spectrograph (UVS) CODMAC Level 3 Reduced Data Record is a collection of the far ultraviolet photon detections obtained by the UVS instrument, corrected, calibrated, and located in space and time.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_3001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnouvs_5001_juno_uvs_observations:0fcd642a","title":"ATM Volume jnouvs_5001 (JUNO UVS OBSERVATIONS)","description":"This volume contains derived data record (DDR) data acquired by the Juno Ultraviolet Spectrograph. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table. JUNO JUPITER UVS 5 DERIVED DATA RECORD V1.0 The Juno Ultraviolet Spectrograph (UVS) CODMAC Level 5 Derived Data Record is a collection of the far ultraviolet photon detections obtained by the UVS instrument, corrected, calibrated, and located in space and time.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0005_sl9_0006_shoemaker_levy_9_impact_observations_from_hubble_space_telescope_wfpc2:ad3ec6b2","title":"ATM Volume sl9_0005 , sl9_0006 (Shoemaker-Levy 9 Impact Observations from Hubble Space Telescope WFPC2)","description":"These volumes contain observations of Jupiter during the Comet Shoemaker-Levy 9 impact events by the Hubble Space Telescope in July 1994. These data consist of images by the Wide Field Planetary Camera 2 (WFPC2). 1. HST J WFPC2 SL9 IMPACT V1.0 This data set consists of images of Jupiter taken by the Hubble Space Telescope (HST) during the Comet Shoemaker-Levy 9 (SL9) impact period, which occurred July 16-22, 1994. The impact data are supplemented by one multi-color rotation of the planet (6 orbits of data) on July 15 before any of the fragments impacted Jupiter's predawn hemisphere. A follow-up rotation was obtained Aug 24, a month after the last impacts to record the nature of dispersal of material.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0008_sl9_0009_sl9_0010_sl9_0011_sl9_0012_shoemaker_levy_9_impact_observations_from_the_anglo_australian_observatory:61f05423","title":"ATM Volume sl9_0008 , sl9_0009 , sl9_0010 , sl9_0011 , sl9_0012 (Shoemaker-Levy 9 Impact Observations from the Anglo Australian Observatory)","description":"These volumes contain observations of Jupiter during the Comet Shoemaker-Levy9 impact events from the Anglo-Australian Observatory. 1. Anglo-Australian Observatory Data from SL9 Impacts This data set contains imaging, spectroscopy, and spectral mapping of Jupiter from July 16, 1994 through July 23, 1994. This includes data from the C, D, G, K, N, R, V, and W impacts in addition to before and after observations for baseline and comparison.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_0006_vg_0008_vg_0013_vg_0025_voyager_iss:d41d8cd9","title":"ATM Volume vg_0006 - vg_0008, vg_0013 - vg_0025 (Voyager ISS)","description":"These volumes contain compressed level-2 (unprocessed) images from the Voyager Jupiter encounters. They also contain documentation, software and index directories to support access to the images files on these disks. 1. VG1/VG2 JUPITER IMAGING SCIENCE SUBSYSTEM EDITED EDR V1.0 This data set contains images taken by NASA's twin Voyager spacecraft during their encounters with the planet Jupiter. These are full resolution digital images returned by the Voyager cameras. No additional processing has been performed to enhance the images. The images are compressed but can be restored to their full resolution using algorithms described in documentation on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vg_0006 - vg_0008, vg_0013 - vg_0025 (Voyager ISS)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2001_voyager_iris:f27a14dd","title":"ATM Volume vg_2001 (Voyager IRIS)","description":"This volume contains four data sets from the Voyager 1 & 2 spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO: 1. VG1/VG2 JUPITER IRIS 3 RDR V1.0 2. VG2 NEPTUNE IRIS 3 RDR V1.0 3. VG1/VG2 SATURN IRIS 3 RDR V1.0 4. VG2 URANUS IRIS 3 RDR V1.0 These data sets contains measurements from both the infrared interferometer spectrometer and the broadband reflected solar radiometer and ancillary data. The data set is ordered by time as measured by the Flight Data System Count (FDSC). Also included is pointing and other information on the geometry associated with a given data record. Each record of the data set contains a header, radiometer observations, and interferometer observations.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2101_voyager_uvs:c2a95332","title":"ATM Volume vg_2101 (Voyager UVS)","description":"This volume contains two data sets from the Voyager 1 & 2 spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this volume. 1. VG1/VG2 JUPITER UVS 5 BRIGHTNESS NORTH/SOUTH MAPS V1.0 2. VG1/VG2 SATURN UVS 5 BRIGHTNESS NORTH/SOUTH MAPS V1.0 This volume contains maps of hydrogen Lyman-alpha and molecular hydrogen bands derived from Voyager 1 and 2 Ultraviolet Spectrometer (UVS) observations obtained during North/South mapping sequences of Jupiter and Saturn. The incorporated pointing information has been updated with image navigation techniques (C-smithed). Data are grouped in subdirectories for each of the two planets; within each subdirectory are the data files (further separated by spacecraft) and the associated PDS label files.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2102_voyager_iris_derived_n_s_grs_parameters:31d6c8de","title":"ATM Volume vg_2102 (Voyager IRIS Derived N/S & GRS Parameters)","description":"This volume contains data produced from the Voyager IRIS experiments. Atmospheric parameters derived from IRIS spectral data are included. It contains the following data sets and ancillary documentation to support access of the data on this volume. 1. VG1/VG2 JUPITER IRIS 5 NORTH/SOUTH ATMOS PARAMETERS V1.0 2. VG1/VG2 SATURN IRIS 5 NORTH/SOUTH ATMOS PARAMETERS V1.0 3. VG1/VG2 JUPITER IRIS DERIVED GREAT RED SPOT PARAMETERS V1.0 This volume contains maps of atmospheric parameters derived from Voyager 1 and 2 IRIS spectral observations of Jupiter and Saturn. The derived quantities include maps of ammonia and para-hydrogen abundance, atmospheric opacity and temperatures at several pressure levels, and IRIS radiometry. Data were available for North/South mapping sequences at Jupiter and Saturn and high-resolution observations of the Great Red Spot. The incorporated pointing information has been updated with image navigation techniques (C-smithed). Data are separated by spacecraft and target (Jupiter, Saturn, and Red Spot) and are accompanied by PDS label files.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2201_vg_2202_vg_2203_voyager_1_uvs:ff5067ab","title":"ATM Volume vg_2201 , vg_2202 , vg_2203 (Voyager 1 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG1-J-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 1 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Jupiter.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2204_vg_2205_vg_2206_voyager_2_uvs:fb7effbb","title":"ATM Volume vg_2204 , vg_2205 , vg_2206 (Voyager 2 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-J-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Jupiter.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0401_cocirs_0402_cocirs_0403_cocirs_0404_cocirs_0405_cocirs_0406_cocirs_0407_cocirs_0408_cocirs_0409_cocirs_0410_cocirs_0411_cocirs_0412_cocirs_0501_cocirs_0502_cocirs_0503_cocirs_0504_cocirs_0505_cocirs_0506_cocirs_0507_cocirs_0508_cocirs_0509_cocirs_0510_cocirs_0511_cocirs_0512_cocirs_0601_cocirs_0602_cocirs_0603_cocirs_0604_cocirs_0605_cocirs_0606_cocirs_0607_cocirs_0608_cocirs_0609_cocirs_0610_cocirs_0611_cocirs_0612_cocirs_0701_cocirs_0702_cocirs_0703_cocirs_0704_cocirs_0705_cocirs_0706_cocirs_0707_cocirs_0708_cocirs_0709_cocirs_0710_cocirs_0711_cocirs_0712_cocirs_0801_cocirs_0802_cocirs_0803_cocirs_0804_cocirs_0805_cocirs_0806_cocirs_0807_cocirs_0808_cocirs_0809_cocirs_0810_cocirs_0811_cocirs_0812_cocirs_0901_cocirs_0902_cocirs_0903_cocirs_0904_cocirs_0905_cocirs_0906_cocirs_0907_cocirs_0908_cocirs_0909_cocirs_0910_cocirs_0911_cocirs_0912_cocirs_1001_cocirs_1002_cocirs_1004_cocirs_1005_cocirs_1006_cocirs_1007_cocirs_1008_cocirs_1009_cocirs_1010_cocirs_1011_cocirs_1012_cocirs_1101_cocirs_1102_cocirs_1103_cocirs_1104_cocirs_1105_cocirs_1106_cocirs_1107_cocirs_1108_cocirs_1109_cocirs_1110_cocirs_1111_cocirs_1112_cocirs_1201_cocirs_1202_cocirs_1203_cocirs_1204_cocirs_1205_cocirs_1206_cocirs_1207_cocirs_1208_cocirs_1209_cocirs_1210_cocirs_1211_cocirs_1212_cocirs_1301_cocirs_1302_cocirs_1303_cocirs_1304_cocirs_1305_cocirs_1306_cocirs_1307_cocirs_1308_cocirs_1309_cocirs_1310_cocirs_1311_cocirs_1312_cocirs_1401_cocirs_1402_cocirs_1403_cocirs_1404_cocirs_1405_cocirs_1406_cocirs_1407_cocirs_1408_cocirs_1409_cocirs_1410_cocirs_1411_cocirs_1412_cocirs_1501_cocirs_1502_cocirs_1503_cocirs_1504_cocirs_1505_cocirs_1506_cocirs_1507_cocirs_1508_cocirs_1509_cocirs_1510_cocirs_1511_cocirs_1512_cocirs_1601_cocirs_1602_cocirs_1603_cocirs_1604_cocirs_1605_cocirs_1606_cocirs_1607_cocirs_1608_cocirs_1609_cocirs_1610_cocirs_1611_cocirs_1612_cocirs_1701_cocirs_1702_cocirs_1703_cocirs_1704_cocirs_1705_cocirs_1706_cocirs_1707_cocirs_1708_cocirs_1709_cassini_infrared_spectra:d9e7b237","title":"ATM Volume cocirs_0401 , cocirs_0402 , cocirs_0403 , cocirs_0404 , cocirs_0405 , cocirs_0406 , cocirs_0407 , cocirs_0408 , cocirs_0409 , cocirs_0410 , cocirs_0411 , cocirs_0412 , cocirs_0501 , cocirs_0502 , cocirs_0503 , cocirs_0504 , cocirs_0505 , cocirs_0506 , cocirs_0507 , cocirs_0508 , cocirs_0509 , cocirs_0510 , cocirs_0511 , cocirs_0512 , cocirs_0601 , cocirs_0602 , cocirs_0603 , cocirs_0604 , cocirs_0605 , cocirs_0606 , cocirs_0607 , cocirs_0608 , cocirs_0609 , cocirs_0610 , cocirs_0611 , cocirs_0612 , cocirs_0701 , cocirs_0702 , cocirs_0703 , cocirs_0704 , cocirs_0705 , cocirs_0706 , cocirs_0707 , cocirs_0708 , cocirs_0709 , cocirs_0710 , cocirs_0711 , cocirs_0712 , cocirs_0801 , cocirs_0802 , cocirs_0803 , cocirs_0804 , cocirs_0805 , cocirs_0806 , cocirs_0807 , cocirs_0808 , cocirs_0809 , cocirs_0810 , cocirs_0811 , cocirs_0812 , cocirs_0901 , cocirs_0902 , cocirs_0903 , cocirs_0904 , cocirs_0905 , cocirs_0906 , cocirs_0907 , cocirs_0908 , cocirs_0909 , cocirs_0910 , cocirs_0911 , cocirs_0912 , cocirs_1001 , cocirs_1002 , cocirs_1004 , cocirs_1005 , cocirs_1006 , cocirs_1007 , cocirs_1008 , cocirs_1009 , cocirs_1010 , cocirs_1011 , cocirs_1012 , cocirs_1101 , cocirs_1102 , cocirs_1103 , cocirs_1104 , cocirs_1105 , cocirs_1106 , cocirs_1107 , cocirs_1108 , cocirs_1109 , cocirs_1110 , cocirs_1111 , cocirs_1112 , cocirs_1201 , cocirs_1202 , cocirs_1203 , cocirs_1204 , cocirs_1205 , cocirs_1206 , cocirs_1207 , cocirs_1208 , cocirs_1209 , cocirs_1210 , cocirs_1211 , cocirs_1212 , cocirs_1301 , cocirs_1302 , cocirs_1303 , cocirs_1304 , cocirs_1305 , cocirs_1306 , cocirs_1307 , cocirs_1308 , cocirs_1309 , cocirs_1310 , cocirs_1311 , cocirs_1312 , cocirs_1401 , cocirs_1402 , cocirs_1403 , cocirs_1404 , cocirs_1405 , cocirs_1406 , cocirs_1407 , cocirs_1408 , cocirs_1409 , cocirs_1410 , cocirs_1411 , cocirs_1412 , cocirs_1501 , cocirs_1502 , cocirs_1503 , cocirs_1504 , cocirs_1505 , cocirs_1506 , cocirs_1507 , cocirs_1508 , cocirs_1509 , cocirs_1510 , cocirs_1511 , cocirs_1512 , cocirs_1601 , cocirs_1602 , cocirs_1603 , cocirs_1604 , cocirs_1605 , cocirs_1606 , cocirs_1607 , cocirs_1608 , cocirs_1609 , cocirs_1610 , cocirs_1611 , cocirs_1612 , cocirs_1701 , cocirs_1702 , cocirs_1703 , cocirs_1704 , cocirs_1705 , cocirs_1706 , cocirs_1707 , cocirs_1708 , cocirs_1709 (Cassini Infrared Spectra)","description":"This data set comprises uncalibrated and calibrated data from the Cassini Composite Infrared Spectrometer (CIRS) instrument. The basic data is comprised of uncalibrated raw spectra, along with along with pointing and geometry information, and housekeeping information. Also included are calibrated power spectra, and documentation. CO-S-CIRS-2/3/4-TSDR-V4.0 CO-S-CIRS-5-CUBES-V2.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1709","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:coradr_5001_saturn_cassini_radar_radiometry:713b15ec","title":"ATM Volume coradr_5001 , (Saturn Cassini RADAR Radiometry)","description":"This volume contains Saturn global mapping radiometry scans. CO-S-RADAR-5-RADIOMETRY-V1.0 This data set comprises well-calibrated, high-resolution maps of Saturn’s thermal emission at 2.2-cm wavelength obtained by the Cassini RADAR radiometer through the Prime and Equinox Cassini missions, a period covering approximately six years. Also included are time-ordered data detailing the modeling results, referencing the midpoint of each radiometric integration period.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coradr_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0001_cors_0002_cors_0003_cors_0004_cors_0005_cors_0006_cors_0007_cors_0008_cors_0009_cors_0010_cassini_rss_raw_data_set_gwe1:25d883f3","title":"ATM Volume cors_0001 , cors_0002 , cors_0003 , cors_0004 , cors_0005 , cors_0006 , cors_0007 , cors_0008 , cors_0009 , cors_0010 (Cassini RSS Raw Data Set - GWE1)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the First Cassini Gravitational Wave Experiment conducted during the Quiet Cruise subphase of the Cassini mission. CO-X-RSS-1-GWE1-V1.0 These data are contained in ten Volumes (DVDs). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0021_cors_0022_cors_0023_cors_0024_cors_0025_cors_0026_cors_0027_cors_0028_cassini_rss_raw_data_set_sce1:3c463907","title":"ATM Volume cors_0021 , cors_0022 , cors_0023 , cors_0024 , cors_0025 , cors_0026 , cors_0027 , cors_0028 (Cassini RSS Raw Data Set - SCE1)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the First Cassini Solar Conjunction Experiment conducted during the Quiet Cruise subphase of the Cassini mission. (CO-SS-RSS-1-SCE1-V1.0) These data are contained in eight Volumes (DVDs). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0041_cors_0042_cors_0043_cors_0044_cors_0045_cors_0046_cors_0047_cors_0048_cors_0049_cors_0050_cassini_rss_raw_data_set_gwe2:ea35de4f","title":"ATM Volume cors_0041 , cors_0042 , cors_0043 , cors_0044 , cors_0045 , cors_0046 , cors_0047 , cors_0048 , cors_0049 , cors_0050 (Cassini RSS Raw Data Set - GWE2)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Second Cassini Gravitational Wave Experiment conducted during the Space Science subphase of the Cassini mission. CO-X-RSS-1-GWE2-V1.0 These data are contained in ten Volumes (DVDs). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0081_cors_0082_cors_0083_cors_0084_cors_0085_cassini_rss_raw_data_set_gwe3:1ef19241","title":"ATM Volume cors_0081 , cors_0082 , cors_0083 , cors_0084 , cors_0085 (Cassini RSS Raw Data Set - GWE3)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Third Cassini Gravitational Wave Experiment conducted during the Space Science subphase of the Cassini mission. CO-X-RSS-1-GWE3-V1.0 These data are contained in five Volumes (DVDs). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0101_cassini_rss_raw_data_set_engr1:9199bf2a","title":"ATM Volume cors_0101 (Cassini RSS Raw Data Set - ENGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enceladus Gravity experiment conducted on February 16 and 17, 2005 during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-ENGR1-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0102_cassini_rss_raw_data_set_tigr1:ab5a1086","title":"ATM Volume cors_0102 (Cassini RSS Raw Data Set - TIGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiment conducted on March 30, 2005 during the Tour subphase of the Cassini mission. These data are contained in one Volume (DVD). CO-SSA-RSS-1-TIGR1-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0103_cassini_rss_raw_data_set_sagr1_v1_0:2ca4b514","title":"ATM Volume cors_0103 (Cassini RSS Raw Data Set - SAGR1 V1.0)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on May 2 (DOY 122), May 4 (DOY 124), June 6 (DOY 157), June 9 (DOY 160), June 26 (DOY 177) and June 27 (DOY 178) 2005, during the Tour subphase of the Cassini mission. CO-S-RSS-1-SAGR1-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN) .","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0104_cors_0105_cors_0106_cors_0107_cors_0108_cors_0109_cors_0110_cors_0111_cors_0112_cors_0113_cors_0114_cors_0115_cors_0116_cassini_rss_raw_data_set_sroc1_v1_0:dc91c5e8","title":"ATM Volume cors_0104 , cors_0105 , cors_0106 , cors_0107 , cors_0108 , cors_0109 , cors_0110 , cors_0111 , cors_0112 , cors_0113 , cors_0114 , cors_0115 , cors_0116 (Cassini RSS Raw Data Set - SROC1 V1.0)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on May 3 (DOY 123), May 21 (DOY 141), June 8 (DOY 159), and June 26 (DOY 177) 2005, during the Tour subphase of the Cassini mission. CO-S-RSS-1-SROC1-V1.0 These data are contained in thirteen volumes (DVDs) - CORS_0104 through CORS_0116. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0117_cors_0118_cors_0119_cors_0120_cors_0121_cors_0122_cors_0123_cors_0124_cors_0125_cors_0126_cassini_rss_raw_data_set_sroc2:8d65e075","title":"ATM Volume cors_0117 , cors_0118 , cors_0119 , cors_0120 , cors_0121 , cors_0122 , cors_0123 , cors_0124 , cors_0125 , cors_0126 (Cassini RSS Raw Data Set - SROC2)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on July 15 (DOY 196), August 2 (DOY 214), August 20 (DOY 232), and September 5 (DOY 248) 2005, during the Tour subphase of the Cassini mission. CO-S-RSS-1-SROC2-V1.0 These data are contained in ten volumes (DVDs) - CORS_0117 through CORS_0126. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0127_cassini_rss_raw_data_set_sagr2:d1a281af","title":"ATM Volume cors_0127 (Cassini RSS Raw Data Set - SAGR2)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on July 13 (DOY 194), July 15 (DOY 196), August 1 (DOY 213), August 2 (DOY 214), August 20 (DOY 232), August 21 (DOY 233), August 23 (DOY 235), September 5 (DOY 248) and September 6 (DOY 249) 2005 during the Tour subphase of the Cassini mission. CO-S-RSS-1-SAGR2-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0128_cassini_rss_raw_data_set_hygr1:25966872","title":"ATM Volume cors_0128 (Cassini RSS Raw Data Set - HYGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Hyperion Gravity Science Enhancement experiments conducted on September 25 (DOY 268), and September 26 (DOY 269), 2005 and the Hyperion Mass Determination experiment conducted on September 25, (DOY 268), 2005, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-HYGR1-V1.0 These data are contained in one Volume (DVD), CORS_0128. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0129_cassini_rss_raw_data_set_scc1:fc0aba31","title":"ATM Volume cors_0129 (Cassini RSS Raw Data Set - SCC1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Solar Corona Characterization experiment conducted on July 15 (DOY 196), July 17 (DOY 198), July 21 (DOY 202), July 22 (DOY 203), July 23 (DOY 204), July 24 (DOY 205) and July 25 (DOY 206), 2005, during the Tour subphase of the Cassini mission. CO-SS-RSS-1-SCC1-V1.0 These data are contained in one Volume (DVD), CORS_0129. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0130_cassini_rss_raw_data_set_tigr2:0e0c3ef6","title":"ATM Volume cors_0130 (Cassini RSS Raw Data Set - TIGR2)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiment conducted on October 27 (DOY 300), October 29 (DOY 302), December 25 (DOY 359), December 27 (DOY 361) and December 28 (DOY 362) 2005 during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR2-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN) .","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0131_cassini_rss_raw_data_set_digr1:be7881f7","title":"ATM Volume cors_0131 (Cassini RSS Raw Data Set - DIGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Dione Gravity Science Enhancement experiment conducted on October 10 (DOY 283), and the Dione Mass Determination experiment conducted on October 11 and 12 (DOY 284-5), 2005, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-DIGR1-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0132_cassini_rss_raw_data_set_rhgr1:c7ac284d","title":"ATM Volume cors_0132 (Cassini RSS Raw Data Set - RHGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Rhea Gravity Science Enhancement experiment conducted on November 25 (DOY 329), and the Rhea Gravity Field Determination experiment conducted on November 26 and 27 (DOY 330-1), 2005, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-RHGR1-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0133_cassini_rss_raw_data_set_tigr3:66eeb9b4","title":"ATM Volume cors_0133 (Cassini RSS Raw Data Set - TIGR3)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination experiment conducted on February 27 (DOY 058), 2006, and the Titan Gravity Science Enhancement experiments conducted on February 27 (DOY 058), March 1 (DOY 060), March 18 (DOY 077), and March 19 (DOY 078) 2006, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR3-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0134_cors_0135_cors_0136_cors_0137_cors_0138_cors_0139_cors_0140_cassini_rss_raw_data_set_tboc1:25321d62","title":"ATM Volume cors_0134 , cors_0135 , cors_0136 , cors_0137 , cors_0138 , cors_0139 , cors_0140 (Cassini RSS Raw Data Set - TBOC1)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic and Occultation experiments conducted on March 18 and 19 (DOY 077 and 078) 2006, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TBOC1-V1.0 These data are contained in seven volumes (DVDs) - CORS_0134 through CORS_0140. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0141_cassini_rss_raw_data_set_tigr4:1460f309","title":"ATM Volume cors_0141 (Cassini RSS Raw Data Set - TIGR4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiments conducted on April 29 (DOY 119), May 1 (DOY 121), May 19 (DOY 139), and May 21 (DOY141), during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR4-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0142_cors_0143_cors_0144_cors_0145_cassini_rss_raw_data_set_tboc2:65b1a872","title":"ATM Volume cors_0142 , cors_0143 , cors_0144 , cors_0145 (Cassini RSS Raw Data Set - TBOC2)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic and Occultation experiments conducted on May 20 (DOY 140) 2006, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TBOC2-V1.0 These data are contained in seven volumes (DVDs) - CORS_0142 through CORS_0145. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0146_cassini_rss_raw_data_set_tigr5:b9823d1c","title":"ATM Volume cors_0146 (Cassini Rss Raw Data Set - TIGR5)","description":"This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on July 1 and July 2, 2006. CO-SSA-RSS-1-TIGR5-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0147_cassini_rss_raw_data_set_sagr3_v1_0:4ebd9007","title":"ATM Volume cors_0147 (Cassini Rss Raw Data Set - SAGR3 V1.0)","description":"This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on September 8 and 17, 2006 and the Saturn Gravity Field Determination experiment on September 9, 2006. CO-S-RSS-1-SAGR3-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0148_cassini_rss_raw_data_set_enoc1:c605224a","title":"ATM Volume cors_0148 (Cassini Rss Raw Data Set - ENOC1)","description":"This volume contains raw data and ancillary files from the Cassini radio science investigations during the Enceladus Occultation experiment on September 15, 2006. CO-SSA-RSS-1-ENOC1-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0149_cors_0150_cors_0151_cors_0152_cors_0153_cors_0154_cors_0155_cors_0156_cors_0157_cors_0158_cors_0159_cors_0160_cors_0161_cors_0162_cors_0163_cassini_rss_raw_data_set_sroc3:26c91af1","title":"ATM Volume cors_0149 , cors_0150 , cors_0151 , cors_0152 , cors_0153 , cors_0154 , cors_0155 , cors_0156 , cors_0157 , cors_0158 , cors_0159 , cors_0160 , cors_0161 , cors_0162 , cors_0163 (Cassini Rss Raw Data Set - SROC3)","description":"This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on September 15-17, 2006. CO-S-RSS-1-SROC3-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0164_cors_0165_cors_0166_cors_0167_cassini_rss_raw_data_set_scc2:ff017a34","title":"ATM Volume cors_0164 , cors_0165 , cors_0166 , cors_0167 (Cassini Rss Raw Data Set - SCC2)","description":"This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from July 22 until August 21, 2006. CO-SS-RSS-1-SCC2-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0168_cassini_rss_raw_data_set_tigr6:b4339deb","title":"ATM Volume cors_0168 (Cassini Rss Raw Data Set - TIGR6)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination experiment and Gravity Science Enhancement experiments conducted on December 27 and 28 (DOY 361-362), 2006, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR6-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0169_cassini_rss_raw_data_set_tigr7:080cb865","title":"ATM Volume cors_0169 (Cassini Rss Raw Data Set - TIGR7)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination and Gravity Science Enhancement experiments conducted on January 28 and 30, March 24 and 26 (DOY 028, 030, 084,086), 2007, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR7-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0170_cors_0171_cors_0172_cors_0173_cors_0174_cors_0175_cassini_rss_raw_data_set_tboc3:64393ec6","title":"ATM Volume cors_0170 , cors_0171 , cors_0172 , cors_0173 , cors_0174 , cors_0175 (Cassini Rss Raw Data Set - TBOC3)","description":"This volume contains archival raw, and ancillary/supporting radio science for the Cassini Radio Science Titan Bistatic and Occultation experiments conducted on March 25-26 (DOY 084 - 085) 2007, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TBOC3-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0176_cassini_rss_raw_data_set_tigr8:e9dcb364","title":"ATM Volume cors_0176 (CASSINI RSS RAW DATA SET - TIGR8)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination experiment conducted on June 29, 2007 and the Gravity Science Enhancement experiments conducted on May 27, May 29, June 28 and June 30, 2007 during the Tour subphase of the Cassini mission. These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-TIGR8-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0177_cassini_rss_raw_data_set_sagr4:1bcd9c80","title":"ATM Volume cors_0177 (Cassini Rss Raw Data Set - SAGR4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on May 10 and June 12, 2007, during the Tour subphase of the Cassini mission. These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR4-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0178_cors_0179_cors_0180_cors_0181_cors_0182_cassini_rss_raw_data_set_sroc4:15c4b1d6","title":"ATM Volume cors_0178 , cors_0179 , cors_0180 , cors_0181 , cors_0182 (Cassini Rss Raw Data Set - SROC4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on May 10 and June 11, 2007, during the Tour subphase of the Cassini mission. These data are contained in 5 volumes (DVDs) - CORS_0178 through CORS_0182. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SROC4-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0183_cors_0184_cors_0185_cors_0186_cassini_rss_raw_data_set_tocc1:5181ef9f","title":"ATM Volume cors_0183 , cors_0184 , cors_0185 , cors_0186 (Cassini RSS Raw Data Set - TOCC1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Occultation experiment conducted on May 28, 2007, during the Tour subphase of the Cassini mission. These data are contained in four volumes (DVDs) - CORS_0183 through CORS_0186. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-TOCC1-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0187_cassini_rss_raw_data_set_tigr9:fc87efe4","title":"ATM Volume cors_0187 (Cassini RSS Raw Data Set - TIGR9)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination experiment and Gravity Science Enhancement experiments conducted on July 17 and July 19 (DOY 198 and DOY 200), 2007, during the Tour subphase of the Cassini mission. These data are contained in one volume. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-TIGR9-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0188_cassini_rss_raw_data_set_iagr1:e6cd5dee","title":"ATM Volume cors_0188 (Cassini Rss Raw Data Set - IAGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Iapetus Gravity Science Enhancement conducted on September 10 (DOY 253), 2007, during the Tour subphase of the Cassini mission. These data are contained in one volume. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-IAGR1-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0189_cors_0190_cors_0191_cors_0192_cors_0193_cors_0194_cors_0195_cassini_rss_raw_data_set_tbis1:cb0d5fcf","title":"ATM Volume cors_0189 , cors_0190 , cors_0191 , cors_0192 , cors_0193 , cors_0194 , cors_0195 (Cassini Rss Raw Data Set - TBIS1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic experiment conducted on July 18, 2007, during the Tour subphase of the Cassini mission. These data are contained in seven volumes - CORS_0189 through CORS_0195. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TBIS1-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0196_cors_0197_cors_0198_cors_0199_cassini_rss_raw_data_set_scc3:e1603d69","title":"ATM Volume cors_0196 , cors_0197 , cors_0198 , cors_0199 (Cassini Rss Raw Data Set - SCC3)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Solar Corona Characterization experiment conducted from August 7 (DOY 219) until September 4 (DOY 247), 2007, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SS-RSS-1-SCC3-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0200_cassini_rss_raw_data_set_tigr10:d77e22b4","title":"ATM Volume cors_0200 (Cassini Rss Raw Data Set - TIGR10)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiments conducted on December 4 and December 6, 2007, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-TIGR10-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0201_cassini_rss_raw_data_set_sagr5:8e3c3e77","title":"ATM Volume cors_0201 (Cassini Rss Raw Data Set - SAGR5)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on October 23 and 24, 2008, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR5-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0202_cors_0203_cors_0204_cors_0205_cors_0206_cors_0207_cors_0208_cors_0209_cassini_rss_raw_data_set_sroc5:f8b84827","title":"ATM Volume cors_0202 cors_0203 , cors_0204 , cors_0205 , cors_0206 , cors_0207 , cors_0208 , cors_0209 (Cassini Rss Raw Data Set - SROC5)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on October 24, December 3 and 19, 2007, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SROC5-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0210_cassini_rss_raw_data_set_sagr6:66f67159","title":"ATM Volume cors_0210 (Cassini RSS Raw Data Set - SAGR6)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on January 14, February 7, 9, and March 31, 2008, during the Tour subphase of the Cassini mission. 1. CO-S-RSS-1-SAGR6-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0211_cassini_rss_raw_data_set_engr2:6ef4c621","title":"ATM Volume cors_0211 (Cassini RSS Raw Data Set - ENGR2 )","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enceladus Gravity Science Enhancement experiments conducted on March 11 and 13, 2008, during the Tour subphase of the Cassini mission. 1. CO-SSA-RSS-1-ENGR2-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0212_cors_0213_cors_0214_cors_0215_cors_0216_cors_0217_cors_0218_cors_0219_cors_0220_cassini_rss_raw_data_set_sroc6:c8778ad0","title":"ATM Volume cors_0212 , cors_0213 , cors_0214 , cors_0215 , cors_0216 , cors_0217 , cors_0218 , cors_0219 , cors_0220 (Cassini RSS Raw Data Set - SROC6)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on January 15, 27, February 8 and March 2, 2008, during the Tour subphase of the Cassini mission. 1. CO-S-RSS-1-SROC6-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0221_cassini_rss_raw_data_set_sagr7:d2e52c99","title":"ATM Volume cors_0221 (Cassini RSS Raw Data Set - SAGR7)","description":"This volume archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Field experiment conducted on May 17, 2008 and the Gravity Science Enhancement experiments conducted on April 2, June 8, 9, 14, 16, 21, and 29, 2008, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR7-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0222_cors_0223_cors_0224_cors_0225_cors_0226_cors_0227_cors_0228_cors_0229_cors_0230_cors_0231_cors_0232_cors_0233_cors_0234_cors_0235_cors_0236_cassini_rss_raw_data_set_sroc7:c5d30845","title":"ATM Volume cors_0222 , cors_0223 , cors_0224 , cors_0225 , cors_0226 , cors_0227 , cors_0228 , cors_0229 , cors_0230 , cors_0231 , cors_0232 , cors_0233 , cors_0234 , cors_0235 , cors_0236 (Cassini RSS Raw Data Set - SROC7)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Atmosphere and Ring Occultation experiments conducted on April 1, 11, May 9, 17, June 1, 16, and 23, 2008, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SROC7-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0236","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0237_cors_0238_cassini_rss_raw_data_set_sagr8:5da59a6e","title":"ATM Volume cors_0237 , cors_0238 (CASSINI RSS RAW DATA SET - SAGR8)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enhancement experiments conducted on July 1, August 17, 19, 24, 27, September 9, 11, 16, 18, 24, 25, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-S-RSS-1-SAGR8-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0238","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0239_cassini_rss_raw_data_set_tigr11_v1_0:f6fbe0c4","title":"ATM Volume cors_0239 (CASSINI RSS RAW DATA SET - TIGR11 V1.0)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field experiments conducted on July 30, 31, 2008, and the Titan Gravity Science Enhancement experiments conducted on July 29, 31, 2008, during the Cassini Extended Mission. These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TIGR11-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0239","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0240_cassini_rss_raw_data_set_engr3:e531270d","title":"ATM Volume cors_0240 (CASSINI RSS RAW DATA SET - ENGR3)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enceladus Gravity Science Enhancement experiments conducted on August 10 and 12, 2008, and the Enceladus Gravity Field experiments conducted on August 11 and 12, 2008, during the Cassini Extended Mission. These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TIGR11-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0240","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0241_cors_0242_cors_0243_cassini_rss_raw_data_set_scc4:8a4b46e6","title":"ATM Volume cors_0241 , cors_0242 , cors_0243 (CASSINI RSS RAW DATA SET - SCC4)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Solar Corona Characterization experiment conducted from August 20 (DOY 233) until September 15 (DOY 259), 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SS-RSS-1-SCC4-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0243","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0244_cors_0245_cors_0246_cors_0247_cors_0248_cors_0249_cors_0250_cors_0251_cors_0252_cassini_rss_raw_data_set_sroc8:78d29e69","title":"ATM Volume cors_0244 , cors_0245 , cors_0246 , cors_0247 , cors_0248 , cors_0249 , cors_0250 , cors_0251 , cors_0252 (CASSINI RSS RAW DATA SET - SROC8)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Atmosphere and Ring Occultation experiments conducted on July 7, August 4, 19, 26 and September 10, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-S-RSS-1-SROC8-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0252","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0253_cassini_rss_raw_data_set_sagr9:ec441cd4","title":"ATM Volume cors_0253 (CASSINI RSS RAW DATA SET - SAGR9)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enhancement experiments conducted on October 8, 10, 23, 25, 2008, and the Gravity Field experiment conduced on November 16, 2008, during the CassiniaExtended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR9-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0253","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0254_cassini_rss_raw_data_set_engr4:a56326fc","title":"ATM Volume cors_0254 (CASSINI RSS RAW DATA SET - ENGR4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enceladus Gravity Science Enhancement experiment conducted on November 1, 2008, and the Enceladus Gravity Field experiment conducted on October 31 and November 1, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR9-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0254","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0255_cassini_rss_raw_data_set_tigr12:7b956d04","title":"ATM Volume cors_0255 (CASSINI RSS RAW DATA SET - TIGR12)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiments conducted on November 2 and 4, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TIGR12-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0255","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0256_cors_0257_cors_0258_cors_0259_cors_0260_cassini_rss_raw_data_set_tboc4:c4183933","title":"ATM Volume cors_0256 , cors_0257 , cors_0258 , cors_0259 , cors_0260 (CASSINI RSS RAW DATA SET - TBOC4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic and Occultation experiments conducted on November 3 (DOY 308) 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TBOC4-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0260","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0261_cors_0262_cassini_rss_raw_data_set_sroc9:5e94bbbd","title":"ATM Volume cors_0261 , cors_0262 (CASSINI RSS RAW DATA SET - SROC9)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Ring Occultation experiment conducted on October 17, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-S-RSS-1-SROC9-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0262","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0263_cassini_rss_raw_data_set_tigr13_v1_0:2449eb2c","title":"ATM Volume cors_0263 (CASSINI RSS RAW DATA SET - TIGR13 V1.0)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiments conducted on March 26 and 28, 2009, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TIGR13-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0263","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0264_cors_0265_cors_0266_cassini_rss_raw_data_set_tbis2_v1_0:4fe0d53b","title":"ATM Volume cors_0264 , cors_0265 , cors_0266 (CASSINI RSS RAW DATA SET - TBIS2 V1.0)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic experiment conducted on March 27 (DOY 086) 2009, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TBIS2-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0266","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0267_cassini_raw_rs_tigr14_data:a7d59235","title":"ATM Volume cors_0267 (Cassini: Raw Rs TIGR14 Data)","description":"This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science Enhancement experiments on April 3, 5, June 21 and 23, 2009. 1. CO-SSA-RSS-1-TIGR14-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0267","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0268_cors_0269_cors_0270_cors_0271_cors_0272_cors_0273_cors_0274_cors_0275_cors_0276_cors_0277_cors_0278_cassini_raw_rs_tboc5_data:ed7fc0b7","title":"ATM Volume cors_0268 , cors_0269 , cors_0270 , cors_0271 , cors_0272 , cors_0273 , cors_0274 , cors_0275 , cors_0276 , cors_0277 , cors_0278 (Cassini: Raw RS TBOC5 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0278","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0279_cors_0280_cors_0281_cors_0282_cors_0283_cors_0284_cors_0285_cassini_raw_rs_scc5_data:a02b6b8f","title":"ATM Volume cors_0279 , cors_0280 , cors_0281 , cors_0282 , cors_0283 , cors_0284 , cors_0285 (CASSINI: RAW RS SCC5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0285","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0286_cassini_raw_rs_engr5_data:c561027f","title":"ATM Volume cors_0286 (CASSINI: RAW RS ENGR5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0286","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0287_cors_0288_cors_0289_cors_0290_cors_0291_cors_0292_cors_0293_cors_0294_cors_0295_cors_0296_cors_0297_cors_0298_cors_0299_cors_0300_cors_0301_cors_0302_cors_0303_cors_0304_cors_0305_cassini_raw_rs_sroc10_data:7e3ae929","title":"ATM Volume cors_0287 , cors_0288 , cors_0289 , cors_0290 , cors_0291 , cors_0292 , cors_0293 , cors_0294 , cors_0295 , cors_0296 , cors_0297 , cors_0298 , cors_0299 , cors_0300 , cors_0301 , cors_0302 , cors_0303 , cors_0304 , cors_0305 (CASSINI: RAW RS SROC10 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0305","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0306_cassini_raw_rs_engr5_data:51c060f5","title":"ATM Volume cors_0306 (CASSINI: RAW RS ENGR5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0306","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0307_cors_0308_cors_0309_cassini_raw_rs_enoc2_data:4d6f3a8d","title":"ATM Volume cors_0307 , cors_0308 , cors_0309 (CASSINI: RAW RS ENOC2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0309","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0310_cors_0311_cors_0312_cors_0313_cors_0314_cors_0315_cors_0316_cassini_raw_rs_sroc11_data:11fa6f22","title":"ATM Volume cors_0310 , cors_0311 , cors_0312 , cors_0313 , cors_0314 , cors_0315 , cors_0316 (Cassini: Raw RS SROC11 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0316","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0317_cassini_raw_rs_digr2_data:34ac4dea","title":"ATM Volume cors_0317 (Cassini: Raw RS DIGR2 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0317","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0318_cors_0319_cassini_raw_rs_engr6_data:7c53da5f","title":"ATM Volume cors_0318 , cors_0319 (Cassini: Raw RS ENGR6 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0319","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0320_cassini_raw_rs_tigr15_data:72b34e4a","title":"ATM Volume cors_0320 (Cassini: Raw RS TIGR15 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0320","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0321_cors_0322_cors_0323_cors_0324_cors_0325_cors_0326_cors_0327_cors_0328_cors_0329_cors_0330_cors_0331_cors_0332_cors_0333_cors_0334_cassini_raw_rs_sroc12_data:015da813","title":"ATM Volume cors_0321 , cors_0322 , cors_0323 , cors_0324 , cors_0325 , cors_0326 , cors_0327 , cors_0328 , cors_0329 , cors_0330 , cors_0331 , cors_0332 , cors_0333 , cors_0334 (Cassini: RAW RS SROC12 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0334","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0335_cassini_raw_rs_sagr11_data:66adea63","title":"ATM Volume cors_0335 (CASSINI: RAW RS SAGR11 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0335","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0336_cors_0337_cors_0338_cors_0339_cors_0340_cors_0341_cors_0342_cors_0343_cassini_raw_rs_sroc13_data:f0c5d17b","title":"ATM Volume cors_0336 , cors_0337 , cors_0338 , cors_0339 , cors_0340 , cors_0341 , cors_0342 , cors_0343 (CASSINI: RAW RS SROC13 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0343","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0344_cors_0345_cassini_raw_rs_scc6_data:96c5c60a","title":"ATM Volume cors_0344 , cors_0345 (CASSINI: RAW RS SCC6 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0345","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0346_cors_0347_cassini_raw_rs_scc7_data:c29280f9","title":"ATM Volume cors_0346 , cors_0347 (CASSINI: RAW RS SCC7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0347","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0348_cassini_raw_rs_engr7_data:cffe36ed","title":"ATM Volume cors_0348 (CASSINI: RAW RS ENGR7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0348","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0349_cors_0350_cassini_raw_rs_tigr16_data:2b52b9e1","title":"ATM Volume cors_0349 cors_0350 (CASSINI: RAW RS TIGR16 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0350","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0351_cassini_raw_rs_sagr12_data:e50f8b3d","title":"ATM Volume cors_0351 (CASSINI: RAW RS SAGR12 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0351","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0352_cassini_raw_rs_scc8_data:a69016d4","title":"ATM Volume cors_0352 (CASSINI: RAW RS SCC8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0352","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0353_cors_0354_cors_0355_cors_0356_cors_0357_cors_0358_cassini_raw_rs_sroc14_data:3fba1c29","title":"ATM Volume cors_0353 cors_0354 cors_0355 cors_0356 cors_0357 cors_0358 (CASSINI: RAW RS SROC14 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0358","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0359_cassini_raw_rs_digr3_data:dd2125c5","title":"ATM Volume cors_0359 (CASSINI: RAW RS DIGR3 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0359","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0360_cors_0361_cors_0362_cors_0363_cassini_raw_rs_scc9_data:09d5f390","title":"ATM Volume cors_0360 cors_0361 cors_0362 cors_0363 (CASSINI: RAW RS SCC9 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0363","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0364_cassini_raw_rs_sagr13_data:a0d78c5f","title":"ATM Volume cors_0364 (CASSINI: RAW RS SAGR13 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0364","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0365_cassini_raw_rs_engr8_data:ca849464","title":"ATM Volume cors_0365 (CASSINI: RAW RS ENGR8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0365","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0366_cors_0367_cors_0368_cors_0369_cors_0370_cors_0371_cors_0372_cassini_raw_rs_sroc15_data:7ff6ce42","title":"ATM Volume cors_0366 cors_0367 cors_0368 cors_0369 cors_0370 cors_0371 cors_0372 (CASSINI: RAW RS SROC15 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0372","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0373_cassini_raw_rs_sagr14_data:50814cc0","title":"ATM Volume cors_0373 (CASSINI: RAW RS SAGR14 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0373","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0374_cors_0375_cors_0376_cors_0377_cors_0378_cors_0379_cors_0380_cors_0381_cors_0382_cors_0383_cors_0384_cassini_raw_rs_sroc16_data:18b08f42","title":"ATM Volume cors_0374 , cors_0375 , cors_0376 , cors_0377 , cors_0378 , cors_0379 , cors_0380 , cors_0381 , cors_0382 , cors_0383 , cors_0384 (CASSINI: RAW RS SROC16 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0384","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0385_cors_0386_cors_0387_cors_0388_cassini_raw_rs_scc10_data:d805d8ff","title":"ATM Volume cors_0385 , cors_0386 , cors_0387 , cors_0388 (CASSINI: RAW RS SCC10 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0388","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0389_cors_0390_cors_0391_cassini_raw_rs_sroc17_data:ec1d0ff0","title":"ATM Volume cors_0389 , cors_0390 , cors_0391 (CASSINI: RAW RS SROC17 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0391","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0392_cassini_raw_rs_sagr15_data:00ccad81","title":"ATM Volume cors_0392 , (CASSINI: RAW RS SAGR15 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0392","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0393_cassini_raw_rs_rhgr2_data:e17ccc20","title":"ATM Volume cors_0393 , (CASSINI: RAW RS RHGR2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0393","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0394_cors_0395_cassini_raw_rs_tigr17_data:a775fe7d","title":"ATM Volume cors_0394 , cors_0395 (CASSINI: RAW RS TIGR17 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0395","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0396_cors_0397_cors_0398_cors_0399_cors_0400_cors_0401_cors_0402_cors_0403_cors_0404_cors_0405_cors_0406_cors_0407_cors_0408_cors_0409_cors_0410_cors_0411_cors_0412_cors_0413_cassini_raw_rs_sroc18_data:43d63cfe","title":"ATM Volume cors_0396 , cors_0397 , cors_0398 , cors_0399 , cors_0400 , cors_0401 , cors_0402 , cors_0403 , cors_0404 , cors_0405 , cors_0406 , cors_0407 , cors_0408 , cors_0409 , cors_0410 , cors_0411 , cors_0412 , cors_0413 , (Cassini: Raw RS SROC18 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0413","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0414_cassini_raw_rs_sagr16_data:8e765b8e","title":"ATM Volume cors_0414 (CASSINI: RAW RS SAGR16 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0414","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0415_cors_0416_cors_0417_cors_0418_cors_0419_cors_0420_cors_0421_cors_0422_cors_0423_cors_0424_cors_0425_cors_0426_cors_0427_cors_0428_cors_0429_cors_0430_cors_0431_cors_0432_cors_0433_cors_0434_cors_0435_cors_0436_cors_0437_cors_0438_cors_0439_cors_0440_cors_0441_cors_0442_cors_0443_cors_0444_cors_0445_cors_0446_cors_0447_cors_0448_cors_0449_cors_0450_cors_0451_cors_0452_cors_0453_cors_0454_cors_0455_cassini_raw_rs_sroc19_data:ad6ad2e7","title":"ATM Volume cors_0415 , cors_0416 , cors_0417 , cors_0418 , cors_0419 , cors_0420 , cors_0421 , cors_0422 , cors_0423 , cors_0424 , cors_0425 , cors_0426 , cors_0427 , cors_0428 , cors_0429 , cors_0430 , cors_0431 , cors_0432 , cors_0433 , cors_0434 , cors_0435 , cors_0436 , cors_0437 , cors_0438 , cors_0439 , cors_0440 , cors_0441 , cors_0442 , cors_0443 , cors_0444 , cors_0445 , cors_0446 , cors_0447 , cors_0448 , cors_0449 , cors_0450 , cors_0451 , cors_0452 , cors_0453 , cors_0454 , cors_0455 (CASSINI: RAW RS SROC19 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0455","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0456_cassini_raw_rs_sagr17_data:4445b9c3","title":"ATM Volume cors_0456 (CASSINI: RAW RS SAGR17 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0456","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0457_cors_0458_cors_0459_cors_0460_cors_0461_cors_0462_cors_0463_cors_0464_cors_0465_cors_0466_cors_0467_cors_0468_cors_0469_cors_0470_cors_0471_cors_0472_cors_0473_cors_0474_cors_0475_cors_0476_cors_0477_cors_0478_cors_0479_cors_0480_cors_0481_cassini_raw_rs_sroc20_data:20304308","title":"ATM Volume cors_0457 , cors_0458 , cors_0459 , cors_0460 , cors_0461 , cors_0462 , cors_0463 , cors_0464 , cors_0465 , cors_0466 , cors_0467 , cors_0468 , cors_0469 , cors_0470 , cors_0471 , cors_0472 , cors_0473 , cors_0474 , cors_0475 , cors_0476 , cors_0477 , cors_0478 , cors_0479 , cors_0480 , cors_0481 (CASSINI: RAW RS SROC20 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0481","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0482_cors_0483_cors_0484_cors_0485_cors_0486_cassini_raw_rs_scc11_data:0b91bb16","title":"ATM Volume cors_0482 , cors_0483 , cors_0484 , cors_0485 , cors_0486 (CASSINI: RAW RS SCC11 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0486","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0487_cors_0488_cassini_raw_rs_tigr18_data:f1ad7d28","title":"ATM Volume cors_0487 , cors_0488 (CASSINI: RAW RS TIGR18 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0488","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0489_cors_0490_cors_0491_cors_0492_cors_0493_cors_0494_cors_0495_cors_0496_cors_0497_cors_0498_cors_0499_cors_0500_cors_0501_cors_0502_cors_0503_cors_0504_cors_0505_cors_0506_cors_0507_cassini_raw_rs_tboc6_data:ea93fbdc","title":"ATM Volume cors_0489 , cors_0490 , cors_0491 , cors_0492 , cors_0493 , cors_0494 , cors_0495 , cors_0496 , cors_0497 , cors_0498 , cors_0499 , cors_0500 , cors_0501 , cors_0502 , cors_0503 , cors_0504 , cors_0505 , cors_0506 , cors_0507 (CASSINI: RAW RS TBOC6 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0507","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0508_cors_0509_cors_0510_cors_0511_cors_0512_cassini_raw_rs_scc12_data:0b1c8329","title":"ATM Volume cors_0508 , cors_0509 , cors_0510 , cors_0511 , cors_0512 (CASSINI: RAW RS SCC12 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0512","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0513_cors_0514_cors_0515_cors_0516_cors_0517_cors_0518_cors_0519_cors_0520_cors_0521_cors_0522_cors_0523_cors_0524_cassini_raw_rs_tbis3_data:43e4e345","title":"ATM Volume cors_0513 , cors_0514 , cors_0515 , cors_0516 , cors_0517 , cors_0518 , cors_0519 , cors_0520 , cors_0521 , cors_0522 , cors_0523 , cors_0524 (CASSINI: RAW RS TBIS3 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0524","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0525_cassini_raw_rs_tigr19_data:80c87be2","title":"ATM Volume cors_0525 (CASSINI: RAW RS TIGR19 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0525","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0526_cassini_raw_rs_digr4_data:89500845","title":"ATM Volume cors_0526 (CASSINI: RAW RS DIGR4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0526","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0527_cassini_raw_rs_digr5_data:e17fb6b1","title":"ATM Volume cors_0527 (CASSINI: RAW RS DIGR5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0527","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0528_cors_0529_cors_0530_cors_0531_cassini_raw_rs_scc13_data:da211697","title":"ATM Volume cors_0528 , cors_0529 , cors_0530 , cors_0531 (CASSINI: RAW RS SCC13 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0531","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0532_cors_0533_cors_0534_cors_0535_cors_0536_cors_0537_cors_0538_cassini_raw_rs_tboc7_data:c60ed63e","title":"ATM Volume cors_0532 , cors_0533 , cors_0534 , cors_0535 , cors_0536 , cors_0537 , cors_0538 (CASSINI: RAW RS TBOC7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0538","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0539_cors_0540_cors_0541_cors_0542_cors_0543_cors_0544_cors_0545_cassini_raw_rs_tboc8_data:f61407d2","title":"ATM Volume cors_0539 , cors_0540 , cors_0541 , cors_0542 , cors_0543 , cors_0544 , cors_0545 (CASSINI: RAW RS TBOC8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0545","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0546_cors_0547_cors_0548_cors_0549_cors_0550_cors_0551_cors_0552_cors_0553_cors_0554_cors_0555_cors_0556_cors_0557_cors_0558_cors_0559_cors_0560_cors_0561_cors_0562_cassini_raw_rs_sroc21_data:2c3bda79","title":"ATM Volume cors_0546 , cors_0547 , cors_0548 , cors_0549 , cors_0550 , cors_0551 , cors_0552 , cors_0553 , cors_0554 , cors_0555 , cors_0556 , cors_0557 , cors_0558 , cors_0559 , cors_0560 , cors_0561 , cors_0562 (CASSINI: RAW RS SROC21 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0562","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0563_cors_0564_cors_0565_cassini_raw_rs_sroc4b_data:37806f1f","title":"ATM Volume cors_0563 , cors_0564 , cors_0565 (CASSINI: RAW RS SROC4B DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0565","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0566_cors_0567_cassini_raw_rs_tigr20_data:800be58d","title":"ATM Volume cors_0566 , cors_0567 (CASSINI: RAW RS TIGR20 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0567","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0568_cors_0569_cors_0570_cors_0571_cors_0572_cors_0573_cors_0574_cors_0575_cors_0576_cors_0577_cors_0578_cors_0579_cors_0580_cors_0581_cors_0582_cors_0583_cors_0584_cors_0585_cors_0586_cors_0587_cassini_raw_rs_sroc21_data:68fdb50b","title":"ATM Volume cors_0568 , cors_0569 , cors_0570 , cors_0571 , cors_0572 , cors_0573 , cors_0574 , cors_0575 , cors_0576 , cors_0577 , cors_0578 , cors_0579 , cors_0580 , cors_0581 , cors_0582 , cors_0583 , cors_0584 , cors_0585 , cors_0586 , cors_0587 (CASSINI: RAW RS SROC21 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0587","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0588_cors_0589_cors_0590_cors_0591_cors_0592_cors_0593_cors_0594_cassini_raw_rs_scc14_data:943bffdc","title":"ATM Volume cors_0588 , cors_0589 , cors_0590 , cors_0591 , cors_0592 , cors_0593 , cors_0594 (CASSINI: RAW RS SCC14 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0594","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0595_cors_0596_cors_0597_cors_0598_cors_0599_cors_0600_cors_0601_cassini_raw_rs_tbis4_data:eddf09fe","title":"ATM Volume cors_0595 , cors_0596 , cors_0597 , cors_0598 , cors_0599 , cors_0600 , cors_0601 (CASSINI: RAW RS TBIS4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0601","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0602_cors_0603_cors_0604_cors_0605_cors_0606_cors_0607_cors_0608_cors_0609_cors_0610_cors_0611_cors_0612_cors_0613_cors_0614_cors_0615_cors_0616_cors_0617_cors_0618_cors_0619_cors_0620_cors_0621_cors_0622_cors_0623_cors_0624_cors_0625_cors_0626_cors_0627_cors_0628_cors_0629_cors_0630_cassini_raw_rs_sroc23_data:964e0cc2","title":"ATM Volume cors_0602 , cors_0603 , cors_0604 , cors_0605 , cors_0606 , cors_0607 , cors_0608 , cors_0609 , cors_0610 , cors_0611 , cors_0612 , cors_0613 , cors_0614 , cors_0615 , cors_0616 , cors_0617 , cors_0618 , cors_0619 , cors_0620 , cors_0621 , cors_0622 , cors_0623 , cors_0624 , cors_0625 , cors_0626 , cors_0627 , cors_0628 , cors_0629 , cors_0630 (CASSINI: RAW RS SROC23 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0630","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0631_cors_0632_cors_0633_cors_0634_cors_0635_cors_0636_cors_0637_cors_0638_cors_0639_cors_0640_cors_0641_cors_0642_cors_0643_cors_0644_cors_0645_cors_0646_cors_0647_cors_0648_cors_0649_cors_0650_cassini_raw_rs_sroc24_data:58a90d0e","title":"ATM Volume cors_0631 , cors_0632 , cors_0633 , cors_0634 , cors_0635 , cors_0636 , cors_0637 , cors_0638 , cors_0639 , cors_0640 , cors_0641 , cors_0642 , cors_0643 , cors_0644 , cors_0645 , cors_0646 , cors_0647 , cors_0648 , cors_0649 , cors_0650 (CASSINI: RAW RS SROC24 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0650","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0651_cors_0652_cors_0653_cors_0654_cors_0655_cors_0656_cors_0657_cors_0658_cors_0659_cors_0660_cors_0661_cors_0662_cors_0663_cors_0664_cors_0665_cors_0666_cors_0667_cors_0668_cors_0669_cors_0670_cors_0671_cors_0672_cors_0673_cors_0674_cors_0675_cors_0676_cors_0677_cors_0678_cors_0679_cors_0680_cassini_raw_rs_sagr18_data:ca0f50f1","title":"ATM Volume cors_0651 , cors_0652 , cors_0653 , cors_0654 , cors_0655 , cors_0656 , cors_0657 , cors_0658 , cors_0659 , cors_0660 , cors_0661 , cors_0662 , cors_0663 , cors_0664 , cors_0665 , cors_0666 , cors_0667 , cors_0668 , cors_0669 , cors_0670 , cors_0671 , cors_0672 , cors_0673 , cors_0674 , cors_0675 , cors_0676 , cors_0677 , cors_0678 , cors_0679 , cors_0680 (CASSINI: RAW RS SAGR18 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0680","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0681_cors_0682_cors_0683_cors_0684_cors_0685_cors_0686_cors_0687_cors_0688_cors_0689_cors_0690_cors_0691_cors_0692_cors_0693_cors_0694_cors_0695_cors_0696_cors_0697_cors_0698_cors_0699_cors_0700_cors_0701_cors_0702_cors_0703_cassini_raw_rs_sroc25_data:34b54659","title":"ATM Volume cors_0681 , cors_0682 , cors_0683 , cors_0684 , cors_0685 , cors_0686 , cors_0687 , cors_0688 , cors_0689 , cors_0690 , cors_0691 , cors_0692 , cors_0693 , cors_0694 , cors_0695 , cors_0696 , cors_0697 , cors_0698 , cors_0699 , cors_0700 , cors_0701 , cors_0702 , cors_0703 (CASSINI: RAW RS SROC25 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0703","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0704_cors_0705_cors_0706_cors_0707_cors_0708_cassini_raw_rs_sagr18_data:9c3df470","title":"ATM Volume cors_0704 , cors_0705 , cors_0706 , cors_0707 , cors_0708 (CASSINI: RAW RS SAGR18 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0708","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0709_cors_0710_cors_0711_cors_0712_cors_0713_cors_0714_cors_0715_cors_0716_cors_0717_cors_0718_cors_0719_cors_0720_cors_0721_cors_0722_cors_0723_cors_0724_cors_0725_cors_0726_cassini_raw_rs_sroc26_data:114716c5","title":"ATM Volume cors_0709 , cors_0710 , cors_0711 , cors_0712 , cors_0713 , cors_0714 , cors_0715 , cors_0716 , cors_0717 , cors_0718 , cors_0719 , cors_0720 , cors_0721 , cors_0722 , cors_0723 , cors_0724 , cors_0725 , cors_0726 (CASSINI: RAW RS SROC26 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0726","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0727_cors_0728_cassini_raw_rs_sroc1_data:b0aa05b7","title":"ATM Volume cors_0727 , cors_0728 (CASSINI: RAW RS SROC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0728","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0729_cassini_raw_rs_sroc2_data:8ae32004","title":"ATM Volume cors_0729 (CASSINI: RAW RS SROC2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0729","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0730_cassini_raw_rs_tboc1_data:6fe59de9","title":"ATM Volume cors_0730 (CASSINI: RAW RS TBOC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0730","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0731_cassini_raw_rs_tboc2_data:7aee7354","title":"ATM Volume cors_0731 (CASSINI: RAW RS TBOC2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0731","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0732_cassini_raw_rs_enoc1_data:367f2a27","title":"ATM Volume cors_0732 (CASSINI: RAW RS ENOC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0732","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559131","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0733_cors_0734_cassini_raw_rs_enoc1_data:ef59c9f2","title":"ATM Volume cors_0733 , cors_0734 (CASSINI: RAW RS ENOC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0734","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0735_cassini_raw_rs_tboc3_data:4f1da8ff","title":"ATM Volume cors_0735 (CASSINI: RAW RS TBOC3 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0735","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0736_cassini_raw_rs_sroc4_data:b4d709ec","title":"ATM Volume cors_0736 (CASSINI: RAW RS SROC4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0736","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0737_cassini_raw_rs_tocc1_data:6c240510","title":"ATM Volume cors_0737 (CASSINI: RAW RS TOCC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0737","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0738_cassini_raw_rs_sroc4b_data:1421b987","title":"ATM Volume cors_0738 (CASSINI: RAW RS SROC4B DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0738","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0739_cassini_raw_rs_tocc1_data:f3057399","title":"ATM Volume cors_0739 (CASSINI: RAW RS TOCC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0739","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0740_cassini_raw_rs_sroc5_data:b0aeaeaa","title":"ATM Volume cors_0740 (CASSINI: RAW RS SROC5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0740","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0741_cassini_raw_rs_sroc6_data:7aefd4f5","title":"ATM Volume cors_0741 (CASSINI: RAW RS SROC6 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0741","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0742_cors_0743_cors_0744_cassini_raw_rs_sroc7_data:88f3c138","title":"ATM Volume cors_0742 , cors_0743 , cors_0744 (CASSINI: RAW RS SROC7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0744","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0745_cassini_raw_rs_sroc8_data:1f1401b3","title":"ATM Volume cors_0745 (CASSINI: RAW RS SROC8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0745","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0746_cassini_raw_rs_sroc9_data:bbb99503","title":"ATM Volume cors_0746 (CASSINI: RAW RS SROC9 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0746","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0747_cassini_raw_rs_tboc4_data:1610c883","title":"ATM Volume cors_0747 (CASSINI: RAW RS TBOC4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0747","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0748_cassini_raw_rs_tbis2_data:4cbf4bcd","title":"ATM Volume cors_0748 (CASSINI: RAW RS TBIS2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0748","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0749_cassini_raw_rs_tboc5_data:a616ec66","title":"ATM Volume cors_0749 (CASSINI: RAW RS TBOC5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0749","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0750_cors_0751_cassini_raw_rs_sroc10_data:f7db7268","title":"ATM Volume cors_0750 , cors_0751 (CASSINI: RAW RS SROC10 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0751","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0752_cassini_raw_rs_enoc2_data:377571f7","title":"ATM Volume cors_0752 (CASSINI: RAW RS ENOC2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0752","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0753_cassini_raw_rs_sroc11_data:972ba8b9","title":"ATM Volume cors_0753 (CASSINI: RAW RS SROC11 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0753","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0754_cassini_raw_rs_sroc12_data:c4afdef4","title":"ATM Volume cors_0754 (CASSINI: RAW RS SROC12 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0754","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0755_cassini_raw_rs_sroc13_data:2ed8b84e","title":"ATM Volume cors_0755 (CASSINI: RAW RS SROC13 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0755","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0756_cassini_raw_rs_sroc14_data:cfbf9d13","title":"ATM Volume cors_0756 (CASSINI: RAW RS SROC14 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0756","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0757_cassini_raw_rs_sroc15_data:681f595c","title":"ATM Volume cors_0757 (CASSINI: RAW RS SROC15 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0757","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0758_cors_0759_cors_0760_cassini_raw_rs_sroc16_data:63433258","title":"ATM Volume cors_0758 , cors_0759 , cors_0760 (CASSINI: RAW RS SROC16 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0760","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0761_cassini_raw_rs_sroc17_data:6be15973","title":"ATM Volume cors_0761 (CASSINI: RAW RS SROC17 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0761","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0762_cors_0763_cors_0764_cassini_raw_rs_sroc18_data:c6d08d8d","title":"ATM Volume cors_0762 , cors_0763 , cors_0764 (CASSINI: RAW RS SROC18 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0764","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0765_cors_0766_cors_0767_cors_0768_cors_0769_cassini_raw_rs_sroc19_data:2ff34446","title":"ATM Volume cors_0765 , cors_0766 , cors_0767 , cors_0768 , cors_0769 (CASSINI: RAW RS SROC19 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0769","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0770_cors_0771_cors_0772_cors_0773_cors_0774_cors_0775_cassini_raw_rs_sroc20_data:e83feba4","title":"ATM Volume cors_0770 , cors_0771 , cors_0772 , cors_0773 , cors_0774 , cors_0775 (CASSINI: RAW RS SROC20 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0775","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0776_cassini_raw_rs_tboc6_data:0168c39a","title":"ATM Volume cors_0776 (CASSINI: RAW RS TBOC6 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0776","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0777_cassini_raw_rs_tbis3_data:e069ba08","title":"ATM Volume cors_0777 (CASSINI: RAW RS TBIS3 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0777","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0778_cassini_raw_rs_tboc7_data:1a15b050","title":"ATM Volume cors_0778 (CASSINI: RAW RS TBOC7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0778","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0779_cassini_raw_rs_tboc8_data:3e59dc82","title":"ATM Volume cors_0779 (CASSINI: RAW RS TBOC8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0779","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0780_cors_0781_cors_0782_cors_0783_cassini_raw_rs_tboc21_data:bd1cd344","title":"ATM Volume cors_0780 , cors_0781 , cors_0782 , cors_0783 (CASSINI: RAW RS TBOC21 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0783","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0784_cors_0785_cassini_raw_rs_sroc22_data:b5f69bb3","title":"ATM Volume cors_0784 , cors_0785 (CASSINI: RAW RS SROC22 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0785","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0786_cors_0787_cors_0788_cors_0789_cors_0790_cors_0791_cors_0792_cors_0793_cors_0794_cors_0795_cassini_raw_rs_sroc23_data:d326a307","title":"ATM Volume cors_0786 , cors_0787 , cors_0788 , cors_0789 , cors_0790 , cors_0791 , cors_0792 , cors_0793 , cors_0794 , cors_0795 (CASSINI: RAW RS SROC23 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0795","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0796_cassini_raw_rs_tbis4_data:9144aeae","title":"ATM Volume cors_0796 (CASSINI: RAW RS TBIS4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0796","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0797_cors_0798_cors_0799_cors_0800_cassini_raw_rs_sroc24_data:96e70a6c","title":"ATM Volume cors_0797 , cors_0798 , cors_0799 , cors_0800 (CASSINI: RAW RS SROC24 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0800","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0801_cors_0802_cors_0803_cors_0804_cors_0805_cassini_raw_rs_sroc25_data:f3d1bcdf","title":"ATM Volume cors_0801 , cors_0802 , cors_0803 , cors_0804 , cors_0805 (CASSINI: RAW RS SROC25 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0805","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0806_cors_0807_cors_0808_cassini_raw_rs_sroc26_data:4f44c0ed","title":"ATM Volume cors_0806 , cors_0807 , cors_0808 (CASSINI: RAW RS SROC26 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0808","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0003_cassini_ultraviolet_imaging_spectrograph_data:2145b184","title":"ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-047 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-WAV-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0004_cassini_ultraviolet_imaging_spectrograph_data:a071bbfd","title":"ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-CUBE-V1.2 4. CO-S-UVIS-2-WAV-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0005_cassini_ultraviolet_imaging_spectrograph_data:1b9f389c","title":"ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-WAV-V1.2 5. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0006_cassini_ultraviolet_imaging_spectrograph_data:3702974b","title":"ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-CUBE-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0007_cassini_ultraviolet_imaging_spectrograph_data:5ee9d32c","title":"ATM Volume couvis_0007 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2004-173 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0008_cassini_ultraviolet_imaging_spectrograph_data:d5038070","title":"ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0009_cassini_ultraviolet_imaging_spectrograph_data:2ef1b4f6","title":"ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0010_cassini_ultraviolet_imaging_spectrograph_data:1a2901d8","title":"ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-366...2005-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0011_cassini_ultraviolet_imaging_spectrograph_data:f25a44cf","title":"ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0012_cassini_ultraviolet_imaging_spectrograph_data:9e6cac87","title":"ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0013_cassini_ultraviolet_imaging_spectrograph_data:7e75f163","title":"ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0014_cassini_ultraviolet_imaging_spectrograph_data:19233c1d","title":"ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-CALIB-V1.2 4. CO-S-UVIS-2-CUBE-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0015_cassini_ultraviolet_imaging_spectrograph_data:d49a8790","title":"ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0016_cassini_ultraviolet_imaging_spectrograph_data:7ebfec7d","title":"ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1.CO-S-UVIS-2-SPEC-V1.2 2.CO-S-UVIS-2-SSB-V1.2 3.CO-S-UVIS-2-CUBE-V1.2 4.CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0017_cassini_ultraviolet_imaging_spectrograph_data:486aecd4","title":"ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2006-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1.CO-S-UVIS-2-SPEC-V1.2 2.CO-S-UVIS-2-SSB-V1.2 3.CO-S-UVIS-2-CALIB-V1.2 4.CO-S-UVIS-2-CUBE-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0018_cassini_ultraviolet_imaging_spectrograph_data:e9c45963","title":"ATM Volume couvis_0018 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2007-001...2007-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1.CO-S-UVIS-2-CUBE-V1.2 2.CO-S-UVIS-2-SSB-V1.2 3.CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0019_couvis_0020_cassini_ultraviolet_imaging_spectrograph_data:e88812ef","title":"ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2007-091...2007-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0021_cassini_ultraviolet_imaging_spectrograph_data:9fa918c8","title":"ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0022_couvis_0023_cassini_ultraviolet_imaging_spectrograph_data:6a5c3695","title":"ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2008-001...2008-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0024_cassini_ultraviolet_imaging_spectrograph_data:9eb9f3fa","title":"ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"\"This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0025_cassini_ultraviolet_imaging_spectrograph_data:2bc41ba9","title":"ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"\"This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0026_cassini_ultraviolet_imaging_spectrograph_data:cb61067c","title":"ATM Volume couvis_0026 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2009-002...2009-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-SSB-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-CUBE-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0027_cassini_ultraviolet_imaging_spectrograph_data:8e1a6b4a","title":"ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0028_cassini_ultraviolet_imaging_spectrograph_data:2d124af9","title":"ATM Volume couvis_0028 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2009-182...2009-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0029_cassini_ultraviolet_imaging_spectrograph_data:a2622a4b","title":"ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0030_cassini_ultraviolet_imaging_spectrograph_data:0b07ff88","title":"ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0031_cassini_ultraviolet_imaging_spectrograph_data:3121b780","title":"ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SSB-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-CUBE-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0032_cassini_ultraviolet_imaging_spectrograph_data:7e89df7f","title":"ATM Volume couvis_0032 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2010-185...2010-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0033_cassini_ultraviolet_imaging_spectrograph_data:70120d40","title":"ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0034_couvis_0035_couvis_0036_cassini_ultraviolet_imaging_spectrograph_data:b5c0da68","title":"ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2011-001...2011-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0037_cassini_ultraviolet_imaging_spectrograph_data:b9e9046e","title":"ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0038_cassini_ultraviolet_imaging_spectrograph_data:5c800fd0","title":"ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0039_cassini_ultraviolet_imaging_spectrograph_data:94087c39","title":"ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0040_cassini_ultraviolet_imaging_spectrograph_data:291ac75e","title":"ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifi es the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0041_cassini_ultraviolet_imaging_spectrograph_data:a4a165d5","title":"ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0042_cassini_ultraviolet_imaging_spectrograph_data:6f14df9d","title":"ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559659","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0043_cassini_ultraviolet_imaging_spectrograph_data:0fef5a41","title":"ATM Volume couvis_0043 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0044_cassini_ultraviolet_imaging_spectrograph_data:d45c625f","title":"ATM Volume couvis_0044 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-182...2013-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0045_cassini_ultraviolet_imaging_spectrograph_data:248b436a","title":"ATM Volume couvis_0045 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-274...2014-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0046_cassini_ultraviolet_imaging_spectrograph_data:9a536af9","title":"ATM Volume couvis_0046 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2014-001...2014-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0047_cassini_ultraviolet_imaging_spectrograph_data:2439a452","title":"ATM Volume couvis_0047 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2014-091...2014-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0048_cassini_ultraviolet_imaging_spectrograph_data:eefd07e3","title":"ATM Volume couvis_0048 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2014-182...2014-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0049_cassini_ultraviolet_imaging_spectrograph_data:7d7ef331","title":"ATM Volume couvis_0049 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the Oct 1, 2014... Jan 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0050_cassini_ultraviolet_imaging_spectrograph_data:377dd213","title":"ATM Volume couvis_0050 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0051_cassini_ultraviolet_imaging_spectrograph_data:40589c3b","title":"ATM Volume couvis_0051 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations^M taken by the UVIS instrument during the Apr 1, 2015...Jul 1, 2015 time period. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0052_cassini_ultraviolet_imaging_spectrograph_data:d3494041","title":"ATM Volume couvis_0052 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2015-182...2015-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0053_cassini_ultraviolet_imaging_spectrograph_data:8908f6a7","title":"ATM Volume couvis_0053 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2015-274...2016-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0054_cassini_ultraviolet_imaging_spectrograph_data:e6db74f7","title":"ATM Volume couvis_0054 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2016-001...2016-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0055_cassini_ultraviolet_imaging_spectrograph_data:1ec78c7f","title":"ATM Volume couvis_0055 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2016-092...2016-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0056_cassini_ultraviolet_imaging_spectrograph_data:e2ff5d7f","title":"ATM Volume couvis_0056 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2016-183...2016-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0057_cassini_ultraviolet_imaging_spectrograph_data:0b7d1d7d","title":"ATM Volume couvis_0057 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2016-275...2017-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0058_cassini_ultraviolet_imaging_spectrograph_data:48eea4c8","title":"ATM Volume couvis_0058 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2017-001...2017-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0059_cassini_ultraviolet_imaging_spectrograph_data:14619c3b","title":"ATM Volume couvis_0059 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2017-091...2017-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0060_cassini_ultraviolet_imaging_spectrograph_data:400d70bd","title":"ATM Volume couvis_0060 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2017-182...2017-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpacp_0001_huygens_acp_calibrated_engineering_science_data:7e1a7c88","title":"ATM Volume hpacp_0001 (Huygens ACP Calibrated Engineering & Science Data)","description":"The Huygens Aerosol Collector and Pyrolyzer (ACP) was designed for the chemical analysis of Titan's atmospheric aerosols. 1.HP-SSA-ACP-3-DESCENT-V1.0 It sampled the aerosols during the descent to Titan's surface and prepared the collected material (by evaporation, pyrolysis, and gas products transfer) for analysis by the Huygens GCMS instrument.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpacp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpdisr_0001_huygens_probe_disr_results:8d96bbe9","title":"ATM Volume hpdisr_0001 (Huygens Probe DISR Results)","description":"This dataset contains data obtained by the Descent Imager Spectral Radiometer(DISR) aboard the Huygens probe, which was released from the Cassini Spacecraft. 1.HP-SSA-DISR-2/3-EDR/RDR-V1.0 The Huygens Descent Imager and Spectral Radiometer (DISR) made measurements of solar radiation as it traveled through Titan's atmosphere and landed on the surface. Its suite of seven instruments includes photodiodes, a charge-coupled device (CCD), and two near-infrared linear array detectors. The interaction of sunlight with Titan's surface and atmospheric aerosols and gases will provide insight into the nature of Titan's surface and the composition, meteorology, thermal balance, and clouds and aerosols in Titan's atmosphere. The data was obtained on January 14 during the primary descent phase of the Cassini-Huygens mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdisr_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpdtwg_0001_huygens_trajectory:a625c617","title":"ATM Volume hpdtwg_0001 (Huygens Trajectory)","description":"The Huygens Descent Trajectory Working Group (DTWG) data set contains the trajectory data of the Huygens Probe in the atmosphere of Titan. 1.HP-SSA-DTWG-6-TRAJECTORY-V1.0 This data set consists of seven data products that describe both the entry phase and the descent phase of the Probe's mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdtwg_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpdwe_0001_huygens_probe_dwe_results:16d84dfd","title":"ATM Volume hpdwe_0001 (Huygens Probe DWE Results)","description":"This dataset contains data from the Huygens Doppler Wind Experiment (DWE) obtained during the Huygens Mission at Titan. 1.HP-SSA-DWE-2-3-DESCENT-V1.0 The Huygens Doppler Wind Experiment (DWE) was designed to measure wind speeds and directions on Titan as the Huygens Probe descended through the atmosphere. The wind profile was determined by Doppler tracking the Probe Relay Link signal from the Earth.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdwe_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpgcms_0001_huygens_titan_gas_chromatograph:efd470cb","title":"ATM Volume hpgcms_0001 (Huygens Titan Gas Chromatograph)","description":"The Huygens Gas Chromatograph Mass Spectrometer (GCMS) was designed to provide an accurate analysis of Titan's atmospheric composition along the descent trajectory of the Huygens Probe. HP-SSA-GCMS-3-FCO/DESCENT-V1.0 It measured the altitude profiles of the atmospheric constituents, isotopic ratios, and trace species.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpgcms_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hphasi_0001_huygens_hasi_mission_raw_and_calibrated_data_v1_1:86396454","title":"ATM Volume hphasi_0001 (Huygens HASI Mission Raw and Calibrated Data V1.1)","description":"This dataset contains the engineering and scientific data derived from the measurements obtained by the HASI instrument during the Huygens probe mission at Titan on 14 January 2005. HP-SSA-HASI-2-3-4-MISSION-V1.1 The Huygens Atmospheric Structure Instrument (HASI) was designed to measure the physical properties of Titan's atmosphere during the entry and descent phase and at the surface. Specifically, it measured atmospheric deceleration, pressure, temperature, and electrical conductivity, ion conductivity, acoustic noise, and radar echoes below 60 km altitude.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphasi_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hphk_0001_huygens_engineering_data:e8356c24","title":"ATM Volume hphk_0001 (Huygens Engineering Data)","description":"This dataset contains housekeeping (engineering) data obtained by the Huygens probe during its mission on 14 January 2005. HP-SSA-HK-2/3-V1.0 There are two primary elements of Huygens: the Probe, which detached from the Cassini Orbiter and landed on Titan's surface, and the Probe Support Equipment that remained on the Orbiter and supported the radio link relay between the Probe and the Orbiter. The Probe engineering data related to both of the above elements are archived.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphk_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpssp_0001_huygens_entry_descent_and_surface_data:d3c091cb","title":"ATM Volume hpssp_0001 (Huygens Entry, Descent and Surface Data)","description":"The Huygens Housekeeping (HK) data are the engineering data of the Probe. HP-SSA-SSP-3/4-DESCENT-V1.0 There are two primary elements of Huygens: the Probe, which detached from the Cassini Orbiter and landed on Titan's surface, and the Probe Support Equipment that remained on the Orbiter and supported the radio link relay between the Probe and the Orbiter. The Probe engineering data related to both of the above elements are archived.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpssp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2207_vg_2208_vg_2209_vg_2210_voyager_1_uvs:d3627025","title":"ATM Volume vg_2207 , vg_2208 , vg_2209 , vg_2210 (Voyager 1 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG1-S-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 1 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Saturn.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2211_vg_2212_vg_2213_voyager_2_uvs:815c35b8","title":"ATM Volume vg_2211 , vg_2212 , vg_2213 (Voyager 2 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-S-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Saturn.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_0001_vg_0003_voyager_iss:d41d8cd9","title":"ATM Volume vg_0001 - vg_0003 (Voyager ISS)","description":"These volumes contain compressed level-2 (unprocessed) images from the Voyager 2 Uranus encounter. They also contain documentation, software and index directories to support access to the images files on these disks. 1. VG2 URANUS IMAGING SCIENCE SUBSYSTEM EDITED EDR V1.0 This data set contains images taken by NASA's Voyager 2 spacecraft during its encounter with the planet Uranus. These are full resolution digital images returned by the Voyager cameras. No additional processing has been performed to enhance the images. The images are compressed but can be restored to their full resolution using algorithms described in documentation on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vg_0001 - vg_0003 (Voyager ISS)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2214_vg_2215_voyager_2_uvs:9f27bb67","title":"ATM Volume vg_2214 , vg_2215 (Voyager 2 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-U-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Uranus.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_0009_vg_0012_voyager_iss:d41d8cd9","title":"ATM Volume vg_0009 - vg_0012 (Voyager ISS)","description":"These volumes contain compressed level-2 (unprocessed) images from the Voyager 2 Neptune encounter. They also contain documentation, software and index directories to support access to the images files on these disks. 1. VG2 NEPTUNE IMAGING SCIENCE SUBSYSTEM EDITED EDR V1.0 This data set contains images taken by NASA's Voyager 2 spacecraft during its encounter with the planet Neptune. These are full resolution digital images returned by the Voyager cameras. No additional processing has been performed to enhance the images. The images are compressed but can be restored to their full resolution using algorithms described in documentation on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vg_0009 - vg_0012 (Voyager ISS)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2216_voyager_2_uvs:f9e0fa58","title":"ATM Volume vg_2216 (Voyager 2 UVS)","description":"This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-N-UVS-3-RDR-V1.0 This volume contains reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Neptune.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2499_voyager_2_triton_radio_occultations:8141e026","title":"ATM Volume vg_2499 (Voyager 2 Triton Radio Occultations)","description":"This volume contains results from Voyager 2 radio occultation measurements at Triton. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO. 1. VOYAGER 2 TRITON RADIO OCCULTATION REDUCED DATA V1.0 This data set contains processed data acquired from the Voyager 2 Triton radio occultation experiment. Observations were carried out using the Voyager 2 spacecraft and facilities of the NASA Deep Space Network (DSN); they were designed to detect and measure the structure of Triton's atmosphere.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2499","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:none:d41d8cd9","title":"ATM Volume NONE","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=NONE","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:messmas_1001:ee85b049","title":"ATM Volume messmas_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:messmas_2001:a7131f3b","title":"ATM Volume messmas_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:messmas_2101:08655949","title":"ATM Volume messmas_2101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2201:8085365c","title":"ATM Volume mg_2201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2202:d46c0847","title":"ATM Volume mg_2202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2203:aae22ba2","title":"ATM Volume mg_2203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2204:83cde0ea","title":"ATM Volume mg_2204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2205:89879fcb","title":"ATM Volume mg_2205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2206:24ab6dff","title":"ATM Volume mg_2206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2207:196ac24e","title":"ATM Volume mg_2207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2208:b614633b","title":"ATM Volume mg_2208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2209:29d7ce6e","title":"ATM Volume mg_2209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2210:ce02d47c","title":"ATM Volume mg_2210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2211:b4986620","title":"ATM Volume mg_2211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2212:0743df31","title":"ATM Volume mg_2212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2213:7aac52f5","title":"ATM Volume mg_2213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2214:4b1ee5bf","title":"ATM Volume mg_2214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mg_2401:68e5eb45","title":"ATM Volume mg_2401","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:pv01_1001:d1ba6e7e","title":"ATM Volume pv01_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:pv01_1002:b49baee9","title":"ATM Volume pv01_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir1_0001:4eecabb7","title":"ATM Volume vcoir1_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir1_1001:d8683109","title":"ATM Volume vcoir1_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir1_2001:f46e4306","title":"ATM Volume vcoir1_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir2_0001:b4401440","title":"ATM Volume vcoir2_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir2_1001:7235613f","title":"ATM Volume vcoir2_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcoir2_2001:7e83ed4b","title":"ATM Volume vcoir2_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0001:2c84a890","title":"ATM Volume vcolir_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0002:1a6af38b","title":"ATM Volume vcolir_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0003:cb71b1d2","title":"ATM Volume vcolir_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0004:e399c0b0","title":"ATM Volume vcolir_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0005:418903f3","title":"ATM Volume vcolir_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0006:740ffb53","title":"ATM Volume vcolir_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_0007:f7c6558c","title":"ATM Volume vcolir_0007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1001:23e6b014","title":"ATM Volume vcolir_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1002:e04bdd03","title":"ATM Volume vcolir_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1003:3e611371","title":"ATM Volume vcolir_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1004:44ed4461","title":"ATM Volume vcolir_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1005:440b0cd9","title":"ATM Volume vcolir_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1006:2c873272","title":"ATM Volume vcolir_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_1007:77c35266","title":"ATM Volume vcolir_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2001:b5bf0369","title":"ATM Volume vcolir_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2002:36adc0cb","title":"ATM Volume vcolir_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2003:6ff500e4","title":"ATM Volume vcolir_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2004:efb0b2b4","title":"ATM Volume vcolir_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2005:4565cf21","title":"ATM Volume vcolir_2005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2006:0badc6a6","title":"ATM Volume vcolir_2006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcolir_2007:1063ae1c","title":"ATM Volume vcolir_2007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_1001:4a179434","title":"ATM Volume vcors_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_1002:a094f6b5","title":"ATM Volume vcors_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_1003:f15e3c6f","title":"ATM Volume vcors_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_1004:fdbbcc3f","title":"ATM Volume vcors_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_2001:0ff5cef6","title":"ATM Volume vcors_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_2002:d78cb565","title":"ATM Volume vcors_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_2003:1b653add","title":"ATM Volume vcors_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcors_2004:1e2d5cdf","title":"ATM Volume vcors_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0001:caeec82f","title":"ATM Volume vcouvi_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0002:58eb9af3","title":"ATM Volume vcouvi_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0003:44a7719e","title":"ATM Volume vcouvi_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0004:e7e3c1eb","title":"ATM Volume vcouvi_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0005:e30eeb99","title":"ATM Volume vcouvi_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0006:330cb00c","title":"ATM Volume vcouvi_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_0007:9d4f1376","title":"ATM Volume vcouvi_0007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1001:2d8ec82f","title":"ATM Volume vcouvi_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1002:adadfa32","title":"ATM Volume vcouvi_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1003:b22ed255","title":"ATM Volume vcouvi_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1004:775001af","title":"ATM Volume vcouvi_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1005:844b1494","title":"ATM Volume vcouvi_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1006:f0abd8d1","title":"ATM Volume vcouvi_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_1007:1aa6fc20","title":"ATM Volume vcouvi_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2001:fc3874a8","title":"ATM Volume vcouvi_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2002:083f6f2f","title":"ATM Volume vcouvi_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2003:5e1d2c75","title":"ATM Volume vcouvi_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2004:044150bb","title":"ATM Volume vcouvi_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2005:ac203683","title":"ATM Volume vcouvi_2005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2006:951d0112","title":"ATM Volume vcouvi_2006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vcouvi_2007:25150ca0","title":"ATM Volume vcouvi_2007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vega_5001:710ee113","title":"ATM Volume vega_5001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vega_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:atmos_0006:68fb1a37","title":"ATM Volume atmos_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=atmos_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:merimu_1001:9f8d3929","title":"ATM Volume merimu_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=merimu_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:merimu_2001:a0c6a404","title":"ATM Volume merimu_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=merimu_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mexpfs_1001:bf0851db","title":"ATM Volume mexpfs_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Express"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mexpfs_1002:14213405","title":"ATM Volume mexpfs_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Express"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mexspi_0auv:8bc06d71","title":"ATM Volume mexspi_0auv","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Express"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexspi_0auv","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mexspi_0bir:88d7b9c4","title":"ATM Volume mexspi_0bir","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Express"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexspi_0bir","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mgs_0001:8ca2ac16","title":"ATM Volume mgs_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mgsa_0001:ffc7f2bc","title":"ATM Volume mgsa_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mgsa_0002:0f432171","title":"ATM Volume mgsa_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mogc_0001:56f92dc0","title":"ATM Volume mogc_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_0156:7c3d9228","title":"ATM Volume mors_0156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_0210:1c901307","title":"ATM Volume mors_0210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_0410:71233664","title":"ATM Volume mors_0410","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_0610:f8f48512","title":"ATM Volume mors_0610","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1001:d594242f","title":"ATM Volume mors_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1002:92bf2f47","title":"ATM Volume mors_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1003:d839d3d1","title":"ATM Volume mors_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1004:b7de500e","title":"ATM Volume mors_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1005:f703e9cc","title":"ATM Volume mors_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1006:8af062f5","title":"ATM Volume mors_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1007:6f2b6840","title":"ATM Volume mors_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1008:018eaea7","title":"ATM Volume mors_1008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1009:15bf102c","title":"ATM Volume mors_1009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1010:3c058437","title":"ATM Volume mors_1010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1011:6fa58386","title":"ATM Volume mors_1011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1012:ef5d367b","title":"ATM Volume mors_1012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1013:d9fb72d8","title":"ATM Volume mors_1013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561038","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1014:fe24c9ba","title":"ATM Volume mors_1014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1015:03ffee82","title":"ATM Volume mors_1015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1016:21ead8a2","title":"ATM Volume mors_1016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1017:8f83861c","title":"ATM Volume mors_1017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1018:3519e410","title":"ATM Volume mors_1018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1019:ee15e9ae","title":"ATM Volume mors_1019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1020:a1826610","title":"ATM Volume mors_1020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1021:ca8e59db","title":"ATM Volume mors_1021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1022:f9dc0551","title":"ATM Volume mors_1022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1023:bf362f57","title":"ATM Volume mors_1023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1024:95c6af62","title":"ATM Volume mors_1024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1025:0127cadf","title":"ATM Volume mors_1025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1026:5120026d","title":"ATM Volume mors_1026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1027:83563822","title":"ATM Volume mors_1027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1028:f26af113","title":"ATM Volume mors_1028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1029:8306a03a","title":"ATM Volume mors_1029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1030:3b011d0a","title":"ATM Volume mors_1030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1031:7fdac120","title":"ATM Volume mors_1031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1032:fdf0e6b5","title":"ATM Volume mors_1032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1033:3f5f7355","title":"ATM Volume mors_1033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1034:f2f941d8","title":"ATM Volume mors_1034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1035:029ca5ed","title":"ATM Volume mors_1035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1036:3b1ee4ae","title":"ATM Volume mors_1036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1037:b1b78760","title":"ATM Volume mors_1037","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1038:8b3d3956","title":"ATM Volume mors_1038","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1101:baaae302","title":"ATM Volume mors_1101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mors_1102:716bbf77","title":"ATM Volume mors_1102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mpam_0001:464e0ffe","title":"ATM Volume mpam_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mr9_1001:fccf34b2","title":"ATM Volume mr9_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mr9_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mroa_0001:fcb88589","title":"ATM Volume MROA_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0001:d5533c3a","title":"ATM Volume MROM_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0002:b8539d07","title":"ATM Volume MROM_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0003:57176236","title":"ATM Volume MROM_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0004:14a0c827","title":"ATM Volume MROM_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0005:31d93057","title":"ATM Volume MROM_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0006:be15fb0a","title":"ATM Volume MROM_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0007:3b6656be","title":"ATM Volume MROM_0007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0008:a1a8e5f3","title":"ATM Volume MROM_0008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0009:1716cfab","title":"ATM Volume MROM_0009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0010:341116cf","title":"ATM Volume MROM_0010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0011:0b28fbae","title":"ATM Volume MROM_0011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0012:0a20fb8d","title":"ATM Volume MROM_0012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0013:0f7573a7","title":"ATM Volume MROM_0013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0014:90f82edf","title":"ATM Volume MROM_0014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0015:473cabb2","title":"ATM Volume MROM_0015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0016:b023b0cc","title":"ATM Volume MROM_0016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0017:bf94fc46","title":"ATM Volume MROM_0017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0018:8ffb9ec2","title":"ATM Volume MROM_0018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0019:3580b25f","title":"ATM Volume MROM_0019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0020:3e32877e","title":"ATM Volume MROM_0020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0021:0e973f0f","title":"ATM Volume MROM_0021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0022:ecb9e3ba","title":"ATM Volume MROM_0022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0023:4dd339b6","title":"ATM Volume MROM_0023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0024:901b8f65","title":"ATM Volume MROM_0024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0025:39578836","title":"ATM Volume MROM_0025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0026:d2cf13ae","title":"ATM Volume MROM_0026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0027:0ded5643","title":"ATM Volume MROM_0027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0028:346225e7","title":"ATM Volume MROM_0028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0029:78b6b8d3","title":"ATM Volume MROM_0029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0030:b2103a53","title":"ATM Volume MROM_0030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0031:0de91e7e","title":"ATM Volume MROM_0031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0032:7ebe5908","title":"ATM Volume MROM_0032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0033:f3e90ea2","title":"ATM Volume MROM_0033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0034:73362bd0","title":"ATM Volume MROM_0034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0035:2328f1fb","title":"ATM Volume MROM_0035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0036:f7f8c6f6","title":"ATM Volume MROM_0036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0040:f2e0f279","title":"ATM Volume MROM_0040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0041:de51c248","title":"ATM Volume MROM_0041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0042:42884085","title":"ATM Volume MROM_0042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0043:af86730d","title":"ATM Volume MROM_0043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0044:72366520","title":"ATM Volume MROM_0044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0045:d3b4cff5","title":"ATM Volume MROM_0045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0046:33e7c957","title":"ATM Volume MROM_0046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0047:e2d1b3c5","title":"ATM Volume MROM_0047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0048:cb3b7f28","title":"ATM Volume MROM_0048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0049:8cca4d4b","title":"ATM Volume MROM_0049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0050:e562378b","title":"ATM Volume MROM_0050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0051:0167010b","title":"ATM Volume MROM_0051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0052:53d73988","title":"ATM Volume MROM_0052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0053:da684b30","title":"ATM Volume MROM_0053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0054:255d4375","title":"ATM Volume MROM_0054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0055:b98f0f9e","title":"ATM Volume MROM_0055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0056:ed513ae4","title":"ATM Volume MROM_0056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0057:78674460","title":"ATM Volume MROM_0057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0058:5054c64b","title":"ATM Volume MROM_0058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0059:42b7d4c3","title":"ATM Volume MROM_0059","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0060:7343664a","title":"ATM Volume MROM_0060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0061:47310851","title":"ATM Volume MROM_0061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0062:9d3a1c74","title":"ATM Volume MROM_0062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0063:906200bf","title":"ATM Volume MROM_0063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0064:ac4d9011","title":"ATM Volume MROM_0064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0065:b430e396","title":"ATM Volume MROM_0065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0066:9514b72c","title":"ATM Volume MROM_0066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0067:cc8f30d9","title":"ATM Volume MROM_0067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0068:ba9c3b3c","title":"ATM Volume MROM_0068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0069:5defd944","title":"ATM Volume MROM_0069","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0069","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0070:4719818d","title":"ATM Volume MROM_0070","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0070","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0071:44023a10","title":"ATM Volume MROM_0071","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0071","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0072:5d8a2f01","title":"ATM Volume MROM_0072","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0072","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0073:6c754769","title":"ATM Volume MROM_0073","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0073","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0074:290aadee","title":"ATM Volume MROM_0074","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0074","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0075:dab1b414","title":"ATM Volume MROM_0075","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0075","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0076:71baf845","title":"ATM Volume MROM_0076","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0076","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0077:9e55932d","title":"ATM Volume MROM_0077","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0077","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0078:e5b1b727","title":"ATM Volume MROM_0078","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0078","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0079:1d93c8af","title":"ATM Volume MROM_0079","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0079","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0080:0dd970b1","title":"ATM Volume MROM_0080","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0080","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0081:be2caf31","title":"ATM Volume MROM_0081","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0081","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0082:5f232bf5","title":"ATM Volume MROM_0082","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0082","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0083:d8b9a928","title":"ATM Volume MROM_0083","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0083","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0084:21414594","title":"ATM Volume MROM_0084","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0084","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0085:d57e4c1a","title":"ATM Volume MROM_0085","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0086:8bacc10a","title":"ATM Volume MROM_0086","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0086","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0087:ed3a3661","title":"ATM Volume MROM_0087","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0087","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0088:6c6aeeb1","title":"ATM Volume MROM_0088","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0088","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0089:55c8cfaa","title":"ATM Volume MROM_0089","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0089","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0090:57b75ba9","title":"ATM Volume MROM_0090","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0090","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0091:d3d5dac1","title":"ATM Volume MROM_0091","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0091","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0092:3532ddf9","title":"ATM Volume MROM_0092","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0092","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0093:ebdf2731","title":"ATM Volume MROM_0093","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0093","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0094:f4a15a30","title":"ATM Volume MROM_0094","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0094","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0095:92410b24","title":"ATM Volume MROM_0095","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0095","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0096:59e10ab2","title":"ATM Volume MROM_0096","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0096","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0097:6a3d8e14","title":"ATM Volume MROM_0097","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0097","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0098:7e265d4b","title":"ATM Volume MROM_0098","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0098","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0099:c0cde645","title":"ATM Volume MROM_0099","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0099","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0100:141924e5","title":"ATM Volume MROM_0100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0101:b1a82489","title":"ATM Volume MROM_0101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0102:1e312377","title":"ATM Volume MROM_0102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0103:5204c929","title":"ATM Volume MROM_0103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0104:dd60e0e0","title":"ATM Volume MROM_0104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0105:20343e33","title":"ATM Volume MROM_0105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0106:7ebba4db","title":"ATM Volume MROM_0106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0107:af5f7ac6","title":"ATM Volume MROM_0107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0108:081620f9","title":"ATM Volume MROM_0108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0109:8f8c1af5","title":"ATM Volume MROM_0109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0110:165e8a30","title":"ATM Volume MROM_0110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0111:e15f9086","title":"ATM Volume MROM_0111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0112:4ff46449","title":"ATM Volume MROM_0112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0113:9ddd007d","title":"ATM Volume MROM_0113","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0113","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0114:b8e5b35b","title":"ATM Volume MROM_0114","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0114","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0115:9c4eb779","title":"ATM Volume MROM_0115","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0115","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0116:e1833598","title":"ATM Volume MROM_0116","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0117:cf28b01b","title":"ATM Volume MROM_0117","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0117","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0118:acb0fd99","title":"ATM Volume MROM_0118","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0118","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0119:578b3f0e","title":"ATM Volume MROM_0119","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0119","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0120:abd1315f","title":"ATM Volume MROM_0120","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0120","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0121:734fac1d","title":"ATM Volume MROM_0121","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0121","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0122:fe0d5c26","title":"ATM Volume MROM_0122","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0122","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0123:1b724106","title":"ATM Volume MROM_0123","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0123","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0124:6bfd04ec","title":"ATM Volume MROM_0124","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0124","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0125:32db6074","title":"ATM Volume MROM_0125","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0125","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0126:da41da71","title":"ATM Volume MROM_0126","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0127:0fc733a4","title":"ATM Volume MROM_0127","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0128:957c24ed","title":"ATM Volume MROM_0128","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0129:ef5a1066","title":"ATM Volume MROM_0129","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0130:48d15bca","title":"ATM Volume MROM_0130","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0131:21a87df1","title":"ATM Volume MROM_0131","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0132:abd7079e","title":"ATM Volume MROM_0132","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0133:22548365","title":"ATM Volume MROM_0133","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566616","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0134:485f2f7d","title":"ATM Volume MROM_0134","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0134","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0135:77464c51","title":"ATM Volume MROM_0135","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0135","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0136:361095de","title":"ATM Volume MROM_0136","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0136","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0137:7d39654b","title":"ATM Volume MROM_0137","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0137","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0138:e2d8bede","title":"ATM Volume MROM_0138","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0138","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0139:3a161852","title":"ATM Volume MROM_0139","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0139","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0140:a03dec16","title":"ATM Volume MROM_0140","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0141:f5afd1c3","title":"ATM Volume MROM_0141","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0142:b1547825","title":"ATM Volume MROM_0142","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0142","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0143:c2fd28de","title":"ATM Volume MROM_0143","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0143","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0144:3949aa62","title":"ATM Volume MROM_0144","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0144","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0145:7469dd51","title":"ATM Volume MROM_0145","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0146:c71f7983","title":"ATM Volume MROM_0146","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0147:67fdaa5b","title":"ATM Volume MROM_0147","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0148:e219fa86","title":"ATM Volume MROM_0148","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0149:6d691c5b","title":"ATM Volume MROM_0149","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0149","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0150:49b73d2b","title":"ATM Volume MROM_0150","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0150","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0151:4396e5cc","title":"ATM Volume MROM_0151","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0151","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566759","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0152:62c0b6a1","title":"ATM Volume MROM_0152","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0152","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0153:9bb4ca47","title":"ATM Volume MROM_0153","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0153","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0154:cb3d94ef","title":"ATM Volume MROM_0154","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0154","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0155:d7fed723","title":"ATM Volume MROM_0155","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0155","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0156:965d6a17","title":"ATM Volume MROM_0156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0157:c4427991","title":"ATM Volume MROM_0157","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0157","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0158:14fb00a5","title":"ATM Volume MROM_0158","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0158","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0159:1dc3965a","title":"ATM Volume MROM_0159","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0159","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0160:44ca285c","title":"ATM Volume MROM_0160","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0160","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0161:efee2c09","title":"ATM Volume MROM_0161","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0161","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0162:103071be","title":"ATM Volume MROM_0162","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0162","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0163:658677df","title":"ATM Volume MROM_0163","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0164:0b1dcb65","title":"ATM Volume MROM_0164","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0164","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0165:b2a987e0","title":"ATM Volume MROM_0165","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0165","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0166:e8154459","title":"ATM Volume MROM_0166","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0166","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0167:42a9b4de","title":"ATM Volume MROM_0167","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0168:26b68b9b","title":"ATM Volume MROM_0168","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0169:391dcba2","title":"ATM Volume MROM_0169","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0170:43d0cd28","title":"ATM Volume MROM_0170","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0170","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0171:a18a8d21","title":"ATM Volume MROM_0171","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0171","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0172:be42803f","title":"ATM Volume MROM_0172","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0172","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0173:41cdcafa","title":"ATM Volume MROM_0173","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0173","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0174:eb30cc00","title":"ATM Volume MROM_0174","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0174","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0175:431b6872","title":"ATM Volume MROM_0175","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0176:00ca7a16","title":"ATM Volume MROM_0176","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0177:d7357507","title":"ATM Volume MROM_0177","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0178:ec24ba91","title":"ATM Volume MROM_0178","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0178","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0179:fda03f45","title":"ATM Volume MROM_0179","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0179","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0180:b4aec96a","title":"ATM Volume MROM_0180","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0180","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0181:fc5249a7","title":"ATM Volume MROM_0181","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0181","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0182:6bfc6027","title":"ATM Volume MROM_0182","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0183:5c0a63af","title":"ATM Volume MROM_0183","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0183","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0184:25b1a431","title":"ATM Volume MROM_0184","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0184","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0185:240085aa","title":"ATM Volume MROM_0185","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0185","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0186:a937134e","title":"ATM Volume MROM_0186","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0187:bfdc51d0","title":"ATM Volume MROM_0187","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0188:52b71834","title":"ATM Volume MROM_0188","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0189:1cc711da","title":"ATM Volume MROM_0189","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0189","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0190:b25d9cf3","title":"ATM Volume MROM_0190","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0190","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0191:696f8b03","title":"ATM Volume MROM_0191","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0191","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0192:b5a2f3ab","title":"ATM Volume MROM_0192","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0192","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0193:0d54ed6b","title":"ATM Volume MROM_0193","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0193","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0194:79e50171","title":"ATM Volume MROM_0194","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0194","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0195:213926db","title":"ATM Volume MROM_0195","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0196:1a3a075a","title":"ATM Volume MROM_0196","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0196","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0197:66780b5e","title":"ATM Volume MROM_0197","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0197","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0198:9f6861e8","title":"ATM Volume MROM_0198","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0198","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0199:01cd8c85","title":"ATM Volume MROM_0199","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0200:b159b346","title":"ATM Volume MROM_0200","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0201:b5d67922","title":"ATM Volume MROM_0201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0202:11ba72d2","title":"ATM Volume MROM_0202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0203:a87c3ccf","title":"ATM Volume MROM_0203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0204:dfcb8bd5","title":"ATM Volume MROM_0204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0205:a3b98867","title":"ATM Volume MROM_0205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0206:3f24e03f","title":"ATM Volume MROM_0206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0207:6ba1d173","title":"ATM Volume MROM_0207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0208:5382cbc3","title":"ATM Volume MROM_0208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0209:4596dfe0","title":"ATM Volume MROM_0209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0210:33ffd1b5","title":"ATM Volume MROM_0210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0211:a4bb80e5","title":"ATM Volume MROM_0211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0212:4d56eb6b","title":"ATM Volume MROM_0212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0213:b30a8c2f","title":"ATM Volume MROM_0213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0214:c2e18269","title":"ATM Volume MROM_0214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0215:0e4e72f0","title":"ATM Volume MROM_0215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0216:f20e2cbe","title":"ATM Volume MROM_0216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0217:e3a9d510","title":"ATM Volume MROM_0217","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0217","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0218:66286e33","title":"ATM Volume MROM_0218","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0218","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0219:ed477ff1","title":"ATM Volume MROM_0219","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0219","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0220:6202185f","title":"ATM Volume MROM_0220","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0221:6de0afde","title":"ATM Volume MROM_0221","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0222:8cede8c1","title":"ATM Volume MROM_0222","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0222","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0223:d75627f1","title":"ATM Volume MROM_0223","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0223","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0224:9a4be4a7","title":"ATM Volume MROM_0224","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0224","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0225:b1a75144","title":"ATM Volume MROM_0225","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0225","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0226:dd4416f8","title":"ATM Volume MROM_0226","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0226","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_0227:5bf2f76f","title":"ATM Volume MROM_0227","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1001:16087865","title":"ATM Volume MROM_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1002:60468ff5","title":"ATM Volume MROM_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1003:e5f61b1c","title":"ATM Volume MROM_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1004:f8f85531","title":"ATM Volume MROM_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1005:3de3317b","title":"ATM Volume MROM_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1006:fa67b358","title":"ATM Volume MROM_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1007:2bce1501","title":"ATM Volume MROM_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1008:501a321a","title":"ATM Volume MROM_1008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1009:e771082e","title":"ATM Volume MROM_1009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1010:5779d18b","title":"ATM Volume MROM_1010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1011:684291cf","title":"ATM Volume MROM_1011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1012:de294471","title":"ATM Volume MROM_1012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1013:867f0eee","title":"ATM Volume MROM_1013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1014:a0cc6cd8","title":"ATM Volume MROM_1014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1015:592732a1","title":"ATM Volume MROM_1015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1016:191339e0","title":"ATM Volume MROM_1016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1017:3189be26","title":"ATM Volume MROM_1017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1018:db2c2369","title":"ATM Volume MROM_1018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1019:1b0cde7c","title":"ATM Volume MROM_1019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1020:e3c2919c","title":"ATM Volume MROM_1020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1021:3d667fc5","title":"ATM Volume MROM_1021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1022:442c2505","title":"ATM Volume MROM_1022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1023:883eb1b3","title":"ATM Volume MROM_1023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1024:b6d190ea","title":"ATM Volume MROM_1024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1025:1a9c7498","title":"ATM Volume MROM_1025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1026:992835d8","title":"ATM Volume MROM_1026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1027:86983b88","title":"ATM Volume MROM_1027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1028:3650f2c3","title":"ATM Volume MROM_1028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1029:105e0bce","title":"ATM Volume MROM_1029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1030:926801c2","title":"ATM Volume MROM_1030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1031:5b469acb","title":"ATM Volume MROM_1031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1032:4f4962bd","title":"ATM Volume MROM_1032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1033:e2ec474a","title":"ATM Volume MROM_1033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1034:e941a60d","title":"ATM Volume MROM_1034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1035:35e001b3","title":"ATM Volume MROM_1035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1036:fb617856","title":"ATM Volume MROM_1036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1040:a930aa35","title":"ATM Volume MROM_1040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1041:640ab60f","title":"ATM Volume MROM_1041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1042:ad022314","title":"ATM Volume MROM_1042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1043:46aa0c58","title":"ATM Volume MROM_1043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1044:6a20b884","title":"ATM Volume MROM_1044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1045:3ac71d53","title":"ATM Volume MROM_1045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1046:045f8f32","title":"ATM Volume MROM_1046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1047:d6e12cef","title":"ATM Volume MROM_1047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1048:66523db3","title":"ATM Volume MROM_1048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1049:09d46b12","title":"ATM Volume MROM_1049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1050:b1bee44a","title":"ATM Volume MROM_1050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1051:369411dc","title":"ATM Volume MROM_1051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1052:7c6174df","title":"ATM Volume MROM_1052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1053:d01370cb","title":"ATM Volume MROM_1053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1054:ccc93b2a","title":"ATM Volume MROM_1054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1055:70837c5e","title":"ATM Volume MROM_1055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1056:b04de1ec","title":"ATM Volume MROM_1056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1057:a83c6db3","title":"ATM Volume MROM_1057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1058:b2fb1cd7","title":"ATM Volume MROM_1058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1059:d8afbd3a","title":"ATM Volume MROM_1059","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1060:1ffa7872","title":"ATM Volume MROM_1060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1061:c7684c0f","title":"ATM Volume MROM_1061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1062:c71a5974","title":"ATM Volume MROM_1062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1063:37971d0c","title":"ATM Volume MROM_1063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1064:bb7f6842","title":"ATM Volume MROM_1064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1065:125e1d50","title":"ATM Volume MROM_1065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1066:d6f5989c","title":"ATM Volume MROM_1066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1067:36030e0f","title":"ATM Volume MROM_1067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1068:57a1ff20","title":"ATM Volume MROM_1068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1069:c9392a2e","title":"ATM Volume MROM_1069","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1069","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1070:e5a11f9f","title":"ATM Volume MROM_1070","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1070","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1071:89f7ef51","title":"ATM Volume MROM_1071","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1071","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1072:eb4ed00e","title":"ATM Volume MROM_1072","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1072","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1073:ad8bfd28","title":"ATM Volume MROM_1073","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1073","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1074:a7dd95ae","title":"ATM Volume MROM_1074","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1074","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1075:331767bc","title":"ATM Volume MROM_1075","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1075","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1076:c0d04843","title":"ATM Volume MROM_1076","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1076","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1077:e2a62b17","title":"ATM Volume MROM_1077","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1077","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1078:a81de8ef","title":"ATM Volume MROM_1078","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1078","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1079:83c7b0e3","title":"ATM Volume MROM_1079","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1079","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1080:581d42f0","title":"ATM Volume MROM_1080","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1080","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1081:1c994fc1","title":"ATM Volume MROM_1081","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1081","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1082:64244cf0","title":"ATM Volume MROM_1082","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1082","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1083:c29f05c0","title":"ATM Volume MROM_1083","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1083","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568071","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1084:7c918149","title":"ATM Volume MROM_1084","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1084","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1085:ba7a8556","title":"ATM Volume MROM_1085","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1086:5871914f","title":"ATM Volume MROM_1086","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1086","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1087:284806df","title":"ATM Volume MROM_1087","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1087","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1088:bf50736a","title":"ATM Volume MROM_1088","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1088","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1089:428d4bf4","title":"ATM Volume MROM_1089","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1089","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1090:c0d698eb","title":"ATM Volume MROM_1090","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1090","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1091:bb960b35","title":"ATM Volume MROM_1091","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1091","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1092:bcba1e8b","title":"ATM Volume MROM_1092","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1092","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1093:23950b72","title":"ATM Volume MROM_1093","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1093","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1094:43d24f75","title":"ATM Volume MROM_1094","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1094","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1095:350e2d67","title":"ATM Volume MROM_1095","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1095","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1096:5e0ff4da","title":"ATM Volume MROM_1096","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1096","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1097:b306cbdd","title":"ATM Volume MROM_1097","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1097","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1098:a4660ffb","title":"ATM Volume MROM_1098","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1098","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1099:0ef0cd4b","title":"ATM Volume MROM_1099","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1099","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1100:57ea102a","title":"ATM Volume MROM_1100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1101:9025af84","title":"ATM Volume MROM_1101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1102:46d057b6","title":"ATM Volume MROM_1102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1103:4494f518","title":"ATM Volume MROM_1103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1104:f719285d","title":"ATM Volume MROM_1104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1105:09af93e5","title":"ATM Volume MROM_1105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1106:1d9abd33","title":"ATM Volume MROM_1106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1107:87d81a44","title":"ATM Volume MROM_1107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1108:97f46a6f","title":"ATM Volume MROM_1108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1109:086f65f8","title":"ATM Volume MROM_1109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1110:4c3830cb","title":"ATM Volume MROM_1110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1111:96277808","title":"ATM Volume MROM_1111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1112:6a4719ce","title":"ATM Volume MROM_1112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1113:6a2bd216","title":"ATM Volume MROM_1113","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1113","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1114:7f046f77","title":"ATM Volume MROM_1114","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1114","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1115:d109b9a9","title":"ATM Volume MROM_1115","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1115","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1116:93d76f89","title":"ATM Volume MROM_1116","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1117:2ed55335","title":"ATM Volume MROM_1117","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1117","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1118:6582f778","title":"ATM Volume MROM_1118","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1118","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1119:ed27c13e","title":"ATM Volume MROM_1119","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1119","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1120:5d1ce176","title":"ATM Volume MROM_1120","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1120","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1121:85cdeb7c","title":"ATM Volume MROM_1121","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1121","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1122:92102b31","title":"ATM Volume MROM_1122","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1122","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1123:5e33bf0e","title":"ATM Volume MROM_1123","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1123","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1124:d8c475b6","title":"ATM Volume MROM_1124","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1124","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1125:b7cb8a8c","title":"ATM Volume MROM_1125","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1125","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1126:e9d9e0a9","title":"ATM Volume MROM_1126","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1127:a0a20c12","title":"ATM Volume MROM_1127","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1128:1de166ed","title":"ATM Volume MROM_1128","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1129:3747a331","title":"ATM Volume MROM_1129","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1130:64a8bc15","title":"ATM Volume MROM_1130","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1131:93591c94","title":"ATM Volume MROM_1131","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1132:57d69d78","title":"ATM Volume MROM_1132","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1133:b658e8cf","title":"ATM Volume MROM_1133","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1134:028e3145","title":"ATM Volume MROM_1134","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1134","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1135:4b61cb88","title":"ATM Volume MROM_1135","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1135","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1136:14e926a9","title":"ATM Volume MROM_1136","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1136","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1137:69431667","title":"ATM Volume MROM_1137","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1137","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1138:9c61aaa2","title":"ATM Volume MROM_1138","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1138","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1139:bbaf602f","title":"ATM Volume MROM_1139","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1139","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1140:1e66d7ff","title":"ATM Volume MROM_1140","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1141:b7b6ba9b","title":"ATM Volume MROM_1141","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1142:eb2386fc","title":"ATM Volume MROM_1142","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1142","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1143:133dbc85","title":"ATM Volume MROM_1143","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1143","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1144:ac3077c2","title":"ATM Volume MROM_1144","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1144","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1145:e0bde19a","title":"ATM Volume MROM_1145","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1146:f2b16e48","title":"ATM Volume MROM_1146","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1147:8f4aa01d","title":"ATM Volume MROM_1147","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1148:942af5d9","title":"ATM Volume MROM_1148","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1149:18c67f43","title":"ATM Volume MROM_1149","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1149","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1150:4a3e6838","title":"ATM Volume MROM_1150","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1150","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1151:c15bfe42","title":"ATM Volume MROM_1151","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1151","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1152:80d70462","title":"ATM Volume MROM_1152","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1152","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1153:2d960d2b","title":"ATM Volume MROM_1153","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1153","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1154:eeab56fc","title":"ATM Volume MROM_1154","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1154","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1155:10cd9f8b","title":"ATM Volume MROM_1155","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1155","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1156:9a9fa05a","title":"ATM Volume MROM_1156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1157:94ef34f2","title":"ATM Volume MROM_1157","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1157","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1158:fa561aa9","title":"ATM Volume MROM_1158","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1158","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1159:2b59a1ac","title":"ATM Volume MROM_1159","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1159","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1160:93d90aaa","title":"ATM Volume MROM_1160","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1160","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1161:d26cb455","title":"ATM Volume MROM_1161","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1161","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1162:ec74938a","title":"ATM Volume MROM_1162","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1162","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1163:ecae7ab6","title":"ATM Volume MROM_1163","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1164:6bf7fe60","title":"ATM Volume MROM_1164","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1164","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1165:bb5f827e","title":"ATM Volume MROM_1165","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1165","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1166:99679e9e","title":"ATM Volume MROM_1166","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1166","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1167:d80b2a20","title":"ATM Volume MROM_1167","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1168:5e2b0f50","title":"ATM Volume MROM_1168","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1169:a6702bf3","title":"ATM Volume MROM_1169","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1170:6d60b0bd","title":"ATM Volume MROM_1170","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1170","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1171:91c03f37","title":"ATM Volume MROM_1171","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1171","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1172:d0a5f829","title":"ATM Volume MROM_1172","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1172","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1173:2f1fd601","title":"ATM Volume MROM_1173","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1173","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1174:98153ce4","title":"ATM Volume MROM_1174","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1174","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1175:d0d99eb4","title":"ATM Volume MROM_1175","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1176:bb3cafe0","title":"ATM Volume MROM_1176","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1177:6be6d60b","title":"ATM Volume MROM_1177","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1178:de2c5e31","title":"ATM Volume MROM_1178","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1178","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1179:f73f64f3","title":"ATM Volume MROM_1179","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1179","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1180:87944f27","title":"ATM Volume MROM_1180","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1180","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1181:2ab75dff","title":"ATM Volume MROM_1181","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1181","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1182:25fec022","title":"ATM Volume MROM_1182","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1183:f3ff5ca5","title":"ATM Volume MROM_1183","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1183","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1184:6b8aae44","title":"ATM Volume MROM_1184","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1184","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1185:3658ea18","title":"ATM Volume MROM_1185","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1185","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1186:868cdb07","title":"ATM Volume MROM_1186","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1187:03c5a2c4","title":"ATM Volume MROM_1187","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1188:38816d91","title":"ATM Volume MROM_1188","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1189:0540d942","title":"ATM Volume MROM_1189","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1189","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1190:94026595","title":"ATM Volume MROM_1190","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1190","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1191:0a531177","title":"ATM Volume MROM_1191","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1191","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1192:aae7e6d2","title":"ATM Volume MROM_1192","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1192","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1193:6668070f","title":"ATM Volume MROM_1193","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1193","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1194:8f53c428","title":"ATM Volume MROM_1194","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1194","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1195:16151470","title":"ATM Volume MROM_1195","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1196:8fd13986","title":"ATM Volume MROM_1196","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1196","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1197:d2c356dd","title":"ATM Volume MROM_1197","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1197","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1198:66be52af","title":"ATM Volume MROM_1198","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1198","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1199:25db044f","title":"ATM Volume MROM_1199","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1200:6868776b","title":"ATM Volume MROM_1200","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1201:7634c24c","title":"ATM Volume MROM_1201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1202:76f03678","title":"ATM Volume MROM_1202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1203:cf6b56a4","title":"ATM Volume MROM_1203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1204:7cbbc8b4","title":"ATM Volume MROM_1204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1205:d0f2f6be","title":"ATM Volume MROM_1205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1206:6e70a6a4","title":"ATM Volume MROM_1206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1207:6631d154","title":"ATM Volume MROM_1207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1208:a8caafa7","title":"ATM Volume MROM_1208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1209:066f2423","title":"ATM Volume MROM_1209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1210:a377e690","title":"ATM Volume MROM_1210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1211:4b5ae186","title":"ATM Volume MROM_1211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1212:ff70dcb6","title":"ATM Volume MROM_1212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1213:d885d78d","title":"ATM Volume MROM_1213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1214:f70d6627","title":"ATM Volume MROM_1214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1215:e4b384fd","title":"ATM Volume MROM_1215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1216:6f26cf02","title":"ATM Volume MROM_1216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1217:8e2a76a5","title":"ATM Volume MROM_1217","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1217","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1218:2ce3eb2f","title":"ATM Volume MROM_1218","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1218","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1219:ca1634dd","title":"ATM Volume MROM_1219","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1219","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1220:deb6e1e4","title":"ATM Volume MROM_1220","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1221:2b631fde","title":"ATM Volume MROM_1221","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1222:465a65d0","title":"ATM Volume MROM_1222","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1222","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1223:d5f7b302","title":"ATM Volume MROM_1223","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1223","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1224:7a5768b6","title":"ATM Volume MROM_1224","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1224","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1225:e2b926e0","title":"ATM Volume MROM_1225","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1225","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1226:4f69a9be","title":"ATM Volume MROM_1226","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1226","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_1227:835ee98a","title":"ATM Volume MROM_1227","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2001:e19293d2","title":"ATM Volume MROM_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2002:971e211b","title":"ATM Volume MROM_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2003:11ab4f34","title":"ATM Volume MROM_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2004:46413452","title":"ATM Volume MROM_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2005:b688c981","title":"ATM Volume MROM_2005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2006:54b4256f","title":"ATM Volume MROM_2006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2007:090db2c4","title":"ATM Volume MROM_2007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2008:47cf51b7","title":"ATM Volume MROM_2008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2009:370e4af2","title":"ATM Volume MROM_2009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2010:574b0134","title":"ATM Volume MROM_2010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2011:2e81430d","title":"ATM Volume MROM_2011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2012:c7e717bb","title":"ATM Volume MROM_2012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2013:01d21f34","title":"ATM Volume MROM_2013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2014:200da632","title":"ATM Volume MROM_2014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2015:b0ea596d","title":"ATM Volume MROM_2015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2016:3802b37c","title":"ATM Volume MROM_2016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2017:7d0e409d","title":"ATM Volume MROM_2017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2018:71ded0e0","title":"ATM Volume MROM_2018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2019:ddf88e80","title":"ATM Volume MROM_2019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2020:09ca7f8c","title":"ATM Volume MROM_2020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2021:3820a18e","title":"ATM Volume MROM_2021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2022:1cffd768","title":"ATM Volume MROM_2022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2023:37cd0d2c","title":"ATM Volume MROM_2023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2024:87f7d022","title":"ATM Volume MROM_2024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2025:02b520de","title":"ATM Volume MROM_2025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2026:b488cdc2","title":"ATM Volume MROM_2026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2027:519338c6","title":"ATM Volume MROM_2027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2028:e4bd35b6","title":"ATM Volume MROM_2028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2029:aeb59833","title":"ATM Volume MROM_2029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2030:8a72790c","title":"ATM Volume MROM_2030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2031:81ecc5d8","title":"ATM Volume MROM_2031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2032:441f64a7","title":"ATM Volume MROM_2032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2033:04e4d536","title":"ATM Volume MROM_2033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2034:b9631f1b","title":"ATM Volume MROM_2034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2035:ac9612aa","title":"ATM Volume MROM_2035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2036:16e70226","title":"ATM Volume MROM_2036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2040:c2df3fb6","title":"ATM Volume MROM_2040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2041:dcd08bd9","title":"ATM Volume MROM_2041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2042:144cd2be","title":"ATM Volume MROM_2042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2043:6e57faa2","title":"ATM Volume MROM_2043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2044:ae032fe6","title":"ATM Volume MROM_2044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2045:55cc92a2","title":"ATM Volume MROM_2045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2046:26ba0078","title":"ATM Volume MROM_2046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2047:563b5483","title":"ATM Volume MROM_2047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2048:5e5c0c44","title":"ATM Volume MROM_2048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2049:565a363a","title":"ATM Volume MROM_2049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2050:b764fe1f","title":"ATM Volume MROM_2050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2051:7d7965e9","title":"ATM Volume MROM_2051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2052:8575e2c8","title":"ATM Volume MROM_2052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2053:7b123224","title":"ATM Volume MROM_2053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2054:a42fd62e","title":"ATM Volume MROM_2054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2055:dd6e2da7","title":"ATM Volume MROM_2055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2056:5395bcef","title":"ATM Volume MROM_2056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2057:c53e63af","title":"ATM Volume MROM_2057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2058:9a290fce","title":"ATM Volume MROM_2058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2059:063c8148","title":"ATM Volume MROM_2059","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2060:b302634b","title":"ATM Volume MROM_2060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2061:bbe2815d","title":"ATM Volume MROM_2061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2062:d7d94e56","title":"ATM Volume MROM_2062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2063:058b3e9a","title":"ATM Volume MROM_2063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2064:c7ef20f2","title":"ATM Volume MROM_2064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2065:ed2e5c0e","title":"ATM Volume MROM_2065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2066:bb48b189","title":"ATM Volume MROM_2066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2067:2d308290","title":"ATM Volume MROM_2067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2068:8d498cf5","title":"ATM Volume MROM_2068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2069:2977fc15","title":"ATM Volume MROM_2069","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2069","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2070:ce8ba451","title":"ATM Volume MROM_2070","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2070","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2071:685f2bd5","title":"ATM Volume MROM_2071","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2071","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2072:c0c58365","title":"ATM Volume MROM_2072","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2072","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2073:a068231e","title":"ATM Volume MROM_2073","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2073","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2074:dd4774eb","title":"ATM Volume MROM_2074","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2074","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2075:22e2aa02","title":"ATM Volume MROM_2075","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2075","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2076:ebec6c54","title":"ATM Volume MROM_2076","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2076","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2077:c76fdf24","title":"ATM Volume MROM_2077","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2077","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2078:61210f82","title":"ATM Volume MROM_2078","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2078","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2079:7681a8f4","title":"ATM Volume MROM_2079","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2079","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2080:e3068f48","title":"ATM Volume MROM_2080","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2080","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2081:f1f27789","title":"ATM Volume MROM_2081","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2081","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2082:52d57891","title":"ATM Volume MROM_2082","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2082","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2083:5997fa3d","title":"ATM Volume MROM_2083","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2083","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2084:a5a53eb2","title":"ATM Volume MROM_2084","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2084","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2085:c73825c1","title":"ATM Volume MROM_2085","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2086:a14a09a6","title":"ATM Volume MROM_2086","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2086","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2087:88939eb6","title":"ATM Volume MROM_2087","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2087","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2088:70507813","title":"ATM Volume MROM_2088","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2088","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2089:e233ae4e","title":"ATM Volume MROM_2089","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2089","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2090:fee6c744","title":"ATM Volume MROM_2090","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2090","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2091:b8616832","title":"ATM Volume MROM_2091","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2091","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2092:4bbddec7","title":"ATM Volume MROM_2092","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2092","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2093:dd56bae1","title":"ATM Volume MROM_2093","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2093","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2094:014ab7c6","title":"ATM Volume MROM_2094","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2094","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2095:779a5b09","title":"ATM Volume MROM_2095","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2095","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2096:6a7fd11a","title":"ATM Volume MROM_2096","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2096","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2097:e4b6c7f3","title":"ATM Volume MROM_2097","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2097","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2098:14ad7eb0","title":"ATM Volume MROM_2098","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2098","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2099:397eac1e","title":"ATM Volume MROM_2099","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2099","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2100:1770c2eb","title":"ATM Volume MROM_2100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2101:73fa1643","title":"ATM Volume MROM_2101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2102:9933a82d","title":"ATM Volume MROM_2102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2103:898d8650","title":"ATM Volume MROM_2103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2104:a7b49ffa","title":"ATM Volume MROM_2104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2105:b7c515b9","title":"ATM Volume MROM_2105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2106:acab5485","title":"ATM Volume MROM_2106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2107:ecbe3f35","title":"ATM Volume MROM_2107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2108:31c825e6","title":"ATM Volume MROM_2108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2109:26f7538e","title":"ATM Volume MROM_2109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2110:afb212ae","title":"ATM Volume MROM_2110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2111:0f4abdd2","title":"ATM Volume MROM_2111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2112:631bfee4","title":"ATM Volume MROM_2112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2113:47a42d05","title":"ATM Volume MROM_2113","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2113","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2114:66bd1d97","title":"ATM Volume MROM_2114","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2114","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2115:eeb39133","title":"ATM Volume MROM_2115","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2115","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2116:98fc03f4","title":"ATM Volume MROM_2116","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2117:420edec8","title":"ATM Volume MROM_2117","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2117","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2118:3330a7b4","title":"ATM Volume MROM_2118","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2118","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2119:45daff2c","title":"ATM Volume MROM_2119","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2119","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2120:bf02ac3c","title":"ATM Volume MROM_2120","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2120","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2121:15412c2d","title":"ATM Volume MROM_2121","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2121","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2122:422573f7","title":"ATM Volume MROM_2122","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2122","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2123:ca6bfa13","title":"ATM Volume MROM_2123","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2123","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2124:6c0962e5","title":"ATM Volume MROM_2124","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2124","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2125:a60c433d","title":"ATM Volume MROM_2125","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2125","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2126:60afaf0a","title":"ATM Volume MROM_2126","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2127:123527ad","title":"ATM Volume MROM_2127","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2128:6b30818a","title":"ATM Volume MROM_2128","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2129:6971de6b","title":"ATM Volume MROM_2129","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2130:a8d26b7b","title":"ATM Volume MROM_2130","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2131:6942888b","title":"ATM Volume MROM_2131","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2132:de1f0acd","title":"ATM Volume MROM_2132","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2133:b124867e","title":"ATM Volume MROM_2133","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2134:5d3cd058","title":"ATM Volume MROM_2134","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2134","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2135:9b45f8c0","title":"ATM Volume MROM_2135","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2135","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2136:ed7b9ce8","title":"ATM Volume MROM_2136","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2136","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2137:2361b0ea","title":"ATM Volume MROM_2137","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2137","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2138:e240fc13","title":"ATM Volume MROM_2138","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2138","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2139:65fa62de","title":"ATM Volume MROM_2139","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2139","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2140:ffc8680a","title":"ATM Volume MROM_2140","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2141:67003cb2","title":"ATM Volume MROM_2141","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2142:c7b632de","title":"ATM Volume MROM_2142","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2142","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2143:0fe1172a","title":"ATM Volume MROM_2143","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2143","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2144:e6ee9ae0","title":"ATM Volume MROM_2144","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2144","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2145:66294f2e","title":"ATM Volume MROM_2145","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2146:07cae673","title":"ATM Volume MROM_2146","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2147:c25b7a78","title":"ATM Volume MROM_2147","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2148:abd43a40","title":"ATM Volume MROM_2148","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2149:32c27db7","title":"ATM Volume MROM_2149","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2149","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2150:846e8e3f","title":"ATM Volume MROM_2150","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2150","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2151:99c17919","title":"ATM Volume MROM_2151","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2151","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2152:e832e9d2","title":"ATM Volume MROM_2152","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2152","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2153:b71f34d5","title":"ATM Volume MROM_2153","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2153","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2154:9d0a901e","title":"ATM Volume MROM_2154","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2154","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2155:ea1e405b","title":"ATM Volume MROM_2155","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2155","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2156:e73b9dc5","title":"ATM Volume MROM_2156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2157:52c04daf","title":"ATM Volume MROM_2157","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2157","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2158:f3ce2c96","title":"ATM Volume MROM_2158","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2158","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2159:0a54eed8","title":"ATM Volume MROM_2159","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2159","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2160:d9f02daf","title":"ATM Volume MROM_2160","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2160","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2161:6f052f2e","title":"ATM Volume MROM_2161","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2161","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2162:ed584119","title":"ATM Volume MROM_2162","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2162","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2163:dedba2c8","title":"ATM Volume MROM_2163","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2164:cf596471","title":"ATM Volume MROM_2164","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2164","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2165:383f1c1b","title":"ATM Volume MROM_2165","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2165","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2166:fa91c00c","title":"ATM Volume MROM_2166","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2166","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2167:e53f2b81","title":"ATM Volume MROM_2167","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2168:0d67902d","title":"ATM Volume MROM_2168","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2169:6ad6b89f","title":"ATM Volume MROM_2169","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2170:bfe8f781","title":"ATM Volume MROM_2170","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2170","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2171:b4a93483","title":"ATM Volume MROM_2171","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2171","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2172:bb18e2a1","title":"ATM Volume MROM_2172","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2172","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2173:3ae93da0","title":"ATM Volume MROM_2173","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2173","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2174:ac1ce764","title":"ATM Volume MROM_2174","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2174","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2175:edcae265","title":"ATM Volume MROM_2175","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2176:397406fe","title":"ATM Volume MROM_2176","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2177:a19e0a25","title":"ATM Volume MROM_2177","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2178:2366d20c","title":"ATM Volume MROM_2178","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2178","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2179:c49c020d","title":"ATM Volume MROM_2179","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2179","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2180:14d9142d","title":"ATM Volume MROM_2180","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2180","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2181:1110c5f1","title":"ATM Volume MROM_2181","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2181","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2182:f656cbaf","title":"ATM Volume MROM_2182","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2183:2d91c865","title":"ATM Volume MROM_2183","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2183","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2184:718605f8","title":"ATM Volume MROM_2184","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2184","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2185:7680d0df","title":"ATM Volume MROM_2185","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2185","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2186:33889af6","title":"ATM Volume MROM_2186","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2187:85beea8b","title":"ATM Volume MROM_2187","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2188:f5d0bde5","title":"ATM Volume MROM_2188","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2189:90b9606d","title":"ATM Volume MROM_2189","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2189","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2190:059a28b9","title":"ATM Volume MROM_2190","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2190","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2191:21a486e5","title":"ATM Volume MROM_2191","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2191","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2192:d39172b7","title":"ATM Volume MROM_2192","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2192","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2193:c02cca5a","title":"ATM Volume MROM_2193","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2193","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2194:8d93339b","title":"ATM Volume MROM_2194","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2194","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2195:031909d3","title":"ATM Volume MROM_2195","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2196:c5fc1dc6","title":"ATM Volume MROM_2196","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2196","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2197:9be2f6ce","title":"ATM Volume MROM_2197","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2197","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2198:0bdb4313","title":"ATM Volume MROM_2198","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2198","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2199:1daa3d17","title":"ATM Volume MROM_2199","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2200:7e3acbc9","title":"ATM Volume MROM_2200","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2201:5e560bf8","title":"ATM Volume MROM_2201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2202:db568e91","title":"ATM Volume MROM_2202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2203:df7aabc5","title":"ATM Volume MROM_2203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2204:0e6971c7","title":"ATM Volume MROM_2204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2205:041486a0","title":"ATM Volume MROM_2205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2206:8a5eb395","title":"ATM Volume MROM_2206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2207:941c1a42","title":"ATM Volume MROM_2207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2208:d2a79fde","title":"ATM Volume MROM_2208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2209:e2c509d7","title":"ATM Volume MROM_2209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2210:b6e5681a","title":"ATM Volume MROM_2210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2211:ccfca69e","title":"ATM Volume MROM_2211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2212:1d22bf9f","title":"ATM Volume MROM_2212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2213:561184a1","title":"ATM Volume MROM_2213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2214:427c46f5","title":"ATM Volume MROM_2214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2215:0f23abd0","title":"ATM Volume MROM_2215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2216:1060c88b","title":"ATM Volume MROM_2216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2217:e5ce6c4d","title":"ATM Volume MROM_2217","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2217","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2218:231b58cc","title":"ATM Volume MROM_2218","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2218","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2219:8d1d1d97","title":"ATM Volume MROM_2219","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2219","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2220:cb259b48","title":"ATM Volume MROM_2220","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2221:23c2f1c0","title":"ATM Volume MROM_2221","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2222:8ecf00eb","title":"ATM Volume MROM_2222","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2222","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2223:76d5fce6","title":"ATM Volume MROM_2223","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2223","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2224:441932ca","title":"ATM Volume MROM_2224","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2224","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2225:16b39307","title":"ATM Volume MROM_2225","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2225","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2226:ac933a00","title":"ATM Volume MROM_2226","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2226","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrom_2227:3afb3fa4","title":"ATM Volume MROM_2227","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mslrem_0001:0dfbec69","title":"ATM Volume mslrem_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mslrem_1001:f23fef1f","title":"ATM Volume mslrem_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571131","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:mrors_2001:99f1bc32","title":"ATM Volume mrors_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mrors_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:odya_0001:b6045ae2","title":"ATM Volume odya_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:odya_1001:2da57ee2","title":"ATM Volume odya_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phld_0001:e61df975","title":"ATM Volume phld_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phld_0002:50241c81","title":"ATM Volume phld_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phld_0003:876cea7c","title":"ATM Volume phld_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phmt_0001:d1620ac6","title":"ATM Volume phmt_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phmt_0002:6a2631d5","title":"ATM Volume phmt_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phmt_0003:69b637e0","title":"ATM Volume phmt_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phxao_1001:0ccde453","title":"ATM Volume phxao_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxao_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phxase_0001:c4ff7563","title":"ATM Volume phxase_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phxase_0002:7e817e14","title":"ATM Volume phxase_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:phxwnd_0001:e248e5ba","title":"ATM Volume phxwnd_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxwnd_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vl_1001:6e4f99af","title":"ATM Volume vl_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vl_1002:2d51c11b","title":"ATM Volume vl_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vo_3001:f789f723","title":"ATM Volume vo_3001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vo_3002:f7b75140","title":"ATM Volume vo_3002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vomr_0001:60baf1a8","title":"ATM Volume vomr_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vomr_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0001:151f53dd","title":"ATM Volume couvis_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:coiss_0011:8e3ca792","title":"ATM Volume coiss_0011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coiss_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0002:08537b20","title":"ATM Volume couvis_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gbat_0001:ac90c4e0","title":"ATM Volume gbat_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gbat_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gopr_5001:06d0f4bb","title":"ATM Volume gopr_5001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gopr_5002:211a88de","title":"ATM Volume gopr_5002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gouv_0002:5e5c373c","title":"ATM Volume gouv_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gouv_0003:ae349f91","title":"ATM Volume gouv_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:gp_0001:e73d6a20","title":"ATM Volume gp_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnogrv_0001:0a4355ee","title":"ATM Volume jnogrv_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnogrv_0002:5b3b2be6","title":"ATM Volume jnogrv_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnogrv_1001:de617829","title":"ATM Volume jnogrv_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1000:524435a4","title":"ATM Volume jnojir_1000","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1001:a4862b21","title":"ATM Volume jnojir_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1002:d9cdbbe4","title":"ATM Volume jnojir_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1003:4e326793","title":"ATM Volume jnojir_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1004:809b9016","title":"ATM Volume jnojir_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1005:4f57f012","title":"ATM Volume jnojir_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1006:696f0e56","title":"ATM Volume jnojir_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1007:2fd389e2","title":"ATM Volume jnojir_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1008:d3cbee0c","title":"ATM Volume jnojir_1008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1009:51160256","title":"ATM Volume jnojir_1009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1010:fe3d8377","title":"ATM Volume jnojir_1010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1011:b3ac53f0","title":"ATM Volume jnojir_1011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1012:45cc10fa","title":"ATM Volume jnojir_1012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1013:fed9e372","title":"ATM Volume jnojir_1013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1014:79bd31e0","title":"ATM Volume jnojir_1014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1015:f0abf90a","title":"ATM Volume jnojir_1015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1016:1c84d646","title":"ATM Volume jnojir_1016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1017:251c837c","title":"ATM Volume jnojir_1017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1018:0aa0d1c3","title":"ATM Volume jnojir_1018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1019:5428567d","title":"ATM Volume jnojir_1019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1020:8a344c7c","title":"ATM Volume jnojir_1020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1021:5c4eb61c","title":"ATM Volume jnojir_1021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1022:14adfa5a","title":"ATM Volume jnojir_1022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1023:03dad093","title":"ATM Volume jnojir_1023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1024:a56a7c07","title":"ATM Volume jnojir_1024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1025:d684a81f","title":"ATM Volume jnojir_1025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1026:0f3230cd","title":"ATM Volume jnojir_1026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1027:5f83616a","title":"ATM Volume jnojir_1027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1028:76ada533","title":"ATM Volume jnojir_1028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1029:9942a4f6","title":"ATM Volume jnojir_1029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1030:a09b0ba0","title":"ATM Volume jnojir_1030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1031:60b85970","title":"ATM Volume jnojir_1031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1032:329c31dd","title":"ATM Volume jnojir_1032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1033:7c9ed3e8","title":"ATM Volume jnojir_1033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1034:eec3ff75","title":"ATM Volume jnojir_1034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1035:adea4211","title":"ATM Volume jnojir_1035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1036:a9e7a2a7","title":"ATM Volume jnojir_1036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1037:eb0abaec","title":"ATM Volume jnojir_1037","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1038:d6ba7b0c","title":"ATM Volume jnojir_1038","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1039:73e83749","title":"ATM Volume jnojir_1039","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1040:ac68bc25","title":"ATM Volume jnojir_1040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1041:31acb888","title":"ATM Volume jnojir_1041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1042:19cf1eb2","title":"ATM Volume jnojir_1042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1043:09802f2f","title":"ATM Volume jnojir_1043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1044:561ad2af","title":"ATM Volume jnojir_1044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1045:69090feb","title":"ATM Volume jnojir_1045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1046:d1cf0bbd","title":"ATM Volume jnojir_1046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1047:19729738","title":"ATM Volume jnojir_1047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1048:6bae6922","title":"ATM Volume jnojir_1048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1049:674383d5","title":"ATM Volume jnojir_1049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1050:52f420b0","title":"ATM Volume jnojir_1050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1051:d0b36c2f","title":"ATM Volume jnojir_1051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1052:8d07cd3f","title":"ATM Volume jnojir_1052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1053:17ccd660","title":"ATM Volume jnojir_1053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1054:1e934518","title":"ATM Volume jnojir_1054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1055:9201224b","title":"ATM Volume jnojir_1055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1056:cd01e7d1","title":"ATM Volume jnojir_1056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1057:f632247a","title":"ATM Volume jnojir_1057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1058:62c40b53","title":"ATM Volume jnojir_1058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1060:c5ae9129","title":"ATM Volume jnojir_1060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1061:814dc438","title":"ATM Volume jnojir_1061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1062:933cbf32","title":"ATM Volume jnojir_1062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1063:dae779e5","title":"ATM Volume jnojir_1063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1064:41062c3f","title":"ATM Volume jnojir_1064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1065:5179621e","title":"ATM Volume jnojir_1065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1066:9de7348e","title":"ATM Volume jnojir_1066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1067:c7212684","title":"ATM Volume jnojir_1067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_1068:b6d25e60","title":"ATM Volume jnojir_1068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2000:871b2e46","title":"ATM Volume jnojir_2000","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2001:2473daa6","title":"ATM Volume jnojir_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2002:951dcc43","title":"ATM Volume jnojir_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2003:feaa6b74","title":"ATM Volume jnojir_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2004:a2b3bb68","title":"ATM Volume jnojir_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2005:f346ee21","title":"ATM Volume jnojir_2005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2006:671e5b08","title":"ATM Volume jnojir_2006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2007:f95ebe9f","title":"ATM Volume jnojir_2007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2008:31bfb064","title":"ATM Volume jnojir_2008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2009:13a5eee8","title":"ATM Volume jnojir_2009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2010:7a557e09","title":"ATM Volume jnojir_2010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2011:f57c15bf","title":"ATM Volume jnojir_2011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2012:eda10a07","title":"ATM Volume jnojir_2012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2013:1c8648ff","title":"ATM Volume jnojir_2013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2014:23af089a","title":"ATM Volume jnojir_2014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2015:3c1b196d","title":"ATM Volume jnojir_2015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2016:ba26f825","title":"ATM Volume jnojir_2016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2017:da100278","title":"ATM Volume jnojir_2017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2018:1f459b84","title":"ATM Volume jnojir_2018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2019:ffa6fa5c","title":"ATM Volume jnojir_2019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2020:bddde4aa","title":"ATM Volume jnojir_2020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2021:a9eca9db","title":"ATM Volume jnojir_2021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2022:f90968d7","title":"ATM Volume jnojir_2022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2023:0dbc91ea","title":"ATM Volume jnojir_2023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2024:7a0b3df4","title":"ATM Volume jnojir_2024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2025:ba8b2140","title":"ATM Volume jnojir_2025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2026:5ef1d337","title":"ATM Volume jnojir_2026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2027:2c778b3d","title":"ATM Volume jnojir_2027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2028:d9e4f328","title":"ATM Volume jnojir_2028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2029:bbd062e9","title":"ATM Volume jnojir_2029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2030:1c9e13ff","title":"ATM Volume jnojir_2030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2031:27832dc4","title":"ATM Volume jnojir_2031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2032:1fae5be8","title":"ATM Volume jnojir_2032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2033:de0acb34","title":"ATM Volume jnojir_2033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2034:8204280a","title":"ATM Volume jnojir_2034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2035:024bc836","title":"ATM Volume jnojir_2035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2036:cfe1ef2b","title":"ATM Volume jnojir_2036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2037:4657b1a0","title":"ATM Volume jnojir_2037","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2038:262ae9f0","title":"ATM Volume jnojir_2038","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2039:78cc7a74","title":"ATM Volume jnojir_2039","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2040:6112f90f","title":"ATM Volume jnojir_2040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2041:e860e26c","title":"ATM Volume jnojir_2041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2042:6aef4a8b","title":"ATM Volume jnojir_2042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2043:8bc6c6a0","title":"ATM Volume jnojir_2043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2044:d36a400e","title":"ATM Volume jnojir_2044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2045:9164106e","title":"ATM Volume jnojir_2045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2046:e9b7cbcb","title":"ATM Volume jnojir_2046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2047:3ec13ed9","title":"ATM Volume jnojir_2047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2048:1257fe3f","title":"ATM Volume jnojir_2048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2049:c1bb6d9a","title":"ATM Volume jnojir_2049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2050:fb6fe1ea","title":"ATM Volume jnojir_2050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2051:17e12438","title":"ATM Volume jnojir_2051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2052:45d5da41","title":"ATM Volume jnojir_2052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2053:1d6eec33","title":"ATM Volume jnojir_2053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2054:e60608f3","title":"ATM Volume jnojir_2054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2055:1b6340d4","title":"ATM Volume jnojir_2055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2056:9d84a254","title":"ATM Volume jnojir_2056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2057:523bd7ce","title":"ATM Volume jnojir_2057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2058:43de64ed","title":"ATM Volume jnojir_2058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2061:bb09ee38","title":"ATM Volume jnojir_2061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2062:073cf76e","title":"ATM Volume jnojir_2062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2063:5041e313","title":"ATM Volume jnojir_2063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2064:24cf1b36","title":"ATM Volume jnojir_2064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2065:bee68f1f","title":"ATM Volume jnojir_2065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2066:3730f912","title":"ATM Volume jnojir_2066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2067:6a6687f1","title":"ATM Volume jnojir_2067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnojir_2068:cb4c2124","title":"ATM Volume jnojir_2068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_0000:32304145","title":"ATM Volume jnomwr_0000","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_0100:8d67c7f1","title":"ATM Volume jnomwr_0100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_1000:dc51ce33","title":"ATM Volume jnomwr_1000","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_1100:b909ff7b","title":"ATM Volume jnomwr_1100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnomwr_2100:8a4dfec1","title":"ATM Volume jnomwr_2100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnouvs_2001:be8055b7","title":"ATM Volume jnouvs_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnouvs_3001:4a2106d6","title":"ATM Volume jnouvs_3001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_3001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:jnouvs_5001:0fcd642a","title":"ATM Volume jnouvs_5001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0005:6a28f877","title":"ATM Volume sl9_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0006:ad3ec6b2","title":"ATM Volume sl9_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0008:1ad32033","title":"ATM Volume sl9_0008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0009:410131e5","title":"ATM Volume sl9_0009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0010:b61ea59e","title":"ATM Volume sl9_0010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0011:444ad532","title":"ATM Volume sl9_0011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:sl9_0012:61f05423","title":"ATM Volume sl9_0012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2001:f27a14dd","title":"ATM Volume vg_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2101:c2a95332","title":"ATM Volume vg_2101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2102:31d6c8de","title":"ATM Volume vg_2102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2201:ace3895a","title":"ATM Volume vg_2201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2202:9b9a080c","title":"ATM Volume vg_2202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2203:ff5067ab","title":"ATM Volume vg_2203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2204:d22fd50d","title":"ATM Volume vg_2204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2205:31a61432","title":"ATM Volume vg_2205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2206:fb7effbb","title":"ATM Volume vg_2206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0401:1387691d","title":"ATM Volume cocirs_0401","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0402:ea7f4081","title":"ATM Volume cocirs_0402","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0402","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0403:97901714","title":"ATM Volume cocirs_0403","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0403","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0404:84aea2af","title":"ATM Volume cocirs_0404","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0404","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0405:599b1b13","title":"ATM Volume cocirs_0405","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0405","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0406:ec4e226f","title":"ATM Volume cocirs_0406","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0406","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0407:e130cffd","title":"ATM Volume cocirs_0407","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0407","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0408:b6c7f80c","title":"ATM Volume cocirs_0408","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0408","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0409:f3a4222b","title":"ATM Volume cocirs_0409","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0409","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0410:02f33876","title":"ATM Volume cocirs_0410","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0411:42b0580e","title":"ATM Volume cocirs_0411","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0411","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0412:711187c4","title":"ATM Volume cocirs_0412","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0412","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0501:ef714d6b","title":"ATM Volume cocirs_0501","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0501","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0502:40fb5f26","title":"ATM Volume cocirs_0502","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0502","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0503:2d123325","title":"ATM Volume cocirs_0503","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0503","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0504:1d8157f9","title":"ATM Volume cocirs_0504","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0504","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0505:3e73a48c","title":"ATM Volume cocirs_0505","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0505","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0506:59f88c44","title":"ATM Volume cocirs_0506","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0506","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0507:17821ea0","title":"ATM Volume cocirs_0507","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0507","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0508:52464084","title":"ATM Volume cocirs_0508","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0508","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0509:a3ac3f39","title":"ATM Volume cocirs_0509","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0509","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0510:3292a111","title":"ATM Volume cocirs_0510","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0510","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0511:9dfb0c48","title":"ATM Volume cocirs_0511","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0511","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0512:7d5c4f53","title":"ATM Volume cocirs_0512","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0512","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0601:ab391650","title":"ATM Volume cocirs_0601","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0601","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0602:7978117c","title":"ATM Volume cocirs_0602","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0602","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0603:ec20fc7e","title":"ATM Volume cocirs_0603","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0603","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0604:5aaf438e","title":"ATM Volume cocirs_0604","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0604","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0605:f8c5acac","title":"ATM Volume cocirs_0605","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0605","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0606:2b3bdc0c","title":"ATM Volume cocirs_0606","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0606","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0607:f1c6e6e8","title":"ATM Volume cocirs_0607","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0607","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0608:2bedd1af","title":"ATM Volume cocirs_0608","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0608","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0609:bc9fb22b","title":"ATM Volume cocirs_0609","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0609","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0610:9384a4bf","title":"ATM Volume cocirs_0610","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0611:123e1cad","title":"ATM Volume cocirs_0611","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0611","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0612:ff241221","title":"ATM Volume cocirs_0612","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0612","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0701:95b45ada","title":"ATM Volume cocirs_0701","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0701","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0702:931b4f74","title":"ATM Volume cocirs_0702","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0702","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0703:68281df1","title":"ATM Volume cocirs_0703","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0703","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0704:39567937","title":"ATM Volume cocirs_0704","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0704","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0705:2415c2bc","title":"ATM Volume cocirs_0705","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0705","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0706:1e87d929","title":"ATM Volume cocirs_0706","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0706","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0707:42be5f06","title":"ATM Volume cocirs_0707","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0707","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0708:d99135ad","title":"ATM Volume cocirs_0708","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0708","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0709:e4701853","title":"ATM Volume cocirs_0709","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0709","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0710:d4381c36","title":"ATM Volume cocirs_0710","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0710","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0711:2fe7073d","title":"ATM Volume cocirs_0711","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0711","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0712:5e8a5ec6","title":"ATM Volume cocirs_0712","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0712","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0801:2abb1775","title":"ATM Volume cocirs_0801","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0801","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0802:9171c118","title":"ATM Volume cocirs_0802","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0802","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0803:fe9733e7","title":"ATM Volume cocirs_0803","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0803","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0804:1e135fb7","title":"ATM Volume cocirs_0804","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0804","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0805:71f2b2ad","title":"ATM Volume cocirs_0805","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0805","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0806:bd55cd04","title":"ATM Volume cocirs_0806","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0806","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0807:4533d625","title":"ATM Volume cocirs_0807","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0807","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0808:ef8637ae","title":"ATM Volume cocirs_0808","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0808","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0809:3b0f599f","title":"ATM Volume cocirs_0809","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0809","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0810:828d3b1c","title":"ATM Volume cocirs_0810","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0810","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0811:d2f5853e","title":"ATM Volume cocirs_0811","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0811","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0812:3e825915","title":"ATM Volume cocirs_0812","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0812","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0901:94561cae","title":"ATM Volume cocirs_0901","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0901","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0902:1a087b66","title":"ATM Volume cocirs_0902","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0902","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0903:fb65fe6b","title":"ATM Volume cocirs_0903","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0903","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0904:5eef41cc","title":"ATM Volume cocirs_0904","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0904","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0905:6b709646","title":"ATM Volume cocirs_0905","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0905","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0906:52a1455a","title":"ATM Volume cocirs_0906","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0906","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0907:05be6f11","title":"ATM Volume cocirs_0907","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0907","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0908:e5f68171","title":"ATM Volume cocirs_0908","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0908","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0909:995c691d","title":"ATM Volume cocirs_0909","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0909","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0910:b69f2d07","title":"ATM Volume cocirs_0910","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0910","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0911:e2e8ea23","title":"ATM Volume cocirs_0911","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0911","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_0912:863fbf39","title":"ATM Volume cocirs_0912","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0912","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1001:a7137bb5","title":"ATM Volume cocirs_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1002:3a9e75bd","title":"ATM Volume cocirs_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1004:ca98c8a9","title":"ATM Volume cocirs_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1005:f4464072","title":"ATM Volume cocirs_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1006:21fbd32a","title":"ATM Volume cocirs_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1007:1e6e18a0","title":"ATM Volume cocirs_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1008:2574c6c5","title":"ATM Volume cocirs_1008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1009:c6acf0ef","title":"ATM Volume cocirs_1009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1010:e7319b05","title":"ATM Volume cocirs_1010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1011:4e491511","title":"ATM Volume cocirs_1011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1012:8f271a74","title":"ATM Volume cocirs_1012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1101:30c0f215","title":"ATM Volume cocirs_1101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1102:b50c0990","title":"ATM Volume cocirs_1102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1103:ec07fbd6","title":"ATM Volume cocirs_1103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1104:99f729d6","title":"ATM Volume cocirs_1104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1105:b33c84c8","title":"ATM Volume cocirs_1105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1106:f0951f9f","title":"ATM Volume cocirs_1106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1107:b6e580bf","title":"ATM Volume cocirs_1107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1108:4b998ad3","title":"ATM Volume cocirs_1108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1109:2dae5b5b","title":"ATM Volume cocirs_1109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1110:f9713be9","title":"ATM Volume cocirs_1110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1111:430a6b23","title":"ATM Volume cocirs_1111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1112:d7e31de7","title":"ATM Volume cocirs_1112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1201:6e7f176e","title":"ATM Volume cocirs_1201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1202:82367a31","title":"ATM Volume cocirs_1202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1203:6faf2759","title":"ATM Volume cocirs_1203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1204:4dcedc9d","title":"ATM Volume cocirs_1204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1205:9346897e","title":"ATM Volume cocirs_1205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1206:f4c96e37","title":"ATM Volume cocirs_1206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1207:949ad455","title":"ATM Volume cocirs_1207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1208:d9f3ded7","title":"ATM Volume cocirs_1208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1209:a9ee68fb","title":"ATM Volume cocirs_1209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1210:806c4296","title":"ATM Volume cocirs_1210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1211:b9e3e22a","title":"ATM Volume cocirs_1211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1212:56e16f15","title":"ATM Volume cocirs_1212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1301:5c49ffe4","title":"ATM Volume cocirs_1301","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1301","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1302:3eb3746a","title":"ATM Volume cocirs_1302","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1302","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1303:a302aa2e","title":"ATM Volume cocirs_1303","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1303","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1304:8e61e57c","title":"ATM Volume cocirs_1304","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1304","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1305:22ec7d37","title":"ATM Volume cocirs_1305","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1305","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1306:dd188f78","title":"ATM Volume cocirs_1306","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1306","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1307:60a941ce","title":"ATM Volume cocirs_1307","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1307","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1308:c8954842","title":"ATM Volume cocirs_1308","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1308","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1309:09ce3ec0","title":"ATM Volume cocirs_1309","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1309","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1310:63501fb1","title":"ATM Volume cocirs_1310","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1310","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1311:e339025d","title":"ATM Volume cocirs_1311","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1311","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1312:68f24dee","title":"ATM Volume cocirs_1312","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1312","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1401:29534f5f","title":"ATM Volume cocirs_1401","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1402:850fcef5","title":"ATM Volume cocirs_1402","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1402","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1403:4791f5b9","title":"ATM Volume cocirs_1403","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1403","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1404:2bc7bbdf","title":"ATM Volume cocirs_1404","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1404","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1405:94292616","title":"ATM Volume cocirs_1405","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1405","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1406:dddd2ca8","title":"ATM Volume cocirs_1406","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1406","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1407:2e876e75","title":"ATM Volume cocirs_1407","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1407","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1408:060533a0","title":"ATM Volume cocirs_1408","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1408","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1409:2767e4eb","title":"ATM Volume cocirs_1409","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1409","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1410:4c03cd14","title":"ATM Volume cocirs_1410","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1411:f4c4521e","title":"ATM Volume cocirs_1411","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1411","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1412:ef7a7af2","title":"ATM Volume cocirs_1412","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1412","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1501:8ff1aa71","title":"ATM Volume cocirs_1501","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1501","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1502:b92bd666","title":"ATM Volume cocirs_1502","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1502","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1503:a3a4d21c","title":"ATM Volume cocirs_1503","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1503","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1504:393878cb","title":"ATM Volume cocirs_1504","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1504","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1505:72d916ec","title":"ATM Volume cocirs_1505","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1505","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1506:50050730","title":"ATM Volume cocirs_1506","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1506","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1507:a4e10d3f","title":"ATM Volume cocirs_1507","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1507","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1508:0cd1b153","title":"ATM Volume cocirs_1508","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1508","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1509:ce73d124","title":"ATM Volume cocirs_1509","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1509","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1510:8bf52b4b","title":"ATM Volume cocirs_1510","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1510","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1511:b0ee3792","title":"ATM Volume cocirs_1511","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1511","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1512:7e6e8d8a","title":"ATM Volume cocirs_1512","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1512","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1601:1920047a","title":"ATM Volume cocirs_1601","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1601","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1602:f3b30e4b","title":"ATM Volume cocirs_1602","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1602","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1603:3eb6f2f9","title":"ATM Volume cocirs_1603","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1603","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1604:27142bc4","title":"ATM Volume cocirs_1604","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1604","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1605:89ccc8fe","title":"ATM Volume cocirs_1605","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1605","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1606:34cd5ee5","title":"ATM Volume cocirs_1606","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1606","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1607:6532e568","title":"ATM Volume cocirs_1607","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1607","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1608:e7db1dd7","title":"ATM Volume cocirs_1608","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1608","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1609:11dba417","title":"ATM Volume cocirs_1609","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1609","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1610:c91b2bb5","title":"ATM Volume cocirs_1610","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1611:fff83a95","title":"ATM Volume cocirs_1611","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1611","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1612:0a346cbe","title":"ATM Volume cocirs_1612","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1612","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1701:15157b17","title":"ATM Volume cocirs_1701","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1701","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1702:03850532","title":"ATM Volume cocirs_1702","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1702","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1703:9bca78d1","title":"ATM Volume cocirs_1703","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1703","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1704:6db229b9","title":"ATM Volume cocirs_1704","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1704","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1705:473920ad","title":"ATM Volume cocirs_1705","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1705","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1706:34d16119","title":"ATM Volume cocirs_1706","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1706","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1707:23734fb4","title":"ATM Volume cocirs_1707","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1707","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1708:75336e8d","title":"ATM Volume cocirs_1708","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1708","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cocirs_1709:d9e7b237","title":"ATM Volume cocirs_1709","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1709","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:coradr_5001:713b15ec","title":"ATM Volume coradr_5001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coradr_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0001:9b632e28","title":"ATM Volume cors_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0002:3ad99a21","title":"ATM Volume cors_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0003:b23fc6e8","title":"ATM Volume cors_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0004:78ff58bd","title":"ATM Volume cors_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0005:be8dca29","title":"ATM Volume cors_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0008:64114cb3","title":"ATM Volume cors_0008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0009:d739e768","title":"ATM Volume cors_0009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0010:25d883f3","title":"ATM Volume cors_0010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0021:55f884af","title":"ATM Volume cors_0021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0022:64e2ee2f","title":"ATM Volume cors_0022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0023:b68d4cc8","title":"ATM Volume cors_0023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0024:bbec7659","title":"ATM Volume cors_0024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0025:f9b23da7","title":"ATM Volume cors_0025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0026:27bc64fd","title":"ATM Volume cors_0026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0027:537330fa","title":"ATM Volume cors_0027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0028:3c463907","title":"ATM Volume cors_0028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0041:79d81bc9","title":"ATM Volume cors_0041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0042:5c1b18d2","title":"ATM Volume cors_0042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0043:c73d5711","title":"ATM Volume cors_0043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0044:842402bc","title":"ATM Volume cors_0044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0045:fa7d0e64","title":"ATM Volume cors_0045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0046:70ebddfa","title":"ATM Volume cors_0046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0047:80cfb7b8","title":"ATM Volume cors_0047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0048:b3808039","title":"ATM Volume cors_0048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0049:0984a5ad","title":"ATM Volume cors_0049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0050:ea35de4f","title":"ATM Volume cors_0050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0081:da08159f","title":"ATM Volume cors_0081","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0081","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0082:c28ccd23","title":"ATM Volume cors_0082","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0082","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0083:4426820a","title":"ATM Volume cors_0083","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0083","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0084:05cb7a89","title":"ATM Volume cors_0084","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0084","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0085:1ef19241","title":"ATM Volume cors_0085","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0101:9199bf2a","title":"ATM Volume cors_0101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0102:ab5a1086","title":"ATM Volume cors_0102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0103:2ca4b514","title":"ATM Volume cors_0103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0104:5e8a910c","title":"ATM Volume cors_0104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0105:b14fa3e8","title":"ATM Volume cors_0105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0106:925b1d7f","title":"ATM Volume cors_0106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0107:622b186c","title":"ATM Volume cors_0107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0108:352e9eb7","title":"ATM Volume cors_0108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0109:e93d929a","title":"ATM Volume cors_0109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0110:97b4f7e0","title":"ATM Volume cors_0110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0111:c0e1d4eb","title":"ATM Volume cors_0111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0112:41a72c2a","title":"ATM Volume cors_0112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0113:3b2741d6","title":"ATM Volume cors_0113","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0113","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0114:958bb9cc","title":"ATM Volume cors_0114","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0114","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0115:5c3891ce","title":"ATM Volume cors_0115","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0115","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0116:dc91c5e8","title":"ATM Volume cors_0116","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0117:a3b1404e","title":"ATM Volume cors_0117","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0117","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0118:42e1bfab","title":"ATM Volume cors_0118","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0118","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0119:348d5b85","title":"ATM Volume cors_0119","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0119","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0120:543beaac","title":"ATM Volume cors_0120","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0120","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0121:bf70aab6","title":"ATM Volume cors_0121","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0121","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0122:b952b1e1","title":"ATM Volume cors_0122","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0122","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0123:0f7e1574","title":"ATM Volume cors_0123","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0123","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0124:779e54e1","title":"ATM Volume cors_0124","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0124","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0125:6c89f8f9","title":"ATM Volume cors_0125","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0125","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0126:8d65e075","title":"ATM Volume cors_0126","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0127:d1a281af","title":"ATM Volume cors_0127","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0128:25966872","title":"ATM Volume cors_0128","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0129:fc0aba31","title":"ATM Volume cors_0129","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0130:0e0c3ef6","title":"ATM Volume cors_0130","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0131:be7881f7","title":"ATM Volume cors_0131","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0132:c7ac284d","title":"ATM Volume cors_0132","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574659","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0133:66eeb9b4","title":"ATM Volume cors_0133","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0134:8742856f","title":"ATM Volume cors_0134","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0134","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0135:1ff42c9b","title":"ATM Volume cors_0135","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0135","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0136:fc22ffa2","title":"ATM Volume cors_0136","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0136","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0137:f2383c12","title":"ATM Volume cors_0137","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0137","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0138:879df98a","title":"ATM Volume cors_0138","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0138","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0139:74ad8592","title":"ATM Volume cors_0139","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0139","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0140:25321d62","title":"ATM Volume cors_0140","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0141:1460f309","title":"ATM Volume cors_0141","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0142:c42956ef","title":"ATM Volume cors_0142","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0142","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0143:485b73ae","title":"ATM Volume cors_0143","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0143","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0144:664d9368","title":"ATM Volume cors_0144","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0144","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0145:65b1a872","title":"ATM Volume cors_0145","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0146:b9823d1c","title":"ATM Volume cors_0146","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0147:4ebd9007","title":"ATM Volume cors_0147","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0148:c605224a","title":"ATM Volume cors_0148","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0149:4f76c518","title":"ATM Volume cors_0149","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0149","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0150:2fd9eb9f","title":"ATM Volume cors_0150","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0150","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0151:c9c2e43d","title":"ATM Volume cors_0151","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0151","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0152:842a1de1","title":"ATM Volume cors_0152","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0152","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0153:25fcd88a","title":"ATM Volume cors_0153","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0153","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0154:3da23711","title":"ATM Volume cors_0154","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0154","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0155:f46b48cd","title":"ATM Volume cors_0155","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0155","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0156:1ae87e69","title":"ATM Volume cors_0156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0157:24336547","title":"ATM Volume cors_0157","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0157","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0158:973698b5","title":"ATM Volume cors_0158","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0158","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0159:a070a594","title":"ATM Volume cors_0159","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0159","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0160:126b4a35","title":"ATM Volume cors_0160","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0160","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0161:8281ba77","title":"ATM Volume cors_0161","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0161","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0162:ef0c2795","title":"ATM Volume cors_0162","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0162","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0163:26c91af1","title":"ATM Volume cors_0163","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0164:d8a473c5","title":"ATM Volume cors_0164","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0164","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0165:1c2abcbc","title":"ATM Volume cors_0165","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0165","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0166:e42f34de","title":"ATM Volume cors_0166","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0166","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0167:ff017a34","title":"ATM Volume cors_0167","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0168:b4339deb","title":"ATM Volume cors_0168","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0169:080cb865","title":"ATM Volume cors_0169","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0170:ea0f49bc","title":"ATM Volume cors_0170","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0170","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0171:33d609d3","title":"ATM Volume cors_0171","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0171","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0172:9d1740c4","title":"ATM Volume cors_0172","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0172","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0173:59666a5d","title":"ATM Volume cors_0173","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0173","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0174:1ae493e1","title":"ATM Volume cors_0174","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0174","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0175:64393ec6","title":"ATM Volume cors_0175","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0176:e9dcb364","title":"ATM Volume cors_0176","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0177:1bcd9c80","title":"ATM Volume cors_0177","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0178:fa80c5e0","title":"ATM Volume cors_0178","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0178","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0179:c8fb1f0f","title":"ATM Volume cors_0179","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0179","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0180:d34b180c","title":"ATM Volume cors_0180","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0180","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0181:3b30b152","title":"ATM Volume cors_0181","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0181","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0182:15c4b1d6","title":"ATM Volume cors_0182","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0183:a310aca8","title":"ATM Volume cors_0183","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0183","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0184:29f29175","title":"ATM Volume cors_0184","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0184","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0185:6e47fb1a","title":"ATM Volume cors_0185","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0185","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0186:5181ef9f","title":"ATM Volume cors_0186","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0187:fc87efe4","title":"ATM Volume cors_0187","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0188:e6cd5dee","title":"ATM Volume cors_0188","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0189:d1d5d34c","title":"ATM Volume cors_0189","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0189","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0190:e783a8a3","title":"ATM Volume cors_0190","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0190","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0191:4c736167","title":"ATM Volume cors_0191","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0191","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0192:6280e26e","title":"ATM Volume cors_0192","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0192","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0193:05d7f57e","title":"ATM Volume cors_0193","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0193","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0194:941375ea","title":"ATM Volume cors_0194","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0194","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0195:cb0d5fcf","title":"ATM Volume cors_0195","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0196:10c5cb83","title":"ATM Volume cors_0196","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0196","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0197:9c4b7cee","title":"ATM Volume cors_0197","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0197","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0198:bd9f8005","title":"ATM Volume cors_0198","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0198","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0199:e1603d69","title":"ATM Volume cors_0199","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0200:d77e22b4","title":"ATM Volume cors_0200","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0201:8e3c3e77","title":"ATM Volume cors_0201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0202:e6a19e15","title":"ATM Volume cors_0202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0203:55381068","title":"ATM Volume cors_0203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0204:88d7553d","title":"ATM Volume cors_0204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0205:aa3df6e7","title":"ATM Volume cors_0205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0206:3e4f665b","title":"ATM Volume cors_0206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0207:50495451","title":"ATM Volume cors_0207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0208:64911e1e","title":"ATM Volume cors_0208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0209:f8b84827","title":"ATM Volume cors_0209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0210:66f67159","title":"ATM Volume cors_0210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0211:6ef4c621","title":"ATM Volume cors_0211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0212:df89dcd9","title":"ATM Volume cors_0212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0213:9c918e67","title":"ATM Volume cors_0213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0214:fc5094e3","title":"ATM Volume cors_0214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0215:a5c898f7","title":"ATM Volume cors_0215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0216:d2fcfa70","title":"ATM Volume cors_0216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0217:20162d73","title":"ATM Volume cors_0217","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0217","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0218:0b22d8e4","title":"ATM Volume cors_0218","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0218","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0219:df41d8b7","title":"ATM Volume cors_0219","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0219","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0220:c8778ad0","title":"ATM Volume cors_0220","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0221:d2e52c99","title":"ATM Volume cors_0221","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0222:9af2aa36","title":"ATM Volume cors_0222","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0222","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0223:55e506be","title":"ATM Volume cors_0223","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0223","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0224:d8264ba6","title":"ATM Volume cors_0224","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0224","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0225:281dea11","title":"ATM Volume cors_0225","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0225","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0226:e0b5f8ea","title":"ATM Volume cors_0226","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0226","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0227:3dc71756","title":"ATM Volume cors_0227","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0228:c2689351","title":"ATM Volume cors_0228","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0228","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0229:490db62c","title":"ATM Volume cors_0229","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0229","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0230:66a67dac","title":"ATM Volume cors_0230","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0230","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0231:7815f3b4","title":"ATM Volume cors_0231","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0231","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0232:4c5df8be","title":"ATM Volume cors_0232","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0232","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0233:8d1e149a","title":"ATM Volume cors_0233","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0233","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0234:17ebe6b3","title":"ATM Volume cors_0234","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0234","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0235:eae4343f","title":"ATM Volume cors_0235","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0235","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0236:c5d30845","title":"ATM Volume cors_0236","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0236","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0237:0f1432dd","title":"ATM Volume cors_0237","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0237","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0238:5da59a6e","title":"ATM Volume cors_0238","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0238","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0239:f6fbe0c4","title":"ATM Volume cors_0239","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0239","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0240:e531270d","title":"ATM Volume cors_0240","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0240","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0241:de3bf849","title":"ATM Volume cors_0241","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0241","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0242:37c43093","title":"ATM Volume cors_0242","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0242","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0243:8a4b46e6","title":"ATM Volume cors_0243","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0243","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0244:9e85a0ec","title":"ATM Volume cors_0244","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0244","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0245:1b7a74a8","title":"ATM Volume cors_0245","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0245","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0246:9ecb4052","title":"ATM Volume cors_0246","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0246","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0247:26c8ba5b","title":"ATM Volume cors_0247","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0247","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0248:dda92c4a","title":"ATM Volume cors_0248","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0248","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0249:88ac15fa","title":"ATM Volume cors_0249","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0249","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0250:482cf9c0","title":"ATM Volume cors_0250","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0250","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0251:7de4aa42","title":"ATM Volume cors_0251","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0251","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0252:78d29e69","title":"ATM Volume cors_0252","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0252","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0253:ec441cd4","title":"ATM Volume cors_0253","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0253","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0254:a56326fc","title":"ATM Volume cors_0254","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0254","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0255:7b956d04","title":"ATM Volume cors_0255","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0255","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0256:8097f51c","title":"ATM Volume cors_0256","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0256","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0257:6f37dd41","title":"ATM Volume cors_0257","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0257","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0258:02e36e54","title":"ATM Volume cors_0258","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0258","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0259:d97f9c5d","title":"ATM Volume cors_0259","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0259","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0260:c4183933","title":"ATM Volume cors_0260","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0260","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0261:8e668a2d","title":"ATM Volume cors_0261","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0261","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0262:5e94bbbd","title":"ATM Volume cors_0262","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0262","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0263:2449eb2c","title":"ATM Volume cors_0263","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0263","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0264:84e83b37","title":"ATM Volume cors_0264","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0264","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0265:2a7bec70","title":"ATM Volume cors_0265","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0265","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0266:4fe0d53b","title":"ATM Volume cors_0266","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0266","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0267:a7d59235","title":"ATM Volume cors_0267","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0267","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0268:759e7188","title":"ATM Volume cors_0268","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0268","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0269:0f2913b6","title":"ATM Volume cors_0269","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0269","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0270:041b7cca","title":"ATM Volume cors_0270","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0270","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0271:6fc37a41","title":"ATM Volume cors_0271","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0271","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0272:3a6b1f5a","title":"ATM Volume cors_0272","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0272","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0273:4d08d902","title":"ATM Volume cors_0273","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0273","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0274:f7fc573d","title":"ATM Volume cors_0274","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0274","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0275:edfc6ae7","title":"ATM Volume cors_0275","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0275","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0276:fe25572f","title":"ATM Volume cors_0276","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0276","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0277:93a37aa3","title":"ATM Volume cors_0277","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0277","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0278:ed7fc0b7","title":"ATM Volume cors_0278","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0278","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0279:97c2de1f","title":"ATM Volume cors_0279","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0279","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0280:8b5d9b99","title":"ATM Volume cors_0280","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0280","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0281:c2961aad","title":"ATM Volume cors_0281","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0281","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0282:483be75d","title":"ATM Volume cors_0282","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0282","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0283:cedc0855","title":"ATM Volume cors_0283","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0283","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0284:2e365251","title":"ATM Volume cors_0284","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0284","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0285:a02b6b8f","title":"ATM Volume cors_0285","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0285","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0286:c561027f","title":"ATM Volume cors_0286","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0286","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0287:cd1c2dcb","title":"ATM Volume cors_0287","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0287","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0288:388d3f80","title":"ATM Volume cors_0288","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0288","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0289:2957cd42","title":"ATM Volume cors_0289","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0289","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0290:aaee6ab6","title":"ATM Volume cors_0290","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0290","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0291:9280b4e6","title":"ATM Volume cors_0291","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0291","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0292:e17f31e8","title":"ATM Volume cors_0292","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0292","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0293:ad7a2162","title":"ATM Volume cors_0293","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0293","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0294:52f465aa","title":"ATM Volume cors_0294","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0294","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0295:f0485d65","title":"ATM Volume cors_0295","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0295","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0296:28bed6f7","title":"ATM Volume cors_0296","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0296","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0297:61cb3f64","title":"ATM Volume cors_0297","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0297","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0298:b1e831f4","title":"ATM Volume cors_0298","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0298","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0299:f1a6c5e3","title":"ATM Volume cors_0299","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0299","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0300:29352530","title":"ATM Volume cors_0300","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0300","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0301:05a31aa8","title":"ATM Volume cors_0301","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0301","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0302:12b2f155","title":"ATM Volume cors_0302","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0302","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0303:7ff31d68","title":"ATM Volume cors_0303","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0303","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0304:1e667150","title":"ATM Volume cors_0304","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0304","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0305:7e3ae929","title":"ATM Volume cors_0305","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0305","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0306:51c060f5","title":"ATM Volume cors_0306","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0306","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0307:0b4c38dd","title":"ATM Volume cors_0307","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0307","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0308:e1565c02","title":"ATM Volume cors_0308","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0308","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0309:4d6f3a8d","title":"ATM Volume cors_0309","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0309","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0310:93dcde67","title":"ATM Volume cors_0310","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0310","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0311:bfc9f582","title":"ATM Volume cors_0311","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0311","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0312:4e981332","title":"ATM Volume cors_0312","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0312","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0313:107884d1","title":"ATM Volume cors_0313","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0313","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0314:1cee4556","title":"ATM Volume cors_0314","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0314","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0315:7e88bb29","title":"ATM Volume cors_0315","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0315","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0316:11fa6f22","title":"ATM Volume cors_0316","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0316","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0317:34ac4dea","title":"ATM Volume cors_0317","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0317","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0318:45af758f","title":"ATM Volume cors_0318","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0318","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0319:7c53da5f","title":"ATM Volume cors_0319","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0319","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0320:72b34e4a","title":"ATM Volume cors_0320","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0320","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0321:2595bc9b","title":"ATM Volume cors_0321","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0321","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0322:8974b2fc","title":"ATM Volume cors_0322","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0322","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0323:3e9716a1","title":"ATM Volume cors_0323","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0323","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0324:3c690df9","title":"ATM Volume cors_0324","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0324","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0325:96b9d7ae","title":"ATM Volume cors_0325","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0325","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0326:b7b3cf89","title":"ATM Volume cors_0326","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0326","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0327:de4219f0","title":"ATM Volume cors_0327","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0327","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0328:f60bf538","title":"ATM Volume cors_0328","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0328","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0329:d358c328","title":"ATM Volume cors_0329","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0329","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0330:ec621fab","title":"ATM Volume cors_0330","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0330","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0331:f8833784","title":"ATM Volume cors_0331","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0331","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0332:cab5879a","title":"ATM Volume cors_0332","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0332","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0333:e640c936","title":"ATM Volume cors_0333","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0333","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0334:015da813","title":"ATM Volume cors_0334","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0334","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0335:66adea63","title":"ATM Volume cors_0335","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0335","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0336:84be8311","title":"ATM Volume cors_0336","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0336","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0337:844aa177","title":"ATM Volume cors_0337","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0337","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0338:664faffe","title":"ATM Volume cors_0338","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0338","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0339:df741383","title":"ATM Volume cors_0339","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0339","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0340:5936b832","title":"ATM Volume cors_0340","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0340","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0341:4ca5e586","title":"ATM Volume cors_0341","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0341","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0342:814539cc","title":"ATM Volume cors_0342","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0342","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0343:f0c5d17b","title":"ATM Volume cors_0343","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0343","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0344:e0cab8d1","title":"ATM Volume cors_0344","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0344","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0345:96c5c60a","title":"ATM Volume cors_0345","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0345","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0346:929c8d41","title":"ATM Volume cors_0346","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0346","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0347:c29280f9","title":"ATM Volume cors_0347","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0347","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0348:cffe36ed","title":"ATM Volume cors_0348","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0348","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0349:ba90c6c0","title":"ATM Volume cors_0349","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0349","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0350:2b52b9e1","title":"ATM Volume cors_0350","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0350","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0351:e50f8b3d","title":"ATM Volume cors_0351","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0351","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0352:a69016d4","title":"ATM Volume cors_0352","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0352","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0353:bb3d0945","title":"ATM Volume cors_0353","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0353","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0354:ccaf9fa7","title":"ATM Volume cors_0354","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0354","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0355:8f72c7f5","title":"ATM Volume cors_0355","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0355","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0356:94563ec7","title":"ATM Volume cors_0356","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0356","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0357:541d22c3","title":"ATM Volume cors_0357","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0357","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0358:3fba1c29","title":"ATM Volume cors_0358","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0358","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0359:dd2125c5","title":"ATM Volume cors_0359","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0359","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0360:d6cf881a","title":"ATM Volume cors_0360","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0360","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0361:aa283add","title":"ATM Volume cors_0361","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0361","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0362:609793d3","title":"ATM Volume cors_0362","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0362","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0363:09d5f390","title":"ATM Volume cors_0363","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0363","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0364:a0d78c5f","title":"ATM Volume cors_0364","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0364","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0365:ca849464","title":"ATM Volume cors_0365","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0365","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0366:031cbdc8","title":"ATM Volume cors_0366","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0366","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0367:f3f269d2","title":"ATM Volume cors_0367","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0367","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0368:9effdee9","title":"ATM Volume cors_0368","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0368","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0369:91875839","title":"ATM Volume cors_0369","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0369","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0370:15951fa6","title":"ATM Volume cors_0370","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0370","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0371:0bdab0bb","title":"ATM Volume cors_0371","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0371","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0372:7ff6ce42","title":"ATM Volume cors_0372","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0372","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0373:50814cc0","title":"ATM Volume cors_0373","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0373","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0374:305491ed","title":"ATM Volume cors_0374","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0374","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0375:40e6ccb3","title":"ATM Volume cors_0375","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0375","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0376:b6cb81c7","title":"ATM Volume cors_0376","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0376","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0377:a1790e70","title":"ATM Volume cors_0377","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0377","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0378:888f5ca5","title":"ATM Volume cors_0378","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0378","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0379:24175a85","title":"ATM Volume cors_0379","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0379","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0380:f96788d6","title":"ATM Volume cors_0380","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0380","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0381:7e5fc1c1","title":"ATM Volume cors_0381","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0381","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0382:9cafc2b1","title":"ATM Volume cors_0382","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0382","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0383:e00d6126","title":"ATM Volume cors_0383","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0383","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0384:18b08f42","title":"ATM Volume cors_0384","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0384","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0385:fcb47380","title":"ATM Volume cors_0385","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0385","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0386:1bdbfe1a","title":"ATM Volume cors_0386","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0386","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0387:0c857f48","title":"ATM Volume cors_0387","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0387","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0388:d805d8ff","title":"ATM Volume cors_0388","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0388","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0389:023187c8","title":"ATM Volume cors_0389","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0389","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0390:0f90ffce","title":"ATM Volume cors_0390","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0390","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0391:ec1d0ff0","title":"ATM Volume cors_0391","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0391","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0392:00ccad81","title":"ATM Volume cors_0392","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0392","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0393:e17ccc20","title":"ATM Volume cors_0393","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0393","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0394:8d67b1c5","title":"ATM Volume cors_0394","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0394","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0395:a775fe7d","title":"ATM Volume cors_0395","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0395","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0396:dc3f9016","title":"ATM Volume cors_0396","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0396","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0397:c1671f47","title":"ATM Volume cors_0397","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0397","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0398:04a493f3","title":"ATM Volume cors_0398","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0398","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0399:5348cca2","title":"ATM Volume cors_0399","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0399","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0400:85dfa58e","title":"ATM Volume cors_0400","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0400","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0401:cdd5744d","title":"ATM Volume cors_0401","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0402:11f2e073","title":"ATM Volume cors_0402","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0402","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0403:364f2809","title":"ATM Volume cors_0403","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0403","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0404:c918c9d0","title":"ATM Volume cors_0404","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0404","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0405:2023a2c2","title":"ATM Volume cors_0405","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0405","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0406:782215fa","title":"ATM Volume cors_0406","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0406","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0407:42f0f24d","title":"ATM Volume cors_0407","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0407","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0408:31da775e","title":"ATM Volume cors_0408","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0408","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0409:8acd25be","title":"ATM Volume cors_0409","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0409","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0410:d9c077a5","title":"ATM Volume cors_0410","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0411:84acaffc","title":"ATM Volume cors_0411","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0411","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0412:04221a91","title":"ATM Volume cors_0412","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0412","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0413:43d63cfe","title":"ATM Volume cors_0413","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0413","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0414:8e765b8e","title":"ATM Volume cors_0414","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0414","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0415:f4e3dc89","title":"ATM Volume cors_0415","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0415","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0416:21a14a7c","title":"ATM Volume cors_0416","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0416","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0417:3c56671b","title":"ATM Volume cors_0417","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0417","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0418:b9eda26d","title":"ATM Volume cors_0418","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0418","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0419:8b9ca459","title":"ATM Volume cors_0419","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0419","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0420:eecbf4f6","title":"ATM Volume cors_0420","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0420","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0421:a544550b","title":"ATM Volume cors_0421","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0421","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0422:e24f6573","title":"ATM Volume cors_0422","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0422","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0423:1e3d71c3","title":"ATM Volume cors_0423","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0423","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0424:6c29b29d","title":"ATM Volume cors_0424","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0424","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0425:cb52c200","title":"ATM Volume cors_0425","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0425","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0426:b54d9829","title":"ATM Volume cors_0426","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0426","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0427:fde564e4","title":"ATM Volume cors_0427","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0427","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0428:cf44da23","title":"ATM Volume cors_0428","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0428","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0429:89c6b811","title":"ATM Volume cors_0429","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0429","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0430:d24f3aa5","title":"ATM Volume cors_0430","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0430","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0431:9c5d8b33","title":"ATM Volume cors_0431","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0431","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0432:f553fbe5","title":"ATM Volume cors_0432","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0432","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0433:0dfec577","title":"ATM Volume cors_0433","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0433","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0434:b1ebd50b","title":"ATM Volume cors_0434","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0434","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0435:e2530cd2","title":"ATM Volume cors_0435","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0435","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0436:3b562013","title":"ATM Volume cors_0436","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0436","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0437:f4ef465d","title":"ATM Volume cors_0437","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0437","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0438:f996fdf4","title":"ATM Volume cors_0438","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0438","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0439:622503b6","title":"ATM Volume cors_0439","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0439","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0440:fc39b3ff","title":"ATM Volume cors_0440","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0440","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0441:0daf9dd3","title":"ATM Volume cors_0441","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0441","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0442:dd48556f","title":"ATM Volume cors_0442","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0442","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0443:e56d873d","title":"ATM Volume cors_0443","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0443","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0444:f9b5cf46","title":"ATM Volume cors_0444","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0444","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0445:13f44306","title":"ATM Volume cors_0445","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0445","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0446:bac7a50d","title":"ATM Volume cors_0446","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0446","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0447:92627180","title":"ATM Volume cors_0447","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0447","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0448:b2b7f607","title":"ATM Volume cors_0448","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0448","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0449:df135332","title":"ATM Volume cors_0449","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0449","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0450:db91f4df","title":"ATM Volume cors_0450","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0450","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0451:192e8337","title":"ATM Volume cors_0451","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0451","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0452:1b880858","title":"ATM Volume cors_0452","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0452","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0453:ea04d410","title":"ATM Volume cors_0453","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0453","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0454:4f7c42b3","title":"ATM Volume cors_0454","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0454","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0455:ad6ad2e7","title":"ATM Volume cors_0455","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0455","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0456:4445b9c3","title":"ATM Volume cors_0456","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0456","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0457:25774504","title":"ATM Volume cors_0457","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0457","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0458:7333886d","title":"ATM Volume cors_0458","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0458","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0459:f0933e6d","title":"ATM Volume cors_0459","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0459","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0460:b8aa2dcd","title":"ATM Volume cors_0460","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0460","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0461:1887cde0","title":"ATM Volume cors_0461","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0461","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0462:28327931","title":"ATM Volume cors_0462","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0462","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0463:56869acf","title":"ATM Volume cors_0463","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0463","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0464:c8fb85d7","title":"ATM Volume cors_0464","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0464","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0465:0617c72f","title":"ATM Volume cors_0465","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0465","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0466:9400c07b","title":"ATM Volume cors_0466","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0466","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0467:e245d418","title":"ATM Volume cors_0467","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0467","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0468:2bb40a3c","title":"ATM Volume cors_0468","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0468","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0469:8f3da817","title":"ATM Volume cors_0469","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0469","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0470:bb6d1a0c","title":"ATM Volume cors_0470","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0470","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0471:53d03482","title":"ATM Volume cors_0471","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0471","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0472:5436b16b","title":"ATM Volume cors_0472","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0472","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0473:cc1eb875","title":"ATM Volume cors_0473","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0473","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0474:7d4b7561","title":"ATM Volume cors_0474","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0474","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0475:6d7dd717","title":"ATM Volume cors_0475","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0475","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0476:4ca703a9","title":"ATM Volume cors_0476","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0476","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0477:3d3379a4","title":"ATM Volume cors_0477","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0477","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0478:d3eea2ce","title":"ATM Volume cors_0478","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0478","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0479:41cb19e5","title":"ATM Volume cors_0479","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0479","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0480:8d097291","title":"ATM Volume cors_0480","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0480","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0481:20304308","title":"ATM Volume cors_0481","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0481","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0482:f65094b1","title":"ATM Volume cors_0482","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0482","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0483:c288d3a6","title":"ATM Volume cors_0483","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0483","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0484:1aaf6e3c","title":"ATM Volume cors_0484","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0484","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0485:017e5ad6","title":"ATM Volume cors_0485","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0485","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0486:0b91bb16","title":"ATM Volume cors_0486","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0486","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0487:5defba48","title":"ATM Volume cors_0487","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0487","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0488:f1ad7d28","title":"ATM Volume cors_0488","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0488","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0489:23dd0ff7","title":"ATM Volume cors_0489","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0489","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0490:952f97d8","title":"ATM Volume cors_0490","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0490","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0491:00b86baf","title":"ATM Volume cors_0491","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0491","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0492:b590d948","title":"ATM Volume cors_0492","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0492","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0493:e75395e9","title":"ATM Volume cors_0493","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0493","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0494:00454883","title":"ATM Volume cors_0494","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0494","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0495:97434be7","title":"ATM Volume cors_0495","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0495","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0496:5aed92a9","title":"ATM Volume cors_0496","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0496","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0497:44849f74","title":"ATM Volume cors_0497","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0497","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0498:9c48ce81","title":"ATM Volume cors_0498","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0498","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0499:dc541e8b","title":"ATM Volume cors_0499","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0499","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0500:07859c53","title":"ATM Volume cors_0500","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0500","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0501:97e1d291","title":"ATM Volume cors_0501","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0501","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0502:a7d81ce8","title":"ATM Volume cors_0502","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0502","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0503:57f51888","title":"ATM Volume cors_0503","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0503","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0504:02074254","title":"ATM Volume cors_0504","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0504","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0505:536036cd","title":"ATM Volume cors_0505","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0505","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0506:688b7df9","title":"ATM Volume cors_0506","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0506","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0507:ea93fbdc","title":"ATM Volume cors_0507","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0507","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0508:93cb7509","title":"ATM Volume cors_0508","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0508","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0509:fbb63d94","title":"ATM Volume cors_0509","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0509","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0510:6748df58","title":"ATM Volume cors_0510","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0510","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0511:ffd1b729","title":"ATM Volume cors_0511","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0511","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0512:0b1c8329","title":"ATM Volume cors_0512","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0512","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0513:2e3a4139","title":"ATM Volume cors_0513","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0513","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0514:f2caa2e6","title":"ATM Volume cors_0514","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0514","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0515:8402f44d","title":"ATM Volume cors_0515","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0515","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0516:cd16abe3","title":"ATM Volume cors_0516","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0516","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0517:89b7c346","title":"ATM Volume cors_0517","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0517","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0518:cf7c9478","title":"ATM Volume cors_0518","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0518","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0519:40e83ee8","title":"ATM Volume cors_0519","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0519","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0520:04720152","title":"ATM Volume cors_0520","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0520","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0521:5a47a64a","title":"ATM Volume cors_0521","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0521","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0522:18a57707","title":"ATM Volume cors_0522","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0522","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0523:b5eb6f47","title":"ATM Volume cors_0523","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0523","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0524:43e4e345","title":"ATM Volume cors_0524","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0524","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0525:80c87be2","title":"ATM Volume cors_0525","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0525","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0526:89500845","title":"ATM Volume cors_0526","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0526","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0527:e17fb6b1","title":"ATM Volume cors_0527","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0527","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577860","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0528:4b1898b4","title":"ATM Volume cors_0528","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0528","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0529:b8205fa0","title":"ATM Volume cors_0529","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0529","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0530:cc7be3d5","title":"ATM Volume cors_0530","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0530","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0531:da211697","title":"ATM Volume cors_0531","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0531","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0532:0e385224","title":"ATM Volume cors_0532","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0532","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0533:06a00039","title":"ATM Volume cors_0533","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0533","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0534:dde87774","title":"ATM Volume cors_0534","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0534","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0535:59cf7488","title":"ATM Volume cors_0535","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0535","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0536:72827d8e","title":"ATM Volume cors_0536","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0536","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0537:4c0123be","title":"ATM Volume cors_0537","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0537","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0538:c60ed63e","title":"ATM Volume cors_0538","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0538","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0539:55d0aad5","title":"ATM Volume cors_0539","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0539","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0540:dbdff8a9","title":"ATM Volume cors_0540","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0540","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0541:d0b389b8","title":"ATM Volume cors_0541","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0541","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0542:62f88b01","title":"ATM Volume cors_0542","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0542","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0543:1abb30e2","title":"ATM Volume cors_0543","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0543","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0544:b6429f85","title":"ATM Volume cors_0544","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0544","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0545:f61407d2","title":"ATM Volume cors_0545","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0545","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0546:73a838b8","title":"ATM Volume cors_0546","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0546","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0547:1093032f","title":"ATM Volume cors_0547","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0547","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0548:e05102ed","title":"ATM Volume cors_0548","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0548","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0549:26e5a12d","title":"ATM Volume cors_0549","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0549","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0550:8fe90f00","title":"ATM Volume cors_0550","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0550","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0551:d2695fb1","title":"ATM Volume cors_0551","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0551","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0552:44885714","title":"ATM Volume cors_0552","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0552","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578071","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0553:d13a8ccb","title":"ATM Volume cors_0553","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0553","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0554:5726ce39","title":"ATM Volume cors_0554","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0554","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0555:8c15e7e0","title":"ATM Volume cors_0555","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0555","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0556:29efb19d","title":"ATM Volume cors_0556","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0556","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0557:87b6fe18","title":"ATM Volume cors_0557","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0557","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0558:71559488","title":"ATM Volume cors_0558","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0558","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0559:98b69996","title":"ATM Volume cors_0559","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0559","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0560:179a140b","title":"ATM Volume cors_0560","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0560","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0561:bb81fc48","title":"ATM Volume cors_0561","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0561","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0562:2c3bda79","title":"ATM Volume cors_0562","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0562","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0563:d582e721","title":"ATM Volume cors_0563","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0563","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0564:627b0362","title":"ATM Volume cors_0564","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0564","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0565:37806f1f","title":"ATM Volume cors_0565","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0565","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0566:5c215e96","title":"ATM Volume cors_0566","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0566","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0567:800be58d","title":"ATM Volume cors_0567","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0567","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0568:3a10b64d","title":"ATM Volume cors_0568","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0568","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0569:60e113e1","title":"ATM Volume cors_0569","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0569","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0570:97689531","title":"ATM Volume cors_0570","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0570","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0571:49247665","title":"ATM Volume cors_0571","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0571","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0572:19860be6","title":"ATM Volume cors_0572","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0572","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0573:a19ebf38","title":"ATM Volume cors_0573","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0573","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0574:a92f2b94","title":"ATM Volume cors_0574","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0574","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0575:b1e9ee4a","title":"ATM Volume cors_0575","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0575","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0576:253f125c","title":"ATM Volume cors_0576","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0576","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0577:039d8d2a","title":"ATM Volume cors_0577","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0577","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0578:7489009c","title":"ATM Volume cors_0578","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0578","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0579:9ae196b7","title":"ATM Volume cors_0579","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0579","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0580:5b4cb997","title":"ATM Volume cors_0580","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0580","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0581:c36cd019","title":"ATM Volume cors_0581","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0581","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0582:4d4c46e4","title":"ATM Volume cors_0582","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0582","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0583:f6d6a2b6","title":"ATM Volume cors_0583","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0583","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0584:021b9a5d","title":"ATM Volume cors_0584","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0584","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0585:04dc9dda","title":"ATM Volume cors_0585","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0585","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0586:c5cf62a4","title":"ATM Volume cors_0586","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0586","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0587:68fdb50b","title":"ATM Volume cors_0587","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0587","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0588:9ec3782e","title":"ATM Volume cors_0588","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0588","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578383","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0589:310b1ea6","title":"ATM Volume cors_0589","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0589","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0590:581333ac","title":"ATM Volume cors_0590","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0590","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0591:46e63a45","title":"ATM Volume cors_0591","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0591","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0592:1cacf146","title":"ATM Volume cors_0592","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0592","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0593:26e3daac","title":"ATM Volume cors_0593","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0593","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0594:943bffdc","title":"ATM Volume cors_0594","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0594","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0595:894f5e9d","title":"ATM Volume cors_0595","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0595","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0596:6ed1b41f","title":"ATM Volume cors_0596","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0596","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0597:3ac82769","title":"ATM Volume cors_0597","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0597","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0598:0351a20a","title":"ATM Volume cors_0598","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0598","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0599:2359b740","title":"ATM Volume cors_0599","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0599","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0600:a4f0666a","title":"ATM Volume cors_0600","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0600","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0601:eddf09fe","title":"ATM Volume cors_0601","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0601","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0602:32dee1c5","title":"ATM Volume cors_0602","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0602","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0603:dede2e8b","title":"ATM Volume cors_0603","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0603","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0604:d77a6e45","title":"ATM Volume cors_0604","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0604","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0605:a2b5dd38","title":"ATM Volume cors_0605","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0605","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0606:4e63ecf2","title":"ATM Volume cors_0606","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0606","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0607:a0b0a0f7","title":"ATM Volume cors_0607","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0607","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0608:e579f3b4","title":"ATM Volume cors_0608","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0608","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0609:3d0027e0","title":"ATM Volume cors_0609","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0609","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0610:c438a70f","title":"ATM Volume cors_0610","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0611:ca182b1a","title":"ATM Volume cors_0611","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0611","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0612:e5a65450","title":"ATM Volume cors_0612","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0612","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0613:17b29565","title":"ATM Volume cors_0613","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0613","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0614:7a19abf3","title":"ATM Volume cors_0614","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0614","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0615:34e570b5","title":"ATM Volume cors_0615","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0615","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0616:6fe45b69","title":"ATM Volume cors_0616","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0616","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0617:b692a82d","title":"ATM Volume cors_0617","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0617","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0618:835b2418","title":"ATM Volume cors_0618","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0618","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0619:bce04cfe","title":"ATM Volume cors_0619","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0619","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0620:444f06c6","title":"ATM Volume cors_0620","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0620","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0621:446f1c2b","title":"ATM Volume cors_0621","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0621","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0622:e3247bd2","title":"ATM Volume cors_0622","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0622","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0623:881c5e3c","title":"ATM Volume cors_0623","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0623","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0624:c321093c","title":"ATM Volume cors_0624","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0624","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0625:41a2318b","title":"ATM Volume cors_0625","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0625","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0626:adeb5bb7","title":"ATM Volume cors_0626","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0626","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0627:6c99fc24","title":"ATM Volume cors_0627","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0627","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0628:66c56cfc","title":"ATM Volume cors_0628","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0628","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0629:c5451e33","title":"ATM Volume cors_0629","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0629","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0630:964e0cc2","title":"ATM Volume cors_0630","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0630","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0631:8a3b0e00","title":"ATM Volume cors_0631","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0631","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0632:f7260ef9","title":"ATM Volume cors_0632","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0632","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0633:a462bc08","title":"ATM Volume cors_0633","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0633","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0634:e0414ccc","title":"ATM Volume cors_0634","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0634","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0635:28f8662a","title":"ATM Volume cors_0635","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0635","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0636:4c1d7564","title":"ATM Volume cors_0636","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0636","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0637:ac88eb6e","title":"ATM Volume cors_0637","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0637","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0638:6ecf01e1","title":"ATM Volume cors_0638","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0638","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0639:14206dba","title":"ATM Volume cors_0639","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0639","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0640:902b6501","title":"ATM Volume cors_0640","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0640","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0641:6e5ae5bd","title":"ATM Volume cors_0641","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0641","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0642:0ba32d25","title":"ATM Volume cors_0642","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0642","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0643:c142c8d7","title":"ATM Volume cors_0643","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0643","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0644:31e9ae89","title":"ATM Volume cors_0644","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0644","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0645:9dd2faf3","title":"ATM Volume cors_0645","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0645","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0646:27bbb176","title":"ATM Volume cors_0646","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0646","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0647:30b94422","title":"ATM Volume cors_0647","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0647","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0648:4349b2d1","title":"ATM Volume cors_0648","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0648","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0649:323799a1","title":"ATM Volume cors_0649","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0649","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0650:58a90d0e","title":"ATM Volume cors_0650","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0650","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0651:c626a6ff","title":"ATM Volume cors_0651","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0651","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0652:84dc4855","title":"ATM Volume cors_0652","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0652","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0653:30f44332","title":"ATM Volume cors_0653","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0653","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0654:3e9c1b08","title":"ATM Volume cors_0654","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0654","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0655:a9e9e286","title":"ATM Volume cors_0655","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0655","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0656:a6da17ab","title":"ATM Volume cors_0656","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0656","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0657:097bb01b","title":"ATM Volume cors_0657","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0657","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0658:f1a48981","title":"ATM Volume cors_0658","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0658","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0659:437cc67c","title":"ATM Volume cors_0659","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0659","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0660:414fc66b","title":"ATM Volume cors_0660","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0660","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0661:9bfe648f","title":"ATM Volume cors_0661","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0661","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0662:dcf8c49d","title":"ATM Volume cors_0662","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0662","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0663:4ab50701","title":"ATM Volume cors_0663","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0663","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0664:b5758741","title":"ATM Volume cors_0664","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0664","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0665:ddbcdb3b","title":"ATM Volume cors_0665","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0665","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0666:44c101fa","title":"ATM Volume cors_0666","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0666","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0667:32ff3c6f","title":"ATM Volume cors_0667","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0667","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0668:c5b59914","title":"ATM Volume cors_0668","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0668","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0669:b6106b87","title":"ATM Volume cors_0669","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0669","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0670:808debf1","title":"ATM Volume cors_0670","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0670","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0671:15c7e5ee","title":"ATM Volume cors_0671","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0671","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0672:478a9256","title":"ATM Volume cors_0672","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0672","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0673:572c6cbe","title":"ATM Volume cors_0673","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0673","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0674:fe106632","title":"ATM Volume cors_0674","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0674","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0675:f96f196c","title":"ATM Volume cors_0675","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0675","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0676:ee741e0d","title":"ATM Volume cors_0676","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0676","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0677:c027f1e6","title":"ATM Volume cors_0677","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0677","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0678:3f68e880","title":"ATM Volume cors_0678","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0678","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0679:0d279954","title":"ATM Volume cors_0679","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0679","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0680:ca0f50f1","title":"ATM Volume cors_0680","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0680","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0681:7920d2a5","title":"ATM Volume cors_0681","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0681","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0682:c9b21d64","title":"ATM Volume cors_0682","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0682","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0683:133bf01a","title":"ATM Volume cors_0683","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0683","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0684:2d3c6fa4","title":"ATM Volume cors_0684","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0684","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0685:3cd96639","title":"ATM Volume cors_0685","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0685","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0686:483ba459","title":"ATM Volume cors_0686","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0686","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0687:8d6ea2b2","title":"ATM Volume cors_0687","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0687","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0688:30b6c45a","title":"ATM Volume cors_0688","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0688","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0689:996bfd90","title":"ATM Volume cors_0689","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0689","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0690:8dfc2d70","title":"ATM Volume cors_0690","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0690","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0691:cb391fce","title":"ATM Volume cors_0691","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0691","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0692:919273c8","title":"ATM Volume cors_0692","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0692","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0693:6e39dec2","title":"ATM Volume cors_0693","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0693","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0694:93a8b13c","title":"ATM Volume cors_0694","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0694","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0695:ec7b2a64","title":"ATM Volume cors_0695","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0695","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0696:6232a6c8","title":"ATM Volume cors_0696","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0696","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0697:77bfe330","title":"ATM Volume cors_0697","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0697","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0698:0668e1f4","title":"ATM Volume cors_0698","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0698","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0699:80768fe0","title":"ATM Volume cors_0699","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0699","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0700:a9b27ceb","title":"ATM Volume cors_0700","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0700","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0701:522bf53e","title":"ATM Volume cors_0701","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0701","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0702:d96ac49b","title":"ATM Volume cors_0702","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0702","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0703:34b54659","title":"ATM Volume cors_0703","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0703","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0704:67a0b582","title":"ATM Volume cors_0704","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0704","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0705:ea2f40da","title":"ATM Volume cors_0705","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0705","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0706:636ca0da","title":"ATM Volume cors_0706","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0706","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0707:9de71f44","title":"ATM Volume cors_0707","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0707","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0708:9c3df470","title":"ATM Volume cors_0708","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0708","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0709:f41c5b97","title":"ATM Volume cors_0709","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0709","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0710:c12099bb","title":"ATM Volume cors_0710","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0710","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0711:b0cc5809","title":"ATM Volume cors_0711","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0711","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0712:b13f1247","title":"ATM Volume cors_0712","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0712","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0713:23764367","title":"ATM Volume cors_0713","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0713","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0714:8c737230","title":"ATM Volume cors_0714","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0714","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0715:1198fb24","title":"ATM Volume cors_0715","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0715","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0716:204306bf","title":"ATM Volume cors_0716","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0716","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0717:7cccf83a","title":"ATM Volume cors_0717","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0717","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0718:5a8178a7","title":"ATM Volume cors_0718","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0718","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0719:5f68e526","title":"ATM Volume cors_0719","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0719","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0720:1728cad3","title":"ATM Volume cors_0720","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0720","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0721:4bf42291","title":"ATM Volume cors_0721","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0721","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0722:def7fe5b","title":"ATM Volume cors_0722","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0722","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0723:18643b5d","title":"ATM Volume cors_0723","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0723","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0724:94ae0ce9","title":"ATM Volume cors_0724","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0724","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0725:82a1ede6","title":"ATM Volume cors_0725","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0725","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0726:114716c5","title":"ATM Volume cors_0726","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0726","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0727:7d2d1b23","title":"ATM Volume cors_0727","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0727","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0728:b0aa05b7","title":"ATM Volume cors_0728","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0728","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0729:8ae32004","title":"ATM Volume cors_0729","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0729","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0730:6fe59de9","title":"ATM Volume cors_0730","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0730","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0731:7aee7354","title":"ATM Volume cors_0731","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0731","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0732:367f2a27","title":"ATM Volume cors_0732","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0732","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0733:17fc6d3b","title":"ATM Volume cors_0733","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0733","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0734:ef59c9f2","title":"ATM Volume cors_0734","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0734","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0735:4f1da8ff","title":"ATM Volume cors_0735","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0735","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0736:b4d709ec","title":"ATM Volume cors_0736","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0736","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0737:6c240510","title":"ATM Volume cors_0737","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0737","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0738:1421b987","title":"ATM Volume cors_0738","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0738","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0739:f3057399","title":"ATM Volume cors_0739","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0739","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0740:b0aeaeaa","title":"ATM Volume cors_0740","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0740","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0741:7aefd4f5","title":"ATM Volume cors_0741","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0741","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0742:c8d9bd69","title":"ATM Volume cors_0742","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0742","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0743:23ec8269","title":"ATM Volume cors_0743","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0743","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0744:88f3c138","title":"ATM Volume cors_0744","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0744","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0745:1f1401b3","title":"ATM Volume cors_0745","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0745","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0746:bbb99503","title":"ATM Volume cors_0746","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0746","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0747:1610c883","title":"ATM Volume cors_0747","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0747","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0748:4cbf4bcd","title":"ATM Volume cors_0748","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0748","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0749:a616ec66","title":"ATM Volume cors_0749","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0749","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0750:be2c72ee","title":"ATM Volume cors_0750","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0750","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0751:f7db7268","title":"ATM Volume cors_0751","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0751","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0752:377571f7","title":"ATM Volume cors_0752","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0752","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0753:972ba8b9","title":"ATM Volume cors_0753","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0753","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0754:c4afdef4","title":"ATM Volume cors_0754","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0754","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0755:2ed8b84e","title":"ATM Volume cors_0755","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0755","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0756:cfbf9d13","title":"ATM Volume cors_0756","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0756","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0757:681f595c","title":"ATM Volume cors_0757","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0757","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0758:923b9379","title":"ATM Volume cors_0758","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0758","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0759:e761cf0f","title":"ATM Volume cors_0759","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0759","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0760:63433258","title":"ATM Volume cors_0760","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0760","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0761:6be15973","title":"ATM Volume cors_0761","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0761","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0762:81a1b342","title":"ATM Volume cors_0762","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0762","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0763:c420cbcd","title":"ATM Volume cors_0763","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0763","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0764:c6d08d8d","title":"ATM Volume cors_0764","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0764","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0765:217cd7f7","title":"ATM Volume cors_0765","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0765","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0766:24242f9c","title":"ATM Volume cors_0766","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0766","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0767:fa4cfba4","title":"ATM Volume cors_0767","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0767","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0768:2775f7df","title":"ATM Volume cors_0768","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0768","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0769:2ff34446","title":"ATM Volume cors_0769","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0769","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0770:c13359f3","title":"ATM Volume cors_0770","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0770","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0771:f794aba2","title":"ATM Volume cors_0771","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0771","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0772:9f425110","title":"ATM Volume cors_0772","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0772","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0773:487b36f5","title":"ATM Volume cors_0773","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0773","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0774:23cb3aaa","title":"ATM Volume cors_0774","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0774","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0775:e83feba4","title":"ATM Volume cors_0775","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0775","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0776:0168c39a","title":"ATM Volume cors_0776","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0776","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0777:e069ba08","title":"ATM Volume cors_0777","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0777","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0778:1a15b050","title":"ATM Volume cors_0778","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0778","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0779:3e59dc82","title":"ATM Volume cors_0779","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0779","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0780:59e692d4","title":"ATM Volume cors_0780","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0780","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0781:3f38ca2b","title":"ATM Volume cors_0781","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0781","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0782:c4010ada","title":"ATM Volume cors_0782","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0782","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0783:bd1cd344","title":"ATM Volume cors_0783","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0783","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0784:140f0d3b","title":"ATM Volume cors_0784","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0784","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0785:b5f69bb3","title":"ATM Volume cors_0785","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0785","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0786:575234ad","title":"ATM Volume cors_0786","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0786","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0787:680f4767","title":"ATM Volume cors_0787","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0787","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0788:aca6eea3","title":"ATM Volume cors_0788","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0788","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0789:ad339580","title":"ATM Volume cors_0789","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0789","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0790:63edcaca","title":"ATM Volume cors_0790","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0790","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0791:f2e9bf3f","title":"ATM Volume cors_0791","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0791","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0792:6775e943","title":"ATM Volume cors_0792","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0792","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0793:996176be","title":"ATM Volume cors_0793","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0793","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0794:e9252f23","title":"ATM Volume cors_0794","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0794","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0795:d326a307","title":"ATM Volume cors_0795","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0795","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0796:9144aeae","title":"ATM Volume cors_0796","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0796","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0797:21a4e16d","title":"ATM Volume cors_0797","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0797","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0798:d2842a9c","title":"ATM Volume cors_0798","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0798","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0799:392a5436","title":"ATM Volume cors_0799","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0799","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0800:96e70a6c","title":"ATM Volume cors_0800","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0800","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0801:d217b839","title":"ATM Volume cors_0801","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0801","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0802:990de58c","title":"ATM Volume cors_0802","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0802","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0803:0620788e","title":"ATM Volume cors_0803","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0803","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0804:6f99e4d9","title":"ATM Volume cors_0804","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0804","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0805:f3d1bcdf","title":"ATM Volume cors_0805","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0805","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0806:453c78a9","title":"ATM Volume cors_0806","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0806","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0807:76ef1c6e","title":"ATM Volume cors_0807","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0807","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:cors_0808:4f44c0ed","title":"ATM Volume cors_0808","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0808","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0003:2145b184","title":"ATM Volume couvis_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0004:a071bbfd","title":"ATM Volume couvis_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0005:1b9f389c","title":"ATM Volume couvis_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0006:3702974b","title":"ATM Volume couvis_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0007:5ee9d32c","title":"ATM Volume couvis_0007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0008:d5038070","title":"ATM Volume couvis_0008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0009:2ef1b4f6","title":"ATM Volume couvis_0009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0010:1a2901d8","title":"ATM Volume couvis_0010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0011:f25a44cf","title":"ATM Volume couvis_0011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0012:9e6cac87","title":"ATM Volume couvis_0012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0013:7e75f163","title":"ATM Volume couvis_0013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0014:19233c1d","title":"ATM Volume couvis_0014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0015:d49a8790","title":"ATM Volume couvis_0015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0016:7ebfec7d","title":"ATM Volume couvis_0016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0017:486aecd4","title":"ATM Volume couvis_0017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0018:e9c45963","title":"ATM Volume couvis_0018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0019:da5d1db1","title":"ATM Volume couvis_0019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0020:e88812ef","title":"ATM Volume couvis_0020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0021:9fa918c8","title":"ATM Volume couvis_0021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0022:a1f32a2f","title":"ATM Volume couvis_0022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0023:6a5c3695","title":"ATM Volume couvis_0023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0024:9eb9f3fa","title":"ATM Volume couvis_0024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0025:2bc41ba9","title":"ATM Volume couvis_0025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0026:cb61067c","title":"ATM Volume couvis_0026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0027:8e1a6b4a","title":"ATM Volume couvis_0027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0028:2d124af9","title":"ATM Volume couvis_0028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0029:a2622a4b","title":"ATM Volume couvis_0029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0030:0b07ff88","title":"ATM Volume couvis_0030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0031:3121b780","title":"ATM Volume couvis_0031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0032:7e89df7f","title":"ATM Volume couvis_0032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0033:70120d40","title":"ATM Volume couvis_0033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0034:717fef02","title":"ATM Volume couvis_0034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0035:156830c8","title":"ATM Volume couvis_0035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580458","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0036:b5c0da68","title":"ATM Volume couvis_0036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0037:b9e9046e","title":"ATM Volume couvis_0037","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0038:5c800fd0","title":"ATM Volume couvis_0038","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0039:94087c39","title":"ATM Volume couvis_0039","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0040:291ac75e","title":"ATM Volume couvis_0040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0041:a4a165d5","title":"ATM Volume couvis_0041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0042:6f14df9d","title":"ATM Volume couvis_0042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0043:0fef5a41","title":"ATM Volume couvis_0043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0044:d45c625f","title":"ATM Volume couvis_0044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0045:248b436a","title":"ATM Volume couvis_0045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0046:9a536af9","title":"ATM Volume couvis_0046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0047:2439a452","title":"ATM Volume couvis_0047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0048:eefd07e3","title":"ATM Volume couvis_0048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0049:7d7ef331","title":"ATM Volume couvis_0049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0050:377dd213","title":"ATM Volume couvis_0050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0051:40589c3b","title":"ATM Volume couvis_0051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0052:d3494041","title":"ATM Volume couvis_0052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0053:8908f6a7","title":"ATM Volume couvis_0053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0054:e6db74f7","title":"ATM Volume couvis_0054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0055:1ec78c7f","title":"ATM Volume couvis_0055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0056:e2ff5d7f","title":"ATM Volume couvis_0056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0057:0b7d1d7d","title":"ATM Volume couvis_0057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0058:48eea4c8","title":"ATM Volume couvis_0058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0059:14619c3b","title":"ATM Volume couvis_0059","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:couvis_0060:400d70bd","title":"ATM Volume couvis_0060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpacp_0001:7e1a7c88","title":"ATM Volume hpacp_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpacp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpdisr_0001:8d96bbe9","title":"ATM Volume hpdisr_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdisr_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpdtwg_0001:a625c617","title":"ATM Volume hpdtwg_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdtwg_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpdwe_0001:16d84dfd","title":"ATM Volume hpdwe_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdwe_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpgcms_0001:efd470cb","title":"ATM Volume hpgcms_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpgcms_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580709","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hphasi_0001:86396454","title":"ATM Volume hphasi_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphasi_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hphk_0001:e8356c24","title":"ATM Volume hphk_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphk_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:hpssp_0001:d3c091cb","title":"ATM Volume hpssp_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpssp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2207:6784fcf1","title":"ATM Volume vg_2207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2208:d82f23a4","title":"ATM Volume vg_2208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2209:15538de2","title":"ATM Volume vg_2209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2210:d3627025","title":"ATM Volume vg_2210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2211:1de16e36","title":"ATM Volume vg_2211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2212:5e0cfeb6","title":"ATM Volume vg_2212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2213:815c35b8","title":"ATM Volume vg_2213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2214:3c33f17f","title":"ATM Volume vg_2214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2215:9f27bb67","title":"ATM Volume vg_2215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2216:f9e0fa58","title":"ATM Volume vg_2216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"atm:vg_2499:8141e026","title":"ATM Volume vg_2499","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2499","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:Huygens","title":"Huygens (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:29.262068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:InSight","title":"Insight (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":["InSight"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:29.674346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_vortex::1.0","title":"InSight Vortex Data","description":"InSight Vortex data for dust devil detections","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","Insight","Insight","APSS PS","APSS TWINS","SEIS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/bundle_insight_vortex.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:30.668348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_vortex:context::1.0","title":"InSight Vortex Data Context Collection","description":"InSight Vortex data for dust devil detections Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/collection_insight_vortex_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:31.674019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_vortex:data_seis::1.0","title":"InSight Vortex SEIS Data Collection","description":"InSight SEIS data for dust devil detections. Data are additionally archived on the IPSL InSight archive: https://data.ipsl.fr/catalog/srv/eng/catalog.search#/metadata/2ddaba56-cf61-4d5b-83b7-e4a079ed836b","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["SEIS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-12-12","stop_date":"2020-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/collection_insight_vortex_seis_data_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:32.684839","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_vortex:data_vortex::1.0","title":"InSight Vortex Data Collection","description":"InSight Vortex data for dust devil detections","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-12-12","stop_date":"2020-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/collection_insight_vortex_data_catalog_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:33.685808","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_vortex:xml_schema::1.0","title":"InSight Vortex Data Schema Collection","description":"InSight Vortex data for dust devil detections Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/collection_insight_vortex_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:34.685081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:LADEE","title":"Ladee (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:35.182875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:MAVEN","title":"Maven (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":["MAVEN"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:35.699010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:Mars2020","title":"Mars2020 (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:36.183041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:PHX","title":"Phx (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:36.685073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe::1.0","title":"Cassini Radio Science Gravitational Wave Experiment (GWE) Raw Data Bundle","description":"This bundle contains raw radio science data acquired during the Cassini\n Gravitational Wave Experiment (GWE). The primary data in this bundle are\n Radio Science Receiver (RSR) files, Orbit Data Files (ODFs), Tracking and\n Navigation Files (TNFs), and Archival Tracking Data Files (ATDFs or TDFs).\n The primary data files are accompanied by supplementary data files. These\n include 0158-Monitor (158) files, MON-5-15 (515) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n LOG files, Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n Also included are UltraStable Oscillator (USO), High-Gain Antenna (HGA), \n Boresight calibration (BORESIGHT), Leap Second (LSK), and Clock Conversion \n (TSC) files. The bundle is a migration of data from the original PDS3 archive \n with minor improvements and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/bundle_gwe.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:37.734628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.boresight::1.0","title":"Cassini High-Gain Antenna Boresight Calibration File","description":"The BORESIGHT calibration collection includes one product which describe the results of four boresight\n calibrations conducted during the early years of the Cassini mission\n (between October 2001 and May 2004). The spacecraft high-gain antenna \n was aimed toward Earth, then slightly offset in a raster pattern that \n allowed determination of the boresight vector in fixed-body spacecraft \n coordinates.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-boresight/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-boresight/collection_gwe_boresight.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:38.784407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.ckf::1.0","title":"Cassini Radio Science GWE SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-20","stop_date":"2003-12-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-ckf/collection_gwe_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:39.750910","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.eop::1.0","title":"Cassini Radio Science GWE EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science \n observations during Gravitational Wave Experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-05-12","stop_date":"2004-02-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-eop/collection_gwe_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:40.691291","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.hga::1.0","title":"Cassini High-Gain Antenna Calibration Collection","description":"The High-Gain Antenna Calibration collection includes one product which describes the results of HGA\n calibrations conducted during the Cassini mission. It is the concatenation\n of three Calibration Reports with publication dates between May 2004 and\n July 2018. No report has any content other than an acknowledgement that\n the HGA Calibration Report is unavailable. Basic parameters describing\n the HGA have been imported from Kliore et al. (2004).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-hga/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-hga/collection_gwe_hga.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:41.700950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.ion::1.0","title":"Cassini Radio Science GWE Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-12-01","stop_date":"2003-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-ion/collection_gwe_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:42.703958","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.lsk::1.0","title":"Cassini SPICE Leap Second Kernel Collection","description":"The collection of SPICE leap second kernels created by NAIF.\n This collection includes a single product which covers the entire Cassini mission.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"1972-01-01","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-lsk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-lsk/collection_gwe_lsk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:43.699973","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.spk::1.0","title":"Cassini Radio Science GWE SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science GWE \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-spk/collection_gwe_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:44.706810","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.tro::1.0","title":"Cassini Radio Science GWE Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-12-01","stop_date":"2003-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-tro/collection_gwe_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:45.712796","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.tsc::1.0","title":"Cassini SPICE Clock Conversion Kernel Collection","description":"The collection of Cassini SPICE Clock Conversion products created by NAIF, JPL.\n The collection includes a single product which covers the entire Cassini mission.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Cassini"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"1980-01-01","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-tsc/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-tsc/collection_gwe_tsc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:46.711728","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.uso::1.0","title":"Cassini UltraStable Oscillator Calibration Collection","description":"This UltraStable Oscillator calibration collection contains a single product \n which describes the results of \n calibrations conducted during the Cassini mission to estimate the\n frequency of the onboard oscillator that controlled one-way transmissions\n during radio science observations. The product includes equivalent S-band, \n X-band, and Ka-band frequencies and standard deviations.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-uso/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-uso/collection_gwe_uso.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:47.714778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:context::1.0","title":"Cassini Radio Science GWE Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Gravitational Wave Experiment raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/context/collection_gwe_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:48.736103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.158::1.0","title":"Cassini Radio Science GWE 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss25 34M","DSS-25 34-m Radio Telescope"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-158/collection_gwe_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:49.786958","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.515::1.0","title":"Cassini Radio Science GWE MON-5-15 Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (MON-5-15 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-515/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-515/collection_gwe_515.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:50.759685","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.log::1.0","title":"Cassini Radio Science RSR Operations Log Data Products Collection","description":"The RSR Operations Log (ROL) documents a use of one or more Radio Science\n Receivers (RSR) during one DSN pass supporting Cassini Gravitational Wave\n Experiment 1 (GWE1). The ROL file is an ASCII file; it was migrated from\n the original PDS3 archive and includes the PDS3 attached label.\n No ROL files were archived from any other Cassini Radio Science experiment.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2002-01-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-log/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-log/collection_gwe_log.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:51.810325","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.odf::1.0","title":"Cassini Radio Science GWE Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the Cassini Radio Science Gravitational Wave Experiment (GWE). \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Solar System"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-odf/collection_gwe_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:52.729705","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.pd1::1.0","title":"Cassini Radio Science GWE Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Gravitational Wave Experiment (GWE).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-pd1/collection_gwe_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:53.724369","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.pd2::1.0","title":"Cassini Radio Science GWE Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Gravitational Wave Experiment (GWE).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-pd2/collection_gwe_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:54.726652","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.rsr01::1.0","title":"Cassini Radio Science GWE RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Gravitational Wave Experiment (GWE). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-rsr01/collection_gwe_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:55.732254","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.tdf::1.0","title":"Cassini Radio Science GWE Archival Tracking Data Products Collection","description":"This is the collection of Radio Science Tracking Data Files (TDFs or sometimes Archival Tracking Data \n Files, ATDFs) acquired during the Cassini Radio Science Gravitational Wave Experiment (GWE).\n These files were produced by JPL multi-mission support personnel for use in determining spacecraft \n trajectories, gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Solar System"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tdf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tdf/collection_gwe_tdf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:56.728769","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.tlm::1.0","title":"Cassini Radio Science GWE Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during \n the Cassini Radio Science Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tlm/collection_gwe_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:57.731101","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.tnf::1.0","title":"Cassini Radio Science GWE Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Gravitational Wave Experiment (GWE). \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2003-11-10","stop_date":"2003-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tnf/collection_gwe_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:58.731967","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr::1.0","title":"Cassini Radio Science Saturn Gravity Science Experiment (SAGR) Raw Data Bundle","description":"This bundle contains the Cassini radio science raw data acquired\n during the Saturn Gravity Science Experiment (SAGR). \n The primary data in this bundle are the Radio Science Receiver\n (RSR) files, the Orbit Data Files (ODFs), and the Tracking and Navigation Files (TNFs).\n The primary data files are accompanied by supplementary data files. \n These include 0158-Monitor (158) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n The bundle is a migration of data from the original PDS3 archive with\n minor improvements and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/bundle_sagr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:59.750413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.ckf::1.0","title":"Cassini Radio Science SAGR SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-ckf/collection_sagr_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:00.792173","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.eop::1.0","title":"Cassini Radio Science SAGR EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science \n observations during Saturn Gravity Science Experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-08-31","stop_date":"2017-10-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-eop/collection_sagr_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:01.769970","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.ion::1.0","title":"Cassini Radio Science SAGR Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Saturn Gravity Science Experiment (SAGR).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-01","stop_date":"2017-08-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-ion/collection_sagr_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:02.824317","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.spk::1.0","title":"Cassini Radio Science SAGR SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science SAGR \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn","Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-04-24","stop_date":"2017-08-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-spk/collection_sagr_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:03.745758","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.tro::1.0","title":"Cassini Radio Science SAGR Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Saturn Gravity Science Experiment (SAGR).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-01","stop_date":"2017-07-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-tro/collection_sagr_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:04.746955","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:context::1.0","title":"Cassini Radio Science SAGR Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Saturn Gravity raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/context/collection_sagr_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:05.746515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.158::1.0","title":"Cassini Radio Science SAGR 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Saturn Gravity Science Experiment (SAGR).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss15 34M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-158/collection_sagr_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:06.749989","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.odf::1.0","title":"Cassini Radio Science SAGR Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the Cassini Radio Science Saturn Gravity Science Experiment (SAGR). \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-06-06","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-odf/collection_sagr_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:07.750209","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.pd1::1.0","title":"Cassini Radio Science SAGR Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Saturn Gravity Science Experiment (SAGR).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-06-09","stop_date":"2010-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-pd1/collection_sagr_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:08.754808","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.pd2::1.0","title":"Cassini Radio Science SAGR Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Saturn Gravity Science Experiment (SAGR).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2011-08-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-pd2/collection_sagr_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:09.763360","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.rsr01::1.0","title":"Cassini Radio Science SAGR RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn Gravity Science Experiment (SAGR). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-rsr01/collection_sagr_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:10.764113","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.rsr02::1.0","title":"Cassini Radio Science SAGR RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn Gravity Science Experiment (SAGR). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 2 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-04","stop_date":"2012-06-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-rsr02/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-rsr02/collection_sagr_rsr02.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:11.810223","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.tlm::1.0","title":"Cassini Radio Science SAGR Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during \n the Cassini Radio Science Saturn Gravity Science Experiment (SAGR).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-tlm/collection_sagr_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:12.780389","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.tnf::1.0","title":"Cassini Radio Science SAGR Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Saturn Gravity Science Experiment (SAGR). \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-09-08","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-tnf/collection_sagr_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:13.827526","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce::1.0","title":"Cassini Radio Science Science Solar Corona Experiment (SCE) Raw Data Bundle","description":"This bundle contains the raw radio science raw data acquired during the\n Cassini Solar Corona Experiment (SCE). The primary data in this bundle \n are the Radio Science Receiver (RSR) files, the Orbit Data Files (ODFs), \n and the Tracking and Navigation Files (TNFs). The primary data files are \n accompanied by supplementary data files. These include 0158-Monitor (158) \n files, MON-5-15 (515) files, C-Kernel (CKF) files, Earth Orientation \n Parameters (EOP) files, Ionosphere Calibration (ION) files, Path Delay \n (PD1 and PD2) files, Spacecraft/Planetary Ephemeris (SPK) files, Telemetry \n (TLM) files, and Troposphere Calibration (TRO) files. The bundle is a \n migration of data from the original PDS3 archive with minor improvements \n and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth","Sun","Solar Wind","General Relativity","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Tests of General Relativity","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-09-01","stop_date":"2017-03-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/bundle_sce.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:14.768941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.ckf::1.0","title":"Cassini Radio Science SCE SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Sun","Solar Wind","General Relativity","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Tests of General Relativity","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-04","stop_date":"2016-12-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-ckf/collection_sce_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:15.773280","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.eop::1.0","title":"Cassini Radio Science SCE EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science \n observations during Solar Corona Experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-09-01","stop_date":"2017-03-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-eop/collection_sce_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:16.770833","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.ion::1.0","title":"Cassini Radio Science SCE Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-01","stop_date":"2017-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-ion/collection_sce_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:17.771737","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.spk::1.0","title":"Cassini Radio Science SCE SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science SCE \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-09","stop_date":"2016-12-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-spk/collection_sce_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:19.068701","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.tro::1.0","title":"Cassini Radio Science SCE Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-01","stop_date":"2017-01-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-tro/collection_sce_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:19.773471","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:context::1.0","title":"Cassini Radio Science SCE Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Solar Conjunction Experiment raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Sun","Solar Wind","General Relativity","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Tests of General Relativity","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-09-01","stop_date":"2017-03-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/context/collection_sce_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:20.779629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.158::1.0","title":"Cassini Radio Science SCE 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-07","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-158/collection_sce_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:21.793577","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.515::1.0","title":"Cassini Radio Science SCE MON-5-15 Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (MON-5-15 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss15 34M","Dss25 34M","Dss45 34M","Dss54 34M","Dss65 34M","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2002-07-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-515/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-515/collection_sce_515.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:22.815365","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.odf::1.0","title":"Cassini Radio Science SCE Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the Cassini Radio Science Solar Corona Experiment (SCE). \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind","General Relativity","Tests of General Relativity"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-odf/collection_sce_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:23.862056","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.pd1::1.0","title":"Cassini Radio Science SCE Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Solar Corona Experiment (SCE).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2002-07-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-pd1/collection_sce_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:24.838570","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.pd2::1.0","title":"Cassini Radio Science SCE Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Solar Corona Experiment (SCE).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2002-07-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-pd2/collection_sce_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:25.785187","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.rsr01::1.0","title":"Cassini Radio Science SCE 1 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Solar Corona Experiment (SCE). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collection at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind","General Relativity","Tests of General Relativity"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr01/collection_sce_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:26.801105","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.rsr02::1.0","title":"Cassini Radio Science SCE 2 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Solar Corona Experiment (SCE). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 2 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind","General Relativity","Tests of General Relativity"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2013-10-31","stop_date":"2013-10-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr02/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr02/collection_sce_rsr02.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:27.808205","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.rsr04::1.0","title":"Cassini Radio Science SCE RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Solar Corona Experiment (SCE). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 4 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind","General Relativity","Tests of General Relativity"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2013-10-30","stop_date":"2014-11-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr04/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr04/collection_sce_rsr04.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:28.799412","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.tdf::1.0","title":"Cassini Radio Science SCE Archival Tracking Data Products Collection","description":"This is the collection of Radio Science Tracking Data Files (TDFs or sometimes Archival Tracking Data \n Files, ATDFs) acquired during the Cassini Radio Science Solar Corona Experiment (SCE).\n These files were produced by JPL multi-mission support personnel for use in determining spacecraft \n trajectories, gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2002-07-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tdf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tdf/collection_sce_tdf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:29.805354","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.tlm::1.0","title":"Cassini Radio Science SCE Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during \n the Cassini Radio Science Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tlm/collection_sce_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:30.796024","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.tnf::1.0","title":"Cassini Radio Science SCE Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Solar Corona Experiment (SCE). \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-07-22","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tnf/collection_sce_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:31.804036","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc::1.0","title":"Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC) Raw Data Bundle","description":"This bundle contains the Cassini radio science raw data acquired\n during the Saturn and Saturn/Ring Occultation Experiment (SROC).\n The primary data in this bundle are the Radio Science Receiver\n (RSR) files, the Orbit Data Files (ODFs), and the Tracking and Navigation Files (TNFs).\n The primary data files are accompanied by supplementary data files. \n These include 0158-Monitor (158) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n The bundle is a migration of data from the original PDS3 archive with\n minor improvements and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-08-31","stop_date":"2017-12-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/bundle_sroc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:32.806261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.ckf::1.0","title":"Cassini Radio Science SROC SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-ckf/collection_sroc_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:33.827353","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.eop::1.0","title":"Cassini Radio Science SROC EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science \n observations during Saturn and Saturn/Ring Occultation Experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-08-31","stop_date":"2017-12-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-eop/collection_sroc_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:34.876858","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.ion::1.0","title":"Cassini Radio Science SROC Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-01","stop_date":"2017-10-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-ion/collection_sroc_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:35.846450","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.spk::1.0","title":"Cassini Radio Science SROC SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science SROC \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn","Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-04-24","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-spk/collection_sroc_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:36.898721","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.tro::1.0","title":"Cassini Radio Science SROC Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-01","stop_date":"2017-09-23","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-tro/collection_sroc_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:37.820812","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:context::1.0","title":"Cassini Radio Science SROC Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Saturn Radio Occultation raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-08-31","stop_date":"2017-12-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/context/collection_sroc_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:38.832523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.158::1.0","title":"Cassini Radio Science SROC 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Saturn and Saturn/Ring Occultation Experiment (SROC).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-158/collection_sroc_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:39.826410","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.odf::1.0","title":"Cassini Radio Science SROC Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-odf/collection_sroc_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:40.828880","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.pd1::1.0","title":"Cassini Radio Science SROC Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2010-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-pd1/collection_sroc_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:41.825407","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.pd2::1.0","title":"Cassini Radio Science SROC Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2010-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-pd2/collection_sroc_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:42.827057","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.rsr01::1.0","title":"Cassini Radio Science SROC 1 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr01/collection_sroc_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:43.828769","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.rsr02::1.0","title":"Cassini Radio Science SROC 2 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 2 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2008-06-01","stop_date":"2008-06-23","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr02/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr02/collection_sroc_rsr02.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:44.840747","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.rsr16::1.0","title":"Cassini Radio Science SROC 16 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 16 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr16/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr16/collection_sroc_rsr16.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:45.888330","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.tlm::1.0","title":"Cassini Radio Science SROC Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during \n the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-tlm/collection_sroc_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:46.858054","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.tnf::1.0","title":"Cassini Radio Science SROC Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-tnf/collection_sroc_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:47.907836","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa::1.0","title":"Cassini Radio Science Icy Satellite Gravity Science Experiment Raw Data Bundle","description":"This bundle contains the Cassini radio science raw data acquired\n during Cassini icy satellite gravity science observations.\n The primary data in this bundle are the Radio Science Receiver\n (RSR) files, the Orbit Data Files (ODFs), and the Tracking and Navigation Files (TNFs).\n The primary data files are accompanied by supplementary data files. \n These include 0158-Monitor (158) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n The bundle is a migration of data from the original PDS3 archive with\n minor improvements and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth","Saturn","Co","Rhea","Iapetus","Hyperion","Enceladus","Dione","Dss14 70M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2015-11-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/bundle_ssa.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:48.841200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.ckf::1.0","title":"Cassini Radio Science Icy Satellite SPICE C-Kernel Collection","description":"The collection of Cassini Orbiter attitude C-kernel files (CKFs) associated with radio science\n observations of icy satellites, migrated from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Rhea","Iapetus","Hyperion","Enceladus","Dione","Dss14 70M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-11-23","stop_date":"2015-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-ckf/collection_ssa_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:49.846355","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.eop::1.0","title":"Cassini Radio Science Icy Satellite EOP Data Product Collection","description":"The collection of Earth Orientation Parameter files associated with Cassini gravity science\n observations of icy satellites, migrated from the original PDS3 archive to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2015-11-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-eop/collection_ssa_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:50.847235","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.ion::1.0","title":"Cassini Radio Science Icy Satellite Ionospheric Calibration Data Collection","description":"The collection of DSN files used to calibrate Cassini radio tracking data for the\n effects of Earth's ionosphere during observations of icy satellites, migrated from \n PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-01","stop_date":"2015-09-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-ion/collection_ssa_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:51.848694","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.spk::1.0","title":"Cassini Radio Science Icy Satellites SPICE SPK Calibration Product Collection","description":"The collection of Cassini Orbiter ephemeris kernel (SPK) files for gravity science observations\n of Saturn's icy satellites, migrated from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Rhea","Iapetus","Enceladus","Dione","Hyperion","Saturn","Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-11-16","stop_date":"2015-09-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-spk/collection_ssa_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:52.849710","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.tro::1.0","title":"Cassini Radio Science Icy Satellite Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n Radio Science icy satellite gravity science observations.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-01","stop_date":"2015-08-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-tro/collection_ssa_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:53.850023","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.158::1.0","title":"Cassini Radio Science Icy Satellite 0158-Monitor Data Product Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n an icy satellite gravity science observation.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-14 70-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-158/collection_ssa_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:54.850669","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.odf::1.0","title":"Cassini Radio Science Icy Satellite Orbit Data File (ODF) Collection","description":"The collection of Cassini Orbit Data Files (ODFs) acquired\n during icy satellite gravity science observations.\n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Rhea","Iapetus","Hyperion","Enceladus","Dione"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-odf/collection_ssa_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:55.854527","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.pd1::1.0","title":"Cassini Radio Science Icy Satellite Path Delay (PD1) Data Product Collection","description":"The first of two collections of path delay files acquired during \n Cassini gravity science observations of Saturn's icy satellites.\n These path delay files were generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file was generated a week after data acquisition when the MCS\n development team had supplied updated calibration files.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-pd1/collection_ssa_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:56.895034","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.pd2::1.0","title":"Cassini Radio Science Icy Satellite Path Delay (PD2) Data Product Collection","description":"The second of two collections of path delay files acquired during \n Cassini gravity science observations of Saturn's icy satellites.\n These path delay files were generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file was generated a week after data acquisition when the MCS\n development team had supplied updated calibration files.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-17","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-pd2/collection_ssa_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:57.944847","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.rsr01::1.0","title":"Cassini Radio Science Icy Satellites RSR Data Product Collection - 1 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during Cassini icy satellite gravity science observations.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Rhea","Iapetus","Hyperion","Enceladus","Earth","Dione"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr01/collection_ssa_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:58.918029","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.rsr08::1.0","title":"Cassini Radio Science Icy Satellites RSR Data Product Collection - 8 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during Cassini icy satellite gravity science observations.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were coll;ected at 8 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Iapetus","Earth"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2007-09-10","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr08/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr08/collection_ssa_rsr08.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:59.862769","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.rsr16::1.0","title":"Cassini Radio Science Icy Satellites RSR Data Product Collection - 16 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during Cassini icy satellite gravity science observations.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 16 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Enceladus"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-09-15","stop_date":"2010-01-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr16/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr16/collection_ssa_rsr16.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:00.861822","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.tlm::1.0","title":"Cassini Radio Science Icy Satellite Engineering Telemetry (TLM) Data Product Collection","description":"The collection of spacecraft engineering data relevant to Cassini gravity science observations of Saturn's icy satellites.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-tlm/collection_ssa_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:01.864872","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.tnf::1.0","title":"Cassini Radio Science Icy Satellite Tracking and Navigation (TNF) Data Product Collection","description":"The collection of Cassini Tracking and Navigation (TNF) data products acquired\n during icy satellite gravity science observations, migrated from PDS3 to PDS4.\n In PDS3 records were stored in absolute chronological order; for PDS4, records \n were sorted according to data type, retaining chronological order within each \n data type.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Rhea","Iapetus","Hyperion","Enceladus","Dione"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-tnf/collection_ssa_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:02.865419","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan::1.0","title":"Cassini Radio Science Titan Gravity, Occultation, and Bistatic Radar Experiments Raw Data Bundle","description":"This bundle contains the Cassini radio science raw data acquired\n during Titan gravity, occultation, and bistatic radar experiments.\n The primary data in this bundle are the Radio Science Receiver\n (RSR) files, the Orbit Data Files (ODFs), and the Tracking and Navigation Files (TNFs).\n The primary data files are accompanied by supplementary data files. \n These include 0158-Monitor (158) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n The bundle is a migration of data from the original PDS3 archive with\n minor improvements and corrections. 40 RSR files from Titan bistatic radar experiment\n calibrations in 2016 -- not included in the PDS3 archive -- have been added.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Co","Earth","Saturn","Titan","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2017-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/bundle_titan.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:03.869805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.ckf::1.0","title":"Cassini Radio Science Titan SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Earth","Saturn","Titan","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-28","stop_date":"2007-05-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-ckf/collection_titan_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:04.874012","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.eop::1.0","title":"Cassini Radio Science Titan EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science\n observations during Titan gravity, occultation, and bistatic radar experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2017-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-eop/collection_titan_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:05.878088","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.ion::1.0","title":"Cassini Radio Science Titan Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Titan gravity, occultation, and bistatic radar experiments.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-01","stop_date":"2016-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-ion/collection_titan_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:06.886832","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.spk::1.0","title":"Cassini Radio Science Titan SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science Titan\n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan","Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-22","stop_date":"2016-11-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-spk/collection_titan_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:07.902375","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.tro::1.0","title":"Cassini Radio Science Titan Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Titan gravity, occultation, and bistatic radar experiments.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-01","stop_date":"2016-11-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-tro/collection_titan_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:08.962889","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:context::1.0","title":"Cassini Radio Science TITAN Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Saturn/Titan raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Earth","Saturn","Titan","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2017-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/context/collection_titan_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:09.926497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.158::1.0","title":"Cassini Radio Science Titan 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n Titan gravity, occultation, and bistatic radar experiments.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","DSS-14 70-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-30","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-158/collection_titan_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:10.976992","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.odf::1.0","title":"Cassini Radio Science Titan Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired\n during the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-30","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-odf/collection_titan_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:11.887026","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.pd1::1.0","title":"Cassini Radio Science Titan Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the\n Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-10-29","stop_date":"2014-03-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-pd1/collection_titan_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:12.888066","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.pd2::1.0","title":"Cassini Radio Science Titan Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the\n Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-30","stop_date":"2014-03-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-pd2/collection_titan_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:13.902830","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.rsr01::1.0","title":"Cassini Radio Science Titan RSR Data Products Collection - 1 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-10-27","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-rsr01/collection_titan_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:14.892881","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.rsr16::1.0","title":"Cassini Radio Science Titan RSR Data Products Collection - 16 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 16 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-rsr16/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-rsr16/collection_titan_rsr16.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:15.893979","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.tlm::1.0","title":"Cassini Radio Science Titan Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during\n the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-30","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-tlm/collection_titan_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:16.890599","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.tnf::1.0","title":"Cassini Radio Science Titan Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments. \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-12-25","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-tnf/collection_titan_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:17.901694","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-uvis_titan-library::1.0","title":"Cassini UVIS Titan Library Bundle","description":"Cassini UVIS spectral library for Titan","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Co","UVIS"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/bundle_cassini-uvis_titan-library.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:18.920718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-uvis_titan-library:context::1.0","title":"Cassini UVIS Titan Library Context collection file","description":"Context collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/collection_cassini-uvis_titan-library_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:19.967912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-uvis_titan-library:data_derived::1.0","title":"Cassini UVIS Titan Library Derived Data collection file","description":"Data collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/collection_cassini-uvis_titan-library_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:20.937594","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-uvis_titan-library:xml_schema::1.0","title":"Cassini UVIS Titan Library XML Schema collection file","description":"XML Schema collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/collection_cassini-uvis_titan-library_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:21.983108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_saturn_radar_maps::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Bundle","description":"2.2 cm thermal emission maps of Saturn obtained\n using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","RADAR for CO"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/bundle_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:22.907822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_saturn_radar_maps:context::1.1","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Context Collection","description":"2.2 cm thermal emission maps of Saturn obtained\n using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2015-12-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/collection_context_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:23.912607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_saturn_radar_maps:data::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Derived Data Collection","description":"2.2 cm thermal emission maps of Saturn obtained\n using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/collection_data_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:24.920236","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_saturn_radar_maps:schema::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/collection_schema_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:25.920218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Bundle","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Co","Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/bundle_co-rss_slepian-grav-coeff.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:26.920778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:context::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Context Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/collection_co-rss_slepian-grav-coeff_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:27.923945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:data_derived::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Derived Data Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/collection_co-rss_slepian-grav-coeff_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:28.924125","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:xml_schema::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions XML Schema Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/collection_co-rss_slepian-grav-coeff_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:29.929314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:co_iss_global-maps::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn","description":"description","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Name"],"targets":["Jupiter","Saturn"],"instruments":["Co","Co","Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini","Co"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/bundle_co_iss_global-maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:30.971359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:co_iss_global-maps:context::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived Context Collection","description":"Global Maps of Jupiter and Saturn based on Cassini ISS Images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/collection_co_iss_global-maps_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:31.944687","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:co_iss_global-maps:data_derived::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived Data Collection","description":"Cassini ISS Global Maps of Jupiter and Saturn","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/collection_co_iss_global-maps_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:32.996026","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:co_iss_global-maps:xml_schema::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived XML Schema Collection","description":"Cassini ISS Global Maps of Jupiter and Saturn","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/collection_co_iss_global-maps_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:33.942243","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cocirs_c2h4abund::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Mole fractions during the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","cocirs"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/bundle_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:34.935983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cocirs_c2h4abund:context::1.1","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Ethylene (C2H4) mole fractions after the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/collection_context_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:35.936389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cocirs_c2h4abund:data_derived::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Ethylene (C2H4) mole fractions after the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/collection_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:36.941582","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cocirs_c2h4abund:xml_schema::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/collection_schema_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:37.938832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:coiss_zonal_winds::1.0","title":"Saturn Zonal Winds Bundle","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","Co","Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/bundle_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:38.945300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:coiss_zonal_winds:context::1.0","title":"Saturn Zonal Winds Context Collection","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/collection_context_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:39.950611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:coiss_zonal_winds:data_derived::1.0","title":"Saturn Zonal Winds Observarions Collection","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/collection_data_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:40.948318","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:coiss_zonal_winds:schema::1.0","title":"Saturn Zonal Winds Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/collection_schema_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:41.989799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_occul_el_dens::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density","description":"Derived data products from Cassini radio occultations at Titan \n and their accompanying documentation. Derived data products include: \n (A) time series of the frequency of the radio \n signal received at Earth during an occultation; (B) individual \n electron density profiles from occultations; (C) average electron \n density profiles from occultations; and (D) summary of average \n electron density profiles.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Co","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/bundle_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:43.031872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_occul_el_dens:context::1.1","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/collection_context_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:44.007833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_occul_el_dens:data_derived::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Derived Data Collection","description":"Derived data products from Cassini radio occultations at Titan. \n Derived data products include: (A) time series \n of the frequency of the radio signal received at Earth during an \n occultation; (B) individual electron density profiles from \n occultations; (C) average electron density profiles from \n occultations; and (D) summary of average electron density profiles.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/collection_corss_occul_el_dens_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:45.054645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_occul_el_dens:xml_schema::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/collection_schema_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:45.965268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dd_nnss-nv::1.0","title":"Seven years of convective vortex recordings in the Mojave desert Bundle","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion microbarometers","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Dd Nnss Nv 2019","Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion Ifs5000","Hyperion Ifs3000","Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":[],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/bundle_dd_nnss-nv.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:46.958932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dd_nnss-nv:context::1.0","title":"Seven years of convective vortex recordings in the Mojave desert Context Collection","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion IFS-5000 microbarometers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Nnss Nv 2019","Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":[],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/context/collection_dd_nnss-nv_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:47.971640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dd_nnss-nv:data_derived::1.0","title":"Seven years of convective vortex recordings in the Mojave desert Derived Data Collection","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion microbarometers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Nnss Nv 2019","Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":[],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/collection_dd_nnss-nv_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:48.962354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dd_nnss-nv:xml_schema::1.0","title":"Seven years of convective vortex recordings in the Mojave desert XML Schema Collection","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion IFS-5000 microbarometers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Nnss Nv 2019","Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":[],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/xml_schema/collection_dd_nnss-nv_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:49.969053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:eldorado_nv_dd_ptv::1.0","title":"Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015","description":"Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Dd Eldorado Nv 2015","Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Met Station","Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/bundle_eldorado_nv_dd_ptv.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:50.968002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:context::1.0","title":"Jackson and Lorenz Dust Devil Field Campaign Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Eldorado Nv 2015","Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/collection_eldorado_nv_dd_ptv_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:51.966313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:data_derived::1.0","title":"Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015","description":"Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Eldorado Nv 2015","Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/collection_eldorado_nv_dd_ptv_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:52.993305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:xml_schema::1.0","title":"Jackson and Lorenz Dust Devil Field Campaign XML Schema Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Eldorado Nv 2015","Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/collection_eldorado_nv_dd_ptv_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:54.049740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp::1.0","title":"Galileo Probe (GP) Bundle","description":"This version of the GP bundle was created by the PDS Atmospheres node in 2024","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["Asi","Dwe","Epi","Gpms","Had","Lrd","Nep","Nfr","ASI","DWE","EPI","GPMS","HAD","LRD","NEP","NFR"],"instrument_hosts":["GALILEO PROBE","Gp"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/bundle_gp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:55.013909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:context::1.0","title":"Galileo Probe Context Collection","description":"This PDS4 context_collection file for Galileo Probe (GP) was created in 2021","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI","DWE","EPI","GPMS","HAD","LRD","NEP","NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/context/collection_gp_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:56.065428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:data_asi::1.0","title":"Galileo Probe Atmospheric Structure Instrument (ASI) data_gpasi collection file","description":"GPASI data collection for the Galileo Probe ASI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/collection_gpasi_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:56.980378","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:data_dwe::1.0","title":"Galileo Probe Doppler Wind Experiment (DWE) data_gpdwe collection file","description":"GPDWE data collection for the Galileo Probe DWE PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["DWE"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/collection_gpdwe_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:57.981963","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:data_epi::1.0","title":"Galileo Probe Energetic Particles Instrument (EPI) data_gpepi collection file","description":"GPEPI data collection for the Galileo Probe EPI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["EPI"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/collection_gpepi_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:58.986241","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:data_had::1.0","title":"Galileo Probe Helium Abundance Detector (HAD) data_gphad collection file","description":"GPHAD data collection for the Galileo Probe HAD PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["HAD"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/collection_gphad_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:00.329744","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:data_nep::1.0","title":"Galileo Probe Nephelometer (NEP) data_gpnep collection file","description":"GPNEP data collection for the Galileo Probe NEP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["NEP"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/collection_gpnep_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:00.992457","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:data_nfr::1.0","title":"Galileo Probe Net Flux Radiometer (NFR) data_gpnfr collection file","description":"GPNFR data collection for the Galileo Probe NFR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/collection_gpnfr_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:01.991448","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:data_nms::1.0","title":"Galileo Probe Mass Spectrometer (GPMS) data_gpnms collection file","description":"GPMS data collection for the Galileo Probe NMS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["GPMS"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/collection_gpnms_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:03.004369","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gp:xml_schema::1.0","title":"Galileo Probe XML_Schema Collection","description":"XML Schema collection for the Galileo Probe (GP) PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI","DWE","EPI","GPMS","HAD","LRD","NEP","NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/xml_schema/collection_gp_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:04.007481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_nims_io_rad::1.0","title":"Galileo NIMS Hot Spot Spectral Radiance Bundle","description":"Hot spot spectral radiance derived from Galileo NIMS observations of Io","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo","Galileo Mission"],"targets":["Io"],"instruments":["Nims","Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/bundle_go_nims_io_rad.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:05.057708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_nims_io_rad:context::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance Context Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/collection_go_nims_io_rad_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:06.023446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_nims_io_rad:data_derived::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance Derived Data Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/collection_go_nims_io_rad_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:07.072462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_nims_io_rad:xml_schema::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance XML Schema Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/collection_go_nims_io_rad_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:08.009509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_ppr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) for GO Bundle","description":"This version of the Photopolarimeter Radiometer (PPR) for GO bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Amalthea","GLL PCT","PPR RCT"],"instruments":["Ppr","PPR"],"instrument_hosts":["GALILEO ORBITER","Go"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/bundle_goppr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:09.010605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_ppr:context::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer Context Collection","description":"This PDS4 context_collection file was created in 2021","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/context/collection_goppr_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:10.506722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_ppr:geometry::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) geometry collection file","description":"GEOMETRY collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/geometry_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:11.509901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_ppr:data_redr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) data_redr collection file","description":"R_EDR data collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","GLL PCT","PPR RCT"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/data_redr_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:12.518082","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_ppr:data_rdr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) data_rdr collection file","description":"RDR data collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","GLL PCT","PPR RCT"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/data_rdr_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:13.516831","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_ppr:xml_schema::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer XML_Schema Collection","description":"XML Schema collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/xml_schema/collection_goppr_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:14.516834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_uvs::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) for GO Bundle","description":"This version of the Ultraviolet Spectrometer (UVS) for GO bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Io Torus","Io Plasma Torus","STAR"],"instruments":["Uvs","UVS"],"instrument_hosts":["GALILEO ORBITER","Go"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/bundle_gouvs.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:15.542728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_uvs:calibration::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer Calibration Collection","description":"Calibration collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/calibration_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:16.583385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_uvs:context::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer Context Collection","description":"This PDS4 context_collection file was created in 2021","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Io Torus","Io Plasma Torus","STAR"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/context/collection_gouvs_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:17.558612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_uvs:data_euv::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) data_euv collection file","description":"EUV data collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1995-12-08","stop_date":"2002-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/data_gouvs_euv_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:18.606830","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_uvs:geometry_euv::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) geometry_euv collection file","description":"GEOMETRY EUV collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1995-12-08","stop_date":"2002-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_euv_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:19.524763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_uvs:data_uvs_dat::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) data_uvs_dat collection file","description":"UVS DAT data collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1995-12-08","stop_date":"1999-06-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/data_uvs_dat_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:20.534448","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go_uvs:xml_schema::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer XML_Schema Collection","description":"XML Schema collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Io Torus","Io Plasma Torus"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/xml_schema/collection_gouvs_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:21.528988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hot_ion_atmos_escape::1.0","title":"Hot Ion Atmospheric Escape Data","description":"This bundle contains collated hot ion atmospheric escape data from multiple published sources","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Hot Ion Atmos Escape","Hot Ion Atmospheric Escape Data"],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/bundle_hot_ion_atmos_escape.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:22.536562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hot_ion_atmos_escape:context::1.0","title":"Hot Ion Atmospheric Escape Data Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmos Escape","Hot Ion Atmospheric Escape Data"],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/collection_hot_ion_atmos_escape_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:23.534295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hot_ion_atmos_escape:data_derived::1.0","title":"Collated Hot Ion Atmospheric Escape Data Derived Data Collection","description":"Collection of derived data (from model fits and laboratory experiments) pertaining to hot ion collisions and atmospheric escape","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmos Escape","Hot Ion Atmospheric Escape Data"],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/collection_hot_ion_atmos_escape_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:24.542283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hot_ion_atmos_escape:xml_schema::1.0","title":"Hot Ion Atmospheric Escape Data XML Schema Collection","description":"XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmos Escape","Hot Ion Atmospheric Escape Data"],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/collection_hot_ion_atmos_escape_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:25.540836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_edl::1.0","title":"InSight EDL Bundle","description":"This PDS4 bundle contains the InSight EDL atmospheric reconstruction","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","EDL"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/bundle_insightedl.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:26.549695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_edl:context::1.0","title":"InSight EDL Context","description":"This is a PDS4 Context Collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["EDL"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/collection_insightedl_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:27.603574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_edl:data::1.0","title":"InSight EDL Data Collection Inventory","description":"This is a PDS4 data collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["EDL"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/collection_insightedl_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:28.569280","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_edl:schema::1.0","title":"InSight EDL Schema","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/collection_insightedl_xmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:29.617200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:irtf_io_photometry::1.0","title":"InfraRed Telescope Facility Io Photometry Bundle","description":"IRTF Photometry of Io","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Irtf Io","IRTF Photometry of Io"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1983-02-09","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/bundle_irtf_io_photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:30.557324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:irtf_io_photometry:context::1.0","title":"IRTF Io Photometry Context Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["Irtf Io","IRTF Io Photometry"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/collection_irtf_io_photometry_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:31.551099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:irtf_io_photometry:data_derived::1.1","title":"IRTF Io Photometry Data Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["Irtf Io","IRTF Io Photometry"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/collection_irtf_io_photometry_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:32.557060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:irtf_io_photometry:schema::1.0","title":"IRTF Io Photometry XML Schema Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["Irtf Io","IRTF Io Photometry"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/collection_irtf_io_photometry_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:33.548970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:juno_jiram::1.1","title":"Juno JIRAM Bundle","description":"This version of the Juno JIRAM bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["Jupiter"],"instruments":["Jno","JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/bundle_juno_jiram.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:34.559472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:juno_jiram:calibration::1.0","title":"Juno JIRAM Calibration collection file","description":"Calibration collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/collection_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:35.557113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:juno_jiram:context::1.0","title":"Juno JIRAM Context collection file","description":"Context collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:36.564291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:juno_jiram:data_calibrated::1.0","title":"Juno JIRAM Calibrated Data collection file","description":"Calibrated (lv. 3) data collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/collection_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:39.669841","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:juno_jiram:data_raw::1.0","title":"Juno JIRAM Raw Data collection file","description":"Raw (lv.2) data collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/collection_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:41.760537","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:juno_jiram:xml_schema::1.0","title":"Juno JIRAM XML Schema collection file","description":"XML Schema collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:42.800082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:junocam_atm-ml-calib::1.0","title":"JunoCam - Machine Learning Calibration Bundle","description":"This bundle photometrically calibrated JunoCam images using a novel machine learning technique.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["Jupiter"],"instruments":["Jno","Juno JunoCam"],"instrument_hosts":["Juno","Jno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/bundle_junocam_atm-ml-calib.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:43.848810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:junocam_atm-ml-calib:context::1.0","title":"JunoCam - Machine Learning Calibration Bundle - Context Collection","description":"This collection contains the machine-learning-assisted calibration of JunoCam images.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Juno JunoCam"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/context/collection_junocam_atm-ml-calib_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:44.822357","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:junocam_atm-ml-calib:data_calibrated::1.0","title":"JunoCam - Machine Learning Calibration Bundle - Calibrated Data Collection","description":"This collection contains the machine-learning-assisted calibration of JunoCam images.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Juno JunoCam"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/data_calibrated/collection_junocam_atm-ml-calib_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:45.872078","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:junocam_atm-ml-calib:data_mosaics::1.0","title":"JunoCam - Machine Learning Calibration Bundle - Data Mosaics Collection","description":"This collection contains the machine-learning-assisted calibration of JunoCam images.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Juno JunoCam"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/data_mosaics/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/data_mosaics/collection_junocam_atm-ml-calib_data_mosaics.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:46.774215","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:junocam_atm-ml-calib:xml_schema::1.0","title":"JunoCam - Machine Learning Calibration Bundle - XML Schema Collection","description":"This collection contains the machine-learning-assisted calibration of JunoCam images.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Juno JunoCam"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/xml_schema/collection_junocam_atm-ml-calib_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:47.782404","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lab.hydrocarbon_spectra::4.0","title":"Laboratory Study of Hydrocarbon IR Spectra Bundle","description":"________","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Hydrocarbon Spectra","Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Jupiter","Saturn","Titan","Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Brukifs125Hr Ftspec","Thz Farir Beamline","Farir Beamline","Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:48.788666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:context::2.1","title":"Laboratory Study of Hydrocarbon IR Spectra Context Collection","description":"Context collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hydrocarbon Spectra","Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Jupiter","Saturn","Titan","Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:49.779960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:data::4.0","title":"Laboratory Study of Hydrocarbon IR Spectra Data Collection","description":"Data collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hydrocarbon Spectra","Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Jupiter","Saturn","Titan","Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:50.780536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:xml_schema::2.1","title":"Laboratory Study of Hydrocarbon IR Spectra XML Schema Collection","description":"XML schema collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hydrocarbon Spectra","Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Jupiter","Saturn","Titan","Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:51.787675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Bundle","description":"Photometric observations of Uranus and Neptune (1972-2016) in the b (472 nm) and y (551 nm) filters of the Strömgren photometric system at Lowell Observatory.\n Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune\n from 1972-2016.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Lowell Uranus Neptune Photometry","Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/bundle_lowell_uranus-neptune_photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:52.782230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:context::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Context Collection","description":"Context collection for photometric observations of Uranus and Neptune (1972-2016) in the Strömgren b (472 nm) and y (551 nm) filters at Lowell Observatory.\n Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune\n from 1972-2016.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Lowell Uranus Neptune Photometry","Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/collection_lowell_uranus-neptune-photometry_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:54.066950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:data::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Data Collection","description":"Data collection for photometric observations of Uranus and Neptune (1972-2016) in the Strömgren b (472 nm) and y (551 nm) filters at Lowell Observatory.\n Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune\n from 1972-2016.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Lowell Uranus Neptune Photometry","Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/collection_lowell_uranus-neptune-photometry_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:54.870747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:schema::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Lowell Uranus Neptune Photometry","Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/collection_schema_lowell_uranus-neptune-photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:55.834479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mcmath-pierce_mercury::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Bundle","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mcmath Pierce Mercury","McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["Vacuum Spectrograph","Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/bundle_mcmath-pierce_mercury.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:56.883902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mcmath-pierce_mercury:context::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Context Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mcmath Pierce Mercury","McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/collection_mcmath-pierce_mercury_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:57.801079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mcmath-pierce_mercury:data_calibrated::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Data-Calibrated Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mcmath Pierce Mercury","McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/collection_mcmath-pierce_mercury_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:58.805636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mcmath-pierce_mercury:xml_schema::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury XML Schema Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mcmath Pierce Mercury","McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/collection_mcmath-pierce_mercury_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:59.801438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_imu::1.1","title":"Mars Exploration Rover IMU Bundle","description":"This version of the MERIMU bundle was created by the PDS Atmospheres node in 2014","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mer1","Mer2","Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/bundle_mer_imu.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:00.808376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_imu:context::1.2","title":"MER1/MER2 Mars IMU Entry Descent & Landing","description":"This PDS4 merimu_context_collection file was submitted in 2004","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/context/collection_merimu_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:01.802376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_imu:derived::1.1","title":"MER1/MER2 Mars IMU Entry Descent & Landing","description":"The original MER dataset was submitted in 2004 by Paul Withers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":"2004-01-04","stop_date":"2004-01-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/data/collection_merimu_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:02.805370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_imu:xml_schema::1.1","title":"PDS4 MERIMU xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mer1","Mer2","Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:03.809764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgn-atm-profile::1.0","title":"Magellan Atmospheric Profile Bundle","description":"This version of the Magellan Atmospheric Profile bundle was created by the PDS Atmospheres node in 2025","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Magellan"],"targets":["Venus"],"instruments":["Rss","Radio Science Subsystem"],"instrument_hosts":["Magellan","Mgn"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/bundle_mgn.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:04.821423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgn-atm-profile:context::1.0","title":"Magellan Context Collection","description":"Context collection file for the Magellan Atmospheric Profile mission was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Magellan"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Magellan"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/context/collection_mgn_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:05.868883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgn-atm-profile:data_derived::1.0","title":"Magellan Data Collection","description":"Data collection for the Magellan Atmospheric Profile PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Magellan"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Magellan"],"data_types":[],"start_date":"1989-05-04","stop_date":"1994-10-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/data/data_mgn_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:06.844688","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgn-atm-profile:xml_schema::1.0","title":"Magellan XML Schema Collection","description":"XML Schema collection for the Magellan Atmospheric Profile PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Magellan"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Magellan"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/xml_schema/collection_mgn_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:08.417692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Bundle","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) \n temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Rss","Rss","Radio Science Subsystem","DSN Instrumentation"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network","Mgs"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/bundle_mgs-rss_nocturnal-mixed-layers.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:09.329420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:context::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Context Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) \n temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/collection_mgs-rss_nocturnal-mixed-layers_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:10.325972","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:data_derived::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Derived Data Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) \n temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/collection_mgs-rss_nocturnal-mixed-layers_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:11.325087","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:xml_schema::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties XML Schema Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) \n temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/collection_mgs-rss_nocturnal-mixed-layers_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:12.331014","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice::1.0","title":"Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) Atmospheric Column Optical Depths for Dust and Water Ice Bundle","description":"This bundle contains atmospheric column optical depth data for dust and water ice as well as daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["Tes","TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/bundle_mgs_tes_atmos_dust-ice.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:13.327234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:context::1.0","title":"MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Context Collection","description":"Context for the atmospheric column optical depth data for dust and water ice as well as the daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/collection_mgs_tes_atmos_dust-ice_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:14.330808","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_ir-aerosol-optical-depth::1.0","title":"MGS TES Infrared Column Aerosol Optical Depth Derived Data Collection","description":"Atmospheric infrared column dust and water ice optical depths retrieved from MGS TES observations. Absorption infrared optical depths are retrieved from thermal infrared observations in nadir-viewing mode and reported at a reference wavelength of 9.3 micron for the dust and 12.1 micron for the water ice.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_ir-aerosol-optical-depth.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:15.339325","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_maps::1.0","title":"MGS TES Infrared Column Dust Optical Depth Maps Derived Data Collection","description":"Daily global maps of atmospheric infrared column dust optical depth reconstructed from gridding of MGS TES single retrievals. Maps provided at a reference infrared wavelength of 9.3 micron in absorption are reconstructed from gridding of single retrievals of column dust optical depth from thermal infrared observations in nadir-viewing mode.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/collection_mgs_tes_atmos_dust-ice_data_derived_ir-dust-optical-depth-maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:16.361743","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_vis-dust-optical-depth::1.0","title":"MGS TES Visible Column Dust Optical Depth Derived Data Collection","description":"Atmospheric visible column dust optical depths retrieved from MGS TES observations. Visible optical depths are retrieved from solar band emergence phase function sequences and reported at a reference wavelength of 0.67 micron.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-03-12","stop_date":"2004-08-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_vis-dust-optical-depth.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:17.402638","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:xml_schema::1.0","title":"MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Schema Collection","description":"Schema collection for the atmospheric column optical depth data for dust and water ice as well as the daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/collection_mgs_tes_atmos_dust-ice_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:18.379500","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_recalib_atmos::3.0","title":"Mars Global Surveyor Thermal Emission Spectrometer Atmospheric Recalibration Bundle","description":"________","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Tes","Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:19.426462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:calibration::1.0","title":"MGS TES Atmospheric Recalibration Calibration Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/collection_mgs_tes_recalib_atmos_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:20.338984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:context::1.0","title":"MGS TES Atmospheric Recalibration Context Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/collection_mgs_tes_recalib_atmos_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:21.339676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_calibrated::1.0","title":"MGS TES Atmospheric Recalibration Calibrated Data Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/collection_mgs_tes_recalib_atmos_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:22.349306","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_atmos-opacity::1.1","title":"MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:23.876318","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_surf-emissivity::1.1","title":"MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:24.879684","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:xml_schema::1.0","title":"MGS TES Atmospheric Recalibration XML Schema Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/collection_mgs_tes_recalib_atmos_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:25.882586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_accel::1.0","title":"MGS Accel Bundle","description":"This version of the MGS ACCEL bundle was created by the PDS Atmospheres node in 2015","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars","MARS"],"instruments":["Accel","ACCEL"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/bundle_mgs_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:26.882776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_accel:context::1.0","title":"PDS4 MGS ACCEL Context Collection","description":"This PDS4 mgs_accel_context_collection file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars","MARS"],"instruments":["ACCEL"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/collection_mgs_accel_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:27.890537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs_accel:xml_schema::1.0","title":"PDS4 MGS ACCEL xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars","MARS"],"instruments":["Accel","ACCEL"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1997-11-13","stop_date":"1999-02-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:29.463601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mpf_mpim::1.0","title":"IMP Opacities Bundle","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Pathfinder","Pathfinder"],"targets":["Mars"],"instruments":["Mpfl","mpim"],"instrument_hosts":["Mpfl"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/bundle_lemmon.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:30.438506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mpf_mpim:context::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Pathfinder","Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Mpfl"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/collection_lemmoncontext.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:31.392233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mpf_mpim:derived::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Pathfinder","Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Mpfl"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/collection_lemmondata.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:32.394371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mpf_mpim:schema::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Pathfinder","Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Mpfl"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/collection_lemmonxmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:33.408063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9_iris::1.0","title":"Mariner 9 Infrared Interferometer Spectrometer (IRIS) Bundle","description":"This version of the Mariner 9 IRIS bundle was created by the PDS Atmospheres node in 2025","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Mr9","Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9","Mr9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/bundle_mr9.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:34.397630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9_iris:calibration::1.0","title":"Mariner 9 IRIS Calibration collection file","description":"This PDS4 Calibration collection file for Mariner 9 IRIS was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/calib/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/calib/calibration_mr9_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:35.403715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9_iris:context::1.0","title":"Mariner 9 IRIS Context Collection","description":"This PDS4 Context collection file for Mariner 9 IRIS was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/context/collection_mr9_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:36.402508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9_iris:data::1.0","title":"Mariner 9 IRIS Data collection file","description":"This PDS4 Data collection file for Mariner 9 IRIS was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9"],"data_types":[],"start_date":"1971-11-14","stop_date":"1972-10-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/data/data_mr9_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:37.407837","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9_iris:xml_schema::1.0","title":"Mariner 9 IRIS XML Schema collection file","description":"This PDS4 XML Schema collection file for Mariner 9 IRIS was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/xml_schema/collection_mr9_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:38.907656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro-crism_atmos-db::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Bundle","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, \n vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase \n Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Mro","Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter","Mro"],"data_types":[],"start_date":"2006-01-01","stop_date":"2024-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/bundle.mro-crism_atmos-db.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:39.950787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro-crism_atmos-db:context::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Context Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, \n vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase \n Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":[],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/collection_mro-crism_atmos-db_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:41.006467","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro-crism_atmos-db:data_derived::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Derived Data Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, \n vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase \n Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":[],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/collection_mro-crism_atmos-db_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:41.971553","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro-crism_atmos-db:xml_schema::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM XML Schema Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, \n vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase \n Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":[],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/collection_mro-crism_atmos-db_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:43.018396","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro_accel::1.0","title":"MRO Accel Bundle","description":"This version of the MRO ACCEL bundle was created by the PDS Atmospheres node in 2016","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Reconnaissance Orbiter","Mars Reconnaissance orbiter"],"targets":["Mars","MARS"],"instruments":["Mro","ACCEL"],"instrument_hosts":["Mro"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/bundle_mro_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:43.923891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro_accel:context::1.0","title":"PDS4 MRO ACCEL Context Collection","description":"This PDS4 collection_mro_accel_context file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MRO"],"targets":["Mars","MARS"],"instruments":["ACCEL"],"instrument_hosts":["Mro"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/collection_mro_accel_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:45.194006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro_accel:xml_schema::1.0","title":"PDS4 MRO Accelerometer xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars","MARS"],"instruments":["Mro","ACCEL"],"instrument_hosts":["Mro"],"data_types":[],"start_date":"2006-04-02","stop_date":"2006-08-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:46.425695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_ice-dust::1.0","title":"Mars Science Laboratory Atmospheric Ice and Dust Bundle","description":"MSL image-derived atmospheric properties","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","NAVIGATION CAMERA"],"instrument_hosts":["Mars Science Laboratory","Msl"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/bundle_msl_ice-dust.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:47.424526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_ice-dust:context::1.0","title":"Mars Science Laboratory Atmospheric Ice and Dust Context Collection","description":"Mars Science Laboratory Atmospheric Ice, Dust Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["NAVIGATION CAMERA"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2022-12-01","stop_date":"2022-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/context/collection_msl_ice-dust_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:48.429864","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_ice-dust:data_derived::1.0","title":"Mars Science Laboratory Atmospheric Ice and Dust Derived Data Collection","description":"Mars Science Laboratory Atmospheric Ice and Dust Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["NAVIGATION CAMERA"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2022-12-01","stop_date":"2022-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/data_derived/collection_msl_ice-dust_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:49.437498","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_ice-dust:xml_schema::1.0","title":"Mars Science Laboratory Atmospheric Ice and Dust XML Schema Collection","description":"Mars Science Laboratory Atmospheric Ice and Dust XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["NAVIGATION CAMERA","MAST CAMERA LEFT"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2022-12-01","stop_date":"2022-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/xml_schema/collection_msl_ice-dust_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:50.440075","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msledl::1.1","title":"MSLEDL Bundle","description":"This PDS4 file contains the MSL EDL atmospheric reconstruction","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","Accelerometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/bundle_msledl.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:51.487148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msledl:context::1.0","title":"MSLEDL Context","description":"This is a PDS4 Context Collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/collection_msledl_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:52.458111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msledl:data::1.1","title":"MSLEDL Collection","description":"MSL EDL Reconstructed Atmospheric Profiles","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2015-08-06","stop_date":"2015-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/collection_msledl_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:53.506851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msledl:schema::1.1","title":"MSLEDL Schema","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/collection_msledl_xmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:54.439251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ody_accel::1.0","title":"ODYA Bundle","description":"This version of the ODYA bundle was created by the PDS Atmospheres node in 2015","node":"atm","pds_version":"PDS4","type":"bundle","missions":["2001 Mars Odyssey","Mars Odyssey"],"targets":["Mars","MARS"],"instruments":["Ody","ACCEL"],"instrument_hosts":["Ody"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/bundle_ody_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:55.444855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ody_accel:context::1.0","title":"PDS4 ODYSSEY ACCELEROMETER Context Collection","description":"This PDS4 odya_context_collection file was submitted in 2014","node":"atm","pds_version":"PDS4","type":"collection","missions":["2001 Mars Odyssey","ODY"],"targets":["Mars","MARS"],"instruments":["ACCEL"],"instrument_hosts":["Ody"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/collection_odya_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:56.448156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ody_accel:xml_schema::1.0","title":"PDS4 Odyssey Accelerometer xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["2001 Mars Odyssey"],"targets":["Mars","MARS"],"instruments":["Ody","ACCEL"],"instrument_hosts":["Ody"],"data_types":[],"start_date":"2006-04-02","stop_date":"2006-08-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:57.957777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms::1.0","title":"CLPS Task Order 2AB Peregrine Ion-Trap Mass Spectrometer (PITMS) for Lunar Surface Volatiles","description":"This bundle contains the data collected by the Peregine Ion Trap Mass Spectormeter aboard the Peregrine lander, along with the documents and other information necessary for the interpretation of that data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Clps To 2Ab","CLPS 2AB"],"targets":["Moon"],"instruments":["Pitms","PITMS"],"instrument_hosts":["Peregrine Lunar Lander","Clps To 2Ab Pll"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/bundle_pitms.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:58.961104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:context::1.0","title":"collection PITMS Context","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/collection_pitms_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:59.957163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_calibrated::1.0","title":"collection_PITMS_CAL_INVENTORY","description":"This collection contains all the PITMS calibrated data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/collection_PITMS_CAL_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:00.958160","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_derived::1.0","title":"collection_PITMS_DER_INVENTORY","description":"This collection contains all the PITMS derived data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/collection_PITMS_DER_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:01.976109","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_raw::1.0","title":"collection_PITMS_RAW_INVENTORY","description":"This collection contains all the PITMS raw data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/collection_PITMS_RAW_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:03.023820","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:xml_schema::1.0","title":"collection PITMS XML Schema","description":"XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/collection_pitms_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:03.991108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_lnms_gas_samples::1.0","title":"Neutral Mass Spectrometer for Pioneer Venus Large Probe Gas Sampling Data (1-208 amu) Bundle","description":"This bundle contains one file of gas sampling measurements at 1-15 amu \n and 15-208 amu acquired by Neutral Mass Spectrometer (LNMS) as the \n Pioneer Venus Large Probe descended through the atmosphere of Venus\n on 9 December 1978 and continuously measured the gas coming through inlets\n on the side of the probe. For this restoration, ground received time,\n atmospheric pressure, temperature, derived density, and compressibility\n factor data from simultaneous measurements made the Large Probe Atmospheric\n Structure (LAS) instrument were interpolated for and merged into the LNMS\n gas sampling file. The data cover an altitude range of 64.2 to 0.2 km and\n span about 55 minutes. The data are provided as an ASCII comma-separated\n values file.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Lnms","Las","Neutral Mass Spectrometer for Pioneer Venus Large Probe","Atmospheric Structure Experiment for Pioneer Venus Large Probe"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","Lp"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/bundle.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:05.041022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_lnms_gas_samples:context::1.0","title":"Neutral Mass Spectrometer for Pioneer Venus Large Probe Gas Sampling Data (1-208 amu) - Context Collection","description":"This collection identifies PDS4 context products referenced in this bundle","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Neutral Mass Spectrometer for Pioneer Venus Large Probe","Atmospheric Structure Experiment for Pioneer Venus Large Probe"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:05.966085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_lnms_gas_samples:data::1.0","title":"Neutral Mass Spectrometer for Pioneer Venus Large Probe Gas Sampling Data (1-208 amu) - Data Collection","description":"This collection contains one file of gas sampling measurements at 1-15 amu \n and 15-208 amu acquired by Neutral Mass Spectrometer (LNMS) as the \n Pioneer Venus Large Probe descended through the atmosphere of Venus\n on 9 December 1978 and continuously measured the gas coming through inlets\n on the side of the probe. For this restoration, ground received time,\n atmospheric pressure, temperature, derived density, and compressibility\n factor data from simultaneous measurements made the Large Probe Atmospheric\n Structure (LAS) instrument were interpolated for and merged into the LNMS\n gas sampling file. The data cover an altitude range of 64.2 to 0.2 km and\n span about 55 minutes. The data are provided as an ASCII comma-separated\n values file.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Neutral Mass Spectrometer for Pioneer Venus Large Probe","Atmospheric Structure Experiment for Pioneer Venus Large Probe"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/data/collection_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:06.966319","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_lnms_gas_samples:xml_schema::1.0","title":"Neutral Mass Spectrometer for Pioneer Venus Large Probe Gas Sampling Data (1-208 amu) - Schema Collection","description":"This collection identifies PDS4 XML schema products referenced in this bundle","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Neutral Mass Spectrometer for Pioneer Venus Large Probe","Atmospheric Structure Experiment for Pioneer Venus Large Probe"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/xml_schema/collection_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:07.971155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed::1.0","title":"Pioneer Venus Special Events Data (SED) Bundle","description":"This bundle contains the Pioneer Venus Special Events Data (SED) extracted\n from NSSDCA dataset PSPA-00034 and reformatted as ASCII CSV products. The\n SED data consist of separate files for a number of instruments on the\n Pioneer Venus orbiter as well as the four atmospheric probes (Multiprobes).\n Data products include: Multiprobe Atmospheric Structure pressure and\n temperature data during entry and descent; Orbiter Gas Chromatograph lower\n atmospheric composition data; Large Probe Infrared Radiometer pre-entry and\n descent data; Large Probe Solar Flux Radiometer lower atmospheric up, down,\n and net flux data, Multiprobe Nephelometer atmospheric backscatter,\n temperature, UV and VIS background data, and spectral functions; Pioneer\n Venus Atmospheric Drag model and density data; Orbiter Solar Wind Plasma\n Analyzer proton parameters outside the bow shock; and Small Probes Net Flux\n Radiometer atmospheric data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Oad","Opa","Las","Lgc","Lir","Ln","Lsfr","Sas","Snfr","Sn","Sas","Snfr","Sn","Sas","Snfr","Sn","ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)","Pvo","Lp","Sp Day","Sp Night","Sp North"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/bundle_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:08.970309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:context::1.0","title":"Pioneer Venus Special Events Data (SED) - Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/collection_context_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:09.980503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:data_atm_struct::1.0","title":"Pioneer Venus Special Events Data (SED) - Multiprobes Atmospheric Structure Data Collection","description":"This collection contains middle and low atmospheric state properties from\n observations performed by the Atmospheric Structure Experiments on board\n the Pioneer Venus Large Probe and the Small Day, Night, and North Probes\n during entry and descent to the surface of Venus. Small Probe data from\n middle altitude observations include trajectory parameters. This collection\n also includes a Night Probe data file that extends the state properties to\n higher altitudes. These data were extracted from NSSDCA dataset PSPA-00034,\n Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV\n products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/collection_data_atm_struct.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:10.977724","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:data_lgc::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Gas Chromatograph Data Collection","description":"This collection contains atmospheric composition data from the \n Gas Chromatograph on board the Pioneer Venus Large Probe during\n descent to the surface of Venus. These data were extracted from NSSDCA\n dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and\n reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/collection_data_lgc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:11.978848","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:data_lir::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Infrared Radiometer Data Collection","description":"This collection contains atmospheric data from the Infrared Radiometer on\n board the Pioneer Venus Large Probe during pre-entry and descent to the\n surface of Venus. This collection also includes onboard calibration data.\n These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus\n Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE INFRARED RADIOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/collection_data_lir.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:12.982810","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:data_lsfr::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Solar Flux Radiometer Data Collection","description":"This collection contains lower atmospheric solar down, up, and net flux\n data from the Solar Flux Radiometer on board the Pioneer Venus Large Probe\n during descent to the surface of Venus. These data were extracted from\n NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and\n reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/collection_data_lsfr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:14.030562","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:data_neph::1.0","title":"Pioneer Venus Special Events Data (SED) - Multiprobes Nephelometer Data Collection","description":"This collection contains nephelometer data from each of the four Pioneer\n Venus atmospheric probes. The data include: 1) backscatter channel data; 2)\n ambient background radiation channels and spectral functions; and 3) time\n vs. temperature. These data were extracted from NSSDCA data set PSPA-00034,\n Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV\n products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/collection_data_neph.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:15.002879","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:data_oad::1.0","title":"Pioneer Venus Special Events Data (SED) - Orbiter Atmospheric Drag Observations and Model Data Collection","description":"This collection contains one file of observations acquired by the\n Atmospheric Drag Experiment during orbits 5-246 (1978-12-09 to 1979-08-07)\n of the Pioneer Venus Orbiter and one file of output from the Pioneer Venus\n Drag Atmospheric Model. The observational data include altitude, density,\n scale height, exospheric temperature, local solar time, and Venus longitude.\n The model data include local solar time, altitude, density, number density\n of atomic oxygen, ratio of number densities of O/CO2, and temperature.\n These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus\n Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS"],"instrument_hosts":["PIONEER VENUS ORBITER"],"data_types":[],"start_date":"1978-12-09","stop_date":"1979-08-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/collection_data_oad.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:16.051224","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:data_opa::1.0","title":"Pioneer Venus Special Events Data (SED) - Orbiter Solar Wind Plasma Analyzer Data Collection","description":"This collection contains reduced solar wind flow speed and proton number\n density observed by the Solar Wind Plasma Analyzer just before the\n (first) inbound crossing of the bow shock of Venus, and the same\n quantities just after the (last) outbound crossing by the Pioneer Venus\n Orbiter. This collection also contains one file of 9-minute solar wind\n proton bulk velocities while the orbiter was outside bow shock and\n before beginning inbound proton measurements during orbit 7 on\n 1978-12-11. These data were extracted from NSSDCA dataset PSPA-00034,\n Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII\n CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS"],"instrument_hosts":["PIONEER VENUS ORBITER"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/collection_data_opa.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:16.986302","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:data_snfr::1.0","title":"Pioneer Venus Special Events Data (SED) - Small Probes Net Flux Radiometers Data Collection","description":"This collection contains lower atmospheric data (66-13 km) from the Net\n Flux Radiometers on board the Pioneer Venus Small Day, Night, and North\n Probes during descent to the surface of Venus. These data were extracted\n from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED),\n and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER"],"instrument_hosts":["PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/collection_data_snfr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:17.998568","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pv_sed:xml_schema::1.0","title":"Pioneer Venus Special Events Data (SED) - Schema Collection","description":"PDS4 xml_schema collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/collection_schema_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:18.999741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvmp_dlbi::1.0","title":"Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components Data Bundle","description":"This bundle contains data on relative crustal and atmospheric velocity\n components from the Pioneer Venus Multiprobe Differential Long Base Line\n Interferometer (DLBI) experiments conducted during the descent of four\n entry probes through the atmosphere of Venus on 9 December 1978. The time\n resolution is approximately 6.3 seconds for the large probe data and 18.9\n seconds for the three small probes.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Dlbi","Dlbi","Dlbi","Dlbi","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"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)","Lp","Sp Day","Sp Night","Sp North"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/bundle.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:20.004946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvmp_dlbi:context::1.0","title":"Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components Data - Context Collection","description":"This collection identifies the PDS4 context products referenced in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["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"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:21.005634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvmp_dlbi:data::1.0","title":"Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components - Data Collection","description":"This collection contains data on relative crustal and atmospheric velocity\n components from the Pioneer Venus Multiprobe Differential Long Base Line\n Interferometer (DLBI) experiments conducted during the descent of four\n entry probes through the atmosphere of Venus on 9 December 1978. The\n probes continuously measured the components of their velocity relative to\n Venus' crust and to the ambient atmosphere, both in meters per second. The\n time resolution is approximately 6.3 seconds for the large probe data and\n 18.9 seconds for the three small probes. The data products are the\n reformatted contents of datasets PSPA-00344, PSPA-00126, PSPA-00308, and\n PSPA-00035 held on tape at NASA Space Science Data Coordinated Archive\n (NSSDCA).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["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"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/data/collection_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:22.007146","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvmp_dlbi:xml_schema::1.0","title":"Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components Data - Schema Collection","description":"This collection identifies the PDS4 XML schema products referenced in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["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"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/xml_schema/collection_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:22.994639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo.orse::1.0","title":"Pioneer Venus Orbiter Radio Occultation Profiles","description":"Derived data products from Pioneer Venus Orbiter radio occultations \n at Venus and their accompanying documentation. Derived data products \n include: (A) frequency data from the NSSDC, (B) Venus ionospheric \n electron density profiles from the NSSDC, (C) Venus neutral \n atmospheric profiles from the NSSDC, (D) Venus ionospheric electron \n density profiles from graphical sources, and (E) Venus neutral \n atmospheric profiles from graphical sources.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orse","Radio Science Experiment"],"instrument_hosts":["Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/bundle_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:24.007947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo.orse:context::1.0","title":"Pioneer Venus Orbiter Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus Orbiter"],"targets":["Venus"],"instruments":["Orbiter Radio Science Experiment"],"instrument_hosts":["Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/collection_context_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:25.036873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo.orse:data_derived::1.0","title":"Pioneer Venus Orbiter Radio Occultation Profiles Derived Data Collection","description":"Derived data products from Pioneer Venus Orbiter \n radio occultations at Venus. Derived data products include: \n (A) frequency data from the NSSDC, (B) Venus ionospheric \n electron density profiles from the NSSDC, (C) Venus neutral \n atmospheric profiles from the NSSDC, (D) Venus ionospheric \n electron density profiles from graphical sources, and (E) Venus \n neutral atmospheric profiles from graphical sources.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Radio Science Experiment"],"instrument_hosts":["Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/collection_pvoro_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:26.085238","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo.orse:xml_schema::1.0","title":"Pioneer Venus Orbiter Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus Orbiter"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/collection_schema_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:27.059160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_saturn_ionosphere::1.0","title":"Saturn Ionosphere Bundle","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/bundle_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:28.108019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_saturn_ionosphere:context::1.1","title":"Saturn Ionosphere Context Collection","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/collection_context_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:29.020162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_saturn_ionosphere:data_derived::1.1","title":"Saturn Ionosphere Observations Collection","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/collection_data_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:30.017697","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_saturn_ionosphere:schema::1.0","title":"Saturn Ionosphere Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/collection_schema_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:31.020923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Bundle","description":"Molecular hydrogen and temperature profiles of Saturn's \n thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","Co","ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/bundle_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:32.025170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:context::1.1","title":"Structure of Saturn's Thermosphere from Stellar Occultations Context Collection","description":"Molecular hydrogen and temperature profiles of Saturn's \n thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/collection_context_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:33.028003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:data::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Derived Data Collection","description":"Molecular hydrogen and temperature profiles of Saturn's \n thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/collection_data_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:34.025750","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:schema::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/collection_schema_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:35.025138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_titan_ionosphere::1.0","title":"Titan Ionosphere Bundle","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Co","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/bundle_corss_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:36.049275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_titan_ionosphere:context::1.0","title":"Titan Ionosphere Context Collection","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/collection_context_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:37.097051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_titan_ionosphere:data_derived::1.1","title":"Titan Ionosphere Observations Collection","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/collection_data_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:38.071746","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corss_titan_ionosphere:schema::1.0","title":"Titan Ionosphere Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/collection_schema_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:39.120457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corsstpp::2.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Bundle","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Co","cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/bundle_corsstpp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:40.050210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corsstpp:context::1.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Context Collection","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/collection_corsstppcontext.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:41.041363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corsstpp:data_derived::2.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Derived Data Collection","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/collection_corsstppdata.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:42.044746","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:corsstpp:schema::1.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/collection_corsstpp_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:43.047548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg_uvs::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) for VG Bundle","description":"This version of the Ultraviolet Spectrometer (UVS) for Voyager (VG) bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["Uvs","Uvs","UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2","Vg1","Vg2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/bundle_vguvs.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:44.048340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg_uvs:calibration::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) Calibration Collection","description":"Calibration collection for Voyager 1 UVS and Voyager 2 UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/calibration_vguvs_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:45.058097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg_uvs:context::1.0","title":"Voyager (VG) Ultraviolet Spectrometer Context Collection","description":"This PDS4 context_collection file was created in 2022","node":"atm","pds_version":"PDS4","type":"collection","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/context/collection_vguvs_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:46.057429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg_uvs:data_raw::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) Data collection","description":"Data collection for Voyager 1 UVS and Voyager 2 UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":"1977-08-20","stop_date":"1989-10-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/data_vguvs_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:47.062524","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg_uvs:xml_schema::1.0","title":"Voyager (VG) Ultraviolet Spectrometer XML_Schema Collection","description":"XML Schema collection for the Voyager UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/xml_schema/collection_vguvs_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:48.106949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voroelden::1.0","title":"Viking Orbiters 1 and 2 Radio Occultation Electron Density Document Collection","description":"Derived data products from Viking Orbiter 1 and 2 radio occultations at Mars and their accompanying documentation. \n Derived data products are electron density profiles from occultations.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Viking","Viking Orbiters 1 and 2"],"targets":["Mars"],"instruments":["Vo1","Vo2","Radio Science Subsystem"],"instrument_hosts":["Vo1","Vo2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/bundle_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:49.080837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voroelden:context::1.0","title":"Viking Orbiter 1 and 2 Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking","Viking Orbiter"],"targets":["Mars"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Vo1","Vo2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/collection_context_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:50.129915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voroelden:data_derived::1.0","title":"Viking Orbiters 1 and 2 Radio Occultation Electron Density Derived Data Collection","description":"Derived data products from Viking Orbiter 1 and 2 radio occultations at Mars. \n Derived data products are electron density profiles from occultations.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking","Viking Orbiters 1 and 2"],"targets":["Mars"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Vo1","Vo2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/collection_voroelden_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:51.062895","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voroelden:xml_schema::1.0","title":"Viking Orbiter 1 and 2 Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Vo1","Vo2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/collection_schema_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:52.070351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:wt_threshold_speed::1.0","title":"Wind Tunnel Threshold Speed Document Bundle","description":"Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Wt Threshold","Planetary Aeolian Laboratory Wind Tunnel Threshold Speed"],"targets":["Mars","Venus","Titan","Earth","Mars Analog","Venus Analog","Titan Analog","Earth Analog"],"instruments":["Marswit","Twt","Vwt","Cwt","Isuwt","Awtsi 2004","Awtsii 2010","Sloped Wt","Tewt","Bagnold Wt","Chepil Wt","Guelph Wt","Belly Wt","Darwish Wt","Shapotou Wt","Logie Wt","Pietersma Portable Wt","Butterfield Wt","Ice Wt","Dunhuang Portable Wt","Usda Ars Wt","Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/bundle_wt_threshold_speed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:53.067820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:wt_threshold_speed:context::1.0","title":"Wind Tunnel Threshold Speed Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Wt Threshold","Planetary Boundary Layer Wind Tunnel Particle Threshold"],"targets":["Mars","Venus","Titan","Earth","Mars Analog","Venus Analog","Titan Analog","Earth Analog"],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/collection_wt_threshold_speed_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:54.070977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:wt_threshold_speed:data::1.0","title":"Wind Tunnel Threshold Speed Document Collection","description":"Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels","node":"atm","pds_version":"PDS4","type":"collection","missions":["Wt Threshold","Planetary Boundary Layer Wind Tunnel Particle Threshold"],"targets":["Mars","Venus","Titan","Earth","Mars Analog","Venus Analog","Titan Analog","Earth Analog"],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/collection_wt_threshold_speed_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:55.070916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/geo_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/geo_catalog.jsonl new file mode 100644 index 0000000..5e69829 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/geo_catalog.jsonl @@ -0,0 +1,725 @@ +{"id":"A12A-L-SWS-3-SOLAR-WIND-28S-RES-V1.0","title":"A12A-L-SWS-3-SOLAR-WIND-28S-RES-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a12sws.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.920840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A12A-L-SWS-4-SOLAR-WIND-1HR-AVG-V1.0","title":"A12A-L-SWS-4-SOLAR-WIND-1HR-AVG-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a12sws.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.920887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A14A-L-CCIG-3-ATMOS-DENSITY-PLOTS-V1.0","title":"A14A-L-CCIG-3-ATMOS-DENSITY-PLOTS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a14ccig.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.920912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A15A-L-CCIG-3-ATMOS-DENSITY-PLOTS-V1.0","title":"A15A-L-CCIG-3-ATMOS-DENSITY-PLOTS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a15ccig.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.920926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A15A-L-SWS-3-SOLAR-WIND-28S-RES-V1.0","title":"A15A-L-SWS-3-SOLAR-WIND-28S-RES-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a15sws.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.920940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A15A-L-SWS-4-SOLAR-WIND-1HR-AVG-V1.0","title":"A15A-L-SWS-4-SOLAR-WIND-1HR-AVG-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a15sws.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.920952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A15C-L-XRFS-2-SURFACE-XRAY-COUNTS-V1.0","title":"A15C-L-XRFS-2-SURFACE-XRAY-COUNTS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a15xrfs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.920966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A15A-L-HFE-3-THERMAL-CONDUCTIVITY-V1.0","title":"A15A-L-HFE-3-THERMAL-CONDUCTIVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a15hfe.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.920988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A16C-L-XRFS-2-SURFACE-XRAY-COUNTS-V1.0","title":"A16C-L-XRFS-2-SURFACE-XRAY-COUNTS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a16xrfs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A17L-L-TG-2-TRAVERSE-GRAVITY-V1.0","title":"A17L-L-TG-2-TRAVERSE-GRAVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a17tg.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"A17A-L-HFE-3-THERMAL-CONDUCTIVITY-V1.0","title":"A17A-L-HFE-3-THERMAL-CONDUCTIVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/apollo/a17hfe.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"BUGLAB-E-BUG-4-V1.0","title":"BUGLAB-E-BUG-4-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/labdata/marsbug.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"BUGLAB-L-BUG-4-APOLLO-SAMPLES-V1.0","title":"BUGLAB-L-BUG-4-APOLLO-SAMPLES-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Apollo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/labdata/apollobug.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CH1-ORB-L-MRFFR-1-PDR-V1.0","title":"CH1-ORB-L-MRFFR-1-PDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Chandrayaan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/chandrayaan1/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CH1-ORB-L-MRFFR-4-CDR-V1.0","title":"CH1-ORB-L-MRFFR-4-CDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Chandrayaan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/chandrayaan1/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CH1-ORB-L-MRFFR-5-CDR-MAP-V1.0","title":"CH1-ORB-L-MRFFR-5-CDR-MAP-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Chandrayaan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/chandrayaan1/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CH1-ORB-L-MRFFR-5-CDR-MOSAIC-V1.0","title":"CH1-ORB-L-MRFFR-5-CDR-MOSAIC-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Chandrayaan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/chandrayaan1/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CLEM1-L-LIDAR-5-TOPO-V1.0","title":"CLEM1-L-LIDAR-5-TOPO-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Clementine"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/clementine/gravtopo.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CLEM1-L-RSS-5-GRAVITY-V1.0","title":"CLEM1-L-RSS-5-GRAVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Clementine"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/clementine/gravtopo.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CLEM1-L-LIDAR-3-TOPO-V1.0","title":"CLEM1-L-LIDAR-3-TOPO-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Clementine"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/clementine/lidar.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CLEM1-L-RSS-1-BSR-V1.0","title":"CLEM1-L-RSS-1-BSR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Clementine"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/clementine/rawrs.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CLEM1-L-RSS-5-BSR-V1.0","title":"CLEM1-L-RSS-5-BSR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Clementine"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/clementine/reducedrs.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CLEM1-L-LWIR-3-RDR-V1.0","title":"CLEM1-L-LWIR-3-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Clementine"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/clementine/lwir.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GRAIL-L-LGRS-2-EDR-V1.0","title":"GRAIL-L-LGRS-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["GRAIL"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grail/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GRAIL-L-LGRS-3-CDR-V1.0","title":"GRAIL-L-LGRS-3-CDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["GRAIL"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grail/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GRAIL-L-RSS-2-EDR-V1.0","title":"GRAIL-L-RSS-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["GRAIL"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grail/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GRAIL-L-LGRS-5-RDR-V1.0","title":"GRAIL-L-LGRS-5-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["GRAIL"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grail/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"C130-E-ASAS-3-RDR-IMAGE-V1.0","title":"C130-E-ASAS-3-RDR-IMAGE-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ER2-E-AVIR-3-RDR-IMAGE-V1.0","title":"ER2-E-AVIR-3-RDR-IMAGE-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NDC8-E-ASAR-3-RDR-IMAGE-V1.0","title":"NDC8-E-ASAR-3-RDR-IMAGE-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-AWND-3-RDR-TEMP-VELOCITY-V1.0","title":"FEXP-E-AWND-3-RDR-TEMP-VELOCITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-DAED-3-RDR-SPECTRUM-V1.0","title":"FEXP-E-DAED-3-RDR-SPECTRUM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-GPSM-5-RDR-TOPOGRAPHIC-PROF-V1.0","title":"FEXP-E-GPSM-5-RDR-TOPOGRAPHIC-PROF-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-HSTP-4-RDR-TOPOGRAPHIC-PROF-V1.0","title":"FEXP-E-HSTP-4-RDR-TOPOGRAPHIC-PROF-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-PARB-3-RDR-SPECTRUM-V1.0","title":"FEXP-E-PARB-3-RDR-SPECTRUM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-PFES-3-RDR-SPECTRUM-V1.0","title":"FEXP-E-PFES-3-RDR-SPECTRUM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"THRM-3-RDR-TEMPERATURE-V1.0","title":"FEXP-E-RMTR/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-REAG-3-RDR-OPT-DEP-V1.0","title":"FEXP-E-REAG-3-RDR-OPT-DEP-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-SIRS-4-RDR-SPECTRUM-V1.0","title":"FEXP-E-SIRS-4-RDR-SPECTRUM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-SHYG-3-RDR-OPT-DEP-V1.0","title":"FEXP-E-SHYG-3-RDR-OPT-DEP-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"C130-E-TIMS-2-EDR-IMAGE-V1.0","title":"C130-E-TIMS-2-EDR-IMAGE-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"FEXP-E-WTHS-3-RDR-TEMP-VELOCITY-V1.0","title":"FEXP-E-WTHS-3-RDR-TEMP-VELOCITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/grsfe/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-WFPC2-3-V1.0","title":"HST-M-WFPC2-3-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/earthbased/hst_cornell.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"KAGUYA-L-SP-5-SPECTRA-V1.0","title":"KAGUYA-L-SP-5-SPECTRA-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["SELENE/Kaguya"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/kaguya/spectral_profiler.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-MIR1-2-RAW-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-MIR1-3-CAL-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-MIR2-2-RAW-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-MIR2-3-CAL-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NIR1-2-RAW-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NIR1-3-CAL-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NIR2-2-RAW-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NIR2-3-CAL-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NSP1-2-PREHAD-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NSP1-2-RAW-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NSP1-3-CAL-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NSP1-FL-2-RAW-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-NSP1-FL-3-CAL-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-VIS-2-RAW-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-VSP-2-RAW-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"L-VSP-3-CAL-V1.0","title":"LCROSS-E/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LCROSS-L-TLP-2-RAW-V1.0","title":"LCROSS-L-TLP-2-RAW-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LCROSS-L-TLP-3-CAL-V1.0","title":"LCROSS-L-TLP-3-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LCROSS-X-NSP2-2-PREHAD-V1.0","title":"LCROSS-X-NSP2-2-PREHAD-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LCROSS-X-NSP2-2-RAW-V1.0","title":"LCROSS-X-NSP2-2-RAW-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LCROSS-X-NSP2-3-CAL-V1.0","title":"LCROSS-X-NSP2-3-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LCROSS-X-NSP2-FL-2-RAW-V1.0","title":"LCROSS-X-NSP2-FL-2-RAW-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LCROSS-X-NSP2-FL-3-CAL-V1.0","title":"LCROSS-X-NSP2-FL-3-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"AGILE-2-EDR-LCROSS-V1.0","title":"EAR-L-APO35M/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CCD47-2-EDR-LCROSS-V1.0","title":"EAR-L-MMTO/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CLIO-2-EDR-LCROSS-V1.0","title":"EAR-L-MMTO/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CLIO-3-CDR-LCROSS-V1.0","title":"EAR-L-MMTO/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHOTDOC-2-EDR-LCROSS-V1.0","title":"EAR-L-MRO24M/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter","LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHOTGJON-2-EDR-LCROSS-V1.0","title":"EAR-L-MRO24M/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter","LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lcross/default.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-6-EPHEMERIS-V1.0","title":"LP-L-6-EPHEMERIS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/level0.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-6-POSITION-V1.0","title":"LP-L-6-POSITION-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/level0.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ENG-6-ATTITUDE-V1.0","title":"LP-L-ENG-6-ATTITUDE-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/level0.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ENG-6-COMMAND-V1.0","title":"LP-L-ENG-6-COMMAND-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/level0.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-GRS-3-RDR-V1.0","title":"LP-L-GRS-3-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/reduced_grsns.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-NS-3-RDR-V1.0","title":"LP-L-NS-3-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/reduced_grsns.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-GRS-5-ELEM-ABUNDANCE-V1.0","title":"LP-L-GRS-5-ELEM-ABUNDANCE-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/grs_elem_abundance.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-RSS-5-GRAVITY-V1.0","title":"LP-L-RSS-5-GRAVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/shadr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-RSS-5-LOS-V1.0","title":"LP-L-RSS-5-LOS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarp/los.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-DLRE-2-EDR-V1.0","title":"LRO-L-DLRE-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/diviner.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-DLRE-4-RDR-V1.0","title":"LRO-L-DLRE-4-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/diviner.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.921995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-DLRE-5-GDR-V1.0","title":"LRO-L-DLRE-5-GDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/diviner.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-DLRE-5-GCP-V1.0","title":"LRO-L-DLRE-5-GCP-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/diviner.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-DLRE-5-PRP-V2.0","title":"LRO-L-DLRE-5-PRP-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/diviner.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LEND-2-EDR-V1.0","title":"LRO-L-LEND-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/lend.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LOLA-2-EDR-V1.0","title":"LRO-L-LOLA-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/lola.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LOLA-3-RDR-V1.0","title":"LRO-L-LOLA-3-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/lola.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LOLA-3-RADR-V1.0","title":"LRO-L-LOLA-3-RADR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/lola.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LOLA-4-GDR-V1.0","title":"LRO-L-LOLA-4-GDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/lola.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LOLA-5-SHADR-V1.0","title":"LRO-L-LOLA-5-SHADR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/lola.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-1-PDR-V1.0","title":"LRO-L-MRFLRO-1-PDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/mrf.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-4-CDR-INSAR-V1.0","title":"LRO-L-MRFLRO-4-CDR-INSAR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/mrf.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-4-CDR-V1.0","title":"LRO-L-MRFLRO-4-CDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/mrf.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-5-CDR-MAP-V1.0","title":"LRO-L-MRFLRO-5-CDR-MAP-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/mrf.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-5-CDR-MOSAIC-V1.0","title":"LRO-L-MRFLRO-5-CDR-MOSAIC-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/mrf.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-2_3-5-BISTATIC-V3.0","title":"LRO-L-MRFLRO-2_3-5-BISTATIC-V3.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/mrf.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-2_3-5-BISTATIC-V2.0","title":"LRO-L-MRFLRO-2_3-5-BISTATIC-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/mrf.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-5-GLOBAL-MOSAIC-V1.0","title":"LRO-L-MRFLRO-5-GLOBAL-MOSAIC-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/mrf.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-RSS-1-TRACKING-V1.0","title":"LRO-L-RSS-1-TRACKING-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lro/rss.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-2-ALT-EDR-V1.0","title":"MGN-V-RDRS-2-ALT-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/altedr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-BIDR-FULL-RES-V1.0","title":"MGN-V-RDRS-5-BIDR-FULL-RES-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/fbidr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-C-BIDR-V1.0","title":"MGN-V-RDRS-5-C-BIDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/cbidr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-GDR-EMISSIVITY-V1.0","title":"MGN-V-RDRS-5-GDR-EMISSIVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/gxdr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-GDR-REFLECTIVITY-V1.0","title":"MGN-V-RDRS-5-GDR-REFLECTIVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/gxdr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-GDR-SLOPE-V1.0","title":"MGN-V-RDRS-5-GDR-SLOPE-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/gxdr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-GDR-TOPOGRAPHIC-V1.0","title":"MGN-V-RDRS-5-GDR-TOPOGRAPHIC-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/gxdr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-GVDR-V1.0","title":"MGN-V-RDRS-5-GVDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/gvdr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-MIDR-C1-V1.0","title":"MGN-V-RDRS-5-MIDR-C1-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/c123midr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-MIDR-C2-V1.0","title":"MGN-V-RDRS-5-MIDR-C2-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/c123midr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-MIDR-C3-V1.0","title":"MGN-V-RDRS-5-MIDR-C3-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/c123midr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-MIDR-FULL-RES-V1.0","title":"MGN-V-RDRS-5-MIDR-FULL-RES-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/fmidr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-SCVDR-V1.0","title":"MGN-V-RDRS-5-SCVDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/scvdr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RDRS-5-TOPO-L2-V1.0","title":"MGN-V-RDRS-5-TOPO-L2-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/shadr_topo_grav/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RSS-1-BSR-V1.0","title":"MGN-V-RSS-1-BSR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/bistatic/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RSS-4-BSR-V1.0","title":"MGN-V-RSS-4-BSR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/bistatic/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RSS-1-TRACKING-V1.0","title":"MGN-V-RSS-1-TRACKING-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/radiotracking/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RSS-5-GRAVITY-L2-V1.0","title":"MGN-V-RSS-5-GRAVITY-L2-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/shadr_topo_grav/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RSS-5-LOSAPDR-L2-V1.0","title":"MGN-V-RSS-5-LOSAPDR-L2-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/losapdr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-V-RSS-5-LOSAPDR-L2-V1.13","title":"MGN-V-RSS-5-LOSAPDR-L2-V1.13","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/magellan/losapdr/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VO2-M-RSS-5-GRAVITY-V1.0","title":"MR9/VO1/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/viking/viking_mariner9/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VO2-M-RSS-5-SHGADR-L2-V1.0","title":"MR9/VO1/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/viking/viking_mariner9/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-E-REBELXT-7-IMAGE-MARS-ANALOG-V1.0","title":"EAR-E-REBELXT-7-IMAGE-MARS-ANALOG-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/labdata/marshandlens.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOC-4-SAMPLER-V1.0","title":"MGS-M-MOC-4-SAMPLER-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/sampler.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-1-AEDR-L0-V1.0","title":"MGS-M-MOLA-1-AEDR-L0-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/aedr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-3-PEDR-ASCII-V1.0","title":"MGS-M-MOLA-3-PEDR-ASCII-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/pedr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-3-PEDR-L1A-V1.0","title":"MGS-M-MOLA-3-PEDR-L1A-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/pedr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-3-PRDR-L1A-V1.0","title":"MGS-M-MOLA-3-PRDR-L1A-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/mola.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-5-IEGDR-L3-V1.0","title":"MGS-M-MOLA-5-IEGDR-L3-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/iegdr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-5-IEGDR-L3-V2.0","title":"MGS-M-MOLA-5-IEGDR-L3-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/iegdr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-5-MEGDR-L3-V1.0","title":"MGS-M-MOLA-5-MEGDR-L3-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/megdr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-5-PEDR-SAMPLER-V1.0","title":"MGS-M-MOLA-5-PEDR-SAMPLER-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/sampler.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-5-SHADR-V1.0","title":"MGS-M-MOLA-5-SHADR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/shadr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-RSS-1-CRU-V1.0","title":"MGS-M-RSS-1-CRU-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/rsraw.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-RSS-1-EXT-V1.0","title":"MGS-M-RSS-1-EXT-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/rsraw.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-RSS-1-MOI-V1.0","title":"MGS-M-RSS-1-MOI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/rsraw.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-RSS-1-MAP-V1.0","title":"MGS-M-RSS-1-MAP-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/rsraw.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-RSS-5-SDP-V1.0","title":"MGS-M-RSS-5-SDP-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/rsdata.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-TES-3-SAMPLER-V1.0","title":"MGS-M-TES-3-SAMPLER-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/sampler.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-TES-SPECIAL-V1.0","title":"MGS-M-TES-SPECIAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/tesspecial.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-TES-3-TSDR-V2.0","title":"MGS-M-TES-3-TSDR-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/tes.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-TES-5-SAMPLER-V1.0","title":"MGS-M-TES-5-SAMPLER-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mgs/sampler.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MPFL-M-IMP-5-3DPOSITION-V1.0","title":"MPFL-M-IMP-5-3DPOSITION-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mpf/imp3d.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-APXS-2-EDR-OPS-V1.0","title":"MER1-M-APXS-2-EDR-OPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-APXS-2-EDR-OPS-V1.0","title":"MER2-M-APXS-2-EDR-OPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-APXS-2-XRAYSPEC-SCI-V1.0","title":"MER1-M-APXS-2-XRAYSPEC-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-APXS-2-XRAYSPEC-SCI-V1.0","title":"MER2-M-APXS-2-XRAYSPEC-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-APXS-5-OXIDE-SCI-V1.0","title":"MER1/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/mer_apxs_oxide.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-ENG-6-RMC-OPS-V1.0","title":"MER1-M-ENG-6-RMC-OPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-ENG-6-RMC-OPS-V1.0","title":"MER2-M-ENG-6-RMC-OPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MB-2-EDR-OPS-V1.0","title":"MER1-M-MB-2-EDR-OPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MB-2-EDR-OPS-V1.0","title":"MER2-M-MB-2-EDR-OPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MB-4-SUMSPEC-SCI-V1.0","title":"MER1-M-MB-4-SUMSPEC-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MB-4-SUMSPEC-SCI-V1.0","title":"MER2-M-MB-4-SUMSPEC-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MB-5-FE-ABUNDANCE-V1.0","title":"MER1/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/mer_fe_abundance.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MI-2-EDR-SCI-V1.0","title":"MER1-M-MI-2-EDR-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MI-2-EDR-SCI-V1.0","title":"MER2-M-MI-2-EDR-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MI-3-RDR-SCI-V1.0","title":"MER1-M-MI-3-RDR-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MI-3-RDR-SCI-V1.0","title":"MER2-M-MI-3-RDR-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MTES-2-EDR-V1.0","title":"MER1-M-MTES-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MTES-2-EDR-V1.0","title":"MER2-M-MTES-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MTES-3-RDR-V1.0","title":"MER1-M-MTES-3-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MTES-3-RDR-V1.0","title":"MER2-M-MTES-3-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MTES-4-BTR-V1.0","title":"MER1-M-MTES-4-BTR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MTES-4-BTR-V1.0","title":"MER2-M-MTES-4-BTR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MTES-4-EMR-V1.0","title":"MER1-M-MTES-4-EMR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MTES-4-EMR-V1.0","title":"MER2-M-MTES-4-EMR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-NAVCAM-3-RADIOMETRIC-SCI-V1.0","title":"MER1-M-NAVCAM-3-RADIOMETRIC-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-NAVCAM-3-RADIOMETRIC-SCI-V1.0","title":"MER2-M-NAVCAM-3-RADIOMETRIC-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-PANCAM-2-EDR-SCI-V1.0","title":"MER1-M-PANCAM-2-EDR-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-PANCAM-2-EDR-SCI-V1.0","title":"MER2-M-PANCAM-2-EDR-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-PANCAM-3-RADCAL-SCI-V2.0","title":"MER1-M-PANCAM-3-RADCAL-SCI-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.922995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-PANCAM-3-RADCAL-SCI-V2.0","title":"MER2-M-PANCAM-3-RADCAL-SCI-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-PANCAM-5-COLOR-MOSAICS-SCI-V1.0","title":"MER1-M-PANCAM-5-COLOR-MOSAICS-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-PANCAM-5-COLOR-MOSAICS-SCI-V1.0","title":"MER2-M-PANCAM-5-COLOR-MOSAICS-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-PANCAM-3-IOFCAL-SCI-V1.0","title":"MER1-M-PANCAM-3-IOFCAL-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-PANCAM-3-IOFCAL-SCI-V2.0","title":"MER1-M-PANCAM-3-IOFCAL-SCI-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-PANCAM-3-IOFCAL-SCI-V1.0","title":"MER2-M-PANCAM-3-IOFCAL-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-PANCAM-3-IOFCAL-SCI-V2.0","title":"MER2-M-PANCAM-3-IOFCAL-SCI-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-PANCAM-5-ATMOS-OPACITY-V1.0","title":"MER1/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-RSS-1-EDR-V1.0","title":"MER1-M-RSS-1-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923092","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-RSS-1-EDR-V1.0","title":"MER2-M-RSS-1-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-RAT-2-EDR-OPS-V1.0","title":"MER1-M-RAT-2-EDR-OPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-RAT-2-EDR-OPS-V1.0","title":"MER2-M-RAT-2-EDR-OPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mer/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-V1.0","title":"MEX-M-ASPERA3-2-EDR-ELS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/aspera.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-V1.0","title":"MEX-M-ASPERA3-3-RDR-ELS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/aspera.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-V1.0","title":"MEX-M-ASPERA3-2-EDR-IMA-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/aspera.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT1-V1.0","title":"MEX-M-ASPERA3-5-DDR-IMA-EXT1-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/aspera.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-SUN-ASPERA3-4-SWM-V1.0","title":"MEX-SUN-ASPERA3-4-SWM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/aspera.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-HRSC-3-RDR-V4.0","title":"MEX-M-HRSC-3-RDR-V4.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/hrsc.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-HRSC-5-REFDR-MAPPROJECTED-V3.0","title":"MEX-M-HRSC-5-REFDR-MAPPROJECTED-V3.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/hrsc.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-HRSC-5-REFDR-DTM-V1.0","title":"MEX-M-HRSC-5-REFDR-DTM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/hrsc.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-HRSC-4-DDR-CLOUDS-V1.0","title":"MEX-M-HRSC-4-DDR-CLOUDS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/hrsc.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MRS-5-OCC-V1.0","title":"MEX-M-MRS-5-OCC-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/mars.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MRS-5-OCC-9101-V2.0","title":"MEX-M-MRS-5-OCC-9101-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/mars.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-V1.0","title":"MEX-M-MARSIS-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/marsis.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-5-DDR-SS-TEC-V1.0","title":"MEX-M-MARSIS-5-DDR-SS-TEC-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/marsis.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-5-DDR-SS-TEC-EXT1-V1.0","title":"MEX-M-MARSIS-5-DDR-SS-TEC-EXT1-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/marsis.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-V1.0","title":"MEX-M-MARSIS-3-RDR-SS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/marsis.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-V1.0","title":"MEX-M-MARSIS-3-RDR-AIS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/marsis.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-OMEGA-2-EDR-FLIGHT-V1.0","title":"MEX-M-OMEGA-2-EDR-FLIGHT-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/omega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-OMEGA-5-DDR-GLOBAL-MAPS-V1.0","title":"MEX-M-OMEGA-5-DDR-GLOBAL-MAPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/omega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-OMEGA-4-DDR-PROF-V1.0","title":"MEX-M-OMEGA-4-DDR-PROF-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/omega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-OMEGA-5-DDR-H2OCLOUDS-MAPS-V1.0","title":"MEX-M-OMEGA-5-DDR-H2OCLOUDS-MAPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/omega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-PFS-2-EDR-NOMINAL-V1.0","title":"MEX-M-PFS-2-EDR-NOMINAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/pfs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-PFS-5-DDR-MAPS-V1.0","title":"MEX-M-PFS-5-DDR-MAPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/pfs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-Y-M-SPI-2-IREDR-RAWXCRU-MARS-V2.0","title":"MEX-Y-M-SPI-2-IREDR-RAWXCRU-MARS-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/spicam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-SPI-2-IRRDR-CLEANED-V1.0","title":"MEX-M-SPI-2-IRRDR-CLEANED-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/spicam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-Y-M-SPI-2-UVEDR-RAWXCRU-MARS-V2.0","title":"MEX-Y-M-SPI-2-UVEDR-RAWXCRU-MARS-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/spicam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-SPI-2-UVRDR-CLEANED-V1.0","title":"MEX-M-SPI-2-UVRDR-CLEANED-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/spicam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-SPI-4-IRDDR-PROF-V1.0","title":"MEX-M-SPI-4-IRDDR-PROF-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/spicam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-SPI-4-UVDDR-PROF-V1.0","title":"MEX-M-SPI-4-UVDDR-PROF-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/spicam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-VMC-2-EDR-V1.0","title":"MEX-M-VMC-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/vmc.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-VMC-3-RDR-V1.0","title":"MEX-M-VMC-3-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mars_express/vmc.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-2-EDR-V1.0","title":"MRO-M-CRISM-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/crism.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-3-RDR-TARGETED-V1.0","title":"MRO-M-CRISM-3-RDR-TARGETED-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/crism.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-4-TYPESPEC-V1.0","title":"MRO-M-CRISM-4-TYPESPEC-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"http://crismtypespectra.rsl.wustl.edu/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-6-DDR-V1.0","title":"MRO-M-CRISM-6-DDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/crism.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-6-LDR-V1.0","title":"MRO-M-CRISM-6-LDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/crism.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-5-RDR-MULTISPECTRAL-V1.0","title":"MRO-M-CRISM-5-RDR-MULTISPECTRAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/crism.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-4-RDR-TARGETED-V1.0","title":"MRO-M-CRISM-4-RDR-TARGETED-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/crism.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-5-RDR-MPTARGETED-V1.0","title":"MRO-M-CRISM-5-RDR-MPTARGETED-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/crism.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-5-RDR-VNIRHYPERSPECTRAL-V1.0","title":"MRO-M-CRISM-5-RDR-VNIRHYPERSPECTRAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/crism.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-RSS-1-MAGR-V1.0","title":"MRO-M-RSS-1-MAGR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/gravity.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-RSS-5-SDP-V1.0","title":"MRO-M-RSS-5-SDP-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/gravity.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-SHARAD-3-EDR-V1.0","title":"MRO-M-SHARAD-3-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/sharad.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-SHARAD-4-RDR-V1.0","title":"MRO-M-SHARAD-4-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/sharad.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-SHARAD-5-RADARGRAM-V1.0","title":"MRO-M-SHARAD-5-RADARGRAM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/sharad.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-SHARAD-5-RADARGRAM-V2.0","title":"MRO-M-SHARAD-5-RADARGRAM-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/mro/sharad.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-APXS-2-EDR-V1.0","title":"MSL-M-APXS-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/apxs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMCAM-LIBS-2-EDR-V1.0","title":"MSL-M-CHEMCAM-LIBS-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/chemcam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMCAM-RMI-2-EDR-V1.0","title":"MSL-M-CHEMCAM-RMI-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/chemcam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMCAM-SOH-2-EDR-V1.0","title":"MSL-M-CHEMCAM-SOH-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/chemcam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMCAM-RMI-5-RDR-V1.0","title":"MSL-M-CHEMCAM-RMI-5-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/chemcam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMIN-2-EDR-V1.0","title":"MSL-M-CHEMIN-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/chemin.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMIN-4-RDR-V1.0","title":"MSL-M-CHEMIN-4-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/chemin.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMIN-5-RDR-V1.0","title":"MSL-M-CHEMIN-5-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/chemin.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-DAN-2-EDR-V1.0","title":"MSL-M-DAN-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/dan.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-SAM-2-EDR-V1.0","title":"MSL-M-SAM-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/sam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-SAM-2-RDR-L0-V1.0","title":"MSL-M-SAM-2-RDR-L0-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/sam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-SAM-3-RDR-L1A-V1.0","title":"MSL-M-SAM-3-RDR-L1A-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/sam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-SAM-4-RDR-L1B-V1.0","title":"MSL-M-SAM-4-RDR-L1B-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/sam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-SAM-5-RDR-L2-V1.0","title":"MSL-M-SAM-5-RDR-L2-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/msl/sam.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MK88-L-120CVF-3-RDR-120COLOR-V1.0","title":"MK88-L-120CVF-3-RDR-120COLOR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/lunarspec/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-GRNS-2-GRS-RAWDATA-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/grns.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.923997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-GRNS-3-GRS-CDR-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/grns.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-GRNS-5-GRS-DAP-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/grns.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-GRNS-2-NS-RAWDATA-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/grns.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-GRNS-3-NS-CDR-V2.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/grns.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-GRNS-4-NS-DDR-V2.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/grns.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-2-UVVS-EDR-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-2-VIRS-EDR-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-3-UVVS-CDR-CALDATA-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-3-VIRS-CDR-CALDATA-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-4-UVVS-DDR-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-4-VIRS-DDR-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-4-VIRS-DDR-V2.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-5-VIRS-DAP-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MASCS-5-VIRS-DAP-V2.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mascs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MLA-2-EDR-RAWDATA-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mla.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MLA-4-GDR-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mla.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-MLA-4-GDR-V2.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/mla.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-XRS-2-EDR-RAWDATA-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/xrs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-XRS-3-CDR-SPECTRA-V1.0","title":"MESS-E/V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/xrs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-H-XRS-3-RDR-MAPS-V1.0","title":"MESS-H-XRS-3-RDR-MAPS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/xrs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"H-RSS-1-EDR-RAWDATA-V1.0","title":"MESS-V/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/rs.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSGR-H-EPS-6-CAL-V1.0","title":"MSGR-H-EPS-6-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/groundcal.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSGR-H-FIPS-6-CAL-V1.0","title":"MSGR-H-FIPS-6-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/groundcal.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSGR-H-GRS-6-CAL-V1.0","title":"MSGR-H-GRS-6-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/groundcal.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSGR-H-MAG-6-CAL-V1.0","title":"MSGR-H-MAG-6-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/groundcal.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSGR-H-MASCS-6-CAL-V1.0","title":"MSGR-H-MASCS-6-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/groundcal.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSGR-H-MDIS-6-CAL-V1.0","title":"MSGR-H-MDIS-6-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/groundcal.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSGR-H-MLA-6-CAL-V1.0","title":"MSGR-H-MLA-6-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/groundcal.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSGR-H-XRS-6-CAL-V1.0","title":"MSGR-H-XRS-6-CAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/messenger/groundcal.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-NLR-6-EROS-MAPS-MODELS-V1.0","title":"NEAR-A-NLR-6-EROS-MAPS-MODELS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["NEAR Shoemaker"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/near/nlr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-2-EDR-V1.0","title":"ODY-M-GRS-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grs_edr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-4-CGS-V1.0","title":"ODY-M-GRS-4-CGS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grs_cgs.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-5-SGS-V1.0","title":"ODY-M-GRS-5-SGS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grs_sgs.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-4-DND-V2.0","title":"ODY-M-GRS-4-DND-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grs_dnd.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-5-AND-V2.0","title":"ODY-M-GRS-5-AND-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grs_and.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-4-DHD-V1.0","title":"ODY-M-GRS-4-DHD-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grs_dhd.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-5-AHD-V1.0","title":"ODY-M-GRS-5-AHD-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grs_ahd.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-5-ELEMENTS-V1.0","title":"ODY-M-GRS-5-ELEMENTS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grs_elements.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-GRS-SPECIAL-V1.0","title":"ODY-M-GRS-SPECIAL-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/grsspecial.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-RSS-1-RAW-V1.0","title":"ODY-M-RSS-1-RAW-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/odyssey/radioscience.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-MECA-2-NIEDR-V1.0","title":"PHX-M-MECA-2-NIEDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/meca.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-MECA-4-NIRDR-V1.0","title":"PHX-M-MECA-4-NIRDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/meca.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-RA-4-RDR-SCI-V1.0","title":"PHX-M-RA-4-RDR-SCI-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/ra.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-2-EGAEDR-V1.0","title":"PHX-M-TEGA-2-EGAEDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-2-EGHEDR-V1.0","title":"PHX-M-TEGA-2-EGHEDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-2-ENGEDR-V1.0","title":"PHX-M-TEGA-2-ENGEDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-2-LEDEDR-V1.0","title":"PHX-M-TEGA-2-LEDEDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-2-MSGEDR-V1.0","title":"PHX-M-TEGA-2-MSGEDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-2-SCEDR-V1.0","title":"PHX-M-TEGA-2-SCEDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-4-EGHRDR-V1.0","title":"PHX-M-TEGA-4-EGHRDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-4-EGSRDR-V1.0","title":"PHX-M-TEGA-4-EGSRDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-3-ENGRDR-V1.0","title":"PHX-M-TEGA-3-ENGRDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHX-M-TEGA-4-SCRDR-V1.0","title":"PHX-M-TEGA-4-SCRDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/phoenix/tega.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NDC8-E-ASAR-4-RADAR-V1.0","title":"NDC8-E-ASAR-4-RADAR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ARCB-L-RTLS-3-70CM-V1.0","title":"ARCB-L-RTLS-3-70CM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ARCB-L-RTLS-4-70CM-V1.0","title":"ARCB-L-RTLS-4-70CM-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GSSR-M-RTLS-5-MODEL-V1.0","title":"ARCB/","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924616","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GSSR-M-RTLS-5-ALT-V1.0","title":"GSSR-M-RTLS-5-ALT-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GSSR-H-RTLS-4-ALT-V1.0","title":"GSSR-H-RTLS-4-ALT-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P12-V-ORAD-5-BACKSCATTER-V1.0","title":"P12-V-ORAD-5-BACKSCATTER-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P12-V-ORAD-5-RADAR-IMAGE-V1.0","title":"P12-V-ORAD-5-RADAR-IMAGE-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P12-V-RSS-4-LOS-GRAVITY-V1.0","title":"P12-V-RSS-4-LOS-GRAVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/premgn/index.htm","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VO2-M-RSS-4-LOS-GRAVITY-V1.0","title":"VO2-M-RSS-4-LOS-GRAVITY-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/viking/gravity.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VL2-M-LCS-2-EDR-V1.0","title":"VL2-M-LCS-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/vlander/images.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VL2-M-LCS-5-ROCKS-V1.0","title":"VL2-M-LCS-5-ROCKS-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/vlander/rocks.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VL2-M-LR-2-EDR-V1.0","title":"VL2-M-LR-2-EDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/vlander/lr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VL2-M-SEIS-5-RDR-V1.0","title":"VL2-M-SEIS-5-RDR-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/vlander/seismic.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VO2-M-IRTM-4-V1.0","title":"VO2-M-IRTM-4-V1.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/viking/irtm.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VO2-M-VIS-2-EDR-V2.0","title":"VO2-M-VIS-2-EDR-V2.0","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/missions/viking/visedr.html","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:43.924775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars_target_encyclopedia::3.1","title":"Mars Target Encyclopedia Database Bundle","description":"Information for how to cite the MTE bundle.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover","Mars Pathfinder","Phoenix","Mars Exploration Rovers","Mars Phoenix"],"targets":["Mars"],"instruments":["Mer2","Mer2","Mer2","Mer2","Mer2","Mer2","Mer2","Mer2","Mer1","Mer1","Mer1","Mer1","Mer1","Mer1","Mer1","Mer1","Mpfl","Apxs","Phx","Panoramic Camera","Navigation Camera","Microscopic Imager","Hazard Avoidance Camera","Alpha Particle X-ray Spectrometer","MOESSBAUER SPECTROMETER","Miniature Thermal Emission Spectrometer","Rock Abrasion Tool","MOESSBAUER Spectrometer","Imager for Mars Pathfinder","Alpha Proton X-ray Spectrometer","Thermal Evolved Gas Analyzer"],"instrument_hosts":["Mars Exploration Rover 2","Mars Exploration Rover 1","Mars Pathfinder Lander","Mars Pathfinder Rover","Mars Phoenix","Mer2","Mer1","Mpfl","Mpfr","Phx"],"data_types":[],"start_date":"1998-03-01","stop_date":"2020-03-01","browse_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/bundle_mars_target_encyclopedia.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:45.028873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars_target_encyclopedia:data_mer1::1.0","title":"Mars Target Encyclopedia MER-1 Collection","description":"MER-1 collection for the Mars Target Encyclopedia bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Panoramic Camera","Navigation Camera","Microscopic Imager","Hazard Avoidance Camera","Alpha Particle X-ray Spectrometer","MOESSBAUER Spectrometer","Miniature Thermal Emission Spectrometer","Rock Abrasion Tool"],"instrument_hosts":["Mars Exploration Rover 1"],"data_types":["Data"],"start_date":"1997-07-04","stop_date":"2020-03-16","browse_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/data_mer/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/data_mer/collection_mer1_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:45.995570","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars_target_encyclopedia:data_mpf::1.3","title":"Mars Target Encyclopedia MPF Collection","description":"MPF collection for the Mars Target Encyclopedia bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Pathfinder"],"targets":["Mars"],"instruments":["Imager for Mars Pathfinder","Alpha Proton X-ray Spectrometer"],"instrument_hosts":["Mars Pathfinder Lander","Mars Pathfinder Rover"],"data_types":["Data"],"start_date":"1997-07-04","stop_date":"2020-03-16","browse_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/data_mpf/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/data_mpf/collection_mpf_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:47.009593","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars_target_encyclopedia:data_phx::1.3","title":"Mars Target Encyclopedia PHX Collection","description":"PHX collection for the Mars Target Encyclopedia bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Phoenix","Mars Phoenix"],"targets":["Mars"],"instruments":["Thermal Evolved Gas Analyzer"],"instrument_hosts":["Mars Phoenix"],"data_types":["Data"],"start_date":"1997-07-04","stop_date":"2020-03-16","browse_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/data_phx/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/data_phx/collection_phx_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:48.015724","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars_target_encyclopedia:document::1.3","title":"Mars Target Encyclopedia Document Collection","description":"Document collection for the Mars Target Encyclopedia bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","Mars Pathfinder","Phoenix","Mars Phoenix"],"targets":["Mars"],"instruments":["ChemCam","Imager for Mars Pathfinder","Alpha Proton X-ray Spectrometer"],"instrument_hosts":["MSL Curiosity Rover","Mars Pathfinder Lander","Mars Pathfinder Rover"],"data_types":["Document"],"start_date":"1998-03-01","stop_date":"2020-03-01","browse_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mars/urn-nasa-pds-mars_target_encyclopedia/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:48.997186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12side_ccig_raw_arcsav::1.0","title":"Apollo 12 ALSEP ARCSAV SIDE/CCIG Raw Cleaned ASCII Data Bundle","description":"This bundle contains fixed-width ASCII files of daily, raw cleaned measurements\n acquired by Suprathermal Ion Detector Experiment (SIDE) and the Cold Cathode Ion Gage\n Experiment (CCIG; also known as the Cold Cathode Gage Experiment) at the Apollo 12 landing\n site for the time span of 03 April through 01 July 1975. These data were extracted from NASA's\n original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV\n tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 12"],"targets":["Moon","MOON"],"instruments":["A12A","A12A","Apollo 12 Suprathermal Ion Detector Experiment","Apollo 12 Cold Cathode Ion Gage Experiment"],"instrument_hosts":["A12A"],"data_types":[],"start_date":"1975-04-03","stop_date":"1975-07-01","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12side_ccig_raw_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12side_ccig_raw_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:50.525843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12side_ccig_raw_arcsav:data::1.0","title":"Apollo 12 ALSEP ARCSAV SIDE/CCIG Raw Cleaned ASCII Data Collection (1975-093 to\n 1975-182)","description":"This collection contains fixed-width ASCII files of daily raw cleaned science and\n engineering measurements acquired by the Suprathermal Ion Detector Experiment (SIDE) and the\n Cold Cathode Ion Gage Experiment (CCIG; also known as the Cold Cathode Gage Experiment for the\n time span of 03 April through 01 July 1975. These data were extracted from NASA's original\n Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV tapes,\n that recorded 24-hour, time-edited, and rearranged raw binary data transmitted from the Moon.\n The extracted binary data were corrected for obvious tape read errors then transformed to\n ASCII format for this archive. This collection also includes one ASCII file of\n SIDE/CCIG-related command verification data extracted from the ARCSAV binary files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12"],"targets":["Moon","MOON"],"instruments":["Apollo 12 Suprathermal Ion Detector Experiment","Apollo 12 Cold Cathode Ion Gage Experiment"],"instrument_hosts":["A12A"],"data_types":["Data"],"start_date":"1975-04-03","stop_date":"1975-07-01","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12side_ccig_raw_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12side_ccig_raw_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:51.520563","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12side_ccig_raw_arcsav:document::1.0","title":"Apollo 12 ALSEP ARCSAV SIDE/CCIG Raw Cleaned ASCII Document Collection\n (1975-093 to 1975-182)","description":"This collection contains documentation for the Apollo 12 ALSEP SIDE/CCIG Raw\n Cleaned ASCII Data Collection (1975-093 to 1975-182). It includes a description of the raw\n data products and the Fortran programs used to extract data from raw binary Apollo 12\n SIDE/CCIG ARCSAV files and transform to ASCII. It also includes a one-page sheet of SIDE\n calibration data.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12"],"targets":["Moon","MOON"],"instruments":["Apollo 12 Suprathermal Ion Detector Experiment","Apollo 12 Cold Cathode Ion Gage Experiment"],"instrument_hosts":["A12A"],"data_types":["Document"],"start_date":"1975-04-03","stop_date":"1975-07-01","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12side_ccig_raw_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12side_ccig_raw_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:52.555389","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12sws_raw_arcsav::1.0","title":"Apollo 12 ALSEP ARCSAV Solar Wind Spectrometer Raw Cleaned ASCII Data Bundle","description":"This bundle contains fixed-width ASCII files of daily, raw cleaned measurements\n acquired by the Solar Wind Spectrometer (SWS) at the Apollo 12 landing site for the time span\n of 03 April through 01 July 1975. These data were extracted from NASA's original Apollo Lunar\n Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 12"],"targets":["Moon","MOON"],"instruments":["A12A","Apollo 12 Solar Wind Spectrometer"],"instrument_hosts":["A12A"],"data_types":[],"start_date":"1975-04-02","stop_date":"1975-07-01","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_raw_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_raw_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:53.543294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12sws_raw_arcsav:data::1.0","title":"Apollo 12 ALSEP ARCSAV Solar Wind Spectrometer Raw Cleaned ASCII Data Collection\n (1975-093 to 1975-182)","description":"This collection contains fixed-width ASCII files of daily raw cleaned science\n measurements and daily raw calibration and engineering data acquired by the Solar Wind\n Spectrometer (SWS) at the Apollo 12 landing site for the time span of 03 April through 01 July\n 1975. These data were extracted from NASA's original Apollo Lunar Surface Experiments Package\n (ALSEP) archive tapes, also known as ARCSAV tapes, that recorded 24-hour, time-edited, and\n rearranged raw binary data transmitted from the Moon. The extracted binary data were corrected\n for obvious tape read errors then transformed to ASCII format for this archive. This\n collection also includes one ASCII file of SWS-related command verification data extracted\n from the ARCSAV binary files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12"],"targets":["Moon","MOON"],"instruments":["Apollo 12 Solar Wind Spectrometer"],"instrument_hosts":["A12A"],"data_types":["Data"],"start_date":"1975-04-02","stop_date":"1975-07-01","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_raw_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_raw_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:54.593627","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12sws_raw_arcsav:document::1.0","title":"Apollo 12 ALSEP ARCSAV Solar Wind Spectrometer Raw Cleaned ASCII Document Collection\n (1975-093 to 1975-182)","description":"This collection contains documentation for the Apollo 12 ALSEP ARCSAV Solar Wind\n Spectrometer Raw Cleaned ASCII Data Collection (1975-093 to 1975-182). It includes a\n description of the raw data products and the Fortran programs used to extract data from raw\n binary Apollo 12 SWS ARCSAV files and transform to ASCII.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12"],"targets":["Moon","MOON"],"instruments":["Apollo 12 Solar Wind Spectrometer"],"instrument_hosts":["A12A"],"data_types":["Document"],"start_date":"1975-04-02","stop_date":"1975-07-01","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_raw_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_raw_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:55.519984","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12sws_solar_wind_28s_1hr::1.0","title":"Apollo 12 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour-Average ASCII Data Bundle","description":"This data set contains daily tables of time ordered, \n 28-second-resolution plasma parameters, mainly of the solar wind, \n as observed on the Moon at the Apollo 12 ALSEP site by the Apollo \n 12 Solar Wind Spectrometer (SWS) from 19 November 1969 through \n 25 March 1976. This is the highest resolution data set available \n from the SWS instrument. This data set also contains tables of time \n ordered, hourly-averaged plasma parameters, mainly of the solar wind, \n as observed on the Moon at the Apollo 12 ALSEP site by the Apollo 12 \n Solar Wind Spectrometer from 19 November 1969 through 25 March 1976.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 12"],"targets":["Moon"],"instruments":["A12A","Apollo 12 Lunar Surface Experiments Package Solar Wind Spectrometer"],"instrument_hosts":["The Apollo 12 Lunar Surface Experiments Package","A12A"],"data_types":[],"start_date":"1969-11-19","stop_date":"1976-03-25","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_solar_wind_28s_1hr/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_solar_wind_28s_1hr/bundle_a12sws.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:56.547373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12sws_solar_wind_28s_1hr:data::1.0","title":"Apollo 12 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour-Average ASCII Data Collection","description":"The Apollo 12 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour-Average ASCII Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12"],"targets":["Moon"],"instruments":["Apollo 12 Lunar Surface Experiments Package Solar Wind Spectrometer"],"instrument_hosts":["The Apollo 12 Lunar Surface Experiments Package"],"data_types":["Data"],"start_date":"1969-11-19","stop_date":"1976-03-25","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_solar_wind_28s_1hr/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_solar_wind_28s_1hr/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:57.555945","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a12sws_solar_wind_28s_1hr:document::1.0","title":"Apollo 12 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour-Average ASCII Document Collection","description":"The Apollo 12 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour Average ASCII Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12"],"targets":["Moon"],"instruments":["Apollo 12 Lunar Surface Experiments Package Solar Wind Spectrometer"],"instrument_hosts":["The Apollo 12 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1969-11-19","stop_date":"1976-03-25","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_solar_wind_28s_1hr/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a12sws_solar_wind_28s_1hr/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:58.579039","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a14ccig_atmos_density_plots::1.0","title":"Apollo 14 Cold Cathode Ion Gage Atmospheric Density Plots Bundle","description":"This dataset contains digitized plots of the density of the lunar atmosphere as measured by the Apollo 14 \n Cold Cathode Ion Gage from 05 February 1971 through 31 December 1973.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 14"],"targets":["Moon"],"instruments":["A14A","Apollo 14 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 14 Lunar Surface Experiments Package","A14A"],"data_types":[],"start_date":"1971-02-05","stop_date":"1973-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/bundle_a14ccig.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:37:59.547421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a14ccig_atmos_density_plots:browse::1.0","title":"Apollo 14 CCIG Atmospheric Density Plots Browse Thumbnail Collection","description":"This collection contains browse thumbnail versions of the Apollo 14 CCIG Atmospheric Density plots \n in the document_density_plots collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 14"],"targets":["Moon"],"instruments":["Apollo 14 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 14 Lunar Surface Experiments Package"],"data_types":["Browse"],"start_date":"1971-02-05","stop_date":"1973-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/browse/collection_browse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:00.548621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a14ccig_atmos_density_plots:data::1.0","title":"Apollo 14 CCIG Atmospheric Density Plots Data Collection","description":"This collection contains tables that list the start and stop times for each digitally-scanned Apollo 14 \n CCIG atmospheric density plot in the document_density_plots collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 14"],"targets":["Moon"],"instruments":["Apollo 14 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 14 Lunar Surface Experiments Package"],"data_types":["Data"],"start_date":"1971-02-05","stop_date":"1973-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:01.563956","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a14ccig_atmos_density_plots:document::1.0","title":"Apollo 14 CCIG Atmospheric Density Plots Document Collection","description":"Apollo 14 CCIG Atmospheric Density Plots Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 14"],"targets":["Moon"],"instruments":["Apollo 14 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 14 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1971-02-05","stop_date":"1973-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:02.551674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a14ccig_atmos_density_plots:document_density_plots::1.0","title":"Apollo 14 CCIG Atmospheric Density Plots Collection","description":"Apollo 14 CCIG Atmospheric Density Plots Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 14"],"targets":["Moon"],"instruments":["Apollo 14 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 14 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1971-02-05","stop_date":"1973-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/document_density_plots/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14ccig_atmos_density_plots/document_density_plots/collection_document_density_plots.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:03.569036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a14cplee::1.0","title":"Apollo 14 CPLEE Electron and Ion Count Rates and Fluxes Bundle","description":"This bundle contains fixed-width ASCII tables of raw counts and derived electron\n and ion fluxes (40-20,000 eV) from the Apollo 14 ALSEP Charged Particle Lunar\n Environment Experiment (CPLEE). Two analyzers observed particles: one vertically\n oriented and one at 60 degrees toward lunar west. Data were acquired via automatic\n 19.2-second voltage stepping (15-channel spectrum) and manual 2.4-second sampling\n modes. The dataset includes housekeeping measurements and the necessary time and\n mode identification information. Coverage spans 05 February 1971 through 02 March\n 1973, including the major solar flare of 04 August 1972.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 14"],"targets":["Moon"],"instruments":["A14A","Apollo 14 Lunar Surface Experiments Package Charged Particle Lunar Environment Experiment"],"instrument_hosts":["The Apollo 14 Lunar Surface Experiments Package","A14A"],"data_types":[],"start_date":"1971-02-05","stop_date":"1973-03-02","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14cplee/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14cplee/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:04.609206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a14cplee:data::1.0","title":"Apollo 14 CPLEE Electron and Ion Count Rates and Fluxes Data Collection","description":"This collection contains fixed-width ASCII tables of raw counts and derived\n electron and ion fluxes (40-20,000 eV) from the Apollo 14 ALSEP Charged Particle\n Lunar Environment Experiment (CPLEE). Two analyzers observed particles: one\n vertically oriented and one at 60 degrees toward lunar west. Data were acquired\n via automatic 19.2-second voltage stepping (15-channel spectrum) and manual\n 2.4-second sampling modes. The dataset includes housekeeping measurements and the\n necessary time and mode identification information. Coverage spans 05 February\n 1971 through 02 March 1973, including the major solar flare of 04 August 1972.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 14"],"targets":["Moon"],"instruments":["Apollo 14 Lunar Surface Experiments Package Charged Particle Lunar Environment Experiment"],"instrument_hosts":["The Apollo 14 Lunar Surface Experiments Package"],"data_types":["Data"],"start_date":"1971-02-05","stop_date":"1973-03-02","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14cplee/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14cplee/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:05.597453","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a14cplee:document::1.0","title":"Apollo 14 CPLEE Electron and Ion Count Rates and Fluxes Document Collection","description":"This collection contains documentation for the Apollo 14 CPLEE Electron and Ion\n Count Rates and Fluxes bundle. It includes data description document that explains\n the data products, CPLEE calibration, and the conversion of raw particle counts to\n derived fluxes.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 14"],"targets":["Moon"],"instruments":["Apollo 14 Lunar Surface Experiments Package Charged Particle Lunar Environment Experiment"],"instrument_hosts":["The Apollo 14 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1971-02-05","stop_date":"1973-03-02","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14cplee/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a14cplee/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:06.547185","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15_17_hfe_concatenated::1.0","title":"Apollo 15 and 17 Heat Flow Experiment Concatenated Data Sets Bundle","description":"This bundle contains ASCII tables containing corrected, reduced, and\n concatenated versions of all available calibrated data from the Apollo 15\n and 17 Heat Flow Experiment, along with supporting documentation and source\n data. These tables are based on other data in the PDS and the published\n literature, specifically (1) transcriptions of data sent by the original\n instrument team to the NSSDC and (2) data not archived by the instrument\n team and recovered much later from ARCSAV tapes. The data here correct\n several errors in (1), and furthermore place (1) and (2) into a standardized\n format for ease of use.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15","Apollo 17"],"targets":["Moon"],"instruments":["A15A","A17A","HEAT FLOW EXPERIMENT"],"instrument_hosts":["A15A","A17A"],"data_types":[],"start_date":"1971-07-31","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15_17_hfe_concatenated/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15_17_hfe_concatenated/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:07.531516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15_17_hfe_concatenated:data::2.0","title":"Apollo 15 and 17 Heat Flow Experiment Concatenated Data Sets: Data Collection","description":"This collection contains ASCII tables containing corrected, reduced, and\n concatenated versions of data from all available sources for the Apollo 15\n and 17 Heat Flow Experiment. Subdirectories contain three separate reduced\n sets: 'clean,' 'split,' and 'depth.' These tables are based on other data in\n the PDS and the published literature, specifically (1) transcriptions of\n data sent by the original instrument team to the NSSDC and (2) data not\n archived by the instrument team and recovered much later from ARCSAV tapes.\n The data here correct several errors in (1), and furthermore place (1) and\n (2) into a standardized format for ease of use.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15","Apollo 17"],"targets":["Moon"],"instruments":["HEAT FLOW EXPERIMENT"],"instrument_hosts":["A15A","A17A"],"data_types":["Data"],"start_date":"1971-07-31","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15_17_hfe_concatenated/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15_17_hfe_concatenated/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:08.557348","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15_17_hfe_concatenated:document::2.0","title":"Apollo 15 and 17 Heat Flow Experiment Concatenated Data Sets: Documentation Collection","description":"This collection includes (1) direct user-facing documentation for\n urn:nasa:pds:a15_17_hfe_concatenated:data and (2) documents that provide\n useful context for the HFE experiment and the bundle's source data.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15","Apollo 17"],"targets":["Moon"],"instruments":["HEAT FLOW EXPERIMENT"],"instrument_hosts":["A15A","A17A"],"data_types":["Document"],"start_date":"1971-07-31","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15_17_hfe_concatenated/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15_17_hfe_concatenated/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:09.561816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15_17_hfe_concatenated:document_source::2.0","title":"Apollo 15 ALSEP ARCSAV Heat Flow Experiment Concatenated Data Sets: Source Materials Collection","description":"This collection contains source data and reduction code for the reduced,\n corrected, and concatenated sets in this bundle's data collection. Most of\n these source data are available elsewhere on the PDS; the remainder are\n available in published scientific literature. They are copied in this bundle\n in order to (1) provide a 'snapshot' of the source material for our\n reduction process, should those archives change; and (2) to facilitate bug\n hunting, verification, and functionality-adding software forks. This is a\n document collection because it does not contain the primary science data of\n the bundle and includes data that is not in a PDS4 observational product\n format.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15","Apollo 17"],"targets":["Moon"],"instruments":["HEAT FLOW EXPERIMENT"],"instrument_hosts":["A15A","A17A"],"data_types":["Document"],"start_date":"1971-07-31","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15_17_hfe_concatenated/document_source/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15_17_hfe_concatenated/document_source/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:10.578890","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15ccig_atmos_density_plots::1.0","title":"Apollo 15 Cold Cathode Ion Gage Atmospheric Density Plots Bundle","description":"This dataset contains digitized plots of the density of the lunar atmosphere as measured by the Apollo 15 \n Cold Cathode Ion Gage from 31 July 1971 through 12 September 1973.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon"],"instruments":["A15A","Apollo 15 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package","A15A"],"data_types":[],"start_date":"1971-07-31","stop_date":"1973-09-12","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/bundle_a15ccig.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:11.752291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15ccig_atmos_density_plots:browse::1.0","title":"Apollo 15 CCIG Atmospheric Density Plots Browse Thumbnail Collection","description":"This collection contains browse thumbnail versions of the Apollo 15 CCIG Atmospheric Density plots \n in the document_density_plots collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package"],"data_types":["Browse"],"start_date":"1971-07-31","stop_date":"1973-09-12","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/browse/collection_browse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:12.565976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15ccig_atmos_density_plots:data::1.0","title":"Apollo 15 CCIG Atmospheric Density Plots Data Collection","description":"This collection contains tables that list the start and stop times for each digitally-scanned Apollo 15 \n CCIG atmospheric density plot in the document_density_plots collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package"],"data_types":["Data"],"start_date":"1971-07-31","stop_date":"1973-09-12","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:13.579804","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15ccig_atmos_density_plots:document::1.0","title":"Apollo 15 CCIG Atmospheric Density Plots Document Collection","description":"Apollo 15 CCIG Atmospheric Density Plots Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1971-07-31","stop_date":"1973-09-12","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:14.576807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15ccig_atmos_density_plots:document_density_plots::1.0","title":"Apollo 15 CCIG Atmospheric Density Plots Collection","description":"Apollo 15 CCIG Atmospheric Density Plots Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Surface Experiments Package Cold Cathode Ion Gage Experiment"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1971-07-31","stop_date":"1973-09-12","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/document_density_plots/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15ccig_atmos_density_plots/document_density_plots/collection_document_density_plots.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:15.643269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_calibrated_arcsav::1.0","title":"Apollo 15 ALSEP ARCSAV Heat Flow Experiment Calibrated Gradient Bridge Temperatures\n Bundle","description":"This bundle contains fixed-width ASCII files contains fully processed, calibrated\n temperature data for the upper and lower gradient bridge thermal sensors on both probes of the\n Heat Flow Experiment (HFE) at the Apollo 15 landing site. The time span is 02 April through \n 30 June 1975. These data were derived from raw measurements extracted from NASA's original\n Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV\n tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["A15A","Apollo 15 Heat Flow Experiment"],"instrument_hosts":["A15A"],"data_types":[],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_calibrated_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_calibrated_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:16.611853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_calibrated_arcsav:data::1.0","title":"Apollo 15 ALSEP ARCSAV Heat Flow Experiment Calibrated Gradient Bridge Temperatures\n Collection (1975-092 to 1975-181)","description":"This collection contains fixed-width ASCII files contains fully processed,\n calibrated temperature data for the upper and lower gradient bridges (thermal sensors) on \n both probes of the Heat Flow Experiment (HFE) at the Apollo 15 landing site. The time span is\n 02 April through 30 June 1975. These data were derived from raw measurements extracted from\n NASA's original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as\n ARCSAV tapes.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["Apollo 15 Heat Flow Experiment"],"instrument_hosts":["A15A"],"data_types":["Data"],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_calibrated_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_calibrated_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:17.661271","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_calibrated_arcsav:document::1.0","title":"Apollo 15 ALSEP ARCSAV Heat Flow Experiment Calibrated Gradient Bridge Temperatures\n Document Collection (1975-092 to 1975-181)","description":"This collection contains documentation for the Apollo 15 ALSEP ARCSAV Heat Flow\n Experiment Calibrated Gradient Bridge Temperatures Collection (1975-092 to 1975-181). It\n includes a description of the calibrated data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["Apollo 15 Heat Flow Experiment"],"instrument_hosts":["A15A"],"data_types":["Document"],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_calibrated_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_calibrated_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:18.575955","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_raw_arcsav::1.0","title":"Apollo 15 ALSEP ARCSAV Heat Flow Experiment Raw Cleaned ASCII Data Bundle","description":"This bundle contains fixed-width ASCII files of daily, raw cleaned measurements\n acquired by the Heat Flow Experiment (HFE) at the Apollo 15 landing site for the time span\n of 02 April through 30 June 1975. These data were extracted from NASA's original Apollo Lunar\n Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["A15A","Apollo 15 Heat Flow Experiment"],"instrument_hosts":["A15A"],"data_types":[],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_raw_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_raw_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:19.577626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_raw_arcsav:data::1.0","title":"Apollo 15 ALSEP ARCSAV Heat Flow Experiment Raw Cleaned ASCII Data Collection (1975-092\n to 1975-181)","description":"This collection contains two fixed-width ASCII files of daily raw cleaned science\n measurements acquired by the Heat Flow Experiment (HFE) at the Apollo 15 landing site for the\n time span of 02 April through 30 June 1975. One table provides Mode 1 (Gradient) data while\n the other table provides Mode 3 (Housekeeping) data. These data were extracted from NASA's\n original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV\n tapes, that recorded 24-hour, time-edited, and rearranged raw binary data transmitted from the\n Moon. The extracted binary data were corrected for obvious tape read errors then transformed\n to ASCII format for this archive. This collection also includes ASCII files of HFE-related\n command verification and raw analog housekeeping data extracted from the ARCSAV binary\n files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["Apollo 15 Heat Flow Experiment"],"instrument_hosts":["A15A"],"data_types":["Data"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_raw_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_raw_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:20.580472","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_raw_arcsav:document::1.0","title":"Apollo 15 ALSEP ARCSAV Heat Flow Experiment Raw Cleaned ASCII Document Collection\n (1975-092 to 1975-181)","description":"This collection contains documentation for the Apollo 15 ALSEP ARCSAV Heat Flow\n Experiment Raw Cleaned ASCII Data Collection (1975-092 to 1975-181). It includes a description\n of the raw data products and the Fortran programs used to extract data from raw binary Apollo\n 15 HFE ARCSAV files and transform to ASCII.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["Apollo 15 Heat Flow Experiment"],"instrument_hosts":["A15A"],"data_types":["Document"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_raw_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_raw_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:21.591190","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_thermal_conductivity::1.0","title":"Apollo 15 Lunar Surface Experiments Package Heat Flow Experiment Data Bundle","description":"This data set comprises a reduced, subsampled set of the data returned \n from the Apollo 15 Heat Flow Experiment from 31 July 1971 through \n 31 December 1974. The experiment consisted of two probes placed by \n the Apollo 15 astronauts in holes drilled in the lunar surface near \n the Apollo 15 Lunar Surface Experiments Package site to measure the \n thermal conductivity. The data consist of a set of ten ASCII tables \n with time, temperature differences, and average temperatures readings \n measured by the thermocouples in the heat flow probes and probe \n cables. The data have been restored and reformatted from binary data \n held on magnetic tapes at the NASA National Space Science Data Center \n (NSSDC) under NSSDC ID of PSPG-00093 (old NSSDC ID 71-063C-06A).","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon"],"instruments":["A15A","Apollo 15 Lunar Surface Experiments Package Heat Flow Experiment"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package","A15A"],"data_types":[],"start_date":"1971-07-31","stop_date":"1974-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_thermal_conductivity/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_thermal_conductivity/bundle_a15hfe.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:22.604416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_thermal_conductivity:data::1.0","title":"Apollo 15 Lunar Surface Experiments Package Heat Flow Experiment Data Collection","description":"Apollo 15 Lunar Surface Experiments Package Heat Flow Experiment Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Surface Experiments Package Heat Flow Experiment"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package"],"data_types":["Data"],"start_date":"1971-07-31","stop_date":"1974-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_thermal_conductivity/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_thermal_conductivity/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:23.610336","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15hfe_thermal_conductivity:document::1.0","title":"Apollo 15 Lunar Surface Experiments Package Heat Flow Experiment Document Collection","description":"Apollo 15 Lunar Surface Experiments Package Heat Flow Experiment Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Surface Experiments Package Heat Flow Experiment"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1971-07-31","stop_date":"1974-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_thermal_conductivity/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15hfe_thermal_conductivity/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:24.587689","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15lsrp_soil_mechanics::1.0","title":"Apollo 15 Lunar Module Soil Mechanics Data Bundle","description":"This volume contains tables of raw readings and reduced data from \n all six runs on 01 August 1971 of the Lunar Self-Recording \n Penetrometer (LSRP) on the surface of the Moon for the Apollo 15 \n Soil Mechanics experiment. Supporting documentation includes \n digitized scans in JPEG and PDF format of the original LSRP soil \n mechanics dataset on microfilm, videos and transcripts of the LSRP \n as it was operated on the Moon, diagrams and maps of the experiment \n areas, and photography of the Apollo 15 Station 8 where the experiment \n was performed.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon"],"instruments":["A15L","Apollo 15 Lunar Module Lunar Self-Recording Penetrometer"],"instrument_hosts":["The Apollo 15 Lunar Module","A15L"],"data_types":[],"start_date":"1971-08-01","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15lsrp_soil_mechanics/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15lsrp_soil_mechanics/bundle_a15lsrp.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:25.598439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15lsrp_soil_mechanics:data::1.0","title":"Apollo 15 Lunar Module Soil Mechanics Experiment Data Collection","description":"This collection contains the data products for the Apollo 15 Lunar Module Soil Mechanics Experiment Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Module Lunar Self-Recording Penetrometer"],"instrument_hosts":["The Apollo 15 Lunar Module"],"data_types":["Data"],"start_date":"1971-08-01","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15lsrp_soil_mechanics/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15lsrp_soil_mechanics/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:26.627674","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15lsrp_soil_mechanics:document::1.0","title":"Apollo 15 Lunar Module Soil Mechanics Experiment Document Collection","description":"The Apollo 15 Lunar Module Soil Mechanics Experiment Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Module Lunar Self-Recording Penetrometer"],"instrument_hosts":["The Apollo 15 Lunar Module"],"data_types":["Document"],"start_date":"1971-08-01","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15lsrp_soil_mechanics/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15lsrp_soil_mechanics/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:27.618048","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15oms::1.0","title":"Apollo 15 Orbital Mass Spectrometer Data Output Scans Bundle","description":"This bundle contains microfilm scans of formatted outputs of all data acquired\n by the Apollo 15 Orbital Mass Spectrometer from lunar orbit during 30 July to 07 August 1971,\n along with relevant documentation.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon"],"instruments":["A15C","Apollo 15 Orbital Mass Spectrometer (OMS) Experiment"],"instrument_hosts":["A15C"],"data_types":[],"start_date":"1971-07-30","stop_date":"1971-08-07","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15oms/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15oms/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:28.664342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15oms:document_data_output_scans::1.0","title":"Apollo 15 Orbital Mass Spectrometer Data Output Scans Collection","description":"This collection contains microfilm scans of formatted outputs of all data\n acquired by the Apollo 15 Orbital Mass Spectrometer from lunar orbit during 30 July to 07\n August 1971, along with relevant documentation. The two mass ranges covered are 12-28 and\n 28-67 atomic mass units. The outputs include formatted summaries of peak amplitudes,\n trajectory data, and housekeeping measurements. The scans are provided as multipage PDF/A\n files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Orbital Mass Spectrometer (OMS) Experiment"],"instrument_hosts":["A15C"],"data_types":["Document"],"start_date":"1971-07-30","stop_date":"1971-08-07","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15oms/document_data_output_scans/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15oms/document_data_output_scans/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:29.714721","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15photosupportdata::1.0","title":"Apollo 15 Photographic Ephemeris Support Data Bundle","description":"This bundle contains ephemeris support data (spacecraft state vectors, camera\n orientation, photograph position, and lighting data) computed during the Apollo era for\n analyzing and using photographic images taken of the moon from 30 July to 4 August 1971 by the\n Apollo 15 Metric (Mapping) and Panoramic Cameras from lunar orbit. This bundle also includes\n digital scans of the original tabular data output on microfilm.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon"],"instruments":["A15C","A15C","Apollo 15 Metric (Mapping) Camera","Apollo 15 Panoramic Camera (Pancam)"],"instrument_hosts":["A15C"],"data_types":[],"start_date":"1971-07-30","stop_date":"1971-08-04","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15photosupportdata/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15photosupportdata/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:30.594979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15photosupportdata:geom_orbital_photo_ephem::1.0","title":"Apollo 15 Metric (Mapping) and Panoramic Cameras - Photographic Ephemeris Support Data\n Collection","description":"This collection contains comma-separated ASCII tables of ephemeris data\n (spacecraft state vectors, camera orientation, photograph position, and lighting data)\n computed during the Apollo era for analyzing and using photographic images taken of the moon\n from 30 July to 4 August 1971 by the Apollo 15 Metric (Mapping) and Panoramic Cameras from\n lunar orbit. These tables were produced using optical character recognition (OCR) software to\n read TIFF images of scanned tabular output on microfilm. These scans were merged and provided\n in this collection as two PDF/A files, one for each camera.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Metric (Mapping) Camera","Apollo 15 Panoramic Camera (Pancam)"],"instrument_hosts":["A15C"],"data_types":["Data"],"start_date":"1971-07-30","stop_date":"1971-08-04","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15photosupportdata/geometry_orbital_photographic_ephemeris/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15photosupportdata/geometry_orbital_photographic_ephemeris/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:31.602535","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15side_ccig_raw_arcsav::1.0","title":"Apollo 15 ALSEP ARCSAV SIDE/CCIG Raw Cleaned ASCII Data Bundle","description":"This bundle contains fixed-width ASCII files of daily, raw cleaned measurements\n acquired by Suprathermal Ion Detector Experiment (SIDE) and the Cold Cathode Ion Gage\n Experiment (CCIG; also known as the Cold Cathode Gage Experiment) at the Apollo 15 landing\n site for the time span of 02 April through 30 June 1975. These data were extracted from NASA's\n original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV\n tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["A15A","A15A","Apollo 15 Suprathermal Ion Detector Experiment","Apollo 15 Cold Cathode Ion Gage Experiment"],"instrument_hosts":["A15A"],"data_types":[],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15side_ccig_raw_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15side_ccig_raw_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:32.606384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15side_ccig_raw_arcsav:data::1.0","title":"Apollo 15 ALSEP ARCSAV SIDE/CCIG Raw Cleaned ASCII Data Collection (1975-092 to\n 1975-181)","description":"This collection contains fixed-width ASCII files of daily raw cleaned science and\n engineering measurements acquired by the Suprathermal Ion Detector Experiment (SIDE) and the\n Cold Cathode Ion Gage Experiment (CCIG; also known as the Cold Cathode Gage Experiment for the\n time span of 02 April through 30 June 1975. These data were extracted from NASA's original\n Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV tapes,\n that recorded 24-hour, time-edited, and rearranged raw binary data transmitted from the Moon.\n The extracted binary data were corrected for obvious tape read errors then transformed to\n ASCII format for this archive. This collection also includes one ASCII file of\n SIDE/CCIG-related command verification data extracted from the ARCSAV binary files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["Apollo 15 Suprathermal Ion Detector Experiment","Apollo 15 Cold Cathode Ion Gage Experiment"],"instrument_hosts":["A15A"],"data_types":["Data"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15side_ccig_raw_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15side_ccig_raw_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:33.609117","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15side_ccig_raw_arcsav:document::1.0","title":"Apollo 15 ALSEP ARCSAV SIDE/CCIG Raw Cleaned ASCII Document Collection\n (1975-092 to 1975-181)","description":"This collection contains documentation for the Apollo 15 ALSEP SIDE/CCIG Raw\n Cleaned ASCII Data Collection (1975-092 to 1975-181). It includes a description of the raw\n data products and the Fortran programs used to extract data from raw binary Apollo 15\n SIDE/CCIG ARCSAV files and transform to ASCII. It also includes a one-page sheet of SIDE\n calibration data.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon","MOON"],"instruments":["Apollo 15 Suprathermal Ion Detector Experiment","Apollo 15 Cold Cathode Ion Gage Experiment"],"instrument_hosts":["A15A"],"data_types":["Document"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15side_ccig_raw_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15side_ccig_raw_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:34.609134","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15sws_solar_wind_28s_1hr::1.0","title":"Apollo 15 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour-Average ASCII Data Bundle","description":"This data set contains daily tables of \n time ordered, 28-second-resolution plasma parameters, mainly of the \n solar wind, as observed on the Moon at the Apollo 15 ALSEP site by \n the Apollo 15 Solar Wind Spectrometer (SWS) from 31 July 1971 \n through 30 June 1972. This data set also contains tables of time \n ordered, hourly averaged plasma parameters, mainly of the solar wind, \n as observed on the Moon at the Apollo 15 ALSEP site by the Apollo 15 \n Solar Wind Spectrometer (SWS) from 31 July 1971 through 30 June 1972.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon"],"instruments":["A15A","Apollo 15 Lunar Surface Experiments Package Solar Wind Spectrometer"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package","A15A"],"data_types":[],"start_date":"1971-07-31","stop_date":"1972-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15sws_solar_wind_28s_1hr/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15sws_solar_wind_28s_1hr/bundle_a15sws.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:35.680476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15sws_solar_wind_28s_1hr:data::1.0","title":"Apollo 15 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour-Average ASCII Data Collection","description":"The Apollo 15 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour Average ASCII Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Surface Experiments Package Solar Wind Spectrometer"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package"],"data_types":["Data"],"start_date":"1971-07-31","stop_date":"1972-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15sws_solar_wind_28s_1hr/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15sws_solar_wind_28s_1hr/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:36.609399","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15sws_solar_wind_28s_1hr:document::1.0","title":"Apollo 15 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour-Average ASCII Document Collection","description":"The Apollo 15 Lunar Surface Experiments Package Solar Wind Spectrometer 28-Second-Resolution and 1-Hour-Average ASCII Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Lunar Surface Experiments Package Solar Wind Spectrometer"],"instrument_hosts":["The Apollo 15 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1971-07-31","stop_date":"1972-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15sws_solar_wind_28s_1hr/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15sws_solar_wind_28s_1hr/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:37.663641","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15xrfs_surface_xray_counts::1.0","title":"Apollo 15 Lunar Surface X-Ray Counts Bundle","description":"This volume contains two tables of \n time-ordered, event count rates acquired by the Apollo 15 X-Ray \n Fluorescence Spectrometer from 30 July to 04 August 1971 during lunar \n orbit. The tables include counts for all channels of the three \n proportional counters (unfiltered, magnesium filter, aluminum filter) \n and the solar monitor.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 15"],"targets":["Moon"],"instruments":["A15C","Apollo 15 Command and Service Module X-Ray Fluorescence Spectrometer"],"instrument_hosts":["The Apollo 15 Command and Service Module","A15C"],"data_types":[],"start_date":"1971-07-30","stop_date":"1971-08-04","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15xrfs_surface_xray_counts/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15xrfs_surface_xray_counts/bundle_a15xrfs.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:38.701404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15xrfs_surface_xray_counts:data::1.0","title":"Apollo 15 Lunar Surface X-Ray Counts Data Collection","description":"The Apollo 15 Lunar Surface X-Ray Counts Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Command and Service Module X-Ray Fluorescence Spectrometer"],"instrument_hosts":["The Apollo 15 Command and Service Module"],"data_types":["Data"],"start_date":"1971-07-30","stop_date":"1971-08-04","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15xrfs_surface_xray_counts/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15xrfs_surface_xray_counts/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:39.679229","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a15xrfs_surface_xray_counts:document::1.0","title":"Apollo 15 Lunar Surface X-Ray Counts Document Collection","description":"The Apollo 15 Lunar Surface X-Ray Counts Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":["Apollo 15 Command and Service Module X-Ray Fluorescence Spectrometer"],"instrument_hosts":["The Apollo 15 Command and Service Module"],"data_types":["Document"],"start_date":"1971-07-30","stop_date":"1971-08-04","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15xrfs_surface_xray_counts/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a15xrfs_surface_xray_counts/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:40.634359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16lsm_raw_arcsav::1.0","title":"Apollo 16 ALSEP ARCSAV Lunar Surface Magnetometer Raw Cleaned ASCII Data Bundle","description":"This bundle contains fixed-width ASCII files of daily, raw cleaned measurements\n acquired by the Lunar Surface Magnetometer (LSM) Experiment at the Apollo 16 landing site for\n the time span of 02 April through 30 June 1975. These data were extracted from NASA's original\n Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV\n tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 16"],"targets":["Moon","MOON"],"instruments":["A16A","Apollo 16 Lunar Surface Magnetometer"],"instrument_hosts":["A16A"],"data_types":[],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsm_raw_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsm_raw_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:41.636066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16lsm_raw_arcsav:data::1.0","title":"Apollo 16 ALSEP ARCSAV Lunar Surface Magnetometer Raw Cleaned ASCII Data Collection\n (1975-092 to 1975-181)","description":"This collection contains fixed-width ASCII files of daily raw cleaned science and\n engineering measurements acquired by the Lunar Surface Magnetometer (LSM) at the Apollo 16\n landing site for the time span of 02 April through 30 June 1975. These data were extracted\n from NASA's original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also\n known as ARCSAV tapes, that recorded 24-hour, time-edited, and rearranged raw binary data\n transmitted from the Moon. The extracted binary data were corrected for obvious tape read\n errors then transformed to ASCII format for this archive. This collection also includes one\n ASCII file of LSM-related command verification data extracted from the ARCSAV binary\n files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon","MOON"],"instruments":["Apollo 16 Lunar Surface Magnetometer"],"instrument_hosts":["A16A"],"data_types":["Data"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsm_raw_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsm_raw_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:42.641338","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16lsm_raw_arcsav:document::1.0","title":"Apollo 16 ALSEP ARCSAV Lunar Surface Magnetometer Raw Cleaned ASCII Document Collection\n (1975-092 to 1975-181)","description":"This collection contains documentation for the Apollo 16 ALSEP ARCSAV Lunar Surface\n Magnetometer Raw Cleaned ASCII Data Collection (1975-092 to 1975-181). It includes a\n description of the raw data products and the Fortran programs used to extract data from raw\n binary Apollo 16 LSM ARCSAV files and transform to ASCII.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon","MOON"],"instruments":["Apollo 16 Lunar Surface Magnetometer"],"instrument_hosts":["A16A"],"data_types":["Document"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsm_raw_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsm_raw_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:43.645924","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16lsrp_soil_mechanics::1.0","title":"Apollo 16 Lunar Self-Recording Penetrometer Soil Mechanics Data Bundle","description":"This volume contains tables of raw readings and reduced data from ten \n runs on 22 April 1972 of the Lunar Self-Recording Penetrometer (LSRP) \n on the surface of the Moon for the Apollo 16 Soil Mechanics experiment. \n Supporting documentation includes digitized scans in JPEG and PDF \n format of the original LSRP soil mechanics dataset on microfilm, videos \n and transcripts of the LSRP as it was operated on the Moon, diagrams \n and maps of the experiment areas, and photography of Apollo 16 Stations \n 4 and 10 where the experiment was performed.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 16"],"targets":["Moon"],"instruments":["A16L","Apollo 16 Lunar Module Lunar Self-Recording Penetrometer"],"instrument_hosts":["The Apollo 16 Lunar Module","A16L"],"data_types":[],"start_date":"1972-04-22","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsrp_soil_mechanics/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsrp_soil_mechanics/bundle_a16lsrp.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:44.661606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16lsrp_soil_mechanics:data::1.0","title":"Apollo 16 Lunar Surface Experiments Package Soil Mechanics Experiment Data Collection","description":"The Apollo 16 Lunar Surface Experiments Package Soil Mechanics Experiment Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon"],"instruments":["Apollo 16 Lunar Module Lunar Self-Recording Penetrometer"],"instrument_hosts":["The Apollo 16 Lunar Module"],"data_types":["Data"],"start_date":"1972-04-22","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsrp_soil_mechanics/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsrp_soil_mechanics/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:45.641406","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16lsrp_soil_mechanics:document::1.0","title":"Apollo 16 Lunar Self-Recording Penetrometer Soil Mechanics Document Collection","description":"The Apollo 16 Lunar Self-Recording Penetrometer Soil Mechanics Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon"],"instruments":["Apollo 16 Lunar Module Lunar Self-Recording Penetrometer"],"instrument_hosts":["The Apollo 16 Lunar Module"],"data_types":["Document"],"start_date":"1972-04-22","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsrp_soil_mechanics/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16lsrp_soil_mechanics/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:46.643263","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16oms::1.0","title":"Apollo 16 Orbital Mass Spectrometer Data Output Scans Bundle","description":"This bundle contains microfilm scans of formatted outputs of all data acquired\n by the Apollo 16 Orbital Mass Spectrometer from lunar orbit during 20-24 April 1972, along\n with relevant documentation.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 16"],"targets":["Moon"],"instruments":["A16C","Apollo 16 Orbital Mass Spectrometer (OMS) Experiment"],"instrument_hosts":["A16C"],"data_types":[],"start_date":"1972-04-20","stop_date":"1972-04-24","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16oms/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16oms/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:47.686566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16oms:document_data_output_scans::1.0","title":"Apollo 16 Orbital Mass Spectrometer Data Output Scans Collection","description":"This collection contains microfilm scans of formatted outputs of all data\n acquired by the Apollo 16 Orbital Mass Spectrometer from lunar orbit during 20-24 April 1972,\n along with relevant documentation. The two mass ranges covered are 12-28 and 28-67 atomic\n mass units. The outputs include formatted summaries of peak amplitudes, trajectory data, and\n housekeeping measurements. The scans are provided as multipage PDF/A files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon"],"instruments":["Apollo 16 Orbital Mass Spectrometer (OMS) Experiment"],"instrument_hosts":["A16C"],"data_types":["Document"],"start_date":"1972-04-20","stop_date":"1972-04-24","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16oms/document_data_output_scans/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16oms/document_data_output_scans/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:48.676282","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16photosupportdata::1.0","title":"Apollo 16 Photographic Ephemeris Support Data Bundle","description":"This bundle contains ephemeris support data (spacecraft state vectors, camera\n orientation, photograph position, and lighting data) computed during the Apollo era for\n analyzing and using photographic images taken of the moon on 20-24 April 1972 by the Apollo\n 16 Metric (Mapping) and Panoramic Cameras from lunar orbit. This bundle also includes digital\n scans of the original tabular data output on microfilm.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 16"],"targets":["Moon"],"instruments":["A16C","A16C","Apollo 16 Metric (Mapping) Camera","Apollo 16 Panoramic Camera (Pancam)"],"instrument_hosts":["A16C"],"data_types":[],"start_date":"1972-04-20","stop_date":"1972-04-24","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16photosupportdata/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16photosupportdata/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:49.722776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16photosupportdata:geom_orbital_photo_ephem::1.0","title":"Apollo 16 Metric (Mapping) and Panoramic Cameras - Photographic Ephemeris Support Data\n Collection","description":"This collection contains comma-separated ASCII tables of ephemeris data\n (spacecraft state vectors, camera orientation, photograph position, and lighting data)\n computed during the Apollo era for analyzing and using photographic images taken of the moon\n on 20-24 April 1972 by the Apollo 16 Metric (Mapping) and Panoramic Cameras from lunar\n orbit. These tables were produced using optical character recognition (OCR) software to read\n TIFF images of scanned tabular output on microfilm. These scans were merged and provided in\n this collection as two PDF/A files, one for each camera.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon"],"instruments":["Apollo 16 Metric (Mapping) Camera","Apollo 16 Panoramic Camera (Pancam)"],"instrument_hosts":["A16C"],"data_types":["Data"],"start_date":"1972-04-20","stop_date":"1972-04-24","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16photosupportdata/geometry_orbital_photographic_ephemeris/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16photosupportdata/geometry_orbital_photographic_ephemeris/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:50.673709","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16xrfs_surface_xray_counts::1.0","title":"Apollo 16 Lunar Surface X-Ray Counts Bundle","description":"This volume contains two tables of \n time-ordered, event count rates acquired by the Apollo 16 X-Ray \n Fluorescence Spectrometer from 20 April to 24 April 1972 during lunar \n orbit. The tables include counts for all channels of the three \n proportional counters (unfiltered, magnesium filter, aluminum filter) \n and the solar monitor.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 16"],"targets":["Moon"],"instruments":["A16C","Apollo 16 Command and Service Module X-Ray Fluorescence Spectrometer"],"instrument_hosts":["The Apollo 16 Command and Service Module","A16C"],"data_types":[],"start_date":"1972-04-20","stop_date":"1972-04-24","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16xrfs_surface_xray_counts/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16xrfs_surface_xray_counts/bundle_a16xrfs.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:51.654906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16xrfs_surface_xray_counts:data::1.0","title":"Apollo 16 Lunar Surface X-Ray Counts Data Collection","description":"The Apollo 16 Lunar Surface X-Ray Counts Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon"],"instruments":["Apollo 16 Command and Service Module X-Ray Fluorescence Spectrometer"],"instrument_hosts":["The Apollo 16 Command and Service Module"],"data_types":["Data"],"start_date":"1972-04-20","stop_date":"1972-04-24","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16xrfs_surface_xray_counts/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16xrfs_surface_xray_counts/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:52.644900","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a16xrfs_surface_xray_counts:document::1.0","title":"Apollo 16 Lunar Surface X-Ray Counts Document Collection","description":"The Apollo 16 Lunar Surface X-Ray Counts Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon"],"instruments":["Apollo 16 Command and Service Module X-Ray Fluorescence Spectrometer"],"instrument_hosts":["The Apollo 16 Command and Service Module"],"data_types":["Document"],"start_date":"1972-04-20","stop_date":"1972-04-24","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16xrfs_surface_xray_counts/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a16xrfs_surface_xray_counts/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:53.659524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17fuvs::1.0","title":"Apollo 17 Far-Ultraviolet Spectrometer (FUVS) Data Graphs Bundle","description":"This bundle contains microfilm scans of graphs of spectral data from 118.4 to\n 167.2 nanometers acquired by the Apollo 17 Far-Ultraviolet Spectrometer from lunar orbit\n during 10-19 December 1972, along with relevant documentation.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon"],"instruments":["A17C","Apollo 17 Far-Ultraviolet Spectrometer (FUVS)"],"instrument_hosts":["A17C"],"data_types":[],"start_date":"1972-12-10","stop_date":"1972-12-19","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17fuvs/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17fuvs/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:54.651930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17fuvs:document_scanned_data_graphs::1.0","title":"Apollo 17 Far-Ultraviolet Spectrometer (FUVS) Data Graphs Collection","description":"This collection contains graphs of some of the spectral data acquired by the\n Apollo 17 Far-Ultraviolet Spectrometer from lunar orbit during 10-19 December 1972. The\n spectral data graphs, which were scanned from microfilm and provided in high-resolution PDF/A\n format, are displayed in two forms: averages of the spectra from 118.4 to 167.2 nanometers\n (1184.00 to 1671.57 Angstroms); and, time variations in the intensities observed at\n wavelengths of 121.567 or 121.570, 123.6 or 127.5, 130.40, 147.0, 152.0 or 155.0 or 155.600,\n and 165.700 nanometers (1215.67 or 1215.70, 1236.00 or 1275.00, 1304.00, 1470.00, 1520.00 or\n 1550.00 or 1556.00, and 1657.00 Angstroms).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Far-Ultraviolet Spectrometer (FUVS)"],"instrument_hosts":["A17C"],"data_types":["Document"],"start_date":"1972-12-10","stop_date":"1972-12-19","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17fuvs/document_scanned_data_graphs/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17fuvs/document_scanned_data_graphs/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:55.656025","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_calibrated_arcsav::1.0","title":"Apollo 17 ALSEP ARCSAV Heat Flow Experiment Calibrated Gradient Bridge Temperatures\n Bundle","description":"This bundle contains fixed-width ASCII files contains fully processed, calibrated\n temperature data for the upper gradient bridge thermal sensors on both probes of the \n Heat Flow Experiment (HFE) at the Apollo 17 landing site. The time span is 02 April through \n 30 June 1975. These data were derived from raw measurements extracted from NASA's original\n Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV\n tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon","MOON"],"instruments":["A17A","Apollo 17 Heat Flow Experiment"],"instrument_hosts":["A17A"],"data_types":[],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_calibrated_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_calibrated_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:56.661431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_calibrated_arcsav:data::1.0","title":"Apollo 17 ALSEP ARCSAV Heat Flow Experiment Calibrated Gradient Bridge Temperatures\n Collection (1975-092 to 1975-181)","description":"This collection contains fixed-width ASCII files contains fully processed,\n calibrated temperature data for the upper gradient bridge (thermal sensors) on \n both probes of the Heat Flow Experiment (HFE) at the Apollo 17 landing site. The time span is\n 02 April through 30 June 1975. These data were derived from raw measurements extracted from\n NASA's original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as\n ARCSAV tapes.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","MOON"],"instruments":["Apollo 17 Heat Flow Experiment"],"instrument_hosts":["A17A"],"data_types":["Data"],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_calibrated_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_calibrated_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:57.670684","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_calibrated_arcsav:document::1.0","title":"Apollo 17 ALSEP ARCSAV Heat Flow Experiment Calibrated Gradient Bridge Temperatures\n Document Collection (1975-092 to 1975-181)","description":"This collection contains documentation for the Apollo 17 ALSEP ARCSAV Heat Flow\n Experiment Calibrated Gradient Bridge Temperatures Collection (1975-092 to 1975-181). It\n includes a description of the calibrated data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","MOON"],"instruments":["Apollo 17 Heat Flow Experiment"],"instrument_hosts":["A17A"],"data_types":["Document"],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_calibrated_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_calibrated_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:58.696629","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_raw_arcsav::1.0","title":"Apollo 17 ALSEP ARCSAV Heat Flow Experiment Raw Cleaned ASCII Data Bundle","description":"This bundle contains fixed-width ASCII files of daily, raw cleaned measurements\n acquired by the Heat Flow Experiment (HFE) at the Apollo 17 landing site for the time span\n of 02 April through 30 June 1975. These data were extracted from NASA's original Apollo Lunar\n Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon","MOON"],"instruments":["A17A","Apollo 17 Heat Flow Experiment"],"instrument_hosts":["A17A"],"data_types":[],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_raw_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_raw_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:38:59.756932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_raw_arcsav:data::1.0","title":"Apollo 17 ALSEP ARCSAV Heat Flow Experiment Raw Cleaned ASCII Data Collection (1975-092\n to 1975-181)","description":"This collection contains two fixed-width ASCII files of daily raw cleaned science\n measurements acquired by the Heat Flow Experiment (HFE) at the Apollo 17 landing site for the\n time span of 02 April through 30 June 1975. One table provides Mode 1 (Gradient) data while\n the other table provides Mode 3 (Housekeeping) data. These data were extracted from NASA's\n original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV\n tapes, that recorded 24-hour, time-edited, and rearranged raw binary data transmitted from the\n Moon. The extracted binary data were corrected for obvious tape read errors then transformed\n to ASCII format for this archive. This collection also includes ASCII files of HFE-related\n command verification and raw analog housekeeping data extracted from the ARCSAV binary\n files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","MOON"],"instruments":["Apollo 17 Heat Flow Experiment"],"instrument_hosts":["A17A"],"data_types":["Data"],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_raw_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_raw_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:00.727672","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_raw_arcsav:document::1.0","title":"Apollo 17 ALSEP ARCSAV Heat Flow Experiment Raw Cleaned ASCII Document Collection\n (1975-092 to 1975-181)","description":"This collection contains documentation for the Apollo 17 ALSEP ARCSAV Heat Flow\n Experiment Raw Cleaned ASCII Data Collection (1975-092 to 1975-181). It includes a description\n of the raw data products and the Fortran programs used to extract data from raw binary Apollo\n 17 HFE ARCSAV files and transform to ASCII.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","MOON"],"instruments":["Apollo 17 Heat Flow Experiment"],"instrument_hosts":["A17A"],"data_types":["Document"],"start_date":"1975-04-02","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_raw_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_raw_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:01.665385","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_thermal_conductivity::1.0","title":"Apollo 17 Lunar Surface Experiments Package Heat Flow Experiment ASCII Data Bundle","description":"This data set comprises a reduced, subsampled set of the data returned \n from the Apollo 17 Heat Flow Experiment from 12 December 1972 through \n 31 December 1974. The experiment consisted of two probes placed by \n the Apollo 17 astronauts in holes drilled in the lunar surface near \n the Apollo 17 Lunar Surface Experiments Package site to measure the \n thermal conductivity. The data consist of a set of ten ASCII tables \n with time, temperature differences, and average temperatures readings \n measured by the thermocouples in the heat flow probes and probe \n cables. The data have been restored and reformatted from binary data \n held on magnetic tapes at the NASA National Space Science Data Center \n (NSSDC) under NSSDC ID of PSPG-00022 (old NSSDC ID 72-096C-01A).","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon"],"instruments":["A17A","Apollo 17 Lunar Surface Experiments Package Heat Flow Experiment"],"instrument_hosts":["Apollo 17 Lunar Surface Experiments Package","A17A"],"data_types":[],"start_date":"1972-12-12","stop_date":"1974-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_thermal_conductivity/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_thermal_conductivity/bundle_a17hfe.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:02.686917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_thermal_conductivity:data::1.0","title":"Apollo 17 Lunar Surface Experiments Package Heat Flow Experiment ASCII Data Collection","description":"The Apollo 17 Lunar Surface Experiments Package Heat Flow Experiment Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Lunar Surface Experiments Package Heat Flow Experiment"],"instrument_hosts":["Apollo 17 Lunar Surface Experiments Package"],"data_types":["Data"],"start_date":"1972-12-12","stop_date":"1974-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_thermal_conductivity/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_thermal_conductivity/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:03.699105","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17hfe_thermal_conductivity:document::1.0","title":"Apollo 17 Lunar Surface Experiments Package Heat Flow Experiment Document Collection","description":"The Apollo 17 Lunar Surface Experiments Package Heat Flow Experiment Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Lunar Surface Experiments Package Heat Flow Experiment"],"instrument_hosts":["Apollo 17 Lunar Surface Experiments Package"],"data_types":["Document"],"start_date":"1972-12-12","stop_date":"1974-12-31","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_thermal_conductivity/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17hfe_thermal_conductivity/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:04.698065","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17leam_raw_arcsav::1.0","title":"Apollo 17 ALSEP ARCSAV Lunar Ejecta And Meteorites Experiment Raw Cleaned ASCII Data\n Bundle","description":"This bundle contains fixed-width ASCII files of daily, raw cleaned measurements\n acquired by the Lunar Ejecta And Meteorites (LEAM) Experiment at the Apollo 17 landing site\n for the time span of 02 April through 30 June 1975. These data were extracted from NASA's\n original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV\n tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon","Dust"],"instruments":["A17A","Apollo 17 Lunar Ejecta And Meteorites Experiment"],"instrument_hosts":["A17A"],"data_types":[],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:05.711887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17leam_raw_arcsav:data::1.0","title":"Apollo 17 ALSEP ARCSAV Lunar Ejecta And Meteorites Experiment Raw Cleaned ASCII Data\n Collection (1975-092 to 1975-181)","description":"This collection contains fixed-width ASCII files of daily raw cleaned science\n measurements acquired by the Lunar Ejecta And Meteorites (LEAM) Experiment at the Apollo 17\n landing site for the time span of 02 April through 30 June 1975. These data were extracted\n from NASA's original Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also\n known as ARCSAV tapes, that recorded 24-hour, time-edited, and rearranged raw binary data\n transmitted from the Moon. The extracted binary data were corrected for obvious tape read\n errors then transformed to ASCII format for this archive. This collection also includes ASCII\n files of LEAM-related command verification and raw analog housekeeping data extracted from the\n ARCSAV binary files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","Dust"],"instruments":["Apollo 17 Lunar Ejecta And Meteorites Experiment"],"instrument_hosts":["A17A"],"data_types":["Data"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:06.735086","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17leam_raw_arcsav:document::1.0","title":"Apollo 17 ALSEP ARCSAV Lunar Ejecta And Meteorites Experiment Raw Cleaned ASCII Document\n Collection (1975-092 to 1975-181)","description":"This collection contains documentation for the Apollo 17 ALSEP ARCSAV Lunar\n Ejecta And Meteorites Experiment Raw Cleaned ASCII Data Collection (1975-092 to 1975-181). It\n includes a description of the raw data products, an explanation of the film ID numbering\n convention used in the raw science data products, and the Fortran programs used to extract\n data from raw binary Apollo 17 LEAM ARCSAV files and transform to ASCII.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","Dust"],"instruments":["Apollo 17 Lunar Ejecta And Meteorites Experiment"],"instrument_hosts":["A17A"],"data_types":["Document"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:07.707527","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17leam_raw_worktape::1.0","title":"Apollo 17 ALSEP Work Tape Lunar Ejecta And Meteorites Experiment Raw Cleaned ASCII Data\n Bundle","description":"This bundle contains fixed-width ASCII files of raw cleaned measurements\n acquired by the Lunar Ejecta And Meteorites (LEAM) Experiment at the Apollo 17 landing site\n for the time span of 01 March through 18 July 1976, which were the last 140 days of LEAM\n operation. These data were extracted from ALSEP normal-bit-rate Work Tape files.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon","Dust"],"instruments":["A17A","Apollo 17 Lunar Ejecta And Meteorites Experiment"],"instrument_hosts":["A17A"],"data_types":[],"start_date":"1976-03-01","stop_date":"1976-07-18","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_worktape/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_worktape/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:08.696116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17leam_raw_worktape:data::1.0","title":"Apollo 17 ALSEP Work Tape Lunar Ejecta And Meteorites Experiment Raw Cleaned ASCII Data\n Collection (1976-061 to 1976-200)","description":"This collection contains fixed-width ASCII files of daily raw cleaned science\n measurements acquired by the Lunar Ejecta And Meteorites (LEAM) Experiment at the Apollo 17\n landing site for the time span of 01 March through 18 July 1976, which were the last 140 days\n of LEAM operation. These data were extracted from Apollo Lunar Surface Experiments Package\n (ALSEP) normal-bit-rate Work Tape files that contain time-edited and rearranged raw binary\n data transmitted from the Moon. The extracted binary data were corrected for obvious bit\n errors then transformed to ASCII format for this archive. This collection also includes ASCII\n files of LEAM-related command verification and raw analog housekeeping data extracted from the\n Work Tape binary files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","Dust"],"instruments":["Apollo 17 Lunar Ejecta And Meteorites Experiment"],"instrument_hosts":["A17A"],"data_types":["Data"],"start_date":"1976-03-01","stop_date":"1976-07-18","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_worktape/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_worktape/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:09.713347","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17leam_raw_worktape:document::1.0","title":"Apollo 17 ALSEP Work Tape Lunar Ejecta And Meteorites Experiment Raw Cleaned ASCII\n Document Collection (1976-061 to 1976-200)","description":"This collection contains documentation for the Apollo 17 ALSEP Work Tape Lunar\n Ejecta And Meteorites Experiment Raw Cleaned ASCII Data Collection (1976-061 to 1976-200).\n includes a description of the raw data products, an explanation of the film ID numbering\n convention used in the raw science data products, and the Fortran programs used to extract\n data from raw binary Apollo 17 LEAM data from ALSEP normal-bit-rate Work Tape files and\n transform to ASCII.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","Dust"],"instruments":["Apollo 17 Lunar Ejecta And Meteorites Experiment"],"instrument_hosts":["A17A"],"data_types":["Document"],"start_date":"1976-03-01","stop_date":"1976-07-18","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_worktape/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leam_raw_worktape/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:10.759451","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17leamcal::1.0","title":"Apollo 17 Lunar Ejecta And Meteorites Experiment Calibration Notebook Bundle","description":"This bundle contains a digital reproduction of one hand-written laboratory\n notebook of calibration analysis for the Apollo 17 Lunar Ejecta And Meteorites (LEAM)\n Experiment detector, which was identical to Pioneer 8 and 9 Cosmic Dust Detectors\n (CDD).","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon","Dust"],"instruments":["A17A","Apollo 17 Lunar Ejecta And Meteorites Experiment"],"instrument_hosts":["A17A"],"data_types":[],"start_date":"1972-12-07","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leamcal/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leamcal/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:11.742006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17leamcal:calibration::1.0","title":"Apollo 17 Lunar Ejecta And Meteorites Experiment Calibration Notebook Collection","description":"This collection contains a digital reproduction of one hand-written laboratory\n notebook of calibration analysis by Dr. Otto E. Berg for the Apollo 17 Lunar Ejecta And\n Meteorites (LEAM) Experiment. Dr. Berg used this work along with analyses of data acquired by\n the Pioneer 8 and 9 Cosmic Dust Detectors, which were identical to LEAM detector, to\n calibrate the Apollo 17 LEAM data. Dr. Berg was the principal investigator for all three\n instruments.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon","Dust"],"instruments":["Apollo 17 Lunar Ejecta And Meteorites Experiment"],"instrument_hosts":["A17A"],"data_types":["Calibration"],"start_date":"1972-12-07","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leamcal/calibration/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17leamcal/calibration/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:12.695107","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17lsg_raw_arcsav::1.0","title":"Apollo 17 ALSEP ARCSAV Lunar Surface Gravimeter Raw Cleaned ASCII Data Bundle","description":"This bundle contains fixed-width ASCII files of daily, raw cleaned measurements\n acquired by the Lunar Surface Gravimeter (LSG) at the Apollo 17 landing site for the time span\n of 02 April through 30 June 1975. These data were extracted from NASA's original Apollo Lunar\n Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV tapes.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon"],"instruments":["A17A","Apollo 17 Lunar Surface Gravimeter"],"instrument_hosts":["A17A"],"data_types":[],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17lsg_raw_arcsav/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17lsg_raw_arcsav/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:13.840480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17lsg_raw_arcsav:data::1.0","title":"Apollo 17 ALSEP ARCSAV Lunar Surface Gravimeter Raw Cleaned ASCII Data Collection (1975-092 to\n 1975-181)","description":"This collection contains fixed-width ASCII files of daily raw cleaned science\n measurements acquired by the Lunar Surface Gravimeter (LSG) at the Apollo 17 landing site for\n the time span of 02 April through 30 June 1975. These data were extracted from NASA's original\n Apollo Lunar Surface Experiments Package (ALSEP) archive tapes, also known as ARCSAV tapes,\n that recorded 24-hour, time-edited, and rearranged raw binary data transmitted from the Moon.\n The extracted binary data were corrected for obvious tape read errors then transformed to\n ASCII format for this archive. This collection also includes ASCII files of LSG-related\n command verification and raw analog housekeeping data extracted from the ARCSAV binary\n files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Lunar Surface Gravimeter"],"instrument_hosts":["A17A"],"data_types":["Data"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17lsg_raw_arcsav/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17lsg_raw_arcsav/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:14.707248","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17lsg_raw_arcsav:document::1.0","title":"Apollo 17 ALSEP ARCSAV Lunar Surface Gravimeter Raw Cleaned ASCII Document Collection (1975-092 to\n 1975-181)","description":"This collection contains documentation for the Apollo 17 ALSEP ARCSAV Lunar\n Surface Gravimeter Raw Cleaned ASCII Data Collection (1975-092 to 1975-181). It includes a\n description of the raw data products and the Fortran programs used to extract data from raw\n binary Apollo 17 LSG ARCSAV files and transform to ASCII.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Lunar Surface Gravimeter"],"instrument_hosts":["A17A"],"data_types":["Document"],"start_date":"1975-04-01","stop_date":"1975-06-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17lsg_raw_arcsav/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17lsg_raw_arcsav/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:15.703110","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17photosupportdata::1.1","title":"Apollo 17 Photographic Ephemeris Support Data Bundle","description":"This bundle contains ephemeris support data (spacecraft state vectors, camera\n orientation, photograph position, and lighting data) computed during the Apollo era for\n analyzing and using photographic images taken of the moon on 10-16 December 1972 by the Apollo\n 17 Metric (Mapping) and Panoramic Cameras from lunar orbit. This bundle also includes digital\n scans of the original tabular data output on microfilm.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon"],"instruments":["A17C","A17C","Apollo 17 Metric (Mapping) Camera","Apollo 17 Panoramic Camera (Pancam)"],"instrument_hosts":["A17C"],"data_types":[],"start_date":"1972-12-10","stop_date":"1972-12-16","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17photosupportdata/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17photosupportdata/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:16.720057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17photosupportdata:geom_orbital_photo_ephem::1.2","title":"Apollo 17 Metric (Mapping) and Panoramic Cameras - Photographic Ephemeris Support Data\n Collection","description":"This collection contains comma-separated ASCII tables of ephemeris data\n (spacecraft state vectors, camera orientation, photograph position, and lighting data)\n computed during the Apollo era for analyzing and using photographic images taken of the moon\n on 10-16 December 1972 by the Apollo 17 Metric (Mapping) and Panoramic Cameras from lunar\n orbit. These tables were produced using optical character recognition (OCR) software to read\n TIFF images of scanned tabular output on microfilm. These scans were merged and provided in\n this collection as two PDF/A files, one for each camera.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Metric (Mapping) Camera","Apollo 17 Panoramic Camera (Pancam)"],"instrument_hosts":["A17C"],"data_types":["Data"],"start_date":"1972-12-10","stop_date":"1972-12-16","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17photosupportdata/geometry_orbital_photographic_ephemeris/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17photosupportdata/geometry_orbital_photographic_ephemeris/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:17.714476","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17sep::1.0","title":"Apollo 17 Surface Electrical Properties Experiment Calibrated ASCII Data Bundle","description":"This bundle contains two comma-delimited ASCII files of calibrated lunar surface\n electromagnetic field and navigation (range) data from the Surface Electrical Properties (SEP)\n Experiment at the Apollo 17 landing site for the time span of 11-13 December 1972. One file\n contains straightened science and navigation (range) data; the other file contains only\n unstraightened science data. These data were extracted from binary files held on magnetic tape\n at the NASA Space Science Data Coordinated Archive as data set PSPG-00559, then reformatted to\n ASCII. This bundle also contains a high-resolution digital reproduction of the SEP final\n technical report that contains plots of the complete set of processed lunar field data, as\n decibal values versus range, and explanations the data processing and calibration techniques\n implemented by the SEP instrument team.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon"],"instruments":["A17L","Apollo 17 Surface Electrical Properties (SEP) Experiment"],"instrument_hosts":["A17L"],"data_types":[],"start_date":"1972-12-11","stop_date":"1977-12-13","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17sep/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17sep/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:18.720891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17sep:data::1.0","title":"Apollo 17 Surface Electrical Properties Experiment Calibrated ASCII Data Collection","description":"This collection two comma-delimited ASCII files of calibrated lunar surface\n electromagnetic field data at six measured frequencies from 1.0 to 32.1 MHz and navigation\n (range) data from the Surface Electrical Properties (SEP) Experiment at the Apollo 17 landing\n site for the time span of 11-13 December 1972. One file contains straightened science and\n navigation (range) data; the other file contains only unstraightened science data. These data\n were extracted from binary files held on magnetic tape at the NASA Space Science Data\n Coordinated Archive as data set PSPG-00559, then reformatted to ASCII. The bundle description\n in the document collection describes the format of these ASCII data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Surface Electrical Properties (SEP) Experiment"],"instrument_hosts":["A17L"],"data_types":["Document"],"start_date":"1972-12-11","stop_date":"1972-12-13","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17sep/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17sep/data/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:19.712908","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17sep:document::1.0","title":"Apollo 17 Surface Electrical Properties Experiment Calibrated ASCII Data - Document Collection","description":"This collection contains supporting documentation for the Apollo 17 Surface\n Electrical Properties Experiment Calibrated ASCII Data Bundle. It includes a bundle\n description document that describes the calibrated ASCII data products in the data collection\n and the contents of this document collection. This document collection includes a\n high-resolution digital reproduction (microfiche scans) of the final technical report for the\n Apollo 17 Surface Electrical Properties Experiment. The report contains plots of the complete\n set of processed lunar field data, as dB values versus range, at six measured frequencies from\n 1.0 to 32.1 MHz for the time span of 11-13 December 1972. The three-part report is provided as\n three PDF/A files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Surface Electrical Properties (SEP) Experiment"],"instrument_hosts":["A17L"],"data_types":["Document"],"start_date":"1972-12-11","stop_date":"1972-12-13","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17sep/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17sep/document/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:20.770964","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17tg_traverse_gravity::1.0","title":"Apollo 17 Lunar Traverse Gravimeter Data Bundle","description":"This data set contains a table of readings from the Traverse Gravimeter \n Experiment performed during the Apollo 17 mission. The gravimeter, \n which recorded relative measurements of the local gravitational field \n at the lunar surface, was manually run by the astronauts near the \n Lunar Module landing site. The data table includes 23 valid gravity \n values, with calibrations and corrections, that were obtained from 12 \n to 14 December 1972. Supporting documentation includes the Apollo 17 \n Traverse Gravimeter Experiment Final Report.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 17"],"targets":["Moon"],"instruments":["A17L","Apollo 17 Lunar Module Traverse Gravimeter"],"instrument_hosts":["Apollo 17 Lunar Module","A17L"],"data_types":[],"start_date":"1972-12-12","stop_date":"1972-12-14","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17tg_traverse_gravity/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17tg_traverse_gravity/bundle_a17tg.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:21.782327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17tg_traverse_gravity:data::1.0","title":"Apollo 17 Lunar Module Traverse Gravimeter Data Collection","description":"The Apollo 17 Lunar Module Traverse Gravimeter Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Lunar Module Traverse Gravimeter"],"instrument_hosts":["Apollo 17 Lunar Module"],"data_types":["Data"],"start_date":"1972-12-12","stop_date":"1972-12-14","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17tg_traverse_gravity/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17tg_traverse_gravity/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:22.748437","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:a17tg_traverse_gravity:document::1.0","title":"Apollo 17 Lunar Module Traverse Gravimeter Document Collection","description":"The Apollo 17 Lunar Module Traverse Gravimeter Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":["Apollo 17 Lunar Module Traverse Gravimeter"],"instrument_hosts":["Apollo 17 Lunar Module"],"data_types":["Document"],"start_date":"1972-12-12","stop_date":"1972-12-14","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17tg_traverse_gravity/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-a17tg_traverse_gravity/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:23.796760","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollo_pse::1.0","title":"Apollo Seismic Data Bundle","description":"The Apollo Seismic data bundle consists of Passive Seismic Experiment (PSE) observations in two \n collections, the SEED (Standard for the Exchange of Earthquake Data) collection and the ASCII \n table collection. The SEED collection contains data in MiniSEED files and their metadata in \n DatalessSEED files. The ASCII Table collection contains the same data in PDS-compliant ASCII \n files, with the data in GeoCSV (comma-separated value) tables and the metadata in StationXML \n files.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 11","Apollo 12","Apollo 14","Apollo 15","Apollo 16","APOLLO 11","APOLLO 12","APOLLO 14","APOLLO 15","APOLLO 16"],"targets":["Moon"],"instruments":["A11E","A12A","A14A","A15A","A16A","Apollo 11 Passive Seismic Experiment (PSE)","Apollo 12 Passive Seismic Experiment (PSE)","Apollo 14 Passive Seismic Experiment (PSE)","Apollo 15 Passive Seismic Experiment (PSE)","Apollo 16 Passive Seismic Experiment (PSE)"],"instrument_hosts":["APOLLO 11 EARLY APOLLO SCIENTIFIC EXPERIMENTS PACKAGE","APOLLO 12 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 14 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 15 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 16 LUNAR SURFACE EXPERIMENTS PACKAGE","A11E","A12A","A14A","A15A","A16A"],"data_types":[],"start_date":"1969-01-01","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_pse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_pse/bundle_apollo_pse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:24.732014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollo_pse:data_seed::1.0","title":"Apollo Seismic Data Collection in SEED Format","description":"The Apollo PSE data_seed collection contains observations of the PSE\n in dataless-SEED and mini-SEED format.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 11","Apollo 12","Apollo 14","Apollo 15","Apollo 16","APOLLO 11","APOLLO 12","APOLLO 14","APOLLO 15","APOLLO 16"],"targets":["Moon"],"instruments":["Apollo 11 Passive Seismic Experiment (PSE)","Apollo 12 Passive Seismic Experiment (PSE)","Apollo 14 Passive Seismic Experiment (PSE)","Apollo 15 Passive Seismic Experiment (PSE)","Apollo 16 Passive Seismic Experiment (PSE)"],"instrument_hosts":["APOLLO 11 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 12 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 14 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 15 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 16 LUNAR SURFACE EXPERIMENTS PACKAGE"],"data_types":["Data"],"start_date":"1969-11-19","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_pse/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_pse/data/collection_data_seed.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:25.730826","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollo_pse:document::1.0","title":"Apollo PSE Document Collection","description":"Apollo PSE Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 11","Apollo 12","Apollo 14","Apollo 15","Apollo 16","APOLLO 11","APOLLO 12","APOLLO 14","APOLLO 15","APOLLO 16"],"targets":["Moon"],"instruments":["Apollo 11 Passive Seismic Experiment (PSE)","Apollo 12 Passive Seismic Experiment (PSE)","Apollo 14 Passive Seismic Experiment (PSE)","Apollo 15 Passive Seismic Experiment (PSE)","Apollo 16 Passive Seismic Experiment (PSE)"],"instrument_hosts":["APOLLO 11 EARLY APOLLO SCIENTIFIC EXPERIMENTS PACKAGE","APOLLO 12 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 14 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 15 LUNAR SURFACE EXPERIMENTS PACKAGE","APOLLO 16 LUNAR SURFACE EXPERIMENTS PACKAGE"],"data_types":["Document"],"start_date":"1969-01-01","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_pse/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_pse/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:26.736370","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollo_seismic_event_catalog::1.0","title":"Apollo Passive Seismic Experiment Expanded Event Catalog Bundle","description":"Apollo Passive Seismic Experiment Expanded Event Catalog.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 12","Apollo 14","Apollo 15","Apollo 16","APOLLO 12","APOLLO 14","APOLLO 15","APOLLO 16"],"targets":["Moon"],"instruments":["A12A","A14A","A15A","A16A","Apollo 12 Passive Seismic Experiment (PSE)","Apollo 14 Passive Seismic Experiment (PSE)","Apollo 15 Passive Seismic Experiment (PSE)","Apollo 16 Passive Seismic Experiment (PSE)"],"instrument_hosts":["A12A","A14A","A15A","A16A"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_seismic_event_catalog/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_seismic_event_catalog/bundle_apollo_seismic_event_catalog.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:27.738565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollo_seismic_event_catalog:data::1.0","title":"Apollo Passive Seismic Experiment Expanded Event Catalog Data Collection","description":"Apollo Passive Seismic Experiment Expanded Event Catalog.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12","Apollo 14","Apollo 15","Apollo 16","APOLLO 12","APOLLO 14","APOLLO 15","APOLLO 16"],"targets":["Moon"],"instruments":["Apollo 12 Passive Seismic Experiment (PSE)","Apollo 14 Passive Seismic Experiment (PSE)","Apollo 15 Passive Seismic Experiment (PSE)","Apollo 16 Passive Seismic Experiment (PSE)"],"instrument_hosts":["A12A","A14A","A15A","A16A"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_seismic_event_catalog/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_seismic_event_catalog/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:28.748847","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollo_seismic_event_catalog:document::1.0","title":"Apollo Passive Seismic Experiment Expanded Event Catalog Document Collection","description":"Apollo Passive Seismic Experiment Expanded Event Catalog.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12","Apollo 14","Apollo 15","Apollo 16","APOLLO 12","APOLLO 14","APOLLO 15","APOLLO 16"],"targets":["Moon"],"instruments":["Apollo 12 Passive Seismic Experiment (PSE)","Apollo 14 Passive Seismic Experiment (PSE)","Apollo 15 Passive Seismic Experiment (PSE)","Apollo 16 Passive Seismic Experiment (PSE)"],"instrument_hosts":["A12A","A14A","A15A","A16A"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_seismic_event_catalog/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollo_seismic_event_catalog/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:29.733123","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollodoc::1.0","title":"Apollo Documents Bundle","description":"This bundle collects documentation common to Apollo Program data archived in the\n NASA Planetary Data System.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Apollo 12","Apollo 14","Apollo 15","Apollo 16","Apollo 17"],"targets":["Moon","Dust"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:30.744505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollodoc:a12doc::1.0","title":"Apollo 12 Document Collection","description":"This collection contains documents common to Apollo 12 archives in PDS. Contents\n include the Apollo 12 Mission and Preliminary Science Reports and Technical Crew Debrief by\n NASA, and overviews of the mission, its instrument hosts (spacecraft) and the associated\n instruments (experiments).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1969-11-14","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a12/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a12/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:31.737890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollodoc:a14doc::1.0","title":"Apollo 14 Document Collection","description":"This collection contains documents common to Apollo 14 archives in PDS. Contents\n include the Apollo 14 Mission and Preliminary Science Reports and Technical Crew Debrief by\n NASA, and overviews of the mission, its instrument hosts (spacecraft) and the associated\n instruments (experiments).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 14"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1971-01-31","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a14/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a14/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:32.781761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollodoc:a15doc::1.0","title":"Apollo 15 Document Collection","description":"This collection contains documents common to Apollo 15 archives in PDS. Contents\n include the Apollo 15 Mission and Preliminary Science Reports and Technical Crew Debrief by\n NASA, Apollo 15 Photographic Support documentation, and overviews of the mission, its\n instrument hosts (spacecraft) and the associated instruments (experiments).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 15"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1971-07-26","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a15/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a15/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:33.828686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollodoc:a16doc::1.0","title":"Apollo 16 Document Collection","description":"This collection contains documents common to Apollo 16 archives in PDS. Contents\n include the Apollo 16 Mission and Preliminary Science Reports and Technical Crew Debrief by\n NASA, Apollo 16 Photographic Support documentation, and overviews of the mission, its\n instrument hosts (spacecraft) and the associated instruments (experiments).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 16"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1972-04-16","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a16/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a16/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:34.811647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollodoc:a17doc::1.0","title":"Apollo 17 Documentation Collection","description":"This collection contains documents common to Apollo 17 archives in PDS. Contents\n include the Apollo 17 Mission and Preliminary Science Reports and Technical Crew Debrief by\n NASA, Apollo 17 Photographic Support documentation, and overviews of the mission, its\n instrument hosts (spacecraft) and the associated instruments (experiments).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 17"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1972-12-07","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a17/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_a17/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:36.424928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:apollodoc:commondoc::1.0","title":"Apollo Common Document Collection","description":"This collection contains Apollo Project publications and supporting information\n common to multiple Apollo archives in the NASA Planetary Data System. Contents include NASA\n publications such as the Apollo Program Summary Report, the Apollo Scientific Experiments Data\n Handbook, the ALSEP Systems Handbooks and Flight System Familiarization Manuals, the ALSEP\n Termination Report, the ALSEP Performance Reports, and the ALSEP Archive Tape (ARCSAV)\n Description Document.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Apollo 12","Apollo 14","Apollo 15","Apollo 16","Apollo 17"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1969-07-16","stop_date":"1977-09-30","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_common/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-apollodoc/document_common/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:36.993745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:chang_e_microwave_processed::1.0","title":"Chang'e-1 and 2 Microwave Radiometer Processed Data Bundle","description":"This bundle contains Planetary Data System 4 (PDS4) versions of\n calibrated (L2C) data products from the Chinese Lunar Exploration\n Program (CLEP)'s Chang'e-1 (CE-1) and Chang'e-2 (CE-2) Microwave\n Radiometer (MRM) instruments, along with new maps and tables derived\n from these data. Please refer to document/primary_bundle_documentation.md\n (urn:nasa:pds:chang_e_microwave_processed:document:primary_bundle_documentation)\n for details on bundle contents and structure.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Chang'E-1","Chang'E-2"],"targets":["Moon"],"instruments":["Chang'E-1 Microwave Radiometer","Chang'E-2 Microwave Radiometer"],"instrument_hosts":["Chang'E-1","Chang'E-2"],"data_types":[],"start_date":"2007-11-27","stop_date":"2011-05-20","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:38.029229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:chang_e_microwave_processed:browse::1.0","title":"Chang'e-1 and 2 Microwave Radiometer Processed Data Bundle Browse Collection","description":"This collection contains browse versions of the map products in this\n bundle's data collection. Please refer to primary_bundle_documentation.md\n in this bundle's document collection\n (urn:nasa:pds:chang_e_microwave_processed:document:primary_bundle_documentation)\n for a complete description of these products and this collection's layout.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Chang'E-1","Chang'E-2"],"targets":["Moon"],"instruments":["Chang'E-1 Microwave Radiometer","Chang'E-2 Microwave Radiometer"],"instrument_hosts":["Chang'E-1","Chang'E-2"],"data_types":["Browse"],"start_date":"2007-11-27","stop_date":"2011-05-20","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/browse/collection_browse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:39.075767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:chang_e_microwave_processed:data::1.0","title":"Chang'e-1 and 2 Microwave Radiometer Processed Data Bundle Data Collection","description":"This collection contains concatenated tables produced from the CE-1 and\n CE-2 MRM L2C data, along with deconvolved maps derived from these data.\n Please refer to primary_bundle_documentation.md in this bundle's\n document collection\n (urn:nasa:pds:chang_e_microwave_processed:document:primary_bundle_documentation)\n for a complete description of these files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Chang'E-1","Chang'E-2"],"targets":["Moon"],"instruments":["Chang'E-1 Microwave Radiometer","Chang'E-2 Microwave Radiometer"],"instrument_hosts":["Chang'E-1","Chang'E-2"],"data_types":["Data"],"start_date":"2007-11-27","stop_date":"2011-05-20","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:40.054794","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:chang_e_microwave_processed:data_source::1.0","title":"Chang'e-1 and 2 Microwave Radiometer Processed Data Bundle Source Data\n Collection","description":"This collection contains PDS4-labeled versions of the Chang'e-1 and -2\n microwave radiometer L2C ASCII tables released by the China National\n Space Administration. Please refer to primary_bundle_documentation.md\n in this bundle's document collection\n (urn:nasa:pds:chang_e_microwave_processed:document:primary_bundle_documentation)\n for a complete description of these files and the directory structure of\n this collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Chang'E-1","Chang'E-2"],"targets":["Moon"],"instruments":["Chang'E-1 Microwave Radiometer","Chang'E-2 Microwave Radiometer"],"instrument_hosts":["Chang'E-1","Chang'E-2"],"data_types":["Data"],"start_date":"2007-11-27","stop_date":"2011-05-20","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/data_source/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/data_source/collection_data_source.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:41.011217","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:chang_e_microwave_processed:document::1.0","title":"Chang'e-1 and 2 Microwave Radiometer Processed Data Bundle Document\n Collection","description":"This collection contains a single documentation product that provides\n a full description of the bundle's contents.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Chang'E-1","Chang'E-2"],"targets":["Moon"],"instruments":["Chang'E-1 Microwave Radiometer","Chang'E-2 Microwave Radiometer"],"instrument_hosts":["Chang'E-1","Chang'E-2"],"data_types":["Document"],"start_date":"2007-11-27","stop_date":"2011-05-20","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:42.007130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:chang_e_microwave_processed:miscellaneous::1.0","title":"Chang'e-1 and 2 Microwave Radiometer Processed Data Bundle Miscellaneous Collection","description":"This collection contains derived data products from non-Chang'e\n instruments used as input and/or intermediate products for the processing\n pipelines used to create this bundle. Please refer to their labels for\n provenance, and to document/primary_bundle_documentation.md\n (urn:nasa:pds:chang_e_microwave_processed:document:primary_bundle_documentation)\n for a description of usage.","node":"geo","pds_version":"PDS4","type":"collection","missions":["LUNAR RECONNAISSANCE ORBITER","Kaguya"],"targets":["Moon"],"instruments":["LUNAR RECONNAISSANCE ORBITER CAMERA","DIVINER LUNAR RADIOMETER EXPERIMENT","LUNAR ORBITER LASER ALTIMETER","LISM"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER","Kaguya"],"data_types":["Miscellaneous"],"start_date":"2007-11-27","stop_date":"2011-05-20","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-chang_e_microwave_processed/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:43.014884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clementine1_bistatic::1.0","title":"Clementine 1 Intermediate and Reduced Bistatic Radar Bundle","description":"This bundle contains Clementine (Deep Space Program Science Experiment) \n data migrated from the PDS3 archive. The bundle includes bistatic radar\n observations of the Moon processed to intermediate and reduced levels at \n Stanford University in binary table and image formats.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Deep Space Program Science Experiment"],"targets":["Moon"],"instruments":["Rss","Radio Science Subsystem"],"instrument_hosts":["Clementine 1","Clem1"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/bundle_clementine1_bistatic.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:44.019835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clementine1_bistatic:calib::1.0","title":"Clementine 1 Intermediate and Reduced Bistatic Radar Bundle: Calib Collection","description":"Collection of the calibration products from the Clementine 1 \n Intermediate and Reduced Bistatic Radar Bundle.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Deep Space Program Science Experiment"],"targets":["Moon"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Clementine 1"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/calib/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/calib/collection_calib.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:45.019109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clementine1_bistatic:catalog::1.0","title":"Clementine 1 Intermediate and Reduced Bistatic Radar Bundle: Catalog Collection","description":"Collection of the catalog document products from the Clementine 1 \n Intermediate and Reduced Bistatic Radar Bundle.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Deep Space Program Science Experiment"],"targets":["Moon"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Clementine 1"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/catalog/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/catalog/collection_catalog.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:46.025974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clementine1_bistatic:data::1.0","title":"Clementine 1 Intermediate and Reduced Bistatic Radar Bundle: Data Collection","description":"Collection of the partially processed data products from the Clementine \n 1 Intermediate and Reduced Bistatic Radar Bundle.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Deep Space Program Science Experiment"],"targets":["Moon"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Clementine 1"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:47.024921","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clementine1_bistatic:document::1.0","title":"Clementine 1 Intermediate and Reduced Bistatic Radar Bundle: Document Collection","description":"Collection of the document products from the Clementine \n 1 Intermediate and Reduced Bistatic Radar Bundle.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Deep Space Program Science Experiment"],"targets":["Moon"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Clementine 1"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:48.033563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clementine1_bistatic:geometry::1.0","title":"Clementine 1 Intermediate and Reduced Bistatic Radar Bundle: Geometry Collection","description":"Collection of the geometry products from the Clementine \n 1 Intermediate and Reduced Bistatic Radar Bundle.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Deep Space Program Science Experiment"],"targets":["Moon"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Clementine 1"],"data_types":["Geometry"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/geometry/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/geometry/collection_geometry.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:49.032347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clementine1_bistatic:img::1.0","title":"Clementine 1 Intermediate and Reduced Bistatic Radar Bundle: Img Collection","description":"Collection of the image (grid) products from the Clementine 1 \n Intermediate and Reduced Bistatic Radar Bundle.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Deep Space Program Science Experiment"],"targets":["Moon"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Clementine 1"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/img/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/img/collection_img.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:50.095542","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clementine1_bistatic:sort::1.0","title":"Clementine 1 Intermediate and Reduced Bistatic Radar Bundle: Sort Collection","description":"Collection of the sorted and aggregated data products from the \n Clementine 1 Intermediate and Reduced Bistatic Radar Bundle.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Deep Space Program Science Experiment"],"targets":["Moon"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Clementine 1"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/sort/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-clementine1_bistatic/sort/collection_sort.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:51.060253","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:kaguya_grs_spectra::1.1","title":"Kaguya Gamma-Ray Spectrometer Corrected Spectra Bundle","description":"This archive contains Kaguya Gamma-Ray Spectrometer (KGRS) corrected and calibrated time-series \n spectra and ephemerides, pointing, and geometry (EPG) data for the nominal and extended observation \n periods of JAXA's SELENE (Kaguya) mission.\n\n The SELENE mission was the Japanese mission to the Moon with a main orbiter \"Kaguya\" and\n two daughter relay satellites launched on Sep. 14, 2007. KGRS was mounted on the deck of the\n main orbiter. It employed a high-purity Ge (HPGe) crystal as a main detector, and surrounding\n BGO and plastic scintillators as anti-coincidence detectors to reduce backgrounds. The\n Ge crystal was cooled by a Sterling refrigerator. It made close-proximity observations of the\n Moon from Dec. 14, 2007 to Dec. 11, 2008 at the high circular orbital altitude of 100 km, and\n from Feb. 10 to May 28 in 2009 at the low elliptical orbital altitude of ~30 x 50 km.\n\n KGRS recorded energy spectra of gamma rays in two gain modes simultaneously; high gain (0.1\n to 3 MeV) and low gain (0.1 to 13 MeV), each of which was analyzed by the 13-bit (8192 ch)\n analog-to-digital converter (ADC). While the former has a higher spectral resolution over the\n energy range of radioactive elements, the latter has better statistics and covers the whole energy\n range of major rock-forming elements, including the Fe neutron capture line at 7.6 MeV. The\n accumulation time of each spectrum was 17 s. Both modes of spectra are included in this archive.\n\n The observation epochs of KGRS consists of three regular measurement periods (Period 1 to 3),\n background measurements, and the annealing of the Ge crystal. The HPGe detector was annealed\n from 16 to 25, December 2008, which improved energy resolution by a factor of two.\n Period 1 and 2 lasted two and five months, respectively, with limited spatial or spectral\n resolutions. Period 3 lasted ~3.5 months (including dead time) with the best spatial and spectral\n resolutions. In addition, spectra from the background measurement when the satellite was flipped\n and the detector faced deep space can be analyzed to estimate the background gamma-ray intensity\n from the satellite due to the exposure to galactic cosmic rays.\n\n This archive consists of three spectrum files (each corresponding to one KGRS epoch) and one unified\n EPG file. The spectrum files contain a time series of corrected and calibrated pulse height spectra\n acquired by KGRS's HPGe detector in the lunar orbit. In the spectrum files, each row contains the \n spacecraft clock (sclk) ticks and UTC time corresponding to the end of the accumulation interval \n (17 s), with the two sets of the 8192-channel HPGe spectra accumulated. In the EPG file, each row\n starts with sclk recorded at the end of the accumulation interval to match spacecraft positions, \n pointing, and correction factors with the corrected spectra. Note that the UTC time and ephemeris time\n included in the EPG file correspond to the midpoint of the accumulation interval.\n\n The Kaguya Gamma-Ray Spectrometer Corrected Spectra bundle was created by Naoyuki Yamashita at Planetary\n Science Institute, AZ, USA, with the permission of JAXA and the KGRS instrument PI Prof. Nobuyuki Hasebe.\n This work was supported by the NASA under Grant No. NNX16AG54G issued through the Planetary Data Archiving,\n Restoration, and Tools Program (PDART), Research Opportunities in Space and Earth Sciences (ROSES) 2015.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Kaguya"],"targets":["Moon"],"instruments":["Grs","GRS"],"instrument_hosts":["Kaguya"],"data_types":[],"start_date":"2007-12-14","stop_date":"2009-05-28","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/bundle_kaguya_derived.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:52.106939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:kaguya_grs_spectra:context::1.0","title":"Kaguya Gamma-Ray Spectrometer Context Product Collection","description":"Context product collection for the Kaguya Gamma-Ray Spectrometer Corrected Spectra bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Kaguya"],"targets":["Moon"],"instruments":["GRS"],"instrument_hosts":["Kaguya"],"data_types":["Context"],"start_date":"2007-12-14","stop_date":"2009-05-28","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/context/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/context/context_collection_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:53.035465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:kaguya_grs_spectra:data_ephemerides::1.0","title":"Kaguya Gamma-Ray Spectrometer Ephemerides, Pointing and Geometry Collection","description":"Kaguya Gamma-Ray Spectrometer (KGRS) ephemerides, pointing and geometry (EPG) data","node":"geo","pds_version":"PDS4","type":"collection","missions":["Kaguya"],"targets":["Moon"],"instruments":["GRS"],"instrument_hosts":["Kaguya"],"data_types":["Data"],"start_date":"2007-12-14","stop_date":"2008-02-16","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/data_ephemerides/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/data_ephemerides/ephemerides_data_collection_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:54.042916","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:kaguya_grs_spectra:data_spectra::1.0","title":"Kaguya Gamma-Ray Spectrometer Corrected Spectra Collection","description":"Kaguya Gamma-Ray Spectrometer (KGRS) corrected and calibrated spectra","node":"geo","pds_version":"PDS4","type":"collection","missions":["Kaguya"],"targets":["Moon"],"instruments":["GRS"],"instrument_hosts":["Kaguya"],"data_types":["Data"],"start_date":"2007-12-14","stop_date":"2008-02-16","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/data_spectra/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/data_spectra/spectra_data_collection_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:55.047265","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:kaguya_grs_spectra:document::1.0","title":"Kaguya Gamma-Ray Spectrometer Corrected Spectra Document Collection","description":"Document collection for the Kaguya Gamma-Ray Spectrometer Corrected Spectra bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Kaguya"],"targets":["Moon"],"instruments":["GRS"],"instrument_hosts":["Kaguya"],"data_types":["Document"],"start_date":"2007-12-14","stop_date":"2008-02-16","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-kaguya_grs_spectra/document/document_collection_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:56.038771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pioneer89cdd::1.1","title":"Pioneer 8 and 9 Cosmic Dust Detector Calibration Notebook Bundle","description":"This bundle contains digital reproductions of two hand-written laboratory\n notebooks of calibration analyses for the Pioneer 8 and 9 Cosmic Dust Detectors (CDD). These\n results aided the calibration effort for the Apollo 17 Lunar Ejecta And Meteorite Experiment\n (LEAM) detector, which was identical to the Pioneer CDDs.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Pioneer 8","Pioneer 9"],"targets":["Dust"],"instruments":["P8","P9","Pioneer 8 Cosmic Dust Detector","Pioneer 9 Cosmic Dust Detector"],"instrument_hosts":["P8","P9"],"data_types":[],"start_date":"1967-10-10","stop_date":"1996-03-05","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneer89cdd/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneer89cdd/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:57.160804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pioneer89cdd:calibration::1.1","title":"Pioneer 8 and 9 Cosmic Dust Detector Calibration Notebook Collection","description":"This collections contains digital reproductions of two hand-written laboratory\n notebooks of calibration analyses by Dr. Otto E. Berg for the Pioneer 8 and 9 Cosmic Dust\n Detectors (CDD). Dr. Berg used these analyses to help calibrate data acquired by the Apollo 17\n Lunar Ejecta And Meteorites (LEAM) Experiment detector, which was identical to the Pioneer\n CDDs. Dr. Berg was the principal investigator for all three instruments.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Pioneer 8","Pioneer 9"],"targets":["Dust"],"instruments":["Pioneer 8 Cosmic Dust Detector","Pioneer 9 Cosmic Dust Detector"],"instrument_hosts":["P8","P9"],"data_types":["Calibration"],"start_date":"1967-10-10","stop_date":"1996-03-05","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneer89cdd/calibration/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneer89cdd/calibration/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:58.061086","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pioneerdoc::1.0","title":"Pioneer Documents Bundle","description":"This bundle contains documentation common to Pioneer Program data archived in\n the NASA Planetary Data System.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Pioneer 8","Pioneer 9"],"targets":["Solar System","Dust","SOLAR_SYSTEM"],"instruments":["P8","P9","Pioneer 8 Cosmic Dust Detector","Pioneer 9 Cosmic Dust Detector"],"instrument_hosts":["P8","P9"],"data_types":[],"start_date":"1967-12-13","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneerdoc/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneerdoc/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:39:59.091320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pioneerdoc:p8doc::1.1","title":"Pioneer 8 Documentation Collection","description":"This collection contains documents common to Pioneer 8 archives in the NASA\n Planetary Data System. Contents include overviews of the mission, the instrument host\n (spacecraft), and the associated instruments (experiments).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Pioneer 8"],"targets":["Solar System","Dust","SOLAR_SYSTEM"],"instruments":["P8","P9","Pioneer 8 Cosmic Dust Detector","Pioneer 9 Cosmic Dust Detector"],"instrument_hosts":["P8","P9"],"data_types":["Document"],"start_date":"1967-12-13","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneerdoc/document_p8/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneerdoc/document_p8/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:00.072842","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pioneerdoc:p9doc::1.1","title":"Pioneer 9 Documentation Collection","description":"This collection contains documents common to Pioneer 9 archives in the NASA\n Planetary Data System. Contents include overviews of the mission, the instrument host\n (spacecraft), and the associated instruments (experiments).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Pioneer 9"],"targets":["Solar System","Dust","SOLAR_SYSTEM"],"instruments":["P8","P9","Pioneer 8 Cosmic Dust Detector","Pioneer 9 Cosmic Dust Detector"],"instrument_hosts":["P8","P9"],"data_types":["Document"],"start_date":"1968-11-08","stop_date":"1983-05-19","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneerdoc/document_p9/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-pioneerdoc/document_p9/collection.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:01.093670","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:trang2020_moon_space_weathering::1.0","title":"Lunar Space Weathering Maps Bundle","description":"Lunar Space Weathering Maps","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Kaguya","KAGUYA"],"targets":["Moon"],"instruments":["Lism","LISM"],"instrument_hosts":["KAGUYA","Kaguya"],"data_types":[],"start_date":"2008-03-14","stop_date":"2009-05-09","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-trang2020_moon_space_weathering/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-trang2020_moon_space_weathering/bundle_trang2020_moon_spaceweathering.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:02.136325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:trang2020_moon_space_weathering:browse::1.0","title":"Trang 2020 Lunar Space Weathering Maps Browse Collection","description":"Lunar Space Weathering Maps Browse Collection by David Trang","node":"geo","pds_version":"PDS4","type":"collection","missions":["Kaguya","KAGUYA"],"targets":["Moon"],"instruments":["LISM"],"instrument_hosts":["KAGUYA"],"data_types":["Browse"],"start_date":"2008-03-14","stop_date":"2009-05-09","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-trang2020_moon_space_weathering/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-trang2020_moon_space_weathering/browse/collection_browse_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:03.137244","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:trang2020_moon_space_weathering:data::1.0","title":"Trang 2020 Lunar Space Weathering Maps Data Collection","description":"Lunar Space Weathering Maps Data Collection by David Trang","node":"geo","pds_version":"PDS4","type":"collection","missions":["Kaguya","KAGUYA"],"targets":["Moon"],"instruments":["LISM"],"instrument_hosts":["KAGUYA"],"data_types":["Data"],"start_date":"2008-03-14","stop_date":"2009-05-09","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-trang2020_moon_space_weathering/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-trang2020_moon_space_weathering/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:04.065305","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:trang2020_moon_space_weathering:document::1.0","title":"Trang 2020 Lunar Space Weathering Maps Document Collection","description":"Lunar Space Weathering Maps Document Collection by David Trang","node":"geo","pds_version":"PDS4","type":"collection","missions":["Kaguya","KAGUYA"],"targets":["Moon"],"instruments":["LISM"],"instrument_hosts":["KAGUYA"],"data_types":["Document"],"start_date":"2008-03-14","stop_date":"2009-05-09","browse_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-trang2020_moon_space_weathering/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lunar/urn-nasa-pds-trang2020_moon_space_weathering/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:05.057232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asurpif_photos_amboycrater::1.0","title":"Arizona State University RPIF - Amboy Crater, California Field Photos","description":"ASURPIF Digitization of Dr. Ronald Greeley's Field Notes","node":"geo","pds_version":"PDS4","type":"bundle","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/bundle_asurpif_photos_amboycrater.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:06.565424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asurpif_photos_amboycrater:browse_thumbnail_photos::1.0","title":"ASU RPIF California Amboy Crater Field Photo Thumbnail Collection","description":"ASURPIF Digitization of Dr. Ronald Greeley's Field Photos for Amboy Crater in California","node":"geo","pds_version":"PDS4","type":"collection","missions":["Greeley Field Amboycrater","R. Greeley Field Investigation, Amboy Crater, California"],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/browse_thumbnail_photos/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/browse_thumbnail_photos/collection_browse_thumbnail_photos_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:07.567228","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asurpif_photos_amboycrater:document_database::1.0","title":"ASU RPIF California Amboy Crater Field Photo Database Collection","description":"ASURPIF Digitization of Dr. Ronald Greeley's Field Photos for Amboy Crater in California","node":"geo","pds_version":"PDS4","type":"collection","missions":["Greeley Field Amboycrater","R. Greeley Field Investigation, Amboy Crater, California"],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/document_database/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/document_database/collection_document_database_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:08.593672","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asurpif_photos_amboycrater:document_photos::1.0","title":"ASU RPIF California Amboy Crater Field Photo Collection","description":"ASURPIF Digitization of Dr. Ronald Greeley's Field Photos for Amboy Crater in California","node":"geo","pds_version":"PDS4","type":"collection","missions":["Greeley Field Amboycrater","R. Greeley Field Investigation, Amboy Crater, California"],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/document_photos/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/document_photos/collection_document_photos_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:09.587618","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asurpif_photos_amboycrater:document_reports::1.0","title":"ASU RPIF California Amboy Crater Report Collection","description":"ASURPIF Digitization of Dr. Ronald Greeley's Field Photos for Amboy Crater in California","node":"geo","pds_version":"PDS4","type":"collection","missions":["Greeley Field Amboycrater","R. Greeley Field Investigation, Amboy Crater, California"],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/document_reports/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/document_reports/collection_document_reports_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:10.584753","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asurpif_photos_amboycrater:document_user_guide::1.0","title":"ASU RPIF California Amboy Crater User's Guide Collection","description":"ASURPIF Digitization of Dr. Ronald Greeley's Field Photos for Amboy Crater in California","node":"geo","pds_version":"PDS4","type":"collection","missions":["Greeley Field Amboycrater","R. Greeley Field Investigation, Amboy Crater, California"],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/document_user_guide/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/earth/urn-nasa-pds-asurpif_photos_amboycrater/document_user_guide/collection_document_user_guide_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:11.659427","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:venus_radar_level2::1.0","title":"Arecibo/Green Bank Radar Multi-Look Map Products of Venus Bundle","description":"Earth-based radar observations of Venus multi-look map products bundle.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Campbell Venus Radar","B. Campbell Venus Earth-Based Radar Observations"],"targets":["Venus"],"instruments":["Trans S","Recv S","4Mm Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","Robert C. Byrd Green Bank Telescope","Green Bank Telescope 4mm Receiver"],"instrument_hosts":["Arecibo Observatory","Green Bank Observatory"],"data_types":[],"start_date":"1988-06-17","stop_date":"2020-05-30","browse_url":"https://pds-geosciences.wustl.edu/venus/urn-nasa-pds-venus_radar_level2/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/venus/urn-nasa-pds-venus_radar_level2/bundle_venus_radar_level2.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:13.610828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:venus_radar_level2:browse::1.0","title":"Arecibo/Green Bank Radar Multi-Look Map Products of Venus Browse Data Collection","description":"Venus Earth-Based Level-2 Browse Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Campbell Venus Radar","B. Campbell Venus Earth-Based Radar Observations"],"targets":["Venus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","Robert C. Byrd Green Bank Telescope","Green Bank Telescope 4mm Receiver"],"instrument_hosts":["Arecibo Observatory","Green Bank Observatory"],"data_types":["Browse"],"start_date":"1988-06-17","stop_date":"2020-05-30","browse_url":"https://pds-geosciences.wustl.edu/venus/urn-nasa-pds-venus_radar_level2/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/venus/urn-nasa-pds-venus_radar_level2/browse/collection_browse_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:14.657054","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:venus_radar_level2:data::2.0","title":"Arecibo/Green Bank Radar Multi-Look Map Products of Venus Data Collection","description":"Venus Earth-Based Level-2 Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Campbell Venus Radar","B. Campbell Venus Earth-Based Radar Observations"],"targets":["Venus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","Robert C. Byrd Green Bank Telescope","Green Bank Telescope 4mm Receiver"],"instrument_hosts":["Arecibo Observatory","Green Bank Observatory"],"data_types":["Data"],"start_date":"1988-06-17","stop_date":"2020-05-30","browse_url":"https://pds-geosciences.wustl.edu/venus/urn-nasa-pds-venus_radar_level2/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/venus/urn-nasa-pds-venus_radar_level2/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:15.590446","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:venus_radar_level2:document::1.0","title":"Arecibo/Green Bank Radar Multi-Look Map Products of Venus Document Collection","description":"Venus Earth-Based Level-2 Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Campbell Venus Radar","B. Campbell Venus Earth-Based Radar Observations"],"targets":["Venus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","Robert C. Byrd Green Bank Telescope","Green Bank Telescope 4mm Receiver"],"instrument_hosts":["Arecibo Observatory","Green Bank Observatory"],"data_types":["Document"],"start_date":"1988-06-17","stop_date":"2020-05-30","browse_url":"https://pds-geosciences.wustl.edu/venus/urn-nasa-pds-venus_radar_level2/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/venus/urn-nasa-pds-venus_radar_level2/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:16.594479","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:frankenspectra_database::1.0","title":"Frankenspectra Database Bundle","description":"The purpose of this investigation was to analyze, using reflectance spectroscopy, 27 fine-particulate \n (less than 10-um) terrestrial minerals to create a far-UV through MIR single spectrum built from the best pieces \n of spectra acquired at multiple U.S. and international labs (i.e., Frankenspectra). Multiple-laboratory spectral \n comparisons increased confidence in determining both better spectral shapes and overall representative reflectance \n values by considering the reflectance data of each sample as an ensemble.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Frankenspectra","Frankenspectra Database"],"targets":[],"instruments":["Mcpherson Vuvas","Ocean Optics Uvflame","Asd Fieldspec3","Asd Labspec4","Bruker Vertex80V","McPherson VUVAS","Ocean Optics UV-Flame","Analytical Spectral Devices FieldSpec 3","Analytical Spectral Devices LabSpec 4","Bruker VERTEX 80v"],"instrument_hosts":["Laboratory for Atmospheric and Space Physics","Planetary Geosciences Laboratory","C-Tape Planetary Spectrophotometer Facility","DLR Planetary Spectroscopy Laboratory"],"data_types":[],"start_date":"2018-02-15","stop_date":"2023-04-13","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-frankenspectra_database/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-frankenspectra_database/bundle_frankenspectra_database.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:18.596768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:frankenspectra_database:data_frankenspectra::1.0","title":"Frankenspectra Database - Frankenspectra Data Collection","description":"Frankenspectra Database - Frankenspectra Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Frankenspectra","Frankenspectra Database"],"targets":[],"instruments":["McPherson VUVAS","Ocean Optics UV-Flame","Analytical Spectral Devices FieldSpec 3","Analytical Spectral Devices LabSpec 4","Bruker VERTEX 80v"],"instrument_hosts":["Laboratory for Atmospheric and Space Physics","Planetary Geosciences Laboratory","C-Tape Planetary Spectrophotometer Facility","DLR Planetary Spectroscopy Laboratory"],"data_types":["Data"],"start_date":"2018-02-15","stop_date":"2023-04-13","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-frankenspectra_database/data_frankenspectra/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-frankenspectra_database/data_frankenspectra/collection_data_frankenspectra.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:19.619241","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:frankenspectra_database:data_raw::1.0","title":"Frankenspectra Database - Raw Data Collection","description":"Frankenspectra Database - Raw Data Collection. This collection contains the data from which the Frankenspectra were derived. The data files contain the \n different wavelength sections that were combined into the Frankenspectra. As such, the collection and data files are referred to as 'raw' even though the \n different spectral sections were processed and calibrated as described in the frankenspectra_description.pdf document in the document collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Frankenspectra","Frankenspectra Database"],"targets":[],"instruments":["McPherson VUVAS","Ocean Optics UV-Flame","Analytical Spectral Devices FieldSpec 3","Analytical Spectral Devices LabSpec 4","Bruker VERTEX 80v"],"instrument_hosts":["Laboratory for Atmospheric and Space Physics","Planetary Geosciences Laboratory","C-Tape Planetary Spectrophotometer Facility","DLR Planetary Spectroscopy Laboratory"],"data_types":["Data"],"start_date":"2018-02-15","stop_date":"2023-04-13","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-frankenspectra_database/data_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-frankenspectra_database/data_raw/collection_data_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:20.598347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:frankenspectra_database:document::1.0","title":"Frankenspectra Database - Document Collection","description":"Frankenspectra Database - Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Frankenspectra","Frankenspectra Database"],"targets":[],"instruments":["McPherson VUVAS","Ocean Optics UV-Flame","Analytical Spectral Devices FieldSpec 3","Analytical Spectral Devices LabSpec 4","Bruker VERTEX 80v"],"instrument_hosts":["Laboratory for Atmospheric and Space Physics","Planetary Geosciences Laboratory","C-Tape Planetary Spectrophotometer Facility","DLR Planetary Spectroscopy Laboratory"],"data_types":["Document"],"start_date":"2018-02-15","stop_date":"2023-04-13","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-frankenspectra_database/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-frankenspectra_database/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:21.611453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:relab::3.0","title":"RELAB Spectral Library Bundle","description":"The RELAB Spectral Library Bundle contains \n reflectance spectra and ancillary data \n acquired at the Reflectance Experiment Laboratory (RELAB) at Brown University.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Relab Speclib","RELAB Spectral Library"],"targets":[],"instruments":["Bd Vnir","Bc Ftir1","Bcf Ftir2","RELAB Bidirectional Spectrometer","Nicolet 740 FTIR with Spectra-Tech Bi-conical Diffuse Reflectance Accessory","Thermo Nicolet Nexus 870 FTIR with Pike AutoDiff Diffuse Reflectance Accessory"],"instrument_hosts":["NASA/Keck Reflectance Experiment Laboratory (RELAB)"],"data_types":[],"start_date":"1981-02-10","stop_date":"2022-12-12","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/bundle_relab.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:22.620080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:relab:context::1.1","title":"RELAB Spectral Library Context Product Collection","description":"The RELAB Spectral Library Context Product Collection contains \n context products for the RELAB investigation and instruments.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Relab Speclib","RELAB Spectral Library"],"targets":[],"instruments":["Bd Vnir","Bc Ftir1","Bcf Ftir2","RELAB Bidirectional Spectrometer","Nicolet 740 FTIR with Spectra-Tech Bi-conical Diffuse Reflectance Accessory","Thermo Nicolet Nexus 870 FTIR with Pike AutoDiff Diffuse Reflectance Accessory"],"instrument_hosts":["NASA/Keck Reflectance Experiment Laboratory (RELAB)"],"data_types":["Context"],"start_date":"1981-02-10","stop_date":"2022-12-12","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/context/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/context/collection_context.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:23.612780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:relab:data_ancillary_chemistry::3.0","title":"RELAB Reflectance Spectra Ancillary Chemistry Data Collection","description":"The RELAB Reflectance Spectra Ancillary Chemistry Data Collection contains \n chemical analyses of specimens whose reflectance spectra were\n acquired at the Reflectance Experiment Laboratory (RELAB) at Brown University.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Relab Speclib","RELAB Spectral Library"],"targets":[],"instruments":["RELAB Bidirectional Spectrometer","Nicolet 740 FTIR with Spectra-Tech Bi-conical Diffuse Reflectance Accessory","Thermo Nicolet Nexus 870 FTIR with Pike AutoDiff Diffuse Reflectance Accessory"],"instrument_hosts":["NASA/Keck Reflectance Experiment Laboratory (RELAB)"],"data_types":["Data"],"start_date":"1981-02-10","stop_date":"2022-12-12","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/data_ancillary_chemistry/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/data_ancillary_chemistry/collection_data_ancillary_chemistry.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:24.689967","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:relab:data_ancillary_image::3.0","title":"RELAB Reflectance Spectra Ancillary Image Data Collection","description":"The RELAB Reflectance Spectra Ancillary Image Data Collection contains \n photographs of specimens whose reflectance spectra were\n acquired at the Reflectance Experiment Laboratory (RELAB) at Brown University.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Relab Speclib","RELAB Spectral Library"],"targets":[],"instruments":["RELAB Bidirectional Spectrometer","Nicolet 740 FTIR with Spectra-Tech Bi-conical Diffuse Reflectance Accessory","Thermo Nicolet Nexus 870 FTIR with Pike AutoDiff Diffuse Reflectance Accessory"],"instrument_hosts":["NASA/Keck Reflectance Experiment Laboratory (RELAB)"],"data_types":["Data"],"start_date":"1981-02-10","stop_date":"2022-12-12","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/data_ancillary_image/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/data_ancillary_image/collection_data_ancillary_image.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:25.956403","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:relab:data_reflectance::5.0","title":"RELAB Reflectance Spectra Data Collection","description":"The RELAB Reflectance Spectra Data Collection contains reflectance spectra\n acquired at the Reflectance Experiment Laboratory (RELAB) at Brown University.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Relab Speclib","RELAB Spectral Library"],"targets":[],"instruments":["RELAB Bidirectional Spectrometer","Nicolet 740 FTIR with Spectra-Tech Bi-conical Diffuse Reflectance Accessory","Thermo Nicolet Nexus 870 FTIR with Pike AutoDiff Diffuse Reflectance Accessory"],"instrument_hosts":["NASA/Keck Reflectance Experiment Laboratory (RELAB)"],"data_types":["Data"],"start_date":"1981-02-10","stop_date":"2022-12-12","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/data_reflectance/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/data_reflectance/collection_data_reflectance.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:26.956946","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:relab:document::5.0","title":"RELAB Spectral Library Document Collection","description":"The RELAB Spectral Library Document Collection contains these documents:\n - The RELAB User Manual\n - The Spectral Library Dictionary Guide","node":"geo","pds_version":"PDS4","type":"collection","missions":["Relab Speclib","RELAB Spectral Library"],"targets":[],"instruments":["RELAB Bidirectional Spectrometer","Nicolet 740 FTIR with Spectra-Tech Bi-conical Diffuse Reflectance Accessory","Thermo Nicolet Nexus 870 FTIR with Pike AutoDiff Diffuse Reflectance Accessory"],"instrument_hosts":["NASA/Keck Reflectance Experiment Laboratory (RELAB)"],"data_types":["Document"],"start_date":"1981-02-10","stop_date":"2022-12-12","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:27.962872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:relab:xml_schema::2.0","title":"RELAB Spectral Library XML Schema Collection","description":"The RELAB Spectral Library XML Schema Collection contains \n the XML schema and Schematron files for the PDS4 Spectral\n Library Data Dictionary.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Relab Speclib","RELAB Spectral Library"],"targets":[],"instruments":["Bd Vnir","Bc Ftir1","Bcf Ftir2","RELAB Bidirectional Spectrometer","Nicolet 740 FTIR with Spectra-Tech Bi-conical Diffuse Reflectance Accessory","Thermo Nicolet Nexus 870 FTIR with Pike AutoDiff Diffuse Reflectance Accessory"],"instrument_hosts":["NASA/Keck Reflectance Experiment Laboratory (RELAB)"],"data_types":["XML Schema"],"start_date":"1981-02-10","stop_date":"2022-12-12","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/xml_schema/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-relab/xml_schema/collection_schema.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:28.964573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:xas_synthesized_glasses::1.0","title":"XAS Spectra of Synthesized Glasses Bundle","description":"XAS spectra of synthesized glasses bundle.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Xas Synthesized Glasses","Investigation of XAS Spectra of Synthesized Glasses"],"targets":[],"instruments":["Beamline13Ide","Beamline 13-ID-E (with Si311 Detector)"],"instrument_hosts":["Advanced Photon Source"],"data_types":[],"start_date":"2018-02-10","stop_date":"2019-02-16","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-xas_synthesized_glasses/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-xas_synthesized_glasses/bundle_xas_synthesized_glasses.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:29.989602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:xas_synthesized_glasses:data::1.0","title":"XAS Spectra of Synthesized Glasses Data Collection","description":"XAS spectra of synthesized glasses data collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Xas Synthesized Glasses","Investigation of XAS Spectra of Synthesized Glasses"],"targets":[],"instruments":["Beamline 13-ID-E (with Si311 Detector)"],"instrument_hosts":["Advanced Photon Source"],"data_types":["Data"],"start_date":"2018-02-10","stop_date":"2019-02-16","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-xas_synthesized_glasses/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-xas_synthesized_glasses/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:30.988424","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:xas_synthesized_glasses:document::1.0","title":"XAS Spectra of Synthesized Glasses Document Collection","description":"XAS spectra of synthesized glasses document collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Xas Synthesized Glasses","Investigation of XAS Spectra of Synthesized Glasses"],"targets":[],"instruments":["Beamline 13-ID-E (with Si311 Detector)"],"instrument_hosts":["Advanced Photon Source"],"data_types":["Document"],"start_date":"2018-02-10","stop_date":"2019-02-16","browse_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-xas_synthesized_glasses/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/speclib/urn-nasa-pds-xas_synthesized_glasses/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:32.033158","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:crism_ato_s_iof_lml::1.0","title":"CRISM ATO S-Band Log Maximum Likelihood Method Bundle","description":"CRISM ATO S-Band Maximum Likelihood Method Bundle","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":["Mro","COMPACT RECONNAISSANCE IMAGING SPECTROMETER FOR MARS for MRO"],"instrument_hosts":["Mars Reconnaissance Orbiter","Mro"],"data_types":[],"start_date":"2010-07-23","stop_date":"2021-07-08","browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/bundle_ato_s_iof_lml.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:33.532322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:crism_ato_s_iof_lml:browse::1.0","title":"CRISM ATO S-Band Browse Collection","description":"CRISM ATO S-Band sensor space browse images","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":["COMPACT RECONNAISSANCE IMAGING SPECTROMETER FOR MARS for MRO"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2010-07-23","stop_date":"2021-07-08","browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/browse/collection_browse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:34.467082","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:crism_ato_s_iof_lml:data_lml::1.0","title":"CRISM ATO S-Band LML Data Collection","description":"CRISM ATO S-Band sensor space images with log maximum likelihood processing","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":["COMPACT RECONNAISSANCE IMAGING SPECTROMETER FOR MARS for MRO"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2010-07-23","stop_date":"2021-07-08","browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/data/collection_data_lml.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:35.468174","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:crism_ato_s_iof_lml:document::1.0","title":"CRISM ATO S-Band Maximum Likelihood Method Document Collection","description":"CRISM ATO S-Band Maximum Likelihood Method Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":["COMPACT RECONNAISSANCE IMAGING SPECTROMETER FOR MARS for MRO"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":["Document"],"start_date":"2010-07-23","stop_date":"2021-07-08","browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:36.487823","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:crism_ato_s_iof_lml:miscellaneous::1.0","title":"CRISM ATO S-Band Maximum Likelihood Method Miscellaneous Collection","description":"CRISM ATO S-Band Maximum Likelihood Method Miscellaneous Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":["COMPACT RECONNAISSANCE IMAGING SPECTROMETER FOR MARS for MRO"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":["Miscellaneous"],"start_date":"2010-07-23","stop_date":"2021-07-08","browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-crism_ato_s_iof_lml/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:37.468243","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro_sharad_simulations::1.3","title":"MRO SHARAD Clutter Simulations Bundle","description":"MRO SHARAD Clutter Simulations Data Products, Browse Products, and Documentation","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Mro","SHALLOW RADAR for MRO"],"instrument_hosts":["MARS RECONNAISSANCE ORBITER","Mro"],"data_types":[],"start_date":"2006-12-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-mro_sharad_simulations/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-mro_sharad_simulations/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:38.472967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro_sharad_simulations:browse::14.0","title":"MRO SHARAD Clutter Simulations Browse Collection","description":"MRO SHARAD Clutter Simulations Browse Image Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["SHALLOW RADAR for MRO"],"instrument_hosts":["MARS RECONNAISSANCE ORBITER"],"data_types":["Browse"],"start_date":"2006-12-06","stop_date":"2025-05-05","browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-mro_sharad_simulations/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-mro_sharad_simulations/browse/collection_browse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:39.480649","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro_sharad_simulations:data::14.0","title":"MRO SHARAD Clutter Simulations Data Collection","description":"MRO SHARAD Clutter Simulations Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["SHALLOW RADAR for MRO"],"instrument_hosts":["MARS RECONNAISSANCE ORBITER"],"data_types":["Data"],"start_date":"2006-12-06","stop_date":"2025-05-05","browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-mro_sharad_simulations/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-mro_sharad_simulations/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:40.558951","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mro_sharad_simulations:document::14.0","title":"MRO SHARAD Clutter Simulations Document Collection","description":"MRO SHARAD Clutter Simulations Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["SHALLOW RADAR for MRO"],"instrument_hosts":["MARS RECONNAISSANCE ORBITER"],"data_types":["Document"],"start_date":"2006-12-06","stop_date":"2025-05-05","browse_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-mro_sharad_simulations/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mro/urn-nasa-pds-mro_sharad_simulations/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:41.508812","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-2-EDR-V1","title":"MRO M CRISM 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-crism-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-crism-2-edr-v1/","scraped_at":"2026-02-03T20:40:42.496906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-4-TYPESPEC-V1","title":"MRO M CRISM 4 TYPESPEC V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-crism-4-typespec-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-crism-4-typespec-v1/","scraped_at":"2026-02-03T20:40:43.543843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-6-DDR-V1","title":"MRO M CRISM 6 DDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-crism-6-ddr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-crism-6-ddr-v1/","scraped_at":"2026-02-03T20:40:44.539254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-CRISM-6-LDR-V1","title":"MRO M CRISM 6 LDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-crism-6-ldr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-crism-6-ldr-v1/","scraped_at":"2026-02-03T20:40:45.494525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-RSS-1-MAGR-V1","title":"MRO M RSS 1 MAGR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-rss-1-magr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-rss-1-magr-v1/","scraped_at":"2026-02-03T20:40:46.502171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-RSS-5-SDP-V1","title":"MRO M RSS 5 SDP V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-rss-5-sdp-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-rss-5-sdp-v1/","scraped_at":"2026-02-03T20:40:47.488653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-SHARAD-3-EDR-V1","title":"MRO M SHARAD 3 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-sharad-3-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-sharad-3-edr-v1/","scraped_at":"2026-02-03T20:40:48.501103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-SHARAD-4-RDR-V1","title":"MRO M SHARAD 4 RDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-sharad-4-rdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-sharad-4-rdr-v1/","scraped_at":"2026-02-03T20:40:49.503259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-SHARAD-5-3D-V1","title":"MRO M SHARAD 5 3D V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-sharad-5-3d-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-sharad-5-3d-v1/","scraped_at":"2026-02-03T20:40:50.514032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRO-M-SHARAD-5-RADARGRAM-V2","title":"MRO M SHARAD 5 RADARGRAM V2","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mro/mro-m-sharad-5-radargram-v2/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mro/mro-m-sharad-5-radargram-v2/","scraped_at":"2026-02-03T20:40:51.503495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_0_2301::1.1","title":"Overview of MSL APXS Targets from Sol 0 to 2301","description":"Supporting Information for: Elemental composition and chemical evolution of geologic materials in Gale crater, Mars:\n\t\t\t APXS results from Bradbury Landing to the Vera Rubin Ridge","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2012-09-22","stop_date":"2019-01-26","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_2301/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_2301/bundle_msl_apxs_supplement_sols_0_2301.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:53.012597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_0_2301:data::1.0","title":"Overview of MSL APXS Targets from Sol 0 to 2301","description":"Supporting Information for: Elemental composition and chemical evolution of geologic materials in Gale crater, Mars:\n\t\t\t APXS results from Bradbury Landing to the Vera Rubin Ridge","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Msl"],"data_types":["Data"],"start_date":"2012-09-22","stop_date":"2019-01-26","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_2301/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_2301/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:54.034208","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_0_2301:document::1.0","title":"Overview of MSL APXS Targets from Sol 0 to 2301","description":"Supporting Information for: Elemental composition and chemical evolution of geologic materials in Gale crater, Mars:\n\t\t\t APXS results from Bradbury Landing to the Vera Rubin Ridge","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Msl"],"data_types":["Document"],"start_date":"2012-09-22","stop_date":"2019-01-26","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_2301/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_2301/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:55.093386","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_0_3076::1.1","title":"Summary and Geological Context of MSL APXS Targets from Sol 0 to 3076","description":"Supporting Information for: Manganese Mobility in Gale Crater, Mars: Leached Bedrock and Localized Enrichments","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Mars Science Laboratory","Msl"],"data_types":[],"start_date":"2012-09-22","stop_date":"2021-04-02","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_3076/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_3076/bundle_msl_apxs_supplement_sols_0_3076.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:56.073351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_0_3076:data::2.0","title":"Summary and Geological Context of MSL APXS Targets from Sol 0 to 3076","description":"Supporting Information for: Manganese Mobility in Gale Crater, Mars: Leached Bedrock and Localized Enrichments","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2012-09-22","stop_date":"2021-04-02","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_3076/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_3076/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:57.030186","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_0_3076:document::2.0","title":"Supporting Information Document for Manganese Mobility in Gale Crater, Mars: Leached Bedrock and Localized Enrichments","description":"Supporting Information Document for Manganese Mobility in Gale Crater, Mars: Leached Bedrock and Localized Enrichments","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Document"],"start_date":"2012-09-22","stop_date":"2021-04-02","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_3076/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_0_3076/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:58.052964","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_3054_3712::1.0","title":"Elemental Composition and Geological Context of MSL APXS Targets from Sol 3054 to 3712","description":"Supporting Information for: Elemental Composition and Isochemical Characteristics of the Clay-Sulfate Transition in Gale Crater, Mars: APXS Results from Mont Mercou to the Marker Band Valley","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Mars Science Laboratory","Msl"],"data_types":[],"start_date":"2021-03-08","stop_date":"2023-01-20","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_3054_3712/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_3054_3712/bundle_msl_apxs_supplement_sols_3054_3712.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:40:59.036433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_3054_3712:data::1.0","title":"Supporting Information Data Collection Inventory for: Elemental Composition and Geological Context of MSL APXS Targets from Sol 3054 to 3712","description":"Supporting Information Data Collection Inventory for: Elemental Composition and Geological Context of MSL APXS Targets from Sol 3054 to 3712","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2021-03-08","stop_date":"2023-01-20","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_3054_3712/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_3054_3712/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:00.049146","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_apxs_supplement_sols_3054_3712:document::1.0","title":"Supporting Information Document Collection Inventory for: Elemental Composition and Geological Context of MSL APXS Targets from Sol 3054 to 3712","description":"Supporting Information Document Collection Inventory for: Elemental Composition and Geological Context of MSL APXS Targets from Sol 3054 to 3712","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Document"],"start_date":"2021-03-08","stop_date":"2023-01-20","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_3054_3712/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_apxs_supplement_sols_3054_3712/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:01.031539","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_chemcam_psv_calibrated::1.1","title":"MSL ChemCam Passive Surface Spectra Bundle","description":"MSL ChemCam passive surface spectra bundle.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Msl","CHEMISTRY CAMERA LASER INDUCED BREAKDOWN SPECTROMETER"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl"],"data_types":[],"start_date":"2012-08-16","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/bundle_msl_chemcam_psv_calibrated.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:02.045863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_chemcam_psv_calibrated:data_rad::9.0","title":"MSL ChemCam Passive Surface Spectra Radiance Data Collection","description":"MSL ChemCam Passive Surface Spectra Radiance Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["CHEMISTRY CAMERA LASER INDUCED BREAKDOWN SPECTROMETER"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Data"],"start_date":"2012-08-16","stop_date":"2025-07-27","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/data_rad/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/data_rad/collection_data_rad_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:03.080923","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_chemcam_psv_calibrated:data_ref::9.0","title":"MSL ChemCam Passive Surface Spectra Reflectance Data Collection","description":"MSL ChemCam Passive Surface Spectra Reflectance Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["CHEMISTRY CAMERA LASER INDUCED BREAKDOWN SPECTROMETER"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Data"],"start_date":"2012-08-16","stop_date":"2025-07-27","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/data_ref/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/data_ref/collection_data_ref_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:04.085839","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_chemcam_psv_calibrated:data_table::8.0","title":"MSL ChemCam Passive Surface Spectra Table Data Collection","description":"MSL ChemCam Passive Surface Spectra Table Data Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["CHEMISTRY CAMERA LASER INDUCED BREAKDOWN SPECTROMETER"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Data"],"start_date":"2012-08-16","stop_date":"2025-07-27","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/data_table/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/data_table/collection_data_table_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:05.077176","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_chemcam_psv_calibrated:document::8.0","title":"MSL ChemCam Passive Surface Spectra Document Collection","description":"MSL ChemCam Passive Surface Spectra Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["CHEMISTRY CAMERA LASER INDUCED BREAKDOWN SPECTROMETER"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Document"],"start_date":"2012-08-16","stop_date":"2025-07-27","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_chemcam_psv_calibrated/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:06.104518","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_gt_diagenesis_supplement::1.1","title":"Database of Diagenetic Features in the Clay-Rich Unit of Gale Crater, Mars","description":"Supporting Information for: Overview of the Morphology and Chemistry of Diagenetic Features in the Clay-Rich Glen Torridon Unit of Gale Crater, Mars","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","ChemCam"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2019-01-24","stop_date":"2021-01-20","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_gt_diagenesis_supplement/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_gt_diagenesis_supplement/bundle_msl_gt_diagenesis_supplement.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:07.135147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_gt_diagenesis_supplement:data::1.1","title":"Database of Diagenetic Features in the Clay-Rich Unit of Gale Crater, Mars","description":"Supporting Information for: Overview of the Morphology and Chemistry of Diagenetic Features in the Clay-Rich Glen Torridon Unit of Gale Crater, Mars","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["ChemCam"],"instrument_hosts":["Msl"],"data_types":["Data"],"start_date":"2012-09-22","stop_date":"2019-01-26","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_gt_diagenesis_supplement/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_gt_diagenesis_supplement/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:08.817377","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_gt_diagenesis_supplement:document::1.1","title":"Database of Diagenetic Features in the Clay-Rich Unit of Gale Crater, Mars","description":"Supporting Information for: Overview of the Morphology and Chemistry of Diagenetic Features in the Clay-Rich Glen Torridon Unit of Gale Crater, Mars","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["ChemCam"],"instrument_hosts":["Msl"],"data_types":["Data"],"start_date":"2019-01-24","stop_date":"2021-01-20","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_gt_diagenesis_supplement/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_gt_diagenesis_supplement/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:09.378947","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mastcam_photometry::1.0","title":"MSL Mastcam Photometry Archive Bundle","description":"MSL Mastcam Photometry Archive Bundle","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","MAST CAMERA LEFT for MSL"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl"],"data_types":[],"start_date":"2012-08-26","stop_date":"2013-11-02","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_mastcam_photometry/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_mastcam_photometry/bundle_msl_mastcam_photometry.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:10.388376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mastcam_photometry:data::1.0","title":"MSL Mastcam Photometry Archive Data Collection","description":"MSL Mastcam Photometry Archive data collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["MAST CAMERA LEFT for MSL"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Data"],"start_date":"2012-08-26","stop_date":"2013-11-02","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_mastcam_photometry/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_mastcam_photometry/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:11.387886","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mastcam_photometry:document::1.0","title":"MSL Mastcam Photometry Archive Document Collection","description":"MSL Mastcam Photometry Archive document collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["MAST CAMERA LEFT for MSL"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Document"],"start_date":"2012-08-26","stop_date":"2013-11-02","browse_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_mastcam_photometry/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/msl/urn-nasa-pds-msl_mastcam_photometry/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:12.414333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-APXS-2-EDR-V1","title":"MSL M APXS 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/msl/msl-m-apxs-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/msl/msl-m-apxs-2-edr-v1/","scraped_at":"2026-02-03T20:41:13.433366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMIN-2-EDR-V1","title":"MSL M CHEMIN 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/msl/msl-m-chemin-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/msl/msl-m-chemin-2-edr-v1/","scraped_at":"2026-02-03T20:41:14.424414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-CHEMIN-4-RDR-V1","title":"MSL M CHEMIN 4 RDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/msl/msl-m-chemin-4-rdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/msl/msl-m-chemin-4-rdr-v1/","scraped_at":"2026-02-03T20:41:15.474201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-DAN-2-EDR-V1","title":"MSL M DAN 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/msl/msl-m-dan-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/msl/msl-m-dan-2-edr-v1/","scraped_at":"2026-02-03T20:41:16.903645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-SAM-2-EDR-V1","title":"MSL M SAM 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/msl/msl-m-sam-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/msl/msl-m-sam-2-edr-v1/","scraped_at":"2026-02-03T20:41:17.904409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hausrath_m2020_pixl_naltsos::1.1","title":"An Examination of Soil Crusts on the Floor of Jezero crater, Mars","description":"An Examination of Soil Crusts on the Floor of Jezero crater, Mars","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Pixl","PIXL Spectrometer"],"instrument_hosts":["Mars 2020","Mars2020"],"data_types":[],"start_date":"2021-06-26","stop_date":"2021-06-28","browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hausrath_m2020_pixl_naltsos/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hausrath_m2020_pixl_naltsos/bundle_hausrath_m2020_pixl_naltsos.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:19.413618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hausrath_m2020_pixl_naltsos:data::2.0","title":"An Examination of Soil Crusts on the Floor of Jezero crater, Mars","description":"Supporting Information for: An Examination of Soil Crusts on the Floor of Jezero crater, Mars","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["PIXL Spectrometer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-06-26","stop_date":"2021-06-28","browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hausrath_m2020_pixl_naltsos/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hausrath_m2020_pixl_naltsos/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:20.417695","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hausrath_m2020_pixl_naltsos:document::2.0","title":"Supporting Information Document for An Examination of Soil Crusts on the Floor of Jezero crater, Mars","description":"Supporting Information for: An Examination of Soil Crusts on the Floor of Jezero crater, Mars","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["PIXL Spectrometer"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":"2021-06-26","stop_date":"2021-06-28","browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hausrath_m2020_pixl_naltsos/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hausrath_m2020_pixl_naltsos/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:21.407089","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hurowitz_m2020_pixl_bright_angel::1.1","title":"Redox-Driven Mineral and Organic Associations in Jezero Crater, Mars Supplemental Information Bundle","description":"Redox-Driven Mineral and Organic Associations in Jezero Crater, Mars Supplemental Information","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Pixl","Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hurowitz_m2020_pixl_bright_angel/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hurowitz_m2020_pixl_bright_angel/bundle_hurowitz_m2020_pixl_bright_angel.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:22.448338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hurowitz_m2020_pixl_bright_angel:data::1.1","title":"Redox-Driven Mineral and Organic Associations in Jezero Crater, Mars Supplemental Information: Data Collection","description":"Redox-Driven Mineral and Organic Associations in Jezero Crater, Mars Supplemental Information: Data Collection (PMC Lists and Oxide Concentrations)","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hurowitz_m2020_pixl_bright_angel/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-hurowitz_m2020_pixl_bright_angel/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:23.490897","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_photometry::1.0","title":"Mars 2020 Mastcam-Z Photometry Archive Bundle","description":"Mars 2020 Mastcam-Z Photometry Archive Bundle","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Mastcamz","Mars 2020 Perseverance Rover Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["The Mars 2020 Perseverance Rover","Mars2020"],"data_types":[],"start_date":"2020-07-30","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mastcamz_photometry/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mastcamz_photometry/bundle_mars2020_mastcam_photometry.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:24.429473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_photometry:data::1.0","title":"Mars 2020 Mastcam-Z Photometry Archive Data Collection","description":"Mars 2020 Mastcam-Z Photometry Archive data collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Mars 2020 Perseverance Rover Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["The Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2020-07-30","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mastcamz_photometry/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mastcamz_photometry/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:25.498365","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_photometry:document::1.0","title":"Mars 2020 Mastcam-Z Photometry Archive Document Collection","description":"Mars 2020 Mastcam-Z Photometry Archive document collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Mars 2020 Perseverance Rover Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["The Mars 2020 Perseverance Rover"],"data_types":["Document"],"start_date":"2020-07-30","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mastcamz_photometry/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mastcamz_photometry/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:26.486194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mission::3.0","title":"Mars 2020 Mission Bundle","description":"Mars 2020 Perseverance Rover Cross-Instrument Documentation Products","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Edlcam","Lcam","Sherloc","Pixl","Rimfax","Supercam","Mars 2020 Engineering Camera Instrument Suite","Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System","Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)","Planetary Instrument for X-ray Lithochemistry (PIXL)","Radar Imager for Mars Subsurface Experiment (RIMFAX)","Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Mars 2020 Perseverance Rover","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:27.529342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mission:calibration_camera::1.1","title":"Collection of Camera calibration products: PDS4 Mars 2020 Perseverance Rover Engineering Cameras Data Products.","description":"Collection of CALIBRATION products used in this archive.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite","Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System","Mars 2020 Helicopter Camera Suite","Mars 2020 Pixl Micro-context Camera","Mars 2020 Sherloc Imager","Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)","Mars 2020 Mars Environmental Dynamics Analyzer (MEDA)","Radar Imager for Mars Subsurface Experiment (RIMFAX)","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Calibration"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/calibration_camera/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/calibration_camera/collection_calibration_camera.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:28.448234","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mission:document::14.0","title":"Collection of documents relevant to all PDS Mars 2020 archives","description":"Mars 2020 Perseverance Rover Mission Bundle documentation","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite","Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System","Mars 2020 Helicopter Camera Suite","Planetary Instrument for X-ray Lithochemistry (PIXL)","Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)","Spectrometer and Micro-Imager Suite (SuperCam)","Mars Environmental Dynamics Analyzer (MEDA)","Radar Imager for Mars Subsurface Experiment (RIMFAX)","Mars 2020 Mastcam-Zoom Camera Instrument Suite","Mars Oxygen In-Situ Resource Utilization Experiment (MOXIE)"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Document"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:29.449320","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mission:document_camera::14.0","title":"Collection of camera document products: PDS4 Mars 2020 Perseverance Rover Engineering Camera Data Products","description":"Collection of DOCUMENT products used in this archive.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite","Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System","Mars 2020 Helicopter Camera Suite","Mars 2020 Pixl Micro-context Camera","Mars 2020 Sherloc Imager","Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)","Mars 2020 Mars Environmental Dynamics Analyzer (MEDA)","Radar Imager for Mars Subsurface Experiment (RIMFAX)","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Document"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/document_camera/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/document_camera/collection_document_camera.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:30.440785","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mission:miscellaneous::1.1","title":"Collection of miscellaneous products: PDS4 Mars 2020 Perseverance Rover Engineering Cameras Data Products","description":"Collection of MISCELLANEOUS products used in this archive.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite","Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System","Mars 2020 Helicopter Camera Suite","Mars 2020 Pixl Micro-context Camera","Mars 2020 Sherloc Imager","Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)","Mars 2020 Mars Environmental Dynamics Analyzer (MEDA)","Radar Imager for Mars Subsurface Experiment (RIMFAX)","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Miscellaneous"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_mission/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:31.462253","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_pixl::2.0","title":"Mars 2020 PIXL Raw and Processed Data Bundle","description":"Mars 2020 Perseverance Rover PIXL Raw and Derived Data Products","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Pixl","Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/bundle_pixl.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:32.445361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_pixl:data_imaging::14.0","title":"PDS4 Mars 2020 Perseverance Rover Image Operations PIXL MCC Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"The data_imaging collection in the mars2020_pixl bundle is a collection of \n PIXL MCC (Micro Context Camera) image data products. The data products in\n this collection are all secondary members of the collection. They are \n primary members of the data_mcc_imgops collection in the mars2020_imgops\n bundle.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Pixl Micro-context Camera"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_imaging/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_imaging/collection_data_imaging.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:33.457295","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_pixl:data_oxides_pmc::10.0","title":"Mars 2020 PIXL PMC Oxides Data Collection","description":"Mars 2020 Perseverance Rover PIXL collection of pmc oxide data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_oxides_pmc/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_oxides_pmc/collection_data_oxides_pmc.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:34.469244","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_pixl:data_processed::14.0","title":"Mars 2020 PIXL Processed Data Collection","description":"Mars 2020 Perseverance Rover PIXL collection of processed data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_processed/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_processed/collection_data_processed.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:35.456381","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_pixl:data_raw_ancillary::14.0","title":"Mars 2020 PIXL Raw Ancillary Data Collection","description":"Mars 2020 Perseverance Rover PIXL collection of raw ancillary data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_raw_ancillary/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_raw_ancillary/collection_data_raw_ancillary.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:36.521627","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_pixl:data_raw_spectroscopy::14.0","title":"Mars 2020 PIXL Raw Spectroscopy Data Collection","description":"Mars 2020 Perseverance Rover PIXL collection of raw spectroscopy data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-03-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_raw_spectroscopy/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/data_raw_spectroscopy/collection_data_raw_spectroscopy.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:37.493961","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_pixl:document::14.0","title":"Mars 2020 PIXL Document Collection","description":"Mars 2020 Perseverance Rover PIXL document collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_pixl/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:38.544793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rimfax::1.0","title":"Mars 2020 RIMFAX Bundle","description":"Mars 2020 Perseverance Rover RIMFAX Raw and Calibrated Data Products","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Rimfax","Radar Imager for Mars Subsurface Experiment (RIMFAX)"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/bundle_rimfax.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:39.445422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rimfax:browse_radargram::13.0","title":"Mars 2020 RIMFAX Browse Data Collection","description":"Mars 2020 RIMFAX Browse Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Radar Imager for Mars Subsurface Experiment (RIMFAX)"],"instrument_hosts":["Perseverance"],"data_types":["Browse"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/browse_radargram/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/browse_radargram/collection_browse_radargram.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:40.467155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rimfax:data_calibrated::14.0","title":"Mars 2020 RIMFAX Calibrated Data Collection","description":"Mars 2020 RIMFAX Calibrated Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Radar Imager for Mars Subsurface Experiment (RIMFAX)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2020-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/data_calibrated/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/data_calibrated/collection_data_calibrated.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:41.478809","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rimfax:data_hk::14.0","title":"Mars 2020 RIMFAX Housekeeping Data Collection","description":"Mars 2020 RIMFAX Housekeeping Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Radar Imager for Mars Subsurface Experiment (RIMFAX)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/data_hk/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/data_hk/collection_data_hk.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:42.469538","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rimfax:data_raw::14.0","title":"Mars 2020 RIMFAX Raw Data Collection","description":"Mars 2020 RIMFAX Raw Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Radar Imager for Mars Subsurface Experiment (RIMFAX)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/data_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/data_raw/collection_data_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:43.474323","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rimfax:document::14.0","title":"Mars 2020 RIMFAX Document Collection","description":"Mars 2020 RIMFAX Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Radar Imager for Mars Subsurface Experiment (RIMFAX)"],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rimfax/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:44.517071","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rover_places::14.0","title":"Mars 2020 Rover PLACES Bundle","description":"Localization (position and orientation) information for the Mars 2020 Perseverence Rover\"","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverence Rover Mission"],"targets":["Mars"],"instruments":["Rover","Mars 2020 Perseverence Rover"],"instrument_hosts":["Mars 2020 Perseverence Rover","Mars2020"],"data_types":[],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:45.480507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rover_places:browse_maps::14.0","title":"Collection of browse map products for Rover PLACES","description":"Collection of BROWSE products for Rover PLACES maps.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverence Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Perseverence Rover"],"instrument_hosts":["Mars 2020 Perseverence Rover"],"data_types":["Browse"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/browse_maps/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/browse_maps/collection_browse_maps.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:46.481986","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rover_places:data_ancillary::14.0","title":"Collection of ancillary data products for Rover PLACES","description":"Collection of ancillary data products for Rover PLACES.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverence Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Perseverence Rover"],"instrument_hosts":["Mars 2020 Perseverence Rover"],"data_types":["Browse"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_ancillary/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_ancillary/collection_data_ancillary.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:47.515604","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rover_places:data_localizations::14.0","title":"Collection of localization data products for Rover PLACES","description":"Collection of localization data products for Rover PLACES.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverence Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Perseverence Rover"],"instrument_hosts":["Mars 2020 Perseverence Rover"],"data_types":["Browse"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_localizations/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_localizations/collection_data_localizations.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:48.564656","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rover_places:data_maps::14.0","title":"Collection of map data products for Rover PLACES","description":"Collection of map data products for Rover PLACES.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverence Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Perseverence Rover"],"instrument_hosts":["Mars 2020 Perseverence Rover"],"data_types":["Browse"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_maps/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_maps/collection_data_maps.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:49.549711","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rover_places:data_mechanisms::14.0","title":"Collection of mechanism data products for Rover PLACES","description":"Collection of mechanism data products for Rover PLACES.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverence Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Perseverence Rover"],"instrument_hosts":["Mars 2020 Perseverence Rover"],"data_types":["Browse"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_mechanisms/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_mechanisms/collection_data_mechanisms.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:50.493050","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rover_places:data_orbital::14.0","title":"Collection of orbital data products for Rover PLACES","description":"Collection of orbital data products for Rover PLACES.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverence Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Perseverence Rover"],"instrument_hosts":["Mars 2020 Perseverence Rover"],"data_types":["Browse"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_orbital/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/data_orbital/collection_data_orbital.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:51.479493","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_rover_places:document::14.0","title":"Collection of document products for Rover PLACES","description":"Collection of document products for Rover PLACES.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverence Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Perseverence Rover"],"instrument_hosts":["Mars 2020 Perseverence Rover"],"data_types":["Browse"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_rover_places/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:52.509292","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sample_depot_three_forks::1.1","title":"Three Forks Depot Bundle","description":"Three Forks Depot bundle.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","MARS 2020"],"targets":["Mars"],"instruments":[],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/bundle_mars2020_sample_depot_three_forks.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:53.506401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sample_depot_three_forks:browse::1.0","title":"Three Forks Depot Browse Collection","description":"Three Forks Depot browse collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","MARS 2020"],"targets":["Mars"],"instruments":[],"instrument_hosts":["Perseverance"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/browse/collection_browse_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:54.504897","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sample_depot_three_forks:data::1.0","title":"Three Forks Depot Data Collection","description":"Three Forks Depot data collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","MARS 2020"],"targets":["Mars"],"instruments":["PERSEVERANCE"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:55.503460","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sample_depot_three_forks:document::1.0","title":"Three Forks Depot Document Collection","description":"Three Forks Depot document collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","MARS 2020"],"targets":["Mars"],"instruments":[],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:56.498896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sample_depot_three_forks:miscellaneous::1.0","title":"Three Forks Depot Miscellaneous Collection","description":"Three Forks Depot miscellaneous collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","MARS 2020"],"targets":["Mars"],"instruments":[],"instrument_hosts":["Perseverance"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sample_depot_three_forks/miscellaneous/collection_miscellaneous_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:57.513884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sherloc::1.0","title":"Mars 2020 SHERLOC Bundle","description":"Mars 2020 Perseverance Rover SHERLOC Raw, Partially Processed, and Derived Data Products","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Sherloc","Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/bundle_sherloc.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:41:59.043472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sherloc:data_aci::14.0","title":"Mars 2020 SHERLOC ACI Data Collection","description":"Mars 2020 SHERLOC Autofocus Context Imager (ACI) Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_aci/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_aci/collection_data_aci.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:00.034926","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sherloc:data_intermediate::14.0","title":"Mars 2020 SHERLOC Intermediate Spectroscopy Data Collection","description":"Mars 2020 SHERLOC Intermediate Spectroscopy Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_intermediate/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_intermediate/collection_data_intermediate.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:01.086324","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sherloc:data_processed::14.0","title":"Mars 2020 SHERLOC Processed Spectroscopy Data Collection","description":"Mars 2020 SHERLOC Processed Spectroscopy Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_processed/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_processed/collection_data_processed.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:02.015192","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sherloc:data_raw::14.0","title":"Mars 2020 SHERLOC Raw Data Collection","description":"Mars 2020 SHERLOC Raw Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_raw/collection_data_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:03.015352","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sherloc:data_watson::14.0","title":"Mars 2020 SHERLOC WATSON Data Collection","description":"Mars 2020 SHERLOC Wide Angle Topographic Sensor for Operations and eNgineering (WATSON) Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_watson/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/data_watson/collection_data_watson.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:04.026738","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_sherloc:document::14.0","title":"Mars 2020 SHERLOC Document Collection","description":"Mars 2020 SHERLOC Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC)"],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_sherloc/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:05.027530","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam::8.0","title":"Mars 2020 SuperCam Bundle","description":"Mars 2020 Perseverance Rover SuperCam Raw, Calibrated, and Derived Data Products","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Supercam","Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/bundle_supercam.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:06.022911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:calibration_supercam::4.0","title":"Mars 2020 SuperCam pre-flight Calibration Data Collection","description":"Library of spectra of a diverse suite of geological materials, mostly at one distance, and then a smaller library at several distances.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2019-04-09","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/calibration_supercam/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/calibration_supercam/collection_calibration_supercam.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:07.030733","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_calibrated_audio::14.0","title":"Mars 2020 SuperCam Calibrated Audio Data Collection","description":"Mars 2020 SuperCam Calibrated Audio Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_calibrated_audio/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_calibrated_audio/collection_data_calibrated_audio.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:08.089166","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_calibrated_spectra::14.0","title":"Mars 2020 SuperCam Calibrated Spectra Data Collection","description":"Mars 2020 SuperCam Calibrated Spectra Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-03-02","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_calibrated_spectra/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_calibrated_spectra/collection_data_calibrated_spectra.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:09.070046","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_derived_spectra::14.0","title":"Mars 2020 SuperCam Derived Data Collection","description":"Mars 2020 SuperCam Derived Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":"2021-03-03","stop_date":"2025-09-08","browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_derived_spectra/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_derived_spectra/collection_data_derived_spectra.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:10.118041","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_observation_log::14.0","title":"Mars 2020 SuperCam Data Obserrvation Log Collection","description":"Mars 2020 SuperCam Data Observational Log Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":"2021-02-19","stop_date":"2025-09-08","browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_observation_log/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_observation_log/collection_data_observation_log.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:11.041926","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_radcal_rmi::14.0","title":"Mars 2020 SuperCam RMI Radiometrically Calibrated Image Data Collection","description":"Mars 2020 SuperCam Radiometrically Calibrated RMI Image Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-03-02","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_radcal_rmi/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_radcal_rmi/collection_data_radcal_rmi.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:12.034489","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_raw_audio::14.0","title":"Mars 2020 SuperCam Raw Audio Data Collection","description":"Mars 2020 SuperCam Raw Audio Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2025-01-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_raw_audio/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_raw_audio/collection_data_raw_audio.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:13.102261","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_raw_rmi::14.0","title":"Mars 2020 SuperCam RMI Raw Image Collection","description":"This is a collection of SuperCam RMI image products. The collection inventory lists\n the products as secondary members. The products are primary members of the collection\n urn:nasa:pds:mars2020_imgops:collection_data_rmi_imgops. The data files reside with \n the collection where they are primary members; they are not physically copied in\n this collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-03","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_raw_rmi/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_raw_rmi/collection_data_raw_rmi.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:14.063766","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_raw_spectra::14.0","title":"Mars 2020 SuperCam Raw Spectra Data Collection","description":"Mars 2020 SuperCam Raw Spectra Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2025-01-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_raw_spectra/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_raw_spectra/collection_data_raw_spectra.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:15.048547","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:data_special_rmi::14.0","title":"Mars 2020 SuperCam RMI Mosaic Data Collection","description":"Mars 2020 SuperCam RMI Mosaic Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["The Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-03-02","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_special_rmi/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/data_special_rmi/collection_data_special_rmi.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:16.053189","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_supercam:document::14.0","title":"Collection of document products: PDS4 Mars 2020 Perseverance Rover SuperCam Data Products","description":"Collection of DOCUMENT products used in this archive.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Document"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-mars2020_supercam/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:17.042831","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:shumway_m2020_pixl_regolith::1.0","title":"Mineralogically Diverse and Salt-rich Regolith in Jezero Crater Characterized using X-ray Spectroscopy Supporting Information Bundle","description":"Supporting Information (M2020 PIXL oxide concentrations and supplemental information document) for \"Mineralogically Diverse and Salt-rich Regolith in Jezero Crater Characterized using X-ray Spectroscopy\"","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Pixl","Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2022-10-04","stop_date":"2022-10-29","browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-shumway_m2020_pixl_regolith/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-shumway_m2020_pixl_regolith/bundle_shumway_m2020_pixl_regolith.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:18.076826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:shumway_m2020_pixl_regolith:data::1.0","title":"Mineralogically Diverse and Salt-rich Regolith in Jezero Crater Characterized using X-ray Spectroscopy Supporting Information Bundle: Data Collection","description":"Mineralogically Diverse and Salt-rich Regolith in Jezero Crater Characterized using X-ray Spectroscopy Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2022-10-04","stop_date":"2022-10-29","browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-shumway_m2020_pixl_regolith/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-shumway_m2020_pixl_regolith/data/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:19.109177","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:shumway_m2020_pixl_regolith:document::1.0","title":"Mineralogically Diverse and Salt-rich Regolith in Jezero Crater Characterized using X-ray Spectroscopy Supporting Information Bundle: Document Collection","description":"Mineralogically Diverse and Salt-rich Regolith in Jezero Crater Characterized using X-ray Spectroscopy Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020: Perseverance Rover"],"targets":["Mars"],"instruments":["Planetary Instrument for X-ray Lithochemistry (PIXL)"],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":"2022-10-04","stop_date":"2022-10-29","browse_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-shumway_m2020_pixl_regolith/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/m2020/urn-nasa-pds-shumway_m2020_pixl_regolith/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:20.142288","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_documents::2.0","title":"Mars InSight Lander Document Archive","description":"The Mars InSight Lander document bundle includes a collection\n of documents for each of the InSight science experiments and\n a collection of documents pertaining to the mission as a \n whole.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Insight","INSIGHT"],"targets":["Mars"],"instruments":["Insight","Insight","Insight","Insight","Insight","Insight","Insight","Insight","Insight","Insight","AUXILIARY PAYLOAD SENSOR SUBSYSTEM TEMPERATURES AND WIND SENSOR FOR INSIGHT","AUXILIARY PAYLOAD SENSOR SUBSYSTEM PRESSURE SENSOR","InSight Fluxgate Magnetometer","Heat Flow and Physical Properties Package","Radiometer","Seismic Experiment for Interior Structure","Instrument Deployment Arm","InSight Deployment Camera","InSight Context Camera","RISE"],"instrument_hosts":["Insight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/bundle_insight_documents.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:21.653172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_documents:document_hp3rad::19.0","title":"InSight HP3 and RAD Document Collection","description":"InSight HP3 and RAD Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["HP3","RAD"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_hp3rad/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_hp3rad/collection_document_hp3rad.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:22.544283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_documents:document_ida::16.0","title":"InSight IDA Document Collection","description":"The InSight IDA document collection includes the following documents.\n \n 1. ida_release_notes.txt:\n Information about each release of IDA data to the PDS.\n 2. insight_ida_bundle_sis.pdf:\n The InSight IDA Software Interface Specification, the\n primary documentation for the IDA archive.\n 3. Annotated Sol 1171 ICC Image of the InSight Robotic Arm Workspace","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["INSTRUMENT DEPLOYMENT ARM"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_ida/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_ida/collection_document_ida.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:23.551102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_documents:document_mission::1.1","title":"InSight Mission Document Collection","description":"InSight Mission Document Collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["AUXILIARY PAYLOAD SENSOR SUBSYSTEM PRESSURE SENSOR","AUXILIARY PAYLOAD SENSOR SUBSYSTEM TEMPERATURES AND WIND SENSOR FOR INSIGHT","Insight Context Camera","Insight Deployment Camera","HEAT FLOW AND PHYSICAL PROPERTIES PACKAGE","RADIOMETER","INSTRUMENT DEPLOYMENT ARM","INSIGHT FLUXGATE MAGNETOMETER","RISE","SEISMIC EXPERIMENT FOR INTERIOR STRUCTURE"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_mission/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_mission/collection_document_mission.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:24.581638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_documents:document_rise::17.2","title":"InSight RISE Document Collection","description":"InSight RISE Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight Lander"],"targets":["Mars"],"instruments":["RISE"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_rise/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_rise/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:25.568590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_documents:document_seis::25.0","title":"InSight SEIS Document Collection","description":"The InSight SEIS document collection includes the following documents.\n \n 1. fdsn-station-1.0.xsd:\n The base FDSN StationXML schema.\n 2. fdsn-station-availability-1.0.xsd:\n Extension of the base FDSN StationXML schema\n that includes time series data availability structures.\n 3. ins-st-grds-1500-ipgp_seed_channelnaming.pdf:\n Descriptions of InSight SEIS network, station, channel and \n location codes as a PDF document.\n 4. ins-st-grds-1500-ipgp_seed_channelnaming.xlsx:\n Descriptions of InSight SEIS network, station, channel and \n location codes as an Excel spreadsheet.\n 5. location_codes_only.pdf:\n A list of channel-location code pairs extracted from \n the channel naming document, as a PDF file.\n 6. location_codes_only.xlsx:\n A list of channel-location code pairs extracted from \n the channel naming document, as an Excel file.\n 7. seedmanual_v2.4.pdf:\n The Standard for the Exchange of Earthquake Data (SEED) \n Reference Manual, SEED Format Version 2.4. \n 8. seis_release_notes.txt:\n Information about each release of SEIS data to the PDS.\n 9. seis_sis.pdf:\n The InSight SEIS Software Interface Specification, the\n primary documentation for the SEIS archive.\n 10. variations-fdnsxml-seed.txt:\n An outline of the variations between FDSN-StationXML and SEED 2.4.\n 11. mars_seismic_catalogue_insight_*.pdf\n The InSight SEIS Mars Seismic Catalogue description document.\n 12. insight_mqs_catalog_notes.txt:\n Notes on reading InSight MQS Catalog files.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["SEISMIC EXPERIMENT FOR INTERIOR STRUCTURE"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_seis/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_documents/document_seis/collection_document_seis.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:26.580993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_hp3_tem::1.0","title":"Mars InSight Lander HP3 Data Archive","description":"The InSight HP3 data bundle consists of data in four collections:\n data_tem_raw, data_tem_calibrated, data_statil_raw, and data_statil_calibrated.\n The bundle also includes the HP3/RAD Software Interface Specification in \n the HP3/RAD document collection.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","HP3"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-05-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/bundle_insight_hp3_tem.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:27.570562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_hp3_tem:data_statil_calibrated::1.0","title":"InSight HP3 Static Tilt Calibrated Data Collection","description":"InSight HP3 Static Tilt Calibrated Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["HP3"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/data_statil_calibrated/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/data_statil_calibrated/collection_data_statil_calibrated.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:28.591135","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_hp3_tem:data_statil_raw::1.0","title":"InSight HP3 Static Tilt Raw Data Collection","description":"InSight HP3 Static Tilt Raw Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["HP3"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/data_statil_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/data_statil_raw/collection_data_statil_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:29.581981","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_hp3_tem:data_tem_calibrated::6.0","title":"InSight HP3 Temperature Calibrated Data Collection","description":"InSight HP3 Temperature Calibrated Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["HP3"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/data_tem_calibrated/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/data_tem_calibrated/collection_data_tem_calibrated.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:30.630290","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_hp3_tem:data_tem_raw::6.0","title":"InSight HP3 Temperature Raw Data Collection","description":"InSight HP3 Temperature Calibrated Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["HP3"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/data_tem_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_hp3_tem/data_tem_raw/collection_data_tem_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:31.767362","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_ida::2.0","title":"InSight IDA Data Bundle","description":"The InSight IDA data bundle consists of IDA data in three collections:\n science and engineering products in the data_raw_calibrated collection,\n status, history and parameters products in the data_ancillary collection,\n and time-lapse video products in the document_video collection\n (to be included in a future IDA release).\n The bundle also includes the IDA Software Interface Specification in \n the IDA document collection.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["Insight","INSTRUMENT DEPLOYMENT ARM"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/bundle_insight_ida.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:32.777326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_ida:calibration::1.1","title":"InSight IDA Calibration Collection","description":"The InSight IDA calibration collection contains IDA SciHi calibration data\n from the JPL Testbed IDA in csv format.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["IDA"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2021-12-07","stop_date":"2022-02-15","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/calibration/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/calibration/collection_calibration.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:33.763657","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_ida:data_ancillary::13.1","title":"InSight IDA Ancillary Data Collection","description":"The IDA Ancillary Data Collection contains status, history and parameters products\n in support of IDA science and engineering data.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["IDA"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-12-09","stop_date":"2018-12-09","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/data_ancillary/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/data_ancillary/collection_data_ancillary.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:34.848919","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_ida:data_raw_calibrated::13.1","title":"InSight IDA Raw and Calibrated Data Collection","description":"The IDA Raw and Calibrated Data Collection contains IDA science and engineering \n high priority (SciHi) and low priority (SciLo) raw and calibrated data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["IDA"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-12-09","stop_date":"2018-12-09","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/data_raw_calibrated/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/data_raw_calibrated/collection_data_raw_calibrated.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:35.805484","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_ida:document_video::1.1","title":"InSight IDA Video Collection","description":"The InSight IDA video collection contains time-lapse videos\n of IDA data acquisition in MP4 format.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["IDA"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":"2018-11-26","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/document_video/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_ida/document_video/collection_document_video.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:36.855991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rad::2.1","title":"Mars InSight Lander Radiometer Data Archive","description":"The InSight Radiometer data bundle consists of data in three collections:\n data_raw, data_calibrated, and data_derived.\n The bundle also includes the HP3/RAD Software Interface Specification in \n the HP3/RAD document collection.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","RADIOMETER"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-05-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rad/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rad/bundle_insight_rad.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:37.904121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rad:data_calibrated::14.0","title":"InSight RAD Calibrated Data Collection","description":"InSight RAD Calibrated Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RAD"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rad/data_calibrated/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rad/data_calibrated/collection_data_rad_calibrated.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:38.781533","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rad:data_derived::14.0","title":"InSight RAD Derived Data Collection","description":"InSight RAD Derived Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RAD"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rad/data_derived/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rad/data_derived/collection_data_rad_derived.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:39.785067","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rad:data_raw::15.0","title":"InSight RAD Raw Data Collection","description":"InSight RAD Raw Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RAD"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rad/data_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rad/data_raw/collection_data_rad_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:40.792824","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_derived::1.0","title":"Mars InSight Lander RISE Derived Data Archive","description":"InSight RISE Derived Data Archive","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","RISE"],"instrument_hosts":["InSight","DSN","Insight"],"data_types":[],"start_date":"1950-01-01","stop_date":"2050-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_derived/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_derived/bundle_insight_rise_derived.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:41.792577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_derived:data_lander_coord::1.0","title":"InSight RISE Derived Lander Coordinate Data Collection","description":"InSight RISE Derived Lander Coordinate Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RISE"],"instrument_hosts":["InSight","DSN","Insight"],"data_types":["Data"],"start_date":"1950-01-01","stop_date":"2050-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_derived/data_lander_coord/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_derived/data_lander_coord/collection_lander_coord_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:42.779109","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_derived:data_rotation::1.0","title":"InSight RISE Derived Rotation Data Collection","description":"InSight RISE Derived Rotation Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RISE"],"instrument_hosts":["InSight","DSN","Insight"],"data_types":["Data"],"start_date":"1950-01-01","stop_date":"2050-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_derived/data_rotation/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_derived/data_rotation/collection_rotation_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:43.781718","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_raw::2.0","title":"Mars InSight Lander RISE Raw Data Archive","description":"The InSight RISE raw data bundle includes collections of \n Tracking and Navigation Files (TNF), Ionospheric Data\n Files (ION), Troposphere Data Files (TRO), Tracking Data\n Message (TDM) Files, and Weather Data Files (WEA) acquired \n by the RISE instrument on Mars and the Deep Space Network \n (DSN) on Earth. The bundle also includes the RISE document \n collection.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","RISE"],"instrument_hosts":["InSight","DSN","Insight"],"data_types":[],"start_date":"2018-01-01","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/bundle_insight_rise_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:44.802177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_raw:trk223_ionosphere::14.0","title":"InSight RISE Raw ION Data Collection","description":"InSight RISE Raw Ionosphere Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RISE"],"instrument_hosts":["InSight","DSN","Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_ion/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_ion/collection_data_ion_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:45.834076","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_raw:0212trk_tdm::3.0","title":"InSight RISE Raw TDM Data Collection","description":"InSight RISE Raw Tracking Data Message Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RISE"],"instrument_hosts":["InSight","DSN"],"data_types":["Data"],"start_date":"2018-11-27","stop_date":"2022-05-27","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_tdm/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_tdm/collection_data_tdm_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:46.881574","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_raw:trk234_trknav::14.0","title":"InSight RISE Raw TNF Data Collection","description":"InSight RISE Raw Tracking and Navigation (TNF) Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RISE"],"instrument_hosts":["InSight","DSN","Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_tnf/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_tnf/collection_data_tnf_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:47.867935","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_raw:trk223_troposphere::14.0","title":"InSight RISE Raw TRO Data Collection","description":"InSight RISE Raw Troposphere Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RISE"],"instrument_hosts":["InSight","DSN","Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_tro/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_tro/collection_data_tro_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:49.540367","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_rise_raw:trk224_weather::14.0","title":"InSight RISE Raw WEA Data Collection","description":"InSight RISE Raw Weather Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["RISE"],"instrument_hosts":["InSight","DSN","Insight"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2028-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_wea/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_rise_raw/data_wea/collection_data_wea_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:50.148722","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_seis::3.0","title":"InSight SEIS Data Bundle","description":"The InSight SEIS data bundle consists of SEIS instrument observations in two collections,\n the SEED (Standard for the Exchange of Earthquake Data) collection and the ASCII table collection. \n The SEED collection contains data in Mini-SEED files and their metadata in Dataless-SEED files.\n The ASCII Table collection contains the same data in PDS-compliant ASCII files, with\n the data in GeoCSV (comma-separated value) tables and the metadata in \n StationXML files. The bundle also includes the SEIS document collection and the Lander Activity \n Files, Derived Data Mars Quake Service (MQS) Catalog, and MQS XML Schema collections.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["Insight","SEISMIC EXPERIMENT FOR INTERIOR STRUCTURE"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_seis/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_seis/bundle_insight_seis.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:51.119164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_seis:data_laf::11.0","title":"InSight SEIS Lander Activity Files in ASCII Table Format","description":"The SEIS data_laf collection contains Lander Activity Files for the SEIS instrument\n in ASCII CSV table format.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["Seismometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-04-01","stop_date":"2022-12-15","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_seis/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_seis/data/collection_data_lander.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:52.134554","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_seis:data_derived::9.0","title":"InSight SEIS Derived Data Mars Quake Service Catalog","description":"InSight Marsquake Service (2023). Mars Seismic Catalogue, InSight Mission; V14 2023-04-01. ETHZ, IPGP, JPL, ICL, Univ. Bristol.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["Seismometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-04-01","stop_date":"2023-01-01","browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_seis/data_derived/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_seis/data_derived/collection_data_derived.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:53.165223","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight_seis:schema_mqs::2.0","title":"Mars Quake Service (MQS) XML Schema For Use With InSight MQS Data Products","description":"The SEIS schema_mqs collection contains XML schema for use with InSight Mars Quake\n Service (MQS) data products in the SEIS data_derived collection. The schema\n are provided by QuakeML, https://quake.ethz.ch/quakeml/.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["Seismometer"],"instrument_hosts":["Insight"],"data_types":["XML Schema"],"start_date":"2018-04-01","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_seis/schema_mqs/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/insight/urn-nasa-pds-insight_seis/schema_mqs/collection_schema_mqs.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:42:54.156915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MOLA-5-SHADR-V1","title":"MGS M MOLA 5 SHADR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mgs/mgs-m-mola-5-shadr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mgs/mgs-m-mola-5-shadr-v1/","scraped_at":"2026-02-03T20:42:55.623404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-TES-5-TIMAP-V1","title":"MGS M TES 5 TIMAP V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mgs/mgs-m-tes-5-timap-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mgs/mgs-m-tes-5-timap-v1/","scraped_at":"2026-02-03T20:43:02.630559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_apxs_composites_library::1.1","title":"MER APXS Composite Spectra Bundle","description":"This bundle contains a library of target characteristics, metadata, composite spectra, and concentrations\n created from individual spectra acquired by the Alpha Particle X-ray Spectrometers on \n Mars Exploration Rovers 1 and 2 (Opportunity and Spirit).","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover","Mars Exploration Rovers: Spirit and Opportunity"],"targets":["Mars"],"instruments":["Mer1","Mer2","Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Mars Exploration Rover 1","Mars Exploration Rover 2","Mer1","Mer2"],"data_types":[],"start_date":"2004-01-05","stop_date":"2018-06-10","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_apxs_composites_library/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_apxs_composites_library/bundle_mer_apxs_composites_library.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:04.192518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_apxs_composites_library:data::1.1","title":"MER APXS Composite Spectra Library","description":"This collection contains a library of target characteristics, metadata, composite spectra, and concentrations\n created from individual spectra acquired by the Alpha Particle X-ray Spectrometers on \n Mars Exploration Rovers 1 and 2 (Opportunity and Spirit).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover","Mars Exploration Rovers: Spirit and Opportunity"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer"],"instrument_hosts":["Mars Exploration Rover 1","Mars Exploration Rover 2"],"data_types":["Data"],"start_date":"2004-01-05","stop_date":"2018-06-10","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_apxs_composites_library/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_apxs_composites_library/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:05.233751","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_cs_target_list::1.1","title":"MER Contact Science Target List Bundle","description":"Summary of MER contact science (CS) activities and targets. Localization information in Site Frame\n\t\t and within identifying images are provided where information was available. Contact science refers\n to analyses conducted by instruments deployed using the Instrument Deployment Device (IDD).","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mer1","Mer2","Mer1","Mer2","Mer1","Mer2","Mer1","Mer2","Alpha Particle X-ray Spectrometer","Moessbauer Spectrometer","Microscopic Imager","Rock Abrasion Tool"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":"2004-01-25","stop_date":"2018-06-11","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_cs_target_list/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_cs_target_list/bundle_mer_cs_target_list.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:06.212466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_cs_target_list:context::1.0","title":"MER Contact Science Target List Context Collection","description":"Context inventory for MER contact science targets","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer","Moessbauer Spectrometer","Microscopic Imager","Rock Abrasion Tool"],"instrument_hosts":["Mer1","Mer2"],"data_types":["Context"],"start_date":"2004-01-25","stop_date":"2018-06-11","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_cs_target_list/context/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_cs_target_list/context/collection_context_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:07.262716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_cs_target_list:data::2.0","title":"MER Contact Science Target List Data Collection","description":"Data product collection for the MER contact science target bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer","Moessbauer Spectrometer","Microscopic Imager","Rock Abrasion Tool"],"instrument_hosts":["Mer1","Mer2"],"data_types":["Data"],"start_date":"2004-01-04","stop_date":"2018-06-11","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_cs_target_list/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_cs_target_list/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:08.149202","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_cs_target_list:document::1.0","title":"Mars Exploration Rover Contact Science Target List Document Collection","description":"Document collection for the Mars Exploration Rover Contact Science Target List bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Alpha Particle X-ray Spectrometer","Moessbauer Spectrometer","Microscopic Imager","Rock Abrasion Tool"],"instrument_hosts":["Mer1","Mer2"],"data_types":["Document"],"start_date":"2004-01-25","stop_date":"2018-06-11","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_cs_target_list/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_cs_target_list/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:09.155443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_documentation::1.0","title":"Mars Exploration Rover (MER) Documentation Bundle","description":"Mars Exploration Rover (MER) documentation bundle. This bundle contains the \n primary members of MER mission, spacecraft, instrument and dataset documentation.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mer1","Mer2","Mer1","Mer2","Mer1","Mer2","Mer1","Mer2","Mer1","Mer2","Mer1","Mer2","Mer1","Mer2","MER1 Alpha Particle X-ray Spectrometer","MER2 Alpha Particle X-ray Spectrometer","MER1 Moessbauer Spectrometer","MER2 Moessbauer Spectrometer","MER1 Microscopic Imager","MER2 Microscopic Imager","MER1 Miniature Thermal Emission Spectrometer","MER2 Miniature Thermal Emission Spectrometer","MER1 Navigation Camera","MER2 Navigation Camera","MER1 Panoramic Camera","MER2 Panoramic Camera","MER1 Rock Abrasion Tool","MER2 Rock Abrasion Tool"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_documentation/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_documentation/bundle_mer_documentation.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:10.172005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_documentation:document::1.3","title":"MER Document Collection","description":"Mars Exploration Rover (MER) documentation collection. This collection contains the \n primary members of MER mission, spacecraft, instrument and dataset documentation.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["MER1 Alpha Particle X-ray Spectrometer","MER2 Alpha Particle X-ray Spectrometer","MER1 Moessbauer Spectrometer","MER2 Moessbauer Spectrometer","MER1 Microscopic Imager","MER2 Microscopic Imager","MER1 Miniature Thermal Emission Spectrometer","MER2 Miniature Thermal Emission Spectrometer","MER1 Navigation Camera","MER2 Navigation Camera","MER1 Panoramic Camera","MER2 Panoramic Camera","MER1 Rock Abrasion Tool","MER2 Rock Abrasion Tool"],"instrument_hosts":["Mer1","Mer2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_documentation/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_documentation/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:11.154101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_pancam_photometry::1.0","title":"MER Pancam Photometry Archive Bundle","description":"MER Pancam Photometry Archive Bundle","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mer1","Mer2","Pancam"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":"2004-01-16","stop_date":"2008-05-05","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/bundle_mer_pancam_photometry_v10.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:12.173603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_pancam_photometry:data_finalsols::1.0","title":"MER Pancam Photometry Cube Collection - Final Sols","description":"This collection contains photometry image cubes from the later stages of the MER mission.\n It contains image data and associated geometry backplanes for cubes from both rovers.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["MER1 Panoramic Camera","MER2 Panoramic Camera"],"instrument_hosts":["Mars Exploration Rover 1","Mars Exploration Rover 2"],"data_types":["Data"],"start_date":"2004-01-16","stop_date":"2008-05-05","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/data_finalsols/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/data_finalsols/collection_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:13.206453","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_pancam_photometry:mer1::1.0","title":"MER1 Pancam Photometry Data Collection","description":"MER1 Pancam Photometry Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Pancam"],"instrument_hosts":["Mer1","Mer2"],"data_types":["Data"],"start_date":"2004-02-04","stop_date":"2008-05-05","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/data_mer1/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/data_mer1/collection_mer1_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:14.169433","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_pancam_photometry:mer2::1.0","title":"MER2 Pancam Photometry Data Collection","description":"MER2 Pancam Photometry Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Pancam"],"instrument_hosts":["Mer1","Mer2"],"data_types":["Data"],"start_date":"2004-01-16","stop_date":"2007-07-05","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/data_mer2/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/data_mer2/collection_mer2_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:15.194394","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_pancam_photometry:document::1.2","title":"MER Pancam Photometry Document Collection","description":"MER Pancam Photometry Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Pancam"],"instrument_hosts":["Mer1","Mer2"],"data_types":["Document"],"start_date":"2004-01-16","stop_date":"2008-05-05","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:16.235293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mer_pancam_photometry:misc::1.0","title":"MER Pancam Photometry Misc Collection","description":"MER Pancam Photometry Miscellaneous Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Pancam"],"instrument_hosts":["Mer1","Mer2"],"data_types":["Miscellaneous"],"start_date":"2004-01-16","stop_date":"2008-05-05","browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-mer_pancam_photometry/miscellaneous/collection_misc_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:17.225993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes::1.0","title":"Ruff PDART 2014 Mini-TES Mirror-dust-corrected Emissivity Bundle","description":"Mars Exploration Rover Mini-TES Mirror-dust-corrected Emissivity \n by Steve Ruff, PDART 2014","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mer2","Mini-TES"],"instrument_hosts":["Mer2"],"data_types":[],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/bundle_ruff_pdart14_mtes.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:19.186292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:browse_mtes_edc::1.0","title":"Mini-TES EDC Averaged Mirror-Dust Corrected Browse Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Browse Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["Browse"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/browse_mtes_edc/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/browse_mtes_edc/collection_browse_mtes_edc_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:20.174815","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:browse_mtes_esd::1.0","title":"Mini-TES EDC Averaged Mirror-Dust Corrected Standard Deviation Browse Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Standard Deviation Browse Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["Browse"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/browse_mtes_esd/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/browse_mtes_esd/collection_browse_mtes_esd_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:21.186094","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:context::1.0","title":"Mini-TES Averaged Mirror-Dust Corrected Context Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Context Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["Context"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/context/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/context/collection_context.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:22.193170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:data_ancillary::1.0","title":"Mini-TES EDC Averaged Mirror-Dust Corrected Ancillary Data Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Ancillary Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["Data"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/data_ancillary/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/data_ancillary/collection_data_ancillary_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:23.181239","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:data_mtes_edc::1.0","title":"Mini-TES EDC Averaged Mirror-Dust Corrected Image Cube Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Image Cube Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["Data"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/data_mtes_edc/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/data_mtes_edc/collection_data_mtes_edc_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:24.195603","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:data_mtes_esd::1.0","title":"Mini-TES EDC Averaged Mirror-Dust Corrected Standard Deviation Image Cube Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Standard Deviation Image Cube Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["Data"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/data_mtes_esd/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/data_mtes_esd/collection_data_mtes_esd_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:25.195493","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:data_mtes_ett::1.0","title":"Mini-TES EDC Averaged Mirror-Dust Corrected Target Temperature Image Cube Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Target Temperature Image Cube Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["Data"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/data_mtes_ett/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/data_mtes_ett/collection_data_mtes_ett_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:26.248357","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:document::1.0","title":"Mini-TES EDC Averaged Mirror-Dust Corrected Document Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["Document"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:27.233182","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ruff_pdart14_mtes:schema::1.0","title":"Mini-TES Averaged Mirror-Dust Corrected Schema Collection","description":"Mini-TES EDC Averaged Mirror-Dust Corrected Schema Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mini-TES MER2"],"instrument_hosts":["Mer2"],"data_types":["XML Schema"],"start_date":"2006-10-06","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/xml_schema/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/mer/urn-nasa-pds-ruff_pdart14_mtes/xml_schema/collection_xmlschema.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:28.282806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MTES-2-EDR-V1","title":"MER1 M MTES 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-mtes-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-mtes-2-edr-v1/","scraped_at":"2026-02-03T20:43:29.191118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MTES-3-RDR-V1","title":"MER1 M MTES 3 RDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-mtes-3-rdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-mtes-3-rdr-v1/","scraped_at":"2026-02-03T20:43:30.190074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MTES-4-BTR-V1","title":"MER1 M MTES 4 BTR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-mtes-4-btr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-mtes-4-btr-v1/","scraped_at":"2026-02-03T20:43:31.194314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-MTES-4-EMR-V1","title":"MER1 M MTES 4 EMR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-mtes-4-emr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-mtes-4-emr-v1/","scraped_at":"2026-02-03T20:43:32.201506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER1-M-RSS-1-EDR-V1","title":"MER1 M RSS 1 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-rss-1-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer1-m-rss-1-edr-v1/","scraped_at":"2026-02-03T20:43:33.202133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MTES-2-EDR-V1","title":"MER2 M MTES 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-mtes-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-mtes-2-edr-v1/","scraped_at":"2026-02-03T20:43:34.199394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MTES-3-RDR-V1","title":"MER2 M MTES 3 RDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-mtes-3-rdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-mtes-3-rdr-v1/","scraped_at":"2026-02-03T20:43:35.200770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MTES-4-BTR-V1","title":"MER2 M MTES 4 BTR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-mtes-4-btr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-mtes-4-btr-v1/","scraped_at":"2026-02-03T20:43:36.198961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-MTES-4-EMR-V1","title":"MER2 M MTES 4 EMR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-mtes-4-emr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-mtes-4-emr-v1/","scraped_at":"2026-02-03T20:43:37.245311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MER2-M-RSS-1-EDR-V1","title":"MER2 M RSS 1 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rovers"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-rss-1-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/mer/mer2-m-rss-1-edr-v1/","scraped_at":"2026-02-03T20:43:38.241528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_image_raw::1.0","title":"Viking Lander 1 and 2 Raw Image Bundle","description":"PDS4 Bundle of Viking Lander 1 and 2 Raw Image Data","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Viking"],"targets":["Mars","Phobos","Deimos","Sun","Calibration"],"instruments":["Vl1","Vl1","Vl2","Vl2","Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2","Vl1","Vl2"],"data_types":[],"start_date":"1976-07-20","stop_date":"1982-11-05","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/bundle_vl_image_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:39.813910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_image_raw:browse::1.0","title":"Viking Lander Browse Image Collection","description":"Viking Lander Browse Image Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars","Phobos","Deimos","Sun","Calibration"],"instruments":["Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Browse"],"start_date":"1976-07-20","stop_date":"1982-11-05","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/browse/collection_browse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:40.741016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_image_raw:calib::1.0","title":"Viking Lander Image Calibration Collection","description":"Viking Lander Image Calibration Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars","Phobos","Deimos","Sun","Calibration"],"instruments":["Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Calibration"],"start_date":"1976-07-20","stop_date":"1982-11-05","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/calib/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/calib/collection_calib.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:41.709693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_image_raw:data_raw::1.0","title":"Viking Lander Raw Image Data Collection","description":"Viking Lander Raw Image Data Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars","Phobos","Deimos","Sun","Calibration"],"instruments":["Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Data"],"start_date":"1976-07-20","stop_date":"1982-11-05","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/data_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/data_raw/collection_data_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:42.742004","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_image_raw:document::1.0","title":"Viking Lander Image Document Collection","description":"PDS4 document collection for the Viking Lander image bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Document"],"start_date":"1976-07-20","stop_date":"1982-12-31","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:43.727776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_image_raw:miscellaneous::1.0","title":"Viking Lander Image Miscellaneous Collection","description":"Viking Lander Image Miscellaneous Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars","Phobos","Deimos","Sun","Calibration"],"instruments":["Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Miscellaneous"],"start_date":"1976-07-20","stop_date":"1982-11-05","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_image_raw/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:44.731684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_labeled_release::1.0","title":"Viking Lander Labeled Release Biology Experiment Bundle","description":"PDS4 Bundle of Viking Lander Labeled Release Biology Experiment\n Data","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Viking"],"targets":["Mars"],"instruments":["Vl1","Vl2","LABELED RELEASE for VL1","LABELED RELEASE for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2","Vl1","Vl2"],"data_types":[],"start_date":"1976-07-22","stop_date":"1977-05-28","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/bundle_vl_labeled_release.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:45.723370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_labeled_release:browse::1.0","title":"Viking Lander Labeled Release Browse Product Collection","description":"PDS4 browse product collection for the Viking Lander labeled release\n bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["LABELED RELEASE for VL1","LABELED RELEASE for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Browse"],"start_date":"1976-07-22","stop_date":"1977-05-28","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/browse/collection_browse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:46.719716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_labeled_release:data_raw::1.0","title":"Viking Lander Labeled Release Data Product Collection","description":"PDS4 data product collection for the Viking Lander labeled release\n bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["LABELED RELEASE for VL1","LABELED RELEASE for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Data"],"start_date":"1976-07-22","stop_date":"1977-05-28","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/data_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/data_raw/collection_data_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:47.754378","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_labeled_release:document::1.0","title":"Viking Lander Labeled Release Document Collection","description":"PDS4 document collection for the Viking Lander labeled release\n bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["LABELED RELEASE for VL1","LABELED RELEASE for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Document"],"start_date":"1976-07-22","stop_date":"1977-05-28","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:48.794293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_labeled_release:miscellaneous::1.0","title":"Viking Lander Labeled Release Miscellaneous Collection","description":"PDS4 miscellaneous collection for the Viking Lander\n labeled release bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["LABELED RELEASE for VL1","LABELED RELEASE for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Miscellaneous"],"start_date":"1976-07-22","stop_date":"1977-05-28","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_labeled_release/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:49.776824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_rocks::1.0","title":"Viking Lander Rock Populations Bundle","description":"PDS4 Bundle of Viking Lander Rock Population Data","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Viking"],"targets":["Mars"],"instruments":["Vl1","Vl1","Vl2","Vl2","Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2","Vl1","Vl2"],"data_types":[],"start_date":"1976-07-20","stop_date":"1982-12-31","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_rocks/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_rocks/bundle_vl_rocks.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:50.739417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_rocks:data_derived::1.0","title":"Viking Lander Collection of Rock Population Data","description":"PDS4 data collection of Viking Lander rock\n population","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Data"],"start_date":"1976-07-20","stop_date":"1982-12-31","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_rocks/data_derived/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_rocks/data_derived/collection_data_derived.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:51.732799","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_rocks:document::1.0","title":"Viking Lander Rock Population Document Collection","description":"PDS4 document collection for the Viking Lander rock\n population bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Document"],"start_date":"1976-07-20","stop_date":"1982-12-31","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_rocks/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_rocks/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:52.760002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_rocks:miscellaneous::1.0","title":"Viking Lander Rock Population Miscellaneous Collection","description":"PDS4 miscellaneous collection for the Viking Lander rock\n population bundle containing an index of products in the data\n collection.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Camera 1 for VL1","Camera 2 for VL1","Camera 1 for VL2","Camera 2 for VL2"],"instrument_hosts":["Viking Lander 1","Viking Lander 2"],"data_types":["Miscellaneous"],"start_date":"1976-07-20","stop_date":"1982-12-31","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_rocks/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_rocks/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:53.741042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_seis_derived::1.0","title":"Viking Lander 2 Seismometer Data Bundle","description":"PDS4 Bundle of Viking Lander 2 Seismic Data","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Viking"],"targets":["Mars"],"instruments":["Vl2","Seismometer for VL2"],"instrument_hosts":["Viking Lander 2","Vl2"],"data_types":[],"start_date":"1976-09-04","stop_date":"1978-03-17","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_seis_derived/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_seis_derived/bundle_vl_seis_derived.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:54.739115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_seis_derived:data_derived::1.0","title":"Viking Lander 2 Seismometer Data Product Collection","description":"PDS4 data product collection for the Viking Lander seismometer\n bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Seismometer for VL2"],"instrument_hosts":["Viking Lander 2"],"data_types":["Data"],"start_date":"1976-09-04","stop_date":"1978-03-17","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_seis_derived/data_derived/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_seis_derived/data_derived/collection_data_derived.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:55.744329","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_seis_derived:document::1.0","title":"Viking Lander 2 Seismometer Data Document Collection","description":"Viking Lander 2 Seismometer Data Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Seismometer for VL2"],"instrument_hosts":["Viking Lander 2"],"data_types":["Document"],"start_date":"1976-09-04","stop_date":"1978-03-17","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_seis_derived/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_seis_derived/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:56.757385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vl_seis_derived:miscellaneous::1.0","title":"Viking Lander 2 Seismometer Data Miscellaneous Collection","description":"Viking Lander 2 Seismometer Data Miscellaneous Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Seismometer for VL2"],"instrument_hosts":["Viking Lander 2"],"data_types":["Miscellaneous"],"start_date":"1976-09-04","stop_date":"1978-03-17","browse_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_seis_derived/miscellaneous/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/viking/urn-nasa-pds-vl_seis_derived/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:43:57.750085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VL2-M-SEIS-5-RDR-V1","title":"VL2 M SEIS 5 RDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/viking/vl2-m-seis-5-rdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/viking/vl2-m-seis-5-rdr-v1/","scraped_at":"2026-02-03T20:43:58.765238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1::5.0","title":"Lunar Reconnaissance Orbiter Diviner Derived Data Bundle 1","description":"Lunar Reconnaissance Orbiter Diviner Derived Data Products","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["Dlre","DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER","Lro"],"data_types":[],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:00.356936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:browse_gdr_l2::1.0","title":"LRO Diviner Derived Data Level 2 Browse Collection","description":"LRO Diviner Derived Data Level 2 Browse Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Browse"],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/browse/collection_browse_gdr_l2.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:01.312735","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:document_catalog::2.0","title":"Lunar Reconnaissance Orbiter Diviner PDS3 Catalog File Collection","description":"LRO Diviner PDS3 Catalog Collection for the derived1 bundle","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Document"],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/catalog/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/catalog/collection_document_catalog.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:02.365358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:data_derived_gcp::1.0","title":"Lunar Reconnaissance Orbiter Diviner Global Cumulative Product (GCP) Collection","description":"Lunar Reconnaissance Orbiter Diviner GCP Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Data"],"start_date":"2009-07-05","stop_date":"2015-04-01","browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_gcp/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_gcp/collection_data_derived_gcp.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:03.275896","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:data_derived_gdr_level2::1.0","title":"LRO Diviner Level 2 Gridded Data Product (GDR) Collection","description":"Lunar Reconnaissance Orbiter Diviner GDR Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Data"],"start_date":"2009-07-05","stop_date":"2016-10-23","browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_gdr_l2/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_gdr_l2/collection_data_derived_gdr_level2.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:04.280847","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:data_derived_gdr_level3::1.0","title":"LRO Diviner Level 3 Gridded Data Product (GDR) Collection","description":"Lunar Reconnaissance Orbiter Diviner GDR Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Data"],"start_date":"2009-07-05","stop_date":"2016-10-23","browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_gdr_l3/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_gdr_l3/collection_data_derived_gdr_level3.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:05.294578","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:data_derived_ghrm::1.0","title":"Lunar Reconnaissance Orbiter Diviner Global High-Resolution Mosaic (GHRM) Collection","description":"Lunar Reconnaissance Orbiter Diviner Global High-Resolution Mosaic Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Data"],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_ghrm/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_ghrm/collection_data_derived_ghrm.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:06.272792","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:data_derived_pcp::1.0","title":"Lunar Reconnaissance Orbiter Diviner Polar Cumulative Product (PCP) Collection","description":"Lunar Reconnaissance Orbiter Diviner PCP Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Data"],"start_date":"2009-07-05","stop_date":"2020-03-15","browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_pcp/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_pcp/collection_data_derived_pcp.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:07.293382","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:data_derived_prp::1.0","title":"Lunar Reconnaissance Orbiter Diviner Polar Resource Product (PRP) Collection","description":"Lunar Reconnaissance Orbiter Diviner PRP Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Data"],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_prp/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_prp/collection_data_derived_prp.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:08.285417","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:data_derived_rcp::1.0","title":"Lunar Reconnaissance Orbiter Diviner Regional Cumulative Product (RCP) Collection","description":"Lunar Reconnaissance Orbiter Diviner RCP Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Data"],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_rcp/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/data_derived_rcp/collection_data_derived_rcp.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:09.291808","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived1:document::4.0","title":"Lunar Reconnaissance Orbiter Diviner Derived Data Document Collection","description":"LRO Diviner Derived Data Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["DIVINER LUNAR RADIOMETER EXPERIMENT for LRO"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Document"],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived1/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:10.276444","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived2::1.0","title":"Lunar Reconnaissance Orbiter Diviner Derived Data Bundle 2","description":"Lunar Reconnaissance Orbiter Diviner Derived Data Bundle 2","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Dlre","Diviner Lunar Radiometer Experiment"],"instrument_hosts":["Lunar Reconnaissance Orbiter","Lro"],"data_types":[],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived2/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived2/bundle.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:12.318721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived2:data_derived_epf::1.0","title":"Lunar Reconnaissance Orbiter Diviner Emission Phase Function (EPF) Collection","description":"Lunar Reconnaissance Orbiter Diviner EPF Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Diviner Lunar Radiometer Experiment"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2015-10-22","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived2/data_derived_epf/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived2/data_derived_epf/collection_data_derived_epf.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:13.368821","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_diviner_derived2:document::1.0","title":"Lunar Reconnaissance Orbiter Diviner Derived Data Document Collection","description":"LRO Diviner Derived Data Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Diviner Lunar Radiometer Experiment"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Document"],"start_date":"2009-07-05","stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived2/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_diviner_derived2/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:14.287455","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_minirf_bistatic::5.0","title":"LRO Mini-RF Bistatic Archive Bundle","description":"This bundle contains raw, calibrated, and derived data products created from the\n Bistatic Mini-RF instrument flown aboard the Lunar Reconnaissance Orbiter (LRO) spacecraft.\n The bundle also includes documentation that describes the data products for each data collection.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Mrflro","Mini-RF LRO"],"instrument_hosts":["Lunar Reconnaissance Orbiter","Lro"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/bundle_lro_minirf_bistatic.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:15.291212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_minirf_bistatic:browse::5.0","title":"Lunar Reconnaissance Orbiter Mini-RF Bistatic Browse Data collection","description":"This data collection contains the browse JPEG files created\n for each Stokes Parameter (S1-S4) and Circular Polarization Ration (CPR)\n derived data product. The derived data products themselves were generated\n from the Bistatic Mini-RF instrument flown aboard the Lunar Reconnaissance Orbiter (LRO).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Mini-RF LRO"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/browse/collection_browse.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:16.309999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_minirf_bistatic:data_calibrated::5.0","title":"Lunar Reconnaissance Orbiter Mini-RF Bistatic Calibrated Data collection","description":"This data collection contains the calibrated data from the\n Bistatic Mini-RF instrument flown aboard the Lunar Reconnaissance Orbiter (LRO) spacecraft.\n This includes the receiver time series data which has been processed\n into an image and the housekeeping data calibrated to engineering units.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Mini-RF LRO"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2022-08-24","stop_date":"2025-08-14","browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/data_calibrated/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/data_calibrated/collection_data_calibrated.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:17.307836","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_minirf_bistatic:data_derived::5.0","title":"Lunar Reconnaissance Orbiter Mini-RF Bistatic Derived Data collection","description":"This data collection contains the derived data from the\n Mini-RF instrument flown aboard the Lunar Reconnaissance Orbiter (LRO).\n The data inclues the geometry backplanes information, Stokes Parameters (S1-S4)\n and the Circular Polarization Ration (CPR).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Mini-RF LRO"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2022-08-24","stop_date":"2025-08-14","browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/data_derived/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/data_derived/collection_data_derived.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:18.307919","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_minirf_bistatic:data_raw::5.0","title":"Lunar Reconnaissance Orbiter Mini-RF Bistatic Raw Data collection","description":"This data collection contains the raw data returned by the\n Mini-RF instrument flown aboard the Lunar Reconnaissance Orbiter (LRO).\n This includes the unprocessed receiver time series, the housekeeping and\n state of health, and the internal calibration data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Mini-RF LRO"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2022-08-24","stop_date":"2025-08-14","browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/data_raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/data_raw/collection_data_raw.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:19.319220","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_minirf_bistatic:document::5.0","title":"Lunar Reconnaissance Orbiter Mini-RF Bistatic Document Collection","description":"This documentation collection includes documentation describing the raw,\n calibrated, and derived data collections from the Bistatic Mini-RF instrument flown\n aboard the Lunar Reconnaissance Orbiter (LRO) spacecraft. It includes a document describing\n the processing done to generate some of the data products.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Mini-RF LRO"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/lro/urn-nasa-pds-lro_minirf_bistatic/document/collection_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:20.301314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-DLRE-2-EDR-V1","title":"LRO L DLRE 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/lro-l-dlre-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/lro/lro-l-dlre-2-edr-v1/","scraped_at":"2026-02-03T20:44:21.301237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-DLRE-4-RDR-V1","title":"LRO L DLRE 4 RDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/lro-l-dlre-4-rdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/lro/lro-l-dlre-4-rdr-v1/","scraped_at":"2026-02-03T20:44:22.334479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LEND-2-EDR-V1","title":"LRO L LEND 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/lro-l-lend-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/lro/lro-l-lend-2-edr-v1/","scraped_at":"2026-02-03T20:44:23.384580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LOLA-2-EDR-V1","title":"LRO L LOLA 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/lro-l-lola-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/lro/lro-l-lola-2-edr-v1/","scraped_at":"2026-02-03T20:44:24.379539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-LOLA-3-RDR-V1","title":"LRO L LOLA 3 RDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/lro-l-lola-3-rdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/lro/lro-l-lola-3-rdr-v1/","scraped_at":"2026-02-03T20:44:25.313162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-MRFLRO-4-CDR-V1","title":"LRO L MRFLRO 4 CDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/lro-l-mrflro-4-cdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/lro/lro-l-mrflro-4-cdr-v1/","scraped_at":"2026-02-03T20:44:26.314488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-RSS-1-TRACKING-V1","title":"LRO L RSS 1 TRACKING V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["Lunar Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/lro/lro-l-rss-1-tracking-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/lro/lro-l-rss-1-tracking-v1/","scraped_at":"2026-02-03T20:44:27.327055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GRAIL-L-LGRS-2-EDR-V1","title":"GRAIL L LGRS 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["GRAIL"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/grail/grail-l-lgrs-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/grail/grail-l-lgrs-2-edr-v1/","scraped_at":"2026-02-03T20:44:28.838536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GRAIL-L-LGRS-3-CDR-V1","title":"GRAIL L LGRS 3 CDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["GRAIL"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/grail/grail-l-lgrs-3-cdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/grail/grail-l-lgrs-3-cdr-v1/","scraped_at":"2026-02-03T20:44:29.824817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GRAIL-L-LGRS-5-RDR-V1","title":"GRAIL L LGRS 5 RDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["GRAIL"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/grail/grail-l-lgrs-5-rdr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/grail/grail-l-lgrs-5-rdr-v1/","scraped_at":"2026-02-03T20:44:30.831235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GRAIL-L-RSS-2-EDR-V1","title":"GRAIL L RSS 2 EDR V1","description":null,"node":"geo","pds_version":"PDS3","type":"volume","missions":["GRAIL"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/grail/grail-l-rss-2-edr-v1/","download_url":null,"label_url":null,"source_url":"https://pds-geosciences.wustl.edu/grail/grail-l-rss-2-edr-v1/","scraped_at":"2026-02-03T20:44:31.834242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:izenberg_pdart14_meap::2.0","title":"Izenberg PDART 2014 MESSENGER Advanced Products Bundle","description":"MESSENGER Advanced Products (MEAP) by Noam Izenberg, PDART 2014","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Mess","Mess","Mess","MASCS","GRS","NS"],"instrument_hosts":["Mess"],"data_types":[],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/bundle_izenberg_pdart14_meap.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:33.353325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:izenberg_pdart14_meap:data_eetable::1.0","title":"Izenberg PDART 2014 MESSENGER Advanced Products Energetic Electrons Table Collection","description":"Izenberg PDART 2014 MESSENGER Advanced Products Energetic Electrons Table Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["NS"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2011-03-25","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/data_eetable/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/data_eetable/collection_eetable_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:34.411413","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:izenberg_pdart14_meap:data_grsspectra::1.0","title":"Izenberg PDART14 MEAP GRS Enhanced Spectra Collection","description":"MESSENGER GRS Enhanced Spectra Collection by Noam Izenberg, PDART 2014","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["GRS"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/data_grsspectra/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/data_grsspectra/collection_grsspectra_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:35.382786","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:izenberg_pdart14_meap:data_imagecube::2.0","title":"Izenberg PDART 2014 MESSENGER Advanced Products Image Cube Collection","description":"Izenberg PDART 2014 MESSENGER Advanced Products Image Cube Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["MASCS"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/data_imagecube/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/data_imagecube/collection_imagecube_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:36.348827","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:izenberg_pdart14_meap:data_tnmap::1.0","title":"Izenberg PDART14 MEAP Thermal Neutron Map Collection","description":"MESSENGER Thermal Neutron Map Collection by Noam Izenberg, PDART 2014","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["GRS"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/data_tnmap/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/data_tnmap/collection_tnmap_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:37.485909","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:izenberg_pdart14_meap:document::2.0","title":"Izenberg PDART 2014 MESSENGER Advanced Products Document Collection","description":"Izenberg PDART 2014 MESSENGER Advanced Products Document Collection","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["MASCS","GRS","NS"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-izenberg_pdart14_meap/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:38.348859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw::1.0","title":"MESSENGER RSS Raw Data Bundle","description":"This bundle contains raw radio data that can be used to determine the position\n and velocity of the MESSENGER spacecraft during flybys of Venus and Mercury and\n during orbital operations around Mercury. The bundle also contains measurements\n of occultation times and calibrations for the effects of Earth's ionosphere and\n troposphere, meteorological conditions at stations of the NASA Deep Space\n Network, thruster activity, and changes in spacecraft antenna selection. The\n data were used to determine the gravity field and shape of Mercury and to\n improve solar system ephemerides. The bundle is a migration of data from the\n original PDS3 archive with minor improvements and corrections.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus","Earth","Mess","MESSENGER"],"instruments":["Rss","Media","Mess","DSN Instrumentation","DSN Media Calibration Instrumentation","RSS"],"instrument_hosts":["Mess"],"data_types":[],"start_date":"2004-08-03","stop_date":"2015-05-10","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/bundle_mess_rss_raw_1.0.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:39.356434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:calib::1.0","title":"MESSENGER Radio Science Calibration Data Products Collection","description":"This calibration collection contains data products which support the \n MESSENGER Radio Science Subsystem (RSS) raw data archive.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Dsn","Messenger","NASA Deep Space Network Media Calibration","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Earth","Mess","MESSENGER"],"instruments":["DSN Media Calibration Instrumentation","RSS"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2006-01-10","stop_date":"2015-05-10","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/calib/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/calib/collection_mess-rs-raw_calib.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:40.363289","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:data-ddor::1.0","title":"MESSENGER Radio Science Delta Differential One-way Ranging (DDOR) Data Products Collection","description":"DDOR files were generated in the TNF (TRK-2-34) format and contain only TNF data type 10 records. The TNF collection in the MESSENGER archive does not contain data type 10 records.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-12-15","stop_date":"2015-04-26","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/data-ddor/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/data-ddor/collection_mess-rs-raw_ddor.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:41.364208","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:data-odf::1.0","title":"MESSENGER Radio Science Orbit Data File (ODF) Product Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the MESSENGER mission. \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-06-04","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/data-odf/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/data-odf/collection_mess-rs-raw_odf.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:42.394735","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:data-rsr::1.0","title":"MESSENGER Radio Science RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the MESSENGER mission. \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2006-10-18","stop_date":"2015-04-29","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/data-rsr/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/data-rsr/collection_mess-rs-raw_rsr.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:43.375143","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:data-tnf::1.0","title":"MESSENGER Radio Science Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the MESSENGER mission. \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-06-04","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/data-tnf/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/data-tnf/collection_mess-rs-raw_tnf.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:44.369773","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:messenger:document-rs::1.0","title":"MESSENGER Radio Science Document Collection","description":"This collection contains the documents associated with the MESSENGER \n Radio Science (RS) Raw Data Archive (RDA).","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus","Earth","Mess","MESSENGER"],"instruments":["RSS"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":"2004-08-03","stop_date":"2015-05-10","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/document-rs/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-mess-rs-raw/document-rs/collection_messenger_document-rs_1.0.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:45.423286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nathairfacula_messenger_mdis_topography_domingue_2022::1.0","title":"Nathair Facula Topography and Photometric Cube Data V1.0","description":"This bundle contains regional topography and photometric data for two locations\nwithin Nathair Facula, Mercury. Both locations focus on volcanic vents and\npyroclastic deposits near 35.86 Lat 63.93 E Lon. The data was generated using the Gaskell\nStereophotoclinometry (SPC) software suite with images from the MESSENGER mission to\nMercury. In addition to the topographic heights of the Digital Terrain Model (DTM),\nphotometric data is aligned to and has the same horizontal spacing as the topographic\ndata. For select Mercury Dual Imaging System (MDIS) Narrow Angle Camera (NAC) or Wide\nAngle Camera (WAC) images, four photometric data products are available; I/F\n(reflectance), Local Phase Angle, Local Emission Angle, and Local Incidence Angle.\nOne DTM represents heights every 120 m and has a size of 130 by 130 km, while the\nother represents heights every 60 m and has a size of 80 by 80 km. The two DTMs\npartially overlap.","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Mess","Mess","MERCURY DUAL IMAGING SYSTEM NARROW ANGLE CAMERA","MERCURY DUAL IMAGING SYSTEM WIDE ANGLE CAMERA"],"instrument_hosts":["MESSENGER","Mess","Mess"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-nathairfacula_messenger_mdis_topography_domingue_2022/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-nathairfacula_messenger_mdis_topography_domingue_2022/bundle_nathairfacula_messenger_mdis_topography_domingue_2022.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:46.401078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nathairfacula_messenger_mdis_topography_domingue_2022:data::1.0","title":"Nathair Facula Topography and Photometric Cube Data V1.0","description":"This bundle contains regional topography and photometric data for two locations\nwithin Nathair Facula, Mercury. Both locations focus on volcanic vents and\npyroclastic deposits near 35 Lat 65 E Lon. The data was generated using the Gaskell\nStereophotoclinometry (SPC) software suite with images from the MESSENGER mission to\nMercury. In addition to the topographic heights of the Digital Terrain Model (DTM),\nphotometric data is aligned to and has the same horizontal spacing as the topographic\ndata. For select Mercury Dual Imaging System (MDIS) Narrow Angle Camera (NAC) or Wide\nAngle Camera (WAC) images, four photometric data products are available; I/F\n(reflectance), Local Phase Angle, Local Emission Angle, and Local Incidence Angle.\nOne DTM represents heights every 120 m and has a size of 130 by 130 km, while the\nother represents heights every 60 m and has a size of 80 by 80 km. The two DTMs\npartially overlap.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["MERCURY DUAL IMAGING SYSTEM NARROW ANGLE CAMERA","MERCURY DUAL IMAGING SYSTEM WIDE ANGLE CAMERA"],"instrument_hosts":["MESSENGER"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-nathairfacula_messenger_mdis_topography_domingue_2022/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-nathairfacula_messenger_mdis_topography_domingue_2022/data/collection_nathairfacula_messenger_mdis_topography_domingue_2022_data.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:47.448059","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nathairfacula_messenger_mdis_topography_domingue_2022:document::1.0","title":"Nathair Facula Topography and Photometric Cube Data V1.0","description":"This bundle contains regional topography and photometric data for two locations\nwithin Nathair Facula, Mercury. Both locations focus on volcanic vents and\npyroclastic deposits near 35.86 Lat 63.93 E Lon. The data was generated using the Gaskell\nStereophotoclinometry (SPC) software suite with images from the MESSENGER mission to\nMercury. In addition to the topographic heights of the Digital Terrain Model (DTM),\nphotometric data is aligned to and has the same horizontal spacing as the topographic\ndata. For select Mercury Dual Imaging System (MDIS) Narrow Angle Camera (NAC) or Wide\nAngle Camera (WAC) images, four photometric data products are available; I/F\n(reflectance), Local Phase Angle, Local Emission Angle, and Local Incidence Angle.\nOne DTM represents heights every 120 m and has a size of 130 by 130 km, while the\nother represents heights every 60 m and has a size of 80 by 80 km. The two DTMs\npartially overlap.","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["MERCURY DUAL IMAGING SYSTEM NARROW ANGLE CAMERA","MERCURY DUAL IMAGING SYSTEM WIDE ANGLE CAMERA"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-nathairfacula_messenger_mdis_topography_domingue_2022/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-nathairfacula_messenger_mdis_topography_domingue_2022/document/collection_nathairfacula_messenger_mdis_topography_domingue_2022_document.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:48.365832","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:trang2017_mercury_space_weathering::1.0","title":"Mercury Space Weathering Maps Bundle","description":"Mercury Space Weathering Maps","node":"geo","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Mess","MASCS"],"instrument_hosts":["Mess"],"data_types":[],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-trang2017_mercury_space_weathering/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-trang2017_mercury_space_weathering/bundle_trang2017_merc_spaceweathering.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:49.383127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:trang2017_mercury_space_weathering:browse::1.0","title":"Trang 2017 Mercury Space Weathering Map Browse Collection","description":"Mercury Space Weathering Map Browse Collection by David Trang","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["MASCS"],"instrument_hosts":["Mess"],"data_types":["Browse"],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-trang2017_mercury_space_weathering/browse/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-trang2017_mercury_space_weathering/browse/collection_browse_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:50.407422","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:trang2017_mercury_space_weathering:data::1.0","title":"Trang 2017 Mercury Space Weathering Map Collection","description":"Mercury Space Weathering Map Collection by David Trang","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["MASCS"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-trang2017_mercury_space_weathering/data/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-trang2017_mercury_space_weathering/data/collection_data_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:51.402866","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:trang2017_mercury_space_weathering:document::1.0","title":"Trang 2017 Mercury Space Weathering Document Collection","description":"Mercury Space Weathering Document Collection by David Trang","node":"geo","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["MASCS"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":"2004-08-13","stop_date":"2015-04-30","browse_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-trang2017_mercury_space_weathering/document/","download_url":null,"label_url":"https://pds-geosciences.wustl.edu/messenger/urn-nasa-pds-trang2017_mercury_space_weathering/document/collection_document_inventory.xml","source_url":"https://pds-geosciences.wustl.edu/dataserv/holdings.html","scraped_at":"2026-02-03T20:44:52.434135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/img_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/img_catalog.jsonl new file mode 100644 index 0000000..f514ab4 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/img_catalog.jsonl @@ -0,0 +1,138 @@ +{"id":"img:pds3:coiss","title":"Cassini IMG Volume COISS_0001 ... COISS_3007","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:26.027893","keywords":["154 volumes","COISS_0001","COISS_3007"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:coradr","title":"Cassini IMG Volume CORADR_0003 ... CORADR_0294","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:26.028032","keywords":["302 volumes","CORADR_0003","CORADR_0294"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:covims","title":"Cassini IMG Volume COVIMS_0001 ... COVIMS_0094","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:26.028082","keywords":["94 volumes","COVIMS_0001","COVIMS_0094"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:cl","title":"Clementine IMG Volume CL_0001 ... CL_6022","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Clementine"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/clementine/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:34.480502","keywords":["281 volumes","CL_0001","CL_6022"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:go","title":"Galileo IMG Volume GO_0001 ... GO_1120","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:35.261221","keywords":["51 volumes","GO_0001","GO_1120"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:jnojnc","title":"Juno IMG Volume JNOJNC_0001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Juno"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/juno-j-junocam-2-edr-l0-v1.0/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:35.575303","keywords":["1 volumes","JNOJNC_0001","JNOJNC_0001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:jnosru","title":"Juno IMG Volume JNOSRU_0001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Juno"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/juno/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:36.851068","keywords":["1 volumes","JNOSRU_0001","JNOSRU_0001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:lcro","title":"LCROSS IMG Volume LCRO_0001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["LCROSS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/lcross/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:37.074175","keywords":["1 volumes","LCRO_0001","LCRO_0001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:lo","title":"Lunar Orbiter IMG Volume LO_1001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Lunar Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/lo/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:37.600533","keywords":["1 volumes","LO_1001","LO_1001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_lamp::1.0","title":"Lunar Reconnaissance Orbiter LAMP Raw and Calibrated Data Bundle","description":"Lunar Reconnaissance Orbiter (LRO) Lyman-Alpha Mapping Project (LAMP) Raw and Calibrated Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["Lamp","LYMAN ALPHA MAPPING PROJECT"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER","Lro"],"data_types":[],"start_date":"2024-06-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/lro/lamp/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/lro/lamp/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:39.077085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro_lamp:calibration::1.0","title":"Lunar Reconnaissance Orbiter LAMP Calibration Collection","description":"Lunar Reconnaissance Orbiter (LRO) Lyman-Alpha Mapping Project (LAMP) Raw Data Products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","LUNAR RECONNAISSANCE ORBITER"],"targets":["Moon"],"instruments":["LYMAN ALPHA MAPPING PROJECT"],"instrument_hosts":["LUNAR RECONNAISSANCE ORBITER"],"data_types":["Calibration"],"start_date":"2024-06-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/lro/lamp/calibration/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/lro/lamp/calibration/collection_calibration.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:40.592187","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mgn","title":"Magellan IMG Volume MGN_0001 ... MGN_1078","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/magellan/edr/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:55.939687","keywords":["1077 volumes","MGN_0001","MGN_1078"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mg","title":"Magellan IMG Volume MG_0001 ... MG_3002","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Magellan"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/magellan/stage/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:56.986571","keywords":["129 volumes","MG_0001","MG_3002"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mvm","title":"Mariner 10 IMG Volume MVM_0001 ... MVM_0015","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mariner 10"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mariner10/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:57.225376","keywords":["15 volumes","MVM_0001","MVM_0015"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:m2020_edlcam_raw::1.1","title":"EDLCAM Raw Video and Audio Bundle","description":"Mars 2020 Perseverance Rover Entry Descent Landing Raw Audio and Video Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Edlcam","Mars 2020 Entry Descent Landing Imager"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/m2020_edlcam_raw/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/m2020_edlcam_raw/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:48:58.591747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:m2020_edlcam_raw:data_audio::5.0","title":"Collection of document products for the EDLCAM Raw Video and Audio Bundle","description":"Collection of audio data products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/m2020_edlcam_raw/data_audio/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/m2020_edlcam_raw/data_audio/data_audio_collection.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:24.210663","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_cachecam_ops_calibrated::1.1","title":"Mars 2020 Cache Cameras Bundle, calibrated products","description":"Calibrated data products for the Mars 2020 Perseverance Rover Cache Camera.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_cachecam_ops_calibrated/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_cachecam_ops_calibrated/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:25.200258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_cachecam_ops_calibrated:data::4.0","title":"Collection of data products: Mars 2020 Cache Camera Bundle, calibrated products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_cachecam_ops_calibrated/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_cachecam_ops_calibrated/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:26.715451","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_cachecam_ops_raw::1.1","title":"Mars 2020 Cache Cameras Bundle, raw products","description":"Raw data products for the Mars 2020 Perseverance Rover Cache Camera.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_cachecam_ops_raw/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_cachecam_ops_raw/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:27.721120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_cachecam_ops_raw:data::5.0","title":"Collection of data products: Mars 2020 Cache Camera Bundle, raw products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-20","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_cachecam_ops_raw/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_cachecam_ops_raw/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:29.278546","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated::1.1","title":"Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products","description":"Calibrated data products for Mars 2020 Perseverance Rover Entry Descent and Landing, and Lander Visual System) Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Edlcam","Lcam","Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:30.316302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-06-23","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:31.824611","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_ddc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ddc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_ddc/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_ddc/collection_data_sol0_ddc.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:32.728169","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_lcam::1.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, lcam camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":"2021-02-18","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_lcam/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_lcam/collection_data_sol0_lcam.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:33.724979","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc1::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc1 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_puc1/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_puc1/collection_data_sol0_puc1.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:34.730104","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc2::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc2 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_puc2/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_puc2/collection_data_sol0_puc2.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:35.741999","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc3::2.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc3 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_puc3/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_puc3/collection_data_sol0_puc3.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:36.750811","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_rdc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, rdc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_rdc/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_rdc/collection_data_sol0_rdc.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:37.760668","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_ruc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ruc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_ruc/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_calibrated/data_sol0_ruc/collection_data_sol0_ruc.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:38.774735","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw::2.1","title":"Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products","description":"Raw data products for Mars 2020 Perseverance Rover Entry Descent and Landing, and Lander Visual System) Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Edlcam","Lcam","Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:39.768104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-06-23","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:41.264966","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_ddc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ddc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_ddc/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_ddc/collection_data_sol0_ddc.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:42.309572","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_lcam::1.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, lcam camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":"2021-02-18","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_lcam/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_lcam/collection_data_sol0_lcam.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:43.263833","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc1::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc1 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_puc1/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_puc1/collection_data_sol0_puc1.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:44.254800","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc2::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc2 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_puc2/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_puc2/collection_data_sol0_puc2.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:45.252494","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc3::2.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc3 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_puc3/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_puc3/collection_data_sol0_puc3.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:46.263159","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_rdc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, rdc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_rdc/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_rdc/collection_data_sol0_rdc.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:47.264093","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_ruc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ruc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_ruc/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_edlcam_ops_raw/data_sol0_ruc/collection_data_sol0_ruc.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:48.276226","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_calibrated::1.1","title":"Mars 2020 Hazard Cameras Bundle, calibrated products","description":"Calibrated data products for the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_calibrated/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_calibrated/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:49.278329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_calibrated:data::4.0","title":"Collection of data products: Mars 2020 Hazard Cameras Bundle, calibrated products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_calibrated/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_calibrated/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:50.810570","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_mesh::1.1","title":"Mars 2020 Hazard Cameras Bundle, terrain mesh products","description":"Terrain mesh data products for the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_mesh/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_mesh/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:51.841475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_mesh:data::4.0","title":"Collection of data products: Mars 2020 Hazard Cameras Bundle, terrain mesh products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_mesh/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_mesh/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:53.319295","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_mosaic::1.0","title":"Mars 20201Hazard Cameras Bundle, mosaic products","description":"Mosaic data products for the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_mosaic/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_mosaic/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:54.275415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_mosaic:data::4.0","title":"Collection of data products: Mars 2020 Hazard Cameras Bundle, mosaic products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_mosaic/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_mosaic/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:55.779605","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_raw::1.1","title":"Mars 2020 Hazard Cameras Bundle, raw products","description":"Raw data products for the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_raw/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_raw/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:56.788399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_raw:data::5.0","title":"Collection of data products: Mars 2020 Hazard Cameras Bundle, raw products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-23","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_raw/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_raw/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:58.282937","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_stereo::1.1","title":"Mars 2020 Hazard Cameras Bundle, stereo products","description":"Stereo data products for the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_stereo/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_stereo/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:49:59.284298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_hazcam_ops_stereo:data::4.0","title":"Collection of data products: Mars 2020 Hazard Cameras Bundle, stereo products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":"2021-05-20","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_stereo/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_hazcam_ops_stereo/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:00.785526","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_helicam::1.0","title":"Mars 2020 Helicopter Camera Suite Bundle","description":"Mars 2020 Perseverance Rover Helicopter Camera Suite Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Helicam","Mars 2020 Helicopter Camera Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_helicam/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_helicam/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:01.788825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_helicam:data::6.0","title":"Collection of data products: PDS4 Mars 2020 Perseverance Rover Helicopter Camera Suite Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Helicopter Camera Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_helicam/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_helicam/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:03.372337","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_imgops::1.0","title":"Mars 2020 Image Operations Bundle","description":"Mars 2020 Perseverance Rover Image Operations Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Pixl","Sherloc","Supercam","Mars 2020 Pixl Micro-context Camera","Mars 2020 Sherloc Imager","Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:04.330057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_imgops:data_aci_imgops::5.0","title":"PDS4 Mars 2020 Perseverance Rover SHERLOC ACI Image Operations Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Sherloc Imager"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/data_aci_imgops/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/data_aci_imgops/collection_data_aci_imgops.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:05.805290","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_imgops:data_mcc_imgops::5.0","title":"PDS4 Mars 2020 Perseverance Rover Image Operations PIXL MCC Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Pixl Micro-context Camera"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/data_mcc_imgops/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/data_mcc_imgops/collection_data_mcc_imgops.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:06.795975","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_imgops:data_rmi_imgops::4.0","title":"PDS4 Mars 2020 Perseverance Rover Image Operations SuperCam RMI Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/data_rmi_imgops/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/data_rmi_imgops/collection_data_rmi_imgops.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:07.803747","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_imgops:data_watson_imgops::5.0","title":"PDS4 Mars 2020 Perseverance Rover SHERLOC WATSON Image Operations Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Sherloc Imager"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/data_watson_imgops/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_imgops/data_watson_imgops/collection_data_watson_imgops.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:08.823842","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_calibrated::1.0","title":"Mars 2020 Mast Camera Zoom Bundle, from Operations Team, calibrated products","description":"Calibrated data products for the Mars 2020 Perseverance Rover Mast Camera Zoom Camera created by the operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mastcamz","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_calibrated/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_calibrated/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:09.809755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_calibrated:data::1.0","title":"Collection of data products: Mars 2020 Mast Camera Zoom Bundle, from Operations Team, calibrated products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2021-05-21","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_calibrated/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_calibrated/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:11.311160","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mesh::1.0","title":"Mars 2020 Mast Camera Zoom Bundle, from Operations Team, terrain mesh products","description":"Terrain mesh data products for the Mars 2020 Perseverance Rover Mast Camera Zoom Camera created by the operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mastcamz","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_mesh/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_mesh/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:12.321749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mesh:data::1.0","title":"Collection of data products: Mars 2020 Mast Camera Zoom Bundle, from Operations Team, terrain mesh products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-20","stop_date":"2021-05-21","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_mesh/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_mesh/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:13.851183","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mosaic::1.0","title":"Mars 2020 Mast Camera Zoom Bundle, from Operations Team, mosaic products","description":"Mosaic data products for the Mars 2020 Perseverance Rover Mast Camera Zoom Camera created by the operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mastcamz","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_mosaic/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_mosaic/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:14.909373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mosaic:data::1.0","title":"Collection of data products: Mars 2020 Mast Camera Zoom Bundle, from Operations Team, mosaic products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-03-06","stop_date":"2021-03-21","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_mosaic/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_mosaic/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:16.387914","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_raw::1.1","title":"Mars 2020 Mast Camera Zoom Bundle, from Operations Team, raw products","description":"Raw data products for the Mars 2020 Perseverance Rover Mast Camera Zoom Camera created by the operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mastcamz","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_raw/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_raw/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:17.322069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_raw:data::5.0","title":"Collection of data products: Mars 2020 Mast Camera Zoom Bundle, from Operations Team, raw products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-23","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_raw/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_raw/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:18.830503","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_stereo::1.0","title":"Mars 2020 Mast Camera Zoom Bundle, from Operations Team, stereo products","description":"Stereo data products for the Mars 2020 Perseverance Rover Mast Camera Zoom Camera created by the operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mastcamz","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_stereo/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_stereo/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:19.847003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_ops_stereo:data::1.0","title":"Collection of data products: Mars 2020 Mast Camera Zoom Bundle, from Operations Team, stereo products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-20","stop_date":"2021-05-21","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_stereo/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_ops_stereo/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:21.330425","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated::2.0","title":"Mars 2020 Mast Camera Zoom Bundle, from Arizona State University Mastcam-Z Instrument Team, calibrated products","description":"Calibrated data products for the Mars 2020 Perseverance Rover Mast Camera Zoom Camera created by the Arizona State University Mastcam-Z instrument team for the science team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mastcamz","Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_sci_calibrated/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_sci_calibrated/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:22.330689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated:data::5.0","title":"Collection of data products:Mars 2020 Mast Camera Zoom Bundle, from Arizona State University Mastcam-Z Instrument Team, calibrated products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_sci_calibrated/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_sci_calibrated/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:24.429792","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated:miscellaneous::1.0","title":"Collection of miscellaneous products: Mars 2020 Mast Camera Zoom Bundle, from Arizona State University Mastcam-Z Instrument Team, calibrated products","description":"Collection of MISCELLANEOUS products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_sci_calibrated/miscellaneous/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_mastcamz_sci_calibrated/miscellaneous/collection_miscellaneous.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:25.440250","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_calibrated::1.1","title":"Mars 2020 Navigation Cameras Bundle, calibrated products","description":"Calibrated data products for the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_calibrated/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_calibrated/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:26.439032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_calibrated:data::4.0","title":"Collection of data products: Mars 2020 Navigation Cameras Bundle, calibrated products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2021-05-21","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_calibrated/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_calibrated/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:28.015615","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_mesh::1.1","title":"Mars 2020 Navigation Cameras Bundle, mesh products","description":"Terrain mesh data products for the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_mesh/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_mesh/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:28.972306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_mesh:data::4.0","title":"Collection of data products: Mars 2020 Navigation Cameras Bundle, terrain mesh products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-20","stop_date":"2021-05-19","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_mesh/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_mesh/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:30.547594","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_mosaic::1.1","title":"Mars 2020 Navigation Cameras Bundle, mosaic products","description":"Mosaic data products for the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_mosaic/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_mosaic/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:31.450453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_mosaic:data::4.0","title":"Collection of data products: Mars 2020 Navigation Cameras Bundle, mosaic products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-20","stop_date":"2021-05-18","browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_mosaic/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_mosaic/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:32.964298","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_raw::1.1","title":"Mars 2020 Navigation Cameras Bundle, raw products","description":"Raw data products for the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_raw/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_raw/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:33.979974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_raw:data::5.0","title":"Collection of data products: Mars 2020 Navigation Cameras Bundle, raw products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-23","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_raw/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_raw/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:35.477680","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_stereo::1.1","title":"Mars 2020 Navigation Cameras Bundle, stereo products","description":"Stereo data products for the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Ecam","Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance","Mars2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_stereo/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_stereo/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:36.462319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020_navcam_ops_stereo:data::4.0","title":"Collection of data products: Mars 2020 Navigation Cameras Bundle, stereo products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_stereo/data/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/mars2020/mars2020_navcam_ops_stereo/data/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:37.963780","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer1do","title":"Mars Exploration Rover IMG Volume MER1DO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Spirit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/opportunity/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:39.041150","keywords":["1 volumes","MER1DO_0XXX","MER1DO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer1ho","title":"Mars Exploration Rover IMG Volume MER1HO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Spirit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/opportunity/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:39.041317","keywords":["1 volumes","MER1HO_0XXX","MER1HO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer1mo","title":"Mars Exploration Rover IMG Volume MER1MO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Spirit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/opportunity/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:39.041419","keywords":["1 volumes","MER1MO_0XXX","MER1MO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer1mw","title":"Mars Exploration Rover IMG Volume MER1MW_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Spirit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/opportunity/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:39.041501","keywords":["1 volumes","MER1MW_0XXX","MER1MW_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer1no","title":"Mars Exploration Rover IMG Volume MER1NO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Spirit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/opportunity/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:39.041578","keywords":["1 volumes","MER1NO_0XXX","MER1NO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer1om","title":"Mars Exploration Rover IMG Volume MER1OM_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Spirit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/opportunity/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:39.041642","keywords":["1 volumes","MER1OM_0XXX","MER1OM_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer1po","title":"Mars Exploration Rover IMG Volume MER1PO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Spirit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/opportunity/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:39.041700","keywords":["1 volumes","MER1PO_0XXX","MER1PO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mersaf","title":"Mars Exploration Rover IMG Volume MERSAF_0001 , MERSAF_0002","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/safed/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:40.100690","keywords":["2 volumes","MERSAF_0001","MERSAF_0002"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer2do","title":"Mars Exploration Rover IMG Volume MER2DO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Opportunity"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/spirit/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:40.637412","keywords":["1 volumes","MER2DO_0XXX","MER2DO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer2ho","title":"Mars Exploration Rover IMG Volume MER2HO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Opportunity"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/spirit/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:40.637556","keywords":["1 volumes","MER2HO_0XXX","MER2HO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer2mo","title":"Mars Exploration Rover IMG Volume MER2MO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Opportunity"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/spirit/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:40.637889","keywords":["1 volumes","MER2MO_0XXX","MER2MO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer2mw","title":"Mars Exploration Rover IMG Volume MER2MW_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Opportunity"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/spirit/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:40.638011","keywords":["1 volumes","MER2MW_0XXX","MER2MW_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer2no","title":"Mars Exploration Rover IMG Volume MER2NO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Opportunity"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/spirit/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:40.638071","keywords":["1 volumes","MER2NO_0XXX","MER2NO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer2om","title":"Mars Exploration Rover IMG Volume MER2OM_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Opportunity"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/spirit/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:40.638125","keywords":["1 volumes","MER2OM_0XXX","MER2OM_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mer2po","title":"Mars Exploration Rover IMG Volume MER2PO_0XXX","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Exploration Rover","Mars Exploration Rover Opportunity"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/spirit/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:50:40.638169","keywords":["1 volumes","MER2PO_0XXX","MER2PO_0XXX"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:messdem","title":"MESSENGER IMG Volume MESSDEM_1001 , MESSDEM_1001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:51:39.750511","keywords":["2 volumes","MESSDEM_1001","MESSDEM_1001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:msgrmds","title":"MESSENGER IMG Volume MSGRMDS_1001 ... MSGRMDS_8001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:51:39.750698","keywords":["22 volumes","MSGRMDS_1001","MSGRMDS_8001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mgs","title":"Mars Global Surveyor IMG Volume MGS_0001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mgs-m-mag_er-5-sampler-v1.0/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:51:41.633908","keywords":["1 volumes","MGS_0001","MGS_0001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mgsc","title":"Mars Global Surveyor IMG Volume MGSC_0001 ... MGSC_0010","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mgs-m-moc-na_wa-2-dsdp-l0-v1.0/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:51:42.922458","keywords":["10 volumes","MGSC_0001","MGSC_0010"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mgscim","title":"Mars Global Surveyor IMG Volume MGSCIM_0001 ... MGSCIM_1578","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mgs-m-moc-na_wa-2-sdp-l0-v1.0/rdr/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:51:56.872714","keywords":["588 volumes","MGSCIM_0001","MGSCIM_1578"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mgsp","title":"Mars Global Surveyor IMG Volume MGSP_0001 , MGSP_0002 , MGSP_0003 , MGSP_0004 , MGSP_0005","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mgs-m-spice-6-v1.0/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:51:58.622361","keywords":["5 volumes","MGSP_0001","MGSP_0005"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mrox","title":"Mars Reconnaissance Orbiter IMG Volume MROX_0001 ... MROX_5466","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mro/ctx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:52:04.965454","keywords":["5466 volumes","MROX_0001","MROX_5466"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mrom","title":"Mars Reconnaissance Orbiter IMG Volume MROM_0001 ... MROM_1694","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mro/marci/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:52:07.185148","keywords":["1694 volumes","MROM_0001","MROM_1694"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_hazcam_raw::40.0","title":"Mars Science Laboratory Hazcam Raw Data Bundle","description":"Mars Science Laboratory Hazard Avoidance Camera (Hazcam) Raw Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Msl","HAZARD AVOIDANCE CAMERA"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLHAZ_0XXX/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLHAZ_0XXX/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:00.164684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_hazcam_raw:data::40.0","title":"Collection of data products: Mars Science Laboratory Hazard Cameras Bundle, raw products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","Mars Science Laboratory Curiosity Rover Mission"],"targets":["Mars"],"instruments":["Front Hazard Avoidance Camera Left, String A","Front Hazard Avoidance Camera Left, String B","Front Hazard Avoidance Camera Right, String A","Front Hazard Avoidance Camera Right, String B","Rear Hazard Avoidance Camera Left, String A","Rear Hazard Avoidance Camera Left, String B","Rear Hazard Avoidance Camera Right, String A","Rear Hazard Avoidance Camera Right, String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLHAZ_0XXX/DATA/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLHAZ_0XXX/DATA/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:02.742999","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_hazcam_processed::40.0","title":"Mars Science Laboratory Hazcam Processed Data Bundle","description":"Mars Science Laboratory Hazard Avoidance Cameras (Hazcam) Processed Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Msl","HAZARD AVOIDANCE CAMERA"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLHAZ_1XXX/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLHAZ_1XXX/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:04.310657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_hazcam_processed:data::40.0","title":"Collection of data products: Mars Science Laboratory Hazard Cameras Bundle, processed products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","Mars Science Laboratory Curiosity Rover Mission"],"targets":["Mars"],"instruments":["Front Hazard Avoidance Camera Left, String A","Front Hazard Avoidance Camera Left, String B","Front Hazard Avoidance Camera Right, String A","Front Hazard Avoidance Camera Right, String B","Rear Hazard Avoidance Camera Left, String A","Rear Hazard Avoidance Camera Left, String B","Rear Hazard Avoidance Camera Right, String A","Rear Hazard Avoidance Camera Right, String B"],"instrument_hosts":["Mars Science Laboratory Curiosity Rover"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLHAZ_1XXX/DATA/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLHAZ_1XXX/DATA/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:06.923142","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm::1.0","title":"Mars Science Laboratory Mastcam MAHLI MARDI (MMM) Cameras Bundle","description":"Raw and calibrated data products for the Mars Science Laboratory Curiosity Rover MMM Cameras created by the operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":[],"start_date":"2023-06-16","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:17.972791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm:calibration::2.0","title":"Mars Science Laboratory MMM Calibration Collection","description":"This collection contains MMM calibration products","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":["Data"],"start_date":"2008-08-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/calibration/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/calibration/collection_calibration.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:19.547766","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm:data_mslmhl::9.0","title":"Mars Science Laboratory MMM MAHLI Data Collection","description":"This collection contains MMM MAHLI data products","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":["Data"],"start_date":"2008-08-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/data_MSLMHL/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/data_MSLMHL/collection_data_mslmhl.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:20.967442","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm:data_mslmrd::9.0","title":"Mars Science Laboratory MMM MARDI Data Collection","description":"This collection contains MMM MARDI data products","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":["Data"],"start_date":"2008-08-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/data_MSLMRD/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/data_MSLMRD/collection_data_mslmrd.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:22.794326","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm:data_mslmst::9.0","title":"Mars Science Laboratory MMM Mastcam Data Collection","description":"This collection contains MMM Mastcam data products","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":["Data"],"start_date":"2008-08-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/data_MSLMST/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/data_MSLMST/collection_data_mslmst.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:24.499236","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm:miscellaneous_mslmhl::8.0","title":"Mars Science Laboratory MMM MAHLI Miscellaneous Collection","description":"This collection contains MMM MAHLI Miscellaneous products","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":["Data"],"start_date":"2008-08-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/miscellaneous_MSLMHL/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/miscellaneous_MSLMHL/collection_miscellaneous_mslmhl.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:26.399990","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm:miscellaneous_mslmrd::8.0","title":"Mars Science Laboratory MMM Miscellaneous Collection","description":"This collection contains MMM MARDI Miscellaneous products","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":["Data"],"start_date":"2008-08-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/miscellaneous_MSLMRD/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/miscellaneous_MSLMRD/collection_miscellaneous_mslmrd.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:27.554905","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm:miscellaneous_mslmst::8.0","title":"Mars Science Laboratory MMM Miscellaneous Collection","description":"This collection contains MMM Mastcam Miscellaneous products","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":["Data"],"start_date":"2008-08-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/miscellaneous_MSLMST/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/miscellaneous_MSLMST/collection_miscellaneous_mslmst.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:28.927452","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_mmm:spice_kernels::1.0","title":"Mars Science Laboratory MMM SPICE Meta-Kernel Collection","description":"This collection contains MMM SPICE meta-kernel products","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars","MARS"],"instruments":["Msl","Msl","Msl","Msl","MARS HAND LENS IMAGER CAMERA","MARS DESCENT IMAGER CAMERA","MAST CAMERA LEFT","MAST CAMERA RIGHT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl","Msl"],"data_types":["Data"],"start_date":"2008-08-15","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/spice_kernels/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_mmm/spice_kernels/collection_spice_kernels.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:30.085168","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_navcam_mosaic::40.0","title":"Mars Science Laboratory Navcam Mosaic Data Bundle","description":"Mars Science Laboratory Navigation Camera (Navcam) Mosaic Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Msl","NAVIGATION CAMERA INSTRUMENT"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLMOS_1XXX/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLMOS_1XXX/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:31.108393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_navcam_mosaic:data::40.0","title":"Collection of data products: Mars Science Laboratory Navigation Cameras Bundle, mosaic products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Navigation Camera Left, String A","Navigation Camera Left, String B","Navigation Camera Right, String A","Navigation Camera Right, String B"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLMOS_1XXX/DATA/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLMOS_1XXX/DATA/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:33.841095","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_navcam_raw::40.0","title":"Mars Science Laboratory Navcam Raw Data Bundle","description":"Mars Science Laboratory Navigation Camera (Navcam) Raw Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Msl","NAVIGATION CAMERA"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLNAV_0XXX/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLNAV_0XXX/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:42.633720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_navcam_raw:data::40.0","title":"Collection of data products: Mars Science Laboratory Navigation Cameras Bundle, raw products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Navigation Camera Left, String A","Navigation Camera Left, String B","Navigation Camera Right, String A","Navigation Camera Right, String B"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLNAV_0XXX/DATA/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLNAV_0XXX/DATA/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:45.576722","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_navcam_processed::2.0","title":"Mars Science Laboratory Navcam Processed Data Bundle","description":"Mars Science Laboratory Navigation Camera (Navcam) Processed Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Msl","NAVIGATION CAMERA"],"instrument_hosts":["MARS SCIENCE LABORATORY","Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLNAV_1XXX/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLNAV_1XXX/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:46.881726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_navcam_processed:data::40.0","title":"Collection of data products: Mars Science Laboratory Navigation Cameras Bundle, processed products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory","MARS SCIENCE LABORATORY"],"targets":["Mars"],"instruments":["Navigation Camera Left, String A","Navigation Camera Left, String B","Navigation Camera Right, String A","Navigation Camera Right, String B"],"instrument_hosts":["MARS SCIENCE LABORATORY"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLNAV_1XXX/DATA/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/MSLNAV_1XXX/DATA/collection_data.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:49.782244","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_places::40.0","title":"Mars Science Laboratory Rover PLACES Bundle","description":"Localization (position and orientation) information for the Mars Science Laboratory Curiosity Rover\"","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Rover","Mars Science Laboratory Curiosity Rover"],"instrument_hosts":["Mars Science Laboratory","Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/bundle.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:55.276780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_places:data_ancillary::40.0","title":"Collection of ancillary data products for Rover PLACES","description":"Collection of ancillary data products for Rover PLACES.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Mars Science Laboratory Curiosity Rover"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_ancillary/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_ancillary/collection_data_ancillary.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:56.912251","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_places:data_localizations::40.0","title":"Collection of localization data products for Rover PLACES","description":"Collection of localization data products for Rover PLACES.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Mars Science Laboratory Curiosity Rover"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_localizations/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_localizations/collection_data_localizations.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:57.700049","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_places:data_maps::40.0","title":"Collection of map data products for Rover PLACES","description":"Collection of map data products for Rover PLACES.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Mars Science Laboratory Curiosity Rover"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_maps/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_maps/collection_data_maps.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:58.718982","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_places:data_mechanisms::40.0","title":"Collection of mechanism data products for Rover PLACES","description":"Collection of mechanism data products for Rover PLACES.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Mars Science Laboratory Curiosity Rover"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_mechanisms/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_mechanisms/collection_data_mechanisms.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:53:59.614116","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msl_places:data_orbital::40.0","title":"Collection of orbital data products for Rover PLACES","description":"Collection of orbital data products for Rover PLACES.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Mars Science Laboratory Curiosity Rover"],"instrument_hosts":["Mars Science Laboratoryr"],"data_types":["Data"],"start_date":"2012-08-06","stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_orbital/","download_url":null,"label_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/msl_places/data_orbital/collection_data_orbital.xml","source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:00.782133","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mslmhl","title":"Mars Science Laboratory IMG Volume MSLMHL_0001 ... MSLMHL_0032","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:16.193867","keywords":["32 volumes","MSLMHL_0001","MSLMHL_0032"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mslmrd","title":"Mars Science Laboratory IMG Volume MSLMRD_0001 ... MSLMRD_0032","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:16.194099","keywords":["32 volumes","MSLMRD_0001","MSLMRD_0032"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:mslmst","title":"Mars Science Laboratory IMG Volume MSLMST_0001 ... MSLMST_0032","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Mars Science Laboratory"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/msl/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:16.194267","keywords":["32 volumes","MSLMST_0001","MSLMST_0032"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:nhjulo","title":"Lunar Orbiter IMG Volume NHJULO_1001 , NHJULO_2001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Lunar Orbiter","New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/new_horizons/lorri/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:16.913712","keywords":["2 volumes","NHJULO_1001","NHJULO_2001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:nhlalo","title":"Lunar Orbiter IMG Volume NHLALO_1001 , NHLALO_2001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Lunar Orbiter","New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/new_horizons/lorri/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:16.913762","keywords":["2 volumes","NHLALO_1001","NHLALO_2001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:nhpclo","title":"Lunar Orbiter IMG Volume NHPCLO_1001 , NHPCLO_2001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Lunar Orbiter","New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/new_horizons/lorri/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:16.913797","keywords":["2 volumes","NHPCLO_1001","NHPCLO_2001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:nhpelo","title":"Lunar Orbiter IMG Volume NHPELO_1001 , NHPELO_2001","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Lunar Orbiter","New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/new_horizons/lorri/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:16.913824","keywords":["2 volumes","NHPELO_1001","NHPELO_2001"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:vg","title":"Voyager 1 IMG Volume VG_0006 ... VG_0025","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Voyager 1","Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/vg1_vg2-j-iss-2-edr-v3.0/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:49.959435","keywords":["16 volumes","VG_0006","VG_0025"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:vl","title":"Viking IMG Volume VL_0001 ... VL_2124","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/viking/viking_lander/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:52.793560","keywords":["27 volumes","VL_0001","VL_2124"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:vo","title":"Viking IMG Volume VO_1001 ... VO_2022","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/viking/viking_orbiter/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:54:55.985526","keywords":["68 volumes","VO_1001","VO_2022"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:vgr","title":"Voyager IMG Volume VGR_1201 ... VGR_1247","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/voyager/qedr/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:55:15.662262","keywords":["47 volumes","VGR_1201","VGR_1247"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"img:pds3:vgiss","title":"Voyager IMG Volume VGISS_0004 ... VGISS_0038","description":null,"node":"img","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/voyager/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-04T18:55:15.662991","keywords":["15 volumes","VGISS_0004","VGISS_0038"],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/naif_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/naif_catalog.jsonl new file mode 100644 index 0000000..18b2146 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/naif_catalog.jsonl @@ -0,0 +1,85 @@ +{"id":"urn:esa:psa:bc_spice::9.0","title":"BepiColombo SPICE Kernel Archive Bundle","description":"This bundle contains BepiColombo SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Bc","BepiColombo"],"targets":["Mercury"],"instruments":[],"instrument_hosts":["MPO","MMO","MTM","Mpo","Mmo","Mtm"],"data_types":[],"start_date":"2018-10-20","stop_date":"2025-05-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/bc/bc_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/bc/bc_spice/bundle_bc_spice_v009.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:09.657367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:esa:psa:bc_spice:spice_kernels::9.0","title":"BepiColombo SPICE Kernel Collection","description":"This collection contains SPICE kernels for the MPO, MMO, and MTM spacecraft and their instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Bc","BepiColombo"],"targets":["Mercury"],"instruments":[],"instrument_hosts":["MPO","MMO","MTM"],"data_types":["SPICE Kernel"],"start_date":"2018-10-20","stop_date":"2025-05-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/bc/bc_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/bc/bc_spice/spice_kernels/collection_spice_kernels_v009.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:10.658562","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps.spice::2.0","title":"CLPS SPICE Kernel Archive Bundle","description":"This bundle contains CLPS, CLPS Task Order 2AB, and CLPS Task Order 2IM SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Clps","Clps To 2Ab","Clps To 2Im","CLPS","CLPS Task Order 2AB","CLPS Task Order 2IM"],"targets":["Moon","MOON"],"instruments":[],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander","CLPS Task Order 2IM Nova-C Lunar Lander","Clps To 2Ab Pll","Clps To 2Im Ncll"],"data_types":[],"start_date":"2024-01-08","stop_date":"2024-02-22","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/clps/clps_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/clps/clps_spice/bundle_clps_spice_v002.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:12.162245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps.spice:spice_kernels::2.0","title":"CLPS SPICE Kernel Collection","description":"This collection contains SPICE kernels for the CLPS Task Order 2 AB Peregrine Lunar Lander and CLPS Task Order 2IM Nova-C Lunar Lander spacecraft and their instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Clps","Clps To 2Ab","Clps To 2Im","CLPS","CLPS Task Order 2AB","CLPS Task Order 2IM"],"targets":["Moon","MOON"],"instruments":[],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander","CLPS Task Order 2IM Nova-C Lunar Lander"],"data_types":["SPICE Kernel"],"start_date":"2024-01-08","stop_date":"2024-02-22","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/clps/clps_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/clps/clps_spice/spice_kernels/collection_spice_kernels_v002.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:13.159965","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart.spice::4.0","title":"DART SPICE Kernel Archive Bundle","description":"This bundle contains DART SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos","Dimorphos","(65803) Didymos (1996 GT)","(65803) Didymos I (Dimorphos)"],"instruments":[],"instrument_hosts":["Dart","Liciacube"],"data_types":[],"start_date":"2021-11-09","stop_date":"2050-01-01","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/dart/dart_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/dart/dart_spice/bundle_dart_spice_v004.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:14.664124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart.spice:spice_kernels::4.0","title":"DART SPICE Kernel Collection","description":"This collection contains SPICE kernels for the DART and LICIACube spacecraft and their instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos","Dimorphos","(65803) Didymos (1996 GT)","(65803) Didymos I (Dimorphos)"],"instruments":[],"instrument_hosts":["Dart","Liciacube"],"data_types":["SPICE Kernel"],"start_date":"2021-11-09","stop_date":"2050-01-01","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/dart/dart_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/dart/dart_spice/spice_kernels/collection_spice_kernels_v004.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:15.685348","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:esa:psa:em16_spice::15.0","title":"ExoMars 2016 SPICE Kernel Archive Bundle","description":"This bundle contains ExoMars 2016 SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Em16","ExoMars 2016"],"targets":["Mars"],"instruments":[],"instrument_hosts":["Tgo"],"data_types":[],"start_date":"2016-03-14","stop_date":"2025-05-18","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/em16/em16_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/em16/em16_spice/bundle_em16_spice_v015.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:17.185364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:esa:psa:em16_spice:spice_kernels::15.0","title":"ExoMars 2016 SPICE Kernel collection","description":"This collection contains SPICE kernels for the TGO spacecraft and its instruments and targets.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Em16","ExoMars 2016"],"targets":["Mars"],"instruments":[],"instrument_hosts":["Tgo"],"data_types":["SPICE Kernel"],"start_date":"2016-03-14","stop_date":"2025-05-18","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/em16/em16_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/em16/em16_spice/spice_kernels/collection_spice_kernels_v015.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:18.234944","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_spice::1.0","title":"Hayabusa2 SPICE Kernel Archive Bundle","description":"This bundle contains Hayabusa2 SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Hyb2","Hayabusa2"],"targets":["162173 Ryugu","(162173) Ryugu"],"instruments":[],"instrument_hosts":["Hayabusa2","MASCOT","Hyb2","Mascot"],"data_types":[],"start_date":"2014-12-03","stop_date":"2023-01-01","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/hyb2/hyb2_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/hyb2/hyb2_spice/bundle_hyb2_spice_v001.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:19.673282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_spice:spice_kernels::1.0","title":"Hayabusa2 SPICE Kernel Collection","description":"This collection contains SPICE kernels for the Hayabusa2 and MASCOT spacecraft and their instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Hyb2","Hayabusa2"],"targets":["162173 Ryugu","(162173) Ryugu"],"instruments":[],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["SPICE Kernel"],"start_date":"2014-12-03","stop_date":"2023-01-01","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/hyb2/hyb2_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/hyb2/hyb2_spice/spice_kernels/collection_spice_kernels_v001.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:20.675516","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight.spice::16.0","title":"InSight Mars Lander Mission SPICE Kernel Archive Bundle","description":"This bundle contains InSight Mars Lander Mission SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight Mars Lander Mission"],"targets":["Mars","MARS"],"instruments":[],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-05-05","stop_date":"2022-12-15","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/insight/insight_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/insight/insight_spice/bundle_insight_spice_v016.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:22.178392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight.spice:spice_kernels::16.0","title":"InSight Mars Lander Mission SPICE Kernel Collection","description":"This collection contains SPICE kernels for the InSight Mars Lander Spacecraft spacecraft and its instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Insight","InSight Mars Lander Mission"],"targets":["Mars","MARS"],"instruments":[],"instrument_hosts":["Insight"],"data_types":["SPICE Kernel"],"start_date":"2018-05-05","stop_date":"2022-12-15","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/insight/insight_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/insight/insight_spice/spice_kernels/collection_spice_kernels_v016.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:23.179940","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ladee.spice::1.0","title":"LADEE SPICE Kernel Archive Bundle","description":"This bundle contains LADEE SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Ladee","LADEE"],"targets":["Moon","MOON"],"instruments":[],"instrument_hosts":["Ladee"],"data_types":[],"start_date":"2013-09-07","stop_date":"2050-01-01","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/ladee/ladee_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/ladee/ladee_spice/bundle_ladee_spice_v001.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:24.684877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ladee.spice:spice_kernels::1.0","title":"LADEE SPICE Kernel Collection","description":"This collection contains SPICE kernels for the LADEE spacecraft and its instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Ladee","LADEE"],"targets":["Moon","MOON"],"instruments":[],"instrument_hosts":["Ladee"],"data_types":["SPICE Kernel"],"start_date":"2013-09-07","stop_date":"2050-01-01","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/ladee/ladee_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/ladee/ladee_spice/spice_kernels/collection_spice_kernels_v001.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:25.695752","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.spice::2.0","title":"Lucy Mission SPICE Kernel Archive Bundle","description":"This bundle contains Lucy Mission SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Lucy","Lucy Mission"],"targets":["152830 Dinkinesh","Selam","52246 Donaldjohanson","3548 Eurybates","Queta","15094 Polymele","11351 Leucus","21900 Orus","617 Patroclus","Menoetius","(152830) Dinkinesh I (Selam)","(3548) Eurybates I (Queta)","(617) Patroclus I (Menoetius)"],"instruments":[],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"2021-10-16","stop_date":"2025-05-05","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/lucy/lucy_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/lucy/lucy_spice/bundle_lucy_spice_v002.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:27.218944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.spice:spice_kernels::2.0","title":"Lucy Mission SPICE Kernel Collection","description":"This collection contains SPICE kernels for the Lucy Spacecraft instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Lucy","Lucy Mission"],"targets":["152830 Dinkinesh","Selam","52246 Donaldjohanson","3548 Eurybates","Queta","15094 Polymele","11351 Leucus","21900 Orus","617 Patroclus","Menoetius","(152830) Dinkinesh I (Selam)","(3548) Eurybates I (Queta)","(617) Patroclus I (Menoetius)"],"instruments":[],"instrument_hosts":["Lucy Spacecraft"],"data_types":["SPICE Kernel"],"start_date":"2021-10-16","stop_date":"2025-05-05","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/lucy/lucy_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/lucy/lucy_spice/spice_kernels/collection_spice_kernels_v002.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:28.268366","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020.spice::14.0","title":"Mars 2020 Perseverance Rover Mission SPICE Kernel Archive Bundle","description":"This bundle contains Mars 2020 Perseverance Rover Mission SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars","MARS"],"instruments":[],"instrument_hosts":["Mars2020"],"data_types":[],"start_date":"2020-07-30","stop_date":"2025-09-09","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/mars2020/mars2020_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/mars2020/mars2020_spice/bundle_mars2020_spice_v014.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:29.771098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mars2020.spice:spice_kernels::14.0","title":"Mars 2020 Perseverance Rover Mission SPICE Kernel Collection","description":"This collection contains SPICE kernels for the Mars 2020 Perseverance Rover spacecraft and its instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Mars2020","Mars 2020 Perseverance Rover Mission"],"targets":["Mars","MARS"],"instruments":[],"instrument_hosts":["Mars2020"],"data_types":["SPICE Kernel"],"start_date":"2020-07-30","stop_date":"2025-09-09","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/mars2020/mars2020_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/mars2020/mars2020_spice/spice_kernels/collection_spice_kernels_v014.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:30.699930","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.spice::43.0","title":"MAVEN SPICE Kernel Archive Bundle","description":"This bundle contains MAVEN SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Maven","MAVEN"],"targets":["Mars","MARS"],"instruments":[],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2013-11-18","stop_date":"2025-10-01","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/maven/maven_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/maven/maven_spice/bundle_maven_spice_v043.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:32.201363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.spice:spice_kernels::43.0","title":"MAVEN SPICE Kernel Collection","description":"This collection contains SPICE kernels for the MAVEN spacecraft and its instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Maven","MAVEN"],"targets":["Mars","MARS"],"instruments":[],"instrument_hosts":["Maven"],"data_types":["SPICE Kernel"],"start_date":"2013-11-18","stop_date":"2025-10-01","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/maven/maven_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/maven/maven_spice/spice_kernels/collection_spice_kernels_v043.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:33.204318","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spice::13.0","title":"OSIRIS-REx SPICE Kernel Archive Bundle","description":"This bundle contains OSIRIS-REx SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Orex","OSIRIS-REx"],"targets":["101955 Bennu","(101955) Bennu"],"instruments":[],"instrument_hosts":["Orex"],"data_types":[],"start_date":"2016-09-08","stop_date":"2023-10-02","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/orex/orex_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/orex/orex_spice/bundle_orex_spice_v013.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:34.708631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spice:spice_kernels::13.0","title":"OSIRIS-REx SPICE Kernel Collection","description":"This collection contains SPICE kernels for the OSIRIS-REx spacecraft and its instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Orex","OSIRIS-REx"],"targets":["101955 Bennu","(101955) Bennu"],"instruments":[],"instrument_hosts":["Orex"],"data_types":["SPICE Kernel"],"start_date":"2016-09-08","stop_date":"2023-10-02","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/orex/orex_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/orex/orex_spice/spice_kernels/collection_spice_kernels_v013.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:35.707353","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.spice::2.0","title":"Psyche SPICE Kernel Archive Bundle","description":"This bundle contains Psyche SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Psyche","Psyche Mission"],"targets":["16 Psyche"],"instruments":[],"instrument_hosts":["The Psyche Spacecraft","Psyche"],"data_types":[],"start_date":"2023-10-13","stop_date":"2025-10-06","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/psyche/psyche_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/psyche/psyche_spice/bundle_psyche_spice_v002.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:37.209317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.spice:spice_kernels::2.0","title":"Psyche SPICE Kernel Collection","description":"This collection contains SPICE kernels for the Psyche spacecraft instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Psyche","Psyche Mission"],"targets":["16 Psyche"],"instruments":[],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["SPICE Kernel"],"start_date":"2023-10-13","stop_date":"2025-10-06","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/psyche/psyche_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/psyche/psyche_spice/spice_kernels/collection_spice_kernels_v002.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:38.229310","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:vco_spice::4.0","title":"Venus Climate Orbiter Akatsuki Mission SPICE Kernel Archive Bundle","description":"This bundle contains Venus Climate Orbiter Akatsuki Mission SPICE kernels and related documentation.","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Vco","Venus Climate Orbiter Akatsuki Mission"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Venus Climate Orbiter Akatsuki","Vco"],"data_types":[],"start_date":"2010-05-21","stop_date":"2024-04-26","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/vco/vco_spice/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/vco/vco_spice/bundle_vco_spice_v004.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:39.800569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:vco_spice:spice_kernels::4.0","title":"Venus Climate Orbiter Akatsuki Mission SPICE Kernel Collection","description":"This collection contains SPICE kernels for the Venus Climate Orbiter Akatsuki spacecraft and its instruments.","node":"naif","pds_version":"PDS4","type":"collection","missions":["Vco","Venus Climate Orbiter Akatsuki Mission"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Venus Climate Orbiter Akatsuki"],"data_types":["SPICE Kernel"],"start_date":"2010-05-21","stop_date":"2024-04-26","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/vco/vco_spice/spice_kernels/","download_url":null,"label_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/vco/vco_spice/spice_kernels/collection_spice_kernels_v004.xml","source_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/","scraped_at":"2026-02-03T21:55:40.781876","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"naif:announcements:de72251d","title":"Announcements SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Announcements","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Announcements"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/announcements/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375213","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:about_spice:a863189c","title":"About SPICE SPICE Kernel Archive","description":"SPICE navigation and ancillary data for About SPICE","node":"naif","pds_version":"PDS4","type":"bundle","missions":["About SPICE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/about_spice/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375236","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:about_naif:0f1ec7e1","title":"About NAIF SPICE Kernel Archive","description":"SPICE navigation and ancillary data for About NAIF","node":"naif","pds_version":"PDS4","type":"bundle","missions":["About NAIF"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/about_naif/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375248","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:for_new_projects:d53ce441","title":"For New Projects SPICE Kernel Archive","description":"SPICE navigation and ancillary data for For New Projects","node":"naif","pds_version":"PDS4","type":"bundle","missions":["For New Projects"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/for_new_projects/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375260","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:for_the_public:6f5a9e9c","title":"For the Public SPICE Kernel Archive","description":"SPICE navigation and ancillary data for For the Public","node":"naif","pds_version":"PDS4","type":"bundle","missions":["For the Public"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/for_the_public/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375270","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:data:3b0816cd","title":"Data SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Data","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Data"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375278","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:toolkit:695e7847","title":"Toolkit SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Toolkit","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Toolkit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/toolkit/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375287","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:utilities:557abafe","title":"Utilities SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Utilities","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Utilities"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/utilities/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375298","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:webgeocalc:0f868f6e","title":"WebGeocalc SPICE Kernel Archive","description":"SPICE navigation and ancillary data for WebGeocalc","node":"naif","pds_version":"PDS4","type":"bundle","missions":["WebGeocalc"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/webgeocalc/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375306","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:cosmographia:bbe67782","title":"Cosmographia SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Cosmographia","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Cosmographia"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/cosmographia/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375315","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:documentation:957786ca","title":"Documentation SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Documentation","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Documentation"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/documentation/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375323","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:tutorials:a0ffbfda","title":"Tutorials SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Tutorials","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Tutorials"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/tutorials/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375332","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:lessons:1f4aa87f","title":"Lessons SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Lessons","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Lessons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/lessons/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375340","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:training:35a1f7c2","title":"Training SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Training","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Training"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/training/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375348","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:bugs:93826beb","title":"Bugs SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Bugs","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Bugs"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/bugs/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375355","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:useful_links:79e496c8","title":"Useful Links SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Useful Links","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Useful Links"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/useful_links/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375364","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:rules:26685090","title":"Rules SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Rules","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Rules"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/rules/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375371","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:giving_credit:1ee1f0fa","title":"Giving Credit SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Giving Credit","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Giving Credit"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/giving_credit/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375380","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:feedback:20e8fd49","title":"Feedback SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Feedback","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Feedback"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/feedback/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375387","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:support:afcdf9a5","title":"Support SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Support","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Support"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/support/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375394","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:getting_help:d8f73c71","title":"Getting Help SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Getting Help","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Getting Help"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/getting_help/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375402","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:site_map:837227ee","title":"Site Map SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Site Map","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Site Map"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":null,"stop_date":null,"browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/site_map/","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375409","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:bepicolombo:cc3a55ca","title":"BepiColombo SPICE Kernel Archive","description":"SPICE navigation and ancillary data for BepiColombo","node":"naif","pds_version":"PDS4","type":"bundle","missions":["BepiColombo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/bc/bc_spice/document/spiceds_v005.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375591","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:clps:3a870a61","title":"CLPS SPICE Kernel Archive","description":"SPICE navigation and ancillary data for CLPS","node":"naif","pds_version":"PDS4","type":"bundle","missions":["CLPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2024-01-01","stop_date":"2024-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/clps/clps_spice/document/spiceds_v002.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375606","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:cassini_orbiter:97c6255a","title":"Cassini SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Cassini","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2017-01-01","stop_date":"2017-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/co-s_j_e_v-spice-6-v1.0/cosp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375619","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:clementine:36eca606","title":"Clementine SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Clementine","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Clementine"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"1994-01-01","stop_date":"1994-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/clem1-l-spice-6-v1.0/clsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375631","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:dart:eb5082f2","title":"DART SPICE Kernel Archive","description":"SPICE navigation and ancillary data for DART","node":"naif","pds_version":"PDS4","type":"bundle","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2050-01-01","stop_date":"2050-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/dart/dart_spice/document/spiceds_v004.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375642","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:dawn:bed7081f","title":"Dawn SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Dawn","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Dawn"],"targets":["Vesta","Ceres"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2018-01-01","stop_date":"2018-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/dawn-m_a-spice-6-v1.0/dawnsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375652","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:deep_impact:d314ad35","title":"Deep Impact SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Deep Impact","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2005-01-01","stop_date":"2005-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/di-c-spice-6-v1.0/disp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375667","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:deep_space_1:ad8f4ba6","title":"Deep Space 1 SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Deep Space 1","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Deep Space 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2001-01-01","stop_date":"2001-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/ds1-a_c-spice-6-v1.0/ds1sp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375678","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:epoxi:d2bb311a","title":"EPOXI SPICE Kernel Archive","description":"SPICE navigation and ancillary data for EPOXI","node":"naif","pds_version":"PDS4","type":"bundle","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2011-01-01","stop_date":"2011-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/dif-c_e_x-spice-6-v1.0/epxsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375688","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:exomars_tgo_2016:9c88deec","title":"ExoMars TGO 2016 SPICE Kernel Archive","description":"SPICE navigation and ancillary data for ExoMars TGO 2016","node":"naif","pds_version":"PDS4","type":"bundle","missions":["ExoMars TGO 2016"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/em16/em16_spice/document/spiceds_v010.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375701","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:grail:d578685b","title":"GRAIL SPICE Kernel Archive","description":"SPICE navigation and ancillary data for GRAIL","node":"naif","pds_version":"PDS4","type":"bundle","missions":["GRAIL"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2012-01-01","stop_date":"2012-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/grail-l-spice-6-v1.0/grlsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375711","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:hayabusa:43056130","title":"Hayabusa SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Hayabusa","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Hayabusa"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2005-01-01","stop_date":"2005-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/hay-a-spice-6-v1.0/haysp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375721","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:hayabusa2:08bef8d6","title":"Hayabusa SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Hayabusa","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Hayabusa"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2023-01-01","stop_date":"2023-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/hyb2/hyb2_spice/document/spiceds_v001.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375731","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:insight:ea4a8f27","title":"InSight SPICE Kernel Archive","description":"SPICE navigation and ancillary data for InSight","node":"naif","pds_version":"PDS4","type":"bundle","missions":["InSight"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2022-01-01","stop_date":"2022-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/insight/insight_spice/document/spiceds_v004.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375741","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:juno:57f86e85","title":"Juno SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Juno","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/jno-j_e_ss-spice-6-v1.0/jnosp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375751","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:ladee:52a83d2b","title":"LADEE SPICE Kernel Archive","description":"SPICE navigation and ancillary data for LADEE","node":"naif","pds_version":"PDS4","type":"bundle","missions":["LADEE"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2050-01-01","stop_date":"2050-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/ladee/ladee_spice/document/spiceds_v001.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375760","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:lucy:1a63dc18","title":"Lucy SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Lucy","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/lucy/lucy_spice/document/spiceds_v002.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375770","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:lunar_reconnaissance_orbiter:dd0b6859","title":"Lunar Reconnaissance Orbiter SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Lunar Reconnaissance Orbiter","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/lro-l-spice-6-v1.0/lrosp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375783","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:maven:aa5c0793","title":"MAVEN SPICE Kernel Archive","description":"SPICE navigation and ancillary data for MAVEN","node":"naif","pds_version":"PDS4","type":"bundle","missions":["MAVEN"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/maven/maven_spice/document/spiceds_v010.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375793","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:mer_1_opportunity:036569fb","title":"Mars Exploration Rover SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Mars Exploration Rover","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2018-01-01","stop_date":"2018-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/mer1-m-spice-6-v1.0/mer1sp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375804","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:mer_2_spirit:b2ed1b04","title":"Mars Exploration Rover SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Mars Exploration Rover","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2010-01-01","stop_date":"2010-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/mer2-m-spice-6-v1.0/mer2sp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375815","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:messenger:f298220c","title":"MESSENGER SPICE Kernel Archive","description":"SPICE navigation and ancillary data for MESSENGER","node":"naif","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2015-01-01","stop_date":"2015-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/mess-e_v_h-spice-6-v1.0/messsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375826","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:mars_2020:62f1cc0b","title":"Mars 2020 SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Mars 2020","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars 2020"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/mars2020/mars2020_spice/document/spiceds_v003.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375837","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:mars_express:d86907bf","title":"Mars Express SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Mars Express","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars Express"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/mex-e_m-spice-6-v2.0/mexsp_2000/AAREADME.TXT","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375848","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:mars_global_surveyor:69ff5244","title":"Mars Global Surveyor SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Mars Global Surveyor","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2006-01-01","stop_date":"2006-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/mgs-m-spice-6-v1.0/mgsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375860","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:mars_odyssey:64b512be","title":"Mars Odyssey SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Mars Odyssey","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars Odyssey"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/ody-m-spice-6-v1.0/odsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375871","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:mars_reconnaissance_orbiter:a550eb21","title":"Mars Reconnaissance Orbiter SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Mars Reconnaissance Orbiter","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/mro-m-spice-6-v1.0/mrosp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375883","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:mars_science_laboratory:4dd67858","title":"Mars Science Laboratory SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Mars Science Laboratory","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/msl-m-spice-6-v1.0/mslsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375900","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:near:53605529","title":"NEAR Shoemaker SPICE Kernel Archive","description":"SPICE navigation and ancillary data for NEAR Shoemaker","node":"naif","pds_version":"PDS4","type":"bundle","missions":["NEAR Shoemaker"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2001-01-01","stop_date":"2001-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/near-a-spice-6-v1.0/nearsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375912","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:new_horizons:815be3ba","title":"New Horizons SPICE Kernel Archive","description":"SPICE navigation and ancillary data for New Horizons","node":"naif","pds_version":"PDS4","type":"bundle","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2024-01-01","stop_date":"2024-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/nh-j_p_ss-spice-6-v1.0/nhsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375925","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:osiris_rex:8643b825","title":"OSIRIS-REx SPICE Kernel Archive","description":"SPICE navigation and ancillary data for OSIRIS-REx","node":"naif","pds_version":"PDS4","type":"bundle","missions":["OSIRIS-REx"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2023-01-01","stop_date":"2023-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/orex/orex_spice/document/spiceds_v010.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375935","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:psyche:2999fd46","title":"Psyche SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Psyche","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Psyche"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2025-01-01","stop_date":"2025-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/psyche/psyche_spice/document/spiceds_v001.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375971","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:rosetta:2b2de6e2","title":"Rosetta SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Rosetta","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2017-01-01","stop_date":"2017-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/ro_rl-e_m_a_c-spice-6-v1.0/rossp_1000/AAREADME.TXT","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375982","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:stardust:1efe8b6c","title":"Stardust SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Stardust","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2011-01-01","stop_date":"2011-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/sdu-c-spice-6-v1.0/sdsp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.375992","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:venus_climate_orbiter:317262d9","title":"Venus Climate Orbiter SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Venus Climate Orbiter","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Venus Climate Orbiter"],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2024-01-01","stop_date":"2024-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/pds4/vco/vco_spice/document/spiceds_v002.html","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.376004","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:venus_express:e7458597","title":"Venus Express SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Venus Express","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Venus Express"],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"2015-01-01","stop_date":"2015-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/vex-e_v-spice-6-v2.0/vexsp_2000/AAREADME.TXT","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.376015","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"naif:viking_orbiter:c50e77af","title":"Viking SPICE Kernel Archive","description":"SPICE navigation and ancillary data for Viking","node":"naif","pds_version":"PDS4","type":"bundle","missions":["Viking"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["SPICE","Navigation","Ancillary"],"start_date":"1980-01-01","stop_date":"1980-12-31","browse_url":"https://naif.jpl.nasa.gov/pub/naif/pds/data/vo1_vo2-m-spice-6-v1.0/vosp_1000/aareadme.htm","download_url":null,"label_url":null,"source_url":"https://naif.jpl.nasa.gov/naif/data_archived.html","scraped_at":"2026-02-03T21:55:41.376026","keywords":["SPICE","kernels","ephemeris","pointing","navigation"],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/ppi_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/ppi_catalog.jsonl new file mode 100644 index 0000000..30f1666 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/ppi_catalog.jsonl @@ -0,0 +1,1421 @@ +{"id":"urn:nasa:pds:cassini-caps-calibrated::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Calibrated Data Bundle","description":"This bundle consists of all of the calibrated data acquired by \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft \n during the Cassini mission.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn"],"instruments":["Co","Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/bundle_cassini_caps_calibrated_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:17.618588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-calibrated:data-els::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Calibrated Electron Spectrometer Data Collection","description":"This collection consists of all of the calibrated electron spectrometer data \n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Ion And Neutral Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-els/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-els/collection_data_caps_calibrated_els_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:18.625297","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-calibrated:data-ibs::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Calibrated Ion Beam Spectrometer Data Collection","description":"This collection consists of all of the calibrated ion beam spectrometer data from the Cassini \n Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Ion And Neutral Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-ibs/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-ibs/collection_data_caps_calibrated_ibs_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:19.877233","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-calibrated:data-ion::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Calibrated Ion Mass Spectrometer Ion Data Collection","description":"This collection consists of all of the calibrated Ion Mass Spectrometer ion data from the \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Ion And Neutral Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-ion/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-ion/collection_data_caps_calibrated_ion_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:20.715379","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-calibrated:data-sng::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Calibrated Ion Mass Spectrometer Singles Data Collection","description":"This collection consists of all of the calibrated ion mass spectrometer singles data \n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Ion And Neutral Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-sng/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-sng/collection_data_caps_calibrated_sng_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:21.682202","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-calibrated:data-toflef::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Calibrated Ion Mass Spectrometer 'Time Of Flight' Linear Electric Field Data Collection","description":"This collection consists of all of the calibrated ion mass spectrometer 'time of flight' linear electric\n field data from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Ion And Neutral Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-toflef/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-toflef/collection_data_caps_calibrated_toflef_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:22.630337","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-calibrated:data-tofst::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Calibrated Ion Mass Spectrometer 'Time Of Flight' Straight Through Data Collection","description":"This collection consists of all of the calibrated ion mass spectrometer 'time of flight' straight through data \n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Ion And Neutral Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-tofst/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/data-tofst/collection_data_caps_calibrated_tofst_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:23.645419","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-calibrated:document::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Calibrated Document Collection","description":"This collection contains the documents associated with the Cassini CAPS Calibrated Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn","Solar Wind"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:24.649013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Derived Bundle","description":"The uncalibrated data were acquired in a mix of CAPS operating modes \n beginning with the first instrument checkout in January 1999 and \n containing throughout the Cassini Tour and through the end of prime \n mission. The data cover the time period from 1999-004T03:07:47 \n UT until end of prime mission (July 2008). In addition, it covers \n data received during extended missions. Sampling rates were variable \n and depended upon the downlink capabilities and other activities \n on-board.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Jupiter","Saturn","Solar Wind"],"instruments":["Co","Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/bundle_cassini_caps_ddr_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:26.132772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived:data-ele-mom::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Derived Electron Moments Data Collection","description":"This collection consists of all of the electron moments data generated from the Cassini \n Plasma Spectrometer (CAPS) electron spectrometer uncalibrated data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-08-17","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ele-mom/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ele-mom/collection_data_caps_ddr_ele_moments_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:27.215115","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived:data-ion-moments::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Derived Ion Moments Data Collection","description":"CASSINI ORBITER SAT/SW CAPS DERIVED ION MOMENTS V1.0","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-06-28","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ion-moments/collection_data_caps_ddr_ion_moments_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:28.148705","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived:data-scpot::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Derived Spacecraft Potential Data Collection","description":"CASSINI ORBITER SAT/SW CAPS DERIVED V1.0","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-06-28","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-scpot/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-scpot/collection_data_caps_ddr_sc_scpot_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:29.166421","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived:document::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Derived Document Collection","description":"This collection contains the documents associated with the Cassini CAPS \n Derived Electron Moments Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Jupiter","Saturn","Solar Wind"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:30.170634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-fitted-parameters::1.0","title":"Cassini CAPS Fitted Parameters Bundle","description":"This data set consists of all of the fits (both good and bad) that were found \n by Dr. Robert J. Wilson during the NASA Cassini Data Analysis Program grant \n (NNX12AG90G). The Cassini CAPS plasma data used in the forward model plasma \n parameter calculations given here came from volume \n CO-E/J/S/SW-CAPS-2-UNCALIBRATED-V1.0 in the Planetary Data System (PDS).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini_Huygens"],"targets":["Saturn"],"instruments":["Co","Cassini Plasma Spectrometer"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-01-01","stop_date":"2012-06-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/bundle-cassini-caps-fitted-parameters-v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:31.749250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-fitted-parameters:data::1.0","title":"Cassini CAPS Moments Data Collection","description":"This data collection contains \n fits (both good and bad) that were found during \n R. J. Wilson et al's grant from NASA's Cassini Data Analysis Program (NNX12AG90G).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Co"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2012-06-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/Data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/Data/Collection_Data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:32.694019","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-fitted-parameters:document::1.0","title":"Cassini CAPS Fitted Parameters Document Collection","description":"This document collection contains the documentation associated with the \n Cassini CAPS Fitted Parameters Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini_Huygens"],"targets":["Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Co"],"data_types":["Document"],"start_date":"2004-01-01","stop_date":"2012-06-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/Document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/Document/Collection_Document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:33.743707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw::1.0","title":"Cassini Orbiter Cassini Plasma Spectrometer (CAPS) Raw Data Bundle","description":"This bundle contains all of the raw data acquired by \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft \n during the Cassini mission.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Co","Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/bundle_cassini_caps_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:35.190533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:browse-act::1.0","title":"Cassini CAPS Actuator (ACT) Browse Collection","description":"This collection contains raw actuator browse images collected by the Cassini Plasma \n Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-act/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-act/collection_browse_act_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:36.175568","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:browse-els::1.0","title":"Cassini CAPS Raw Electron Spectrometer (ELS) Browse Collection","description":"This collection contains raw electron spectrometer browse images collected by the \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-els/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-els/collection_browse_els_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:37.176297","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:browse-ibs::1.0","title":"Cassini CAPS Raw Ion Beam Spectrometer (IBS) Browse Collection","description":"This collection contains raw ion beam spectrometer browse images collected by the \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-ibs/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-ibs/collection_browse_ibs_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:38.160384","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:browse-ion::1.0","title":"Cassini CAPS Ion Browse Collection","description":"This collection contains raw ion mass spectrometer ion browse images collected by the \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-ion/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-ion/collection_browse_ion_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:39.235383","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:browse-log::1.0","title":"Cassini CAPS Raw Logicals (LOG) Browse Collection","description":"This collection contains raw ion mass spectrometer logicals browse images collected by the \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-log/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-log/collection_browse_log_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:40.173134","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:browse-sng::1.0","title":"Cassini CAPS Raw Singles (SNG) Browse Collection","description":"This collection contains raw ion mass spectrometer singles browse images collected by the \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-sng/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-sng/collection_browse_sng_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:41.172622","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:browse-tof::1.0","title":"Cassini CAPS Raw Time Of Flight Browse Collection","description":"This collection contains raw ion mass spectrometer 'time of flight' browse \n images collected by the Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-09-12","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-tof/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/browse-tof/collection_browse_tof_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:42.211085","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:calibration::1.0","title":"Cassini CAPS Raw Calibration Collection Data","description":"This collection contains Cassini CAPS plots of various instrument\n parameters (including data) that can be helpful in quickly determining\n in the instrument observed some interaction or process of interest.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Calibration"],"start_date":"1999-01-04","stop_date":"2012-06-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/calibration/collection_calibration_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:43.263821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:data-act::1.0","title":"Cassini CAPS Raw Actuator (ACT) Data Collection","description":"This collection consists of all of the raw actuator data \n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini\n spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-04","stop_date":"2012-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-act/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-act/collection_data_act_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:44.233127","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:data-anc::1.0","title":"Cassini CAPS Raw Ancillary (ANC) Data Collection","description":"This collection consists of all of the raw ancillary data \n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini\n spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-04","stop_date":"2012-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-anc/collection_data_anc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:45.277328","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:data-els::1.0","title":"Cassini CAPS Raw Electron Spectrometer (ELS) Data Collection","description":"This collection consists of all of the raw electron spectrometer data \n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini\n spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-04","stop_date":"2012-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-els/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-els/collection_data_els_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:46.177652","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:data-ibs::1.0","title":"Cassini CAPS Raw Ion Beam Spectrometer (IBS) Data Collection","description":"This collection consists of all of the raw ion beam spectrometer data from the Cassini \n Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-04","stop_date":"2012-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-ibs/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-ibs/collection_data_ibs_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:47.181474","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:data-ion::1.0","title":"Cassini CAPS Raw Ion Mass Spectrometer Ion Data Collection","description":"This collection consists of all of the raw ion data from the \n Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during\n the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-04","stop_date":"2012-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-ion/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-ion/collection_data_ion_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:48.185886","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:data-log::1.0","title":"Cassini CAPS Raw Ion Mass Spectrometer Logicals (LOG) Data Collection","description":"This collection consists of all of the raw actuator data \n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini\n spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-04","stop_date":"2012-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-log/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-log/collection_data_log_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:49.195881","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:data-sng::1.0","title":"Cassini CAPS Raw Ion Mass Spectrometer Singles (SNG) Data Collection","description":"This collection consists of all of the raw singles data \n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini \n spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-04","stop_date":"2012-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-sng/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-sng/collection_data_sng_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:50.189747","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:data-tof::1.0","title":"Cassini CAPS Raw Ion Mass Spectrometer Time Of Flight (TOF) Data Collection","description":"This collection consists of all of the raw time of flight data\n from the Cassini Plasma Spectrometer (CAPS) on-board the Cassini \n spacecraft during the entire Cassini mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-04","stop_date":"2012-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-tof/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/data-tof/collection_data_tof_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:51.237617","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw:document::1.0","title":"Cassini CAPS Raw Document Collection","description":"This collection contains the documents \n associated with the Cassini CAPS Raw Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Jupiter","Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:52.204695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal::1.1","title":"Cassini Magnetometer Calibrated Bundle","description":"This bundle contains Cassini magnetometer calibrated data for the entire mission. The bundle includes\n 1 minute averaged and 1 second averaged data provided in Kronographic (KRTP, KSO, KSM) coordinates at Saturn, \n Geographic coordinates (GSE) for the Earth flyby, Jovigraphic coordinates for the Jupiter flyby, and \n RTN coordinates for the entire mission, and full time resolution data provided in RTN coordinates for cruise, \n Kronographic (KRTP) coordinates for Saturn Tour, Geographic coordinates (GSE) for the Earth flyby,and \n IAU_Jupiter (J3) and JMAG XYZ (JMXYZ) for Outer Cruise. A spice metakernel collection for the 1 minute \n averaged data is provided as well.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Venus","Saturn","Solar Wind","Jupiter","Phoebe","Titan","Dione","Enceladus","Hyperion","Iapetus","Rhea","Tethys"],"instruments":["Co","Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1998-12-30","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/bundle-cassini-mag-cal-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:53.810342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1min-krtp::1.0","title":"Cassini MAG Calibrated 1 Min. Avg. Data in KRTP Coords. Collection","description":"This collection contains Cassini magnetic-field 1 minute averages in KRTP \n coordinates, from the Fluxgate Magnetometer (FGM) instrument. KRTP coordinates \n are the standard right-handed spherical triad: R (Saturn to spacecraft), Phi \n (parallel to Saturn's equator), and Theta (completes right handed set).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-05-11","stop_date":"2017-09-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1min-krtp/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1min-krtp/collection-data-1min-krtp-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:54.718889","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1min-ksm::1.0","title":"Cassini MAG Calibrated 1 Min. Avg. Data in KSM Coords. Collection","description":"This collection contains Cassini magnetic-field 1 minute averages in KSM \n coordinates, from the Fluxgate Magnetometer (FGM) instrument. KSM coordinates \n consist of X (Saturn to Sun), Z (X-Z plane contains Saturn's centered magnetic \n dipole axis, M), and Y (completes right handed set).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-05-11","stop_date":"2017-09-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1min-ksm/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1min-ksm/collection-data-1min-ksm-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:55.730296","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1min-kso::1.0","title":"Cassini MAG Calibrated 1 Min. Avg. Data in KSO Coords. Collection","description":"This collection contains Cassini magnetic-field 1 minute averages in KSO \n coordinates, from the Fluxgate Magnetometer (FGM) instrument. KSO coordinates \n consist of X (Saturn to Sun), Z (parallel to Saturn's orbital plane upward \n normal), and Y (completes the right handed set).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-05-11","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1min-kso/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1min-kso/collection-data-1min-kso-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:56.733665","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1min-rtn::1.0","title":"Cassini MAG Calibrated 1 Min. Avg. Data in RTN Coords. Collection","description":"This collection contains Cassini magnetic-field 1 minute averages,\n from the Cassini Fluxgate Magnetometer (FGM), in RTN coordinates. \n RTN coordinates consist of R (radial component, Sun to the spacecraft), \n T (tangential component, parallel to the Solar Equatorial plane and \n perpendicular to R), and N (normal component, completes right handed set).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Venus","Earth","Saturn","Jupiter","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1998-12-30","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1min-rtn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1min-rtn/collection-data-1min-rtn-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:57.727017","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1sec-gse::1.0","title":"Cassini MAG Calibrated 1 Sec. Avg. Data in GSE Coords. Collection","description":"This collection contains Cassini magnetic-field 1 second averages, in \n GSE coordinates, from the Fluxgate Magnetometer (FGM) instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-08-16","stop_date":"1999-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-gse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-gse/collection-data-1sec-gse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:58.736684","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1sec-j3::1.0","title":"Cassini MAG Calibrated 1 Sec. Avg. Data in J3 Coords. Collection","description":"This collection contains Cassini magnetic-field 1 second averages in J3 coordinates, \n from the Fluxgate Magnetometer (FGM) instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2000-10-26","stop_date":"2001-03-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-j3/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-j3/collection-data-1sec-j3-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:24:59.742241","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1sec-jmxyz::1.0","title":"Cassini MAG Calibrated 1 Sec. Avg. Data in JMXYZ Coords. Collection","description":"This collection contains Cassini magnetic-field 1 second averages in JMXYZ coordinates,\n from the Fluxgate Magnetometer (FGM) instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2000-10-26","stop_date":"2001-03-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-jmxyz/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-jmxyz/collection-data-1sec-jmxyz-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:00.733060","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1sec-krtp::1.0","title":"Cassini MAG Calibrated 1 Sec. Avg. Data in KRTP Coords. Collection","description":"This collection contains Cassini magnetic-field 1 second averages in KRTP coordinates,\n from the Fluxgate Magnetometer (FGM) instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Rhea","Tethys","Titan","Dione","Enceladus","Hyperion","Iapetus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-05-14","stop_date":"2017-09-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-krtp/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-krtp/collection-data-1sec-krtp-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:01.745466","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1sec-ksm::1.0","title":"Cassini MAG Calibrated 1 Sec. Avg. Data in KSM Coords. Collection","description":"This collection contains Cassini magnetic-field 1 second averages in KSM \n coordinates, from the Fluxgate Magnetometer (FGM) instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Dione","Enceladus","Hyperion","Iapetus","Rhea","Tethys","Titan"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-05-14","stop_date":"2017-09-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-ksm/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-ksm/collection-data-1sec-ksm-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:02.800803","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1sec-kso::1.0","title":"Cassini MAG Calibrated 1 Sec. Avg. Data in KSO Coords. Collection","description":"This collection contains Cassini magnetic-field 1 second averages in KSO \n coordinates, from the Fluxgate Magnetometer (FGM) instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Dione","Enceladus","Hyperion","Iapetus","Rhea","Tethys","Titan"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-05-14","stop_date":"2017-09-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-kso/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-kso/collection-data-1sec-kso-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:03.770847","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-1sec-rtn::1.0","title":"Cassini MAG Calibrated 1 Sec. Avg. Data in RTN Coords. Collection","description":"This collection contains Cassini magnetic-field 1 second averages in RTN \n coordinates,from the Fluxgate Magnetometer (FGM) instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Jupiter","Saturn","Phoebe","Dione","Enceladus","Hyperion","Iapetus","Rhea","Tethys","Titan"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1998-12-30","stop_date":"2017-09-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-rtn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-1sec-rtn/collection-data-1sec-rtn-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:04.819351","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-full-gse::1.0","title":"Cassini MAG Calibrated Full Res. Data in GSE Coords. Collection","description":"Cassini magnetic-field data in the highest time resolution available, \n from the Fluxgate Magnetometer (FGM) instrument in GSE coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-08-13","stop_date":"1999-08-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-gse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-gse/collection-data-full-gse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:05.765476","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-full-j3::1.0","title":"Cassini MAG Calibrated Full Res. Data in J3 Coords. Collection","description":"This collection contains Cassini FGM (Fluxgate Magnetometer) \n magnetic-field data in the highest time resolution available \n in J3 coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2000-11-06","stop_date":"2001-03-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-j3/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-j3/collection-data-full-j3-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:06.744588","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-full-jmxyz::1.0","title":"Cassini MAG Calibrated Full Res. Data in JMXYZ Coords. Collection","description":"This collection contains Cassini FGM (Fluxgate Magnetometer)\n magnetic-field data in the highest time resolution available \n in JMXYZ coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2000-11-06","stop_date":"2001-03-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-jmxyz/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-jmxyz/collection-data-full-jmxyz-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:07.754700","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-full-krtp::1.0","title":"Cassini MAG Calibrated Full Res. Data in KRTP Coords. Collection","description":"This collection contains Cassini FGM (Fluxgate Magnetometer)\n magnetic-field data in the highest time resolution available \n in KRTP coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Hyperion","Iapetus","Rhea","Tethys"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-05-11","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-krtp/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-krtp/collection-data-full-krtp-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:08.749757","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-full-rtn::1.0","title":"Cassini MAG Calibrated Full Res. Data in RTN Coords. Collection","description":"This collection contains Cassini FGM (Fluxgate Magnetometer)\n magnetic-field data in the highest time resolution available \n in RTN coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Jupiter","Saturn","Phoebe"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1998-12-30","stop_date":"2004-06-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-rtn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-full-rtn/collection-data-full-rtn-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:09.750130","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-shm-hkrate-asc::1.0","title":"Cassini Scalar Helium MAG Calibrated Housekeeping ASCII Data Collection","description":"This collections contains Cassini scalar helium magnetometer (SHM) housekeeping \n ASCII data collected between 1999-08-18T02:56:40.391 and 2005-06-08T15:14:44.057.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn","Enceladus","Earth","Solar Wind"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-08-18","stop_date":"2005-06-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-shm-hkrate-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-shm-hkrate-asc/collection-data-shm-hkrate-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:10.768271","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-shm-hkrate::1.0","title":"Cassini Scalar Helium MAG Calibrated Housekeeping Data Collection","description":"This collection contains Cassini scalar helium (SHM) magnetometer \n housekeeping data collected between 1999-08-18 and 2005-06-08.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Saturn","Enceladus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-08-18","stop_date":"2005-06-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-shm-hkrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-shm-hkrate/collection-data-shm-hkrate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:11.768612","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-shm-scirate-asc::1.0","title":"Cassini Scalar Helium MAG Calibrated Science ASCII Data Collection","description":"This collection contains Cassini scalar helium magnetometer (SHM)\n science ASCII data collected between 1999-08-18 and 2005-10-11.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn","Enceladus","Earth","Solar Wind"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-08-18","stop_date":"2005-10-11","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-shm-scirate-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-shm-scirate-asc/collection-data-shm-scirate-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:12.759797","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:data-shm-scirate::1.0","title":"Cassini Scalar Helium MAG Calibrated Science Data Collection","description":"This collection contains Cassini scalar helium magnetometer (SHM)\n science data collected between 1999-08-18 and 2005-10-11.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Saturn","Enceladus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-08-18","stop_date":"2005-10-11","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-shm-scirate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/data-shm-scirate/collection-data-shm-scirate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:13.809852","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:document::1.1","title":"Cassini Magnetometer Calibrated Data Document Collection","description":"This collection contains the documentation associated with \n the Cassini Magnetometer Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Solar Wind","Venus","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1998-12-30","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/document/collection-document-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:14.857726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal:spice_kernel::1.0","title":"Cassini SPICE Metakernel Collection","description":"This collection contains SPICE metakernels which in turn list the SPICE \n kernels which were used in processing the data contained in this bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Solar Wind"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["SPICE Kernel"],"start_date":"1997-10-15","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/spice_kernel/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/spice_kernel/collection_spice_kernel_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:15.829704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw::1.0","title":"Cassini Magnetometer Raw Bundle","description":"This bundle contains Cassini magnetometer raw magnetic field data for the entire mission. The bundle includes\n magnetic-field data from the Fluxgate Magnetometer and the Vector Helium Magnetomer in Vector mode.\n Data are received in science and housekeeping rates. Additional collections, such as spacecraft attitude, analog, \n command validation, configuration image, error counter, user-defined engineering data, browse plots, and calibration,\n are also included.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Venus","Saturn","Solar Wind","Jupiter","Phoebe","Titan","Dione","Enceladus","Hyperion","Iapetus","Rhea","Tethys"],"instruments":["Co","Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/bundle-cassini-mag-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:17.270219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:browse::1.0","title":"Cassini MAG Magnetic-Field Browse Plots in RTN Coords. Collection","description":"This collection contains plots of all available magnetic-field data recorded \n by the Cassini MAG (VHM and FGM) instrument. The data are provided in RTN \n coordinates. Times are given in TAI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Earth","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Venus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/browse/collection-browse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:18.268792","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:calibration::1.0","title":"Cassini MAG Fluxgate and Vector Helium Calibration Data Collection","description":"This collection contains calibration information to be applied to \n the raw fluxgate magnetometer (FGM) data and raw vector helium \n magnetometer (VHM) data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Venus","Earth","Jupiter","Phoebe"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Calibration"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:19.287850","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-hk-ana-hkrate::1.0","title":"Cassini Analog Data from the MAG Control Unit Collection","description":"This collection contains Cassini MAG analog housekeeping \n (reference voltages) data collected between 1997-10-28 and \n 2017-09-15.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Venus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-ana-hkrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-ana-hkrate/collection-data-hk-ana-hkrate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:20.315540","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-hk-att-hkrate::1.0","title":"Cassini MAG Channelized Spacecraft Attitude Data Collection","description":"This collection contains Cassini MAG channelized (Attitude quaternion, \n and Rotation rate) data collected between 1997-10-28 and 2017-09-15.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Venus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-att-hkrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-att-hkrate/collection-data-hk-att-hkrate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:21.336563","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-hk-cmd-hkrate::1.0","title":"Cassini MAG Command Validation Information Data Collection","description":"This collection contains Cassini MAG command-validation housekeeping data \n collected between 1997-10-28 and 2017-09-15.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Venus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-cmd-hkrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-cmd-hkrate/collection-data-hk-cmd-hkrate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:22.360918","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-hk-con-hkrate::1.0","title":"Cassini MAG Configuration Image Data Collection","description":"This collection contains Cassini MAG configuration-image \n housekeeping data, from the Data Processing Unit (DPU). This data \n was collected between 1997-10-28 and 2017-09-15.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Venus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-con-hkrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-con-hkrate/collection-data-hk-con-hkrate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:23.434355","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-hk-err-hkrate::1.0","title":"Cassini MAG Error Counter Information Data Collection","description":"This collection contains Cassini MAG error housekeeping \n data collected between 1997-10-28 and 2017-09-15.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Venus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-err-hkrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-err-hkrate/collection-data-hk-err-hkrate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:24.436462","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-hk-fgm-eng::1.0","title":"Cassini MAG Channelized User-Defined Engineering Data Collection","description":"This collection contains Cassini MAG user-selected channelized \n data collected between 1997-10-28 and 2017-09-15.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Dione","Rhea","Iapetus","Venus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-fgm-eng/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-hk-fgm-eng/collection-data-hk-fgm-eng-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:25.495509","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-sci-fgm-hkrate::1.0","title":"Cassini MAG Fluxgate Magnetic-Field Data at the Housekeeping Rate Collection","description":"This collection contains Cassini fluxgate magnetometer (FGM) \n housekeeping data collected between 1997-10-28 and 2017-09-15.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Enceladus","Rhea","Titan","Iapetus","Dione","Venus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-sci-fgm-hkrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-sci-fgm-hkrate/collection-data-sci-fgm-hkrate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:26.461890","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-sci-fgm-scirate::1.0","title":"Cassini MAG Fluxgate Magnetic-Field Data at the Science Rate Collection","description":"This collection contains Cassini fluxgate magnetometer (FGM) \n science data, at the full science rate, collected between \n 1998-12-30 and 2017-09-15.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1998-12-30","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-sci-fgm-scirate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-sci-fgm-scirate/collection-data-sci-fgm-scirate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:27.886056","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-sci-vhm-hkrate::1.0","title":"Cassini MAG Vector Helium Magnetic-Field Data at the Housekeeping Rate Collection","description":"This collection contains Cassini vector helium magnetometer (VHM) \n housekeeping data, at the reduced housekeeping rate, collected \n between 1997-10-28 and 2005-11-24.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Venus","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1997-10-28","stop_date":"2005-11-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-sci-vhm-hkrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-sci-vhm-hkrate/collection-data-sci-vhm-hkrate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:28.804930","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:data-sci-vhm-scirate::1.0","title":"Cassini MAG Vector Helium Magnetic-Field Data at the Science Rate Collection","description":"This collection contains Cassini vector helium magnetometer (VHM) \n science data, at the full science rate, collected between \n 1998-12-30 and 2006-01-01.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Earth"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1998-12-30","stop_date":"2006-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-sci-vhm-scirate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/data-sci-vhm-scirate/collection-data-sci-vhm-scirate-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:29.810535","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw:document::1.0","title":"Cassini Magnetometer Raw Data Document Collection","description":"This collection contains the document files associated \n with the Cassini Magnetometer Raw Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Jupiter","Saturn","Phoebe","Earth","Titan","Enceladus","Tethys","Hyperion","Dione","Rhea","Iapetus","Venus"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:30.824610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-cal::1.0","title":"Cassini MIMI CHEMS Calibrated Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy \n Mass Spectrometer (CHEMS) mass per charge, full time resolution intensities and \n pulse height analysis flux values for 2004-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Co","Co","Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/bundle_cassini_mimi_chems_cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:32.332657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-cal:browse-cmspgm::1.0","title":"Cassini MIMI CHEMS Calibrated Mass Per Charge Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy\n Mass Spectrometer (CHEMS) Mass per Charge vs time of detection (UT) spectrograms from\n 2004-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/browse-cmspgm/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/browse-cmspgm/collection_browse_cmspgm_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:33.331996","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-cal:browse-cspgm::1.0","title":"Cassini MIMI CHEMS Calibrated Energy Per Charge Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy \n Mass Spectrometer (CHEMS) 20 Day Energy per Charge spectrograms for ion species from\n 2004-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/browse-cspgm/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/browse-cspgm/collection_browse_cspgm_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:34.321573","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-cal:data-cmavg::1.0","title":"Cassini MIMI CHEMS Calibrated Mass per Charge Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy Mass \n Spectrometer (CHEMS) Calibrated 1-hour ion count totals in 5% mass per charge bins in \n 20-day files 2004-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/data-cmavg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/data-cmavg/collection_data_cmavg_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:35.327925","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-cal:data-cmfull::1.0","title":"Cassini MIMI CHEMS Calibrated Full Time Resolution Intensity Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy Mass \n Spectrometer (CHEMS) Calibrated full time resolution intensities and geometric parameters\n for each DPPS steps collected from 2004-01-01T00:02:19.733Z to 2017-09-15T10:31:54.424Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/data-cmfull/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/data-cmfull/collection_data_cmfull_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:36.435549","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-cal:data-cpavg::1.0","title":"Cassini MIMI CHEMS Calibrated Pulse Height Analysis Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy Mass\n Spectrometer (CHEMS) Calibrated 1 hour averaged pulse height analysis flux values \n in 20 day files for 2004-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/data-cpavg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/data-cpavg/collection_data_cpavg_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:37.423792","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-cal:document::1.0","title":"Cassini MIMI CHEMS Calibrated Document Collection","description":"This collection contains Cassini MIMI CHEMS mass per charge,\n full time resolution and pulse height analysis documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:38.460129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-raw::1.0","title":"Cassini MIMI CHEMS Raw Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy\n Mass Spectrometer (CHEMS) accumulation, pulse height analysis and science rate data for\n 1999-01-03T00:00:00Z to 2017-09-15T23:59:59Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Co","Co","Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/bundle_cassini_mimi_chems_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:40.025437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-raw:browse::1.0","title":"Cassini MIMI CHEMS Raw Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy \n Mass Spectrometer (CHEMS) Raw H+, He+, He++ and O+ flux per charge browse plots for\n 1999-01-01T00:00:00.000Z to 2008-12-31T23:59:59.000Z","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-01","stop_date":"2008-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/browse/collection_browse_chems_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:40.990390","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-raw:data-accumulation-rates::1.0","title":"Cassini MIMI CHEMS Raw Accumulation Rates Data Collection","description":"This collection contains the subsector accumlations from the Charge Energy \n Mass Spectrometer (CHEMS) sensor on the Cassini Magnetospheric Measurement System (MIMI)\n from 1999-01-03T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/data-accumulation-rates/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/data-accumulation-rates/collection_data_accumulation_rates_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:42.109096","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-raw:data-pha::1.0","title":"Cassini MIMI CHEMS Raw Pulse Height Analysis Data Collection","description":"This collection contains the pulse height analysis data from the Charge Energy\n Mass Spectrometer (CHEMS) sensor on the Cassini Magnetospheric Measurement System (MIMI)\n from 1999-01-03T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/data-pha/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/data-pha/collection_data_pha_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:43.155192","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-raw:data-science-rates::1.0","title":"Cassini MIMI CHEMS Raw Science Rates Data Collection","description":"This collection contains the raw simplified subsector accumulation data from the Charge Energy\n Mass Spectrometer (CHEMS) sensor on the Cassini Magnetospheric Measurement System (MIMI)\n from 1999-01-03T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/data-science-rates/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/data-science-rates/collection_data_science_rates_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:44.137215","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-raw:document::1.0","title":"Cassini MIMI CHEMS Raw Document Collection","description":"This collection contains Cassini MIMI CHEMS accumulation, pulse height analysis \n and science rates documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:45.267667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-raw:geometry::1.0","title":"Cassini MIMI CHEMS Raw Geometry Collection","description":"This collection contains Cassini MIMI CHEMS instrument geometery.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Geometry"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/geometry/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/geometry/collection_geometry_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:46.138705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal::1.0","title":"Cassini MIMI INCA Calibrated Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and\n Neutral Camera (INCA) angle image averages and differential intensities at various \n modes and resolutions from 2004-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Co","Co","Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/bundle_cassini_mimi_inca_cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:47.645132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:browse-iaveplt_h::1.0","title":"Cassini MIMI INCA Angle Image Averaged Hydrogen Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral\n Camera (INCA) collapsed in angle hydrogen images, to form an image-integrated intensity. The original \n 16 x 16 high mass-TOF resolution image pixel intensity values are averaged to a single intensity \n and plotted in the top panel.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-01-01","stop_date":"2016-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/browse-iaveplt_h/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/browse-iaveplt_h/collection_browse_iaveplt_h_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:48.658381","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:browse-ienaimg_sh::1.0","title":"Cassini MIMI INCA ENA Hydrogen and Oxygen Spin Averaged High Spatial Browse Collection","description":"This collection contains spin averaged high spatial energetic neutral atoms (ENA) image skymaps \n (accumulated over four sectors), displayed for one species and time-of-flight (TOF) combinations \n from the INCA sensor of the MIMI instrument on the Cassini spacecraft from \n 2004-02-20T01:46:50.000Z to 2017-09-08T22:23:09.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-02-20","stop_date":"2017-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/browse-ienaimg_sh/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/browse-ienaimg_sh/collection_browse_ienaimg_sh_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:49.752822","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:browse-ienamv-movies::1.0","title":"Cassini MIMI INCA ENA Sky Map Movies at Saturn Browse Collection","description":"This collection contains MP4 movie displaying averaged energetic neutral atom (ENA) image skymaps, \n for high spatial and time species resolution for hydrogen and oxygen images for one high or low \n time-of-flight (TOF) from 2004-10-26T05:17:15.001Z to 2017-09-08T10:49:37.139Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2004-10-26","stop_date":"2017-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/browse-ienamv-movies/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/browse-ienamv-movies/collection_document_ienamv_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:50.770561","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:browse-iionang::1.0","title":"Cassini MIMI INCA Hydrogen and Oxygen High Time of Flight Browse Collection","description":"This collection contains high time-of-flight (TOF) browse ion images displayed for seven\n time-of-flight ranges (rows) from the INCA sensor of the Cassini MIMI instrument. \n Ion images are collected when no voltage is present on the INCA collimator.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-01-01","stop_date":"2017-09-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/browse-iionang/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/browse-iionang/collection_browse_iionang_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:51.769877","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:data-iangave_m::1.0","title":"Cassini MIMI INCA Calibrated Angle Image Averages of High Mass TOF Resolution Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral\n Camera (INCA) calibrated high mass TOF resolution images collapsed in angle to form an \n image-integrated intensity. The original image pixel intensity values are averaged to a \n single intensity value.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-iangave_m/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-iangave_m/collection_data_iangave_m_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:52.758311","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:data-iangave_s::1.0","title":"Cassini MIMI INCA Calibrated Angle Image Averages of High Spatial Resolution Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral\n Camera (INCA) calibrated high spatial resolution images collapsed in angle to form an \n image-integrated intensity. The original image pixel intensity values are averaged to a \n single intensity value.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-iangave_s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-iangave_s/collection_data_iangave_s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:53.764103","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:data-iangave_t::1.0","title":"Cassini MIMI INCA Calibrated Angle Image Averages of High Time Resolution Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral\n Camera (INCA) calibrated high time resolution images collapsed in angle to form an image-integrated intensity.\n The original image pixel intensity values are averaged to a single intensity value.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-iangave_t/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-iangave_t/collection_data_iangave_t_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:54.764513","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:data-icimg_i::1.0","title":"Cassini MIMI INCA Calibrated Differential Intensities of Image Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral\n Camera (INCA) calibrated image pixel values in differential intensity in counts\n for a combination of resolution, species and energy values.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-icimg_i/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-icimg_i/collection_data_icimg_i_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:55.765059","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:data-icimg_p::1.0","title":"Cassini MIMI INCA Calibrated Differential Intensities of Pitch Angle Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral\n Camera (INCA) calibrated image pixel values for a combination of resolution, species and \n energy values for 2004-01-01T00:00:00.016Z to 2017-09-16T00:00:00.018Z","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-icimg_p/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-icimg_p/collection_data_icimg_p_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:56.799263","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:data-icimg_u::1.0","title":"Cassini MIMI INCA Calibrated Differential Intensities of Uncertainty Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral\n Camera (INCA) calibrated image pixel uncertainty values for the differential intensity counts\n of resolution, species and energy values for 2004-01-01T00:00:00.016Z to 2017-09-16T00:00:00.018Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-icimg_u/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/data-icimg_u/collection_data_icimg_u_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:57.850931","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal:document::1.0","title":"Cassini MIMI INCA Calibrated Document Collection","description":"This collection contains Cassini MIMI INCA Calibrated documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:25:58.884672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw::1.0","title":"Cassini MIMI INCA Raw Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and\n Neutral Camera (INCA) accumulation, images and pulse height analysis data for\n 1999-01-03T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Co","Co","Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/bundle_cassini_mimi_inca_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:01.652820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:browse::1.0","title":"Cassini MIMI INCA Raw Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) \n Ion and Neutral Camera (INCA) ion flux per charge data for \n 1999-01-01T00:00:00.000Z to 2008-12-31T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-01","stop_date":"2008-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/browse/collection_browse_inca_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:02.669636","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:calib::1.0","title":"Cassini MIMI INCA Raw Calibration Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) \n Ion and Neutral Camera (INCA) factor segments, postflight, pre and post jupter \n calibration data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-09-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/calib/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/calib/collection_calib_inca_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:03.658792","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:data-accumulation-rates::1.0","title":"Cassini MIMI INCA Raw Accumulation Rate Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) \n Ion and Neutral Camera (INCA) raw subsector accumulation rate data for\n 1999-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-accumulation-rates/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-accumulation-rates/collection_data_accumulation_rates_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:04.726142","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:data-anc-mode::1.0","title":"Cassini MIMI INCA Ancillary Mode Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral \n Camera (INCA) ion or neutral mode start and stop times and mode value. The Ion and \n Neutral modes are determined by the voltage on the INCA positive collimator voltage.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-anc-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-anc-mode/collection_data_anc_mode_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:05.743850","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:data-anc-outcal::1.0","title":"Cassini MIMI INCA Ancillary Out of Calibration Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral \n Camera (INCA) out of calibration files for the times that the INCA images are considered \n out of calibration. The time ranges are divided into events whether the period was \n a planned (1) or unplanned (2) out of calibration event.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-anc-outcal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-anc-outcal/collection_data_outcal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:06.764520","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:data-images::1.0","title":"Cassini MIMI INCA Raw Images Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) \n Ion and Neutral Camera (INCA) raw 1-4 sector image data for\n 1999-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-images/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-images/collection_data_images_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:07.804155","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:data-pha::1.0","title":"Cassini MIMI INCA Raw Pulse Height Analysis Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) \n Ion and Neutral Camera (INCA) pulse height analysis data for\n 1999-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-pha/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/data-pha/collection_data_pha_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:08.846821","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:document::1.0","title":"Cassini MIMI INCA Raw Document Collection","description":"This collection contains Cassini MIMI INCA Raw accumulation rates, images \n and pulse height analysis documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:09.909966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw:geometry::1.0","title":"Cassini MIMI INCA Raw Geometry Collection","description":"This collection contains Cassini MIMI INCA instrument geometry documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Geometry"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/geometry/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/geometry/collection_geometry_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:10.874688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal::1.0","title":"Cassini MIMI LEMMS Calibrated Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy Magnetospheric\n Measurement System (LEMMS) accumulation rates, pulse height analysis and priority accumulation rate \n data for 2004-01-01T00:00:00.000Z to 2017-09-16T00:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Co","Co","Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1999-01-03","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/bundle_cassini_mimi_lemms_cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:12.314822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:browse-lcpress::1.0","title":"Cassini MIMI CHEMS and LEMMS Calibrated Particle Pressure Spectrogram Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Calibrated \n CHEMS and LEMMS particle pressure spectrograms. Shown is the total pressure \n and a comparable energy-time spectrogram all given at the location of the \n Cassini spacecraft for 2004-01-01T00:00:00.000Z to 2017-09-16T00:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-01-01","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lcpress/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lcpress/collection_browse_lcpress_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:13.585828","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:browse-lphapa_a::1.0","title":"Cassini MIMI LEMMS Pitch Angle A Channels Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument \n (MIMI) Low Energy Magnetospheric Measurement System (LEMMS) Pulse \n Height Analysis (PHA) Pitch Angle Plots for the A Channels covering \n 2004-06-30T00:00:00.000Z to 2017-09-16T00:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-06-30","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lphapa_a/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lphapa_a/collection_browse_lphapa_a_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:14.627851","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:browse-lphapa_e::1.0","title":"Cassini MIMI LEMMS Pitch Angle E Channels Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument \n (MIMI) Low Energy Magnetospheric Measurement System (LEMMS) Pulse \n Height Analysis (PHA) Pitch Angle Plots for the E Channels covering \n 2004-06-30T00:00:00.000Z to 2017-09-16T00:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-06-30","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lphapa_e/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lphapa_e/collection_browse_lphapa_e_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:15.661919","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:browse-lphapa_f1::1.0","title":"Cassini MIMI LEMMS Pitch Angle F1 Channels Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument \n (MIMI) Low Energy Magnetospheric Measurement System (LEMMS) Pulse \n Height Analysis (PHA) Pitch Angle Plots for the F1 Channels covering \n 2004-06-30T00:00:00.000Z to 2017-09-16T00:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-06-30","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lphapa_f1/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lphapa_f1/collection_browse_lphapa_f1_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:16.642013","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:browse-lphaspgm::1.0","title":"Cassini MIMI LEMMS Calibrated Energy-Time Spectrograms for PHA Ion and Electron Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy\n Magnetospheric Measurement System (LEMMS) Calibrated energy-time spectrograms for\n the LEMMS PHA ion data (top panel) and electron data (second panel) during\n 2004-01-01T00:00:00.000Z to 2017-09-16T00:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-01-01","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lphaspgm/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/browse-lphaspgm/collection_browse_lphaspgm_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:17.587066","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:data-accumulation-full::1.0","title":"Cassini MIMI LEMMS Calibrated Full Time Resolution Accumulation Rates Data Collection","description":"This file contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy\n Magnetospheric Measurement System (LEMMS) calibrated full time resolution \n accumulation rates data for 2004-01-01T00:00:04.734Z to 2017-09-15T10:34:09.423Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-accumulation-full/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-accumulation-full/collection_data_accumulation_full_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:18.581562","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:data-accumulation-rates-avg-1hr::1.0","title":"Cassini MIMI LEMMS Calibrated 1 Hour Accumulation Rate Averages Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low \n Energy Magnetospheric Measurement System (LEMMS) 1 hour calibrated accumulation \n rate averages data for 2004-01-01T00:00:04.734Z to 2017-09-15T10:34:09.423Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-accumulation-rates-avg-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-accumulation-rates-avg-1hr/collection_data_accumulation_rates_avg_1hr_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:19.597614","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:data-accumulation-rates-avg-1min::1.0","title":"Cassini MIMI LEMMS Calibrated 1 Minute Accumulation Rate Averages Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low \n Energy Magnetospheric Measurement System (LEMMS) 1 minute calibrated accumulation \n rate averages data for 2004-01-01T00:00:04.734Z to 2017-09-15T10:34:09.423Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-accumulation-rates-avg-1min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-accumulation-rates-avg-1min/collection_data_accumulation_rates_avg_1min_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:20.603137","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:data-pha-avg-1hr::1.0","title":"Cassini MIMI LEMMS Calibrated 1 Hour Pulse Height Analysis Averages Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy\n Magnetospheric Measurement System (LEMMS) 1 hour pulse height analysis averages data. \n The data are averaged by fixed 1 hour intervals and then averaging any data points that \n fall in the intervals.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-pha-avg-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-pha-avg-1hr/collection_data_pha_avg_1hr_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:21.598279","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:data-pha-avg-1min::1.0","title":"Cassini MIMI LEMMS Calibrated 1 Minute Pulse Height Analysis Averages Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy\n Magnetospheric Measurement System (LEMMS) 1 hour pulse height analysis averages data. \n The data are averaged by fixed 1 hour intervals and then averaging any data points that \n fall in the intervals.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-pha-avg-1min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-pha-avg-1min/collection_data_pha_avg_1min_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:22.598770","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:data-pha-full::1.0","title":"Cassini MIMI LEMMS Calibrated Full Time Resolution Pulse Height Analysis Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy\n Magnetospheric Measurement System (LEMMS) calibrated full time resolution \n pulse height analysis data for 2004-01-01T00:00:04.734Z to 2017-09-15T10:34:09.423Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-pha-full/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-pha-full/collection_data_pha_full_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:23.598459","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:data-priority-full::1.0","title":"Cassini MIMI LEMMS Calibrated Full Time Resolution Priority Accumulation Rates Data Collection","description":"This file contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy\n Magnetospheric Measurement System (LEMMS) calibrated full time resolution \n priority accumulation rates data for 2004-01-01T00:00:00.515Z to 2017-09-15T10:34:11.883Z","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-priority-full/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/data-priority-full/collection_data_priority_full_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:24.593645","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal:document::1.0","title":"Cassini MIMI LEMMS Calibrated Document Collection","description":"This collection contains Cassini MIMI LEMMS accumulation,\n pulse height analysis and priority full resolution documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1999-01-03","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:25.631902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-raw::1.0","title":"Cassini MIMI LEMMS Raw Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy\n Magnetospheric Measurement System (LEMMS) accumulation rates, fine accumulation rates \n and pulse height analysis data for 1999-01-03T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Co","Co","Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/bundle_cassini_mimi_lemms_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:27.128630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-raw:browse::1.0","title":"Cassini MIMI LEMMS Raw Browse Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy \n Magnetospheric Measurement System (LEMMS) raw ion and electron flux per charge\n for 1999-01-01T00:00:00.000Z to 2008-12-31T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2008-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/browse/collection_browse_lemms_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:28.177627","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-raw:data-accumulation-rates::1.0","title":"Cassini MIMI LEMMS Raw Accumulation Rate Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy \n Magnetospheric Measurement System (LEMMS) raw 1-2 subsector accumulations data for\n 1999-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/data-accumulation-rates/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/data-accumulation-rates/collection_data_accumulation_rates_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:29.102771","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-raw:data-fine-accumulation-rates::1.0","title":"Cassini MIMI LEMMS Raw Fine Accumulation Rate Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy \n Magnetospheric Measurement System (LEMMS) raw microsector accumulations data for\n 1999-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/data-fine-accumulation-rates/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/data-fine-accumulation-rates/collection_data_fine_accumulation_rates_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:30.119471","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-raw:data-pha::1.0","title":"Cassini MIMI LEMMS Raw Pulse Height Analysis Data Collection","description":"This collection contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy \n Magnetospheric Measurement System (LEMMS) raw pulse height analysis data for\n 1999-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/data-pha/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/data-pha/collection_data_pha_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:31.113292","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-raw:document::1.0","title":"Cassini MIMI LEMMS Raw Document Collection","description":"This collection contains Cassini MIMI LEMMS accumulation, fine\n accumulation rates and pulse height analysis documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:32.109551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-raw:geometry::1.0","title":"Cassini MIMI LEMMS Raw Geometry Collection","description":"This collection contains Cassini MIMI LEMMS instrument documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Geometry"],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/geometry/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/geometry/collection_geometry_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:33.146209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi::1.0","title":"Cassini MIMI Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) mission\n documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Co","Co","Co","Co","Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Ion and Neutral Camera","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/bundle_cassini_mimi_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:34.640627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi:browse-raw::1.0","title":"Cassini MIMI Key Parameter Browse Plots for CHEMS, INCA and LEMMS Raw Browse Collection","description":"This collection contains Cassini MIMI Key Parameter Browse data for the Cassini MIMI\n CHEMS, INCA and LEMMS sensors. These data cover 1999-01-01T00:00:00.000Z to 2008-12-31T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Ion and Neutral Camera","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"1999-01-01","stop_date":"2008-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/browse-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/browse-raw/collection_browse_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:35.626742","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi:calib-cal::1.0","title":"Cassini MIMI CHEMS, INCA and LEMMS Calibrated Calibration Collection","description":"This collection contains the Cassini MIMI Calibrated Calibration \n information for the CHEMS, INCA and LEMMS sensors. These data cover \n 1999-01-01T00:00:00.000Z to 2008-12-31T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Ion and Neutral Camera","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Calibration"],"start_date":"1997-10-15","stop_date":"2030-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/calib-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/calib-cal/collection_calib_cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:36.634239","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi:calib-raw::1.0","title":"Cassini MIMI CHEMS, INCA and LEMMS Raw Calibration Collection","description":"This collection contains Cassini MIMI Raw Calibration information \n for the CHEMS, INCA and LEMMS sensors. These data cover \n 1999-01-01T00:00:00.000Z to 2008-12-31T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Ion and Neutral Camera","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Calibration"],"start_date":"1997-10-15","stop_date":"2030-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/calib-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/calib-raw/collection_calib_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:37.692108","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi:data-ancillary::1.0","title":"Cassini MIMI CHEMS, INCA and LEMMS Ancillary Data Collection","description":"This collection contains Cassini MIMI datagaps, spin and spice kernel gaps.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Ion and Neutral Camera","MIMI Low Energy Magnetospheric Measurement Sensor"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/data-ancillary/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/data-ancillary/collection_data_ancillary_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:38.663057","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi:document::1.0","title":"Cassini MIMI Document Collection","description":"This collection contains all Cassini MIMI mission documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Ion and Neutral Camera","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:39.714079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi:spice-mk::1.0","title":"Cassini MIMI SPICE Meta Kernel Collection","description":"This collection contains the Cassini MIMI SPICE Meta Kernel referencing kernels used.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Ion and Neutral Camera","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":["SPICE Kernel"],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/spice-mk/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/spice-mk/collection_spice_mk_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:40.646257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-electron_density::1.0","title":"Cassini RPWS Electron Densities from Upper Hybrid and Plasma Wave Frequencies","description":"This bundle provides electron number density values derived from features observed in plasma wave data obtained by the Cassini Radio and Plasma Wave Science (RPWS) instruments, along with observed or derived characteristic frequencies, and useful positional parameters for the spacecraft and related bodies. When present, frequency values of narrowband emissions at the upper hybrid resonance were digitized and combined with measured or model magnetic field to derive electron number density. At other times, features such as the upper cutoff in auroral hiss or electron plasma oscillations were used to determine the plasma frequency and electron density.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn","Enceladus","Jupiter","Earth"],"instruments":["Co","RADIO AND PLASMA WAVE SCIENCE for CO"],"instrument_hosts":["Co"],"data_types":[],"start_date":"1999-08-18","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/bundle.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:42.152742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-electron_density:data::1.0","title":"Cassini RPWS Electron Densities from Upper Hybrid and Plasma Wave Frequencies","description":"This collection provides electron number density values derived from features observed in plasma wave data obtained by the Cassini Radio and Plasma Wave Science (RPWS) instruments, along with observed or derived characteristic frequencies, and useful positional parameters for the spacecraft and related bodies. When present, frequency values of narrowband emissions at the upper hybrid resonance were digitized and combined with measured or model magnetic field to derive electron number density. At other times, features such as the upper cutoff in auroral hiss or electron plasma oscillations were used to determine the plasma frequency and electron density.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","CASSINI-HUYGENS"],"targets":["Saturn","Enceladus","Jupiter","Earth"],"instruments":["RADIO AND PLASMA WAVE SCIENCE for CO"],"instrument_hosts":["Co"],"data_types":["Data"],"start_date":"1999-08-18","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/data/collection_data.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:43.163030","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-hfr-qtn::1.0","title":"Quasi Thermal Noise pectroscopy on High Frequency Receiver Data Bundle","description":"This bundle contains RPWS-HFR Quasi Thermal Noise (QTN) spectroscopy supplied CDF and plot\n files containing a time series of thermal plasma moments (density and temperature). QTN data products\n are generated only when the QTN analysis is applicable.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Co","RPWS"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-06-30","stop_date":"2012-04-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/bundle-cassini-rpws-hfr-qtn-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:44.657596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-hfr-qtn:browse::1.0","title":"Quasi Thermal Noise pectroscopy on High Frequency Receiver Data Browse Collection","description":"This collection contains RPWS-HFR Quasi Thermal Noise (QTN) spectroscopy supplied Browse\n plot files containing a time series of thermal plasma moments (density and temperature). QTN data\n products are generated only when the QTN analysis is applicable.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["RPWS"],"instrument_hosts":["Co"],"data_types":["Browse"],"start_date":"2004-06-30","stop_date":"2012-04-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/browse/collection-browse.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:45.652682","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-hfr-qtn:data::1.0","title":"Quasi Thermal Noise pectroscopy on High Frequency Receiver Data Data Collection","description":"This collection contains RPWS-HFR Quasi Thermal Noise (QTN) spectroscopy supplied CDF files\n containing a time series of thermal plasma moments (density and temperature). QTN data products\n are generated only when the QTN analysis is applicable.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["RPWS"],"instrument_hosts":["Co"],"data_types":["Data"],"start_date":"2004-06-30","stop_date":"2012-04-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/data/collection-data.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:46.654620","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-hfr-qtn:document::1.0","title":"Quasi Thermal Noise pectroscopy on High Frequency Receiver Data Data Collection","description":"This collection contains the documents associated tp RPWS-HFR Quasi Thermal Noise (QTN)\n spectroscopy thermal plasma moments (density and temperature).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["RPWS"],"instrument_hosts":["Co"],"data_types":["Document"],"start_date":"2004-06-30","stop_date":"2012-04-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:47.646792","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_lets::1.2","title":"Linear Energy Transfer Spectrometer (LETS) data bundle","description":"This bundle contains the data associated with the Commercial Lunar Payload System's Peregrine Mission 1 Linear Energy Transfer Spectrometer.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Clps To 2Ab","CLPS Task Order 2AB"],"targets":["Moon"],"instruments":["Lets","CLPS Task Order 2AB Linear Energy Transfer Spectrometer (LETS)"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander","Clps To 2Ab Pll"],"data_types":[],"start_date":"2024-01-08","stop_date":"2024-01-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/bundle_clps_to_2ab_lets.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:49.231394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_lets:data_derived::1.1","title":"data_derived","description":"This collection contains the derived data associated with the Commercial Lunar Payload System's Peregrine Mission 1 Linear Energy Transfer Spectrometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2AB"],"targets":["Moon"],"instruments":["CLPS Task Order 2AB Linear Energy Transfer Spectrometer (LETS)"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Data"],"start_date":"2024-01-08","stop_date":"2024-01-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/data_derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/data_derived/collection_data_derived_inventory.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:50.196368","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_lets:data_raw::1.1","title":"data_raw","description":"This collection contains the raw data associated with the Commercial Lunar Payload System's Peregrine Mission 1 Linear Energy Transfer Spectrometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2AB"],"targets":["Moon"],"instruments":["CLPS Task Order 2AB Linear Energy Transfer Spectrometer (LETS)"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Data"],"start_date":"2024-01-08","stop_date":"2024-01-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/data_raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/data_raw/collection_data_raw_inventory.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:51.244933","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_lets:data_supplemental::1.1","title":"data_supplemental","description":"This collection contains the supplemental data associated with the Commercial Lunar Payload System's Peregrine Mission 1 Linear Energy Transfer Spectrometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2AB"],"targets":["Moon"],"instruments":["CLPS Task Order 2AB Linear Energy Transfer Spectrometer (LETS)"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Data"],"start_date":"2024-01-08","stop_date":"2024-01-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/data_supplemental/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/data_supplemental/collection_data_supplemental_inventory.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:52.162430","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_lets:document::1.2","title":"document","description":"This collection contains the derived data associated with the Commercial Lunar Payload System's Peregrine Mission 1 Linear Energy Transfer Spectrometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2AB"],"targets":["Moon"],"instruments":["CLPS Task Order 2AB Linear Energy Transfer Spectrometer (LETS)"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Document"],"start_date":"2024-01-08","stop_date":"2024-01-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/document/collection_document_inventory.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:53.170405","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"CO-E_J_S_SW-CAPS-2-UNCALIBRATED-V1.0","title":"CO E J S SW CAPS 2 UNCALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_J_S_SW-CAPS-2-UNCALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:53.775734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_J_S_SW-CAPS-3-CALIBRATED-V1.0","title":"CO E J S SW CAPS 3 CALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_J_S_SW-CAPS-3-CALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:54.249254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_J_S_SW-CAPS-5-DDR-ELE-MOMENTS-V1.0","title":"CO E J S SW CAPS 5 DDR ELE MOMENTS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_J_S_SW-CAPS-5-DDR-ELE-MOMENTS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:55.143753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_J_S_SW-CAPS-5-DDR-SC-POTENTIAL-V1.0","title":"CO E J S SW CAPS 5 DDR SC POTENTIAL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_J_S_SW-CAPS-5-DDR-SC-POTENTIAL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:55.253424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_J_S_SW-MIMI-2-CHEMS-UNCALIB-V1.1","title":"CO E J S SW MIMI 2 CHEMS UNCALIB V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_J_S_SW-MIMI-2-CHEMS-UNCALIB-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:55.857701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_J_S_SW-MIMI-2-INCA-UNCALIB-V1.1","title":"CO E J S SW MIMI 2 INCA UNCALIB V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_J_S_SW-MIMI-2-INCA-UNCALIB-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:56.339115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_J_S_SW-MIMI-2-LEMMS-UNCALIB-V1.1","title":"CO E J S SW MIMI 2 LEMMS UNCALIB V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_J_S_SW-MIMI-2-LEMMS-UNCALIB-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:56.773311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_SW_J_S-MAG-2-REDR-RAW-DATA-V2.0","title":"CO E SW J S MAG 2 REDR RAW DATA V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_SW_J_S-MAG-2-REDR-RAW-DATA-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:57.336617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_SW_J_S-MAG-3-RDR-CALIB-SHM-V2.0","title":"CO E SW J S MAG 3 RDR CALIB SHM V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_SW_J_S-MAG-3-RDR-CALIB-SHM-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:57.846103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_SW_J_S-MAG-3-RDR-FULL-RES-V2.0","title":"CO E SW J S MAG 3 RDR FULL RES V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_SW_J_S-MAG-3-RDR-FULL-RES-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:58.346626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_SW_J_S-MAG-4-SUMM-1MINAVG-V2.1","title":"CO E SW J S MAG 4 SUMM 1MINAVG V2.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_SW_J_S-MAG-4-SUMM-1MINAVG-V2.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:58.806727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E_SW_J_S-MAG-4-SUMM-1SECAVG-V2.0","title":"CO E SW J S MAG 4 SUMM 1SECAVG V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-E_SW_J_S-MAG-4-SUMM-1SECAVG-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:59.321259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-INMS-2-PKT-U-V1.0","title":"CO S INMS 2 PKT U V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-S-INMS-2-PKT-U-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:26:59.805007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-INMS-3-L1A-U-V1.0","title":"CO S INMS 3 L1A U V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-S-INMS-3-L1A-U-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:00.306543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-INMS-3-L1A-U-V2.0","title":"CO S INMS 3 L1A U V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-S-INMS-3-L1A-U-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:00.826177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-MIMI-4-CHEMS-CALIB-V1.0","title":"CO S MIMI 4 CHEMS CALIB V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-S-MIMI-4-CHEMS-CALIB-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:01.376219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-MIMI-4-INCA-CALIB-V1.0","title":"CO S MIMI 4 INCA CALIB V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-S-MIMI-4-INCA-CALIB-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:01.899179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-MIMI-4-LEMMS-CALIB-V1.0","title":"CO S MIMI 4 LEMMS CALIB V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-S-MIMI-4-LEMMS-CALIB-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:02.307907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S_SW-CAPS-5-DDR-ION-MOMENTS-V1.0","title":"CO S SW CAPS 5 DDR ION MOMENTS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-S_SW-CAPS-5-DDR-ION-MOMENTS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:02.817704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SS_S-RPWS-3-LPCNTCUR-V1.0","title":"CO SS S RPWS 3 LPCNTCUR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-SS_S-RPWS-3-LPCNTCUR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:03.334576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SS_S-RPWS-3-LPUI-V1.0","title":"CO SS S RPWS 3 LPUI V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-SS_S-RPWS-3-LPUI-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:03.827535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SS_S-RPWS-5-LPSWEEP-V1.0","title":"CO SS S RPWS 5 LPSWEEP V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-SS_S-RPWS-5-LPSWEEP-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:04.350831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SS_S-RPWS-5-NEPROXY-V1.0","title":"CO SS S RPWS 5 NEPROXY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-SS_S-RPWS-5-NEPROXY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:04.786894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-V_E_J_S_SS-RPWS-2-REFDR-ALL-V1.0","title":"CO V E J S SS RPWS 2 REFDR ALL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-V_E_J_S_SS-RPWS-2-REFDR-ALL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:05.400889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-V_E_J_S_SS-RPWS-2-REFDR-WBRFULL-V1.0","title":"CO V E J S SS RPWS 2 REFDR WBRFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-V_E_J_S_SS-RPWS-2-REFDR-WBRFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:05.925374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-V_E_J_S_SS-RPWS-2-REFDR-WFRFULL-V1.0","title":"CO V E J S SS RPWS 2 REFDR WFRFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-V_E_J_S_SS-RPWS-2-REFDR-WFRFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:06.449893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-V_E_J_S_SS-RPWS-3-RDR-LRFULL-V1.0","title":"CO V E J S SS RPWS 3 RDR LRFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-V_E_J_S_SS-RPWS-3-RDR-LRFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:06.842824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-V_E_J_S_SS-RPWS-4-SUMM-KEY60S-V1.0","title":"CO V E J S SS RPWS 4 SUMM KEY60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/CO-V_E_J_S_SS-RPWS-4-SUMM-KEY60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:07.362528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DS1-C-PEPE-2-EDR-BORRELLY-V1.0","title":"DS1 C PEPE 2 EDR BORRELLY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/DS1-C-PEPE-2-EDR-BORRELLY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:07.838212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle::1.0","title":"Galileo Orbiter Mission Bundle","description":"This bundle contains Galileo Orbiter Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Epd","Hic","Mag","Pls","Ppr","Ssd","Rss","Energetic Particle Detector","Heavy Ion Counter","Magnetometer","Plasma Science Experiment","Photopolarimeter Radiometer","Star Scanner","Radio Science Subsystem"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/bundle-galileo.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:09.304800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle:document-epd::1.0","title":"Galileo Energetic Particles Detector Document Collection","description":"This collection contains documents associated with the \n Galileo EPD Instrument","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus"],"instruments":["Energetic Particles Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-epd/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-epd/collection-document-galileo-epd-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:10.247387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle:document-hic::1.0","title":"Galileo Heavy Ion Counter Document Collection","description":"This collection contains documents associated with Galileo HIC","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-hic/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-hic/collection-document-galileo-hic-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:11.265462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle:document-mag::1.0","title":"Galileo Magnetometer Document Collection","description":"This collection contains documents associated with Galileo MAG","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-mag/collection-document-galileo-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:12.316015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle:document-mission::1.0","title":"Galileo Orbiter Mission Document Collection","description":"This collection contains documents associated with Galileo\n Orbiter Mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Energetic Particle Detector","Heavy Ion Counter","Magnetometer","Plasma Science Experiment","Photopolarimeter Radiometer","Star Scanner"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-mission/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-mission/collection-document-mission-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:13.344942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle:document-pls::1.0","title":"Galileo Plasma Science Experiment Document Collection","description":"This collection contains documents associated with Galileo PLS","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-pls/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-pls/collection-document-galileo-pls-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:14.313520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle:document-ppr::1.0","title":"Galileo Photopolarimeter Radiometer Document Collection","description":"This collection contains documents associated with Galileo PPR","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-ppr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-ppr/collection-document-galileo-ppr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:15.362420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle:document-rss::1.0","title":"Galileo Radio Science Subsystem Document Collection","description":"This collection contains documents associated with Galileo RSS","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-rss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-rss/collection-document-galileo-rss-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:16.270265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle:document-ssd::1.0","title":"Galileo Star Scanner Document Collection","description":"This collection contains documents associated with Galileo SSD","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Star Scanner"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-ssd/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/document-ssd/collection-document-galileo-ssd-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:17.277978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected::1.0","title":"Galileo EPD Calibrated Corrected Data Bundle","description":"These are reprocessed measurements by the Energetic Particle\n Detector (EPD) instrument onboard the Galileo spacecraft that \n orbited Jupiter and measured intensities of ion and electron \n radiation in the keV and MeV energy range. This set is \n version 31 of reprocessing and version 1.0 of PDS delivery.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Go","Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/bundle_galileo-epd-cal-corrected.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:18.764939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-cms-events-deltaexe::1.0","title":"Galileo EPD Calibrated Corrected Delta Event Data Collection","description":"These are reprocessed measurements by the Engergetic Particle\n Detector (EPD) instrument onboard the Galileo spacecraft that \n orbited Jupiter and measured intensities of ion and electron \n radiation in the keV and MeV energy range. This set is \n version 31 of reprocessing and version 1.0 of PDS delivery.\n\n The TOFxE and DeltaExE files include event data of ion\n measurements. Event data are different than the channelized data in\n the high, medium, and low resolution files. Event data record the\n full information of a measured particle. Every \"event\" is the\n measurement of a time of flight (TOF) within the instrument and\n energy deposited within a detector (TOFxE file), or two energy\n values deposited within the two detector layers (DeltaExE file).\n The deposited energy values are generally different from the energy\n the particle has in the ambient space. Event data provides measured\n values in the native resolution of the instrument. Because such\n high resolution increases data volume, event data cannot be taken\n continuously and downlinked all the time. Only the provided subset\n of this data was kept. The files are comma separated. Invalid\n entries will have values of -1.000000E+38. Times are provided in\n the format Year.DOYHHMMSSM (first column) and fractional year\n (second column) More information can be found in the User Guide.\n\n This file includes measurements by the EPD/CMS/DeltaExE instrument.\n For each counted event, the energy deposited in the two solid state\n detector layers (Ej_keV and Ek_keV columns) of the instrument are\n recorded.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-deltaexe/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-deltaexe/collection-data-cms-events-deltaexe.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:19.766660","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-cms-events-tof::1.0","title":"Galileo EPD Calibrated Corrected Time-of-Flight Event Data Collection","description":"These are reprocessed measurements by the Engergetic Particle\n Detector (EPD) instrument onboard the Galileo spacecraft that \n orbited Jupiter and measured intensities of ion and electron \n radiation in the keV and MeV energy range. This set is \n version 31 of reprocessing and version 1.0 of PDS delivery.\n \n The TOFxE and DeltaExE files include event data of ion\n measurements. Event data are different than the channelized data in\n the high, medium, and low resolution files. Event data record the\n full information of a measured particle. Every \"event\" is the\n measurement of a time of flight (TOF) within the instrument and\n energy deposited within a detector (TOFxE file), or two energy\n values deposited within the two detector layers (DeltaExE file).\n The deposited energy values are generally different from the energy\n the particle has in the ambient space. Event data provides measured\n values in the native resolution of the instrument. Because such\n high resolution increases data volume, event data cannot be taken\n continuously and downlinked all the time. Only the provided subset\n of this data was kept. The files are comma separated. Invalid\n entries will have values of -1.000000E+38. Times are provided in\n the format Year.DOYHHMMSSM (first column) and fractional year\n (second column) More information can be found in the User Guide.\n\n This file includes measurements by the EPD/CMS/TOFxE instrument.\n For each counted event, the energy deposited in the one solid state\n detector (Energy_keV column) and the time of flight (TOF_ns) within\n the instrument are recorded.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-tof/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-tof/collection-data-cms-events-tof.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:20.826202","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-epd-channels-high-res::1.0","title":"Galileo EPD Calibrated Corrected High Res Data Collection","description":"These are reprocessed measurements by the Engergetic Particle\n Detector (EPD) instrument onboard the Galileo spacecraft that \n orbited Jupiter and measured intensities of ion and electron \n radiation in the keV and MeV energy range. This set is \n version 31 of reprocessing and version 1.0 of PDS delivery.\n \n Data in the high resolution files include\n measurements that are binned into channels responding to certain\n energy and species ranges. The files are comma separated. Invalid\n entries will have -1.000000E+38 as an entry. The first 4 lines of\n each data text file provide information on the channels included\n here: The first line of each file lists the names of the channels\n included. The second line lists the center energies of these\n channels in keV. The third line lists the channels again. The forth\n line lists the mass of the measured particle in AMU. Zero mass\n refers to electrons. The forth line in the data text file labels\n the columns that follow in the file. The columns include times,\n radiation measurements, spacecraft location, instrument look\n direction, and some supplementary information. Radiation\n measurements are provided both as best calibrated and cleaned\n intensities as well as raw, uncorrected count rates. Columns with\n channel names followed by a \"j\" include calibrated differential\n intensities of the given channel. If the value is negative, it\n should be ignored and particularly not included in averages. For\n the difference between -1.000000E+38 and all other negative values,\n see the User Guide. Columns ending with \"f\" provide differential\n intensities based on a combination of various channels. Columns\n ending with \"i\" include calibrated integral intensities. Columns\n with plain channel names describe the raw uncorrected count rate.\n Columns ending with \"bg\" are raw count rates measured behind the\n calibration shield. Each following line will provide the same data\n but for different times. More information can be found in the User\n Guide.\n \n This file provides data with the highest\n available time and pitch angle resolution. Only a small set of\n channels is provided, limiting the energy resolution and coverage.\n If columns with plain channel names have -1.000000E+38 values, you\n might find valid values in the lower resolution files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-high-res/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-high-res/collection-data-epd-channels-high-res.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:21.829687","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-epd-channels-low-res::1.0","title":"Galileo EPD Calibrated Corrected Low Res Data Collection","description":"These are reprocessed measurements by the Engergetic Particle\n Detector (EPD) instrument onboard the Galileo spacecraft that \n orbited Jupiter and measured intensities of ion and electron \n radiation in the keV and MeV energy range. This set is \n version 31 of reprocessing and version 1.0 of PDS delivery.\n \n Data in the low resolution files include\n measurements that are binned into channels responding to certain\n energy and species ranges. The files are comma separated. Invalid\n entries will have -1.000000E+38 as an entry. The first 4 lines of\n each data text file provide information on the channels included\n here: The first line of each file lists the names of the channels\n included. The second line lists the center energies of these\n channels in keV. The third line lists the channels again. The forth\n line lists the mass of the measured particle in AMU. Zero mass\n refers to electrons. The forth line in the data text file labels\n the columns that follow in the file. The columns include times,\n radiation measurements, spacecraft location, instrument look\n direction, and some supplementary information. Radiation\n measurements are provided both as best calibrated and cleaned\n intensities as well as raw, uncorrected count rates. Columns with\n channel names followed by a \"j\" include calibrated differential\n intensities of the given channel. If the value is negative, it\n should be ignored and particularly not included in averages. For\n the difference between -1.000000E+38 and all other negative values,\n see the User Guide. Columns ending with \"f\" provide differential\n intensities based on a combination of various channels. Columns\n ending with \"i\" include calibrated integral intensities. Columns\n with plain channel names describe the raw uncorrected count rate.\n Columns ending with \"bg\" are raw count rates measured behind the\n calibration shield. Each following line will provide the same data\n but for different times. More information can be found in the User\n Guide.\n \n This includes the full set of channels\n covering the full energy and species range of EPD. The time and\n pitch angle resolution is low. Higher resolution is available for\n some channels that can be found in the medium and high resolution\n files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-low-res/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-low-res/collection-data-epd-channels-low-res.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:22.810175","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-epd-channels-med-res::1.0","title":"Galileo EPD Calibrated Corrected Medium Res Data Collection","description":"These are reprocessed measurements by the Engergetic Particle\n Detector (EPD) instrument onboard the Galileo spacecraft that \n orbited Jupiter and measured intensities of ion and electron \n radiation in the keV and MeV energy range. This set is \n version 31 of reprocessing and version 1.0 of PDS delivery.\n \n Data in the medium resolution files include\n measurements that are binned into channels responding to certain\n energy and species ranges. The files are comma separated. Invalid\n entries will have -1.000000E+38 as an entry. The first 4 lines of\n each data text file provide information on the channels included\n here: The first line of each file lists the names of the channels\n included. The second line lists the center energies of these\n channels in keV. The third line lists the channels again. The forth\n line lists the mass of the measured particle in AMU. Zero mass\n refers to electrons. The forth line in the data text file labels\n the columns that follow in the file. The columns include times,\n radiation measurements, spacecraft location, instrument look\n direction, and some supplementary information. Radiation\n measurements are provided both as best calibrated and cleaned\n intensities as well as raw, uncorrected count rates. Columns with\n channel names followed by a \"j\" include calibrated differential\n intensities of the given channel. If the value is negative, it\n should be ignored and particularly not included in averages. For\n the difference between -1.000000E+38 and all other negative values,\n see the User Guide. Columns ending with \"f\" provide differential\n intensities based on a combination of various channels. Columns\n ending with \"i\" include calibrated integral intensities. Columns\n with plain channel names describe the raw uncorrected count rate.\n Columns ending with \"bg\" are raw count rates measured behind the\n calibration shield. Each following line will provide the same data\n but for different times. More information can be found in the User\n Guide.\n \n This includes a limited set of channels\n with intermediate time and pitch angle resolution. If columns with\n plain channel names have -1.000000E+38 values, you might find valid\n values in the lower resolution files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-med-res/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-med-res/collection-data-epd-channels-med-res.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:23.858872","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:document::1.0","title":"Galileo EPD Calibrated Data User Guide","description":"These are reprocessed measurements by the Engergetic Particle\n Detector (EPD) instrument onboard the Galileo spacecraft that \n orbited Jupiter and measured intensities of ion and electron \n radiation in the keV and MeV energy range. This set is \n version 31 of reprocessing and version 1.0 of PDS delivery.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/document/collection_document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:24.813258","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw::1.0","title":"Galileo Energetic Particle Detector Pre-Jupiter Raw Bundle","description":"This bundle contains count rate, 5 and 15 minute averaged data for the \n energetic particle detector obtained from the LEMMS and CMS telescopes during \n the time of significant activity during the Earth1, Earth2 and Venus encounter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Earth","Venus"],"instruments":["Epd","Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1990-02-10","stop_date":"1992-12-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/bundle-galileo-epd-prejup-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:26.295134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw:data-earth1-avg::1.0","title":"Galileo EPD Pre-Jupiter Raw Earth1 Resampled 15.0 Averaged minute Data Collection","description":"This collection contains 15 minute averages for\n the energetic particle detector rate data obtained\n from the LEMMS telescope during the time the detector\n was operated during the Earth 1 encounter.\n Depending on the tools used for EPD data analysis, it is possible\n to encounter the pitch angle of the detector being substituted\n for the pitch angle of the charged particles.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Energy Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-11-08","stop_date":"1990-12-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-earth1-avg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-earth1-avg/collection-data-earth1-avg-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:27.294721","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw:data-earth1-cr::1.0","title":"Galileo EPD Pre-Jupiter Edited Raw Earth1 Count Rate Data Collection","description":"This collection contains count rate data for the\n energetic particle detector obtained from the LEMMS and\n CMS telescopes during the time of significant activity\n during the Earth1 encounter on day 342, 1990.\n Depending on the tools used for EPD data analysis, it is possible\n to encounter the pitch angle of the detector being substituted\n for the pitch angle of the charged particles.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Energy Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-12-08","stop_date":"1990-12-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-earth1-cr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-earth1-cr/collection-data-earth1-cr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:28.307026","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw:data-earth2-avg::1.0","title":"Galileo EPD Pre-Jupiter Raw Earth2 Resampled 15.0 minute Averaged Data Collection","description":"This collection contains fifteen minute averages for\n the energetic particle detector rate data obtained\n from the LEMMS telescope during the time the detector\n was operated during the Earth 2 encounter.\n Depending on the tools used for EPD data analysis, it is possible\n to encounter the pitch angle of the detector being substituted\n for the pitch angle of the charged particles.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Energy Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-11-08","stop_date":"1990-12-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-earth2-avg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-earth2-avg/collection-data-earth2-avg-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:29.307823","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw:data-earth2-cr::1.0","title":"Galileo EPD Pre-Jupiter Edited Raw Earth2 Count Rate Data Collection","description":"This collection contains count rate data for the\n energetic particle detector obtained from the LEMMS and\n CMS telescopes during the time of significant activity\n during the Earth2 encounter on day 343, 1992.\n Depending on the tools used for EPD data analysis, it is possible\n to encounter the pitch angle of the detector being substituted\n for the pitch angle of the charged particles.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Energy Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1992-12-08","stop_date":"1992-12-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-earth2-cr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-earth2-cr/collection-data-earth2-cr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:30.338169","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw:data-venus-avg::1.0","title":"Galileo EPD Pre-Jupiter Raw Venus Resampled 5.0 Min Averaged Data Collection","description":"This collection contains 5 minute averages \n for the energetic particle detector rate data obtained from the LEMMS \n telescope during the time the detector was operated during the Venus \n encounter. Depending on the tools used for EPD data analysis, it is possible\n to encounter the pitch angle of the detector being substituted\n for the pitch angle of the charged particles.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth","Venus"],"instruments":["Energy Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1992-11-06","stop_date":"1992-12-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-venus-avg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-venus-avg/collection-data-venus-avg-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:31.314981","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw:data-venus-cr::1.0","title":"Galileo EPD Pre-Jupiter Edited Raw Venus Count Rate Data Collection","description":"This collection contains sixteen sector rate data for the\n energetic particle detector obtained from the LEMMS and\n CMS telescopes during the time of significant activity\n during the Venus encounter. Depending on the tools used \n for EPD data analysis, it is possible to encounter the \n pitch angle of the detector being substituted\n for the pitch angle of the charged particles.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Venus"],"instruments":["Energy Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-02-10","stop_date":"1990-02-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-venus-cr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/data-venus-cr/collection-data-venus-cr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:32.328207","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw:document::1.0","title":"Galileo EPD Pre-Jupiter Raw Document Collection","description":"This collection contains documents associated with the \n raw data from the Galileo Orbiter EPD instrument for the period corresponding to the\n Galileo Pre-Jupiter Earth1, Earth2 and Venus observations.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth","Venus"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1990-02-10","stop_date":"1992-12-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:33.378865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated::1.0","title":"Galileo Jupiter Heavy Ion Counter Survey Energetic Ion Count Rate Calibrated Bundle","description":"This bundle provides energetic (MeV) ion count rates and events \n measured by the Heavy Ion Counter (HIC) instrument on the Galileo \n spacecraft. The data are derived from the raw real-time science (RTS) \n data and high time resolution raw data that were recorded to tape and \n then played back later in the orbit. There are two basic types of data\n files associated with the full-rate reduced data: Detector Count Rates \n and Events (Pulse Heights).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io"],"instruments":["Go","Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/bundle-galileo-hic-jup-calibrated.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:34.869661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:browse::1.0","title":"Galilieo Jupiter HIC Highres Energetic Ion Count Rate Browse Data Collection","description":"This collection contains electron browse plots for the electron \n data in the Galilieo Jupiter Heavy Ion Counter High Resolution \n Energetic Ion Count Rate Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:35.820992","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:data-highres-amalthea::1.0","title":"Galilieo Jupiter HIC Highres Energetic Ion Count Rate Amalthea Data Collection","description":"This collection contains Galileo HIC high resolution \n (LPW) pulse height data acquired at Jupiter and Amalthea between \n 2002-11-05T02:45 and 2002-11-05T06:35.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"2002-11-05","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-amalthea/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-amalthea/collection-data-highres-amalthea.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:36.818351","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:data-highres-callisto::1.0","title":"Galilieo Jupiter HIC Highres Energetic Ion Count Rate Callisto Data Collection","description":"This collection contains Galileo HIC high resolution (LPW) \n pulse height data acquired at Jupiter and Callisto.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-11-04","stop_date":"2001-05-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-callisto/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-callisto/collection-data-highres-callisto.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:37.845175","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:data-highres-europa::1.0","title":"Galilieo Jupiter HIC Highres Energetic Ion Count Rate Europa Data Collection","description":"This collection contains Galileo HIC high resolution\n (LPW) pulse height data acquired at Jupiter and Europa.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Europa"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-12-19","stop_date":"2000-01-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-europa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-europa/collection-data-highres-europa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:38.824367","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:data-highres-ganymede::1.0","title":"Galilieo Jupiter HIC Highres Energetic Ion Count Rate Ganymede Data Collection","description":"This collection contains Galileo HIC \n high resolution (LPW) pulse height data acquired at \n Jupiter and Ganymede.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Ganymede"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-27","stop_date":"2000-12-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-ganymede/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-ganymede/collection-data-highres-ganymede.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:39.832392","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:data-highres-io::1.0","title":"Galilieo Jupiter HIC Highres Energetic Ion Count Rate Io Data Collection","description":"This collection contains Galileo HIC high resolution \n (LPW) pulse height data acquired at Jupiter, Io, \n and in the Io plasma torus.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-01-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-io/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres-io/collection-data-highres-io.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:40.844010","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:data-highres::1.0","title":"Galilieo Jupiter HIC Highres Energetic Ion Count Rate Data Collection","description":"This collection contains Galileo HIC high resolution\n (LPW) pulse height data acquired at Jupiter and \n in the Io plasma torus.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-highres/collection-data-highres.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:41.840697","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:data-survey-countrate::1.0","title":"Galileo Jupiter HIC Survey Energetic Ion Count Rate Calibrated Data Collection","description":"This collection contains energetic (MeV) ion count rates and \n events measured by the Heavy Ion Counter (HIC) instrument on \n the Galileo spacecraft. The data are derived from the raw \n real-time science (RTS) data. There are two basic types of \n data files associated with the full-rate reduced data: \n Detector Count Rates and Events (Pulse Heights).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-27","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-survey-countrate/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/data-survey-countrate/collection-data-survey-countrate_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:42.833168","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated:document::1.0","title":"Galileo Jupiter HIC High Resolution Energetic Ion Count Rate Document Collection","description":"This collection contains the documents associated with the \n Galileo Jupiter Heavy Ion Counter High Resolution Energetic Ion Count Rate Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-12-07","stop_date":"2002-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:43.877161","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-derived::1.0","title":"Galileo Jupiter Heavy Ion Counter Derived Energetic Ion Composition Bundle","description":"This bundle provides energetic (MeV) ion fluxes for a variety of different \n Z values (carbon, oxygen, sulfur) derived from the Heavy Ion Counter (HIC) \n instrument on the Galileo spacecraft. The data set includes all recorded \n intervals at Jupiter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Io","Ganymede","Europa"],"instruments":["Go","Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-12-07","stop_date":"2002-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/bundle-galileo-hic-jup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:45.354057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-derived:data::1.0","title":"Galileo Jupiter HIC Derived Energetic Ion Composition Data Collection","description":"This collection contains energetic (MeV) ion fluxes for a variety of \n different Z values (carbon, oxygen, sulfur) derived from the \n Heavy Ion Counter (HIC) instrument on the Galileo spacecraft. \n The data set includes all recorded intervals at Jupiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io","Ganymede","Europa"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:46.403079","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-derived:document::1.0","title":"Galileo Jupiter HIC Derived Energetic Ion Composition Document Collection","description":"This collection contains the documents associated with the \n Galileo Jupiter Heavy Ion Counter Derived Energetic Ion Composition Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-12-07","stop_date":"2002-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:47.346523","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-raw::1.0","title":"Galileo Jupiter Heavy Ion Counter High Resolution Raw Bundle","description":"This bundle provides energetic (MeV) ion fluxes for a variety of different \n Z values (carbon, oxygen, sulfur) derived from the Heavy Ion Counter (HIC) \n instrument on the Galileo spacecraft. The data set includes all recorded \n intervals at Jupiter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Go","Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/bundle-galileo-hic-jup-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:48.837254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-raw:data::1.0","title":"Galileo Jupiter HIC High Resolution Raw Data Collection","description":"This collection contains raw energetic (MeV) particle data measured by \n the Heavy Ion Counter (HIC) instrument on the Galileo spacecraft. \n This data set contains both real-time and recorded data for all Jupiter orbits.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:49.854673","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-raw:document::1.0","title":"Galileo Jupiter HIC High Resolution Raw Document Collection","description":"This collection contains the documents associated with the\n Galileo Jupiter Heavy Ion Counter High Resolution Raw.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Solar Wind","Jupiter","Io","Europa","Ganymede","Callisto","Amalthea"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Document"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:50.851257","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-prejup-derived::1.0","title":"Galileo Heavy Ion Counter Derived Ion Fluxes October 89 Solar Event Bundle","description":"This bundle includes values for the fluxes of heavy ions associated \n with an energetic particle event of solar origin. The values are \n derived from HIC data taken during the Interplanetary Cruise to \n Jupiter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar Wind"],"instruments":["Go","Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1989-10-21","stop_date":"1989-10-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/bundle-galileo-hic-prejup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:52.358496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-prejup-derived:data::1.0","title":"Galileo HIC Derived Ion Fluxes October 89 Solar Event Data Collection","description":"This collection contains values for the fluxes of heavy ions associated \n with an energetic particle event of solar origin. The values are \n derived from HIC data taken during the Interplanetary Cruise to \n Jupiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1989-10-21","stop_date":"1989-10-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:53.350241","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-prejup-derived:document::1.0","title":"Galileo HIC Derived Ion Fluxes October 89 Solar Event Document Collection","description":"This collection contains the documents associated with the \n Galileo Heavy Ion Counter Derived Ion Fluxes October 89 Solar Event Calibrated Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar System"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1989-10-21","stop_date":"1989-10-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:54.361553","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated::1.1","title":"Galileo Orbiter at Jupiter Magnetometer High Resolution Calibrated Bundle","description":"This bundle contains magnetic field vectors acquired by the \n Galileo magnetometer (MAG).\n \n This data was previously released as PDS3 data in the GO-J-MAG-3-RDR-HIGHRES-V1.0 (https://doi.org/10.17189/1519667) and \n GO-J-MAG-3-RDR-MAGSPHERIC-SURVEY-V1.0 (https://doi.org/10.17189/1519668) data sets.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io","Io Torus","Solar Wind"],"instruments":["Mag","Magnetometer"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/bundle-galileo-mag-jup-calibrated.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:55.930250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres-callisto::1.1","title":"Galileo Jupiter Magnetometer High Resolution Callisto PHIO Coordinates Browse Data Collection","description":"This collection contains Galileo high resolution magnetic-field browse \n data from the Callisto flyby in satellite centered Phi-Omega coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-11-04","stop_date":"2001-05-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-callisto/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-callisto/collection_browse-highres-callisto.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:56.888293","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres-europa::1.1","title":"Galileo Jupiter Magnetometer High Resolution Europa PHIO Coordinates Browse Data Collection","description":"This collection contains Galileo high resolution magnetic-field browse \n data from the Europa flyby in satellite centered Phi-Omega coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Europa"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-europa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-europa/collection_browse-highres-europa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:57.936586","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres-ganymede::1.1","title":"Galileo Jupiter Magnetometer High Resolution Ganymede PHIO Coordinates Browse Data Collection","description":"This collection contains Galileo high resolution magnetic-field browse \n data from the Ganymede flyby in satellite centered Phi-Omega coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Ganymede"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-27","stop_date":"2000-12-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-ganymede/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-ganymede/collection_browse-highres-ganymede.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:58.864448","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres-io::1.1","title":"Galileo Jupiter Magnetometer High Resolution Io PHIO Coordinates Browse Data Collection","description":"This collection contains Galileo high resolution magnetic-field browse \n data from the Io flyby in satellite centered Phi-Omega coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2001-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-io/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-io/collection_browse-highres-io.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:27:59.869723","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres::1.1","title":"Galileo Jupiter Magnetometer High Resolution SYS3 Coordinates Browse Data Collection","description":"This collection contains Galileo high resolution magnetic-field browse \n data in Jovicentric System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io","Ganymede","Callisto","Europa","Amalthea"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Browse"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres/collection_browse-highres.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:00.863653","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-magspheric-survey-callisto::1.1","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Callisto PHIO Coordinates Browse Data Collection","description":"This collection contains Galileo Magnetospheric Survey magnetic-field browse \n data from the Callisto flyby in satellite centered Phi-Omega coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1999-06-30","stop_date":"1999-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-callisto/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-callisto/collection_browse-magspheric-survey-callisto.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:01.895440","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-magspheric-survey-europa::1.1","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Europa PHIO Coordinates Browse Data Collection","description":"This collection contains Galileo Magnetospheric Survey magnetic-field browse \n data from the Europa flyby in satellite centered Phi-Omega coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Europa"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1999-11-25","stop_date":"1999-11-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-europa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-europa/collection_browse-magspheric-survey-europa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:02.877568","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-magspheric-survey-ganymede::1.1","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Ganymede PHIO Coordinates Browse Data Collection","description":"This collection contains Galileo Magnetospheric Survey magnetic-field browse \n data from the Ganymede flyby in satellite centered Phi-Omega coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Ganymede"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1997-12-15","stop_date":"1997-12-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-ganymede/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-ganymede/collection_browse-magspheric-survey-ganymede.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:03.893317","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-magspheric-survey::1.1","title":"Galileo Jupiter Magnetometer Magnetospheric Survey SYS3 Coordinates Browse Data Collection","description":"This collection contains Galileo Magnetospheric Survey magnetic-field browse \n data in Jovicentric System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-23","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey/collection_browse-magspheric-survey.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:04.882844","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:calibration::1.1","title":"Galileo Jupiter Magnetometer Calibration Collection","description":"This collection contains a time history of spacecraft and instrument commands \n and mission events useful in understanding the operation of the Galileo \n magnetometer during Jupiter approach and continuing throughout Jupiter orbital \n operations. Most entries are taken from the As-Run Spacecraft Event Files. \n Perijove, apojove, and solar conjunctions are calculated using SPICE kernels. \n Solar conjunction is defined as when the three-body (Sun-Earth-spacecraft) angle is less \n than 7 degrees.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Ganymede","Callisto","Europa","Io Torus","Io","Solar Wind"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Calibration"],"start_date":"1995-12-03","stop_date":"2003-04-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/calibration/collection_calibration_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:05.888392","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-callisto::1.1","title":"Galileo Jupiter Magnetometer Highres Callisto Data Collection","description":"This data collection contains high time resolution magnetic field vectors \n acquired by the Galileo magnetometer (MAG). It includes \n satellite flyby Callisto data. These data were acquired in \n order to characterize various portions of the Jovian magnetosphere \n at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-11-04","stop_date":"2001-05-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-callisto/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-callisto/collection-data-highres-callisto.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:06.925936","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-europa::1.1","title":"Galileo Jupiter Magnetometer Highres Europa Data Collection","description":"This data collection contains high time resolution magnetic field vectors \n acquired by the Galileo magnetometer (MAG). It includes \n satellite flyby Europa data. These data were acquired in \n order to characterize various portions of the Jovian magnetosphere \n at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Europa"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-12-19","stop_date":"2000-01-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-europa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-europa/collection-data-highres-europa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:07.898235","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-ganymede::1.1","title":"Galileo Jupiter Magnetometer Highres Ganymede Data Collection","description":"This data collection contains high time resolution magnetic field vectors \n acquired by the Galileo magnetometer (MAG). It includes \n satellite flyby Ganymede data. These data were acquired in \n order to characterize various portions of the Jovian magnetosphere \n at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Ganymede"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-11-01","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-ganymede/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-ganymede/collection-data-highres-ganymede.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:08.948594","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-io::1.1","title":"Galileo Jupiter Magnetometer Highres Io Data Collection","description":"This data collection contains high time resolution magnetic field vectors \n acquired by the Galileo magnetometer (MAG). It includes \n satellite flyby Io data. These data were acquired in \n order to characterize various portions of the Jovian magnetosphere \n at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2001-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-io/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-io/collection-data-highres-io.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:09.888786","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-magnetosphere::1.1","title":"Galileo Jupiter Magnetometer Highres Magnetosphere Data Collection","description":"This data collection contains high-resolution magnetic field\n and trajectory data in spherical Jupiter System III [1965]\n and Inertial Rotor coordinates (IRC) acquired by the Galileo magnetometer (MAG).\n It includes satellite flyby data. These data were acquired in \n order to characterize various portions of the Jovian magnetosphere \n at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2001-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-magnetosphere/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-magnetosphere/collection-data-highres-magnetosphere.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:10.892108","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-magspheric-survey::1.1","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Data Collection","description":"This collection contains Galileo magnetospheric survey magnetic-field \n data in Jupiter Solar Equatorial, Inertial Rotor, Jupiter Solar Orbital,\n Jupiter Solar Magnetic and Jovicentric System III [1965] coordinates. \n The data cover 1995-11-01T00:06 to 2003-09-21T17:33.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io","Io Torus","Solar Wind"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-11-01","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-magspheric-survey/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-magspheric-survey/collection-data-magspheric-survey.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:11.901238","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:document::1.1","title":"Galileo MAG Jupiter Calibrated Document Collection","description":"This collection contains the documents associated with the \n magnetic field vectors acquired by the Galileo magnetometer (MAG) calibrated Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io","Io Torus","Solar Wind"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1989-10-21","stop_date":"1989-10-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/document/collection_document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:12.946592","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-raw::1.0","title":"Galileo Jupiter Magnetometer Raw Bundle","description":"This bundle contains raw magnetic field data acquired by the \n Galileo Orbiter magnetometer (MAG).\n \n This data was previously released as PDS3 data in the \n GO-J-MAG-2-REDR-RAW-DATA-V1.0 (https://doi.org/10.17189/1519667) data sets.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Mag","Magnetometer"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/bundle-galileo-mag-jupiter-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:14.402498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-raw:data::1.0","title":"Galileo Jupiter Magnetometer Raw Data Collection","description":"This collection contains high time resolution magnetic field vectors \n acquired by the Galileo magnetometer (MAG). It includes both \n satellite flyby and non-flyby data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:15.422932","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-raw:document::1.0","title":"Galileo MAG Jupiter Raw Document Collection","description":"This collection contains the documents associated with the \n Galileo MAG Jupiter Raw Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:16.400435","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-prejup-calibrated::1.0","title":"Galileo Magnetometer Pre-Jupiter Calibrated Bundle","description":"This bundle contains calibrated data acquired by the \n Galileo Orbiter Magnetometer (MAG) prior to Jupiter Orbital Operations, \n including the Earth, Venus, Gaspra and Ida flybys as well as cruise.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar System","Solar Wind","Venus","Earth","951 Gaspra","243 Ida","Gaspra","Ida"],"instruments":["Mag","Magnetometer"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1989-12-31","stop_date":"1995-12-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-prejupiter-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-prejupiter-calibrated/bundle-galileo-mag-prejup-calibrated.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:17.947415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-prejup-calibrated:document::1.0","title":"Galileo Magnetometer Pre-Jupiter Calibrated Document Collection","description":"This collection contains the documents associated with the \n Galileo Magnetometer Pre-Jupiter Calibrated Document","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar System"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-prejupiter-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-prejupiter-calibrated/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:19.434424","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal::1.0","title":"Galileo Plasma Science Experiment Jupiter Calibrated Bundle","description":"This bundle contains averaged raw data and spin averaged count rates from selected ion\n and electron channels from the Plasma Science experiment (PLS)\n onboard the Galileo spacecraft for all Jupiter orbits. These data have been averaged\n and reformatted into ASCII tables to facilitate data display and analysis.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/bundle-galileo-pls-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:20.916668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:browse-fullres::1.0","title":"Galileo PLS Jupiter Full Resolution Calibrated Browse Collection","description":"This collection contains plots of Galileo Plasma Science Experiment data in PDF/A\n format. Each plot consists of one day of full resolution data taken during \n the particular spacecraft orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Browse"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/browse-fullres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/browse-fullres/collection_browse-fullres_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:22.055255","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:calibration::1.0","title":"Galileo PLS Jupiter Calibrated Calibration Collection","description":"This collection contains the calibration data associated with the \n Galileo PLS Jupiter Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Calibration"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/calibration/collection_calibration_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:22.983906","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:data-avg-browse::1.0","title":"Galileo PLS Jupiter Averaged Browse Calibrated Data Collection","description":"This collection contains data from the Plasma Science instrument \n (PLS) on the Galileo spacecraft for all Jupiter orbits. These data \n have been reformatted into ASCII tables to facilitate data \n processing and analysis.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-browse/collection_data-avg-browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:23.974433","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:data-avg-counts::1.0","title":"Galileo PLS Jupiter Averaged Plasma Counts Calibrated Collection","description":"This collection contains averaged raw data from the Plasma Science \n instrument(PLS) on the Galileo spacecraft for all Jupiter orbits. These \n data have been averaged and reformatted into ASCII tables to facilitate \n data display and analysis.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-counts/collection_data-avg-counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:24.988991","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:data-fullres::1.0","title":"Galileo PLS Jupiter Full Resolution Data Collection","description":"This collection contains data from the Plasma Science instrument \n (PLS) on the Galileo spacecraft for all Jupiter orbits. These data \n have been reformatted into ASCII tables to facilitate data \n processing and analysis.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-fullres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-fullres/collection_data-fullres_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:25.993159","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:document::1.0","title":"Galileo PLS Jupiter Calibrated Document Collection","description":"This collection contains the documents associated with the \n Galileo PLS Jupiter Calibrated Document","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:27.025280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-derived::1.0","title":"Galileo Plasma Science Instrument Jupiter RTS Moments Derived Bundle","description":"This bundle contains data from the Plasma Science instrument \n (PLS) on the Galileo spacecraft for all Jupiter orbits and Galileo plasma moments.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Io Torus","Solar Wind","Callisto","Europa","Ganymede","Io"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/bundle-galileo-pls-jup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:28.526850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-derived:data::1.0","title":"Galileo PLS Jupiter RTS Moments Derived Data Collection","description":"This collection contains data from the Plasma Science instrument \n (PLS) on the Galileo spacecraft for all Jupiter orbits and Galileo plasma moments.\n These data have been reformatted into ASCII tables to facilitate data \n processing and analysis.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Solar Wind","Callisto","Europa","Ganymede","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:29.506286","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-derived:document::1.0","title":"Galileo PLS Jupiter RTS Moments Derived Document Collection","description":"This collection contains the documents associated with the \n Galileo PLS Jupiter RTS Moments Document","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:30.524326","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal::1.0","title":"Galileo Plasma Science Experiment Pre-Jupiter Calibrated Bundle","description":"This bundle includes a listing of particle energy spectra from the Galileo \n Plasma Instrument (PLS) during the Ida, Gaspra, Earth\n and Venus Encounters. Detector reponses from ion detetors 2P, 4P, and 6P, and from electron \n detector 4E are available through the PDS as separate files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar Wind","Earth","Venus","951 Gaspra","243 Ida"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1990-11-08","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/bundle-galileo-pls-prejup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:32.014076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal:browse::1.0","title":"Galileo PLS Pre-Jupiter Calibrated Browse Collection","description":"This collection includes full resolution electron, positive ion, \n and mass spectrometer observations obtained obtained during the \n period that the Galileo plasma analyzer was \n operated at Venus, Gaspra and Ida.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Venus","951 Gaspra","243 Ida"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Browse"],"start_date":"1990-02-01","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:33.066646","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal:data-avg-earth1::1.0","title":"Galileo PLS Averaged Earth1 Calibrated Data Collection","description":"This collection contains a listing \n of particle energy spectra from the Galileo Plasma Instrument \n (PLS) during the first Earth Encounter","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-11-08","stop_date":"1990-12-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-earth1/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-earth1/collection_data-avg-earth1_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:34.014421","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal:data-avg-earth2::1.0","title":"Galileo PLS Averaged Earth2 Calibrated Data Collection","description":"This collection contains a listing \n of particle energy spectra from the Galileo Plasma Instrument \n (PLS) during the second Earth Encounter","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1992-11-07","stop_date":"1992-12-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-earth2/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-earth2/collection_data-avg-earth2_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:35.014535","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal:data-avg-gaspra::1.0","title":"Galileo PLS Asteroid Averaged Gaspra Calibrated Data Collection","description":"This collection contains a listing \n of particle energy spectra from the Galileo Plasma Instrument \n (PLS) during the Gaspra Flyby","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","951 Gaspra"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-gaspra/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-gaspra/collection_data-avg-gaspra_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:36.011344","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal:data-avg-ida::1.0","title":"Galileo PLS Asteroid Averaged Ida Calibrated Data Collection","description":"This collection contains a listing \n of particle energy spectra from the Galileo Plasma Instrument \n (PLS) during the Ida Flyby","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","243 Ida"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-ida/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-ida/collection_data-avg-ida_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:37.006248","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal:data-avg-venus::1.0","title":"Galileo PLS Averaged Venus Calibrated Data Collection","description":"This collection contains a listing \n of particle energy spectra from the Galileo Plasma Instrument \n (PLS) during the Venus encounter","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Venus","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-02-01","stop_date":"1990-02-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-venus/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/data-avg-venus/collection_data-avg-venus_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:38.034710","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal:document::1.0","title":"Galileo PLS Pre-Jupiter Calibrated Document Collection","description":"This collection contains the documents associated with the \n Galileo PLS Pre-Jupiter Calibrated data bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth","Venus","951 Gaspra","243 Ida"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1990-11-08","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:39.100374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived::1.1","title":"Galileo Photopolarimeter Radiometer Pre-Jupiter Derived Bundle","description":"This Bundle includes derived data for the Galileo Orbiter PPR instrument for \n the period corresponding to the Galileo Pre-Jupiter observations between \n December 1989 and July 1994.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar Wind","243 Ida","951 Gaspra","Earth","Venus","Ida","Gaspra"],"instruments":["Ppr","Photopolarimeter Radiometer"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1989-12-27","stop_date":"1994-07-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/bundle-galileo-ppr-prejup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:40.526275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived:data-checkout::1.0","title":"Galileo PPR Pre-Jupiter Derived Initial Checkout Data Collection","description":"This collection contains the RDR data for the Galileo \n Orbiter PPR instrument for the period corresponding \n to the initial turn-on and checkout of the PPR in \n December 1989.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1989-12-27","stop_date":"1989-12-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-checkout/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-checkout/collection-data-checkout_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:41.539186","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived:data-earth1::1.0","title":"Galileo PPR Pre-Jupiter Derived Earth1 Encounter Data Collection","description":"This collection contains the RDR data for the Galileo Orbiter PPR \n instrument for the period corresponding to the Earth-1 encounter \n observations in November-December 1990.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1990-11-16","stop_date":"1990-12-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-earth1/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-earth1/collection-data-earth1_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:42.605995","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived:data-earth2::1.0","title":"Galileo PPR Pre-Jupiter Derived Earth2 Encounter Data Collection","description":"This collection contains the RDR data for the Galileo Orbiter PPR \n instrument for the period corresponding to the Earth-2 encounter \n observations in November-December 1992.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1992-11-30","stop_date":"1992-12-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-earth2/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-earth2/collection-data-earth2_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:43.590803","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived:data-gaspra::1.0","title":"Galileo PPR Pre-Jupiter Derived Gaspra Asteroid Encounter Data Collection","description":"This collection contains the RDR data for the Galileo\n Orbiter PPR instrument for the period corresponding to the\n Gaspra asteroid encounter observations in October 1991.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","951 Gaspra","Gaspra"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-gaspra/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-gaspra/collection-data-gaspra_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:44.601144","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived:data-ida::1.0","title":"Galileo PPR Pre-Jupiter Derived Ida Asteroid Encounter Data Collection","description":"This collection contains the RDR data for the Galileo Orbiter\n PPR instrument for the period corresponding to the Ida\n asteroid encounter observations in August 1993.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","243 Ida","Ida"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1993-08-17","stop_date":"1993-08-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-ida/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-ida/collection-data-ida_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:45.523341","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived:data-sl9-impact::1.0","title":"Galileo PPR Pre-Jupiter Derived SL-9 Impact Data Collection","description":"This collection contains the derived data for the Galileo Orbiter \n PPR instrument for the period corresponding to the \n observations of the SL-9 impacts with Jupiter during July 1994.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1994-07-18","stop_date":"1994-07-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-sl9-impact/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-sl9-impact/collection-data-sl9-impact_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:46.545993","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived:data-venus::1.0","title":"Galileo PPR Pre-Jupiter Derived Venus Encounter Data Collection","description":"This collection contains the RDR data for the Galileo Orbiter PPR\n instrument for the period corresponding to the Venus encounter\n observations in February 1990.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Venus"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1990-02-09","stop_date":"1990-02-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-venus/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/data-venus/collection-data-venus_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:47.565663","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived:document::1.1","title":"Galileo PPR Pre-Jupiter Derived Document Collection","description":"This collection contains the documents associated with the \n Galileo Orbiter PPR instrument for the period corresponding to the\n Galileo Pre-Jupiter observations.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida","951 Gaspra","Earth","Venus","Solar Wind","Ida","Gaspra"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1989-12-27","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:48.553717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw::1.0","title":"Galileo Photopolarimeter Radiometer Pre-Jupiter Raw Bundle","description":"This Bundle includes raw (R_EDR) data for the Galileo Orbiter PPR instrument for \n the period corresponding to the Galileo Pre-Jupiter observations between \n December 1989 and August 1993.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar Wind","243 Ida","951 Gaspra","Earth","Venus","Ida","Gaspra"],"instruments":["Ppr","Photopolarimeter Radiometer"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1989-12-27","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/bundle-galileo-ppr-prejup-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:50.057447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-checkout::1.0","title":"Galileo PPR Pre-Jupiter Raw Initial Checkout Data Collection","description":"This collection contains the raw data for the Galileo\n Orbiter PPR instrument for the period corresponding\n to the initial turn-on and checkout of the PPR in\n December 1989.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1989-12-27","stop_date":"1989-12-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-checkout/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-checkout/collection-data-checkout_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:51.148157","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-earth1-cal::1.0","title":"Galileo PPR Pre-Jupiter Raw Calibration Earth1 Encounter Data Collection","description":"This collection contains the raw calibration data for the Galileo\n Orbiter PPR instrument for the period corresponding\n to the Earth-1 encounter observations in\n November-December 1992.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1992-11-25","stop_date":"1992-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-earth1-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-earth1-cal/collection-data-earth1-cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:52.051152","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-earth1::1.0","title":"Galileo PPR Pre-Jupiter Raw Earth1 Encounter Data Collection","description":"This collection contains the raw data for the Galileo Orbiter PPR \n instrument for the period corresponding to the Earth-1 encounter \n observations in November-December 1990","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1990-11-14","stop_date":"1990-12-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-earth1/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-earth1/collection-data-earth1_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:53.066434","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-earth2-cal::1.0","title":"Galileo PPR Pre-Jupiter Raw Calibration Earth2 Encounter Data Collection","description":"This collection contains the raw calibration data for the Galileo\n Orbiter PPR instrument for the period corresponding\n to the Earth-2 encounter observations in\n November-December 1992.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1992-11-25","stop_date":"1992-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-earth2-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-earth2-cal/collection-data-earth2-cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:54.113955","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-earth2::1.0","title":"Galileo PPR Pre-Jupiter Raw Earth2 Encounter Data Collection","description":"This collection contains the raw data for the Galileo Orbiter PPR \n instrument for the period corresponding to the Earth-2 encounter\n observations in November-December 1992.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1992-11-25","stop_date":"1992-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-earth2/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-earth2/collection-data-earth2_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:55.085744","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-gaspra::1.0","title":"Galileo PPR Pre-Jupiter Raw Asteroid Gaspra Data Collection","description":"This collection contains the raw data for the Galileo\n Orbiter PPR instrument for the period corresponding\n to the Gaspra asteroid encounter observations in\n October 1991.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar System","951 Gaspra","Gaspra"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-gaspra/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-gaspra/collection-data-gaspra_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:56.315105","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-ida::1.0","title":"Galileo PPR Pre-Jupiter Raw Asteroid Ida Data Collection","description":"This collection contains the raw data for the Galileo Orbiter\n PPR instrument for the period corresponding to the Ida\n asteroid encounter observations in October 1993.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","243 Ida","Ida"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-ida/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-ida/collection-data-ida_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:57.185255","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-moon1::1.0","title":"Galileo PPR Pre-Jupiter Raw Moon1 Data Collection","description":"This collection contains the raw data\n for the Galileo Orbiter PPR instrument for the period corresponding\n to the Earth-1 encounter observations in November-December 1990.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1990-11-14","stop_date":"1990-12-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-moon1/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-moon1/collection-data-moon1_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:58.061315","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-moon2::1.0","title":"Galileo PPR Pre-Jupiter Raw Moon2 Data Collection","description":"This collection contains the raw data\n for the Galileo Orbiter PPR instrument for the period corresponding\n to the Earth-2 encounter observations in November-December 1992","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Earth"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1992-11-25","stop_date":"1992-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-moon2/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-moon2/collection-data-moon2_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:28:59.077743","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-venus-cal::1.0","title":"Galileo PPR Pre-Jupiter Raw Calibration Venus Encounter Data Collection","description":"This collection contains the raw calibration data\n for the Galileo Orbiter PPR instrument for the period corresponding\n to the Venus encounter observations in February 1990.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Venus"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1990-02-09","stop_date":"1990-02-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-venus-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-venus-cal/collection-data-venus-cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:00.059600","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:data-venus::1.0","title":"Galileo PPR Pre-Jupiter Raw Venus Encounter Data Collection","description":"This collection contains the raw data\n for the Galileo Orbiter PPR instrument for the period corresponding\n to the Venus encounter observations in February 1990.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar Wind","Venus"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo"],"data_types":["Data"],"start_date":"1990-02-09","stop_date":"1990-02-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-venus/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/data-venus/collection-data-venus_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:01.087579","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw:document::1.0","title":"Galileo PPR Pre-Jupiter Raw Document Collection","description":"This collection contains the documents associated with the \n Galileo Orbiter PPR instrument for the period corresponding to the\n Galileo Pre-Jupiter raw observations.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida","951 Gaspra","Earth","Venus","Ida","Gaspra"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1989-12-27","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:02.080050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-rss-jup-der::1.0","title":"Galileo Jupiter Radio Science Subsystem Derived Bundle","description":"The Galileo Jupiter Radio Science Subsystem Derived Bundle \n contains a small number of electron density profiles derived from radio \n occultation data collected while Galileo was in Jupiter orbit. \n Each profile is an ASCII table giving electron density as a \n function of radius (and altitude). This bundle contains \n Jupiter profiles from 1995-1996 and Io profiles from 1997.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Io","Callisto","Europa"],"instruments":["Rss","Radio Science Subsystem"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-12-08","stop_date":"1997-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/bundle-go-rss-jup-der.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:03.577957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-rss-jup-der:browse::1.0","title":"Galileo Jupiter RSS Electron Density Profile Browse Collection","description":"This collection contains plots of Galileo Radio Science data in Adobe PDF/A \n format. Each plot consists of electron densities vs. altitude at a few \n specific short intervals.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io","Callisto","Europa"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Browse"],"start_date":"1995-12-08","stop_date":"1997-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/browse/collection-browse-jup-rss-der_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:04.602108","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-rss-jup-der:data::1.0","title":"Galileo Jupiter RSS Electron Density Profile Data Collection","description":"This collection contains a small number \n of electron density profiles derived from radio \n occultation data collected while Galileo was in Jupiter orbit. \n Each profile is an ASCII table giving electron density as a \n function of radius (and altitude).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io","Callisto","Europa"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-08","stop_date":"1997-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/data/collection-data-jup-rss-der_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:05.653987","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-rss-jup-der:document::1.0","title":"Galileo Jupiter RSS Derived Document Collection","description":"This collection contains the documents associated with \n Galileo Jupiter Radio Science Subsystem Derived Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto","Europa","Io"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-12-08","stop_date":"1997-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:06.619057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ssd-jup-derived::1.0","title":"Galileo Jupiter Star Scanner Derived Bundle","description":"This bundle contains measurements of \n energetic electron flux derived data from the attitude\n control system star scanner in the Jovian environment.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io Torus","Io"],"instruments":["Ssd","Star Scanner"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/bundle-galileo-ssd-jup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:08.102121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ssd-jup-derived:browse::1.0","title":"Galileo Jupiter Star Scanner Derived Browse Collection","description":"This collection contains plots of Galileo Star Scanner data in Adobe PDF \n format. Each plot consists of counts taken short intervals during each \n spacecraft orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io Torus","Io","Solar Wind"],"instruments":["Star Scanner"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Browse"],"start_date":"1995-12-07","stop_date":"2000-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/browse/collection_browse-star-sensor_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:09.242075","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ssd-jup-derived:data::1.0","title":"Galileo Jupiter Star Scanner Derived Data Collection","description":"This collection contains data on the instantaneous \n flux of 1.5 to 30 MeV electrons in the Jovian environment. It is \n able to measure fluxes of ~1 x 105 electrons cm-2 sec-1 or greater \n which generally means the data are usable inside of about 12 and \n rarely as far out as 16.5 Jovian Radii (RJ).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io Torus","Io"],"instruments":["Star Scanner"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/data/collection_data-star-sensor_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:10.105902","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ssd-jup-derived:document::1.0","title":"Galileo Jupiter SSD Derived Data Document Collection","description":"This collection contains the documents associated with the instantaneous \n flux of 1.5 to 30 MeV electrons in the Jovian environment. It is \n able to measure fluxes of ~1 x 105 electrons cm-2 sec-1 or greater \n which generally means the data are usable inside of about 12 and \n rarely as far out as 16.5 Jovian Radii (RJ).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io Torus","Io"],"instruments":["Star Scanner"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1989-12-27","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:11.098212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup::1.0","title":"Galileo Trajectory Jupiter Bundle","description":"This bundle contains Galileo spacecraft trajectory data in three \n coordinate systems commonly used in the analysis of Jovian magnetospheric \n data. These include System III (1965.0), Jupiter Solar Equatorial (JSE) and \n Jupiter Solar Magnetospheric (JSM) coordinates from the Jupiter Orbital \n Operations phases of the Galileo Mission.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Amalthea","Callisto","Europa","Ganymede"],"instruments":[],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/bundle-galileo-traj-jup.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:12.603218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup:browse-sc-traj-jup-coords::1.0","title":"Galileo Jupiter Trajectory Centered Coordinates Browse Collection","description":"This collection contains browse plots of all 35 Galileo orbits, plus the \n trajectories of the other spacecraft to visit Jupiter, projected into the \n JSE X-Y plane (equatorial, X positive towards the Sun).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Browse"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/browse-sc-traj-jup-coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/browse-sc-traj-jup-coords/collection_browse-sc-traj-jup-coords_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:13.594528","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup:browse-sc-traj-moon-coords::1.0","title":"Galileo Jupiter Trajectory Moon Centered Coordinates Browse Collection","description":"This collection contains detailed Galileo plots\n of all the moon flyby trajectories from orbits.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Browse"],"start_date":"1995-12-07","stop_date":"2002-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/browse-sc-traj-moon-coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/browse-sc-traj-moon-coords/collection_browse-sc-traj-moon-coords_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:14.610394","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup:data-moon-traj::1.0","title":"Galileo Jupiter Moon Trajectory Data Collection","description":"This collection contains data for System III (1965.0) trajectory and Sun and \n Earth phase angles of Galileo and selected Jovian moons when Galileo was \n inside 30 Jupiter radii from Jupiter. Trajectories are sampled every 20 \n seconds.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/data-moon-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/data-moon-traj/collection_data-moon-traj_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:15.617121","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup:data-rotor-attitude::1.0","title":"Galileo Jupiter Trajectory Rotor Attitude Data Collection","description":"This collection contains the attitude data for the rotor of the Galileo \n spacecraft. The data provided are derived from the Attitude and \n Articulation Control System (AACS) data downlink as provided by the \n Galileo project to the magnetometer team. This collection covers \n portions of the Jupiter Approach (JA) and all orbit operation mission \n phases (J0-J35).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-11-28","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/data-rotor-attitude/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/data-rotor-attitude/collection_data-rotor-attitude_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:16.661603","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup:data-sc-traj-jup-coords::1.0","title":"Galileo Trajectory Jupiter Centered Coordinates Data Collection","description":"This collection contains Galileo trajectory data in various\n Jupiter centered coordinate systems (System III 1965.0, Jupiter Solar\n Equatorial, Jupiter Solar Magnetospheric) for all orbit operation mission \n phases.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/data-sc-traj-jup-coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/data-sc-traj-jup-coords/collection_data-sc-traj-jup-coords_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:17.631048","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup:data-sc-traj-moon-coords::1.0","title":"Galileo Jupiter Trajectory Moon Centered Coordinates Data Collection","description":"This collection contains Galileo trajectory data in moon (Amalthea, Io, \n Europa, Ganymede, Callisto) centered coordinates for all of the near \n satellite encounters. Ephemeris data are provided every two seconds for \n approximately one hour about closest approach.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/data-sc-traj-moon-coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/data-sc-traj-moon-coords/collection_data-sc-traj-moon-coords_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:18.679270","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup:document::1.0","title":"Galileo Jupiter Trajectory Document Collection","description":"This collection contains the documents associated with the \n Galileo Jupiter Trajectory Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Amalthea","Callisto","Europa","Ganymede"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:19.610436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup::1.0","title":"Galileo Trajectory Pre-Jupiter Bundle","description":"This bundle contains the Galileo spacecraft trajectory data during the \n Pre-Jupiter flyby's. The data have been derived from SPICE kernels at a 1 \n minute sample rate.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Earth","Venus","Solar Wind","951 Gaspra","243 Ida"],"instruments":[],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/bundle-galileo-traj-prejup.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:21.153124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:data-cruise::1.0","title":"Galileo Trajectory Pre-Jupiter Cruise RTN Data Collection","description":"This collection contains \n the Galileo spacecraft trajectory data during the interplanetary cruise. \n The data have been derived from SPICE kernels at a 1 minute sample rate. \n The data are provided in RTN coordinates. The SPICE SPK files used to \n derive these products are: GLL_LONG_2.BSP; GLL910314.BSP; GLL911107.BSP; \n GLL921228.BSP.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Solar Wind","243 Ida","951 Gaspra"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-cruise/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-cruise/collection_data-cruise_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:22.108722","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:data-e1-gse-gsm-coords::1.0","title":"Galileo Trajectory Pre-Jupiter Earth1 GSE and GSM Coordinates Data Collection","description":"This collection contains \n the Galileo spacecraft trajectory data during the \n Earth 1 flyby. The data have been derived from SPICE kernels at a \n 1 minute sample rate. The data are provided in both Geocentric\n Solar Ecliptic (GSE) and Geocentric Solar Magnetic (GSM)\n coordinates and are given in units of earth radii where 1 Re \n = 6378 km. The SPK file used to derived this collection was: \n GL_LONG2.BSP","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-11-05","stop_date":"1990-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-e1-gse-gsm-coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-e1-gse-gsm-coords/collection_data-e1-gse-gsm-coords_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:23.113871","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:data-e2-gse-gsm-coords::1.0","title":"Galileo Trajectory Pre-Jupiter Earth2 GSE and GSM Coordinates Data Collection","description":"This collection contains \n the Galileo spacecraft trajectory\n during the Earth 2 flyby. The data have been derived from\n SPICE kernels at a 1 minute sample rate. The data are\n provided in both Geocentric Solar Ecliptic (GSE) and\n Geocentric Solar Magnetic (GSM) coordinates and are given in\n units of earth radii where 1 Re = 6378 km. \n The SPK file used to dervied this collection was: \n GLL920818.SPK.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-11-05","stop_date":"1990-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-e2-gse-gsm-coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-e2-gse-gsm-coords/collection_data-e2-gse-gsm-coords_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:24.116695","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:data-earth1::1.0","title":"Galileo Trajectory Pre-Jupiter Earth1 Flyby Data Collection","description":"This collection contains \n Galileo Orbiter 60 second sampled trajectory data\n from the Earth-1 flyby in GSE and GSM coordinates.\n These data cover the interval 1990-11-05 to\n 1991-01-01. The trajectory has been derived from the Galileo SPK kernel:\n S970311A.BSP. This kernel was obtained by the PDS-PPI node from the PDS-NAIF\n node.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-11-05","stop_date":"1991-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-earth1/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-earth1/collection_data-earth1_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:25.103600","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:data-earth2::1.0","title":"Galileo Trajectory Pre-Jupiter Earth2 Flyby Data Collection","description":"This collection contains Galileo Orbiter 60 second trajectory from the Earth 2 flyby in \n GSE and GSM coordinates. Trajectory values are generated instantaneously at the sample time \n from SPICE kernels. Units are Earth radii (Re = 6378 km). This collection covers 1992-11-03T00:00:00.000 \n to 1992-12-20T00:00:00.000. The trajectory has been derived from the Galileo SPK kernel: \n S970311A.BSP. This kernel was obtained by the PDS-PPI node from the PDS-NAIF node.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1992-11-03","stop_date":"1992-12-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-earth2/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-earth2/collection_data-earth2_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:26.110004","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:data-gaspra::1.0","title":"Galileo Trajectory Pre-Jupiter Asteroid Gaspra Flyby Data Collection","description":"This collection contains Galileo \n Orbiter 60 second sampled trajectory data from the\n Gaspra flyby in Gaspra-centric Solar Ecliptic (GaSE) and\n RTN coordinates. These data cover the interval\n 1991-10-29T06:00 to 1991-10-31 00:00.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-gaspra/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-gaspra/collection_data-gaspra_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:27.149464","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:data-ida::1.0","title":"Galileo Trajectory Pre-Jupiter Asteroid Ida Flyby Data Collection","description":"This collection contains \n Galileo Orbiter 60 second sampled trajectory data from the Ida\n flyby in Ida-centric Solar Ecliptic (ISE) and RTN coordinates.\n These data cover the interval 1993-08-28 00:00 to\n 1993-08-28 23:59","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-ida/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-ida/collection_data-ida_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:28.192058","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:data-venus::1.0","title":"Galileo Trajectory Pre-Jupiter VSO coordinates Data Collection","description":"This collection contains Galileo Orbiter 60 second sampled trajectory data from the Venus \n flyby in Venus Solar Orbital (VSO) coordinates. These data cover \n the interval 1990-02-09 00:00 to 1990-02-11 00:00.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1990-02-09","stop_date":"1990-02-11","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-venus/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/data-venus/collection-data-venus_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:29.162849","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup:document::1.0","title":"Galileo Trajectory Pre-Jupiter Document Collection","description":"This collection contains the documents associated with the \n Galileo Trajectory Pre-Jupiter Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Io Torus","Io","Amalthea","Callisto","Europa","Ganymede","951 Gaspra","243 Ida"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:30.212880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-IMS-3-RDR-HERS-HALLEY-V1.0","title":"GIO C IMS 3 RDR HERS HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GIO-C-IMS-3-RDR-HERS-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:30.736811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-IMS-3-RDR-HIS-HALLEY-V1.0","title":"GIO C IMS 3 RDR HIS HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GIO-C-IMS-3-RDR-HIS-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:31.150711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-JPA-4-DDR-HALLEY-MERGE-V1.0","title":"GIO C JPA 4 DDR HALLEY MERGE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GIO-C-JPA-4-DDR-HALLEY-MERGE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:31.653621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-MAG-4-RDR-HALLEY-8SEC-V1.0","title":"GIO C MAG 4 RDR HALLEY 8SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GIO-C-MAG-4-RDR-HALLEY-8SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:32.145777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-MAG-3-RDR-GASPRA-HIGH-RES-V1.0","title":"GO A MAG 3 RDR GASPRA HIGH RES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-MAG-3-RDR-GASPRA-HIGH-RES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:32.668480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-MAG-3-RDR-IDA-HIGH-RES-V1.0","title":"GO A MAG 3 RDR IDA HIGH RES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-MAG-3-RDR-IDA-HIGH-RES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:33.179103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-MAG-4-SUMM-GASPRA-SUMMARY-V1.0","title":"GO A MAG 4 SUMM GASPRA SUMMARY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-MAG-4-SUMM-GASPRA-SUMMARY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:33.630873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-MAG-4-SUMM-IDA-SUMMARY-V1.0","title":"GO A MAG 4 SUMM IDA SUMMARY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-MAG-4-SUMM-IDA-SUMMARY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:34.202401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PLS-4-SUMM-GET-V1.0","title":"GO A PLS 4 SUMM GET V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PLS-4-SUMM-GET-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:34.657657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PLS-4-SUMM-IET-V1.0","title":"GO A PLS 4 SUMM IET V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PLS-4-SUMM-IET-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:35.179445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-POS-6-GASPRA-FLYBY-TRAJ-V1.0","title":"GO A POS 6 GASPRA FLYBY TRAJ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-POS-6-GASPRA-FLYBY-TRAJ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:35.638375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-POS-6-IDA-FLYBY-TRAJ-V1.0","title":"GO A POS 6 IDA FLYBY TRAJ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-POS-6-IDA-FLYBY-TRAJ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:36.137573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PPR-2-EDR-GASPRA-V1.0","title":"GO A PPR 2 EDR GASPRA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PPR-2-EDR-GASPRA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:36.669405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PPR-2-EDR-IDA-V1.0","title":"GO A PPR 2 EDR IDA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PPR-2-EDR-IDA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:37.162653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PPR-3-RDR-GASPRA-V1.0","title":"GO A PPR 3 RDR GASPRA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PPR-3-RDR-GASPRA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:37.671169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PPR-3-RDR-IDA-V1.0","title":"GO A PPR 3 RDR IDA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PPR-3-RDR-IDA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:38.175654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PWS-2-REFDR-GSAFULL-V1.0","title":"GO A PWS 2 REFDR GSAFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PWS-2-REFDR-GSAFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:38.694356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PWS-2-REFDR-ISAFULL-V1.0","title":"GO A PWS 2 REFDR ISAFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PWS-2-REFDR-ISAFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:39.246082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PWS-4-SUMM-GSA60S-V1.0","title":"GO A PWS 4 SUMM GSA60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PWS-4-SUMM-GSA60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:39.748096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A-PWS-4-SUMM-ISA60S-V1.0","title":"GO A PWS 4 SUMM ISA60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-A-PWS-4-SUMM-ISA60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:40.186300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-CAL-PPR-2-EDR-EARTH1-CALIBRATION-V1.0","title":"GO CAL PPR 2 EDR EARTH1 CALIBRATION V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-CAL-PPR-2-EDR-EARTH1-CALIBRATION-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:40.698048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-CAL-PPR-2-EDR-EARTH2-CALIBRATION-V1.0","title":"GO CAL PPR 2 EDR EARTH2 CALIBRATION V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-CAL-PPR-2-EDR-EARTH2-CALIBRATION-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:41.222593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-CAL-PPR-2-EDR-VENUS-CALIBRATION-V1.0","title":"GO CAL PPR 2 EDR VENUS CALIBRATION V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-CAL-PPR-2-EDR-VENUS-CALIBRATION-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:41.766784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-D-GDDS-5-DUST-V4.1","title":"GO D GDDS 5 DUST V4.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-D-GDDS-5-DUST-V4.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:42.273444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-EPD-2-SAMP-EARTH1-PAD-V1.0","title":"GO E EPD 2 SAMP EARTH1 PAD V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-EPD-2-SAMP-EARTH1-PAD-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:42.648475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-EPD-2-SAMP-EARTH2-PAD-V1.0","title":"GO E EPD 2 SAMP EARTH2 PAD V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-EPD-2-SAMP-EARTH2-PAD-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:43.157427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-EPD-4-SUMM-EARTH1-15MIN-V1.0","title":"GO E EPD 4 SUMM EARTH1 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-EPD-4-SUMM-EARTH1-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:43.732423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-EPD-4-SUMM-EARTH2-15MIN-V1.0","title":"GO E EPD 4 SUMM EARTH2 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-EPD-4-SUMM-EARTH2-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:44.163280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-MAG-3-RDR-EARTH1-HIGHRES-V1.0","title":"GO E MAG 3 RDR EARTH1 HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-MAG-3-RDR-EARTH1-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:44.677534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-MAG-3-RDR-EARTH2-HIGHRES-V1.0","title":"GO E MAG 3 RDR EARTH2 HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-MAG-3-RDR-EARTH2-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:45.186059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-MAG-4-SUMM-E1-GSE_GSM-COORDS-V1.0","title":"GO E MAG 4 SUMM E1 GSE GSM COORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-MAG-4-SUMM-E1-GSE_GSM-COORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:45.655969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-MAG-4-SUMM-EARTH1-SUMMARY-V1.0","title":"GO E MAG 4 SUMM EARTH1 SUMMARY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-MAG-4-SUMM-EARTH1-SUMMARY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:46.229790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-MAG-4-SUMM-EARTH2-SUMMARY-V1.0","title":"GO E MAG 4 SUMM EARTH2 SUMMARY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-MAG-4-SUMM-EARTH2-SUMMARY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:46.661376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-PLS-4-SUMM-EARTH1-ET-V1.0","title":"GO E PLS 4 SUMM EARTH1 ET V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-PLS-4-SUMM-EARTH1-ET-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:47.198354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-PLS-4-SUMM-EARTH2-ET-V1.0","title":"GO E PLS 4 SUMM EARTH2 ET V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-PLS-4-SUMM-EARTH2-ET-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:47.668357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-POS-6-EARTH1-FLYBY-TRAJ-V1.0","title":"GO E POS 6 EARTH1 FLYBY TRAJ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-POS-6-EARTH1-FLYBY-TRAJ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:48.197543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-POS-6-EARTH2-FLYBY-TRAJ-V1.0","title":"GO E POS 6 EARTH2 FLYBY TRAJ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-POS-6-EARTH2-FLYBY-TRAJ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:48.689160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-POS-6-SUMM-E1-GSE_GSM-COORDS-V1.0","title":"GO E POS 6 SUMM E1 GSE GSM COORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-POS-6-SUMM-E1-GSE_GSM-COORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:49.179382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-POS-6-SUMM-E2-GSE_GSM-COORDS-V1.0","title":"GO E POS 6 SUMM E2 GSE GSM COORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-POS-6-SUMM-E2-GSE_GSM-COORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:49.720842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-PPR-2-EDR-EARTH1-V1.0","title":"GO E PPR 2 EDR EARTH1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-PPR-2-EDR-EARTH1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:50.208934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-PPR-2-EDR-EARTH2-V1.0","title":"GO E PPR 2 EDR EARTH2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-PPR-2-EDR-EARTH2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:50.753996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-PWS-2-EDR-E1WFRM-V1.0","title":"GO E PWS 2 EDR E1WFRM V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-PWS-2-EDR-E1WFRM-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:51.213784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-PWS-2-EDR-E2WFRM-V1.0","title":"GO E PWS 2 EDR E2WFRM V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-PWS-2-EDR-E2WFRM-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:51.723774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-PWS-4-SUMM-EARTH1-SA-60S-V1.0","title":"GO E PWS 4 SUMM EARTH1 SA 60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-PWS-4-SUMM-EARTH1-SA-60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:52.232369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E-PWS-4-SUMM-EARTH2-SA-60S-V1.0","title":"GO E PWS 4 SUMM EARTH2 SA 60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E-PWS-4-SUMM-EARTH2-SA-60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:52.756363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E_L_CAL-PPR-3-RDR-EARTH1-V1.0","title":"GO E L CAL PPR 3 RDR EARTH1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E_L_CAL-PPR-3-RDR-EARTH1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:53.280985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-E_L_CAL-PPR-3-RDR-EARTH2-V1.0","title":"GO E L CAL PPR 3 RDR EARTH2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-E_L_CAL-PPR-3-RDR-EARTH2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:53.695822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-EPD-2-REDR-HIGHRES-SECTOR-V1.0","title":"GO J EPD 2 REDR HIGHRES SECTOR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-EPD-2-REDR-HIGHRES-SECTOR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:54.225173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-EPD-2-REDR-RTS-SCAN-AVG-V1.0","title":"GO J EPD 2 REDR RTS SCAN AVG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-EPD-2-REDR-RTS-SCAN-AVG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:54.675082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-HIC-2-EDR-RAW-V1.0","title":"GO J HIC 2 EDR RAW V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-HIC-2-EDR-RAW-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:55.239625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-HIC-3-RDR-HIGHRES-COUNTRATE-V1.0","title":"GO J HIC 3 RDR HIGHRES COUNTRATE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-HIC-3-RDR-HIGHRES-COUNTRATE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:55.784918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-HIC-3-RDR-SURVEY-COUNTRATE-V1.0","title":"GO J HIC 3 RDR SURVEY COUNTRATE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-HIC-3-RDR-SURVEY-COUNTRATE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:56.208796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-HIC-5-DDR-ENERGETIC-ION-COMP-V1.0","title":"GO J HIC 5 DDR ENERGETIC ION COMP V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-HIC-5-DDR-ENERGETIC-ION-COMP-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:56.707151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-MAG-2-REDR-RAW-DATA-V1.0","title":"GO J MAG 2 REDR RAW DATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-MAG-2-REDR-RAW-DATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:57.209077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-MAG-3-RDR-HIGHRES-V1.0","title":"GO J MAG 3 RDR HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-MAG-3-RDR-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:57.779625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-MAG-3-RDR-MAGSPHERIC-SURVEY-V1.0","title":"GO J MAG 3 RDR MAGSPHERIC SURVEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-MAG-3-RDR-MAGSPHERIC-SURVEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:58.208796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PLS-2-EDR-RAW-TELEM-PACKETS-V1.0","title":"GO J PLS 2 EDR RAW TELEM PACKETS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PLS-2-EDR-RAW-TELEM-PACKETS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:58.718561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PLS-3-RDR-FULLRES-V1.0","title":"GO J PLS 3 RDR FULLRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PLS-3-RDR-FULLRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:59.240344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PLS-4-SUMM-AVG-COUNTS-V1.0","title":"GO J PLS 4 SUMM AVG COUNTS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PLS-4-SUMM-AVG-COUNTS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:29:59.744869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PLS-4-SUMM-BROWSE-V1.0","title":"GO J PLS 4 SUMM BROWSE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PLS-4-SUMM-BROWSE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:00.241331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PLS-5-RTS-MOMENTS-V1.0","title":"GO J PLS 5 RTS MOMENTS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PLS-5-RTS-MOMENTS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:00.743214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-POS-6-MOON-TRAJ-JUP-COORDS-V1.0","title":"GO J POS 6 MOON TRAJ JUP COORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-POS-6-MOON-TRAJ-JUP-COORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:01.244227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-POS-6-REDR-ROTOR-ATTITUDE-V1.0","title":"GO J POS 6 REDR ROTOR ATTITUDE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-POS-6-REDR-ROTOR-ATTITUDE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:01.810280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-POS-6-SC-TRAJ-JUP-COORDS-V1.0","title":"GO J POS 6 SC TRAJ JUP COORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-POS-6-SC-TRAJ-JUP-COORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:02.292248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-POS-6-SC-TRAJ-MOON-COORDS-V1.0","title":"GO J POS 6 SC TRAJ MOON COORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-POS-6-SC-TRAJ-MOON-COORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:02.781318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PWS-2-EDR-WAVEFORM-10KHZ-V1.0","title":"GO J PWS 2 EDR WAVEFORM 10KHZ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PWS-2-EDR-WAVEFORM-10KHZ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:03.250116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PWS-2-EDR-WAVEFORM-1KHZ-V1.0","title":"GO J PWS 2 EDR WAVEFORM 1KHZ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PWS-2-EDR-WAVEFORM-1KHZ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:03.770760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PWS-2-EDR-WAVEFORM-80KHZ-V1.0","title":"GO J PWS 2 EDR WAVEFORM 80KHZ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PWS-2-EDR-WAVEFORM-80KHZ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:04.295563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PWS-2-REDR-LPW-SA-FULL-V1.0","title":"GO J PWS 2 REDR LPW SA FULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PWS-2-REDR-LPW-SA-FULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:04.717856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PWS-2-REDR-RTS-SA-FULL-V1.0","title":"GO J PWS 2 REDR RTS SA FULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PWS-2-REDR-RTS-SA-FULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:05.239431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PWS-4-SUMM-SA60S-V1.0","title":"GO J PWS 4 SUMM SA60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PWS-4-SUMM-SA60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:05.772156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PWS-5-DDR-PLASMA-DENSITY-FULL-V1.0","title":"GO J PWS 5 DDR PLASMA DENSITY FULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-PWS-5-DDR-PLASMA-DENSITY-FULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:06.390854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-RSS-5-ROCC-V1.0","title":"GO J RSS 5 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-RSS-5-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:06.753324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-SSD-5-DDR-STAR-SENSOR-V1.0","title":"GO J SSD 5 DDR STAR SENSOR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J-SSD-5-DDR-STAR-SENSOR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:07.256153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J_C-PPR-3-RDR-SL9-IMPACT-V1.0","title":"GO J C PPR 3 RDR SL9 IMPACT V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J_C-PPR-3-RDR-SL9-IMPACT-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:07.715083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J_JSA_X_V_E_A_C-UPL-V1.0","title":"GO J JSA X V E A C UPL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-J_JSA_X_V_E_A_C-UPL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:08.282749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-L-PPR-2-EDR-MOON1-V1.0","title":"GO L PPR 2 EDR MOON1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-L-PPR-2-EDR-MOON1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:08.786022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-L-PPR-2-EDR-MOON2-V1.0","title":"GO L PPR 2 EDR MOON2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-L-PPR-2-EDR-MOON2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:09.236206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go-pls-jup-fitted-parameters::1.1","title":"Galileo Orbiter Plasma Science Experiment Jupiter Fitted Parameters Bundle","description":"This bundle consists of all of the fitted parameters (both good and bad) for fitting an \n ion species to the Galileo Plasma Science Experiment (PLS) that were found during a grant \n from NASA's Jupiter Data Analysis Program (NNX09AE03G). The 'good' results were used to \n publish:\n \n Bagenal, F., R. J. Wilson, S. Siler, W. R. Paterson, and W. S. Kurth (2016), \n Survey of Galileo plasma observations in Jupiter's plasma sheet, \n J. Geophys. Res. Planets, 121, 871-894, doi:10.1002/2016JE005009. \n \n Please cite this paper and this PDS bundle if you use this data.\n \n Please note: The data in this bundle have been reviewed by the coauthors of Bagenal, et al. \n 2016 and their method and figures passed the journal's peer review. These data have also \n completed PDS peer review and are certified.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":["Go","Plasma Science Experiment"],"instrument_hosts":[],"data_types":[],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/bundle-go-pls-jup-fitted-parameters-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:10.723277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go-pls-jup-fitted-parameters:data::1.0","title":"Galileo Orbiter Jupiter PLS Fitted Parameters Data Collection","description":"This collection contains all of the fitted parameters (both good and bad) for \n fitting an ion species to the Galileo PLS instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/Data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/Data/Collection_Data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:11.724323","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go-pls-jup-fitted-parameters:document::1.0","title":"Galileo Orbiter Jupiter PLS Fitted Parameters Document Collection","description":"This collection contains the documentation associated with the Galileo Orbiter \n Jupiter PLS Fitted Parameters Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/Document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/Document/Collection_Document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:12.774647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-SS-HIC-5-IONFLUXES-OCT89-FLARE-V1.0","title":"GO SS HIC 5 IONFLUXES OCT89 FLARE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-SS-HIC-5-IONFLUXES-OCT89-FLARE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:13.339937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-SS-MAG-2-EDR-CRUISE-V1.0","title":"GO SS MAG 2 EDR CRUISE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-SS-MAG-2-EDR-CRUISE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:13.730912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-SS-MAG-4-SUMM-CRUISE-IRC-V1.0","title":"GO SS MAG 4 SUMM CRUISE IRC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-SS-MAG-4-SUMM-CRUISE-IRC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:14.291106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-SS-MAG-4-SUMM-CRUISE-RTN-V1.0","title":"GO SS MAG 4 SUMM CRUISE RTN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-SS-MAG-4-SUMM-CRUISE-RTN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:14.780530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-SS-POS-6-SUMM-CRUISE-RTN-V1.0","title":"GO SS POS 6 SUMM CRUISE RTN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-SS-POS-6-SUMM-CRUISE-RTN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:15.304258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-EPD-2-SAMP-PAD-V1.0","title":"GO V EPD 2 SAMP PAD V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-EPD-2-SAMP-PAD-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:15.738995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-EPD-4-SUMM-5.0MIN-V1.0","title":"GO V EPD 4 SUMM 5.0MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-EPD-4-SUMM-5.0MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:16.352730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-MAG-3-RDR-VENUS-HIGH-RES-V1.0","title":"GO V MAG 3 RDR VENUS HIGH RES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-MAG-3-RDR-VENUS-HIGH-RES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:16.770187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-MAG-4-SUMM-VENUS-SUMMARY-V1.0","title":"GO V MAG 4 SUMM VENUS SUMMARY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-MAG-4-SUMM-VENUS-SUMMARY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:17.242015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-PLS-4-SUMM-VET-V1.0","title":"GO V PLS 4 SUMM VET V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-PLS-4-SUMM-VET-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:17.794243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-POS-6-VENUS-TRAJECTORY-V1.0","title":"GO V POS 6 VENUS TRAJECTORY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-POS-6-VENUS-TRAJECTORY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:18.268930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-PPR-2-EDR-VENUS-V1.0","title":"GO V PPR 2 EDR VENUS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-PPR-2-EDR-VENUS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:18.745617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-PPR-3-RDR-VENUS-V1.0","title":"GO V PPR 3 RDR VENUS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-PPR-3-RDR-VENUS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:19.269641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-PWS-2-REFDR-VSAFULL-V1.0","title":"GO V PWS 2 REFDR VSAFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-PWS-2-REFDR-VSAFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:19.754372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V-PWS-4-SUMM-VSA60S-V1.0","title":"GO V PWS 4 SUMM VSA60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-V-PWS-4-SUMM-VSA60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:20.246023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-X-PPR-2-EDR-CHECKOUT-V1.0","title":"GO X PPR 2 EDR CHECKOUT V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-X-PPR-2-EDR-CHECKOUT-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:20.769900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-X-PPR-3-RDR-CHECKOUT-V1.0","title":"GO X PPR 3 RDR CHECKOUT V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/GO-X-PPR-3-RDR-CHECKOUT-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:21.283085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-EPAS-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE C EPAS 3 RDR GIACOBIN ZIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ICE-C-EPAS-3-RDR-GIACOBIN-ZIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:21.764142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-MAG-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE C MAG 3 RDR GIACOBIN ZIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ICE-C-MAG-3-RDR-GIACOBIN-ZIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:22.251772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-PLAWAV-3-RDR-ESP-GIACOBIN-ZIN-V1.0","title":"ICE C PLAWAV 3 RDR ESP GIACOBIN ZIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ICE-C-PLAWAV-3-RDR-ESP-GIACOBIN-ZIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:22.810065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-PLAWAV-3-RDR-MSP-GIACOBIN-ZIN-V1.0","title":"ICE C PLAWAV 3 RDR MSP GIACOBIN ZIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ICE-C-PLAWAV-3-RDR-MSP-GIACOBIN-ZIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:23.295767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-RADWAV-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE C RADWAV 3 RDR GIACOBIN ZIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ICE-C-RADWAV-3-RDR-GIACOBIN-ZIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:23.804243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-SWPLAS-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE C SWPLAS 3 RDR GIACOBIN ZIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ICE-C-SWPLAS-3-RDR-GIACOBIN-ZIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:24.314191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-cruise::1.1","title":"InSight IFG Cruise Bundle","description":"This bundle contains InSight IFG Cruise data and associated products","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight Mars Lander Mission"],"targets":["Solar Wind"],"instruments":["Insight","InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-07-15","stop_date":"2018-08-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/bundle_insight_ifg_cruise_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:25.790433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-cruise:browse::1.0","title":"InSight IFG Magnetometer Cruise Browse Collection","description":"This collection contains InSight IFG Cruise browse products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight Mars Lander Mission"],"targets":["Solar Wind"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Browse"],"start_date":"2018-07-16","stop_date":"2018-08-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:26.837762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-cruise:data-ifg-partially-processed::1.0","title":"InSight IFG Magnetometer Cruise Quick Look Data Collection","description":"This collection contains the InSight IFG Cruise partially processed data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight Mars Lander Mission"],"targets":["Solar Wind"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-07-16","stop_date":"2018-08-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/data-ifg-partially-processed/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/data-ifg-partially-processed/collection_data_ifg_partially_processed_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:27.757187","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-cruise:data-ifg-raw::1.0","title":"InSight IFG Magnetometer Cruise Raw Data Collection","description":"This collection contains raw InSight IFG magnetometer cruise data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight Mars Lander Mission"],"targets":["Solar Wind"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-07-16","stop_date":"2018-08-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/data-ifg-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/data-ifg-raw/collection_data_ifg_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:28.747661","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-cruise:data-sc-engineering::1.0","title":"InSight IFG Magnetometer Cruise Engineering Data Collection","description":"Spacecraft engineering parameters including various currents, voltages, temperatures, etc.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight Mars Lander Mission"],"targets":["Solar Wind"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-07-15","stop_date":"2018-08-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/data-sc-engineering/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/data-sc-engineering/collection_data_sc_engineering_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:29.758364","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-cruise:document::1.1","title":"InSight IFG Cruise Document Collection","description":"This collection contains the documentation associated with the InSight IFG Cruise Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight Mars Lander Mission"],"targets":["Solar Wind"],"instruments":["InSight Fluxgate Magenetometer"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":"2018-07-15","stop_date":"2018-08-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:30.769528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal::1.0","title":"InSight IFG Mars Bundle","description":"The InSight-ifg-mars-newcal bundle replaces all previous versions of the IFG Mars archive. \n \tData from the entire landed mission have been reprocessed using a new (v07) data processing pipeline.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/bundle_insight_ifg_mars_newcal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:32.270856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal:browse::1.0","title":"InSight IFG Magnetometer Mars New Calibration Browse Collection","description":"This collection contains the InSight IFG Mars new calibration browse data plot products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Browse"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/browse/collection_browse.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:33.334620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal:calibration::1.0","title":"InSight IFG Magnetometer Mars Calibration Data Collection","description":"This collection contains the updated InSight IFG Mars calibration data products. \n These data were used in the calibration of the IFG raw data, one file per release.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-12-11","stop_date":"2022-06-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/calibration/collection_calibration.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:34.267577","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal:data-ifg-calibrated-maven-20hz::1.0","title":"InSight IFG Magnetometer Mars Maven Fly-Over 20Hz Calibrated (v07) Data Collection","description":"This collection contains the InSight IFG Mars 20 Hz calibrated (v07) data products acquired during Maven fly-overs.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-04-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/data-ifg-calibrated-maven-20hz/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/data-ifg-calibrated-maven-20hz/collection_data-ifg-calibrated-maven-20hz.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:35.300668","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal:data-ifg-calibrated::1.0","title":"InSight IFG Magnetometer Mars New Calibrated Data Collection","description":"This collection contains the new (v07) InSight IFG Mars calibrated data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-04-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/data-ifg-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/data-ifg-calibrated/collection_data-ifg-calibrated.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:36.353405","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal:data-ifg-partially-processed::1.0","title":"InSight IFG Magnetometer Mars New Partially Processed Data Collection","description":"This collection contains the new (v07) InSight IFG Mars partially processed data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/data-ifg-partially-processed/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/data-ifg-partially-processed/collection_data-ifg-partially-processed.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:37.324941","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal:data-ifg-raw::1.0","title":"InSight IFG Magnetometer Mars New Raw Data Collection","description":"This collection contains the new (V07) InSight IFG Mars raw data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/data-ifg-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/data-ifg-raw/collection_data-ifg-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:38.274447","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal:document::1.0","title":"InSight IFG Mars New Calibration Document Collection","description":"This collection contains the documentation associated with the InSight IFG Mars New Calibration Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":"2018-11-30","stop_date":"2022-04-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/document/collection_document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:39.292790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars::2.8","title":"InSight IFG Mars Bundle","description":"This bundle contains InSight IFG Mars data and associated products","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/bundle_insight_ifg_mars_2.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:40.792261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:browse::4.8","title":"InSight IFG Magnetometer Mars Browse Collection","description":"This collection contains the InSight IFG Mars browse plot products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Browse"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/browse/collection_browse_4.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:41.904712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:calibration::1.10","title":"InSight IFG Magnetometer Mars Calibration Data Collection","description":"This collection contains the InSight IFG Mars calibration data products. \n \t These data were used in the calibration of the IFG raw data, one file per release.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-12-11","stop_date":"2022-06-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/calibration/collection_calibration_1.10.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:42.895902","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:data-ifg-calibrated::4.8","title":"InSight IFG Magnetometer Mars Calibrated Data Collection","description":"This collection contains the InSight IFG Mars calibrated data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-calibrated/collection_data-ifg-calibrated_4.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:43.973468","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:data-ifg-partially-processed::4.8","title":"InSight IFG Magnetometer Mars Partially Processed Data Collection","description":"This collection contains the InSight IFG Mars partially processed data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-partially-processed/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-partially-processed/collection_data-ifg-partially-processed_4.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:45.064849","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:data-ifg-raw::5.8","title":"InSight IFG Magnetometer Mars Raw Data Collection","description":"This collection contains the InSight IFG Mars raw data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-raw/collection_data-ifg-raw_5.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:46.268917","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:data-sc-engineering::1.12","title":"InSight Spacecraft Raw Engineering and Ancillary Data Collection","description":"This collection contains the InSight raw spacecraft engineering and ancillary data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-06-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-sc-engineering/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-sc-engineering/collection_data-sc-engineering_1.12.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:47.190591","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:document::1.14","title":"InSight IFG Mars Document Collection","description":"This collection contains the documentation associated with the InSight IFG Mars Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":"2018-11-30","stop_date":"2022-04-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/document/collection_document_1.14.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:48.171612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-E_J_SS-WAV-2-EDR-V1.0","title":"JNO E J SS WAV 2 EDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-E_J_SS-WAV-2-EDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:48.755146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-E_J_SS-WAV-3-CDR-BSTFULL-V2.0","title":"JNO E J SS WAV 3 CDR BSTFULL V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-E_J_SS-WAV-3-CDR-BSTFULL-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:49.233052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-E_J_SS-WAV-3-CDR-SRVFULL-V2.0","title":"JNO E J SS WAV 3 CDR SRVFULL V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-E_J_SS-WAV-3-CDR-SRVFULL-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:49.754474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J-3-FGM-CAL-V1.0","title":"JNO J 3 FGM CAL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J-3-FGM-CAL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:50.259091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J-ASC-2-IMG-V1.0","title":"JNO J ASC 2 IMG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J-ASC-2-IMG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:50.705202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J-ASC-3-RAD-V1.0","title":"JNO J ASC 3 RAD V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J-ASC-3-RAD-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:51.312302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J-JAD-5-MOMENTS-V1.0","title":"JNO J JAD 5 MOMENTS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J-JAD-5-MOMENTS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:51.719976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J-JED-2-EDR-V1.0","title":"JNO J JED 2 EDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J-JED-2-EDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:52.284633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J-JED-3-CDR-V1.0","title":"JNO J JED 3 CDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J-JED-3-CDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:52.754889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J_SW-JAD-2-UNCALIBRATED-V1.0","title":"JNO J SW JAD 2 UNCALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J_SW-JAD-2-UNCALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:53.261821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J_SW-JAD-3-CALIBRATED-V1.0","title":"JNO J SW JAD 3 CALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J_SW-JAD-3-CALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:53.772930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J_SW-JAD-5-CALIBRATED-V1.0","title":"JNO J SW JAD 5 CALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-J_SW-JAD-5-CALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:54.250068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-SS-3-FGM-CAL-V1.0","title":"JNO SS 3 FGM CAL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-SS-3-FGM-CAL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:54.764741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-SW-JAD-2-UNCALIBRATED-V1.0","title":"JNO SW JAD 2 UNCALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/JNO-SW-JAD-2-UNCALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:55.359232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-bundle::1.0","title":"Lunar Prospector Mission Bundle","description":"This bundle contains the Lunar Prospector Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Aps","Eng","Er","Grs","Mag","Ns","Rss","Alpha Particle Spectrometer","LP Engineering","Electron Reflectometer","Gamma Ray Spectrometer","Magnetometer","Neutron Spectrometer","Radio Science Subsystem"],"instrument_hosts":["Lunar Prospector","Lp"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/bundle-lp.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:57.772467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-bundle:document-er::1.0","title":"Lunar Prospector ER Document Collection","description":"This collection contains documents associated with the Lunar Prospector \n Electron Reflectometer bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/document-er/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/document-er/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:58.824433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-bundle:document-mag::1.0","title":"Lunar Prospector MAG Document Collection","description":"This collection contains documents associated with the Lunar Prospector Magnetometer bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/document-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/document-mag/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:30:59.717706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-bundle:document-mission::1.0","title":"Lunar Prospector Document Collection","description":"This collection contains documents associated with the Lunar Prospector bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/document-mission/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/document-mission/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:00.720656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated::1.0","title":"Lunar Prospector Electron Reflectometer (ER) Calibrated Bundle","description":"This bundle contains the 3-D, low and high resolution electron reflection data\n provided by the Electron Reflectometer on the Lunar Prospector's Primary and Extended Mission. \n The data cover the time period from 1998-01-16T00:00:24 to 1999-07-29T18:09:33.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Er","Electron Reflectometer"],"instrument_hosts":["Lunar Prospector","Lp"],"data_types":[],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/bundle-lp-er-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:02.213104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated:data-3deleflux-anc::1.0","title":"Lunar Prospector ER 3-D Electron Flux Ancillary Data Collection","description":"This collection contains the table lists times and information \n about data gaps or outages in Lunar Prospector merged telemetry files. \n As well as the spectra data collected over the 16 spin periods providing the \n polar angle of the detector as it steps within each spectrum.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-3deleflux-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-3deleflux-anc/collection_data_3deleflux_anc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:03.224134","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated:data-3deleflux::1.0","title":"Lunar Prospector ER 3-D Electron Flux Data Collection","description":"This collection contains time ordered 3-D spectrum data from the \n Lunar Prospector Electron Reflectometer (3D files) in units of \n particles/cm**2/sec/steradian/eV, for dates 1998-01-16 to 1999-07-29.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-3deleflux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-3deleflux/collection_data_3deleflux_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:04.241193","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated:data-highresflux-anc::1.0","title":"Lunar Prospector ER High Resolution Electron Flux Ancillary Data Collection","description":"This collection contains the high resolution table lists of times \n and information about data gaps or outages in Lunar Prospector merged telemetry files \n and fluxes measured for 2 energy bins.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-highresflux-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-highresflux-anc/collection_data_highresflux_anc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:05.220678","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated:data-highresflux::1.0","title":"Lunar Prospector ER High Resolution Electron Flux Data Collection","description":"Time ordered high resolution data from the \n Lunar Prospector Electron Reflectometer (EH files), accumulated over 1/2 \n spacecraft spin, in units of particles/cm**2/sec/steradian/eV, for dates \n 1998-01-16 to 1999-07-29.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-highresflux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-highresflux/collection_data_highresflux_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:06.237491","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated:data-lowresflux-anc::1.0","title":"Lunar Prospector ER Low Resolution Electron Flux Ancillary Data Collection","description":"This collection contains the omni-directional low resolution table lists of times \n and information about data gaps or outages in Lunar Prospector merged telemetry files \n and fluxes measured for 2 energy bins.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-lowresflux-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-lowresflux-anc/collection_data_lowresflux_anc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:07.278240","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated:data-lowresflux::1.0","title":"Lunar Prospector ER Low Resolution Electron Flux Data Collection","description":"This collection contains the Lunar Prospector omni-directional low resolution\n electron flux data provided as ASCII tables of 1 day duration. Fluxes are provided \n for 15 energy bins (~40ev - 20keV) collected over 16 spacecraft rotations (~80 sec). \n The electron reflectometer section of the instrument samples 4 pi steradians twice \n each spin period.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-lowresflux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/data-lowresflux/collection_data_lowresflux_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:08.259515","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated:document::1.0","title":"Lunar Prospector ER Electron Flux Calibrated Document Collection","description":"This collection contains time ordered 3-D spectrum, high and low resolution data from the \n Lunar Prospector Electron Reflectometer. The data in this collection have been accumulated over 1/2 \n spacecraft spin (highresflux) and averaged over 16 spacecraft spins (lowresflux), all in units of \n particles/cm**2/sec/steradian/eV, for the dates 1998-01-16 to 1999-07-29.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Document"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/document/collection_document_er_calibrated_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:09.305396","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-derived::1.0","title":"Lunar Prospector Electron Reflectometer (ER) Derived Bundle","description":"This bundle contains derived electron reflection data that was acquired from the \n Electron Reflectometer during the Lunar Prospector's Primary and Extended Mission.\n The data covers the time period from 1998-06-08T00:27:41 to 1999-06-27T20:59:06.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Er","Electron Reflectometer"],"instrument_hosts":["Lunar Prospector","Lp"],"data_types":[],"start_date":"1998-06-08","stop_date":"1999-06-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/bundle-lp-er-derived-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:10.730874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-derived:browse::1.0","title":"Lunar Prospector Electron Reflection Browse Collection","description":"This collection contains image files summarizing the high-level \n Lunar Prospector Magnetometer/Electron Reflectometer (MAG/ER) data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-06-08","stop_date":"1999-06-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:11.731536","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-derived:data-electron::1.0","title":"Lunar Prospector ER Electron Reflection Data Collection","description":"This collection contains Lunar Prospector time ordered values of derived quantities \n from electron reflection, including calculated effective electron reflection coefficient from \n dates 1998-06-08 to 1999-06-27.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-06-08","stop_date":"1999-06-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/data-electron/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/data-electron/collection_data_electron_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:12.732042","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-derived:document::1.0","title":"Lunar Prospector Electron Reflection Document Collection","description":"This collection contains Lunar Prospector time ordered values of derived quantities \n from electron reflection, including calculad effective electron reflection coefficient from \n dates 1998-06-08 to 1999-06-27.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Document"],"start_date":"1998-06-08","stop_date":"1999-06-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/document/collection_document_er_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:13.743835","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"LP-L-6-EPHEMERIS-V1.0","title":"LP L 6 EPHEMERIS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-6-EPHEMERIS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:14.347684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-6-POSITION-V1.0","title":"LP L 6 POSITION V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-6-POSITION-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:14.776152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-6-TRAJECTORY-V1.0","title":"LP L 6 TRAJECTORY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-6-TRAJECTORY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:15.335726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ENG-6-ATTITUDE-V1.0","title":"LP L ENG 6 ATTITUDE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-ENG-6-ATTITUDE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:15.759419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ENG-6-COMMAND-V1.0","title":"LP L ENG 6 COMMAND V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-ENG-6-COMMAND-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:16.250786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ENG-6-SUNPULSE-V1.0","title":"LP L ENG 6 SUNPULSE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-ENG-6-SUNPULSE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:16.776566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ENG_GRS_NS_APS_MAG_ER-1-MDR-V1.0","title":"LP L ENG GRS NS APS MAG ER 1 MDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-ENG_GRS_NS_APS_MAG_ER-1-MDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:17.308193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ER-3-RDR-3DELEFLUX-80SEC-V1.1","title":"LP L ER 3 RDR 3DELEFLUX 80SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-ER-3-RDR-3DELEFLUX-80SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:17.811467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ER-3-RDR-HIGHRESFLUX-V1.1","title":"LP L ER 3 RDR HIGHRESFLUX V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-ER-3-RDR-HIGHRESFLUX-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:18.343759","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ER-4-ELECTRON-DATA-V1.0","title":"LP L ER 4 ELECTRON DATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-ER-4-ELECTRON-DATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:18.840203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-ER-4-SUMM-OMNIDIRELEFLUX-V1.1","title":"LP L ER 4 SUMM OMNIDIRELEFLUX V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-ER-4-SUMM-OMNIDIRELEFLUX-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:19.267460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-MAG-4-LUNAR-FIELD-TS-V1.0","title":"LP L MAG 4 LUNAR FIELD TS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-MAG-4-LUNAR-FIELD-TS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:19.792311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-MAG-4-SUMM-LUNARCRDS-5SEC-V1.0","title":"LP L MAG 4 SUMM LUNARCRDS 5SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-MAG-4-SUMM-LUNARCRDS-5SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:20.316478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-MAG-5-LUNAR-FIELD-BINS-V1.0","title":"LP L MAG 5 LUNAR FIELD BINS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-MAG-5-LUNAR-FIELD-BINS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:20.840061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LP-L-MAG-5-SURFACE-FIELD-MAP-V1.0","title":"LP L MAG 5 SURFACE FIELD MAP V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LP-L-MAG-5-SURFACE-FIELD-MAP-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:21.364456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-calibrated::1.0","title":"Lunar Prospector Magnetometer Calibrated Bundle","description":"This bundle contains calibrated magnetometer data that was acquired from the \n Lunar Magnetic Field in Lunar Prospectors' Primary and Extended Missions.\n The data covers the time period from 1998-01-16T00:00:02.5 to 1999-07-29T15:31:42.5.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Mag","Magnetometer"],"instrument_hosts":["Lunar Prospector","Lp"],"data_types":[],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/bundle-lp-mag-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:22.758196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-calibrated:data-lunarcrds::1.0","title":"Lunar Prospector Magnetic Vector Measurements Data Collection","description":"This collection contains Lunar Prospector Magnetometer Calibrated data provided as \n ASCII tables of 1 day duration in Selenocentric Solar Ecliptic (SSE) and \n Selenographic (SEL) coordinates for 1998-01-16 to 1999-07-29.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/data-lunarcrds/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/data-lunarcrds/collection_data_lunarcrds_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:23.752127","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-calibrated:data-lunarfield::1.0","title":"Lunar Prospector Crustal Magnetic Field Data Collection","description":"This collection contains selected and filtered time series data at 5 second \n intervals from the Lunar Prospector (LP) polar orbital mission to the Moon\n (January 1998 to July 1999).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-02-09","stop_date":"1999-07-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/data-lunarfield/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/data-lunarfield/collection_data_lunarfield_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:24.768177","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-calibrated:document::1.0","title":"Lunar Prospector Calibrated MAG Document Collection","description":"This collection contains Lunar Prospector ASCII tables of 1 day duration in \n Selenocentric Solar Ecliptic (SSE) and Selenographic (SEL) coordinates. This collection \n also contains selected and filtered time series data at 5 second intervals.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Document"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/document/collection_document_mag_calibrated_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:25.772576","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-derived::1.0","title":"Lunar Prospector Magnetometer Derived Bundle","description":"This bundle contains derived field map data that was acquired from the Magnetometer \n during the Lunar Prospector's Primary and Extended Mission. The data covers \n the time period from 1998-02-01 to 1999-07-02.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Mag","Magnetometer"],"instrument_hosts":["Lunar Prospector","Lp"],"data_types":[],"start_date":"1998-02-01","stop_date":"1999-07-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/bundle-lp-mag-derived-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:27.267305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-derived:browse-fieldbins::1.0","title":"Lunar Prospector MAG Derived ER Prepared Maps Browse Collection","description":"This collection contains Lunar Prospector Electron Reflectometer derived data of constructed regional \n shaded contour plots of the vector components of the crustal field, the field magnitude, and the mean \n S/C altitude, as well as Large-Scale Vector Field Maps at a Common Altitude of 37 km.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Browse"],"start_date":"1998-02-01","stop_date":"1999-07-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/browse-fieldbins/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/browse-fieldbins/collection_browse_fieldbins_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:28.267268","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-derived:browse-lunarsurface::1.0","title":"Lunar Prospector MAG Derived Browse Data Collection","description":"This collection contains Lunar Prospector Electron Reflectometer derived data of \n constructed regional shaded contour plots of the vector components of the crustal \n field, the field magnitude, and the mean S/C altitude as well as derived Magnetometer\n data of Large-Scale Vector Field Maps at a Common Altitude of 37 km.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Browse"],"start_date":"1998-02-01","stop_date":"1999-07-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/browse-lunarsurface/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/browse-lunarsurface/collection_browse_lunarsurface_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:29.320092","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-derived:data-fieldbins::1.0","title":"Lunar Prospector Regional Field Bins at the Spacecraft Altitude Data Collection","description":"This file contains Lunar Prospector Magnetometer Derived Data \n of Regional Field Maps at the Spacecraft Altitude for \n 1998-02-01 to 1999-07-02.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-02-01","stop_date":"1999-07-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/data-fieldbins/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/data-fieldbins/collection_data_fieldbins_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:30.277194","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-derived:data-lunarsurface::1.0","title":"Lunar Prospector MAG Data Large-Scale Vector Field Maps at a Common Altitude Data Collection","description":"This collection contains Lunar Prospector Magnetometer (MAG) Derived Data. \n Large-Scale Vector Field Maps at a Common Altitude of 37 km. The spatial \n resolution of the grid (0.25 x 0.25 degrees) is much less than the mean S/C altitude.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-02-01","stop_date":"1999-07-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/data-lunarsurface/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/data-lunarsurface/collection_data_lunarsurface_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:31.326578","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-derived:document::1.0","title":"Lunar Prospector MAG Derived Document Collection","description":"This collection contains Lunar Prospector Magnetometer (MAG) Derived Data including \n Regional Field Maps at the spacecraft altitude and Large-Scale Vector Field Maps at \n a Common Altitude of 37 km.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Document"],"start_date":"1998-02-01","stop_date":"1999-07-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/document/collection_document_mag_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:32.284852","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mager-derived::1.0","title":"Lunar Prospector MAG/ER Derived Bundle","description":"This bundle contains derived spacecraft trajectory and moon position data acquired from the Lunar Prospector\n ELectron Reflectometer and Magnetometer during the Primary and Extended Mission. The data covers \n the time period from 1998-01-16T00:00 to 1999-07-29T23:59.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Er","Mag","Electron Reflectometer","Magnetometer"],"instrument_hosts":["Lunar Prospector","Lp"],"data_types":[],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/bundle-lp-mager-derived-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:33.763489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mager-derived:browse::1.0","title":"Lunar Prospector MAG/ER Browse Data Collection","description":"This collection contains plots of data from the Lunar Prospector Magnetometer and Electron Reflectometer. \n Data plotted include electron count rate (at various energies), electron energy spectrum, magnetic field \n (as magnitude and direction angles), polarity, and Sun sensor data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Browse"],"start_date":"1998-01-16","stop_date":"1999-07-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:34.777010","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mager-derived:data-moon-pos::1.0","title":"Lunar Prospector Moon Position Data Collection","description":"This collection contains a table for the position of the Moon relative to the Earth in GSE and GSM coordinates\n from 1998-01-16 to 1999-07-31.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/data-moon-pos/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/data-moon-pos/collection_data_moon_pos_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:35.801287","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mager-derived:data-spacecraft-pos::1.0","title":"Lunar Prospector Trajectory Data Collection","description":"This collection contains table of positions and velocities of the Lunar Prospector \n spacecraft as a function of time, expressed in several \n coordinate systems provided in 1 month ASCII tables.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Data"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/data-spacecraft-pos/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/data-spacecraft-pos/collection_data_spacecraft_pos_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:36.780515","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mager-derived:document::1.0","title":"Lunar Prospector MAG/ER Derived Document Collection","description":"This collection contains the position of the Moon relative to the Earth in \n GSE and GSM coordinates and tables of positions and velocities of the Lunar \n Prospector spacecraft as a function of time, expressed in several \n coordinate systems.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":["Document"],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/document/collection_document_mager_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:37.776438","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater::2.1","title":"LRO CRaTER Data Bundle","description":"This bundle contains calibrated and derived data obtained from the CRaTER instrument\n aboard the Lunar Reconnaissance Orbiter spacecraft.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Crat","CRaTER"],"instrument_hosts":["LRO","Lro"],"data_types":[],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/bundle_lro_crater_v2.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:39.287901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-cal-hk::2.1","title":"LRO CRaTER Lunar Calibrated Energy Data Housekeeping Collection","description":"Calibrated (Level 1) housekeeping data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-hk/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-hk/collection_data_crater_calibrated_housekeeping_v2.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:40.312194","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-cal-pri::2.1","title":"LRO CRaTER Lunar Calibrated Energy Data Primary Science Collection","description":"Calibrated (Level 1) primary science data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-pri/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-pri/collection_data_crater_calibrated_primary_v2.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:41.315489","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-cal-sec::2.1","title":"LRO CRaTER Lunar Calibrated Energy Data Secondary Science Collection","description":"Calibrated (Level 1) secondary science and engineering data from the CRaTER instrument \n aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-sec/collection_data_crater_calibrated_secondary_v2.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:42.336402","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-der-hk::2.1","title":"LRO CRaTER Lunar Derived Energy Housekeeping Data Collection","description":"Derived (Level 2) housekeeping data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter","Lunar Reconnaisance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-hk/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-hk/collection_data_crater_derived_housekeeping_v2.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:43.350002","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-der-pri::2.1","title":"LRO CRaTER Lunar Derived Energy Data Primary Science Data Collection","description":"Derived (Level 2) primary science data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-pri/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-pri/collection_data_crater_derived_primary_v2.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:44.430497","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-der-sec::2.1","title":"LRO CRaTER Lunar Derived Energy Data Secondary Science Data Collection","description":"Derived (Level 2) secondary science and engineering data from the CRaTER instrument \n aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-sec/collection_data_crater_derived_secondary_v2.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:45.422361","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-raw-hk::1.7","title":"LRO CRaTER Lunar Raw Data Housekeeping Collection","description":"Raw (Level 0) housekeeping data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-raw-hk/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-raw-hk/collection_data_crater_raw_housekeeping_v1.7.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:46.415533","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-raw-pri::1.7","title":"LRO CRaTER Lunar Raw Data Primary Science Collection","description":"Raw (Level 0) primary science data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-raw-pri/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-raw-pri/collection_data_crater_raw_primary_v1.7.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:47.454343","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-raw-sec::1.7","title":"LRO CRaTER Lunar Raw Data Secondary Science Collection","description":"Raw (Level 0) secondary science and engineering data from the CRaTER instrument \n aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-raw-sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-raw-sec/collection_data_crater_raw_secondary_v1.7.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:48.485610","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:document::2.1","title":"LRO CRaTER Document Collection","description":"Documentation to assist in understanding and using the LRO CRaTER data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Cosmic Ray Telescope for the Effects of Radiation"],"instrument_hosts":["LRO","Lro"],"data_types":["Document"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/document/collection_document_crater_v2.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:49.527966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:miscellaneous::1.9","title":"LRO CRaTER Miscellaneous Collection","description":"Supplementary and ancillary information to assist in understanding\n and using the LRO CRaTER data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["Cosmic Ray Telescope for the Effects of Radiation"],"instrument_hosts":["LRO","Lro"],"data_types":["Miscellaneous"],"start_date":"2009-06-29","stop_date":"2025-09-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/miscellaneous/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/miscellaneous/collection_miscellaneous_crater_v1.9.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:50.577634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-CRAT-2-EDR-RAWDATA-V1.0","title":"LRO L CRAT 2 EDR RAWDATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LRO-L-CRAT-2-EDR-RAWDATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:51.169314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-CRAT-3-CDR-CALIBRATED-V1.0","title":"LRO L CRAT 3 CDR CALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LRO-L-CRAT-3-CDR-CALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:51.594100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LRO-L-CRAT-3_4-DDR-PROCESSED-V1.0","title":"LRO L CRAT 3 4 DDR PROCESSED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/LRO-L-CRAT-3_4-DDR-PROCESSED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:52.070639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lunar-crust-magnetic.field-map::1.0","title":"Lunar Crustal Magnetic Field Map","description":"This bundle contains a large-scale map of the lunar crustal\n magnetic field at 30 km altitude covering latitudes from 65 degrees south to 65 degrees north. This map has been produced using \n high quality vector magnetometer data from Lunar Prospector and SELENE (Kaguya).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector","Kaguya","Kaguya Mission"],"targets":["Moon"],"instruments":["Mag","Magnetometer for LP","Lunar Magnetometer"],"instrument_hosts":["Lp","Kaguya"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/lunar_crust_magnetic.field_map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lunar_crust_magnetic.field_map/bundle_lunar_crust_magnetic.field_map_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:53.508603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lunar-crust-magnetic.field-map:data::1.0","title":"Lunar Crustal Magnetic Field Map Data Collection","description":"This collection contains a large-scale map of the lunar crustal\n magnetic field at 30 km altitude covering latitudes from 65 degrees south to 65 degrees north. This map has been produced using \n high quality vector magnetometer data from Lunar Prospector and SELENE (Kaguya).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Prospector","Kaguya","Kaguya Mission"],"targets":["Moon"],"instruments":["Magnetometer for LP","Lunar Magnetometer"],"instrument_hosts":["Lp","Kaguya"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/lunar_crust_magnetic.field_map/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lunar_crust_magnetic.field_map/data/collection_data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:54.503118","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"M10-H-MAG-3-RDR-M1-HIGHRES-V1.0","title":"M10 H MAG 3 RDR M1 HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/M10-H-MAG-3-RDR-M1-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:55.087938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"M10-H-MAG-3-RDR-M3-HIGHRES-V1.0","title":"M10 H MAG 3 RDR M3 HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/M10-H-MAG-3-RDR-M3-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:55.542366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"M10-H-MAG-4-SUMM-M1-SUMMARY-V1.0","title":"M10 H MAG 4 SUMM M1 SUMMARY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/M10-H-MAG-4-SUMM-M1-SUMMARY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:56.019288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"M10-H-MAG-4-SUMM-M3-SUMMARY-V1.0","title":"M10 H MAG 4 SUMM M3 SUMMARY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/M10-H-MAG-4-SUMM-M3-SUMMARY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:56.558444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"M10-H-PLS-3-RDR-ELECTRON-COUNTS-V1.0","title":"M10 H PLS 3 RDR ELECTRON COUNTS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/M10-H-PLS-3-RDR-ELECTRON-COUNTS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:57.042075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"M10-H-PLS-5-DDR-ELECTRON-MOMENTS-V1.0","title":"M10 H PLS 5 DDR ELECTRON MOMENTS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/M10-H-PLS-5-DDR-ELECTRON-MOMENTS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:57.525607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"M10-H-POS-6-M1-FLYBY-TRAJ-V1.0","title":"M10 H POS 6 M1 FLYBY TRAJ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/M10-H-POS-6-M1-FLYBY-TRAJ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:58.042138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"M10-H-POS-6-M3-FLYBY-TRAJ-42SEC-V1.0","title":"M10 H POS 6 M3 FLYBY TRAJ 42SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/M10-H-POS-6-M3-FLYBY-TRAJ-42SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:31:58.521097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.anc::2.23","title":"MAVEN Ancillary Bundle","description":"This bundle contains products associated with the PDS MAVEN\n Ancillary data archive.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Maven","Maven","Maven","Maven","Maven","Maven","Maven","Maven","Maven","Imaging Ultraviolet Spectrograph","Neutral Gas and Ion Mass Spectrometer","Extreme Ultraviolet Monitor","Langmuir Probe and Waves Instrument","Magnetometer","Solar Energetic Particle Instrument","Supra-Thermal and Thermal Ion Composition","Solar Wind Electron Analyzer","Solar Wind Ion Analyzer"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2013-11-14","stop_date":"2025-08-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-anc/bundle_maven_anc_2.23.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:00.019735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.anc:document::1.1","title":"MAVEN Ancillary Archive Document Collection","description":"This collection contains documents related to the MAVEN Ancillary Data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Maven","Maven","Maven","Maven","Maven","Maven","Maven","Maven","Maven","Imaging Ultraviolet Spectrograph","Neutral Gas and Ion Mass Spectrometer","Extreme Ultraviolet Monitor","Langmuir Probe and Waves Instrument","Magnetometer","Solar Energetic Particle Instrument","Supra-Thermal and Thermal Ion Composition","Solar Wind Electron Analyzer","Solar Wind Ion Analyzer"],"instrument_hosts":["Maven"],"data_types":["Document"],"start_date":"2013-11-14","stop_date":"2025-08-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-anc/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-anc/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:01.601269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv.calibrated::25.2","title":"MAVEN EUV Calibrated Data Bundle","description":"This bundle contains fully calibrated MAVEN EUV solar irradiances in three instrument \n bandpasses. Provided by the EUV team in CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Maven","Extreme Ultraviolet Monitor"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2014-10-18","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-calibrated/bundle_maven_euv_calibrated_25.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:03.081763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv.derived::2.1","title":"MAVEN EUV Derived Data Bundle","description":"This bundle contains derived MAVEN EUV atmospheric number \n density (in cm-3) and temperature (in K) measured at the \n tangent point of the MAVEN-Sun line and Mars atmosphere. \n Provided by the EUV team in csv files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Maven","Extreme Ultraviolet Monitor"],"instrument_hosts":["Mars Atmosphere and Volatile Evolution (MAVEN)","Maven"],"data_types":[],"start_date":"2014-11-17","stop_date":"2025-08-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-derived/bundle_maven_euv_derived_2.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:05.020416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv.modelled::23.2","title":"MAVEN EUV Modelled Data Bundle","description":"This bundle contains solar irradiance spectra in 1-nm bins from 0-190 nm. The\n spectra are generated based upon the Flare Irradiance Spectra Model - Mars\n (FISM-M) using the EUV calibrated band irrandiance and interpolated\n Earth-based solar indices and measurements as proxies. The data were provided \n by the MAVEN EUV team in CDF format.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Maven","Extreme Ultraviolet Monitor"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2014-10-19","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-modelled/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-modelled/bundle_maven_euv_modelled_23.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:07.021334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv::1.4","title":"MAVEN EUV Bundle","description":"This bundle contains MAVEN EUV Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MAVEN"],"targets":[],"instruments":["Maven","Extreme Ultraviolet Monitor"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv/bundle_maven_euv_1.4.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:09.024020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv:document::1.4","title":"MAVEN EUV Document Collection","description":"This collection contains MAVEN EUV documentation","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Extreme Ultraviolet Monitor"],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv/document/collection_document_1.4.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:10.022685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.insitu.calibrated::39.0","title":"MAVEN Insitu Key Parameters Data Bundle","description":"The insitu.calibrated level 2 science.data bundle contains selected fully \n calibrated (L2) data from the Particles and Fields package and NGIMS, together \n with ephemeris information. These data are in physical units and are \n averaged/sampled at a uniform cadence. In situ instrument data is derived \n directly from Level 2 data. Ephemeris information is derived using SPICE \n libraries and kernels provided by MAVEN/NAV team and Lockheed-Martin.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","MAVEN"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"2014-03-18","stop_date":"2025-05-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/bundle_maven_insitu_key_parameter_39.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:11.537348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.insitu.calibrated:data.kp::39.0","title":"MAVEN Insitu Key Parameters Data Collection","description":"Key Parameters from the in situ instruments on MAVEN: NGIMS, EUV, LPW, MAG, \n SEP, STATIC, SWEA, and SWIA. Instrument data is derived directly from Level 2 \n data. Ephemeris information is derived using SPICE libraries and kernels \n provided by MAVEN/NAV team and Lockheed-Martin.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Solar Wind","Mars"],"instruments":["Extreme Ultraviolet Monitor","Langmuir Probe and Waves Instrument","Magnetometer","Neutral Gas and Ion Mass Spectrometer","Solar Energetic Particle Instrument","Supra-Thermal and Thermal Ion Composition (STATIC)","Solar Wind Electron Analyzer","Solar Wind Ion Analyzer"],"instrument_hosts":["MAVEN"],"data_types":["Data"],"start_date":"2014-03-18","stop_date":"2025-05-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/data/collection_data_l2_insitu_kp_39.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:12.586991","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.insitu.calibrated:document::1.8","title":"MAVEN Insitu Key Parameters Document Collection","description":"This collection contains the documents associated with the MAVEN Insitu Key \n Parameters Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","MAVEN"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"2014-03-18","stop_date":"2025-05-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/document/collection_document_1.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:13.565998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw.calibrated::8.3","title":"MAVEN LPW Calibrated Data Bundle","description":"This bundle contains fully calibrated, science quality data produced by the LPW \n instrument. The data include spacecraft potential, electric field waveforms \n and wave power. The data have been provided by the LPW team in CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Langmuir Probe and Waves Instrument"],"instrument_hosts":["MAVEN","Maven"],"data_types":[],"start_date":"2014-10-11","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-calibrated/bundle_maven_lpw_calibrated_8.3.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:15.139034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw.derived::7.0","title":"MAVEN LPW Derived Data Bundle","description":"This bundle contains data which have been derived from other data products or \n determined by fits to other data. These are science quality data produced by \n the LPW instrument. The data include densities, temperatures, and Poynting \n flux. The data have been provided by the LPW team in CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Langmuir Probe and Waves Instrument"],"instrument_hosts":["MAVEN","Maven"],"data_types":[],"start_date":"2014-10-11","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-derived/bundle_maven_lpw_derived_7.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:17.055499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw.raw::4.6","title":"MAVEN LPW Raw Data Bundle","description":"This bundle raw contains uncompressed, uncalibrated data from the individual\n LPW telemetry packets.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Langmuir Probe and Waves Instrument"],"instrument_hosts":["MAVEN","Maven"],"data_types":[],"start_date":"2014-10-11","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-raw/bundle_maven_lpw_raw_4.6.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:19.047426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw::1.3","title":"MAVEN LPW Bundle","description":"This bundle contains products associates with the PDS MAVEN LPW data archive.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Maven","Langmuir Probe and Waves Instrument"],"instrument_hosts":["Mars Atmosphere and Volatile EvolutioN","Maven"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw/bundle_maven_lpw_1.3.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:21.057076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw:document::1.3","title":"MAVEN LPW Document Collection","description":"This collection contains the documentation associated with the MAVEN LPW bundles.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Langmuir Probe and Waves Instrument"],"instrument_hosts":["Mars Atmosphere and Volatile EvolutioN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw/document/collection_document_1.3.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:22.045434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.mag.calibrated::2.36","title":"MAVEN MAG Calibrated Data Bundle","description":"This bundle contains MAG supplied ASCII files containing a time series of \n magnetic-field vectors in geophysical units (nanotesla, nT) that have been \n corrected for instrumental and spacecraft effects (calibrated). In addition, \n these data have been transformed into physically meaningful coordinate\n systems. MAG data products are generated for all mission phases.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Magnetometer"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2014-09-21","stop_date":"2025-08-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-mag-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-mag-calibrated/bundle_maven_mag_calibrated_2.36.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:23.600369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.mag.calibrated:document::1.1","title":"MAVEN MAG Calibrated Document Collection","description":"This collection contains documents associated with the MAVEN MAG Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["MAG"],"instrument_hosts":["Maven"],"data_types":["Document"],"start_date":"2014-09-21","stop_date":"2025-08-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-mag-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-mag-calibrated/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:25.099625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.calibrated::1.33","title":"MAVEN ROSE Calibrated Data Bundle","description":"This bundle contains the predicted and residual frequency received at Earth, and \n transmitted from Earth.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Radio Science Instrument"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2016-02-19","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-calibrated/bundle_maven_rose_calibrated_1.33.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:26.557006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.calibrated:document::1.3","title":"MAVEN ROSE Calibrated Document Collection","description":"This collection contains the documents associated with the MAVEN ROSE Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Radio Science Instruments"],"instrument_hosts":["Maven"],"data_types":["Document"],"start_date":"2016-02-19","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-calibrated/document/collection_maven_rose_calibrated_document_1.3.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:28.581627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.derived::1.35","title":"MAVEN ROSE Derived Data Bundle","description":"This bundle contains electron density profiles derived from frequency residuals \n during occultations.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Radio Science Instrument"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2016-07-05","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-derived/bundle_maven_rose_derived_1.35.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:30.083806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.derived:document::1.3","title":"MAVEN ROSE Derived Document Collection","description":"This collection contains the documents associated with the MAVEN ROSE Derived Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Radio Science Instruments"],"instrument_hosts":["Maven"],"data_types":["Document"],"start_date":"2016-07-05","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-derived/document/collection_maven_rose_derived_document_1.3.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:31.576393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.raw::1.34","title":"MAVEN ROSE Raw Data Bundle","description":"This bundle contains raw data concerning the radio signal transmitted from Earth\n and the radio signal received at Earth, calibration collections containing a \n prediction for the frequency of the radio signal received at Earth and information \n on the effects of Earth's ionosphere, troposphere, and weather, and a browse\n collection contains plots that provide an overview of received data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Radio Science Instrument"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2016-02-19","stop_date":"2025-09-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/bundle_maven_rose_raw_1.34.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:33.080225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.raw:document::1.20","title":"MAVEN ROSE Raw Document Collection","description":"This collection contains the documents associated with the MAVEN ROSE Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Radio Science Instruments"],"instrument_hosts":["Maven"],"data_types":["Document"],"start_date":"2016-02-19","stop_date":"2025-09-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/document/collection_maven_rose_raw_document_1.20.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:35.666189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.sep.calibrated::2.23","title":"MAVEN SEP Calibrated Data Bundle","description":"The maven.sep.calibrated Level 2 Science Data Bundle contains fully calibrated \n SEP data, as well as the raw count data from which they are derived, and \n ancillary ephemeris data. The calibrated data are in physical units, and \n include electron and ion spectra in the 4 look directions (2 look directions \n for each sensor/file).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Solar Energetic Particle Instrument"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2014-09-20","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-sep-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-sep-calibrated/bundle_maven_sep_calibrated_2.24.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:37.161525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.sep.calibrated:document::1.2","title":"MAVEN SEP Calibrated Document Collection","description":"This collection contains the documentation associated with the MAVEN SEP Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Solar Energetic Particle Instrument"],"instrument_hosts":["Maven"],"data_types":["Document"],"start_date":"2014-09-20","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-sep-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-sep-calibrated/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:38.588881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.static.c::4.25","title":"MAVEN STATIC Calibrated Data Bundle","description":"This bundle contains fully calibrated data in physical units, \n consisting of Coarse and Fine resolution 3d distributions and energy \n spectra and moments from onboard computations.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Maven","Supra-Thermal and Thermal Ion Composition"],"instrument_hosts":["Maven"],"data_types":[],"start_date":"2014-10-13","stop_date":"2025-08-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-static-c/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-static-c/bundle_maven_static_calibrated_4.25.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:40.093996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.static.c:document::2.2","title":"MAVEN STATIC Calibrated Data Document Collection","description":"This collection contains documentation associated with the MAVEN STATIC Calibrated data bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Supra-Thermal and Thermal Ion Composition"],"instrument_hosts":["Maven"],"data_types":["Document"],"start_date":"2014-10-13","stop_date":"2025-08-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-static-c/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-static-c/document/collection_document_2.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:41.608081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.swea.calibrated::4.7","title":"MAVEN SWEA Calibrated Data Bundle","description":"This bundle contains fully calibrated electron energy/angle (3D) distributions, \n pitch angle distributions, and omni-directional energy spectra. Tables of sensitivity \n and energy/angle maps included in files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Solar Wind","Mars"],"instruments":["Maven","Solar Wind Electron Analyzer"],"instrument_hosts":["MAVEN","Maven"],"data_types":[],"start_date":"2014-03-19","stop_date":"2025-08-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swea-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swea-calibrated/bundle_maven_swea_calibrated_4.7.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:43.104420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.swea.calibrated:document::3.1","title":"MAVEN SWEA Calibrated Document Collection","description":"This collection contains the documents associated with the MAVEN SWEA Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Solar Wind","Mars"],"instruments":["Solar Wind Electron Analyzer"],"instrument_hosts":["MAVEN","Maven"],"data_types":["Document"],"start_date":"2014-03-19","stop_date":"2025-08-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swea-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swea-calibrated/document/collection_document_3.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:44.637770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.swia.calibrated::2.14","title":"MAVEN SWIA Calibrated Data Bundle","description":"This bundle contains fully calibrated MAVEN SWIA data, including ion velocity distributions, \n energy spectra, and density, temperature, and velocity moments from onboard calculations. \n Tables of sensitivity and energy/angle maps are included in files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Solar Wind","Mars"],"instruments":["Maven","Solar Wind Ion Analyzer"],"instrument_hosts":["MAVEN","Maven"],"data_types":[],"start_date":"2014-03-19","stop_date":"2025-08-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swia-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swia-calibrated/bundle_maven_swia_calibrated_2.14.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:46.157253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.swia.calibrated:document::1.1","title":"MAVEN SWIA Calibrated Data Document Collection","description":"This collection contains the documents associated with the MAVEN SWIA Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Maven","Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Solar Wind","Mars"],"instruments":["Solar Wind Ion Analyzer (SWIA)"],"instrument_hosts":["MAVEN","Maven"],"data_types":["Document"],"start_date":"2014-03-19","stop_date":"2025-08-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swia-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swia-calibrated/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:47.644378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-EPPS-2-EPS-RAWDATA-V2.0","title":"MESS E V H SW EPPS 2 EPS RAWDATA V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-EPPS-2-EPS-RAWDATA-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:48.210687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-EPPS-2-FIPS-RAWDATA-V2.0","title":"MESS E V H SW EPPS 2 FIPS RAWDATA V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-EPPS-2-FIPS-RAWDATA-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:48.741348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-EPPS-3-EPS-CDR-V1.0","title":"MESS E V H SW EPPS 3 EPS CDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-EPPS-3-EPS-CDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:49.230402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-EPPS-3-EPS-DDR-V1.0","title":"MESS E V H SW EPPS 3 EPS DDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-EPPS-3-EPS-DDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:49.638322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-EPPS-3-FIPS-CDR-V1.0","title":"MESS E V H SW EPPS 3 FIPS CDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-EPPS-3-FIPS-CDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:50.167651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-EPPS-3-FIPS-DDR-V2.0","title":"MESS E V H SW EPPS 3 FIPS DDR V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-EPPS-3-FIPS-DDR-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:50.627632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-MAG-2-EDR-RAWDATA-V1.0","title":"MESS E V H SW MAG 2 EDR RAWDATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-MAG-2-EDR-RAWDATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:51.315106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-MAG-3-CDR-CALIBRATED-V1.0","title":"MESS E V H SW MAG 3 CDR CALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-MAG-3-CDR-CALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:51.689807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MESS-E_V_H_SW-MAG-4-SUMM-CALIBRATED-V1.0","title":"MESS E V H SW MAG 4 SUMM CALIBRATED V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MESS-E_V_H_SW-MAG-4-SUMM-CALIBRATED-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:52.655637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-calibrated::1.0","title":"MESSENGER EPPS Calibrated EPS Calibrated Data Bundle","description":"This bundle contains the MESSENGER Energetic Particle and \n Plasma Spectrometer (EPPS) calibrated observations, also known \n as CDRs. The system encompasses 2 instrument subsystems - the \n Energetic Particle Spectrometer (EPS) and the Fast Imaging Plasma \n Spectrometer (FIPS). This data set contains only the EPS instrument data. \n EPS covers the energy range of 25 to > 500 keV for electrons, and \n 10 keV/nucleon to ~3 MeV total energy for ions.\n These data were previously released as a PDS data set \n (MESS-E/V/H/SW-EPPS-3-EPS-CDR-V1.0, https://doi.org/10.17189/1519740).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-03","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/bundle-mess-epps-eps-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:53.743164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-calibrated:calibration::1.0","title":"MESSENGER EPPS EPS Calibrated Calibration Collection","description":"This collection contains documents relevant to the calibration of the \n MESSENGER EPPS EPS Calibrated data bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2004-08-03","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:54.738615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-calibrated:document::1.0","title":"MESSENGER EPPS EPS Calibrated Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS \n Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-03","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:56.241903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-derived::1.1","title":"MESSENGER EPPS EPS DDR Bundle","description":"This bundle contains MESSENGER Energetic Particle and \n Plasma Spectrometer (EPPS) advanced data products, also known \n as DDR/DAPs. This bundle contains data from the Energetic \n Particle Spectrometer (EPS) subsystem. EPS covers the energy range \n of 25 to > 500 keV for electrons, and 10 keV/nucleon to ~3 MeV \n total energy for ions. These data were previously released as a PDS data set \n (MESS-E/V/H/SW-EPPS-3-EPS-DDR-V1.0, https://doi.org/10.17189/1519741).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/bundle-mess-epps-eps-derived-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:57.743949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-derived:document::1.1","title":"MESSENGER EPPS EPS DDR Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS \n DDR Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:59.783444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-raw::1.0","title":"MESSENGER EPPS EPS Raw Bundle","description":"This bundle contains the MESSENGER Energetic Particle and\n Plasma Spectrometer (EPPS) EPS uncalibrated observations, also known\n EDR. EPS covers the energy range of 25 to > 500 keV for electrons, and 10 \n keV/nucleon to ~3 MeV/nucleon for ions. These data were previously \n released as a PDS3 data set (MESS-E/V/H/SW-EPPS-2-EPS-RAWDATA-V2.0, \n https://doi.org/10.17189/1519738).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","Mess","EPPS Energetic Particle Spectrometer","Energetic Particle Spectrometer","Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/bundle-mess-epps-eps-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:01.276039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-raw:calibration::1.0","title":"MESSENGER EPPS EPS EDR To CDR Calibration Collection","description":"EPS EDR TO CDR CONVERSION","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2015-12-09","stop_date":"2015-12-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:02.324823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-raw:document::1.1","title":"MESSENGER EPPS EPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS \n Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","Mess","EPPS Energetic Particle Spectrometer","Energetic Particle Spectrometer","Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:03.754709","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-calibrated::1.0","title":"MESSENGER EPPS Calibrated FIPS Data Bundle","description":"This bundle contains MESSENGER Energetic Particle and \n Plasma Spectrometer (EPPS) calibrated observations, also known \n as CDRs. This bundle contains Fast Imaging Plasma Spectrometer (FIPS) \n instrument data. FIPS covers the energy/charge range of less than \n 50 eV/q to 20 keV/q. These data were previously released as a PDS3 data set \n (MESS-E/V/H/SW-EPPS-3-FIPS-CDR-V1.0, https://doi.org/10.17189/1519742).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/bundle-mess-epps-fips-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:05.255632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-calibrated:calibration::1.0","title":"MESSENGER EPPS EPS EDR To CDR Calibration Collection","description":"EPS EDR TO CDR CONVERSION","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Calibration"],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2015-12-09","stop_date":"2015-12-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/calibration/collection_calibration_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:06.314800","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-calibrated:document::1.1","title":"MESSENGER EPPS FIPS CDR Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS FIPS \n CDR Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:07.780720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-raw::1.0","title":"MESSENGER EPPS FIPS Raw Bundle","description":"This bundle contains the the MESSENGER Energetic Particle and \n Plasma Spectrometer (EPPS) Fast Imaging Plasma Spectrometer (FIPS) \n uncalibrated observations, also known as EDRs. FIPS covers the \n energy/charge range of less than 50 eV/q to 20 keV/q. These data were \n previously released as a PDS3 data set \n (MESS-E_V_H_SW-EPPS-2-FIPS-RAWDATA-V2.0, https://doi.org/10.17189/1519739).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","EPPS Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/bundle-mess-epps-fips-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:10.280387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-raw:calibration::1.0","title":"MESSENGER EPPS FIPS Raw Calibration Collection","description":"This collection contains documents related to the calibration of the MESSENGER EPPS FIPS \n Raw Data Collection.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:11.317512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-raw:document::1.0","title":"MESSENGER EPPS FIPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS FIPS \n Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","EPPS Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:12.811346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-raw::1.0","title":"MESSENGER EPPS Engineering Raw Data Bundle","description":"This bundle contains the MESSENGER Energetic Particle and\n Plasma Spectrometer (EPPS) engineering data and the raw data SIS \n document. These data are associated with the MESSENGER EPPS EPS Raw \n Data Bundle, and the MESSENGER EPPS FIPS Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Calibration","Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","EPPS ENERGETIC PARTICLE SPECTROMETER","EPPS FAST IMAGING PLAMSA SPECTROMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/bundle-mess-epps-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:14.385832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-raw:data-long-status::1.0","title":"MESSENGER EPPS Engineering and Long Status Information Data Collection","description":"This collection contains engineering and long status information for the EPPS instrument. \n New FSW5 EDR introduced on 9/6/2007.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Calibration","Mercury"],"instruments":["EPPS ENERGETIC PARTICLE SPECTROMETER","EPPS FAST IMAGING PLAMSA SPECTROMETER"],"instrument_hosts":["MESSENGER"],"data_types":["Data"],"start_date":"2007-09-06","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/data-long-status/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/data-long-status/collection-data-long-status-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:15.281070","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-raw:data-status::1.0","title":"MESSENGER EPPS Engineering and Status Information Data Collection","description":"This collection contains EPPS engineering and status information. \n New FSW6 introduced on 8/18/2008.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Calibration","Earth","Venus"],"instruments":["EPPS ENERGETIC PARTICLE SPECTROMETER","EPPS FAST IMAGING PLAMSA SPECTROMETER"],"instrument_hosts":["MESSENGER"],"data_types":["Data"],"start_date":"2004-08-16","stop_date":"2007-08-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/data-status/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/data-status/collection-data-status-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:16.663692","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-raw:document::1.0","title":"MESSENGER EPPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS \n Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Calibration","Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","EPPS ENERGETIC PARTICLE SPECTROMETER","EPPS FAST IMAGING PLAMSA SPECTROMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:17.295700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-calibrated::1.0","title":"MESSENGER MAG Calibrated Data Bundle","description":"This data set consists of the MESSENGER MAG calibrated\n observations. The MAG experiment is a miniature three-axis ring-core\n fluxgate magnetometer with low-noise electronics. There are five MAG data\n products, which mainly differ in the coordinate system. For each type the\n data are provided at full resolution, and one or more averaging intervals.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-12","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/bundle-mess-mag-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:18.788769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-calibrated:document::1.0","title":"MESSENGER MAG Calibrated Document Collection","description":"This collection contains documents relevant to the MESSENGER MAG \n Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-12","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:20.297354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-crustal-field-map::1.0","title":"MESSENGER MAG Crustal Field Map","description":"This bundle contains crustal magnetic field maps and equivalent source\n dipole arrays for Mercury based on the MESSENGER magnetic field data.\n \n This work was funded by a 2016 NASA ROSES DDAP proposal. Grant number NNH16ZDA001N-DDAP.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["Mess"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/bundle_mess_mag_crustal_field_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:21.804089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-crustal-field-map:browse::1.0","title":"MESSENGER Magnetic Crustal Field Map Browse Collection","description":"This collection consists of two PDF images of the 40 km altitude map, superposed \n onto a map of Mercury's topography derived from MESSENGER Laser Altimeter data \n (furnished by Greg Neumann).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/browse/collection-browse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:22.842644","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-crustal-field-map:data::1.0","title":"MESSENGER Magnetic Crustal Field Map Data Collection","description":"This collection consists of ASCII files containing derived magnetic field maps and equivalent source dipole arrays \n for the crustal magnetic field of Mercury. Zero values (mainly found along the map edges) indicate no useful\n data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/data/collection-data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:23.819647","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-crustal-field-map:document::1.0","title":"MESSENGER Magnetic Crustal Field Maps Document Collection","description":"This collection contains the documentation associated with the MESSENGER Magnetic Crustal \n Field Map bundle.\n \n The documents included in this collection are open source and publically available except for Further Mapping of Mercury's Crustal Magnetic\n Field Using MESSENGER Magnetometer Data (data-description.txt). That document was originally published in \n Mercury: Current and Future Science of the Innermost Planet, Proceedings of the conference held 1-3 May, 2018 in Columbia, Maryland. \n LPI Contribution No. 2047, 2018, id.6079. The author retains the Copyright \n and it is included in this archive with the author's permission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:24.868392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals::1.0","title":"MESSENGER Magnetometer KT17 Model Residuals Data Bundle","description":"This bundle contains MESSENGER Magnetometer KT17 Model Residual data and associated products.\n \n The research for and preparation of this bundle was funded by NASA’s Planetary Data Archiving, Restoration, and Tools (PDART) program \n under grant NNX16AJ01G issued to Dr. Haje Korth (Principal Investigator) at the Johns Hopkins Applied Physics Laboratory.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Mess","Magnetometer"],"instrument_hosts":["Mess"],"data_types":[],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/bundle-mess-mag-kt17-model-residuals-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:26.323538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:data-sci-mbf::1.0","title":"MESSENGER Magnetometer KT17 Model Mercury Body Fixed (MBF) Residual Data","description":"This data collection contains the DELTA_B RDR data files in the Mercury Body Fixed (MBF) coordinate system.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mbf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mbf/collection-data-sci-mbf-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:27.313076","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:data-sci-mso::1.0","title":"MESSENGER Magnetometer KT17 Model Mercury Solar Orbital (MSO) Residual Data","description":"This data collection contains the DELTA_B RDR files in the Mercury Solar Orbital (MSO) coordinates system.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mso/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mso/collection-data-sci-mso-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:28.331976","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:document::1.0","title":"MESSENGER Magnetometer KT17 Model Residual Data Document Collection","description":"This data collection contains the documentation that is needed to understand and \n analyze the MESSENGER Magnetometer KT17 Model Residual Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:29.319189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-raw::1.0","title":"MESSENGER MAG Raw Data Bundle","description":"This bundle contains the MESSENGER MAG raw observations, also known \n as EDRs. The MAG experiment is a miniature three-axis ring-core fluxgate \n magnetometer with low-noise electronics. There are eight MAG raw data \n products, including standard data, burst-mode data, and status and \n housekeeping data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/bundle-mess-mag-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:30.854620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-raw:document::1.0","title":"MESSENGER MAG Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER MAG \n Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:32.324602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw::1.0","title":"MESSENGER RSS Raw Data Bundle","description":"This bundle contains raw radio data that can be used to determine the position\n and velocity of the MESSENGER spacecraft during flybys of Venus and Mercury and\n during orbital operations around Mercury. The bundle also contains measurements\n of occultation times and calibrations for the effects of Earth's ionosphere and\n troposphere, meteorological conditions at stations of the NASA Deep Space\n Network, thruster activity, and changes in spacecraft antenna selection. The\n data were used to determine the gravity field and shape of Mercury and to\n improve solar system ephemerides. The bundle is a migration of data from the\n original PDS3 archive with minor improvements and corrections.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus","Earth","Mess","MESSENGER"],"instruments":["Rss","Media","Mess","DSN Instrumentation","DSN Media Calibration Instrumentation","RSS"],"instrument_hosts":["Mess"],"data_types":[],"start_date":"2004-08-03","stop_date":"2015-05-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/bundle_mess_rss_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:33.874686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:calib::1.0","title":"MESSENGER Radio Science Calibration Data Products Collection","description":"This calibration collection contains data products which support the \n MESSENGER Radio Science Subsystem (RSS) raw data archive.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Dsn","Messenger","NASA Deep Space Network Media Calibration","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Earth"],"instruments":["DSN Media Calibration Instrumentation","RSS"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2006-01-10","stop_date":"2015-05-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/calib/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/calib/collection_mess-rs-raw_calib.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:34.916960","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:data-ddor::1.0","title":"MESSENGER Radio Science Delta Differential One-way Ranging (DDOR) Data Products Collection","description":"DDOR files were generated in the TNF (TRK-2-34) format and contain only TNF data type 10 records. The TNF collection in the MESSENGER archive does not contain data type 10 records.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-12-15","stop_date":"2015-04-26","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-ddor/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-ddor/collection_mess-rs-raw_ddor.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:35.877592","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:data-odf::1.0","title":"MESSENGER Radio Science Orbit Data File (ODF) Product Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the MESSENGER mission. \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-06-04","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-odf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-odf/collection_mess-rs-raw_odf.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:36.927702","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:data-rsr::1.0","title":"MESSENGER Radio Science RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the MESSENGER mission. \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2006-10-18","stop_date":"2015-04-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-rsr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-rsr/collection_mess-rs-raw_rsr.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:37.836274","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw:data-tnf::1.0","title":"MESSENGER Radio Science Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the MESSENGER mission. \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-06-04","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-tnf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-tnf/collection_mess-rs-raw_tnf.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:38.843056","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:messenger:document-rs::1.0","title":"MESSENGER Radio Science Document Collection","description":"This collection contains the documents associated with the MESSENGER \n Radio Science (RS) Raw Data Archive (RDA).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus","Earth","Mess","MESSENGER"],"instruments":["RSS"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":"2004-08-03","stop_date":"2015-05-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/document-rs/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/document-rs/collection_messenger_document-rs_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:39.843544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:messenger::1.0","title":"MESSENGER Document Bundle","description":"This bundle contains collections and products that are associated \n with more then one MESSENGER bundle.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","Mess","Mess","Mess","Mess","Mess","Mess","Mess","Mess","Energetic Particle and Plasma Spectrometer - Energetic Particle Spectrometer","Energetic Particle and Plasma Spectrometer - Fast Imaging Plasma Spectrometer","Magnetometer","Radio Science","Gamma Ray Spectrometer","Mercury Atmospheric and Surface Composition Spectrometer","Mercury Dual Imaging System Narrow Angle Camera","Mercury Dual Imaging System Wide Angle Camera","Mercury Laser Altimeter","X-Ray Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/bundle-messenger-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:41.351457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:messenger:document-epps::1.0","title":"MESSENGER EPPS Document Collection","description":"This collection contains documents associated with MESSENGER EPPS","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer - Energetic Particle Spectrometer","Energetic Particle and Plasma Spectrometer - Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-epps/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-epps/collection-document-mess-epps-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:42.356429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:messenger:document-mag::1.0","title":"MESSENGER MAG Document Collection","description":"This collection contains documents associated with MESSENGER MAG","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Magnetometer"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-mag/collection-document-mess-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:43.359275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:messenger:document-rs::1.0","title":"MESSENGER Radio Science Document Collection","description":"This collection contains the documents associated with the MESSENGER \n Radio Science (RS) Raw Data Archive (RDA).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-rs/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-rs/collection_messenger_document-rs_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:44.340903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:messenger:document::1.0","title":"MESSENGER Document Collection","description":"This collection contains documents associated with the MESSENGER bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer - Energetic Particle Spectrometer","Energetic Particle and Plasma Spectrometer - Fast Imaging Plasma Spectrometer","Magnetometer","Radio Science","Gamma Ray Spectrometer","Mercury Atmospheric and Surface Composition Spectrometer","Mercury Dual Imaging System Narrow Angle Camera","Mercury Dual Imaging System Wide Angle Camera","Mercury Laser Altimeter","X-Ray Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document/collection-messenger-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:45.385877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT1-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:45.951923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT2-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:46.399682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT3-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:46.966831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT4-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:47.437241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT5-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT5 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT5-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:47.937827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT6-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT6 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT6-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:48.513761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT7-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT7 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT7-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:48.987215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-ELS-V1.0","title":"MEX M ASPERA3 2 EDR ELS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:49.510514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-EXT1-V1.0","title":"MEX M ASPERA3 2 EDR IMA EXT1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-IMA-EXT1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:49.943089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-EXT2-V1.0","title":"MEX M ASPERA3 2 EDR IMA EXT2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-IMA-EXT2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:50.418859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-EXT3-V1.0","title":"MEX M ASPERA3 2 EDR IMA EXT3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-IMA-EXT3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:50.914543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-EXT4-V1.0","title":"MEX M ASPERA3 2 EDR IMA EXT4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-IMA-EXT4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:51.409428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-EXT5-V1.0","title":"MEX M ASPERA3 2 EDR IMA EXT5 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-IMA-EXT5-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:51.906909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-EXT6-V1.0","title":"MEX M ASPERA3 2 EDR IMA EXT6 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-IMA-EXT6-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:52.444888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-EXT7-V1.0","title":"MEX M ASPERA3 2 EDR IMA EXT7 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-IMA-EXT7-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:52.976440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-IMA-V1.0","title":"MEX M ASPERA3 2 EDR IMA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-IMA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:53.435668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2-EDR-NPI-V1.0","title":"MEX M ASPERA3 2 EDR NPI V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-NPI-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:53.914950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT1-V1.0","title":"MEX M ASPERA3 2 3 EDR RDR NPI EXT1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:54.399743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT2-V1.0","title":"MEX M ASPERA3 2 3 EDR RDR NPI EXT2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:54.888984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT3-V1.0","title":"MEX M ASPERA3 2 3 EDR RDR NPI EXT3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:55.397197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT4-V1.0","title":"MEX M ASPERA3 2 3 EDR RDR NPI EXT4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:55.930795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT5-V1.0","title":"MEX M ASPERA3 2 3 EDR RDR NPI EXT5 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT5-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:56.477199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT6-V1.0","title":"MEX M ASPERA3 2 3 EDR RDR NPI EXT6 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT6-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:57.017711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT7-V1.0","title":"MEX M ASPERA3 2 3 EDR RDR NPI EXT7 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2_3-EDR_RDR-NPI-EXT7-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:57.523710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-2_3-EDR_RDR-NPI-V1.0","title":"MEX M ASPERA3 2 3 EDR RDR NPI V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2_3-EDR_RDR-NPI-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:57.953217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-EXT1-V1.0","title":"MEX M ASPERA3 3 RDR ELS EXT1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-3-RDR-ELS-EXT1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:58.423012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-EXT2-V1.0","title":"MEX M ASPERA3 3 RDR ELS EXT2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-3-RDR-ELS-EXT2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:58.947818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-EXT3-V1.0","title":"MEX M ASPERA3 3 RDR ELS EXT3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-3-RDR-ELS-EXT3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:59.473835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-EXT4-V1.0","title":"MEX M ASPERA3 3 RDR ELS EXT4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-3-RDR-ELS-EXT4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:59.997211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-EXT5-V1.0","title":"MEX M ASPERA3 3 RDR ELS EXT5 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-3-RDR-ELS-EXT5-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:00.520321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-EXT6-V1.0","title":"MEX M ASPERA3 3 RDR ELS EXT6 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-3-RDR-ELS-EXT6-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:01.044353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-EXT7-V1.0","title":"MEX M ASPERA3 3 RDR ELS EXT7 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-3-RDR-ELS-EXT7-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:01.567426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-3-RDR-ELS-V1.0","title":"MEX M ASPERA3 3 RDR ELS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-3-RDR-ELS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:01.990349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-4-DDR-IMA-EXT1-V1","title":"MEX M ASPERA3 4 DDR IMA EXT1 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-4-DDR-IMA-EXT1-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:02.429898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-4-DDR-IMA-EXT2-V1","title":"MEX M ASPERA3 4 DDR IMA EXT2 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-4-DDR-IMA-EXT2-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:02.939956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-4-DDR-IMA-EXT3-V1","title":"MEX M ASPERA3 4 DDR IMA EXT3 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-4-DDR-IMA-EXT3-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:03.434720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-4-DDR-IMA-EXT4-V1","title":"MEX M ASPERA3 4 DDR IMA EXT4 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-4-DDR-IMA-EXT4-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:03.951925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-4-DDR-IMA-EXT5-V1","title":"MEX M ASPERA3 4 DDR IMA EXT5 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-4-DDR-IMA-EXT5-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:04.478067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-4-DDR-IMA-EXT6-V1","title":"MEX M ASPERA3 4 DDR IMA EXT6 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-4-DDR-IMA-EXT6-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:04.943963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-4-DDR-IMA-EXT7-V1","title":"MEX M ASPERA3 4 DDR IMA EXT7 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-4-DDR-IMA-EXT7-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:05.470180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-4-DDR-IMA-EXT8-V1","title":"MEX M ASPERA3 4 DDR IMA EXT8 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-4-DDR-IMA-EXT8-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:05.959991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT1-V1","title":"MEX M ASPERA3 5 DDR IMA EXT1 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-5-DDR-IMA-EXT1-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:06.421741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT2-V1","title":"MEX M ASPERA3 5 DDR IMA EXT2 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-5-DDR-IMA-EXT2-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:06.922706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT3-V1","title":"MEX M ASPERA3 5 DDR IMA EXT3 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-5-DDR-IMA-EXT3-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:07.488145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT4-V1","title":"MEX M ASPERA3 5 DDR IMA EXT4 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-5-DDR-IMA-EXT4-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:07.992549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT5-V1","title":"MEX M ASPERA3 5 DDR IMA EXT5 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-5-DDR-IMA-EXT5-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:08.519164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT6-V1","title":"MEX M ASPERA3 5 DDR IMA EXT6 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-5-DDR-IMA-EXT6-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:09.088199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT7-V1","title":"MEX M ASPERA3 5 DDR IMA EXT7 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-5-DDR-IMA-EXT7-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:09.500556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-ASPERA3-5-DDR-IMA-EXT8-V1","title":"MEX M ASPERA3 5 DDR IMA EXT8 V1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-5-DDR-IMA-EXT8-V1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:10.007902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-EXT1-V2.0","title":"MEX M MARSIS 2 EDR EXT1 V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-2-EDR-EXT1-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:10.480903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-EXT2-V1.0","title":"MEX M MARSIS 2 EDR EXT2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-2-EDR-EXT2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:11.006890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-EXT3-V1.0","title":"MEX M MARSIS 2 EDR EXT3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-2-EDR-EXT3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:11.439525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-EXT4-V1.0","title":"MEX M MARSIS 2 EDR EXT4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-2-EDR-EXT4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:11.943915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-EXT5-V1.0","title":"MEX M MARSIS 2 EDR EXT5 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-2-EDR-EXT5-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:12.450612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-EXT6-V1.0","title":"MEX M MARSIS 2 EDR EXT6 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-2-EDR-EXT6-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:12.995933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-EXT7-V1.0","title":"MEX M MARSIS 2 EDR EXT7 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-2-EDR-EXT7-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:13.466515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-2-EDR-V2.0","title":"MEX M MARSIS 2 EDR V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-2-EDR-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:13.977409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-EXT1-V1.0","title":"MEX M MARSIS 3 RDR AIS EXT1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-AIS-EXT1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:14.469922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-EXT2-V1.0","title":"MEX M MARSIS 3 RDR AIS EXT2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-AIS-EXT2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:14.968247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-EXT3-V1.0","title":"MEX M MARSIS 3 RDR AIS EXT3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-AIS-EXT3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:15.493579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-EXT4-V1.0","title":"MEX M MARSIS 3 RDR AIS EXT4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-AIS-EXT4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:16.031114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-EXT5-V1.0","title":"MEX M MARSIS 3 RDR AIS EXT5 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-AIS-EXT5-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:16.454219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-EXT6-V1.0","title":"MEX M MARSIS 3 RDR AIS EXT6 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-AIS-EXT6-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:17.151952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-EXT8-V1.0","title":"MEX M MARSIS 3 RDR AIS EXT8 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-AIS-EXT8-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:17.514665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-AIS-V1.0","title":"MEX M MARSIS 3 RDR AIS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-AIS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:17.931386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-EXT1-V1.0","title":"MEX M MARSIS 3 RDR SS EXT1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-SS-EXT1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:18.475780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-EXT2-V1.0","title":"MEX M MARSIS 3 RDR SS EXT2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-SS-EXT2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:19.003668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-EXT3-V1.0","title":"MEX M MARSIS 3 RDR SS EXT3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-SS-EXT3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:19.474075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-EXT4-V1.0","title":"MEX M MARSIS 3 RDR SS EXT4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-SS-EXT4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:20.069933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-EXT5-V1.0","title":"MEX M MARSIS 3 RDR SS EXT5 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-SS-EXT5-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:20.461657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-EXT6-V1.0","title":"MEX M MARSIS 3 RDR SS EXT6 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-SS-EXT6-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:20.967188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-EXT7-V1.0","title":"MEX M MARSIS 3 RDR SS EXT7 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-SS-EXT7-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:21.495427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-3-RDR-SS-V2.0","title":"MEX M MARSIS 3 RDR SS V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-3-RDR-SS-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:22.083618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-5-DDR-ELEDENS-BMAG-EXT4-V1.0","title":"MEX M MARSIS 5 DDR ELEDENS BMAG EXT4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-5-DDR-ELEDENS-BMAG-EXT4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:22.449934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-5-DDR-ELEDENS-BMAG-EXT5-V1.0","title":"MEX M MARSIS 5 DDR ELEDENS BMAG EXT5 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-5-DDR-ELEDENS-BMAG-EXT5-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:22.943776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-5-DDR-ELEDENS_BMAG-V1.0","title":"MEX M MARSIS 5 DDR ELEDENS BMAG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-5-DDR-ELEDENS_BMAG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:23.488049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-5-DDR-SS-TEC-EXT1-V1.0","title":"MEX M MARSIS 5 DDR SS TEC EXT1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-5-DDR-SS-TEC-EXT1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:24.113206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MEX-M-MARSIS-5-DDR-SS-TEC-V1.0","title":"MEX M MARSIS 5 DDR SS TEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-MARSIS-5-DDR-SS-TEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:24.638228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGN-SS-RSS-1-ODR-OPENLOOP-SW-SCINT-V1.0","title":"MGN SS RSS 1 ODR OPENLOOP SW SCINT V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGN-SS-RSS-1-ODR-OPENLOOP-SW-SCINT-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:25.042062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-ER-3-MAP1_OMNIDIR-FLUX-V1.0","title":"MGS M ER 3 MAP1 OMNIDIR FLUX V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-ER-3-MAP1_OMNIDIR-FLUX-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:25.525173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-ER-3-PREMAP_OMNIDIR-FLUX-V1.0","title":"MGS M ER 3 PREMAP OMNIDIR FLUX V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-ER-3-PREMAP_OMNIDIR-FLUX-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:25.970794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-ER-4-MAP1_ANGULAR-FLUX-V1.0","title":"MGS M ER 4 MAP1 ANGULAR FLUX V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-ER-4-MAP1_ANGULAR-FLUX-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:26.454765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-ER-5-FIELD-MAP-V1.0","title":"MGS M ER 5 FIELD MAP V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-ER-5-FIELD-MAP-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:26.980563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MAG-3-MAP1_FULLWORD-RES-MAG-V1.0","title":"MGS M MAG 3 MAP1 FULLWORD RES MAG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-MAG-3-MAP1_FULLWORD-RES-MAG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:27.624572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MAG-3-MAPPING-HIGHRES-V1.0","title":"MGS M MAG 3 MAPPING HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-MAG-3-MAPPING-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:27.940007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MAG-3-PREMAP_FULLWORD-RES-MAG-V1.0","title":"MGS M MAG 3 PREMAP FULLWORD RES MAG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-MAG-3-PREMAP_FULLWORD-RES-MAG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:28.517554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-MAG-3-PREMAPPING-HIGHRES-V1.0","title":"MGS M MAG 3 PREMAPPING HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-MAG-3-PREMAPPING-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:28.971723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-RSS-5-EDS-V1.0","title":"MGS M RSS 5 EDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-RSS-5-EDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:29.486573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-M-RSS-5-SDP-V1.0","title":"MGS M RSS 5 SDP V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-RSS-5-SDP-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:29.976661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager::1.0","title":"Mars Global Surveyor MAG/ER Bundle","description":"This bundle contains Mars Global Surveyor (MGS) Magentometer\n Electron Reflectometer(MAG/ER) calibrated angular and omnidirectional flux, high \n and low time resolution data collected during the Pre-Mapping and Mapping Phases from\n 1997-09-14T00:42:11.743Z to 2006-11-02T23:24:30.793Z. Also included is the derived field map.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Phobos","Mars"],"instruments":["Er","Mag","Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor","Mgs"],"data_types":[],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/bundle_mgs_mager_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:31.533940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:browse-full-calib::1.0","title":"Mars Global Surveyor Modelled and Observed MAG Sensor Differences Browse Collection","description":"This collection contains Mars Global Surveyor (MGS) browse plots for the\n HGA articulation sequences, the June 5th 2000 model fit to the (differenced) \n data for the Magnetometer sensors.\n This data in this collection use the modelled or observed inboard and outfield fields \n in cartesian payload coordinates (bpl) to remove the ambient field.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Browse"],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-calib/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-calib/collection_browse_full_calib.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:32.502986","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:browse-full-map-pc::1.0","title":"MGS MAG Cal Low Resolution Mapping Planetocentric Browse Collection","description":"This collection contains browse images of the Mars Global Surveyor \n Calibrated MAG low time resolution planetocentric data during \n the Mapping phase for 1999-03-08T00:00:00.000Z to 2006-11-02T59:59:59.999Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Browse"],"start_date":"1999-03-08","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-map-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-map-pc/collection_browse_full_map_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:33.441736","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:browse-full-premap-mars-pc::1.0","title":"MGS MAG Cal Low Resolution Mars Browse Collection","description":"This collection contains browse images of the Mars Global Surveyor \n Calibrated MAG/ER low time resolution during the Pre-Mapping phase \n for 1997-09-14T00:00:00.000Z to 1999-03-08T59:59:59.999Z","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Browse"],"start_date":"1997-09-14","stop_date":"1999-03-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-premap-mars-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-premap-mars-pc/collection_browse_full_premap_mars_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:34.475072","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-angular-flux-map::1.0","title":"MGS ER Cal Angular Flux Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, time-ordered \n Electron Reflectometer (ER) channels (116ev, 191ev,314ev and 515eV) angle-resolved \n flux data for 16 look directions during the Mapping mission phase. These data cover \n 1999-04-02T15:13:17.068Z to 2006-11-02T23:24:30.789Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-04-02","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-angular-flux-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-angular-flux-map/collection_data_angular_flux_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:35.447929","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-fieldmap-derived::1.0","title":"MGS MAG/ER Derived Map of Mars Data Collection","description":"This collection contains an ASCII file representing a crustal magnetic field \n map of Mars. This map was constructed from data from the Electron \n Reflectometer (ER) section of the MAG/ER instrument aboard Mars Global \n Surveyor (MGS).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-fieldmap-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-fieldmap-derived/collection_data_er_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:36.464044","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-full-map-pc::1.0","title":"MGS MAG Cal Low Resolution Mapping (Planetocentric) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Planetocentric coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1999-03-08T00:07:32.313Z to 2006-11-02T23:24:30.789Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-08","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-map-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-map-pc/collection_data_full_map_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:37.461383","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-full-map-ss::1.0","title":"MGS MAG Cal Low Resolution Mapping (Sunstate) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Sunstate coordinates. The data are provided at \n the full word instrument downlink resolution which varies by orbit. \n These data cover 1999-03-08T00:07:32.313Z to 2006-11-02T23:24:30.789Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-08","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-map-ss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-map-ss/collection_data_full_map_ss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:38.453565","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-full-premap-mars-pc::1.0","title":"MGS MAG Cal Low Resolution Pre-Mapping Mars (Planetocentric) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Mars Planetocentric coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1997-09-14T00:42:11.743Z to 1999-03-29T00:24:27.161Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"1999-03-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-mars-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-mars-pc/collection_data_full_premap_mars_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:39.474743","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-full-premap-mars-ss::1.0","title":"MGS MAG Cal Low Resolution Pre-Mapping Mars (Sunstate) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Mars Sunstate coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1997-09-14T00:42:11.743Z to 1999-03-29T00:24:27.161Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"1999-03-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-mars-ss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-mars-ss/collection_data_full_premap_mars_ss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:40.464345","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-full-premap-phobos-pc::1.0","title":"MGS MAG Cal Low Resolution Pre-Mapping Phobos (Planetocentric) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Phobos Planetocentric coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1998-05-27T20:50:07.841Z to 1998-09-17T06:56:34.941Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Phobos"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-05-27","stop_date":"1998-09-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-phobos-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-phobos-pc/collection_data_full_premap_phobos_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:41.493307","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-full-premap-phobos-ss::1.0","title":"MGS MAG Cal Low Resolution Pre-Mapping Phobos (Sunstate) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Phobos Sunstate coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1998-05-27T20:50:07.841Z to 1998-09-17T06:56:34.941Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Phobos"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-05-27","stop_date":"1998-09-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-phobos-ss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-phobos-ss/collection_data_full_premap_phobos_ss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:42.543402","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-highres-map::1.0","title":"MGS MAG Calibrated High Time Resolution Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, high time resolution \n magnetometer (MAG) Mapping data. These data contain vector magnetic field values and \n instrument gain ranges for 1999-03-09T00:05:50.304Z to 2006-11-02T23:23:46.707Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-04-02","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-highres-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-highres-map/collection_data_highres_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:43.512242","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-highres-premap::1.0","title":"MGS MAG Calibrated High Time Resolution Pre-Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, high time resolution \n magnetometer (MAG) Pre-Mapping data. These data contain vector magnetic field values and \n instrument gain ranges for 1997-09-14T00:42:11.743Z to 1999-03-08T21:14:23.227Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Phobos","Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"1999-03-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-highres-premap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-highres-premap/collection_data_highres_premap_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:44.560621","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-omni-flux-map::1.0","title":"MGS ER Cal Omnidirectional Flux Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, single time-ordered \n Electron Reflectometer (ER) data. These data represent the omnidirectional electron \n flux in 19 different energy channgels ranging from 10 eV to 20 keV, collection during\n the Mapping mission phase from 1999-03-08T00:05:57.188Z to 2006-11-02T23:24:30.793Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-08","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-omni-flux-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-omni-flux-map/collection_data_omni_flux_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:45.477450","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:data-omni-flux-premap::1.0","title":"MGS ER Cal Omnidirectional Flux Pre-Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, single time-ordered \n Electron Reflectometer (ER) data. These data represent the omnidirectional electron \n flux in 19 different energy channgels ranging from 10 eV to 20 keV, collection during\n the Pre-Mapping mission phase from 1997-09-14T01:01:03.568Z to 1999-03-08T21:15:07.188Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Phobos","Mars"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"1999-03-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-omni-flux-premap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-omni-flux-premap/collection_data_omni_flux_premap_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:46.508003","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:document::1.0","title":"Mars Global Surveyor MAG/ER Document Collection","description":"This collection contains Mars Global Surveyor (MGS) Electron\n Reflectometer (ER) and Magnetometer (MAG) documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars","Phobos"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Document"],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:47.505205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager:geometry::1.0","title":"Mars Global Surveyor MAG/ER Calibrated Orbital Geometry Collection","description":"This file contains orbit summary information for the \n Mars Global Surveyor Low Resolution and Omnidirectional\n Pre-Mapping and Mapping Mission Phases.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars","Phobos"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Geometry"],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/geometry/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/geometry/collection_geometry_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:48.488348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss::1.0","title":"Mars Global Surveyor Derived RSS Bundle","description":"This bundle contains the archival results from radio science\n investigations conducted during the Mars Global Surveyor (MGS) mission.\n Radio measurements were made using the MGS spacecraft and Earth-based\n stations of the NASA Deep Space Network (DSN) these results were derived\n from raw radio tracking data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Rss","Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor","Mgs"],"data_types":[],"start_date":"1997-09-12","stop_date":"2006-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/bundle_mgs_rss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:50.007672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:browse::1.0","title":"Mars Global Surveyor Gravity Anomaly Browse Collection","description":"This collection contains Mars Global Surveyor (MGS) derived\n radio science browse plots for the gravity anomalies in the GGM2,\n MGM0964C18 and MGM1025 gravity field model maps. These data cover\n 1997-09-12T00:00:00Z - 2000-02-29T12:05:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Browse"],"start_date":"1997-09-12","stop_date":"2006-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:51.000640","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-anc::1.0","title":"MGS Derived Radio Science Ancilary Data Collection","description":"This collection contains summary information for each Mars Global\n Surveyor radio occultation data acquisition opportunity for\n 1998-01-24 - 2003-11-06 from the ODR and RSR files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-01-24","stop_date":"2003-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-anc/collection_data_anc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:51.982252","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-eds::1.0","title":"MGS Derived Electron Density Profiles Data Collection","description":"This file contains Mars Global Surveyor (MGS) ionospheric electron\n density profiles (EDS) derived from the Mars radio occulation data.\n These data cover 1998-12-24T03:47:00Z to 2005-06-09T23:52:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-12-24","stop_date":"2005-06-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-eds/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-eds/collection_data_eds_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:53.042328","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-los::1.0","title":"MGS Derived Line of Sight Acceleration Profiles Data Collection","description":"This collection contains the analysis of derived single arc radio tracking data from the\n Mars Global Surveyor (MGS). Doppler residuals from the spherical harmonic model (JGM75A01) \n are spline-fitted and differentiated analytically to obtain accelerations. These data cover \n 1998-03-28T13:56:56.870 to 1998-09-23T02:35:24.679.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-03-28","stop_date":"1998-09-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-los/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-los/collection_data_los_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:54.075518","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-maps::1.0","title":"MGS Derived Digital Map of the Gravity Anomaly Data Collection","description":"This collection contains Mars Global Survery (MGS) Radio Science Digital Map \n files of image representations for gravity anamoly models. These files contain \n gridded representations of gravity anomalies with respect to an evaluation of the \n specified model to certain degrees and orders. The data in this collection cover\n 1997-09-12T00:00:00Z - 2002-05-27T23:59:59Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-12","stop_date":"2002-05-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-maps/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-maps/collection_data_maps_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:55.046273","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-sha::1.0","title":"MGS Derived Spherical Harmonic Model ASCII Data Collection","description":"This collection contains coefficients and related data for a spherical \n harmonic model of the Mars gravity field. Input data are from radio \n tracking of the Mars Global Surveyor spacecraft. Coordinate system is \n IAU 1991, unless specified. The data cover\n 1997-09-12T00:00:00Z to 2004-12-05T14:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-12","stop_date":"2004-12-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sha/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sha/collection_data_sha_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:56.094315","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-shb::1.0","title":"MGS Derived Spherical Harmonics Gravity Binary Data Collection","description":"This collection contains formal error covariance and related data for the \n MGS75(A-E) and MGS85F Spherical Harmonic Model of the Mars gravity field. \n These data were derived from radio tracking of the Mariner 9, Viking 1 Orbiter, \n Viking 2 Orbiter, and Mars Global Surveyor spacecrafts. These data cover\n 1997-09-12 to 2001-08-14.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor","Mariner 9","Viking Orbiter 1","Viking Orbiter 2"],"data_types":["Data"],"start_date":"1997-09-12","stop_date":"2001-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-shb/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-shb/collection_data_shb_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:57.012424","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-sra::1.0","title":"MGS Derived High Gain Antenna Pointing Data Collection","description":"This collection summarizes high-gain antenna (HGA) pointing for Mars Global Surveyor\n (MGS) bistatic radar (BSR) observations. For highly oblique BSR, the results \n may also apply to the accompanying atmospheric occultation. The HGA unit vector \n and offset angles from the desired pointing direction as a function of time.\n These data cover 1999-05-07T00:42:00Z to 2001-03-31T17:12:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-05-07","stop_date":"2001-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sra/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sra/collection_data_sra_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:58.032439","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-srg::1.0","title":"MGS Surface Reflection Geometry Data Collection","description":"This collection summarizes observing surface refelction geometry for Mars Global \n Surveyor (MGS) bistatic radar (BSR) observations. The results apply to both \n atmospheric occultations and surface scattering, typically at one second intervals.\n The spacecraft-surface-Earth geometry is derived from an SPK (NAIF spacecraft and \n planetary ephemeris) file for 1999-03-09T18:26:35Z - 2001-03-31T17:12:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-09","stop_date":"2001-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-srg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-srg/collection_data_srg_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:59.011573","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-sri::1.0","title":"MGS Derived Surface Reflection Image Data Collection","description":"This collection contains a 2-D array in image format showing power vs frequency \n and time near a Mars Global Surveyor radio occultation. A nominal image \n is made from 300 512-point power spectra where the spacing between spectra \n is 0.2048 s and the frequency spanned is 2500 Hz (4.88 Hz resolution). \n Images show the spacecraft carrier emerging from occultation (egress) or \n disappearing as the spacecraft goes behind the limb (ingress). Near the \n occultation time there may be a weak surface echo racing away from the \n carrier to lower frequencies (egress) or coming in from higher frequencies \n to merge with the carrier at occultation (ingress). These data cover\n 1999-03-09T18:26:35Z - 2001-03-31T17:12:00Z","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-09","stop_date":"2001-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sri/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sri/collection_data_sri_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:00.009816","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:data-srt::1.0","title":"MGS Surface Reflection Tabular Data Collection","description":"This collections contains measurements of surface echoes obtained in \n the course of Mars Global Surveyor (MGS) radio occultation observations\n for 1999-03-09T18:26:35Z - 2001-03-31T17:12:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-09","stop_date":"2001-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-srt/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-srt/collection_data_srt_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:01.056106","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss:document::1.0","title":"Mars Global Surveyor Derived RSS Document Collection","description":"This collection contains Mars Global Surveyor (MGS) Derived \n Radio Science Subsystem documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Document"],"start_date":"1997-09-12","stop_date":"2006-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:02.010280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MGS-SUN-RSS-1-ROCC-V1.0","title":"MGS SUN RSS 1 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-SUN-RSS-1-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:02.566266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MR9-M-RSS-5-ELEDENPROFILES-V1.0","title":"MR9 M RSS 5 ELEDENPROFILES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MR9-M-RSS-5-ELEDENPROFILES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:03.066041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9-rss-derived::1.0","title":"Mariner 9 Radio Occultation Experiment Derived RSS Data Bundle","description":"This bundle contains Mariner 9 Radio Occultation Experiment (ROE) \n Derived Radio Science Ionospheric Electron Density Profiles data\n from the Mars orbits 001-079 and 352-450.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Mr9","Radio Science Subsystem (RSS)"],"instrument_hosts":["Mariner 9","Mr9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/bundle_mr9_rss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:04.566132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9-rss-derived:data-anc::1.0","title":"MR9 Derived ROE Electron Density Profiles Ancillary Data Collection","description":"This collection contains summary information for the electron \n density profiles for each Mariner-9 (MR9) ingress occulation \n from the Mars orbits 001-079 and 352-450.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mariner 9"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/data-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/data-anc/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:05.532108","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9-rss-derived:data-eds::1.0","title":"MR9 Derived ROE Electron Density Profiles Data Collection","description":"This collection contains derived Mariner-9 radio occulation experiment (ROE) \n electron density profiles as a function of radial distance and altitude \n from the Mars orbits 001-079 and 352-450.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mariner 9"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/data-eds/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/data-eds/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:06.581391","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mr9-rss-derived:document::1.0","title":"Mariner 9 Radio Occultation Experiment (ROE) Document Collection","description":"This collection contains the documents associated with the Mariner 9 \n radio occultation ionospheric electron density profiles derived data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mariner 9"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:07.526018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-RAD-2-EDR-V1.0","title":"MSL M RAD 2 EDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MSL-M-RAD-2-EDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:08.152841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSL-M-RAD-3-RDR-V1.0","title":"MSL M RAD 3 RDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MSL-M-RAD-3-RDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:08.527213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-2-EDR-CRUISE1-V1.0","title":"NEAR A MAG 2 EDR CRUISE1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-CRUISE1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:09.105097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-2-EDR-CRUISE2-V1.0","title":"NEAR A MAG 2 EDR CRUISE2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-CRUISE2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:09.571300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-2-EDR-CRUISE3-V1.0","title":"NEAR A MAG 2 EDR CRUISE3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-CRUISE3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:10.049548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-2-EDR-CRUISE4-V1.0","title":"NEAR A MAG 2 EDR CRUISE4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-CRUISE4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:10.530327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-2-EDR-EARTH-V1.0","title":"NEAR A MAG 2 EDR EARTH V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-EARTH-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:11.067140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-2-EDR-EROS_FLY_BY-V1.0","title":"NEAR A MAG 2 EDR EROS FLY BY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-EROS_FLY_BY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:11.554072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-2-EDR-EROS_ORBIT-V1.0","title":"NEAR A MAG 2 EDR EROS ORBIT V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-EROS_ORBIT-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:12.064925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-2-EDR-EROS_SURFACE-V1.0","title":"NEAR A MAG 2 EDR EROS SURFACE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-EROS_SURFACE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:12.556580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-3-RDR-CRUISE2-V1.0","title":"NEAR A MAG 3 RDR CRUISE2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-3-RDR-CRUISE2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:13.074412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-3-RDR-CRUISE3-V1.0","title":"NEAR A MAG 3 RDR CRUISE3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-3-RDR-CRUISE3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:13.544402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-3-RDR-CRUISE4-V1.0","title":"NEAR A MAG 3 RDR CRUISE4 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-3-RDR-CRUISE4-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:14.075221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-3-RDR-EARTH-V1.0","title":"NEAR A MAG 3 RDR EARTH V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-3-RDR-EARTH-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:14.581065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-3-RDR-EROS_FLY_BY-V1.0","title":"NEAR A MAG 3 RDR EROS FLY BY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-3-RDR-EROS_FLY_BY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:15.110338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NEAR-A-MAG-3-RDR-EROS_ORBIT-V1.0","title":"NEAR A MAG 3 RDR EROS ORBIT V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-3-RDR-EROS_ORBIT-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:15.591007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-PEPSSI-2-JUPITER-V1.1","title":"NH J PEPSSI 2 JUPITER V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-J-PEPSSI-2-JUPITER-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:16.208701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-PEPSSI-3-JUPITER-V1.1","title":"NH J PEPSSI 3 JUPITER V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-J-PEPSSI-3-JUPITER-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:16.704563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-2-JUPITER-V4.0","title":"NH J SWAP 2 JUPITER V4.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-J-SWAP-2-JUPITER-V4.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:17.102928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-3-JUPITER-V4.0","title":"NH J SWAP 3 JUPITER V4.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-J-SWAP-3-JUPITER-V4.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:17.591147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-2-PLUTO-V3.0","title":"NH P PEPSSI 2 PLUTO V3.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-P-PEPSSI-2-PLUTO-V3.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:18.134981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-3-PLUTO-V3.0","title":"NH P PEPSSI 3 PLUTO V3.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-P-PEPSSI-3-PLUTO-V3.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:18.641160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-4-PLASMA-V1.0","title":"NH P PEPSSI 4 PLASMA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-P-PEPSSI-4-PLASMA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:19.162925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-2-PLUTO-V3.0","title":"NH P SWAP 2 PLUTO V3.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-P-SWAP-2-PLUTO-V3.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:19.559576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-3-PLUTO-V3.0","title":"NH P SWAP 3 PLUTO V3.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-P-SWAP-3-PLUTO-V3.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:20.095905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-5-DERIVED-SOLARWIND-V1.0","title":"NH P SWAP 5 DERIVED SOLARWIND V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Wind","New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-P-SWAP-5-DERIVED-SOLARWIND-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:20.579924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-2-LAUNCH-V1.1","title":"NH X PEPSSI 2 LAUNCH V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-PEPSSI-2-LAUNCH-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:21.135611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-2-PLUTOCRUISE-V2.0","title":"NH X PEPSSI 2 PLUTOCRUISE V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-PEPSSI-2-PLUTOCRUISE-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:21.574704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-3-LAUNCH-V1.1","title":"NH X PEPSSI 3 LAUNCH V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-PEPSSI-3-LAUNCH-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:22.180693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-3-PLUTOCRUISE-V2.0","title":"NH X PEPSSI 3 PLUTOCRUISE V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-PEPSSI-3-PLUTOCRUISE-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:22.574660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-LAUNCH-V2.0","title":"NH X SWAP 2 LAUNCH V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-SWAP-2-LAUNCH-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:23.156937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-PLUTOCRUISE-V3.0","title":"NH X SWAP 2 PLUTOCRUISE V3.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-SWAP-2-PLUTOCRUISE-V3.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:23.621667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-LAUNCH-V2.0","title":"NH X SWAP 3 LAUNCH V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-SWAP-3-LAUNCH-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:24.151375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-PLUTOCRUISE-V3.0","title":"NH X SWAP 3 PLUTOCRUISE V3.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-SWAP-3-PLUTOCRUISE-V3.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:24.631359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-5-DERIVED-SOLARWIND-V1.0","title":"NH X SWAP 5 DERIVED SOLARWIND V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Wind","New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-SWAP-5-DERIVED-SOLARWIND-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:25.087731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-MAR-2-REDR-RAW-DATA-V1.0","title":"ODY M MAR 2 REDR RAW DATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ODY-M-MAR-2-REDR-RAW-DATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:25.622950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ODY-M-MAR-3-RDR-CALIBRATED-DATA-V1.0","title":"ODY M MAR 3 RDR CALIBRATED DATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ODY-M-MAR-3-RDR-CALIBRATED-DATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:26.124450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-cpi-jup-cal::1.0","title":"Pioneer 10 Charged Particle Instrument Bundle","description":"This bundle contains charged particle data\n taken by the Pioneer 10 fields and particles \n instruments from the solar wind and Jupiter flyby.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["P10","Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1992-09-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/bundle-p10-cpi-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:27.638393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-cpi-jup-cal:data-15min::1.0","title":"Pioneer 10 CPI 15 Minute Count Solar Wind and Jupiter Flyby Data Collection","description":"This collection contains Pioneer 10, \n 15 minute averages of the interplanetary solar \n wind, Jupiter flyby data and heliocentric coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1992-09-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-15min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-15min/collection-data-15min-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:28.600405","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-cpi-jup-cal:data-1day::1.0","title":"Pioneer 10 CPI 1 Day Count Solar Wind and Jupiter Flyby Data Collection","description":"This collection contains Pioneer 10 daily averages\n of the heliocentric coordinates from interplanetary solar \n wind and Jupiter flyby period.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1992-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-1day/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-1day/collection-data-1day-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:29.649869","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-cpi-jup-cal:data-1hr::1.0","title":"Pioneer 10 CPI 1 Hour Count Solar Wind and Jupiter Flyby Data Collection","description":"This collection contains Pioneer 10 hourly-averaged count rates \n computed from 15-min data at NSSDC and cast into 1-year files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1992-09-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-1hr/collection-data-1hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:30.580493","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-cpi-jup-cal:document::1.0","title":"Pioneer 10 CPI Document Collection","description":"This collection contains documents for the Pioneer 10 fields and particles \n instruments from the solar wind and Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-03","stop_date":"1992-09-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:31.584196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-crt-cal::1.0","title":"Pioneer 10 Cosmic Ray Telescope Calibrated Bundle","description":"This bundle contains Cosmic-ray telescope (CRT) data from the\n Jupiter encounter period. The Bundle provides both 15.0 minute flux \n averages from 18 electron, proton, heavy ion channels and full \n six-hour average interplanetary cruise count rate and flux data","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["P10","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/bundle-p10-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:33.081043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-crt-cal:data-15min::1.0","title":"Pioneer 10 CRT Calibrated 15 minute Data Collection","description":"This collection contains Pioneer 10 Cosmic-ray telescope (CRT) data from the \n Jupiter encounter period, covering 1973-11-26 to 1973-12-15. The collection \n provides 15.0 minute flux averages from 18 electron, proton, and heavy ion \n channels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1973-11-26","stop_date":"1973-12-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/data-15min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/data-15min/collection-data-15min-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:34.088874","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-crt-cal:data-6hr::1.0","title":"Pioneer 10 CRT Calibrated 6 Hour Data Collection","description":"This collection contains full six-hour average interplanetary cruise count\n rate and flux data in ASCII format from the Pioneer 10 Cosmic Ray Telescope\n (CRT) experiment.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/data-6hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/data-6hr/collection-data-6hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:35.094696","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-crt-cal:document::1.0","title":"Pioneer 10 CRT Calibrated Document Collection","description":"This collection contains documentation for \n Cosmic-ray telescope (CRT) data from the Jupiter encounter \n period and full six-hour average interplanetary cruise count \n rate and flux data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-06","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:36.096161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-jup-cal::1.0","title":"Pioneer 10 Jupiter Calibrated Helium Vector Magnetometer Bundle","description":"This bundle contains data taken by the Pioneer 10 fields and particles \n instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["P10","Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1973-11-03","stop_date":"1973-12-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/bundle-p10-hvm-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:37.591510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-jup-cal:data-1min-jg::1.0","title":"Pioneer 10 HVM Calibrated 1 Min JG coords. Data at Jupiter Collection","description":"This collection contains Pioneer 10 HVM 1 minute \n averaged magnetic field data from the Jupiter \n encounter in JG coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1973-12-03","stop_date":"1973-12-04","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-1min-jg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-1min-jg/collection-data-1min-jg-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:38.664673","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-jup-cal:data-1min-s3::1.0","title":"Pioneer 10 HVM Calibrated 1 Min Sys. 3 coords. Data at Jupiter Collection","description":"This collection contains Pioneer 10 HVM data near Jupiter \n in System III [1965] coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1973-11-03","stop_date":"1973-12-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-1min-s3/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-1min-s3/collection-data-1min-s3-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:39.615832","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-jup-cal:data-highres::1.0","title":"Pioneer 10 HVM Calibrated Sys. 3 coords. High Res Data at Jupiter Collection","description":"This collection contains Pioneer 10 \n Helium Vector Magnetometer (HVM) high-resolution \n magnetic-field data in the solar wind in System III \n coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1973-11-24","stop_date":"1973-12-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:40.661357","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-jup-cal:document::1.0","title":"Pioneer 10 Jupiter Calibrated HVM Document Collection","description":"This collection contains data taken by the Pioneer 10 fields and particles \n instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-01-01","stop_date":"1992-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:41.591497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-pa-crt-cal::1.0","title":"Pioneer 10 HVM PA CRT Calibrated Bundle","description":"This bundle contains merged Pioneer 10 data taken by the Helium \n Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) \n and Cosmic Ray (CRT) instruments from the solar wind and Jupiter \n encounter period.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["P10","P10","P10","Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/bundle-p10-hvm-pa-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:43.109825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-pa-crt-cal:data-merged-1hour::1.0","title":"Pioneer 10 Calibrated HVM PA CRT 1 Hour Averaged Data Collection","description":"This collection contains Pioneer 10 Helium \n Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) \n and Cosmic Ray (CRT) merged 1 hour averaged data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/data-merged-1hour/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/data-merged-1hour/collection-data-hvm-pa-crt-1hour-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:44.122765","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-pa-crt-cal:document::1.0","title":"Pioneer 10 Calibrated HVM PA CRT Document Collection","description":"This collection contains the documents associated with \n Pioneer 10 Calibrated HVM PA CRT bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-03","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:45.117812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-CPI-4-SUMM-15MIN-V1.0","title":"P10 J CPI 4 SUMM 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-CPI-4-SUMM-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:45.667840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-CPI-4-SUMM-1HR-V1.0","title":"P10 J CPI 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-CPI-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:46.145204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-CRT-4-SUMM-FLUX-15MIN-V1.0","title":"P10 J CRT 4 SUMM FLUX 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-CRT-4-SUMM-FLUX-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:46.644753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-GTT-3-RDR-HIGHRES-V1.0","title":"P10 J GTT 3 RDR HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-GTT-3-RDR-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:47.129148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-HVM-3-RDR-HIGHRES-V1.0","title":"P10 J HVM 3 RDR HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-HVM-3-RDR-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:47.634075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-HVM-4-SUMM-NEAR-ENC-1MIN-V1.0","title":"P10 J HVM 4 SUMM NEAR ENC 1MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-HVM-4-SUMM-NEAR-ENC-1MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:48.149360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-HVM-4-SUMM-S3COORDS-1MIN-V1.0","title":"P10 J HVM 4 SUMM S3COORDS 1MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-HVM-4-SUMM-S3COORDS-1MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:48.617453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-HVM_PA-4-SUMM-MERGED-1HR-V1.0","title":"P10 J HVM PA 4 SUMM MERGED 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-HVM_PA-4-SUMM-MERGED-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:49.165887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-PA-3-RDR-1HR-V1.0","title":"P10 J PA 3 RDR 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-PA-3-RDR-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:49.645802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-PA-4-SUMM-1HR-V1.0","title":"P10 J PA 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-PA-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:50.173265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-PA-6-TRAJ-1HR-V1.0","title":"P10 J PA 6 TRAJ 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-PA-6-TRAJ-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:50.698174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-POS-6-FLYBY-TRAJ-V1.0","title":"P10 J POS 6 FLYBY TRAJ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-POS-6-FLYBY-TRAJ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:51.381295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-POS-6-LIGHT-TIME-V1.0","title":"P10 J POS 6 LIGHT TIME V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-POS-6-LIGHT-TIME-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:51.674824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-TRD-4-SUMM-1HR-V1.0","title":"P10 J TRD 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-TRD-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:52.196653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P10-J-UV-4-SUMM-1DAY-V1.0","title":"P10 J UV 4 SUMM 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-UV-4-SUMM-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:52.720741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-pa::1.0","title":"Pioneer 10 Quadraspherical Plasma Analyzer (PA) Calibrated Bundle","description":"This bundle contains Pioneer 10 data taken by the \n Quadraspherical Plasma Analyzer (PA) instrument from the \n solar wind and Jupiter encounter period.\n NSSDCA ID: 72-012A-13L.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["P10","Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-24","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/bundle-p10-pa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:54.126048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-pa:data-avg-1hr::1.0","title":"Pioneer 10 PA 1 Hour Averaged Calibrated Data Collection","description":"This collection contains Pioneer 10 Quadraspherical\n Plasma Analyzer (PA) 1 Hour averaged Calibrated Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-04-18","stop_date":"1995-09-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-avg-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-avg-1hr/collection-data-avg-1hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:55.128547","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-pa:data-highres::1.0","title":"Pioneer 10 PA Highres Calibrated Data Collection","description":"This collection contains Pioneer 10 Quadraspherical\n Plasma Analyzer (PA) Highres Calibrated Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-04-18","stop_date":"1995-09-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:56.132204","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-pa:data-traj::1.0","title":"Pioneer 10 PA Daily Trajectory Data Collection","description":"This collection contains Pioneer 10 quadraspherical\n plasma analyzer (PA) daily trajectory data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-24","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-traj/collection-data-traj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:57.126492","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-pa:document::1.0","title":"Pioneer 10 PA Calibrated Document Collection","description":"This collection contains documents associated with \n the Pioneer 10 PA Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-24","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:58.137141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-trd::1.0","title":"Pioneer 10 Trapped Radiation Detector Bundle","description":"This bundle contains Pioneer 10 TRD thirty minute \n and hourly averaged Interplanetary data \n from solar wind and Jupiter flyby.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["P10","Trapped Radiation Detector (TRD)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1993-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/bundle-p10-trd.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:00.661318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-trd:data-1hr::1.0","title":"Pioneer 10 TRD Hourly Avg. Cruise and Jupiter Flyby Cosmic Ray Data Collection","description":"This collection contains Pioneer 10 TRD hourly \n averaged cruise and Jupiter flyby cosmic ray data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Trapped Radiation Detector (TRD)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1993-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/data-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/data-1hr/collection-data-1hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:01.705134","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-trd:data-30min::1.0","title":"Pioneer 10 TRD 30 Minute Cruise and Jupiter Flyby Data Collection","description":"This collection contains Pioneer 10 TRD 30 minute \n Cruise and Jupiter Flyby Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Trapped Radiation Detector (TRD)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1993-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/data-30min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/data-30min/collection-data-30min-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:02.683701","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-trd:document::1.0","title":"Pioneer 10 Trapped Radiation Detector Document Collection","description":"This collection contains Pioneer 10 TRD documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Pioneer 10"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-03","stop_date":"1993-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:03.639938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-uv::1.0","title":"Pioneer 10 Ultraviolet Photometer Bundle","description":"This bundle contains data taken by the Pioneer 10 fields and particles\n Ultraviolet Photometer (UV) instrument including Solar Wind and the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["P10","Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1996-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/bundle-p10-uv.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:05.162929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-uv:data-avg-day::1.0","title":"Pioneer 10 UV 1 Day Data Collection","description":"This collection conatins Pioneer 10 daily averages of the spin-averaged short \n and long wavelength channels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1996-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/data-avg-day/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/data-avg-day/collection-data-avg-day-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:06.155378","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-uv:document::1.0","title":"Pioneer 10 UV Document Collection","description":"This collection contains documents taken by the Pioneer 10 fields and particles \n instruments from Solar Wind and Jupiter flybys. Documents from the Ultraviolet \n Photometer (UV) instrument are included.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-03","stop_date":"1996-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:07.162002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-jup-cal::1.0","title":"Pioneer 11 Calibrated Helium Vector Magnetometer at Jupiter Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles \n instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["P11","Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1974-11-24","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/bundle-p11-hvm-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:08.652757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-jup-cal:data-1min-jg::1.0","title":"Pioneer 11 HVM Calibrated 1 Min JG coords. Data at Jupiter Collection","description":"This collection contains Pioneer 11 HVM 1 minute \n averaged magnetic field data from the Jupiter \n encounter in JG coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-12-03","stop_date":"1974-12-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-jg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-jg/collection-data-1min-jg-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:09.652379","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-jup-cal:data-1min-s3::1.0","title":"Pioneer 11 HVM Calibrated 1 Min Sys. 3 coords. Data at Jupiter Collection","description":"This collection contains Pioneer 11 HVM data near Jupiter \n in System III [1965] coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-11-25","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-s3/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-s3/collection-data-1min-s3-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:10.657789","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-jup-cal:data-1min-sj::1.0","title":"Pioneer 11 HVM Calibrated 1 Min SJ coords. Data at Jupiter Collection","description":"This collection contains Pioneer 11 HVM data near Jupiter \n in SJ coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-11-24","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-sj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-sj/collection-data-1min-sj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:11.671251","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-jup-cal:data-highres::1.0","title":"Pioneer 11 HVM Calibrated Sys. 3 coords. High Res Data at Jupiter Collection","description":"This collection contains Pioneer 11 \n Helium Vector Magnetometer (HVM) high-resolution \n magnetic-field data during Jupiter encounter in System III \n coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-11-25","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:12.722581","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-jup-cal:document::1.0","title":"Pioneer 11 Jupiter Calibrated HVM Document Collection","description":"This collection contains data taken by the Pioneer 11 fields and particles \n instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1974-11-24","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:13.693560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-pa-crt-cal::1.0","title":"Pioneer 11 HVM PA CRT Calibrated Bundle","description":"This bundle contains merged Pioneer 11 data taken by the Helium \n Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) \n and Cosmic Ray (CRT) instruments from the solar wind, Jupiter \n and Saturn encounter period.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["P11","P11","P11","Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1973-04-06","stop_date":"1992-08-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/bundle-p11-hvm-pa-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:15.176678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-pa-crt-cal:data-merged-1hour::1.0","title":"Pioneer 11 HVM PA CRT Calibrated 1 Hour Averaged Data Collection","description":"This collection contains Pioneer 11 Helium Vector Magnetometer (HVM), \n Quadraspherical Plasma Analyzer (PA) and Cosmic Ray (CRT) merged 1 Hour Averaged Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1973-04-06","stop_date":"1992-08-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/data-merged-1hour/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/data-merged-1hour/collection-data-hvm-pa-crt-1hour-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:16.169546","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-pa-crt-cal:document::1.0","title":"Pioneer 11 HVM PA CRT Calibrated Document Collection","description":"This collection contains the documents associated with \n Pioneer 11 HVM PA CRT Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1973-04-06","stop_date":"1992-08-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:17.175332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-sat-cal::1.0","title":"Pioneer 11 Calibrated Helium Vector Magnetometer Saturn Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles \n instruments from the Saturn flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["P11","Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1979-08-30","stop_date":"1979-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/bundle-p11-hvm-sat-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:18.685809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-sat-cal:data-1min-pe::1.0","title":"Pioneer 11 HVM Calibrated 1 Min PE coords. Data at Saturn Collection","description":"This collection contains Pioneer 11 HVM 1 minute \n averaged magnetic field data from the Saturn \n encounter in PE coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1979-08-30","stop_date":"1979-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/data-1min-pe/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/data-1min-pe/collection-data-1min-pe-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:19.671588","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-sat-cal:data-highres::1.0","title":"Pioneer 11 HVM Calibrated Sys. 3 coords. High Res Data at Saturn Collection","description":"This collection contains Pioneer 11 \n Helium Vector Magnetometer (HVM) high-resolution \n magnetic-field data at Saturn in System III \n coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1979-08-30","stop_date":"1979-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:20.682463","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-sat-cal:document::1.0","title":"Pioneer 11 Saturn Calibrated HVM Document Collection","description":"This collection contains data taken by the Pioneer 11 fields and particles \n instruments from the Saturn flybys.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1973-11-03","stop_date":"1973-12-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:21.675266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-CRT-4-SUMM-FLUX-15MIN-V1.0","title":"P11 J CRT 4 SUMM FLUX 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-CRT-4-SUMM-FLUX-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:22.248776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-FGM-4-SUMM-36SEC-V1.0","title":"P11 J FGM 4 SUMM 36SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-FGM-4-SUMM-36SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:22.708657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-FGM-4-SUMM-5MIN-V1.0","title":"P11 J FGM 4 SUMM 5MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-FGM-4-SUMM-5MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:23.221899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-GTT-3-RDR-HIGHRES-V1.0","title":"P11 J GTT 3 RDR HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-GTT-3-RDR-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:23.749040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-HVM-3-RDR-HIGHRES-V1.0","title":"P11 J HVM 3 RDR HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-HVM-3-RDR-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:24.253539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-HVM-4-SUMM-1MIN-V1.0","title":"P11 J HVM 4 SUMM 1MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-HVM-4-SUMM-1MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:24.733275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-HVM-4-SUMM-NEAR-ENC-1MIN-V1.0","title":"P11 J HVM 4 SUMM NEAR ENC 1MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-HVM-4-SUMM-NEAR-ENC-1MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:25.228239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-HVM-4-SUMM-S3COORDS-1MIN-V1.0","title":"P11 J HVM 4 SUMM S3COORDS 1MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-HVM-4-SUMM-S3COORDS-1MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:25.751918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-HVM-PA-4-SUMM-MERGED-1HR-V1.0","title":"P11 J HVM PA 4 SUMM MERGED 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-HVM-PA-4-SUMM-MERGED-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:26.185111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-POS-6-FLYBY-TRAJ-V1.0","title":"P11 J POS 6 FLYBY TRAJ V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-POS-6-FLYBY-TRAJ-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:26.693922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-POS-6-LIGHT-TIME-V1.0","title":"P11 J POS 6 LIGHT TIME V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-POS-6-LIGHT-TIME-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:27.214165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-SW-CPI-4-SUMM-15MIN-V1.0","title":"P11 J SW CPI 4 SUMM 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-SW-CPI-4-SUMM-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:27.718253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-SW-CPI-4-SUMM-1HR-V1.0","title":"P11 J SW CPI 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-SW-CPI-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:28.214072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-SW-PA-4-SUMM-1HR-V1.0","title":"P11 J SW PA 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-SW-PA-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:28.697069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-SW-PA-6-TRAJ-1HR-V1.0","title":"P11 J SW PA 6 TRAJ 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-SW-PA-6-TRAJ-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:29.215698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-SW-UV-4-SUMM-1DAY-V1.0","title":"P11 J SW UV 4 SUMM 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-SW-UV-4-SUMM-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:29.721766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-J-TRD-4-SUMM-1HR-V1.0","title":"P11 J TRD 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-TRD-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:30.250812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-pa::1.0","title":"Pioneer 11 Quadraspherical Plasma Analyzer (PA) Bundle","description":"This bundle contains Pioneer 11 trajectory\n and 1 hour averged data taken by the Quadraspherical Plasma \n Analyzer (PA) instrument from the solar wind, Jupiter \n and Saturn encounter period.\n NSSDCA ID: 73-019A-13.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["P11","Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1973-04-21","stop_date":"1998-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/bundle-p11-pa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:31.698844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-pa:data-avg-1hr::1.0","title":"Pioneer 11 PA 1 Hour Averaged Data Collection","description":"This collection contains Pioneer 11 Quadraspherical\n Plasma Analyzer (PA) 1 hour averaged data. Each file contains a\n header followed by data records. Each data record contains the\n spacecraft ID (SCID), year, day of year, and time of day in hours,\n followed by the bulk velocity, number density, temperature, and \n where appropriate, the flow angles. Speeds are given in km/s, \n number densities are given in #/cc, temperatures are given\n in K, and flow angles are given in degrees..","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1973-04-21","stop_date":"1992-05-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/data-avg-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/data-avg-1hr/collection-data-avg-1hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:32.714791","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-pa:data-traj::1.0","title":"Pioneer 11 PA Trajectory Data Collection","description":"This collection contains Pioneer 11 Quadraspherical\n Plasma Analyzer (PA) trajectory data. Each data record contains \n the spacecraft ID (SCID), year, day of year, and time of day in\n hours, followed by the Cartesian state of the spacecraft in \n ecliptic coordinates where the x-axis is directed towards the\n first point in Ares while the z-axis points north.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-01-01","stop_date":"1998-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/data-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/data-traj/collection-data-traj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:33.755382","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-pa:document::1.0","title":"Pioneer 11 PA Document Collection","description":"This collection contains documents associated with \n the Pioneer 11 PA Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1973-04-21","stop_date":"1998-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:34.732572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-CRT-4-SUMM-FLUX-15MIN-V1.0","title":"P11 S CRT 4 SUMM FLUX 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-CRT-4-SUMM-FLUX-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:35.283201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-FGM-4-SUMM-146SEC-V1.0","title":"P11 S FGM 4 SUMM 146SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-FGM-4-SUMM-146SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:35.785560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-FGM-4-SUMM-5MIN-V1.0","title":"P11 S FGM 4 SUMM 5MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-FGM-4-SUMM-5MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:36.239157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-GTT-3-RDR-HIGHRES-V1.0","title":"P11 S GTT 3 RDR HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-GTT-3-RDR-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:36.763763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-HVM-3-RDR-NEAR-ENC-HIGHRES-V1.0","title":"P11 S HVM 3 RDR NEAR ENC HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-HVM-3-RDR-NEAR-ENC-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:37.286324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-HVM-4-SUMM-NEAR-ENC-1MIN-V1.0","title":"P11 S HVM 4 SUMM NEAR ENC 1MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-HVM-4-SUMM-NEAR-ENC-1MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:37.714761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-HVM-PA-4-MERGED-ENC-1HR-V1.0","title":"P11 S HVM PA 4 MERGED ENC 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-HVM-PA-4-MERGED-ENC-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:38.215974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-SW-CPI-4-SUMM-15MIN-V1.0","title":"P11 S SW CPI 4 SUMM 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-SW-CPI-4-SUMM-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:38.720134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-SW-CPI-4-SUMM-1HR-V1.0","title":"P11 S SW CPI 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-SW-CPI-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:39.217678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-SW-PA-4-SUMM-1HR-V1.0","title":"P11 S SW PA 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-SW-PA-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:39.725911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-SW-PA-6-TRAJ-1HR-V1.0","title":"P11 S SW PA 6 TRAJ 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-SW-PA-6-TRAJ-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:40.432666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-SW-UV-4-SUMM-1DAY-V1.0","title":"P11 S SW UV 4 SUMM 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-SW-UV-4-SUMM-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:40.755521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"P11-S-TRD-4-SUMM-1HR-V1.0","title":"P11 S TRD 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-TRD-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:41.227000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-uv::1.0","title":"Pioneer 11 Ultraviolet Photometer Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles\n Ultraviolet Photometer (UV) instrument including Solar Wind, Jupiter\n and Saturn flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Jupiter","Saturn","Solar Wind"],"instruments":["P11","Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1973-04-06","stop_date":"1993-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/bundle-p11-uv.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:44.737840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-uv:data-avg-day::1.0","title":"Pioneer 11 UV Daily Averaged Data Collection","description":"This collection contains Pioneer 11 daily averages of the spin-averaged short \n and long wavelength channels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter","Saturn","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1973-04-06","stop_date":"1993-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/data-avg-day/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/data-avg-day/collection-data-avg-day-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:45.760724","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-uv:document::1.0","title":"Pioneer 11 UV Document Collection","description":"This collection contains documents taken by the Pioneer 11 fields and particles \n instruments from Solar Wind, Jupiter and Saturn flybys. Documents from the Ultraviolet \n Photometer (UV) instrument are included.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter","Saturn","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1973-04-06","stop_date":"1993-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:46.818793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle::1.0","title":"Pioneer Venus Orbiter Mission Bundle","description":"This bundle contains the Pioneer Venus Orbiter Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Omag","Oefd","Oetp","Oims","Onms","Orpa","Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)","Orbiter Electron Temperature Probe (OETP)","Orbiter Ion Mass Spectrometer (OIMS)","Orbiter Neutral Mass Spectrometer (ONMS)","Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/bundle-pvo.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:48.296242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle:document-mission::1.0","title":"Pioneer Venus Orbiter Mission Document Collection","description":"This collection contains documents associated with Pioneer Venus\n Orbiter Mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)","Orbiter Electron Temperature Probe (OETP)","Orbiter Ion Mass Spectrometer (OIMS)","Orbiter Neutral Mass Spectrometer (ONMS)","Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-mission/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-mission/collection-document-mission-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:49.250293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle:document-oefd::1.0","title":"Pioneer Venus Orbiter Plasma Wave Analyzer Document Collection","description":"This collection contains documents associated with Pioneer Venus \n Orbiter Plasma Wave Analyzer.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oefd/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oefd/collection-document-oefd-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:50.286264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle:document-oetp::1.0","title":"Pioneer Venus Orbiter Electron Temperature Probe Document Collection","description":"This collection contains documents associated with the \n Electron Temperature Probe for PVO.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electron Temperature Probe (OETP)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oetp/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oetp/collection-document-oetp-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:51.249479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle:document-oims::1.0","title":"Pioneer Venus Orbiter Ion Mass Spectrometer for PVO Document Collection","description":"This collection contains documents associated with the \n PVO Orbiter Ion Mass Spectrometer for PVO.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Ion Mass Spectrometer (OIMS)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oims/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oims/collection-document-oims-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:52.249140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle:document-omag::1.0","title":"Pioneer Venus Orbiter Fluxgate Magnetometer Document Collection","description":"This collection contains documents associated with Pioneer Venus\n Orbiter Fluxgate Magnetometer.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-omag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-omag/collection-document-omag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:53.255873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle:document-onms::1.0","title":"Pioneer Venus Orbiter Neutral Gas Mass Spectrometer Document Collection","description":"This collection contains documents associated with \n Pioneer Venus Orbiter Neutral Gas Mass Spectrometer.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Neutral Mass Spectrometer (ONMS)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-onms/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-onms/collection-document-onms-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:54.243684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle:document-orpa::1.0","title":"Pioneer Venus Orbiter Retarding Potential Analyzer Document Collection","description":"This collection contains documents associated with Pioneer Venus\n Orbiter Retarding Potential Analyzer.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-orpa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-orpa/collection-document-orpa-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:55.253385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle:document-sedr::1.0","title":"Pioneer Venus Orbiter Supplemental Experimenter Data Records (SEDR) Document Collection","description":"This collection contains documents associated with Pioneer Venus\n Orbiter Supplemental Experimenter data Record (SEDR).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Omag","Oefd","Oetp","Oims","Onms","Orpa","Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)","Orbiter Electron Temperature Probe (OETP)","Orbiter Ion Mass Spectrometer (OIMS)","Orbiter Neutral Mass Spectrometer (ONMS)","Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-sedr/collection-document-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:56.261289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-ephem::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Data Bundle","description":"This bundle contains PVO Spacecraft VSO Ephemeris and Spacecraft \n Orientation data. This bundle includes Pioneer Venus Orbiter (PVO) spacecraft\n position and orientation data in Venus Solar Orbital (VSO) coordinates\n\n This data was previously released as PDS3 data in\n \n PVO-V-POS-5--VSOCOORDS-12SEC-V1.0 (https://doi.org/10.17189/1519830).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/bundle-pvo-ephem-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:57.821526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-ephem:data-vso-asc::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation ASCII Data Collection","description":"This collection includes Pioneer Venus Orbiter (PVO) ephemeris, spacecraft position and\n orientation data in Venus Solar Orbital (VSO) coordinates. This collection is\n sampled every 12 seconds near periapsis, and at 1 minute or 10 minute rates\n in the solar wind, the lowest rates near apoapsis. Planetocentric and\n heliocentric position vectors and solar zenith angle (Sun-Venus-PVO) are\n also provided. The VSO parameters are derived from the PVO Supplemental\n Experimenter Data Records (SEDR), other parameters are taken\n directly from the SEDR dataset.\n \n The original data were all binary and contained a non-standard time \n representation. No software was provided to convert these data to ASCII. \n PDS created ASCII versions of these files in response to user concerns \n regarding the ease of use of these data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/data-vso-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/data-vso-asc/collection-data-vso-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:59.024029","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-ephem:data-vso-bin::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Original Binary Data Collection","description":"This collection includes Pioneer Venus Orbiter (PVO) ephemeris, spacecraft position and\n orientation data in Venus Solar Orbital (VSO) coordinates. This collection is\n sampled every 12 seconds near periapsis, and at 1 minute or 10 minute rates\n in the solar wind, the lowest rates near apoapsis. Planetocentric and\n heliocentric position vectors and solar zenith angle (Sun-Venus-PVO) are\n also provided. The VSO parameters are derived from the PVO Supplemental\n Experimenter Data Records (SEDR), other parameters are taken\n directly from the SEDR dataset.\n \n The original data files submitted to the PDS are IGPP flatfiles. An IGPP \n flatfile is a collection of 2 files, each of which could be considered \n a table. The data file (.FFD) is a binary table of data values. The header \n file (.FFH) is an ASCII table which describes the data file (.FFD) and is \n used by the UCLA/IGPP Data Flow System (a software package).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/data-vso-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/data-vso-bin/collection-data-vso-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:00.064631","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-ephem:document::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Document Collection","description":"This collection contains the document files associated with the \n PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/document/collection-pvo-ephem-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:01.076003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oefd-cal::1.0","title":"PVO Electric Field Detector (OEFD) Data Bundle","description":"This bundle contains PVO Electric Field Detector (OEFD) data. The \n data provided include wave electric field amplitudes measured at \n four different frequencies by the Electric Field Detector and data \n that was averaged over 24 second intervals on 12 second centers.\n\n This data was previously released as PDS3 data in\n \n PVO-V-OEFD-3--EFIELD-HIRES-V1.0 (https://doi.org/10.17189/1519807),\n PVO-V-OEFD-4--EFIELD-24SEC-V1.0 (https://doi.org/10.17189/1519808).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Oefd","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/bundle-pvo-oefd-cal-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:02.578991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oefd-cal:data-24s-asc::1.0","title":"PVO Electric Field Detector (OEFD) 24 Sec. Avgs. ASCII Data Collection","description":"This data collection contains ASCII files that contain wave electric \n field amplitudes measured at four different frequencies by the Pioneer \n Venus Orbiter Electric Field Detector. The data are averaged over 24 \n second intervals on 12 second centers.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-24s-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-24s-asc/collection-data-24s-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:04.028887","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oefd-cal:data-24s-bin::1.0","title":"PVO Electric Field Detector (OEFD) 24 Sec. Avgs. Original Binary Data Collection","description":"This data collection contains binary files that contain wave electric \n field amplitudes measured at four different frequencies by the Pioneer \n Venus Orbiter Electric Field Detector. The data are averaged over 24 \n second intervals on 12 second centers.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-24s-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-24s-bin/collection-data-24s-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:05.385327","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oefd-cal:data-highres-asc::1.0","title":"PVO Electric Field Detector (OEFD) High-Res. ASCII Data Collection","description":"This data collection contains ASCII files that contain wave electric \n field amplitudes measured at four different frequencies by the Pioneer \n Venus Orbiter Electric Field Detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-highres-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-highres-asc/collection-data-highres-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:06.741682","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oefd-cal:data-highres-bin::1.0","title":"PVO Electric Field Detector (OEFD) High-Res. Original Binary Data Collection","description":"This product collection contains binary data files that contain wave electric \n field amplitudes measured at four different frequencies by the Pioneer Venus \n Orbiter Electric Field Detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-highres-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-highres-bin/collection-data-highres-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:07.911879","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oefd-cal:document::1.0","title":"PVO Electric Field Detector Document Collection","description":"This collection contains the document files associated with the PVO Plasmsa Wave \n Analyzer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/document/collection-pvo-oefd-cal-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:08.903893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp::1.2","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Data Bundle","description":"This bundle includes PVO Electron Temperature Probe (OETP) collections:\n High-Res., Low-Res., Ionopause, Bow Shock, Solar EUV, and Browse Plot.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Oetp","Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/bundle-pvo-oetp-1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:10.408170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp:browse::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Browse Plot Collection","description":"This collection contains PDF/A files that contains plots of PVO electron number \n density data from Venus Orbital Operations.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Browse"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/browse/collection-browse-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:11.466791","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp:data-bowshock::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Bow Shock Data Collection","description":"This data collection contains the orbit-by-orbit times and locations of the bow \n shock crossings, which are characterized by distinct changes in Ne. Multiple \n shock crossing are listed if they are sufficiently separated to be resolved \n accurately. (Bow shock crossings will be evident in the High Resolution Ne \n File when they occurred within 30 minutes of periapsis)","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-bowshock/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-bowshock/collection-data-bowshock-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:12.494226","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp:data-electron-highres::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) High-Res. Data Collection","description":"This data collection contains derived high resolution number density of electrons (Ne) data, \n from Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) from 1978-12-05 to 1992-10-07. \n High resolution measurements are typically available at 2 to 8 second intervals depending upon the \n telemetry rate available to the OETP at the time.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-electron-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-electron-highres/collection-data-electron-highres-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:14.065055","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp:data-electron-lowres::1.2","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Low-Res. Data Collection","description":"This data collection includes the Ne, Te and Vs measurements derived by \n fitting the radial probe voltampere curves taken whenever PVO was within \n the ionosphere (ie., between the inbound and outbound ionopause crossings).\n Data from essentially every orbit in 1979 and 1980 included ionosphere transits.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-electron-lowres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-electron-lowres/collection-data-electron-lowres-1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:15.123434","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp:data-ionopause::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Ionopause Data Collection","description":"This data collection contains orbit-by-orbit times and locations of the ionopause crossings, \n which are evident as sharp gradients in Ne at the top of the ionosphere. \n (These crossings always occur within 30 minutes of periapsis, so they may be seen in the \n High Resolution Ne files)","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1985-07-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-ionopause/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-ionopause/collection-data-ionopause-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:16.163488","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp:data-solareuv::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Solar EUV Data Collection","description":"This data collection contains a file that gives the magnitude of the \n photoemission current from the radial probe, Ipe, (in units of 10-9 amps) \n for orbits 0001 to 4800.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-01-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-solareuv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-solareuv/collection-data-solareuv-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:17.138311","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp:document::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Document Collection","description":"This collection contains the document files associated with the \n Pioneer Venus (PVO) Electron Temperature Probe (OETP) Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/document/collection-pvo-oetp-document-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:18.082528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oims::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Data Bundle","description":"This bundle includes Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer High-Resolution \n and Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Low-Resolution data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Oims","PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/bundle-pvo-oims-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:19.597323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oims:data-12s::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Low-Res Data Collection","description":"This collection contains Pioneer Venus Orbiter low-resolution \n ion number densities data recorded by the Ion Mass Spectrometer \n (OIMS), from PVO Venus.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1987-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-12s/collection-data-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:20.607318","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oims:data-highres::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer High-Res Data Collection","description":"This collection includes derived Pioneer Venus Orbiter high-resolution \n ion density data from the OIMS instrument for PVO. It contains it contains \n sample mass and density data for orbits 1-5055, including data for the \n period periapsis +/- 30 minutes for each orbit. The collection is divided \n into multiple files which contain 1 orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-highres/collection-data-highres-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:22.187616","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oims:document::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Document Collection","description":"This collection contains the document files associated with the \n Pioneer Venus (PVO) Ion Mass Spectrometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/document/collection-pvo-oims-document-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:23.198053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal::1.0","title":"PVO Magnetomer Data Bundle","description":"This bundle contains PVO magnetometer data. The data are \n provided in high resolution spacecraft coordinates, high resolution spacecraft \n coordinates averaged over 24 seconds on 12 second centers, high resolution spacecraft \n coordinates and high resolution spacecraft coordinates averaged over 24 seconds \n acquired after the multiplexer anomaly that allowed data from only a single sensor \n (P-sensor) to be returned to the ground. It also includes instrument status information.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Omag","Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/bundle-pvo-omag-cal-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:24.693661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-anc-inststat-asc::1.0","title":"PVO OMAG Instrument Status ASCII Data Collection","description":"This data collection contains ASCII Pioneer Venus Orbiter Magnetometer \n instrument status data including including parameters that may \n be used to assess the quality of the magnetic-field data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-anc-inststat-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-anc-inststat-asc/collection-data-anc-inststat-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:25.757496","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-anc-inststat-bin::1.0","title":"PVO OMAG Instrument Status Binary Data Collection","description":"This collection contains binary Pioneer Venus Orbiter Magnetometer instrument \n status data including including parameters that may be used to assess the \n quality of the magnetic-field data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-anc-inststat-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-anc-inststat-bin/collection-data-anc-inststat-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:26.947044","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-psens-24s-asc::1.0","title":"PVO Venus MAG Resampled P-Sensor 24 Sec Avgs ASCII Data Collection","description":"This data collection contains ASCII Pioneer Venus (PVO) magnetometer (OMAG) \n data averages (24 sec) acquired after the multiplexer anomaly that allowed \n data from only a single sensor (P-sensor) to be returned to the ground. The \n data has been calibrated to account for gains only. The data are given in \n units of nanoTesla. These data have been averaged over two spin period \n intervals on one spin period centers. The time tag given to each record is \n the project assigned time value for the spin period (UADS time tag).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1988-10-16","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-24s-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-24s-asc/collection-data-psens-24s-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:27.942873","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-psens-24s-bin::1.0","title":"PVO Venus MAG Resampled P-Sensor 24 Sec Avgs Original Binary Data Collection","description":"This data collection contains binary, Pioneer Venus (PVO) magnetometer (OMAG) data averages \n (24 sec) acquired after the multiplexer anomaly that allowed data from only a single \n sensor (P-sensor) to be returned to the ground. The data has been calibrated to \n account for gains only. The data are given in units of nanoTesla. These data have \n been averaged over two spin period intervals on one spin period centers. The time \n tag given to each record is the project assigned time value for the spin period \n (UADS time tag).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1988-10-16","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-24s-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-24s-bin/collection-data-psens-24s-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:28.941901","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-psens-highres-asc::1.0","title":"PVO MAG Calibrated P-Sensor High-Res. ASCII Data Collection","description":"This collection contains ASCII Pioneer Venus (PVO) magnetometer (OMAG) high resolution \n data acquired after the multiplexer anomaly that allowed data from only a single \n sensor (P-sensor) to be returned to the ground.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1988-10-15","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-highres-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-highres-asc/collection-data-psens-highres-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:29.947326","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-psens-highres-bin::1.0","title":"PVO MAG Calibrated P-Sensor High-Res. Original Binary Data Collection","description":"This collection contains binary, Pioneer Venus (PVO) magnetometer (OMAG) high resolution \n data acquired after the multiplexer anomaly that allowed data from only a \n single sensor (P-sensor) to be returned to the ground.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1988-10-15","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-highres-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-highres-bin/collection-data-psens-highres-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:30.985595","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-sc-24s-asc::1.0","title":"PVO Magnetic-Field VSO and Spacecraft Coords. 24 Sec. Avgs. ASCII Data Collection","description":"This collection includes ASCII files containing vectors collected\n by the Pioneer Venus Orbiter (previously Pioneer 12) Magnetometer which have\n been averaged over 24 seconds on 12 second centers.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-24s-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-24s-asc/collection-data-sc-24s-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:32.088280","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-sc-24s-bin::1.0","title":"PVO Magnetic-Field VSO and Spacecraft Coords. 24 Sec. Avgs. Original Binary Data Collection","description":"This collection includes binary files of Pioneer Venus Orbiter magnetic-field data in \n Venus Solar Orbital (VSO) and PVO inertial spacecraft (PVO_ISC) coordinates, \n from PVO Venus orbit OMAG. The data has been averaged over 24 seconds on 12 second centers.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-24s-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-24s-bin/collection-data-sc-24s-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:33.193499","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-sc-highres-asc::1.0","title":"PVO Magnetic-Field VSO and Spacecraft Coords. High-Res. ASCII Data Collection","description":"This data collection includes ASCII files that contain Pioneer Venus Orbiter high-resolution \n magnetic-field data in Venus Solar Orbital (VSO) and PVO inertial spacecraft (PVO_ISC) \n coordinates, from the PVO OMAG instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-highres-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-highres-asc/collection-data-sc-highres-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:34.347737","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:data-sc-highres-bin::1.0","title":"PVO Magnetic-Field VSO and Spacecraft Coords. High-Res. Binary Data Collection","description":"This product collection contains binary files of Pioneer Venus Orbiter high-resolution \n magnetic-field data in Venus Solar Orbital (VSO) and PVO inertial spacecraft (PVO_ISC) \n coordinates, from the OMAG instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-highres-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-highres-bin/collection-data-sc-highres-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:35.342361","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal:document::1.0","title":"PVO OMAG Data Document Collection","description":"This collection contains the document files associated with the \n Pionner Venus Orbiter Magnetometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbite (PVO)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/document/collection-pvo-omag-cal-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:36.345626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-oefd-anc::1.0","title":"Pioneer Venus Orbiter Magnetometer and Electric Field Detector Ancillary Data Bundle","description":"This bundle contains information pertaining to the Pioneer Venus Orbiter \n Magnetometer and Electric Field Detector Ancillary Data. This bundle includes\n Engineering and Phaseoffset data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Omag","Oefd","Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/bundle-pvo-omag-oefd-anc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:37.858030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-oefd-anc:data-eng-asc::1.0","title":"PVO OMAG/OEFD Engineering ASCII Data Collection","description":"This product collection contains ASCII files containing\n spacecraft and engineering data, including magnetometer\n mode and temperature information, and spacecraft sample\n rate spin period infomation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-eng-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-eng-asc/collection-data-eng-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:39.250758","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-oefd-anc:data-eng-bin::1.0","title":"PVO OMAG/OEFD Engineering Original Binary Data Collection","description":"This product collection includes files that contain original binary \n spacecraft and engineering data, including magnetometer mode and temperature\n information, and spacecraft sample rate spin period infomation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-eng-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-eng-bin/collection-data-eng-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:40.441221","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-oefd-anc:data-phaseoff-asc::1.0","title":"PVO OMAG/OEFD Phase and Offset ASCII Data Collection","description":"This collection contains ASCII files that contain phase and offset data such as \n modulation phase and amplitude measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-phaseoff-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-phaseoff-asc/collection-data-phaseoff-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:41.492652","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-oefd-anc:data-phaseoff-bin::1.0","title":"PVO OMAG/OEFD Phase and Offset Binary Data Collection","description":"This collection contains binary phase and offset data such as \n modulation phase and amplitude measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-phaseoff-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-phaseoff-bin/collection-data-phaseoff-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:42.574741","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-oefd-anc:document::1.0","title":"Pioneer Venus Orbiter Magnetometer and Electric Field Detector Ancillary Document Collection","description":"This collection contains the document files associated with the \n Pioneer Venus Orbiter Magnetometer and Electric Field Detector Ancillary Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/document/collection-pvo-omag-oefd-anc-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:43.577422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms::1.1","title":"Pioneer Venus Orbiter (PVO) Neutral Mass Spectrometer (ONMS) Data Bundle","description":"This bundle includes the following Pioneer Venus Orbiter (PVO) Neutral Mass Spectrometer (ONMS)\n collections: Ion Max Count Rate Data, Neutral Density 12 Sec Data, Neutral Density High-Res. Data, \n Superthermal Ion Location Data, Superthermal Oxygen 12 Second Data, Superthermal Oxygen High-Res. Data, \n and Thermal Ion 12 second Data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Onms","Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-09-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/bundle-pvo-onms-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:45.087329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms:data-ion-count-12s::1.1","title":"PVO ONMS Ion Max Count Rate Data Collection","description":"This data collection contains a file with PVO Neutral Mass \n Spectrometer (ONMS) derived ion max count rate data for all Venus \n orbits(1 1978-12-05T15:06:31.820; 5055 1992-10-07T19:50:28.680).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-ion-count-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-ion-count-12s/collection-data-ion-count-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:46.083815","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms:data-neu-dens-12s::1.1","title":"PVO ONMS Neutral Density 12 Sec Data Collection","description":"This data collection contains a file with PVO Neutral Mass Spectrometer (ONMS) derived\n neutral density 12 sec data for all Venus orbits(3 1978-12-07T14:30:47.000Z; 640 \n 1980-09-05T17:14:34.016Z; 4961 1992-07-06T00:26:53.847Z; 5055 1992-10-07T19:49:39.752Z).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-07","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-neu-dens-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-neu-dens-12s/collection-data-neu-dens-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:47.112203","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms:data-neu-dens-highres::1.1","title":"PVO ONMS Neutral Density High-Res. Data Collection","description":"This collection contains PVO Neutral Mass Spectrometer (ONMS) \n derived neutral density high resolution data for all Venus orbits\n (3 1978-12-07T14:29:47.668Z; 640 1980-09-05T17:15:20.875Z;\n 4961 1992-07-06T00:23:50.044Z; 5055 1992-10-07T19:50:36.144Z).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-07","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-neu-dens-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-neu-dens-highres/collection-data-neu-dens-highres-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:48.145769","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms:data-supthrm-ion-loc::1.1","title":"PVO ONMS Superthermal Ion Location Data Collection","description":"This data collection contains a data file that includes start and stop \n times/locations where superthermal ions were detected by the Neutral Mass \n Spectrometer instrument aboard the Pioneer Venus Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-ion-loc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-ion-loc/collection-data-supthrm-ion-loc-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:49.116923","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms:data-supthrm-oxy-12s::1.1","title":"PVO ONMS Superthermal Oxygen 12 Second Data Collection","description":"This data collection contains a file with PVO neutral mass spectrometer (ONMS) derived \n superthermal oxygen 12 second data for all Venus orbits (1 1978-12-07T15:07:22.817; 4368 \n 1990-11-21T02:01:19.648; 4494 1991-03-27T01:25:54.275; 4975 1992-07-20T00:22:15.544).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-07-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-oxy-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-oxy-12s/collection-data-supthrm-oxy-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:50.168056","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms:data-supthrm-oxy-highres::1.1","title":"PVO ONMS Superthermal Oxygen High-Res. Data Collection","description":"This data collection contains PVO Neutral Mass Spectrometer (ONMS) derived \n superthermal oxygen high res data. The data has one point for each point measured, that went into \n a successful data fitting for that time interval. The individual flux and density values are computed \n by dividing each data value by the value of the fitting function at the corresponding time.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-07-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-oxy-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-oxy-highres/collection-data-supthrm-oxy-highres-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:51.087139","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms:data-thrm-ion-12s::1.1","title":"PVO ONMS Thermal Ion 12 Second Data Collection","description":"This data collection contains a data file with PVO Neutral Mass \n Spectrometer (ONMS) derived Thermal Ion 12 second data from \n 1980-03-15T10:26:29.656 to 1992-09-25T23:09:39.859.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1980-03-15","stop_date":"1992-09-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-thrm-ion-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-thrm-ion-12s/collection-data-thrm-ion-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:52.135005","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms:document::1.1","title":"PVO ONMS Document Collection","description":"This collection contains the document files associated with the\n Pioneer Venus Orbiter (PVO) Neutral Mass Spectrometer (ONMS) \n Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-09-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/document/collection-document-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:53.104905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-orpa::1.0","title":"Pioneer Venus Orbiter (PVO) Retarding Potential Analyzer (ORPA) Data Bundle","description":"This bundle contains PVO Retarding Potential Analyzer (ORPA) Processed Data. \n This bundle includes Pioneer Venus Orbiter (PVO) processed data from the \n retarding potential analyzer (ORPA), including thermal and superthermal \n electrons, ions, and a key parameters collection for all 5055 orbits \n (Dec 5, 1978 - Oct 7, 1992). It also includes an ancillary ion uncertainties\n collection.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orpa","Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-04","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/bundle-pvo-orpa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:54.603655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-orpa:data-ion-highres::1.0","title":"PVO Retarding Potential Analyzer (ORPA) High-Resolution Ion Data Collection","description":"This product collection contains Pioneer Venus Orbiter (PVO) \n processed data from the retarding potential analyzer (ORPA) including \n high resolution ions.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-ion-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-ion-highres/collection-data-ion-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:56.097414","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-orpa:data-ion-uncertainty::1.0","title":"PVO Retarding Potential Analyzer (ORPA) High-Resolution Ion Uncertainty Data Collection","description":"This collection contains ion uncertainties files. This serves as an ancillary \n component for the Pioneer Venus Orbiter (PVO) retarding potential analyzer (ORPA) \n high resolution ion data. These include the least-squares fit statistical \n uncertainties for some parameters.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-ion-uncertainty/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-ion-uncertainty/collection-data-ion-uncertainty-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:57.158858","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-orpa:data-lowres::1.0","title":"PVO Retarding Potential Analyzer (ORPA) Low-Resolution Data Collection","description":"This collection contains Pioneer Venus Orbiter (PVO) Retarding Potential \n Analyzer (ORPA) low resolution key parameters at 12 second sampling data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-04","stop_date":"1992-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-lowres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-lowres/collection-data-lowres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:58.170996","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-orpa:data-photo-electron::1.0","title":"PVO Retarding Potential Analyzer (ORPA) Photo Electron Data Collection","description":"This product collection contains Pioneer Venus Orbiter (PVO) retarding potential \n analyzer (ORPA) high resolution suprathermal electrons data files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-photo-electron/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-photo-electron/collection-data-photo-electron-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:59.483286","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-orpa:data-thermal-electron::1.0","title":"PVO Retarding Potential Analyzer (ORPA) Thermal Electron Data Collection","description":"This product collection contains files containing Pioneer Venus Orbiter (PVO) \n retarding potential analyzer (ORPA) high resolution thermal electrons data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-thermal-electron/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-thermal-electron/collection-data-thermal-electron-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:00.981979","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-orpa:document::1.0","title":"PVO Retarding Potential Analyzer (ORPA) Document Collection","description":"This collection contains the document files associated with the\n PVO Retarding Potential Analyzer (ORPA) Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-04","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/document/collection-pvo-orpa-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:01.974856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr::1.0","title":"Pioneer Venus Orbiter (PVO) Supplemental Experimenter Data Records (SEDR) Bundle","description":"This bundle contains PVO Supplemental Experimenter Data Records (SEDR) data. The \n data provided include spacecraft attitude, spacecraft ephemeris, tape label (logistic), \n pulse time, corrected pulse time, spin period, and selected roll reference data files.\n\n This data was previously released as PDS3 data in\n \n PVO-V-POS-6-SEDR-ORBITATTITUDE--V1.0 (https://doi.org/10.17189/1519831).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/bundle-pvo-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:03.492699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr:data-att::1.0","title":"PVO SEDR Spacecraft Attitude Data Collection","description":"This collection contains files which consists of records \n of spacecraft attitude dat. Each record consists of a \n time tag and the celestial latitude and longitude of the \n spacecraft.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-att/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-att/collection-data-att-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:04.708358","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr:data-ephem::1.0","title":"PVO SEDR Spacecraft Ephemeris Data Collection","description":"This collection contains spacecraft ephemeris data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-ephem/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-ephem/collection-data-ephem-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:06.294179","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr:data-log::1.0","title":"PVO SEDR Tape Label (Logistic) Data Collection","description":"This collection contains SEDR tape label (logistic) data files,\n 1 file per orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-log/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-log/collection-data-log-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:07.772692","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr:data-pt-corr::1.0","title":"PVO SEDR Corrected Pulse Time Data Collection","description":"This collections contains UCLA corrected pulse time data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"0002-12-31","stop_date":"2055-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-pt-corr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-pt-corr/collection-data-pt-corr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:09.043972","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr:data-pt::1.0","title":"PVO SEDR Pulse Time Data Collection","description":"This collection contains original SEDR pulse time data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-pt/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-pt/collection-data-pt-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:10.423393","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr:data-spin::1.0","title":"PVO SEDR Spin Period Data Collection","description":"This collection contains spacecraft spin period data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-spin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-spin/collection-data-spin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:11.985974","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr:data-srr::1.0","title":"PVO SEDR Selected Roll Reference Data Collection","description":"This collection contains SEDR selected roll reference data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-srr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-srr/collection-data-srr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:12.990565","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-sedr:document::1.0","title":"Pioneer Venus Orbiter (PVO) Supplemental Experimenter Data Records (SEDR) Document Collection","description":"This collection contains the document files associated with the \n Pioneer Venus Orbiter (PVO) Supplemental Experimenter Data \n Records (SEDR) Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/document/collection-pvo-sedr-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:13.989153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OEFD-3--EFIELD-HIRES-V1.0","title":"PVO V OEFD 3 EFIELD HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OEFD-3--EFIELD-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:14.538584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OEFD-4--EFIELD-24SEC-V1.0","title":"PVO V OEFD 4 EFIELD 24SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OEFD-4--EFIELD-24SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:15.035808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OETP-3-HIRESELECTRONS-V1.0","title":"PVO V OETP 3 HIRESELECTRONS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OETP-3-HIRESELECTRONS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:15.545853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OETP-5-BOWSHOCKLOCATION-V1.0","title":"PVO V OETP 5 BOWSHOCKLOCATION V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OETP-5-BOWSHOCKLOCATION-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:16.036446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OETP-5-IONOPAUSELOCATION-V1.0","title":"PVO V OETP 5 IONOPAUSELOCATION V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OETP-5-IONOPAUSELOCATION-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:16.492355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OETP-5-LORESELECTRONS-V1.0","title":"PVO V OETP 5 LORESELECTRONS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OETP-5-LORESELECTRONS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:17.036248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OETP-5-SOLAREUV-24HRAVG-V1.0","title":"PVO V OETP 5 SOLAREUV 24HRAVG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OETP-5-SOLAREUV-24HRAVG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:17.541791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OIMS-3-IONDENSITY-HIRES-V1.0","title":"PVO V OIMS 3 IONDENSITY HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OIMS-3-IONDENSITY-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:18.072321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OIMS-4-IONDENSITY-12S-V1.0","title":"PVO V OIMS 4 IONDENSITY 12S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OIMS-4-IONDENSITY-12S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:18.595493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OMAG-3--SCCOORDS-HIRES-V2.0","title":"PVO V OMAG 3 SCCOORDS HIRES V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OMAG-3--SCCOORDS-HIRES-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:19.131491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OMAG-3-P-SENSOR-HIRES-V2.0","title":"PVO V OMAG 3 P SENSOR HIRES V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OMAG-3-P-SENSOR-HIRES-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:19.529032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OMAG-4--SCCOORDS-24SEC-V2.0","title":"PVO V OMAG 4 SCCOORDS 24SEC V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OMAG-4--SCCOORDS-24SEC-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:20.052755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-OMAG-4-P-SENSOR-24SEC-V2.0","title":"PVO V OMAG 4 P SENSOR 24SEC V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OMAG-4-P-SENSOR-24SEC-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:20.579924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ONMS-3-NEUTRALDENSITY-HIRES-V1.0","title":"PVO V ONMS 3 NEUTRALDENSITY HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ONMS-3-NEUTRALDENSITY-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:21.102619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ONMS-3-SUPERTHRMLOXYGN-HIRES-V1.0","title":"PVO V ONMS 3 SUPERTHRMLOXYGN HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ONMS-3-SUPERTHRMLOXYGN-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:21.627444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ONMS-4-IONMAXCOUNTRATE-12SEC-V1.0","title":"PVO V ONMS 4 IONMAXCOUNTRATE 12SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ONMS-4-IONMAXCOUNTRATE-12SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:22.035849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ONMS-4-NEUTRALDENSITY-12SEC-V1.0","title":"PVO V ONMS 4 NEUTRALDENSITY 12SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ONMS-4-NEUTRALDENSITY-12SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:22.737597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ONMS-4-SUPERTHRMLOXYGN-12SEC-V1.0","title":"PVO V ONMS 4 SUPERTHRMLOXYGN 12SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ONMS-4-SUPERTHRMLOXYGN-12SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:23.049173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ONMS-4-THERMALION-12SEC-V1.0","title":"PVO V ONMS 4 THERMALION 12SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ONMS-4-THERMALION-12SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:23.528445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ONMS-5-SUPERTHERMALIONLOC-V1.0","title":"PVO V ONMS 5 SUPERTHERMALIONLOC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ONMS-5-SUPERTHERMALIONLOC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:24.040545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ORPA-2--IVCURVES-HIRES-V1.0","title":"PVO V ORPA 2 IVCURVES HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ORPA-2--IVCURVES-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:24.543609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ORPA-5-ELE_ION_PHOTO_UADS-V1.0","title":"PVO V ORPA 5 ELE ION PHOTO UADS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ORPA-5-ELE_ION_PHOTO_UADS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:25.136188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-ORSE-1-ODR-OPENLOOP--V1.0","title":"PVO V ORSE 1 ODR OPENLOOP V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ORSE-1-ODR-OPENLOOP--V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:25.545019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-POS-5--VSOCOORDS-12SEC-V1.0","title":"PVO V POS 5 VSOCOORDS 12SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-POS-5--VSOCOORDS-12SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:26.007242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PVO-V-POS-6-SEDR-ORBITATTITUDE--V1.0","title":"PVO V POS 6 SEDR ORBITATTITUDE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-POS-6-SEDR-ORBITATTITUDE--V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:26.596141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-aj4co-dps::2.0","title":"Radio JOVE Station AJ4CO DPS Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the AJ4CO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":[],"start_date":"2013-09-26","stop_date":"2022-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/bundle_radiojove_aj4co_dps_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:28.082437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-aj4co-dps:data::2.0","title":"Radio JOVE Station AJ4CO DPS Data Collection","description":"Radio JOVE Station AJ4CO DPS data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station AJ4CO Receiver"],"instrument_hosts":["Aj4Co"],"data_types":["Data"],"start_date":"2013-09-26","stop_date":"2022-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/data/collection_data_aj4co_dps_v2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:29.035126","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-aj4co-dps:document::1.2","title":"Radio JOVE AJ4CO DPS Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE AJ4CO DPS Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":["Document"],"start_date":"2013-09-26","stop_date":"2022-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:30.083465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-aj4co-fs200::2.0","title":"Radio JOVE Station AJ4CO FS200 Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the AJ4CO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":[],"start_date":"2014-01-01","stop_date":"2016-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/bundle_radiojove_aj4co_fs200_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:31.588503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-aj4co-fs200:data::2.0","title":"Radio JOVE Station AJ4CO FS200 Data Collection","description":"Radio JOVE Station AJ4CO FS200 data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station AJ4CO Receiver"],"instrument_hosts":["Aj4Co"],"data_types":["Data"],"start_date":"2014-01-02","stop_date":"2016-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/data/collection_data_aj4co_fs200_v2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:32.542404","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-aj4co-fs200:document::1.2","title":"Radio JOVE AJ4CO FS200 Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE AJ4CO FS200 Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":["Document"],"start_date":"2014-01-01","stop_date":"2016-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:33.526376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-hnrao-fsx2raw::1.11","title":"Radio JOVE Station HNRAO FSX2 Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations \n made at the HNRAO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":[],"start_date":"2016-12-01","stop_date":"2018-01-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/bundle_radiojove_hnrao_fsx2raw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:35.024368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-hnrao-fsx2raw:data::1.1","title":"Radio JOVE Station HNRAO FSX2 Raw Data Collection","description":"Radio JOVE Station HNRAO FSX2 Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station HNRAO Receivers"],"instrument_hosts":["Aj4Co"],"data_types":["Data"],"start_date":"2016-12-01","stop_date":"2018-01-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/data/collection_data_hnrao_fsx2raw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:36.048444","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-hnrao-fsx2raw:document::1.1","title":"Radio JOVE HNRAO FSX2 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE HNRAO FSX2 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":["Document"],"start_date":"2016-12-01","stop_date":"2018-01-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:37.046429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-hnrao-fsx8sraw::1.11","title":"Radio JOVE Station HNRAO FSX8S Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations \n made at the HNRAO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Hnrao"],"data_types":[],"start_date":"2016-01-20","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/bundle_radiojove_hnrao_fsx8sraw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:38.549838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-hnrao-fsx8sraw:data::1.1","title":"Radio JOVE Station HNRAO FSX8S Raw Data Collection","description":"Radio JOVE Station HNRAO FSX8S Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station HNRAO Receivers"],"instrument_hosts":["Hnrao"],"data_types":["Data"],"start_date":"2016-01-20","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/data/collection_data_hnrao_fsx8sraw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:39.535855","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-hnrao-fsx8sraw:document::1.1","title":"Radio JOVE HNRAO FSX8S Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE HNRAO FSX8S Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Hnrao"],"data_types":["Document"],"start_date":"2016-01-20","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:40.591883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw::2.0","title":"Radio JOVE Station K4LED FSX11 Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":[],"start_date":"2018-06-01","stop_date":"2021-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/bundle_radiojove_k4led_fsx11_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:42.073804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw:data::2.0","title":"Radio JOVE Station K4LED FSX11 Raw Data Collection","description":"Radio JOVE Station K4LED FSX11 Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station K4LED Receivers"],"instrument_hosts":["K4Led"],"data_types":["Data"],"start_date":"2018-06-01","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/data/collection_data_k4led_fsx11_raw_v2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:43.123112","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw:document::1.1","title":"Radio JOVE K4LED FSX11 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE K4LED FSX11 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":["Document"],"start_date":"2018-06-01","stop_date":"2021-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:44.061762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrlcp-raw::2.0","title":"Radio JOVE Station K4LED SDRLCP Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":[],"start_date":"2018-06-01","stop_date":"2021-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/bundle_radiojove_k4led_sdrlcp_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:45.564320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrlcp-raw:data::1.1","title":"Radio JOVE Station K4LED SDRLCP Raw Data Collection","description":"Radio JOVE Station K4LED SDRLCP Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station K4LED Receivers"],"instrument_hosts":["K4Led"],"data_types":["Data"],"start_date":"2018-06-01","stop_date":"2018-12-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/data/collection_data_k4led_sdrlcpraw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:46.554605","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrlcp-raw:document::1.1","title":"Radio JOVE K4LED FSX11 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE K4LED FSX11 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":["Document"],"start_date":"2018-06-01","stop_date":"2021-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:47.589524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrrcp-raw::2.0","title":"Radio JOVE Station K4LED SDRRCP Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":[],"start_date":"2018-06-01","stop_date":"2022-09-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/bundle_radiojove_k4led_sdrrcp_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:49.063811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrrcpraw:data::2.0","title":"Radio JOVE Station K4LED SDRRCP Raw Data Collection","description":"Radio JOVE Station K4LED SDRRCP Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station K4LED Receivers"],"instrument_hosts":["K4Led"],"data_types":["Data"],"start_date":"2018-06-01","stop_date":"2021-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/data/collection_data_k4led_sdrrcpraw_v2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:50.234122","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw:document::1.1","title":"Radio JOVE K4LED FSX11 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE K4LED FSX11 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":["Document"],"start_date":"2018-06-01","stop_date":"2022-09-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:51.225323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw::1.0","title":"Radio JOVE Station LGM FSX12 Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the LGM Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Lgm"],"data_types":[],"start_date":"2012-11-12","stop_date":"2017-07-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/bundle_radiojove_lgm_fsx12_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:52.725335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw:data::1.0","title":"Radio JOVE Station LGM FSX12 Raw Data Collection","description":"Radio JOVE Station LGM FSX12 Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station LGM Receivers"],"instrument_hosts":["Lgm"],"data_types":["Data"],"start_date":"2012-11-12","stop_date":"2017-07-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/data/collection_data_lgm_fsx12_raw_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:53.721125","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw:document::1.0","title":"Radio JOVE LGM FSX12 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE LGM FSX12 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Lgm"],"data_types":["Document"],"start_date":"2012-11-12","stop_date":"2017-07-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:54.741836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-lgm-fsx1s-raw::1.0","title":"Radio JOVE Station LGM FSX1s Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the LGM Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"2017-08-01","stop_date":"2018-06-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/bundle_radiojove_lgm_fsx1s_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:56.307927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-lgm-fsx1s-raw:data::1.0","title":"Radio JOVE Station LGM FSX1S Raw Data Collection","description":"Radio JOVE Station LGM FSX1S Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station LGM Receivers"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2017-08-01","stop_date":"2018-06-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/data/collection_data_lgm_fsx1s_raw_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:57.277963","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw:document::1.0","title":"Radio JOVE LGM FSX12 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE LGM FSX12 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"2017-08-01","stop_date":"2018-06-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:58.327219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-mtsu-fsx6sraw::1.11","title":"Radio JOVE MTSU Station FSX6S Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations \n made at the Middle Tennessee State University (MTSU) observatory as part \n of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Mtsu"],"data_types":[],"start_date":"2016-01-01","stop_date":"2019-09-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/bundle_radiojove_mtsu_fsx6sraw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:59.755287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-mtsu-fsx6sraw:data::1.1","title":"Radio JOVE MTSU Station FSX6S Raw Data Collection","description":"Radio JOVE MTSU Station FSX6S Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["MTSU Station Receivers"],"instrument_hosts":["Mtsu"],"data_types":["Data"],"start_date":"2016-01-01","stop_date":"2019-09-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/data/collection_data-mtsu_fsx6sraw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:00.755371","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-mtsu-fsx6s:document::1.1","title":"Radio JOVE MTSU FSX6S Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE MTSU FSX6S Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Mtsu"],"data_types":["Document"],"start_date":"2016-01-01","stop_date":"2019-09-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:01.763687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SUISEI-C-ESP-3-RDR-HALLEY-V1.0","title":"SUISEI C ESP 3 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/SUISEI-C-ESP-3-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:02.310401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-D-UDDS-5-DUST-V3.1","title":"ULY D UDDS 5 DUST V3.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-D-UDDS-5-DUST-V3.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:02.784124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-COSPIN-AT-4-FLUX-256SEC-V1.0","title":"ULY J COSPIN AT 4 FLUX 256SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-COSPIN-AT-4-FLUX-256SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:03.261763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-COSPIN-HET-3-RDR-FLUX-HIRES-V1.0","title":"ULY J COSPIN HET 3 RDR FLUX HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-COSPIN-HET-3-RDR-FLUX-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:03.833938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-COSPIN-HFT-3-RDR-FLUX-HIRES-V1.0","title":"ULY J COSPIN HFT 3 RDR FLUX HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-COSPIN-HFT-3-RDR-FLUX-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:04.266593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-COSPIN-KET-3-RDR-INTENS-HIRES-V1.0","title":"ULY J COSPIN KET 3 RDR INTENS HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-COSPIN-KET-3-RDR-INTENS-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:04.780172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-COSPIN-KET-3-RDR-RAW-HIRES-V1.0","title":"ULY J COSPIN KET 3 RDR RAW HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-COSPIN-KET-3-RDR-RAW-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:05.277345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-COSPIN-LET-3-RDR-FLUX-32SEC-V1.0","title":"ULY J COSPIN LET 3 RDR FLUX 32SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-COSPIN-LET-3-RDR-FLUX-32SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:05.757470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-ALL-CHAN-1HR-V1.0","title":"ULY J EPAC 4 SUMM ALL CHAN 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-ALL-CHAN-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:06.279215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-OMNI-ELE-FLUX-1HR-V1.0","title":"ULY J EPAC 4 SUMM OMNI ELE FLUX 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-OMNI-ELE-FLUX-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:06.847931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-OMNI-PRO-FLUX-1HR-V1.0","title":"ULY J EPAC 4 SUMM OMNI PRO FLUX 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-OMNI-PRO-FLUX-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:07.337112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-PHA-24HR-V1.0","title":"ULY J EPAC 4 SUMM PHA 24HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-PHA-24HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:07.908165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-PRTL2-FLUX-1HR-V1.0","title":"ULY J EPAC 4 SUMM PRTL2 FLUX 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-PRTL2-FLUX-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:08.293688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-PRTL3-FLUX-1HR-V1.0","title":"ULY J EPAC 4 SUMM PRTL3 FLUX 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-PRTL3-FLUX-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:08.817636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-PSTL1-FLUX-1HR-V1.0","title":"ULY J EPAC 4 SUMM PSTL1 FLUX 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-PSTL1-FLUX-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:09.343040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-PSTL2-FLUX-1HR-V1.0","title":"ULY J EPAC 4 SUMM PSTL2 FLUX 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-PSTL2-FLUX-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:09.868346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-PSTL3-FLUX-1HR-V1.0","title":"ULY J EPAC 4 SUMM PSTL3 FLUX 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-PSTL3-FLUX-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:10.279172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPAC-4-SUMM-PSTL4-FLUX-1HR-V1.0","title":"ULY J EPAC 4 SUMM PSTL4 FLUX 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPAC-4-SUMM-PSTL4-FLUX-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:10.764380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-EPHEM-6-SUMM-SYS3_ECL50-V1.0","title":"ULY J EPHEM 6 SUMM SYS3 ECL50 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-EPHEM-6-SUMM-SYS3_ECL50-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:11.280779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-GAS-5-SKY-MAPS-V1.0","title":"ULY J GAS 5 SKY MAPS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-GAS-5-SKY-MAPS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:11.834245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-GRB-2-RDR-RAW-COUNT-RATE-V1.0","title":"ULY J GRB 2 RDR RAW COUNT RATE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-GRB-2-RDR-RAW-COUNT-RATE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:12.283352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-GWE-8-NULL-RESULTS-V1.0","title":"ULY J GWE 8 NULL RESULTS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-GWE-8-NULL-RESULTS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:12.767721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-HISCALE-4-SUMM-DE-V1.0","title":"ULY J HISCALE 4 SUMM DE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-HISCALE-4-SUMM-DE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:13.273365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-HISCALE-4-SUMM-LEFS150-V1.0","title":"ULY J HISCALE 4 SUMM LEFS150 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-HISCALE-4-SUMM-LEFS150-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:14.972668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-HISCALE-4-SUMM-LEFS60-V1.0","title":"ULY J HISCALE 4 SUMM LEFS60 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-HISCALE-4-SUMM-LEFS60-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:15.112650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-HISCALE-4-SUMM-LEMS120-V1.0","title":"ULY J HISCALE 4 SUMM LEMS120 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-HISCALE-4-SUMM-LEMS120-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:15.635958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-HISCALE-4-SUMM-LEMS30-V1.0","title":"ULY J HISCALE 4 SUMM LEMS30 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-HISCALE-4-SUMM-LEMS30-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:16.161463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-HISCALE-4-SUMM-W-V1.0","title":"ULY J HISCALE 4 SUMM W V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-HISCALE-4-SUMM-W-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:16.575411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-HISCALE-4-SUMM-WARTD-V1.0","title":"ULY J HISCALE 4 SUMM WARTD V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-HISCALE-4-SUMM-WARTD-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:17.070356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-SCE-1-ROCC-V1.0","title":"ULY J SCE 1 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-SCE-1-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:17.574928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-SCE-1-TDF-V1.0","title":"ULY J SCE 1 TDF V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-SCE-1-TDF-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:18.085108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-SCE-3-RDR-DOPPLER-HIRES-V1.0","title":"ULY J SCE 3 RDR DOPPLER HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-SCE-3-RDR-DOPPLER-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:18.579245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-SCE-4-SUMM-RANGING-10MIN-V1.0","title":"ULY J SCE 4 SUMM RANGING 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-SCE-4-SUMM-RANGING-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:19.059452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-SWICS-8-NO-DATA-V1.0","title":"ULY J SWICS 8 NO DATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-SWICS-8-NO-DATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:19.559731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-SWOOPS-5-RDR-PLASMA-HIRES-V1.0","title":"ULY J SWOOPS 5 RDR PLASMA HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-SWOOPS-5-RDR-PLASMA-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:20.082117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-PFR-AVG-E-10MIN-V1.0","title":"ULY J URAP 4 SUMM PFR AVG E 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-PFR-AVG-E-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:20.629411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-PFR-PEAK-E-10MIN-V1.0","title":"ULY J URAP 4 SUMM PFR PEAK E 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-PFR-PEAK-E-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:21.074088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-RAR-AVG-E-10MIN-V1.0","title":"ULY J URAP 4 SUMM RAR AVG E 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-RAR-AVG-E-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:21.580883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-RAR-AVG-E-144S-V1.0","title":"ULY J URAP 4 SUMM RAR AVG E 144S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-RAR-AVG-E-144S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:22.099750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-RAR-PEAK-E-10MIN-V1.0","title":"ULY J URAP 4 SUMM RAR PEAK E 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-RAR-PEAK-E-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:22.591595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-WFA-AVG-B-10MIN-V1.0","title":"ULY J URAP 4 SUMM WFA AVG B 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-WFA-AVG-B-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:23.139865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-WFA-AVG-E-10MIN-V1.0","title":"ULY J URAP 4 SUMM WFA AVG E 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-WFA-AVG-E-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:23.600377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-WFA-PEAK-B-10MIN-V1.0","title":"ULY J URAP 4 SUMM WFA PEAK B 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-WFA-PEAK-B-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:24.115288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-URAP-4-SUMM-WFA-PEAK-E-10MIN-V1.0","title":"ULY J URAP 4 SUMM WFA PEAK E 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-WFA-PEAK-E-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:24.683138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ULY-J-VHM_FGM-4-SUMM-JGCOORDS-60S-V1.0","title":"ULY J VHM FGM 4 SUMM JGCOORDS 60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-VHM_FGM-4-SUMM-JGCOORDS-60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:25.169932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle::1.0","title":"Ulysses Mission Bundle","description":"This bundle contains the Ulysses Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Cospin At","Cospin Het","Cospin Hft","Cospin Ket","Cospin Let","Epac","Gas","Grb","Gwe","Hiscale","Sce","Swics","Swoops","Udds","Urap","Vhm Fgm","Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope","EPAC-Energetic Particle Composition Instrument","GAS-Interstellar Neutral Gas Instrument","GRB-Solar X-Ray/Cosmic Gamma Ray Burst Instrument","GWE-Gravitational Wave Experiment Instrument","HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at LW ENER","SCE-Solar Corona Experiment","SWICS-Solar Wind Ion Composition Spectrometer","SWOOPS-Solar Wind Observations Over the Poles of the Sun","UDDS-Ulysses Dust Detection System","URAP-Unified Radio and Plasma Wave Experiment","VHM-FGM Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/bundle-ulysses.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:26.651172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-cospin::1.0","title":"Ulysses Cospin Document Collection","description":"This collection contains documents associated with the Ulysses Cospin Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-cospin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-cospin/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:27.586486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-epac::1.0","title":"Ulysses EPAC Document Collection","description":"This collection contains documents associated with the Ulysses EPAC Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-epac/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-epac/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:28.593023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-gas::1.0","title":"Ulysses GAS Document Collection","description":"This collection contains documents associated with the Ulysses GAS Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-gas/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-gas/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:29.588547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-grb::1.0","title":"Ulysses GRB-Gamma Ray Burst Document Collection","description":"This collection contains documents associated with the Ulysses GRB Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar X-Ray/Cosmic Gamma Ray Burst Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-grb/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-grb/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:30.591067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-hiscale::1.0","title":"Ulysses HISCALE Document Collection","description":"This collection contains documents associated with the Ulysses HISCALE Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at LW ENER"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-hiscale/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-hiscale/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:31.594395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-mag::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometers Document Collection","description":"This collection contains documents associated with the Ulysses MAG Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-mag/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:32.589840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-mission::1.0","title":"Ulysses Mission Document Collection","description":"This collection contains documents associated with the Ulysses bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope","EPAC-Energetic Particle Composition Instrument","HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at LW ENER","SWOOPS-Solar Wind Observations Over the Pools of the Sun","URAP - Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-mission/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-mission/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:33.595040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-sce::1.0","title":"Ulysses SCE Document Collection","description":"This collection contains documents associated with the Ulysses SCE Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar Corona Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-sce/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-sce/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:34.598630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-swoops::1.0","title":"Ulysses SWOOPS Document Collection","description":"This collection contains documents associated with the Ulysses SWOOPS Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["SWOOPS-Solar Wind Observations Over the Pools of the Sun"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-swoops/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-swoops/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:35.643463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle:document-urap::1.0","title":"Ulysses URAP Document Collection","description":"This collection contains documents associated with the Ulysses URAP Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-urap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-urap/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:36.675613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin::1.1","title":"Ulysses Jupiter Encounter Cospin Bundle","description":"This bundle contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin At","Cospin Het","Cospin Hft","Cospin Ket","Cospin Let","Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-24","stop_date":"1992-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/bundle-ulysses-cospin-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:38.182069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin:data-at::1.0","title":"Ulysses Jupiter Encounter Cospin Anisotropy Telescope (AT) Flux Data Collection","description":"This collection contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Anisotropy Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-at/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-at/collection_data_at_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:39.106471","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin:data-het::1.1","title":"Ulysses Jupiter Encounter Cospin High Energy Telescope (HET) Flux Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive). All data on this volume \n are from the High Energy Telescope (HET) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-High Energy Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-het/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-het/collection_data_het_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:40.114941","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin:data-hft::1.0","title":"Ulysses Jupiter Encounter Cospin High Flux Telescope (HFT) Flux Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-18 (days 25-48 inclusive). All data on this volume \n are from the High Flux Telescope (HFT) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-High Flux Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-hft/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-hft/collection_data_hft_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:41.101394","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin:data-ket-intensity::1.0","title":"Ulysses Jupiter Encounter Cospin Kiel Electron Telescope (KET) Intensity Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-24 to 1992-02-17 (days 25-48 inclusive). All data on this volume \n are from the Kiel Electron Telescope (KET) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Kiel Electron Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-24","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-ket-intensity/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-ket-intensity/collection_data_ket_intensity_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:42.116629","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin:data-ket-raw::1.0","title":"Ulysses Jupiter Encounter Cospin Kiel Electron Telescope (KET) Raw Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-24 to 1992-02-17 (days 25-48 inclusive). All data on this volume \n are from the Kiel Electron Telescope (KET) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Kiel Electron Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-24","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-ket-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-ket-raw/collection_data_ket_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:43.118707","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin:data-let::1.0","title":"Ulysses Jupiter Encounter Cospin Low Energy Telescope (LET) Flux Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive). All data on this volume \n are from the Low Energy Telescope (LET) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Low Energy Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-let/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-let/collection_data_let_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:44.107137","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin:document::1.0","title":"Ulysses Jupiter Encounter Cospin Document Collection","description":"This bundle contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive)","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin At","Cospin Het","Cospin Hft","Cospin Ket","Cospin Let","Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope"],"instrument_hosts":["Ulysses","Uly"],"data_types":["Document"],"start_date":"1992-01-24","stop_date":"1992-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/document/collection_document_cospin_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:45.145213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac::1.0","title":"Ulysses EPAC Bundle","description":"This bundle contains Ulysses Energetic Particle Composition Experiment (EPAC) \n 1 hour averaged onmi-directional, sectored, electron and proton flux data \n as well as 1 day pulse height analysis data. All data is from the Ulysses Jupiter \n Encounter 1992-Jan-25 to 1992-Feb-29.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Epac","EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/bundle-ulysses-epac-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:46.647874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac:data-all-channel::1.0","title":"Ulysses EPAC All Channels Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition Experiment (EPAC) \n 1 hour averaged proton and electron flux data from all data channels submitted \n from the Ulysses Jupiter encounter 1992-Jan-25 to 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-all-channel/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-all-channel/collection_data_all_channel_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:47.697890","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac:data-omni-electron-flux::1.0","title":"Ulysses EPAC Omni-Directional Electron Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) 1 hour averaged omni-directional electron \n flux data from the Ulysses Jupiter encounter 1992-Jan-25 to \n 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-omni-electron-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-omni-electron-flux/collection_data_omni_electron_flux_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:48.667933","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac:data-omni-proton-flux::1.0","title":"Ulysses EPAC Omni-Directional Proton Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) 1 hour averaged omni-directional proton flux \n data from the Ulysses Jupiter encounter 1992-Jan-25 to \n 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-omni-proton-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-omni-proton-flux/collection_data_omni_proton_flux_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:49.715667","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac:data-pha::1.0","title":"Ulysses Jupiter Encounter EPAC Pulse Height 24HR Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) pulse height analysis data in 1 day (24 hr) \n files. These data are provided as ASCII and Binary tables for the time period \n from 1992-Jan-25 to 1992-Feb-29.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-pha/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-pha/collection_data_pha_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:50.633168","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac:data-prtl::1.0","title":"Ulysses EPAC PRTL 2-3 Proton Rate Telescope Sectored Proton Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) 1 hour averaged sectored proton flux data \n from the Ulysses Jupiter encounter 1992-Jan-25 to 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-prtl/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-prtl/collection_data_prtl_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:51.625142","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac:data-pstl::1.0","title":"Ulysses EPAC Proton Spectral Telescopes 1-4 Sectored Proton Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) 1 hour averaged sectored proton flux data \n from the Ulysses Jupiter encounter 1992-Jan-25 to 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-pstl/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-pstl/collection_data_pstl_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:52.628179","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac:document::1.0","title":"Ulysses Jupiter Encounter EPAC Document Collection","description":"This bundle contains data submitted to the Planetary Data System (PDS) by \n the Ulysses EPAC investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-29.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/document/collection_document_epac_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:53.642024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-gas::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Bundle","description":"This bundle contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Gas","GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1991-07-22","stop_date":"1991-07-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/bundle-ulysses-gas-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:55.151178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-gas:browse-gif::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Browse Collection","description":"This collection contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Browse"],"start_date":"1991-07-22","stop_date":"1992-04-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/browse-gif/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/browse-gif/collection_browse_gif_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:56.178325","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-gas:browse-pdf::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Browse Collection","description":"This collection contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Browse"],"start_date":"1991-07-22","stop_date":"1992-04-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/browse-pdf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/browse-pdf/collection_browse_pdf_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:57.143083","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-gas:data::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Data Collection","description":"This collection contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-07-22","stop_date":"1992-04-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:58.179932","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-gas:document::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Document Collection","description":"This collection contains contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1991-07-22","stop_date":"1991-07-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:59.235645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-grb::1.0","title":"Ulysses Gamma Ray Burst Bundle","description":"This bundle contains data submitted to the Planetary Data System (PDS) by \n the Ulysses GRB investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Grb","Solar X-Ray/Cosmic Gamma Ray Burst Instrument for Ulysses"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/bundle-ulysses-grb-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:00.725607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-grb:data::1.0","title":"Ulysses Gamma Ray Burst Data Collection","description":"This collection contains data submitted to the Planetary Data System (PDS) by \n the Ulysses GRB investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar X-Ray/Cosmic Gamma Ray Burst Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:01.655617","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-grb:document::1.0","title":"Ulysses Gamma Ray Burst Document Collection","description":"This collection contains data submitted to the Planetary Data System (PDS) by \n the Ulysses GRB investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar X-Ray/Cosmic Gamma Ray Burst Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:02.661574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-hiscale::1.0","title":"Ulysses HISCALE Bundle","description":"This bundle consists of Ulysses Jupiter Encounter HISCALE data. These data \n include 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01), and \n 15 minute averaged encounter data (1992-02-02 to 1992-02-16).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Hiscale","HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/bundle-ulysses-hiscale-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:04.153480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-hiscale:data-aperature-counts::1.0","title":"Ulysses HISCALE Composition Aperature Counts Data Collection","description":"This collection contains HISCALE Composition Aperture (WARTD) electron and ion counts \n taken from 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01), and 15 minute \n averaged encounter data (1992-02-02 to 1992-02-16).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energy"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-aperature-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-aperature-counts/collection_data_aperature_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:05.152087","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-hiscale:data-deflected-counts::1.0","title":"Ulysses HISCALE Deflected Electron Counts Data Collection","description":"This collection contains HISCALE Deflected Electron (DE) measurements taken during \n from 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01), and 15 minute \n averaged encounter data (1992-02-02 to 1992-02-16).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-deflected-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-deflected-counts/collection_data_deflected_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:06.155456","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-hiscale:data-lefs-counts::1.0","title":"Ulysses HISCALE Low-Energy Foil Spectrometer (LEFS) Counts Data Collection","description":"This collection contains HISCALE Low-Energy Foil Spectrometer (LEFS) electron and ion counts \n at 60 and 150 degrees from the spacecraft spin axis during the Ulysses Jupiter Encounter 1 hour \n averaged inbound cruise data and 15 minute averaged encounter data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-lefs-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-lefs-counts/collection_data_lefs_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:07.159675","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-hiscale:data-lems-counts::1.0","title":"Ulysses HISCALE Low-Energy Magnetic Spectrometer (LEMS) Counts Data Collection","description":"This collection contains HISCALE Low-Energy Magnetic Spectrometer (LEMS) ion counts \n at 30 degrees from the spacecraft spin axis during the Ulysses Jupiter Encounter 1 hour averaged\n inbound cruise data, and 15 minute averaged encounter data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-lems-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-lems-counts/collection_data_lems_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:08.207671","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-hiscale:data-w-counts::1.0","title":"Ulysses HISCALE W Ion Counts Data Collection","description":"This collection contains HISCALE W ion counts from the spacecraft spin axis \n for 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01) and 15 minute\n averaged encounter data during the Ulysses Jupiter Encounter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-w-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-w-counts/collection_data_w_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:09.192396","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-hiscale:document::1.0","title":"Ulysses HISCALE Document Collection","description":"This document contains Ulysses Jupiter Encounter HISCALE data. These data \n include 1 hour averaged inbound cruise data and 15 minute averaged encounter \n data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/document/collection_document_hiscale_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:10.237114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-mag::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometer Bundle","description":"This bundle consists of Ulysses Jupiter Encounter Magnetometer data. These data\n include 1 minute averages of the magnetic field components and magnitude measured by \n either the VHM (Vector Helium Magnetometer) or the FGM (Fluxgate Magnetometer), for\n 1992-01-25T00:00:30Z to 1992-02-17T23:59:30Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vhm Fgm","Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/bundle-ulysses-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:11.735475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-mag:data::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometer Data Collection","description":"This collection contains the Ulysses Magnetic Field Experiment data. This data contains \n one minute averages of the magnetic field components and magnitude measured by \n the FGM (Fluxgate Magnetometer) or the VHM (Vector Helium Magnetometer).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:12.679562","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-mag:document::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometer Document Collection","description":"This collection contains the Ulysses Magnetic Field Experiment data. This data contains \n one minute averages of the magnetic field components and magnitude measured by \n the FGM (Fluxgate Magnetometer) or the VHM (Vector Helium Magnetometer).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:13.672143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-sce-derived::1.0","title":"Ulysses SCE-Solar Corona Experiment Derived Bundle","description":"This bundle contains the Ulysses Solar Corona Experient derived data. These \n data contain 10 minute averaged ranging data and high resolution doppler \n data from the Ulysses spacecraft occulation by the Io Plasma Torus (IPT) \n on 1992-02-05 and 1992-02-09.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Sce","Solar Corona Experiment"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-02-05","stop_date":"1992-02-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/bundle-ulysses-sce-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:15.187765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-sce-derived:data-all-range::1.0","title":"Ulysses Solar Corona Experiment 10 Minute Average Ranging Data Collection","description":"This collection contains Ulysses Jupiter Encounter Derived Solar Corona Experiment\n 10 minute averaged ranging data from the Ulysses spacecraft occulation \n by the Io Plasma Torus (IPT) during the Jupiter Encounter on 1992-02-05.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Solar Corona Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-02-05","stop_date":"1992-02-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/data-all-range/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/data-all-range/collection_data_all_range_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:16.192918","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-sce-derived:data-rdr-doppler::1.0","title":"Ulysses Solar Corona Experiment Doppler High Resolution Data Collection","description":"This collection contains Ulysses Jupiter Encounter Derived Solar Corona Experiment\n Doppler High Resolution data during the Io PLasma Torus occulation on\n 1992-02-08.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Solar Corona Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-02-08","stop_date":"1992-02-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/data-rdr-doppler/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/data-rdr-doppler/collection_data_rdr_doppler_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:17.185839","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-sce-derived:document::1.0","title":"Ulysses Derived Solar Corona Experiment Document Collection","description":"This collection contains the Ulysses Solar Corona Experient derived data. These \n data contain 10 minute averaged ranging data and high resolution doppler \n data from the Ulysses spacecraft occulation by the Io Plasma Torus (IPT) \n on 1992-02-05 and 1992-02-08.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Solar Corona Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-02-05","stop_date":"1992-02-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:18.190732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-swoops::1.0","title":"Ulysses SWOOPS Bundle","description":"This file contains Solar Wind Observations Over the Poles of the Sun (SWOOPS) \n plasma data submitted to the Planetary Data System (PDS) by the Ulysses SWOOPS\n investigators during the Ulysses Jupiter Encounter, 1992-01-25 to 1992-02-17.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Swoops","SWOOPS-Solar Wind Observations Over the Pools of the Sun"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/bundle-ulysses-swoops-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:19.685827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-swoops:data::1.0","title":"Ulysses SWOOPS Plasma Data Collection","description":"This collection contains Solar Wind Observations Over the Poles of the Sun (SWOOPS) \n plasma data submitted to the Planetary Data System (PDS) by the Ulysses SWOOPS \n investigators during the Ulysses Jupiter Encounter, 1992-01-25 to 1992-02-17.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["SWOOPS-Solar Wind Observations Over the Poles of the Sun"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:20.728960","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-swoops:document::1.0","title":"Ulysses SWOOPS Document Collection","description":"This collection contains Solar Wind Observations Over the Poles of the Sun (SWOOPS) \n plasma data submitted to the Planetary Data System (PDS) by the Ulysses SWOOPS investigators \n during the Ulysses Jupiter Encounter from 1992-01-25 to 1992-02-17.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["SWOOPS-Solar Wind Observations Over the Pools of the Sun"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:21.765908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-traj::1.0","title":"Ulysses Trajectory Bundle","description":"This collection contains two versions of spice trajectory data. The first version contains\n position and attitude data provided by Ulysses MAG team. The second version was generated at the \n PDS/PPI node (UCLA) which includes trajectory data and spacecraft local time.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/bundle-ulysses-traj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:23.269845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-traj:data::1.0","title":"Ulysses Trajectory Data Collection","description":"This collection contains two versions of trajectory data. TRJ25_48.TAB contains position and \n attitude data provided by Ulysses MAG team. The second version, SPK28_45.TAB, was generated at \n the PDS/PPI node (UCLA) which includes trajectory data and spacecraft local time.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:24.192993","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-traj:document::1.0","title":"Ulysses Trajectory Document Collection","description":"This collection contains two versions of trajectory data. The first version contains\n position and attitude data provided by Ulysses MAG team. The second version was generated at the \n PDS/PPI node (UCLA) which includes trajectory data and spacecraft local time.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/document/collection_document_traj_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:25.196245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap::1.0","title":"Ulysses URAP Bundle","description":"This bundle contains Ulysses Jupiter Cruise, Encounter and First Solar \n Orbit electric and magnetic field data. This data is gather in 10 minute periods\n and one 144 second periods all gather from the PFR, RAR and WFA instuments","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Urap","URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1991-10-27","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/bundle-ulysses-urap-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:26.711511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:browse::1.0","title":"Ulysses URAP Summary Plot Browse Collection","description":"This collection contains one day Ulysses URAP experiment data plotted \n in the form of dynamic spectra and observed FES evenets for the \n RAR, PFR and WFA instruments from 1991-11-26 to 1992-06-07.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Browse"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:27.713148","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-pfr-avg-e-10min::1.0","title":"Ulysses URAP PRF Averaged E-Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged electric field data over 10 minute periods for the Plasma \n Frequency Receiver (PFR) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-pfr-avg-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-pfr-avg-e-10min/collection_data_pfr_avg_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:28.721378","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-pfr-peak-e-10min::1.0","title":"Ulysses URAP PRF Peak E-Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit peak electric field data over 10 minute periods for the Plasma \n Frequency Receiver (PFR) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-pfr-peak-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-pfr-peak-e-10min/collection_data_pfr_peak_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:29.775609","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-rar-avg-e-10min::1.0","title":"Ulysses URAP RAR Averaged E-Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged electric field data over 10 minute periods for the Radio \n Astronomy Receiver (RAR) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-avg-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-avg-e-10min/collection_data_rar_avg_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:30.740964","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-rar-avg-e-144sec::1.0","title":"Ulysses URAP RAR Averaged E-Field 144 Second Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged electric field data over 144 second periods for the Radio \n Astronomy Receiver (RAR) for 1992-01-01T00:00:00Z to 1992-04-30T23:57:36Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-01","stop_date":"1992-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-avg-e-144sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-avg-e-144sec/collection_data_rar_avg_e_144sec.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:31.752715","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-rar-peak-e-10min::1.0","title":"Ulysses URAP RAR Peak E-Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit peak electric field data over 10 minute periods for the Radio \n Astronomy Receiver (RAR) for 1991-10-27T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-10-27","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-peak-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-peak-e-10min/collection_data_rar_peak_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:32.790961","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-wfa-avg-b-10min::1.0","title":"Ulysses URAP WFA Averaged Magnetic Field Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged magnetic field data over 10 minute periods for the Waveform \n Analyzer (WFA) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-avg-b-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-avg-b-10min/collection_data_wfa_avg_b_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:33.755682","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-wfa-avg-e-10min::1.0","title":"Ulysses URAP WFA Averaged Electric Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged electric field data over 10 minute periods for the Waveform \n Analyzer (WFA) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-avg-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-avg-e-10min/collection_data_wfa_avg_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:34.804561","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-wfa-peak-b-10min::1.0","title":"Ulysses URAP WFA Peak Magnetic Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit peak magnetic field data over 10 minute periods for the Waveform \n Analyzer (WFA) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-peak-b-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-peak-b-10min/collection_data_wfa_peak_b_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:35.730891","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:data-wfa-peak-e-10min::1.0","title":"Ulysses URAP WFA Peak Electric Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit peak electric field data over 10 minute periods for the Waveform \n Analyzer (WFA) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-peak-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-peak-e-10min/collection_data_wfa_peak_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:36.731255","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap:document::1.0","title":"Ulysses URAP Document Collection","description":"This collection consists of the documentation for the Unified Radio and Plasma \n Wave Experiment (URAP) PFR, RAR and WFA instruments during the Earth-Jupiter \n Cruise, Jupiter Encounter and First Solar Orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1991-10-27","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/document/collection_document_urap_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:37.750549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"V15_V16-V-ROE-5-OCC-ELECTRON-DENS-V1.0","title":"V15 V16 V ROE 5 OCC ELECTRON DENS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/V15_V16-V-ROE-5-OCC-ELECTRON-DENS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:38.256426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-MISCHA-3-RDR-HALLEY-V1.0","title":"VEGA1 C MISCHA 3 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA1-C-MISCHA-3-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:38.748698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-PM1-2-RDR-HALLEY-V1.0","title":"VEGA1 C PM1 2 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA1-C-PM1-2-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:39.271528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-SW-MISCHA-3-RDR-ORIGINAL-V1.0","title":"VEGA1 C SW MISCHA 3 RDR ORIGINAL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA1-C-SW-MISCHA-3-RDR-ORIGINAL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:39.756581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-TNM-2-RDR-HALLEY-V1.0","title":"VEGA1 C TNM 2 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA1-C-TNM-2-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:40.231530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-SW-MISCHA-3-RDR-CRUISE-V1.0","title":"VEGA1 SW MISCHA 3 RDR CRUISE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA1-SW-MISCHA-3-RDR-CRUISE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:40.747109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-PM1-2-RDR-HALLEY-V1.0","title":"VEGA2 C PM1 2 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA2-C-PM1-2-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:41.250741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-SW-MISCHA-3-RDR-ORIGINAL-V1.0","title":"VEGA2 C SW MISCHA 3 RDR ORIGINAL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA2-C-SW-MISCHA-3-RDR-ORIGINAL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:41.784250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:venera-roe-derived::1.0","title":"Venera 15 and 16 ROE Derived Ionospheric Electron Density Profiles Bundle","description":"This bundle contains ionospheric electron density profiles \n derived from the Venera 15 and 16 radio occultation experiment. \n These data cover 1983-10-12 to 1983-11-01 at various \n occultation locations.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venera 15 And 16","Venera 15 and 16"],"targets":["Venus"],"instruments":["Roe","Roe","Radio Occultation Experiment (ROE)"],"instrument_hosts":["Venera 15","Venera 16","V15","V16"],"data_types":[],"start_date":"1983-10-12","stop_date":"1983-11-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/bundle_venera_roe_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:43.272052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:venera-roe-derived:data-eds::1.0","title":"Venera 15 and 16 ROE Derived Electron Density Profiles Data Collection","description":"This collection contains ionospheric electron density profiles \n derived from the Venera 15 and 16 radio occultation experiment \n (ROE). These data cover 1983-10-12 to 1983-11-01 at various \n occultation locations.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venera 15 And 16","Venera 15 and 16"],"targets":["Venus"],"instruments":["Radio Occultation Experiment (ROE)"],"instrument_hosts":["Venera 15","Venera 16"],"data_types":["Data"],"start_date":"1983-10-12","stop_date":"1983-11-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/data-eds/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/data-eds/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:44.318825","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:venera-roe-derived:document::1.0","title":"Venera 15 and 16 ROE Derived Document Collection","description":"This collection contains the documents associated with the \n Venera 15 and 16 radio occultation experiment (ROE) ionospheric \n electron density profiles data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venera 15 And 16","Venera 15 and 16"],"targets":["Venus"],"instruments":["Radio Occultation Experiment (ROE)"],"instrument_hosts":["Venera 15","Venera 16"],"data_types":["Document"],"start_date":"1983-10-12","stop_date":"1983-11-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:45.290106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els-pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Data Bundle","description":"This is the Venus Express Analyzer of Space Plasma and Energetic\n Atoms, 4th edition Electron Spectrometer Pitch Angle Distribution \n Data Bundle. The data and documentation in this bundle were \n produced with funding from NASA Solar System Workings (SSW) 2019,\n grant #80NSSC21K0151.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["Aspera4 Els","ASPERA4-ELS"],"instrument_hosts":["VEX","Vex"],"data_types":[],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/bundle_vex-aspera4-els-pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:46.748069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els-pad:browse_pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Browse Collection","description":"This collection contains the browse pitch angle \n distribution products for the Venus Express ASPERA-4\n Electron Spectrometer PAD Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Browse"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/browse_pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/browse_pad/collection_browse_pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:47.753053","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els-pad:data_pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Data Collection","description":"This collection contains the pitch angle distribution data \n products for the Venus Express ASPERA-4 Electron Spectrometer \n PAD Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Data"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/data_pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/data_pad/collection_data_pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:48.769908","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els-pad:document_pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Document Collection","description":"This collection contains the document pitch angle \n distribution products for the Venus Express ASPERA-4\n Electron Spectrometer PAD Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Document"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/document_pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/document_pad/collection_document_pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:49.744323","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els-pad:miscellaneous_pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Miscellaneous Collection","description":"This collection contains the miscellaneous pitch angle \n distribution products for the Venus Express ASPERA-4\n Electron Spectrometer PAD Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Miscellaneous"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/miscellaneous_pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/miscellaneous_pad/collection_miscellaneous_pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:50.758592","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els::1.0","title":"VEx ASPERA-4 ELS Background Data Bundle","description":"This is the Venus Express Analyzer of Space Plasma and Energetic\n Atoms, 4th edition Electron Spectrometer Background Data Bundle.\n The data and documentation in this bundle were produced with \n funding from NASA Planetary Data Archiving, Restoration and Tools \n (PDART) 2016, grant #NNX17AL04G.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["Aspera4 Els","ASPERA4-ELS"],"instrument_hosts":["VEX","Vex"],"data_types":[],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/bundle_vex-aspera4-els_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:52.261470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els:data_derived::1.0","title":"VEx ASPERA-4 ELS Background Derived Data Collection","description":"This collection contains the derived data products for the Venus Express \n Electron Spectrometer Background Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Data"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_derived/collection_data_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:53.260072","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els:data_eng::1.0","title":"VEx ASPERA-4 ELS Background Engineering Data Collection","description":"This collection contains the engineering data for the Venus Express \n Electron Spectrometer Background Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Data"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_eng/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_eng/collection_data_eng_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:54.270356","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els:data_raw::1.0","title":"VEx ASPERA-4 ELS Background Raw Data Collection","description":"This collection contains the raw data products for the Venus Express \n Electron Spectrometer Background Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Data"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_raw/collection_data_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:55.335519","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els:document::1.0","title":"VEx ASPERA-4 ELS Background Data Document Collection","description":"This collection contains the documents associated with the Venus Express \n Electron Spectrometer Background Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Document"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:56.299780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-mag-high-res-cleaned::1.0","title":"Venus Express Cleaned High-Resolution 128 Hz Magnetic Field Data Bundle","description":"This bundle contains Venus Express cleaned high-resolution (128 Hz) magnetic field data \n acquired by the fluxgate magnetometer gradiometer onboard the Venus Express\n spacecraft. The data are expressed in Venus Solar Orbital (VSO) coordinates\n and Radial-East-North coordinates.\n \n This work was funded by a 2017 NASA ROSES SSW proposal. Grant number NNH17ZDA001N-SSW.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus Express"],"targets":["Venus"],"instruments":["Mag","Magnetometer"],"instrument_hosts":["Vex"],"data_types":[],"start_date":"2006-05-14","stop_date":"2014-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/bundle-vex-cleaned-high-res-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:57.872152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-mag-high-res-cleaned:data::1.0","title":"Venus Express Cleaned High-Resolution 128 Hz Magnetic Field Data Collection","description":"This collection contains Venus Express cleaned high-resolution (128 Hz) magnetic field data\n acquired by the fluxgate magnetometer gradiometer onboard the Venus Express\n spacecraft. The data are expressed in Venus Solar Orbital (VSO) coordinates\n and Radial-East-North coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express"],"targets":["Venus"],"instruments":["Magnetometer"],"instrument_hosts":["Vex"],"data_types":["Data"],"start_date":"2006-05-14","stop_date":"2014-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/data/collection-data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:58.775938","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-mag-high-res-cleaned:document::1.0","title":"Venus Express Cleaned High-Resolution 128 Hz Magnetic Field Data Document Collection","description":"This collection contains the documents associated with the Venus Express\n Cleaned High-Resolution 128 Hz Magnetic Field Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express"],"targets":["Venus"],"instruments":["Magnetometer"],"instrument_hosts":["Vex"],"data_types":["Document"],"start_date":"2006-05-14","stop_date":"2014-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:59.969532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux::1.0","title":"Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Bundle","description":"This bundle contains derived data from the Cosmic Ray\n Subsystem (CRS), which was designed for cosmic ray studies. It consists of two high Energy Telescopes (HET), four Low Energy\n Telescopes (LET) and The Electron Telescope (TET). These data were previously \n released as a PDS3 data set (VG1-J-CRS-5-SUMM-FLUX-V1.0, \n https://doi.org/10.17189/1519876).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Crs","Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/bundle-vg1-crs-jup-avg-flux-v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:01.439489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-electrons::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Electrons Collection","description":"This collection contains electron browse plots for the electron data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_electrons/collection-browse-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:02.457366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-ions::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Ions Collection","description":"This collection contains browse plots for the ion data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_ions/collection-browse-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:03.455257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-pulse-height::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Pulse Height Collection","description":"This collection contains browse plots for the pulse height data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle.\n The plot was generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_pulse_height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_pulse_height/collection-browse-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:04.461746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-electrons::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Electron Browse Data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_electrons/collection-data-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:05.502687","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-ions::1.0","title":"Voyager 1 Jupiter CRS Derived Ion Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Ion Browse Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_ions/collection-data-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:06.460062","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-pulse-height::1.0","title":"Voyager 1 Jupiter CRS Derived Pulse Height Ion Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Pulse Height Ion Browse Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_pulse_height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_pulse_height/collection-data-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:07.464692","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:document::1.0","title":"Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Document Collection","description":"This collection contains the document files associated with the Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:08.468707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-CRS-5-SUMM-FLUX-V1.0","title":"VG1 J CRS 5 SUMM FLUX V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-CRS-5-SUMM-FLUX-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:09.033742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG1 J LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:09.512683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-LECP-3-RDR-NEAR-ENC-400MSEC-V1.0","title":"VG1 J LECP 3 RDR NEAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-3-RDR-NEAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:10.043033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-LECP-3-RDR-STEP-3MIN-V1.0","title":"VG1 J LECP 3 RDR STEP 3MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-3-RDR-STEP-3MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:10.557803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-LECP-3-RDR-STEP-FAR-48SEC-V1.0","title":"VG1 J LECP 3 RDR STEP FAR 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-3-RDR-STEP-FAR-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:11.219630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-LECP-3-RDR-STEP-NEAR-48SEC-V1.0","title":"VG1 J LECP 3 RDR STEP NEAR 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-3-RDR-STEP-NEAR-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:11.541658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-LECP-4-SUMM-AVERAGE-15MIN-V1.1","title":"VG1 J LECP 4 SUMM AVERAGE 15MIN V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-4-SUMM-AVERAGE-15MIN-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:12.028259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-LECP-4-SUMM-SECTOR-15MIN-V1.1","title":"VG1 J LECP 4 SUMM SECTOR 15MIN V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-4-SUMM-SECTOR-15MIN-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:12.558830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0","title":"VG1 J MAG 4 SUMM HGCOORDS 1.92SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:13.076340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0","title":"VG1 J MAG 4 SUMM HGCOORDS 48.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:13.484416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0","title":"VG1 J MAG 4 SUMM HGCOORDS 9.60SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:13.962957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-MAG-4-SUMM-S3COORDS-1.92SEC-V1.1","title":"VG1 J MAG 4 SUMM S3COORDS 1.92SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-MAG-4-SUMM-S3COORDS-1.92SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:14.462636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1","title":"VG1 J MAG 4 SUMM S3COORDS 48.0SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:15.000672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-MAG-4-SUMM-S3COORDS-9.60SEC-V1.1","title":"VG1 J MAG 4 SUMM S3COORDS 9.60SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-MAG-4-SUMM-S3COORDS-9.60SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:15.485420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PLS-5-SUMM-ELE-MOM-96.0SEC-V1.1","title":"VG1 J PLS 5 SUMM ELE MOM 96.0SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PLS-5-SUMM-ELE-MOM-96.0SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:15.984677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PLS-5-SUMM-ION-INBNDSWIND-96S-V1.0","title":"VG1 J PLS 5 SUMM ION INBNDSWIND 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1","Wind"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PLS-5-SUMM-ION-INBNDSWIND-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:16.489017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PLS-5-SUMM-ION-L-MODE-96S-V1.0","title":"VG1 J PLS 5 SUMM ION L MODE 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PLS-5-SUMM-ION-L-MODE-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:16.991503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PLS-5-SUMM-ION-M-MODE-96S-V1.0","title":"VG1 J PLS 5 SUMM ION M MODE 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PLS-5-SUMM-ION-M-MODE-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:17.525670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PLS-5-SUMM-ION-MOM-96.0SEC-V1.1","title":"VG1 J PLS 5 SUMM ION MOM 96.0SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PLS-5-SUMM-ION-MOM-96.0SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:17.991495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-POS-6-SUMM-HGCOORDS-V1.0","title":"VG1 J POS 6 SUMM HGCOORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-POS-6-SUMM-HGCOORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:18.475274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-POS-6-SUMM-S3COORDS-V1.1","title":"VG1 J POS 6 SUMM S3COORDS V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-POS-6-SUMM-S3COORDS-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:18.997560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PRA-3-RDR-LOWBAND-6SEC-V1.0","title":"VG1 J PRA 3 RDR LOWBAND 6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PRA-3-RDR-LOWBAND-6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:19.509770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PRA-4-SUMM-BROWSE-48SEC-V1.0","title":"VG1 J PRA 4 SUMM BROWSE 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PRA-4-SUMM-BROWSE-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:20.009241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PWS-2-RDR-SA-4.0SEC-V1.1","title":"VG1 J PWS 2 RDR SA 4.0SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PWS-2-RDR-SA-4.0SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:20.508646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PWS-4-SUMM-SA-48.0SEC-V1.1","title":"VG1 J PWS 4 SUMM SA 48.0SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PWS-4-SUMM-SA-48.0SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:21.038189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J-PWS-5-DDR-ELE-DENSITY-1S-V1.0","title":"VG1 J PWS 5 DDR ELE DENSITY 1S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-PWS-5-DDR-ELE-DENSITY-1S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:21.603432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J_S_SS-PWS-1-EDR-WFRM-60MS-V1.0","title":"VG1 J S SS PWS 1 EDR WFRM 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J_S_SS-PWS-1-EDR-WFRM-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:22.080952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J_S_SS-PWS-2-RDR-SAFULL-V1.0","title":"VG1 J S SS PWS 2 RDR SAFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J_S_SS-PWS-2-RDR-SAFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:22.561892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-J_S_SS-PWS-4-SUMM-SA1HOUR-V1.0","title":"VG1 J S SS PWS 4 SUMM SA1HOUR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J_S_SS-PWS-4-SUMM-SA1HOUR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:23.072781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates Bundle","description":"This bundle consists of Voyager 1 Jupiter encounter ephemeris \n data in Heliographic coordinates. Two versions, both covering the same time \n period, but containing slightly different data, are provided. \n One version was generated by the Voyager MAG team from Voyager \n 1 SEDR, the other by the PDS/PPI node using the VG1_JUP.BSP and \n PCK00003.TPC SPICE kernels. \n These data were previously released as PDS data set PDS3 VG1-J-POS-6-SUMM-HGCOORDS-V1.0,\n https://doi.org/10.17189/1519895","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/bundle-vg1-jup-pos-hgcoords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:24.486492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords:data-sedr::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates SEDR Data Collection","description":"This collection contains Voyager 1 Jupiter encounter ephemeris data in \n Heliographic coordinates covering the period 1979-02-26 to 1979-03-24. The data\n was generated by the Voyager MAG team from \n Voyager 1 SEDR.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/data_sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/data_sedr/collection-data-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:25.499853","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords:data-spice::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates SPICE Data Collection","description":"This collection contains Voyager 1 Jupiter encounter ephemeris data in \n Heliographic coordinates covering the period 1979-02-26 to 1979-03-24.The data was generated\n by the PDS/PPI node using Voyager 1 SPICE.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/data_spice/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/data_spice/collection-data-spice-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:26.495743","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords:document::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates Document Collection","description":"This collection contains the document files associated with the Voyager 1 Jupiter Ephemeris Heliographic Coordinates Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:27.509292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates Bundle","description":"This bundle consists of Voyager 1 Jupiter encounter \n ephemeris data in System III (1965) left handed coordinates \n covering the period 1979-03-03 to 1979-03-16. Two versions, \n both covering the same time period, but containing slightly \n different data, are provided. One version was generated by \n the Voyager MAG team from Voyager 1 SEDR, the other by the \n PDS/PPI node using the VG1_JUP.BSP and PCK00003.TCP SPICE \n kernels. \n These data were previously released as PDS data set PDS3 VG1-J-POS-6-SUMM-S3COORDS-V1.1,\n https://doi.org/10.17189/1519896","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/bundle-vg1-jup-pos-s3coords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:29.008755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords:data-sedr::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates SEDR Data Collection","description":"This collection contains Voyager 1 Jupiter encounter ephemeris in System III \n (1965) left handed coordinates covering the period 1979-03-03 to 1979-03-16. \n The data was generated by the Voyager MAG \n team from Voyager 1 SEDR.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/data_sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/data_sedr/collection-data-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:30.010482","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords:data-spice::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates SPICE Data Collection","description":"This collection contains Voyager 1 Jupiter encounter ephemeris in System III \n (1965) left handed coordinates covering the period 1979-03-03 to 1979-03-16. \n The data was generated by the PDS/PPI node using Voyager 1 \n SPICE.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/data_spice/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/data_spice/collection-data-spice-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:31.021872","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords:document::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates Document Collection","description":"This collection contains the document files associated with the Voyager 1 Jupiter Ephemeris System III Coordinates Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:32.043546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup::1.0","title":"Voyager 1 Magnetometer Jupiter Data Bundle","description":"This bundle contains Voyager 1 Magnetometer Jupiter data in resampled Heliographic (RTN) and System III coordinates \n at 1.92, 9.60 and 48.0 second sample rates.\n This data was previously released as the following PDS3 data sets:\n VG1-J-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519884) \n VG1-J-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519886)\n VG1-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519885)\n VG1-J-MAG-4-SUMM-S3COORDS-1.92SEC-V1.1 (https://doi.org/10.17189/1519887)\n VG1-J-MAG-4-SUMM-S3COORDS-9.60SEC-V1.1 (https://doi.org/10.17189/1519889) \n VG1-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1 (https://doi.org/10.17189/1519888).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Mag","Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/bundle_voyager1_mag_jup_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:35.511467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup:data-hg-1.92s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 1.92 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n Heliographic (RTN) coordinates and have been averaged from the 60 ms \n instrument sample rate to a 1.92 second sample rate. All magnetic \n field measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-1_92sec/collection_data_hg_1.92s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:36.516747","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup:data-hg-48.0s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 48.0 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n Heliographic (RTN) coordinates and have been averaged from the 9.6 \n second summary data to a 48 second sample rate. All magnetic field \n measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-48sec/collection_data_hg_48.0s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:37.517889","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup:data-hg-9.60s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 9.60 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n Heliographic (RTN) coordinates and have been averaged from the 1.92 \n second summary data to a 9.6 second sample rate. All magnetic field \n measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-9_60sec/collection_data_hg_9.60sec_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:38.511813","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup:data-s3-1.92s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled System III Coords 1.92 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n System III (1965) (SYS3) coordinates and have been averaged from the \n 60 ms instrument sample rate to a 1.92 second sample rate. All \n magnetic field measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-1_92sec/collection_data_s3_1.92s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:39.513019","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup:data-s3-48.0s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled System III Coords 48.0 Second Data Collection","description":"This collection contians calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n System III (1965) (SYS3) coordinates and have been averaged from the \n 9.6 second summary data to a 48 second sample rate. All magnetic \n field measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-48sec/collection_data_s3_48.0s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:40.547151","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup:data-s3-9.60s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled System III Coords 9.60 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n System III (1965) (SYS3) coordinates and have been averaged from the \n 1.92 second summary data to a 9.6 second sample rate. All magnetic \n field measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-9_60sec/collection_data_s3_9.60s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:41.525783","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup:data-sc-field::1.0","title":"Voyager 1 Magnetometer Jupiter Spacecraft Field Data Collection","description":"This collection contains the estimated spacecraft field in payload coordinates for the the Voyager 1 MAG 1.92, 9.6,\n and 48.0 second averaged magnetic field data in heliographic (RTN) and Jovigraphic System III \n (SYS3) coordinates, from the Jupiter encounter period (1979-02-26 to \n 1979-03-24).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-sc-field/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-sc-field/collection_data_sc_field_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:42.540094","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup:document::1.0","title":"Voyager 1 Magnetometer Jupiter Data Document Collection","description":"This collection contains the document files associated with the Voyager 1 Magnetometer Jupiter Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:43.554135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat::1.0","title":"Voyager 1 Magnetometer Saturn Data Bundle","description":"This bundle contains Voyager 1 Magnetometer Saturn data in resampled Heliographic \n (RTN) and Kronographic (L1) coordinates at 1.92, 9.60 and 48.0 second sample rates.\n These data were previously released in the following PDS3 data sets:\n VG1-S-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519911), \n VG1-S-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519913), \n VG1-S-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519912), \n VG1-S-MAG-4-SUMM-L1COORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519914), \n VG1-S-MAG-4-SUMM-L1COORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519916) and \n VG1-S-MAG-4-SUMM-L1COORDS-48SEC-V1.0 (https://doi.org/10.17189/1519915).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Mag","Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/bundle-voyager1-mag-sat-v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:45.059638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:browse::1.0","title":"Voyager 1 Magnetometer Saturn Browse Collection","description":"This collection contains Voyager 1 Magnetometer Saturn browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/browse/collection-browse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:46.105093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:data-hg-1.92sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Heliographic (RTN) Coords 1.92 Second Data Collection","description":"This collection contains calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer \n (LFM) during the Saturn encounter. Coverage begins in the solar wind \n inbound to Saturn and continues past the last outbound bowshock crossing. \n The data are in Heliographic (RTN) coordinates and have been averaged \n from the 60 ms instrument sample rate to a 1.92 second sample rate. \n All magnetic field measurements are given in nanoTesla (nT). The magnetic \n field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-1_92sec/collection-data-hg-1.92s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:47.045070","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:data-hg-48.0sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Heliographic (RTN) Coords 48.0 Second Data Collection","description":"This collection contains calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer (LFM)\n during the Saturn encounter. Coverage begins in the solar wind inbound to \n Saturn and continues past the last outbound bowshock crossing. The data \n are in Heliographic (RTN) coordinates and have been averaged from the 9.6 \n second summary rate to a 48 second sample rate. All magnetic field \n measurements are given in nanoTesla (nT). The magnetic field data \n are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-48sec/collection-data-48.0s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:48.062036","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:data-hg-9.60sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Heliographic (RTN) Coords 9.60 Second Data Collection","description":"This collection contains calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer \n (LFM) during the Saturn encounter. Coverage begins in the solar wind \n inbound to Saturn and continues past the last outbound bowshock crossing. \n The data are in Heliographic (RTN) coordinates and have been averaged \n from the 1.92 second summary rate to a 9.6 second sample rate. All \n magnetic field measurements are given in nanoTesla (nT). The magnetic \n field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-9_60sec/collection-data-hg-9.60s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:49.044991","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:data-l1-1.92sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Kronographic (L1) Coords 1.92 Second Data Collection","description":"This collection includes calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer (LFM)\n during the Saturn encounter. Coverage begins in the solar wind inbound to \n Saturn and continues past the last outbound bowshock crossing. The data \n are in Kronographic (L1) coordinates and have been averaged from the \n 60 ms instrument sample rate to a 1.92 second sample rate. All magnetic \n field measurements are given in nanoTesla (nT). The magnetic field \n data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-1_92sec/collection-data-l1-1.92s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:50.043642","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:data-l1-48.0sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Kronographic (L1) Coords 48.0 Second Data Collection","description":"This collection includes calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer \n (LFM) during the Saturn encounter. Coverage begins in the solar wind \n inbound to Saturn and continues past the last outbound bowshock crossing. \n The data are in Kronographic (L1) coordinates and have been averaged from \n the 9.6 second summary rate to a 48 second sample rate. All magnetic field\n measurements are given in nanoTesla (nT). The magnetic field data \n are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-48sec/collection-data-l1-48.0s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:51.055668","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:data-l1-9.60sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Kronographic (L1) Coords 9.60 Second Data Collection","description":"This collection includes calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer \n (LFM) during the Saturn encounter. Coverage begins in the solar wind \n inbound to Saturn and continues past the last outbound bowshock crossing. \n The data are in Kronographic (L1) coordinates and have been averaged \n from the 1.92 second summary rate to a 9.6 second sample rate. All \n magnetic field measurements are given in nanoTesla (nT). The magnetic \n field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-9_60sec/collection-data-l1-9.60s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:52.055894","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:data-sc-field::1.0","title":"Voyager 1 Magnetometer Saturn Spacecraft Field Data Collection","description":"This collection contains Voyager 1 MAG 48 second averaged spacecraft field data from the Saturn \n Encounter in Payload coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-sc-field/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-sc-field/collection-data-sc-field-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:53.068535","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat:document::1.0","title":"Voyager 1 Magnetometer Saturn Document Collection","description":"This collection contains the document files associated with","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:54.056762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-jup::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Jupiter Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data recorded \n during the Jupiter encounter.\n \n These data were previously released as the following PDS3 data sets: \n VG1-J-PLS-5-SUMM-ELE-MOM-96.0SEC-V1.1 (https://doi.org/10.17189/1519890), \n VG1-J-PLS-5-SUMM-ION-INBNDSWIND-96S-V1.0 (https://doi.org/10.17189/1519891),\n VG1-J-PLS-5-SUMM-ION-L-MODE-96S-V1.0 (https://doi.org/10.17189/1519892), \n VG1-J-PLS-5-SUMM-ION-M-MODE-96S-V1.0 (https://doi.org/10.17189/1519893) and \n VG1-J-PLS-5-SUMM-ION-MOM-96.0SEC-V1.1 (https://doi.org/10.17189/1519894).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-02-15","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/bundle-voyager1-pls-jup-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:55.633270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-jup:data-ele-mom-96s::1.0","title":"Voyager 1 Plasma Derived Electron Moments 96.0 Second Jupiter Data Collection","description":"This collection contains derived values of the electron density \n and moment temperature at Jupiter during the Voyager 1 \n encounter in the PLS voltage range (10-5950 eV/q). Adjacent \n low and high energy electron measurements are combined to \n form a composite spectra which is used for the moment","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-01","stop_date":"1979-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ele-mom-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ele-mom-96s/collection-data-ele-mom-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:56.592246","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-jup:data-ion-inbndwind-96s::1.0","title":"Voyager 1 Plasma Derived Ion Inbound Solar Wind 96 Second Jupiter Data Collection","description":"This collection contains solar wind plasma data upstream of \n Jupiter before the Voyager 1 encounter. Fit and moment \n parameters are given; the fit parameters assume a convected \n isotropic proton Maxwellian distribution. Use of fit \n parameters is recommended as these are normally more accurate.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-15","stop_date":"1979-03-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-inbndwind-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-inbndwind-96s/collection-data-ion-inbndwind-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:57.640253","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-jup:data-ion-l-mode-96s::1.0","title":"Voyager 1 Plasma Derived Ion In/Out Bound Magnetosheath L-Mode 96 Second Jupiter Data Collection","description":"This collection contains Voyager 1 PLS 96 second inbound and outbound \n magnetosheath L-mode ion data. These data were recorded during the \n Voyager 1 Jupiter encounter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-l-mode-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-l-mode-96s/collection-data-ion-l-mode-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:58.565014","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-jup:data-ion-m-mode-96s::1.0","title":"Voyager 1 Plasma Derived Ion Outbound Magnetosheath M-Mode 96 Second Jupiter Data Collection","description":"This collection contains Voyager 1 PLS 96 second averaged outbound M-mode \n magnetosheath ion data. These data were recorded during the Voyager 1 Jupiter \n encounter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-13","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-m-mode-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-m-mode-96s/collection-data-ion-m-mode-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:59.570170","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-jup:data-ion-mom-96s::1.0","title":"Voyager 1 Plasma Derived Ion Moments 96.0 Second Jupiter Data Collection","description":"This collection contains Voyager 1 PLS 96 second averaged ion moment data. \n These data were recorded during the Voyager 1 Jupiter encounter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-01","stop_date":"1979-03-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-mom-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-mom-96s/collection-data-ion-mom-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:00.569823","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-jup:document::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Jupiter Document Collection","description":"This collection contains the documents associated with the Voyager 1 Plasma Science Experiment (PLS) Jupiter Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-02-15","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:01.575815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data recorded \n during the Saturn encounter.\n \n These data were previously released as the following PDS3 data sets:\n VG1-S-PLS-5-SUMM-ELE-FIT-96SEC-V1.0 (https://doi.org/10.17189/1519917) \n VG1-S-PLS-5-SUMM-ELEFBR-96SEC-V1.0 (https://doi.org/10.17189/1519918)\n VG1-S-PLS-5-SUMM-IONFIT-96SEC-V1.0 (https://doi.org/10.17189/1519922) \n VG1-S-PLS-5-SUMM-IONMOM-96SEC-V1.0 (https://doi.org/10.17189/1519923)\n VG1-S-PLS-5-SUMM-ION-SOLARWIND-96S-V1.0 (https://doi.org/10.17189/1519920)\n VG1-S-PLS-5-SUMM-IONFBR-96SEC-V1.0 (https://doi.org/10.17189/1519921) \n VG1-S-PLS-5-SUMM-ION-MAGSHEATH-96S-V1.0 (https://doi.org/10.17189/1519919)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/bundle-voyager1-pls-sat-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:03.073789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:browse-ele-fbr::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Electron Browse Collection","description":"This collection contains the electron browse products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ele-fbr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ele-fbr/collection-browse-ele-fbr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:04.076670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:browse-ele-fit::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Electron Parameters Browse Collection","description":"This collection contains the browse fit data products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle.\n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ele-fit/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ele-fit/collection-browse-ele-fit-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:05.066266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:browse-ion-fbr::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Ion Fits Browse Collection","description":"This collection contains the ion fits browse products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-fbr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-fbr/collection-browse-ion-fbr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:06.105539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:browse-ion-fit::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Ion Fit Browse Collection","description":"This collection contains the ion fit browse products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-fit/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-fit/collection-browse-ion-fit-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:07.154961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:browse-ion-moments::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Ion Moments Browse Collection","description":"This collection contains the ion moment browse products associated with Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-moments/collection-browse-ion-moments-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:08.125555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:browse-ion-solar-wind::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Ion Solar Wind Browse Collection","description":"This collection contains the ion solar wind browse products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn \n Data Bundle. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-solar-wind/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-solar-wind/collection-browse-ion-solar-wind-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:09.075470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:data-ele-fbr-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Electron Browse 96 Second Data Collection","description":"This collection contains electron browse data from the Plasma experiment (PLS) on Voyager 1 from \n the Saturn encounter. The data includes 96 second averages of the \n electron (10-5950 eV) density and temperature measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ele-fbr-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ele-fbr-96sec/collection-data-ele-fbr-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:10.093568","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:data-ele-fit-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Electron Parameters 96 Second Data Collection","description":"This collection contains electron fit data from the Plasma experiment (PLS) on Voyager 1 from the \n Saturn encounter. The data includes 96 second res. density and \n temperature measurements for various types of electrons (10-5950 eV).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ele-fit-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ele-fit-96sec/collection-data-ele-fit-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:11.080249","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-fbr-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Fits Browse 96 Second Data Collection","description":"This collection contains ion browse data from the Plasma experiment (PLS) on Voyager 1 from the Saturn \n encounter. The data includes 96 second density, temperature, and velocity\n components for proton and heavy ions.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-fbr-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-fbr-96sec/collection-data-ion-fbr-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:12.099614","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-fit-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Fits 96 Second Data Collection","description":"This collection contains ion fit data from the Plasma experiment (PLS) on Voyager 1 in Saturn's \n magnetosphere. The data includes 96 second ion mass, charge, number \n of ion species, density, thermal speed, velocity for the first and second \n ion species.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-fit-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-fit-96sec/collection-data-ion-fit-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:13.111651","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-magsheath-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Magnetosheath 96 Second Data Collection","description":"This collection contains Voyager 1 Plasma (PLS) ion data from the Saturn's magnetosheath. \n The data includes 96 second data of the ion mass, charge, \n density, velocity, and thermal speed for the first and second \n ion species.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-11","stop_date":"1980-11-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-magsheath-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-magsheath-96sec/collection-data-ion-magsheath-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:14.085199","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-moments-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Moments 96 Second Data Collection","description":"This collection contains ion moment data from the Plasma experiment on Voyager 1 in Saturn's \n magnetosphere. The data contains 96 second total ion moment density \n measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-moments-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-moments-96sec/collection-data-ion-moments-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:15.087803","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-solar-wind-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Solar Wind Browse 96 Second Data Collection","description":"This collection contains Voyager 1 Plasma (PLS) ion solar wind browse data from the Saturn encounter. \n The data provides 96 second ion density, velocity, thermal speed, and \n temperature measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-solar-wind-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-solar-wind-96sec/collection-data-ion-solar-wind-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:16.100764","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:data-pls-cup::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Faraday Cup Data Collection","description":"This collection contains ancillary data describing configuration of the \n Voyager 1 PLS Faraday detector cups.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-pls-cup/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-pls-cup/collection-data-pls-cup-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:17.113753","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat:document::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Document Collection","description":"This collection contains the documents associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:18.167810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-ss::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Solar System Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data of the \n solar wind. One hour averaged data and fine resolution data are included.\n \n These data were previously released as the following PDS3 data sets: \n VG1-SS-PLS-4-SUMM-1HR-AVG-V1.0 (https://doi.org/10.17189/1519931) and \n VG1-SS-PLS-3-RDR-FINE-RES-V1.0 (https://doi.org/10.17189/1519930).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/bundle_vg1_pls_solar_system_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:19.660320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-ss:data-1hour::1.0","title":"Voyager 1 PLS Solar System 1 Hour Averaged Proton Moments Data Collection","description":"This collection contains Voyager 1 hourly average proton moment data \n in RTN coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/data-1hour/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/data-1hour/collection-data-1hour-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:20.615451","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-ss:data-fine-res::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Solar System Fine Resolution Moments Collection","description":"This collection contains Voyager 1 fine resolution proton data \n in RTN coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Solar_System"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/data-fine-res/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/data-fine-res/collection-data-fine-res-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:21.612251","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-ss:document::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Solar System Document Collection","description":"This collection contains the document files associated with the Voyager 1 Plasma Science Experiment (PLS) Solar System Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Solar_System"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:22.600210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second Data Bundle","description":"This bundle contains Voyager 1 ephemeris data in Heliographic (RTN) \n coordinates from the Saturn encounter. The data include 96 second \n data generated from SPICE and SEDR.\n\n These data were previously released as the PDS3 data set: \n VG1-S-POS-4-SUMM-HGCOORDS-96SEC-V1.0 (https://doi.org/10.17189/1519924).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/bundle-vg1-sat-pos-hgcoords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:24.139623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec:data-sedr::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second SEDR Data Collection","description":"This collection consists of Voyager 1 Saturn encounter ephemeris data in \n Heliographic coordinates covering the period 1980-11-10T00:00:34.923 to \n 1980-11-20T23:58:59.065. The data was \n generated by the Voyager MAG team from Voyager 1 SEDR. \n \n Due to inaccuracies in Voyager SEDR, as well as changes in the values of \n some key parameters (e.g. Saturn radius) the timing is improved for the \n SPICE generated data, which is also icluded in this bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/data_sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/data_sedr/collection-data-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:25.124277","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec:data-spice::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second SPICE Data Collection","description":"This collection consists of Voyager 1 Saturn encounter ephemeris data in \n Heliographic coordinates covering the period 1980-11-10T00:00:34.923 to \n 1980-11-20T23:58:59.065. The data was generated by the \n PDS/PPI node using the VG1_SAT.TSP and PCK00006.TPC SPICE kernels. \n \n Due to inaccuracies in Voyager SEDR, as well as changes in the values of \n some key parameters (e.g. Saturn radius) the timing is improved for the \n SPICE generated data. However, since much of the original analysis was based \n upon the SEDR generated ephemeris, this data has been included in the bundle as well.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/data_spice/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/data_spice/collection-data-spice-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:26.114225","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec:document::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second Data Document Collection","description":"This collection contains the documents associated with the Voyager 1 Saturn POS Ephemeris Heliographic Coords Browse 96 Second Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:27.116839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse Data Bundle","description":"This bundle contains Voyager 1 \n Saturn encounter ephemeris data in Kronographic (L1) coordinates covering \n the period 1980-11-10 to 1980-11-18. Two versions, both covering the same \n time period, but containing slightly different data, are provided. One \n version was generated by the Voyager MAG team from Voyager SEDR, the other\n by the PDS/PPI node using the VG1_SAT.TSP and PCK00006.TPC SPICE kernels.\n \n Due to inaccuracies in Voyager SEDR, as well as changes in the \n values of some key parameters (e.g. Saturnian radius) the timing \n is improved for the SPICE generated data. However, since much \n of the original analysis was based upon the SEDR generated \n ephemeris, this data has been included as well.\n \n These data were previously released as the following PDS3 data set:\n VG1-S-POS-4-SUMM-L1COORDS-V1.0 (https://doi.org/10.17189/1519925)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/bundle-vg1-sat-pos-l1coords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:28.647567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords:data-sedr::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse SEDR Data Collection","description":"This collection contains Voyager 1 \n Saturn encounter ephemeris data in Kronographic (L1) coordinates covering \n the period 1980-11-10 to 1980-11-18. The data was generated by the Voyager MAG team from Voyager SEDR.\n \n Due to inaccuracies in Voyager SEDR, as well as changes in the \n values of some key parameters (e.g. Saturnian radius) the timing \n is improved for the SPICE generated data, which is also included in this bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/data-sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/data-sedr/collection-data-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:29.698296","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords:data-spice::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse SPICE Data Collection","description":"This collection contains Voyager 1 \n Saturn encounter ephemeris data in Kronographic (L1) coordinates covering \n the period 1980-11-10 to 1980-11-18. The data was generated by the\n PDS/PPI node using the VG1_SAT.TSP and PCK00006.TPC SPICE kernels.\n \n Due to inaccuracies in Voyager SEDR, as well as changes in the \n values of some key parameters (e.g. Saturnian radius) the timing \n is improved for the SPICE generated data. However, since much \n of the original analysis was based upon the SEDR generated \n ephemeris, this data has been included in the bundle as well.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/data-spice/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/data-spice/collection-data-spice-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:30.664941","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords:document::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse Data Document Collection","description":"This collection contains the documents associated with the Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:31.716036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-jup::1.0","title":"Voyager 1 Planetary Radio Astronomy Receiver (PRA) Jupiter Data Bundle","description":"This bundle contains Voyager 1 Planetary Radio Astronomy Receiver (PRA) data recorded during the Jupiter encounter.\n These data were previously released as PDS3 data in VG1-J-PRA-3-RDR-LOWBAND-6SEC-V1.0 (https://doi.org/10.17189/1519898) and VG1-J-PRA-4-SUMM-BROWSE-48SEC-V1.0(https://doi.org/10.17189/1519899).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Pra","Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/bundle-voyager1-pra-jup-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:33.135998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-jup:data-avg-48sec::1.0","title":"Voyager 1 PRA Averaged 48 Second Jupiter Data Collection","description":"This collection contains edited browse data derived from an \n original data set obtained from the Voyager 1 Planetary Radio \n Astronomy (PRA) instrument in the vicinity of Jupiter. Data \n are provided for 70 instrument channels covering the range from \n 1.2 kHz to 1326 kHz in uniform 19.2 kHz steps, each 1 kHz wide.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/data-averaged-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/data-averaged-48sec/collection-data-avg-48sec-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:34.134565","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-jup:data-lowband-6sec::1.0","title":"Voyager 1 PRA Calibrated Hi-Res Low Frequency Receiver Band Jupiter Data Collection","description":"This collection contains high time resolution and low rate receiver band 6 second sweep data from \n the Radio Astronomy instrument on Voyager 1 from the Jupiter encounter. The data are provided for 70 low band channels ranging from 1326.0 to \n 1.2 kHz and spaced 19.2 kHz apart.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/data-lowband-6sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/data-lowband-6sec/collection-data-lowband-6sec-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:35.140391","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-jup:document::1.0","title":"Voyager 1 Planetary Radio Astronomy Receiver (PRA) Jupiter Data Document Collection","description":"This collection contains the documentation associated with the Voyager 1 \n Planetary Radio Astronomy Receiver (PRA) Jupiter Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:36.156914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-lowband-6sec-sat::1.0","title":"Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Bundle","description":"This bundle contains Voyager 1 Radio Astronomy (PRA) data from the Saturn encounter. The data \n includes 6 second high resolution lowband radio mean power data. The data \n are provided for 70 instrument channels, covering 1326.0 to 1.2 kHz.\n \n These data were previously released as PDS3 data in VG1-S-PRA-3-RDR-LOWBAND-6SEC-V1.0 (https://doi.org/10.17189/1519926).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Pra","Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/bundle-vg1-pra-lowband-6sec-sat-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:37.648386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-lowband-6sec-sat:data::1.0","title":"Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Collection","description":"This collection contains Voyager 1 Radio Astronomy (PRA) data from the Saturn encounter. The data \n include 6 second high resolution lowband radio mean power data. The data \n are provided for 70 instrument channels, covering 1326.0 to 1.2 kHz.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-11","stop_date":"1980-11-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/data/collection-data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:38.642186","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-lowband-6sec-sat:document::1.0","title":"Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Document Collection","description":"This collection contains the documents associated with the Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-11","stop_date":"1980-11-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:39.678883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-CRS-4-SUMM-D1_D2-192SEC-V1.0","title":"VG1 S CRS 4 SUMM D1 D2 192SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-CRS-4-SUMM-D1_D2-192SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:41.263469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG1 S LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:41.712451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-LECP-3-RDR-STEP-6MIN-V1.0","title":"VG1 S LECP 3 RDR STEP 6MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-LECP-3-RDR-STEP-6MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:42.198501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-LECP-4-SUMM-AVERAGE-15MIN-V1.0","title":"VG1 S LECP 4 SUMM AVERAGE 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-LECP-4-SUMM-AVERAGE-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:42.728897","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-LECP-4-SUMM-SECTOR-15MIN-V1.0","title":"VG1 S LECP 4 SUMM SECTOR 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-LECP-4-SUMM-SECTOR-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:43.247187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0","title":"VG1 S MAG 4 SUMM HGCOORDS 1.92SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:43.655627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0","title":"VG1 S MAG 4 SUMM HGCOORDS 48.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:44.183637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0","title":"VG1 S MAG 4 SUMM HGCOORDS 9.60SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:44.663472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-MAG-4-SUMM-L1COORDS-1.92SEC-V1.0","title":"VG1 S MAG 4 SUMM L1COORDS 1.92SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-MAG-4-SUMM-L1COORDS-1.92SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:45.170696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-MAG-4-SUMM-L1COORDS-48SEC-V1.0","title":"VG1 S MAG 4 SUMM L1COORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-MAG-4-SUMM-L1COORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:45.675904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-MAG-4-SUMM-L1COORDS-9.60SEC-V1.0","title":"VG1 S MAG 4 SUMM L1COORDS 9.60SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-MAG-4-SUMM-L1COORDS-9.60SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:46.186234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PLS-5-SUMM-ELE-FIT-96SEC-V1.0","title":"VG1 S PLS 5 SUMM ELE FIT 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PLS-5-SUMM-ELE-FIT-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:46.707227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PLS-5-SUMM-ELEFBR-96SEC-V1.0","title":"VG1 S PLS 5 SUMM ELEFBR 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PLS-5-SUMM-ELEFBR-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:47.182725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PLS-5-SUMM-ION-MAGSHEATH-96S-V1.0","title":"VG1 S PLS 5 SUMM ION MAGSHEATH 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PLS-5-SUMM-ION-MAGSHEATH-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:47.692077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PLS-5-SUMM-ION-SOLARWIND-96S-V1.0","title":"VG1 S PLS 5 SUMM ION SOLARWIND 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1","Wind"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PLS-5-SUMM-ION-SOLARWIND-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:48.271470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PLS-5-SUMM-IONFBR-96SEC-V1.0","title":"VG1 S PLS 5 SUMM IONFBR 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PLS-5-SUMM-IONFBR-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:48.695654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PLS-5-SUMM-IONFIT-96SEC-V1.0","title":"VG1 S PLS 5 SUMM IONFIT 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PLS-5-SUMM-IONFIT-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:49.182625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PLS-5-SUMM-IONMOM-96SEC-V1.0","title":"VG1 S PLS 5 SUMM IONMOM 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PLS-5-SUMM-IONMOM-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:49.796479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-POS-4-SUMM-HGCOORDS-96SEC-V1.0","title":"VG1 S POS 4 SUMM HGCOORDS 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-POS-4-SUMM-HGCOORDS-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:50.185155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-POS-4-SUMM-L1COORDS-V1.0","title":"VG1 S POS 4 SUMM L1COORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-POS-4-SUMM-L1COORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:50.665654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PRA-3-RDR-LOWBAND-6SEC-V1.0","title":"VG1 S PRA 3 RDR LOWBAND 6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PRA-3-RDR-LOWBAND-6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:51.339959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PWS-2-RDR-SA-4.0SEC-V1.0","title":"VG1 S PWS 2 RDR SA 4.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PWS-2-RDR-SA-4.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:51.738184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-PWS-4-SUMM-SA-48SEC-V1.0","title":"VG1 S PWS 4 SUMM SA 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PWS-4-SUMM-SA-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:52.269729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-RSS-1-ROCC-V1.0","title":"VG1 S RSS 1 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-RSS-1-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:52.731418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec::1.0","title":"Voyager 1 Saturn CRS D1/D2 Averaged 192 Second Counting Rate Data Bundle","description":"This bundle contains the counting rate data from detectors D1 and D2 \n in the Cosmic Ray System (CRS) electron telescope (TET) on Voyager 1 during \n the Saturn encounter. The D1 detector nominally responds to electrons with \n kinetic energies above approximately 1 MeV, and the D2 detector, above \n approximately 2.5 MeV. \n These data were previously released as PDS data set PDS3 VG1-S-CRS-4-SUMM-D1/D2-192SEC-V1.0,\n https://doi.org/10.17189/1519906","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Crs","Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/bundle-vg1-sat-crs-d1-d2-192sec-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:54.262101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec:browse::1.0","title":"Voyager 1 Saturn CRS Averaged D1/D2 192 Second Counting Rate Browse Collection","description":"This collection contains a browse plot for the Cosmic Ray \n data from the Voyager 1 Saturn encounter. The plot was generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/browse/collection-browse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:55.192696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec:data::1.0","title":"Voyager 1 Saturn CRS Averaged D1/D2 192 Second Counting Rate Data Collection","description":"This collection contains data from the Cosmic Ray instrument on Voyager 1 in the Saturn \n magnetosphere. The data set contains 192.0 second electron counting \n rates from detectors D1 and D2.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/data/collection-data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:56.190684","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec:document::1.0","title":"Voyager 1 Saturn CRS Averaged D1/D2 192 Second Counting Rate Document Collection","description":"This collection contains the documentation associated with the Voyager 1 Saturn CRS Averaged D1/D2 192 Second Counting Rate Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:57.185599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-SS-PLS-3-RDR-FINE-RES-V1.0","title":"VG1 SS PLS 3 RDR FINE RES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SS-PLS-3-RDR-FINE-RES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:57.750939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-SS-PLS-4-SUMM-1HR-AVG-V1.0","title":"VG1 SS PLS 4 SUMM 1HR AVG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SS-PLS-4-SUMM-1HR-AVG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:58.208985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-SS-POS-6-1DAY-V1.0","title":"VG1 SS POS 6 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SS-POS-6-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:58.708422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-SSA-RSS-1-ROCC-V1.0","title":"VG1 SSA RSS 1 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SSA-RSS-1-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:59.269888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-SW-MAG-4-SUMM-HGCOORDS-1HR-V1.0","title":"VG1 SW MAG 4 SUMM HGCOORDS 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SW-MAG-4-SUMM-HGCOORDS-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:59.721534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-SW-MAG-4-SUMM-HGCOORDS-48SEC-V1.0","title":"VG1 SW MAG 4 SUMM HGCOORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SW-MAG-4-SUMM-HGCOORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:00.191188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux::1.0","title":"Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Averaged Data Bundle","description":"This bundle contains Voyager 2 Cosmic Ray (CRS) data from the Jupiter encounter. The bundle \n includes 15 minute averages of the ion flux for particles between 0.42 and \n 8.3 MeV. Electron fluxes are also provided for particles above 0.5 MeV.\n \n These data were previously released as a PDS3 dataset VG2-J-CRS-5-SUMM-FLUX-V1.0, https://doi.org/10.17189/1519936","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Crs","Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":[],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/bundle-vg2-crs-jup-avg-flux-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:01.702657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:browse-electrons::1.0","title":"Voyager 2 Jupiter CRS Derived Electron Browse Plot Collection","description":"This collection contains electron browse plots for the electron data in the Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Browse"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-electrons/collection-browse-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:02.747397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:browse-ions::1.0","title":"Voyager 2 Jupiter CRS Derived Ion Browse Plot Collection","description":"This collection contains ion browse plots for the ion data in the Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Bundle.\n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Browse"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-ions/collection-browse-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:03.795268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:browse-pulse-height::1.0","title":"Voyager 2 Jupiter CRS Derived Proton Pulse Height Browse Plot Collection","description":"This collection contains pulse height browse plots for the pulse height data in the Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux\n Browse Data Bundle. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Browse"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-pulse-height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-pulse-height/collection-browse-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:04.749069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:data-electrons::1.0","title":"Voyager 2 Jupiter CRS Derived Electron Averaged Data Collection","description":"This collection contains Voyager 2 Jupiter CRS derived electron 15 minute averaged data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-electrons/collection-data-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:05.704938","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:data-ions::1.0","title":"Voyager 2 Jupiter CRS Derived Ion Averaged Data Collection","description":"This collection contains Voyager 2 Jupiter CRS 15 minute averaged ion data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-ions/collection-data-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:06.703410","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:data-pulse-height::1.0","title":"Voyager 2 Jupiter CRS Derived Pulse Height Ion Averaged Data Collection","description":"This collection contains Voyager 2 Jupiter CRS derived pulse height ion one hour averaged data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-pulse-height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-pulse-height/collection-data-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:07.733038","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:document::1.0","title":"Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Averaged Data Document Collection","description":"This collection contains the documentation associated with the Voyager 2 Jupiter CRS derived proton/ion/electron flux averaged data bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Document"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:08.725326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-CRS-5-SUMM-FLUX-V1.0","title":"VG2 J CRS 5 SUMM FLUX V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-CRS-5-SUMM-FLUX-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:12.242228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG2 J LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:12.780368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-LECP-3-RDR-STEP-3MIN-V1.0","title":"VG2 J LECP 3 RDR STEP 3MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-LECP-3-RDR-STEP-3MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:13.258497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-LECP-3-RDR-STEP-48SEC-V1.0","title":"VG2 J LECP 3 RDR STEP 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-LECP-3-RDR-STEP-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:13.729320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-LECP-4-SUMM-AVERAGE-15MIN-V1.1","title":"VG2 J LECP 4 SUMM AVERAGE 15MIN V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-LECP-4-SUMM-AVERAGE-15MIN-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:14.339664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-LECP-4-SUMM-SECTOR-15MIN-V1.1","title":"VG2 J LECP 4 SUMM SECTOR 15MIN V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-LECP-4-SUMM-SECTOR-15MIN-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:14.797985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0","title":"VG2 J MAG 4 RDR HGCOORDS 1.92SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:15.273379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-MAG-4-RDR-HGCOORDS-9.60SEC-V1.0","title":"VG2 J MAG 4 RDR HGCOORDS 9.60SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-MAG-4-RDR-HGCOORDS-9.60SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:15.773703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-MAG-4-RDR-S3COORDS-1.92SEC-V1.1","title":"VG2 J MAG 4 RDR S3COORDS 1.92SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-MAG-4-RDR-S3COORDS-1.92SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:16.282468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-MAG-4-RDR-S3COORDS-9.60SEC-V1.1","title":"VG2 J MAG 4 RDR S3COORDS 9.60SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-MAG-4-RDR-S3COORDS-9.60SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:16.807938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0","title":"VG2 J MAG 4 SUMM HGCOORDS 48.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:17.331328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1","title":"VG2 J MAG 4 SUMM S3COORDS 48.0SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:17.764698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PLS-5-SUMM-ELE-MOM-96.0SEC-V1.0","title":"VG2 J PLS 5 SUMM ELE MOM 96.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PLS-5-SUMM-ELE-MOM-96.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:18.265589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PLS-5-SUMM-ION-INBNDSWIND-96S-V1.0","title":"VG2 J PLS 5 SUMM ION INBNDSWIND 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2","Wind"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PLS-5-SUMM-ION-INBNDSWIND-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:18.770610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PLS-5-SUMM-ION-L-MODE-96S-V1.0","title":"VG2 J PLS 5 SUMM ION L MODE 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PLS-5-SUMM-ION-L-MODE-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:19.254925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PLS-5-SUMM-ION-M-MODE-96S-V1.0","title":"VG2 J PLS 5 SUMM ION M MODE 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PLS-5-SUMM-ION-M-MODE-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:19.776437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PLS-5-SUMM-ION-MOM-96.0SEC-V1.0","title":"VG2 J PLS 5 SUMM ION MOM 96.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PLS-5-SUMM-ION-MOM-96.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:20.256744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-POS-6-SUMM-HGCOORDS-V1.0","title":"VG2 J POS 6 SUMM HGCOORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-POS-6-SUMM-HGCOORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:20.745766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-POS-6-SUMM-S3COORDS-V1.1","title":"VG2 J POS 6 SUMM S3COORDS V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-POS-6-SUMM-S3COORDS-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:21.525233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PRA-3-RDR-LOWBAND-6SEC-V1.0","title":"VG2 J PRA 3 RDR LOWBAND 6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PRA-3-RDR-LOWBAND-6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:21.761491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PRA-4-SUMM-BROWSE-48SEC-V1.0","title":"VG2 J PRA 4 SUMM BROWSE 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PRA-4-SUMM-BROWSE-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:22.312094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PWS-2-RDR-SA-4.0SEC-V1.0","title":"VG2 J PWS 2 RDR SA 4.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PWS-2-RDR-SA-4.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:22.776424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PWS-4-SUMM-SA-48.0SEC-V1.0","title":"VG2 J PWS 4 SUMM SA 48.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PWS-4-SUMM-SA-48.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:23.280869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-PWS-5-DDR-PLASMA-DENSITY-1S-V1.0","title":"VG2 J PWS 5 DDR PLASMA DENSITY 1S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-PWS-5-DDR-PLASMA-DENSITY-1S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:23.826378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J_S_U_N_SS-PWS-1-EDR-WFRM-60MS-V1.0","title":"VG2 J S U N SS PWS 1 EDR WFRM 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J_S_U_N_SS-PWS-1-EDR-WFRM-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:24.281280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J_S_U_N_SS-PWS-2-RDR-SAFULL-V1.0","title":"VG2 J S U N SS PWS 2 RDR SAFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J_S_U_N_SS-PWS-2-RDR-SAFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:24.804850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J_S_U_N_SS-PWS-4-SUMM-SA1HOUR-V1.0","title":"VG2 J S U N SS PWS 4 SUMM SA1HOUR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J_S_U_N_SS-PWS-4-SUMM-SA1HOUR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:25.312077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup::1.0","title":"Voyager 2 Magnetometer Jupiter Data Bundle","description":"This bundle contains Voyager 2 Magnetometer Jupiter data in resampled Heliographic (RTN) and System III coordinates \n at 1.92, 9.60 and 48.0 second sample rates.\n \n This data was previously released as PDS3 data in \n \n VG2-J-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519942), \n VG2-J-MAG-4-RDR-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519943),\n VG2-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519946), \n VG2-J-MAG-4-RDR-S3COORDS-1.92SEC-V1.1 (https://doi.org/10.17189/1519944), \n VG2-J-MAG-4-RDR-S3COORDS-9.60SEC-V1.1 (https://doi.org/10.17189/1519945)\n and VG2-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1 (https://doi.org/10.17189/1519947).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Mag","Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":[],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/bundle_vg2_mag_jupiter_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:28.769203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:browse::1.0","title":"Voyager 2 Magnetometer Jupiter Browse Collection","description":"This collection contains Voyager 2 Magnetometer Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Browse"],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:29.759039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:data-hg-1.92s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 1.92 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data given in Heliographic coordinates and \n averaged from the 60 ms instrument sample rate to a 1.92 second resampled rate. All magnetic field observations \n are measured in nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-1_92sec/collection_data_hg_1.92s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:30.758444","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:data-hg-48.0s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 48.0 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data given in Heliographic coordinates and \n averaged from the 60 ms instrument sample rate to a 48 second resampled rate. All magnetic field observations are \n measured in nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-06-20","stop_date":"1979-08-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-48_0sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-48_0sec/collection_data_hg_48.0s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:31.766336","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:data-hg-9.60s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 9.60 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data given in Heliographic coordinates and \n averaged from the 60 ms instrument sample rate to a 9.6 second resampled rate. All magnetic field observations are measured in \n nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-9_60sec/collection_data_hg_9.60s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:32.776990","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:data-s3-1.92s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled SYSTEM III (1965) Coords 1.92 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data from the Low Field Magnetometer (LFM) \n resampled at a 1.92 second sample rate from the 60 msec instrument sampling rate. Data coverage begins in the solar wind and continues \n until at least the first magnetopause crossing. The data are given in Jovicentric System III (1965) right handed coordinates.\n All magnetic field observations are measured in nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-05","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-1_92sec/collection_data_s3_1.92s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:33.766202","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:data-s3-48.0s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled SYSTEM III (1965) Coords 48.0 Second Data Collection","description":"This collection contains Voyager 2 Magnetometer data in System III (1965) coordinates from the \n Jupiter encounter. The data provides 48 second averages of the magnetic field data. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-05","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-48_0sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-48_0sec/collection_data_s3_48.0s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:34.769405","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:data-s3-9.60s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled SYSTEM III (1965) Coords 9.60 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data from the Low Field Magnetometer (LFM) \n resampled at a 9.6 second sample rate from the 60 msec instrument sampling rate. Data coverage begins in the solar wind and continues \n until at least the first magnetopause crossing. The data are given inJovicentric System III(1965) right handed coordinates. All magnetic field \n observations are measured in nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-05","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-9_60sec/collection_data_s3_9.60s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:35.776876","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:data-sc-field::1.0","title":"Voyager 2 Magnetometer Jupiter Spacecraft Field Data Collection","description":"This collection contains sensor offset values in S/C coordinates from the Magnetometer on Voyager 2 \n from the Jupiter encounter. The data contains 48 second res. offset data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-06-20","stop_date":"1979-08-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-sc-field/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-sc-field/collection_data_sc_field_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:36.808593","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup:document::1.0","title":"Voyager 2 Magnetometer Jupiter Document Collection","description":"This collection contains the document files associated with the Voyager 2 Magnetometer Jupiter Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Document"],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:37.858827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-CRS-3-RDR-D1-6SEC-V1.0","title":"VG2 N CRS 3 RDR D1 6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-CRS-3-RDR-D1-6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:38.309183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-CRS-4-SUMM-D1-96SEC-V1.0","title":"VG2 N CRS 4 SUMM D1 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-CRS-4-SUMM-D1-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:38.823762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-CRS-4-SUMM-D2-96SEC-V1.0","title":"VG2 N CRS 4 SUMM D2 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-CRS-4-SUMM-D2-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:39.352752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG2 N LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:39.871523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-LECP-3-RDR-STEP-3MIN-V1.0","title":"VG2 N LECP 3 RDR STEP 3MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-LECP-3-RDR-STEP-3MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:40.401533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-LECP-3-RDR-STEP-6MIN-V1.0","title":"VG2 N LECP 3 RDR STEP 6MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-LECP-3-RDR-STEP-6MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:40.773446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-LECP-4-RDR-STEP-12.8MIN-V1.0","title":"VG2 N LECP 4 RDR STEP 12.8MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-LECP-4-RDR-STEP-12.8MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:41.320233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-LECP-4-SUMM-SCAN-24SEC-V1.0","title":"VG2 N LECP 4 SUMM SCAN 24SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-LECP-4-SUMM-SCAN-24SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:41.829641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0","title":"VG2 N MAG 4 RDR HGCOORDS 1.92SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:42.315494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-MAG-4-RDR-HGCOORDS-1.92SEC-V2.0","title":"VG2 N MAG 4 RDR HGCOORDS 1.92SEC V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-MAG-4-RDR-HGCOORDS-1.92SEC-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:42.843226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-MAG-4-RDR-HGCOORDS-9.6SEC-V1.0","title":"VG2 N MAG 4 RDR HGCOORDS 9.6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-MAG-4-RDR-HGCOORDS-9.6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:43.314216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-MAG-4-RDR-HGCOORDS-9.6SEC-V2.0","title":"VG2 N MAG 4 RDR HGCOORDS 9.6SEC V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-MAG-4-RDR-HGCOORDS-9.6SEC-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:43.822160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-MAG-4-SUMM-HGCOORDS-48SEC-V1.0","title":"VG2 N MAG 4 SUMM HGCOORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-MAG-4-SUMM-HGCOORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:44.357660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-MAG-4-SUMM-NLSCOORDS-12SEC-V1.0","title":"VG2 N MAG 4 SUMM NLSCOORDS 12SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-MAG-4-SUMM-NLSCOORDS-12SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:44.811808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PLS-5-RDR-2PROMAGSPH-48SEC-V1.0","title":"VG2 N PLS 5 RDR 2PROMAGSPH 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PLS-5-RDR-2PROMAGSPH-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:45.293683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PLS-5-RDR-ELEMAGSPHERE-96SEC-V1.0","title":"VG2 N PLS 5 RDR ELEMAGSPHERE 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PLS-5-RDR-ELEMAGSPHERE-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:45.854891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PLS-5-RDR-IONINBNDWIND-48SEC-V1.0","title":"VG2 N PLS 5 RDR IONINBNDWIND 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2","Wind"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PLS-5-RDR-IONINBNDWIND-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:46.305417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PLS-5-RDR-IONLMODE-48SEC-V1.0","title":"VG2 N PLS 5 RDR IONLMODE 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PLS-5-RDR-IONLMODE-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:46.789789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PLS-5-RDR-IONMAGSPHERE-48SEC-V1.0","title":"VG2 N PLS 5 RDR IONMAGSPHERE 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PLS-5-RDR-IONMAGSPHERE-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:47.313072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PLS-5-RDR-IONMMODE-12MIN-V1.0","title":"VG2 N PLS 5 RDR IONMMODE 12MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PLS-5-RDR-IONMMODE-12MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:47.816817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-POS-5-SUMM-HGCOORDS-48SEC-V1.0","title":"VG2 N POS 5 SUMM HGCOORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-POS-5-SUMM-HGCOORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:48.364742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-POS-5-SUMM-NLSCOORDS-12SEC-V1.0","title":"VG2 N POS 5 SUMM NLSCOORDS 12SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-POS-5-SUMM-NLSCOORDS-12SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:48.866765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PRA-2-RDR-HIGHRATE-60MS-V1.0","title":"VG2 N PRA 2 RDR HIGHRATE 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PRA-2-RDR-HIGHRATE-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:49.320219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PRA-3-RDR-LOWBAND-6SEC-V1.0","title":"VG2 N PRA 3 RDR LOWBAND 6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PRA-3-RDR-LOWBAND-6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:49.962320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PRA-4-SUMM-BROWSE-48SEC-V1.0","title":"VG2 N PRA 4 SUMM BROWSE 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PRA-4-SUMM-BROWSE-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:50.357615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PWS-1-EDR-WFRM-60MS-V1.0","title":"VG2 N PWS 1 EDR WFRM 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PWS-1-EDR-WFRM-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:50.885726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PWS-2-RDR-SA-4SEC-V1.0","title":"VG2 N PWS 2 RDR SA 4SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PWS-2-RDR-SA-4SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:51.404174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-PWS-4-SUMM-SA-48SEC-V1.0","title":"VG2 N PWS 4 SUMM SA 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PWS-4-SUMM-SA-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:51.841431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup::1.1","title":"Voyager 2 Plasma Science Experiment (PLS) Jupiter Data Bundle","description":"This bundle contains Voyager 2 Plasma Science Experiment (PLS) data recorded \n during the Jupiter encounter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Voyager 2","Vg2"],"data_types":[],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/bundle_vg2_pls_jupiter_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:55.318182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-ele-moments::1.1","title":"Voyager 2 Plasma Derived Electron Moment 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived electron moment 96.0 second Jupiter browse products.\n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ele-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ele-moments/collection_browse_ele_moments_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:56.315307","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-inbndwind::1.1","title":"Voyager 2 Plasma Derived Ion Inbound Solar Wind 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion inbound solar wind 96.0 second Jupiter\n browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-inbndwind/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-inbndwind/collection_browse_inbndwind_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:57.322122","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-l-mode::1.1","title":"Voyager 2 Plasma Derived Ion In/Out Bound Magnetosheath L-Mode 96 Second Jupiter Browse Collection","description":"This collection Voyager 2 plasma derived ion in/out bound magnetosheath L-mode 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-l-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-l-mode/collection_browse_ion_l_mode_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:58.320678","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-m-mode::1.1","title":"Voyager 2 Plasma Derived Ion Outbound Magnetosheath M-Mode 96 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion in/out bound magnetosheath m-mode 96.0 second Jupiter browse products. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-m-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-m-mode/collection_browse-ion-m-mode_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:59.353968","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-moments::1.1","title":"Voyager 2 Plasma Derived Ion Moments 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion moment 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-moments/collection_browse-ion-moments_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:00.404438","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-ele-moments::1.1","title":"Voyager 2 Plasma Derived Electron Moments 96.0 Second Jupiter Data Collection","description":"This collection contains derived values \n of the electron density and moment temperature at Jupiter during the \n Voyager 2 encounter in the PLS voltage range (10-5950 eV/q). Adjacent low \n and high energy electron measurements are combined to form a composite \n spectra which is used for the moment calculation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-06","stop_date":"1979-07-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ele-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ele-moments/collection_data_ele_moments_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:01.372108","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-inbndwind::1.1","title":"Voyager 2 Plasma Derived Ion Inbound Solar Wind 96 Second Jupiter Data Collection","description":"This collection contains solar wind plasma\n data upstream of Jupiter before the Voyager 2 encounter. Fit and moment \n parameters are given; the fit parameters assume a convected isotropic \n proton Maxwellian distribution. Use of fit parameters is recommended as \n these are normally more accurate. Since only the first 72 or last 72 \n energy/charge channels are telemetered to Earth from each M-mode spectra,\n derived parameters change significantly only every other set of spectra \n so the effective time resolution is 196 s.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-06-25","stop_date":"1979-07-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-inbndwind/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-inbndwind/collection_data_inbndwind_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:02.420391","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-l-mode::1.1","title":"Voyager 2 Plasma Derived Ion In/Out Bound Magnetosheath L-Mode 96 Second Jupiter Data Collection","description":"This collection contains plasma parameters\n from the Voyager 2 inbound magnetosheath and outbound data from the \n magnetotail through the solar wind. Inbound Voyager 2 passed near noon \n local time, so it sampled regions of the magnetosheath where flow is \n generally subsonic. Distribution functions observed were well represented \n by two convected isotropic proton Maxwellians, so this type of \n distribution was used to derive the proton velocity, density and \n temperature. Physically the two populations represent the thermal plasma \n accelerated at the shock (the colder component) and ions reflected once at\n the shock before entering the magnetosheath (the hotter component). The \n PLS experiment could not resolve alpha particles in this region so no \n alpha parameters are provided; the neglect of alpha made cause an \n overestimate of the hot proton component of the plasma. One sigma errors \n are provided for the fit parameters.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-02","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-l-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-l-mode/collection_data_ion_l_mode_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:03.336289","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-m-mode::1.1","title":"Voyager 2 Plasma Derived Ion Outbound Magnetosheath M-Mode 96 Second Jupiter Data Collection","description":"This collection contains plasma parameters\n from Voyager 2 outbound from Jupiter from the magnetotail through the \n solar wind. Fit and moment parameters are given; the fit parameters assume\n a single, isotropic convected proton Maxwellian distribution. Although \n magnetotail data is provided, these data are unreliable; the density can \n be used as an upper limit to the actual density. Solar wind data are also \n provided and are reliable. These M mode data are the best data to use in \n most regions of the magnetosheath. Magnetotail data in this data collection are \n included mainly to put the sheath data in context and show magnetopause.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-23","stop_date":"1979-08-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-m-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-m-mode/collection_data_ion_m_mode_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:04.323029","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-moments::1.1","title":"Voyager 2 Plasma Derived Ion Moments 96.0 Second Jupiter Data Collection","description":"This collection contains Voyager 2 Plasma (PLS) data from the Jupiter encounter. The data includes\n 96 second averages of the ion moment density.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-04","stop_date":"1979-07-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-moments/collection_data_ion_moments_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:05.339919","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:document::1.1","title":"Voyager 2 Plasma Science Experiment (PLS) Jupiter Document Collection","description":"This collection contains the document files associated with the Voyager 2 Plasma Science Experiment (PLS) Jupiter Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Document"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:06.338169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-CRS-4-SUMM-D1_D2-192SEC-V1.0","title":"VG2 S CRS 4 SUMM D1 D2 192SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-CRS-4-SUMM-D1_D2-192SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:09.880460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG2 S LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:10.419163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-LECP-3-RDR-NEAR-ENC-400MSEC-V1.0","title":"VG2 S LECP 3 RDR NEAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-LECP-3-RDR-NEAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:10.918395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-LECP-3-STEP-3.2MIN-V1.0","title":"VG2 S LECP 3 STEP 3.2MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-LECP-3-STEP-3.2MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:11.436212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-LECP-3-STEP-6.4MIN-V1.0","title":"VG2 S LECP 3 STEP 6.4MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-LECP-3-STEP-6.4MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:11.890412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-LECP-4-SUMM-AVERAGE-15MIN-V1.0","title":"VG2 S LECP 4 SUMM AVERAGE 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-LECP-4-SUMM-AVERAGE-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:12.387753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-LECP-4-SUMM-SECTOR-15MIN-V1.0","title":"VG2 S LECP 4 SUMM SECTOR 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-LECP-4-SUMM-SECTOR-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:12.906746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-MAG-4-RDR-HGCOORDS-1.92SEC-V1.1","title":"VG2 S MAG 4 RDR HGCOORDS 1.92SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-MAG-4-RDR-HGCOORDS-1.92SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:13.426491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-MAG-4-RDR-HGCOORDS-9.6SEC-V1.1","title":"VG2 S MAG 4 RDR HGCOORDS 9.6SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-MAG-4-RDR-HGCOORDS-9.6SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:13.954865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-MAG-4-RDR-L1COORDS-1.92SEC-V1.1","title":"VG2 S MAG 4 RDR L1COORDS 1.92SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-MAG-4-RDR-L1COORDS-1.92SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:14.374075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-MAG-4-RDR-L1COORDS-9.6SEC-V1.1","title":"VG2 S MAG 4 RDR L1COORDS 9.6SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-MAG-4-RDR-L1COORDS-9.6SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:14.854490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-MAG-4-SUMM-HGCOORDS-48SEC-V1.1","title":"VG2 S MAG 4 SUMM HGCOORDS 48SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-MAG-4-SUMM-HGCOORDS-48SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:15.356623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-MAG-4-SUMM-L1COORDS-48SEC-V1.1","title":"VG2 S MAG 4 SUMM L1COORDS 48SEC V1.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-MAG-4-SUMM-L1COORDS-48SEC-V1.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:15.874018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PLS-5-SUMM-ELE-BR-96SEC-V1.0","title":"VG2 S PLS 5 SUMM ELE BR 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PLS-5-SUMM-ELE-BR-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:16.377636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PLS-5-SUMM-ELE-FIT-96SEC-V1.0","title":"VG2 S PLS 5 SUMM ELE FIT 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PLS-5-SUMM-ELE-FIT-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:16.876981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PLS-5-SUMM-ION-FBR-96SEC-V1.0","title":"VG2 S PLS 5 SUMM ION FBR 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PLS-5-SUMM-ION-FBR-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:17.400308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PLS-5-SUMM-ION-FIT-96SEC-V1.0","title":"VG2 S PLS 5 SUMM ION FIT 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PLS-5-SUMM-ION-FIT-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:17.890122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PLS-5-SUMM-ION-MOM-96SEC-V1.0","title":"VG2 S PLS 5 SUMM ION MOM 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PLS-5-SUMM-ION-MOM-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:18.378758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PLS-5-SUMM-ION-SOLARWIND-96S-V1.0","title":"VG2 S PLS 5 SUMM ION SOLARWIND 96S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2","Wind"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PLS-5-SUMM-ION-SOLARWIND-96S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:18.909520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-POS-4-SUMM-HGCOORDS-V1.0","title":"VG2 S POS 4 SUMM HGCOORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-POS-4-SUMM-HGCOORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:19.388502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-POS-4-SUMM-L1COORDS-V1.0","title":"VG2 S POS 4 SUMM L1COORDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-POS-4-SUMM-L1COORDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:19.870708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PRA-3-RDR-LOWBAND-6SEC-V1.0","title":"VG2 S PRA 3 RDR LOWBAND 6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PRA-3-RDR-LOWBAND-6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:20.385612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PWS-2-RDR-SA-4.0SEC-V1.0","title":"VG2 S PWS 2 RDR SA 4.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PWS-2-RDR-SA-4.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:20.863978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-PWS-4-SUMM-SA-48SEC-V1.0","title":"VG2 S PWS 4 SUMM SA 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-PWS-4-SUMM-SA-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:21.404910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-RSS-1-ROCC-V1.0","title":"VG2 S RSS 1 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-RSS-1-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:21.990117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-SS-PLS-3-RDR-FINE-RES-V1.0","title":"VG2 SS PLS 3 RDR FINE RES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-SS-PLS-3-RDR-FINE-RES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:24.468652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-SS-PLS-4-SUMM-1DAY-AVG-V1.0","title":"VG2 SS PLS 4 SUMM 1DAY AVG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-SS-PLS-4-SUMM-1DAY-AVG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:24.959660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-SS-PLS-4-SUMM-1HR-AVG-V1.0","title":"VG2 SS PLS 4 SUMM 1HR AVG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-SS-PLS-4-SUMM-1HR-AVG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:25.489911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-SS-POS-6-1DAY-V1.0","title":"VG2 SS POS 6 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-SS-POS-6-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:25.911519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-SW-MAG-4-SUMM-HGCOORDS-1HR-V1.0","title":"VG2 SW MAG 4 SUMM HGCOORDS 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-SW-MAG-4-SUMM-HGCOORDS-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:26.374125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-SW-MAG-4-SUMM-HGCOORDS-48SEC-V1.0","title":"VG2 SW MAG 4 SUMM HGCOORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-SW-MAG-4-SUMM-HGCOORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:26.883158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-CRS-4-SUMM-D1-96SEC-V1.0","title":"VG2 U CRS 4 SUMM D1 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-CRS-4-SUMM-D1-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:27.394907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-CRS-4-SUMM-D2-96SEC-V1.0","title":"VG2 U CRS 4 SUMM D2 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-CRS-4-SUMM-D2-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:27.897327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG2 U LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:28.416119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-LECP-3-STEP-6.4MIN-V1.0","title":"VG2 U LECP 3 STEP 6.4MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-LECP-3-STEP-6.4MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:28.945462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-LECP-4-RDR-SECTOR-15MIN-V1.0","title":"VG2 U LECP 4 RDR SECTOR 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-LECP-4-RDR-SECTOR-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:29.390384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-LECP-4-RDR-STEP-12.8MIN-V1.0","title":"VG2 U LECP 4 RDR STEP 12.8MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-LECP-4-RDR-STEP-12.8MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:29.891170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-LECP-4-SUMM-AVERAGE-15MIN-V1.0","title":"VG2 U LECP 4 SUMM AVERAGE 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-LECP-4-SUMM-AVERAGE-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:30.393392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-LECP-4-SUMM-SCAN-24SEC-V1.0","title":"VG2 U LECP 4 SUMM SCAN 24SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-LECP-4-SUMM-SCAN-24SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:30.907274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0","title":"VG2 U MAG 4 RDR HGCOORDS 1.92SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:31.383464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-MAG-4-RDR-HGCOORDS-1.92SEC-V2.0","title":"VG2 U MAG 4 RDR HGCOORDS 1.92SEC V2.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-MAG-4-RDR-HGCOORDS-1.92SEC-V2.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:31.946068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-MAG-4-RDR-HGCOORDS-9.6SEC-V1.0","title":"VG2 U MAG 4 RDR HGCOORDS 9.6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-MAG-4-RDR-HGCOORDS-9.6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:32.425440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-MAG-4-RDR-U1COORDS-1.92SEC-V1.0","title":"VG2 U MAG 4 RDR U1COORDS 1.92SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-MAG-4-RDR-U1COORDS-1.92SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:32.920626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-MAG-4-RDR-U1COORDS-9.6SEC-V1.0","title":"VG2 U MAG 4 RDR U1COORDS 9.6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-MAG-4-RDR-U1COORDS-9.6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:33.466978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-MAG-4-SUMM-HGCOORDS-48SEC-V1.0","title":"VG2 U MAG 4 SUMM HGCOORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-MAG-4-SUMM-HGCOORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:33.991843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-MAG-4-SUMM-U1COORDS-48SEC-V1.0","title":"VG2 U MAG 4 SUMM U1COORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-MAG-4-SUMM-U1COORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:34.480344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PLS-5-RDR-ELEFIT-48SEC-V1.0","title":"VG2 U PLS 5 RDR ELEFIT 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PLS-5-RDR-ELEFIT-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:35.022426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PLS-5-RDR-IONFIT-48SEC-V1.0","title":"VG2 U PLS 5 RDR IONFIT 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PLS-5-RDR-IONFIT-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:35.446088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PLS-5-SUMM-ELEBR-48SEC-V1.0","title":"VG2 U PLS 5 SUMM ELEBR 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PLS-5-SUMM-ELEBR-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:35.974704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PLS-5-SUMM-IONBR-48SEC-V1.0","title":"VG2 U PLS 5 SUMM IONBR 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PLS-5-SUMM-IONBR-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:36.396595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-POS-5-SUMM-HGCOORDS-48SEC-V1.0","title":"VG2 U POS 5 SUMM HGCOORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-POS-5-SUMM-HGCOORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:36.897849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-POS-5-SUMM-U1COORDS-48SEC-V1.0","title":"VG2 U POS 5 SUMM U1COORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-POS-5-SUMM-U1COORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:37.430453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PRA-2-RDR-HIGHRATE-60MS-V1.0","title":"VG2 U PRA 2 RDR HIGHRATE 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PRA-2-RDR-HIGHRATE-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:37.909348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PRA-3-RDR-LOWBAND-6SEC-V1.0","title":"VG2 U PRA 3 RDR LOWBAND 6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PRA-3-RDR-LOWBAND-6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:38.457678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PRA-4-SUMM-BROWSE-48SEC-V1.0","title":"VG2 U PRA 4 SUMM BROWSE 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PRA-4-SUMM-BROWSE-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:38.944958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PWS-1-EDR-WFRM-60MS-V1.0","title":"VG2 U PWS 1 EDR WFRM 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PWS-1-EDR-WFRM-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:39.425881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PWS-2-RDR-SA-4SEC-V1.0","title":"VG2 U PWS 2 RDR SA 4SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PWS-2-RDR-SA-4SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:39.935947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-PWS-4-SUMM-SA-48SEC-V1.0","title":"VG2 U PWS 4 SUMM SA 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PWS-4-SUMM-SA-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:40.436716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.sa::2.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Data Bundle","description":"This bundle contains the Voyager 1 Plasma Wave Spectrometer spectrum analyzer \ndata from the entire mission in calibrated CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Pws","Plasma Wave Science"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1977-09-05","stop_date":"2024-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/bundle_data_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:43.917968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.sa:browse::2.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Browse Plots","description":"Voyager 1 PWS data in 10-day plot PNG files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2022-05-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/browse/collection_browse_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:45.140037","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.sa:data::2.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Data Files","description":"Voyager 1 PWS data in daily CDF files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2024-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/data/collection_data_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:46.662507","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.sa:document::2.0","title":"Voyager 1 Plasma Waves Instrument Low Rate Spectrum Analyzer Document Collection","description":"This collection contains documents related to the Voyager 1 Plasma Waves Instrument\n Low Rate Spectrum Analyzer data, updated to refer to the PDS4 bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Receiver"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1977-09-05","stop_date":"2024-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/document/collection_document_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:47.750882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.sa::2.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Data Bundle","description":"This bundle contains the Voyager 2 Plasma Wave Spectrometer spectrum analyzer \ndata from the entire mission in calibrated CDF files","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn","Uranus","Neptune"],"instruments":["Pws","Plasma Wave Science"],"instrument_hosts":["Vg2"],"data_types":[],"start_date":"1977-08-20","stop_date":"2024-09-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/bundle_data_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:49.259529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.sa:browse::2.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Browse Plots","description":"Voyager 2 PWS data in 10-day plot PNG files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2022-05-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/browse/collection_browse_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:50.426157","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.sa:data::2.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Data Files","description":"Voyager 2 PWS data in daily CDF files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2023-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/data/collection_data_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:52.045722","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.sa:document::1.0","title":"Voyager 2 Plasma Waves Instrument Low Rate Spectrum Analyzer Document Collection","description":"This collection contains documents related to the Voyager 2 Plasma Waves Instrument\n Low Rate Spectrum Analyzer data, updated to refer to the PDS4 bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn","Uranus","Neptune"],"instruments":["Plasma Wave Receiver"],"instrument_hosts":["Vg2"],"data_types":["Document"],"start_date":"1977-08-20","stop_date":"2024-09-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/document/collection_document_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:53.064007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.wf::1.0","title":"Voyager 1 Plasma Wave Science, Uncalibrated Waveforms, Entire Mission Bundle","description":"This bundle contains Voyager 1 Plasma Wave Spectrometer (PWS) raw\n waveform data and documentation for all available telemetry frames from \n (SCET) 1978-08-21T05:41:36.299Z through 2022-02-05T08:18:07.031Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar Wind","Interstellar Particles","Jupiter","Saturn","Interstellar Medium","INTERSTELLAR PARTICLES"],"instruments":["Pws","Plasma Wave Science"],"instrument_hosts":["Voyager 1","Vg1"],"data_types":[],"start_date":"1978-08-21","stop_date":"2022-02-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/bundle.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:54.560784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.wf:browse::1.0","title":"Voyager 1 Plasma Wave Science, High Spectral Resolution Plots, Entire Mission Collection","description":"This collection contains Voyager 1 Plasma Wave Science (PWS) PNG\n (Portable Network Graphics) images generated from raw waveform data \n from (SCET) 1979-02-27T00:00:00.000Z through 2025-01-01T00:00:00.000Z. Ancillary sources\n for the plots include the various Voyager 1 Magnetometer PDS3 volumes\n and NAIF SPICE position kernels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager","Voyager 1"],"targets":["Solar Wind","Interstellar Particles","Interstellar Medium","Jupiter","Saturn","INTERSTELLAR PARTICLES"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Browse"],"start_date":"1979-02-27","stop_date":"2025-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/browse/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:55.578498","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.wf:data::1.0","title":"Voyager 1 PWS Electric Waveforms Data Collection","description":"The Voyager 1 PWS Electric Waveforms Data Collections contains raw full resolution \n waveform data consisting of electric field waveform samples from the Voyager 1 \n Plasma Wave Science waveform receiver obtained during the entire mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager","Voyager 1"],"targets":["Solar Wind","Interstellar Particles","Jupiter","Saturn","Interstellar Particles","INTERSTELLAR PARTICLES","Interstellar Medium"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Data"],"start_date":"1978-08-21","stop_date":"2022-02-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/data/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:56.664579","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.wf:miscellaneous::1.0","title":"Voyager 1 PWS Waveform Cruise Autoplot Configuration Files Data Collection","description":"The time boundary and file name configuration data used to associate a set of PNG images with the Autoplot configuration file below. In this case it associates the plots in browse/cruise with the file vg1_pws_wf_cruise_v1.0.vap","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Miscellaneous"],"start_date":"1978-08-21","stop_date":"2022-02-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/miscellaneous/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/miscellaneous/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:57.667406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.wf::1.0","title":"Voyager 2 Plasma Wave Science, Uncalibrated Waveforms, Entire Mission Bundle","description":"This bundle contains Voyager 2 Plasma Wave Spectrometer (PWS) raw\n waveform data and documentation for all available telemetry frames from \n (SCET) 1979-04-28T07:59:16.710Z through 2006-03-07T08:48:04.778Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Solar Wind","Interstellar Particles","Saturn","Uranus","Neptune","INTERSTELLAR PARTICLES"],"instruments":["Pws","Plasma Wave Science"],"instrument_hosts":["Voyager 2","Vg2"],"data_types":[],"start_date":"1979-04-28","stop_date":"2006-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/bundle.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:59.192775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.wf:browse::1.0","title":"Voyager 2 Plasma Wave Science, High Spectral Resolution Plots, Entire Mission Collection","description":"This collection contains Voyager 2 Plasma Wave Science (PWS) PNG\n (Portable Network Graphics) images generated from raw waveform data \n from (SCET) 1979-07-02T00:00:00.000Z through 2010-01-01T00:00:00.000Z. Ancillary sources\n for the plots include the various Voyager 2 Magnetometer PDS3 volumes\n and NAIF SPICE position kernels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager","Voyager 2"],"targets":["Solar Wind","Interstellar Particles","Jupiter","Neptune","Saturn","Uranus","INTERSTELLAR PARTICLES"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-07-02","stop_date":"2010-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/browse/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:45:00.177178","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.wf:data::1.0","title":"Voyager 2 Plasma Wave Science, Raw Waveforms, Entire Mission Collection","description":"This collection contains Voyager 2 Plasma Wave Spectrometer (PWS) raw\n waveform data and documentation for all available telemetry frames from \n (SCET) 1979-04-28T07:59:16.710Z through 2006-03-07T08:48:04.778Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager","Voyager 2"],"targets":["Jupiter","Solar Wind","Interstellar Particles","Saturn","Uranus","Neptune","INTERSTELLAR PARTICLES"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-04-28","stop_date":"2006-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/data/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:45:01.478104","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.wf:miscellaneous::1.0","title":"Voyager 2 PWS Waveform Cruise Autoplot Configuration Files Data Collection","description":"The time boundary and file name configuration data used to associate a set of PNG images with the Autoplot configuration file below. In this case it associates the plots in browse/cruise with the file vg1_pws_wf_cruise_v1.0.vap","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar Wind","Jupiter","Neptune","Saturn","Uranus"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Miscellaneous"],"start_date":"1979-04-28","stop_date":"2006-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/miscellaneous/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/miscellaneous/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:45:02.484635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl new file mode 100644 index 0000000..5c7c0fd --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl @@ -0,0 +1,53 @@ +{"id":"rms:astrom_xxxx_go_to_this_directory_in_viewmaster:a00016f2","title":"ASTROM_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/ASTROM_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:cocirs_0xxx_go_to_this_directory_in_viewmaster:59759fb8","title":"COCIRS_0xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Composite Infrared Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2000-01-01","stop_date":"2009-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COCIRS_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:3_0:ff414dcd","title":"3.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/3.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:2_0:a750b779","title":"2.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/2.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918709","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:cocirs_1xxx_go_to_this_directory_in_viewmaster:3efd222f","title":"COCIRS_1xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Composite Infrared Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2010-01-01","stop_date":"2017-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COCIRS_1xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:cocirs_5xxx_go_to_this_directory_in_viewmaster:261300c8","title":"COCIRS_5xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Composite Infrared Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2010-01-01","stop_date":"2010-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COCIRS_5xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:cocirs_6xxx_go_to_this_directory_in_viewmaster:af4823ca","title":"COCIRS_6xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Composite Infrared Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2010-01-01","stop_date":"2010-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COCIRS_6xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:coiss_0xxx_go_to_this_directory_in_viewmaster:d42baa0e","title":"COISS_0xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COISS_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:4_2:2fd689ed","title":"4.2 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/4.2/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:4_1:6fc453ab","title":"4.1 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/4.1/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:4_0:041bac24","title":"4.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/4.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:1_0:92bd77e2","title":"1.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/1.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:coiss_1xxx_go_to_this_directory_in_viewmaster:aa56d4a7","title":"COISS_1xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COISS_1xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:coiss_2xxx_go_to_this_directory_in_viewmaster:75d7ab71","title":"COISS_2xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COISS_2xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:coiss_3xxx_go_to_this_directory_in_viewmaster:c4970e91","title":"COISS_3xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COISS_3xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:corss_8xxx_go_to_this_directory_in_viewmaster:6fec246a","title":"CORSS_8xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Radio Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2005-01-01","stop_date":"2010-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/CORSS_8xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:0_2:d113b90e","title":"0.2 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/0.2/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:cosp_xxxx_go_to_this_directory_in_viewmaster:fc997888","title":"COSP_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COSP_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:couvis_0xxx_go_to_this_directory_in_viewmaster:7727ec9e","title":"COUVIS_0xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Ultraviolet Imaging Spectrograph"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COUVIS_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:couvis_8xxx_go_to_this_directory_in_viewmaster:b4b67f92","title":"COUVIS_8xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Ultraviolet Imaging Spectrograph"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2005-01-01","stop_date":"2017-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COUVIS_8xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:2_1:04989ead","title":"2.1 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/2.1/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:0_3:662de4fa","title":"0.3 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/0.3/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:covims_0xxx_go_to_this_directory_in_viewmaster:be64493a","title":"COVIMS_0xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Visual and Infrared Mapping Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COVIMS_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:covims_8xxx_go_to_this_directory_in_viewmaster:194a8558","title":"COVIMS_8xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Visual and Infrared Mapping Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2005-01-01","stop_date":"2017-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COVIMS_8xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:ebrocc_xxxx_go_to_this_directory_in_viewmaster:3b2bd084","title":"EBROCC_xxxx Go to this directory in Viewmaster - Earth-Based Ring Occultation Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Earth-Based Ring Occultation"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/EBROCC_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:go_0xxx_go_to_this_directory_in_viewmaster:7303c184","title":"GO_0xxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/GO_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:hstix_xxxx_go_to_this_directory_in_viewmaster:0b0e15b3","title":"HSTIx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTIx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:1_1:fb890428","title":"1.1 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/1.1/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:hstjx_xxxx_go_to_this_directory_in_viewmaster:5f2bfbfc","title":"HSTJx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTJx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:1_2:59c7461c","title":"1.2 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/1.2/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:hstnx_xxxx_go_to_this_directory_in_viewmaster:de9b3ce7","title":"HSTNx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTNx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:hstox_xxxx_go_to_this_directory_in_viewmaster:b93ba4f7","title":"HSTOx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTOx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:hstux_xxxx_go_to_this_directory_in_viewmaster:e8a11cb0","title":"HSTUx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTUx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:jnojir_xxxx_go_to_this_directory_in_viewmaster:2c937291","title":"JNOJIR_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/JNOJIR_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:jnojnc_0xxx_go_to_this_directory_in_viewmaster:9304a2f7","title":"JNOJNC_0xxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/JNOJNC_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:jnosp_xxxx_go_to_this_directory_in_viewmaster:6160ac64","title":"JNOSP_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/JNOSP_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:jnosru_xxxx_go_to_this_directory_in_viewmaster:3f44ee5a","title":"JNOSRU_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/JNOSRU_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:nhsp_xxxx_go_to_this_directory_in_viewmaster:5150497f","title":"NHSP_xxxx Go to this directory in Viewmaster - New Horizons Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/NHSP_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:nhxxlo_xxxx_go_to_this_directory_in_viewmaster:f0c51bed","title":"NHxxLO_xxxx Go to this directory in Viewmaster - New Horizons Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/NHxxLO_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:5_0:068a82a7","title":"5.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/5.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:nhxxmv_xxxx_go_to_this_directory_in_viewmaster:686fbf85","title":"NHxxMV_xxxx Go to this directory in Viewmaster - New Horizons Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/NHxxMV_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:res_xxxx_prelim_go_to_this_directory_in_viewmaster:2b8c5d69","title":"RES_xxxx_prelim Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/RES_xxxx_prelim","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:rpx_xxxx_go_to_this_directory_in_viewmaster:bd3132c8","title":"RPX_xxxx Go to this directory in Viewmaster - Ring Plane Crossing Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Ring Plane Crossing"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"1995-01-01","stop_date":"1995-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/RPX_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vgiris_xxxx_peer_review_go_to_this_directory_in_viewmaster:8e5eeab2","title":"VGIRIS_xxxx_peer_review Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGIRIS_xxxx_peer_review","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vgiss_5xxx_go_to_this_directory_in_viewmaster:d0be8a5f","title":"VGISS_5xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGISS_5xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vgiss_6xxx_go_to_this_directory_in_viewmaster:91ce1097","title":"VGISS_6xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGISS_6xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vgiss_7xxx_go_to_this_directory_in_viewmaster:718f3571","title":"VGISS_7xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGISS_7xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vgiss_8xxx_go_to_this_directory_in_viewmaster:3dd83687","title":"VGISS_8xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGISS_8xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vg_0xxx_go_to_this_directory_in_viewmaster:6269b704","title":"VG_0xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VG_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vg_20xx_go_to_this_directory_in_viewmaster:384c4f55","title":"VG_20xx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VG_20xx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vg_28xx_go_to_this_directory_in_viewmaster:8a8a96b7","title":"VG_28xx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VG_28xx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:0_9:551cb3de","title":"0.9 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/0.9/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"rms:vgx_9xxx_go_to_this_directory_in_viewmaster:27f77e47","title":"VGx_9xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGx_9xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl new file mode 100644 index 0000000..7ae7a22 --- /dev/null +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl @@ -0,0 +1,1542 @@ +{"id":"sbn:bopps_infrared_camera_birc:62d6d574","title":"BOPPS INFRARED CAMERA (BIRC)","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014-v1.0/document/inbrief/birc.txt","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:bopps2014::1.0","title":"Balloon Observation Platform for Planetary Science (BOPPS) 2014 Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614580","keywords":["urn:nasa:pds:bopps2014::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:bopps2014:biassub::1.0","title":"BOPPS 2014 Observations: BIRC Bias-Subtracted Images","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:biassub-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614598","keywords":["urn:nasa:pds:bopps2014:biassub::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:bopps2014:calibrated::1.0","title":"BOPPS 2014 Observations: BIRC Calibrated Images","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614609","keywords":["urn:nasa:pds:bopps2014:calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:bopps2014:document::1.0","title":"BOPPS 2014 Observations: Documentation","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614628","keywords":["urn:nasa:pds:bopps2014:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:bopps2014:groundcalibration::1.0","title":"BOPPS 2014 Observations: BIRC Ground Calibrations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:groundcalibration-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614639","keywords":["urn:nasa:pds:bopps2014:groundcalibration::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:bopps2014:raw::1.0","title":"BOPPS 2014 Observations: BIRC Raw Images","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614647","keywords":["urn:nasa:pds:bopps2014:raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:bopps2014:scoadded::1.0","title":"BOPPS 2014 Observations: BIRC Shifted and Co-Added Images","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:scoadded-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614655","keywords":["urn:nasa:pds:bopps2014:scoadded::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:bopps2014:status::1.0","title":"BOPPS 2014 Observations: BIRC Status Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:status-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614662","keywords":["urn:nasa:pds:bopps2014:status::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:brrison_infrared_camera_birc:deb1e4d3","title":"BRRISON INFRARED CAMERA (BIRC)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["BRRISON"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/catalog/birc_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/brrison/index.shtml","scraped_at":"2026-02-02T22:12:59.822692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ultraviolet_and_visible_imaging_camera_uvvis:150038eb","title":"ULTRAVIOLET AND VISIBLE IMAGING CAMERA (UVVis)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["BRRISON"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/catalog/uvvis_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/brrison/index.shtml","scraped_at":"2026-02-02T22:12:59.822712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:brrison_birc_ground_calibration_raw_data:e48afdfa","title":"BRRISON BIRC Ground Calibration Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["BRRISON"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/brrison/index.shtml","scraped_at":"2026-02-02T22:12:59.822724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_remote_imaging_spectrograph_imager_crispimag:e9331516","title":"CONTOUR Remote Imaging Spectrograph - Imager (CRISPIMAG)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/cri_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.220983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_remote_imaging_spectrograph_spectrometer_crispec:bcc53b87","title":"CONTOUR Remote Imaging Spectrograph - Spectrometer (CRISPEC)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/crs_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_forward_imager_cfi:9c6055e5","title":"CONTOUR Forward Imager (CFI)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/cfiinst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_interstellar_dust_analyzer_cida:fd31cb04","title":"CONTOUR Interstellar Dust Analyzer (CIDA)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/cidainst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_neutral_gas_and_ion_mass_spectrometer_ngims:30871f1d","title":"CONTOUR Neutral Gas and Ion Mass Spectrometer (NGIMS)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/ngiminst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_telemetry_tlm:509a98b9","title":"CONTOUR Telemetry (TLM)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/tlm_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_mission_and_data_documentation:284386ca","title":"CONTOUR Mission and Data Documentation","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_forward_imager_ground_calibration_data:faed47b2","title":"CONTOUR Forward Imager Ground Calibration Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-cfi-1-edr-ground-ocf-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_remote_imaging_spectrograph_imaging_ground_calibration_data:c889cec8","title":"CONTOUR Remote Imaging Spectrograph Imaging Ground Calibration Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispimag-1-edr-ground-ocf-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_remote_imaging_spectrograph_spectrometer_ground_calibration_data:b976db24","title":"CONTOUR Remote Imaging Spectrograph Spectrometer Ground Calibration Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispspec-1-edr-ground-ocf-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:contour_telemetry_ground_calibration_data:76dd312c","title":"CONTOUR Telemetry Ground Calibration Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-tlm-1-edr-ground-gse-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_dracoraw::3.0","title":"DART Raw Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument v3.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Didymos","Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481331","keywords":["urn:nasa:pds:dart:data_dracoraw::3.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_dracocal::3.0","title":"DART Calibrated Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument v3.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Didymos","Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481352","keywords":["urn:nasa:pds:dart:data_dracocal::3.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:document_draco::3.0","title":"DART Documentation for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument v3.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Didymos","Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481366","keywords":["urn:nasa:pds:dart:document_draco::3.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_dracoddp::1.0","title":"DART Calibrated Images with Geometric Backplanes for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Didymos","Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481377","keywords":["urn:nasa:pds:dart:data_dracoddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_maf::1.0","title":"DART Maneuver Acceleration Files (MAF) Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481386","keywords":["urn:nasa:pds:dart:data_maf::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_trk223::1.0","title":"DSN Media Calibration (TRK-2-23) Files for DART Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481394","keywords":["urn:nasa:pds:dart:data_trk223::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_trk234::1.0","title":"DART Radio Science Tracking and Navigation Files (TRK-2-34) Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481401","keywords":["urn:nasa:pds:dart:data_trk234::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:document_rs::1.0","title":"DART Radio Science Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481408","keywords":["urn:nasa:pds:dart:document_rs::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:liciacube:document::1.0","title":"Light Italian Cubesat for Imaging of Asteroids (LICIACube) Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481416","keywords":["urn:nasa:pds:liciacube:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:liciacube:leia_raw::1.0","title":"Liciacube Explorer Imaging for Asteroid (LEIA) Light Italian Cubesat for Imaging of Asteroids (LICIACube) Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:leia_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481425","keywords":["urn:nasa:pds:liciacube:leia_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:liciacube:leia_calibrated::1.0","title":"LICIACube Explorer Imaging for Asteroid (LEIA) Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:leia_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481433","keywords":["urn:nasa:pds:liciacube:leia_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:liciacube:luke_raw::1.0","title":"Liciacube Unit Key Explorer (LUKE) Light Italian Cubesat for Imaging of Asteroids (LICIACube) Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:luke_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481442","keywords":["urn:nasa:pds:liciacube:luke_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:liciacube:luke_calibrated::1.0","title":"LICIACube Unit Key Explorer (LUKE) Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:luke_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481448","keywords":["urn:nasa:pds:liciacube:luke_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:liciacube:data_tnf::1.0","title":"LICIACube Radio Science Tracking and Navigation Files (TRK-2-34) Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:data_tnf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481455","keywords":["urn:nasa:pds:liciacube:data_tnf::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:document_lco::1.0","title":"DART Las Campanas Observatory Telescopic Observations Documentation Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:document_lco-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481462","keywords":["urn:nasa:pds:dart_teleobs:document_lco::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcoimacsraw::1.0","title":"DART Las Campanas Observatory IMACS Magellan Baade 6.5m Telescope Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoimacsraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481470","keywords":["urn:nasa:pds:dart_teleobs:data_lcoimacsraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcoimacscal::1.0","title":"DART Las Campanas Observatory IMACS Magellan Baade 6.5m Telescope Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoimacscal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481477","keywords":["urn:nasa:pds:dart_teleobs:data_lcoimacscal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcoimacsddp::1.0","title":"DART Las Campanas Observatory IMACS Magellan Baade 6.5m Telescope Photometry Derived Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoimacsddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481484","keywords":["urn:nasa:pds:dart_teleobs:data_lcoimacsddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcoswoperaw::1.0","title":"DART Las Campanas Observatory Swope 1m Telescope Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoswoperaw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481491","keywords":["urn:nasa:pds:dart_teleobs:data_lcoswoperaw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcoswopecal::1.0","title":"DART Las Campanas Observatory Swope 1m Telescope Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoswopecal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481498","keywords":["urn:nasa:pds:dart_teleobs:data_lcoswopecal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcoswopeddp::1.0","title":"DART Las Campanas Observatory Swope 1m Telescope Photometry Derived Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoswopeddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481504","keywords":["urn:nasa:pds:dart_teleobs:data_lcoswopeddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:document_lcogt::1.0","title":"DART Las Cumbres Observatory 1.0m Telescope Documentation Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:document_lcogt-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481511","keywords":["urn:nasa:pds:dart_teleobs:document_lcogt::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcogt_fliraw::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Finger Lakes Instrumentation (FLI) Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogt_fliraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481519","keywords":["urn:nasa:pds:dart_teleobs:data_lcogt_fliraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcogt_flical::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Finger Lakes Instrumentation (FLI) Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogt_flical-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481530","keywords":["urn:nasa:pds:dart_teleobs:data_lcogt_flical::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcogt_fliddp::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Finger Lakes Instrumentation (FLI) Derived Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogt_fliddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481538","keywords":["urn:nasa:pds:dart_teleobs:data_lcogt_fliddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcogtraw::1.0","title":"DART Las Cumbres Observatory Sinistro Imager Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogtraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481547","keywords":["urn:nasa:pds:dart_teleobs:data_lcogtraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcogtcal::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Sinistro Imager Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogtcal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481554","keywords":["urn:nasa:pds:dart_teleobs:data_lcogtcal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_lcogtddp::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Sinistro Imager Derived Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogtddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481561","keywords":["urn:nasa:pds:dart_teleobs:data_lcogtddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtraw::2.0","title":"DART Lowell Discovery Telescope (LDT) Raw Data Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_ldtraw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481568","keywords":["urn:nasa:pds:dart_teleobs:data_ldtraw::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtcal::2.0","title":"DART Lowell Discovery Telescope (LDT) Calibrated Data Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_ldtcal-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481574","keywords":["urn:nasa:pds:dart_teleobs:data_ldtcal::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtddp::2.0","title":"DART Lowell Discovery Telescope (LDT) Derived Data Product Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_ldtddp-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481581","keywords":["urn:nasa:pds:dart_teleobs:data_ldtddp::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:document_ldt::2.0","title":"DART Lowell Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:document_ldt-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481587","keywords":["urn:nasa:pds:dart_teleobs:document_ldt::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:document_mro::1.0","title":"DART Magdalena Ridge Observatory 2.4m Telescope Documentation Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:document_mro-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481594","keywords":["urn:nasa:pds:dart_teleobs:document_mro::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_mroraw::1.0","title":"DART Magdalena Ridge Observatory 2.4m Telescope Raw Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_mroraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481655","keywords":["urn:nasa:pds:dart_teleobs:data_mroraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_mrocal::1.0","title":"DART Magdalena Ridge Observatory 2.4m Telescope Calibrated Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_mrocal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481662","keywords":["urn:nasa:pds:dart_teleobs:data_mrocal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_mroddp::1.0","title":"DART Magdalena Ridge Observatory 2.4m Telescope Derived Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_mroddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481670","keywords":["urn:nasa:pds:dart_teleobs:data_mroddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel::1.0","title":"DART Shapemodel Archive Bundle","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481676","keywords":["urn:nasa:pds:dart_shapemodel::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:thermal_vacuum_1_hri_ir_spectral_data:a7de9dbe","title":"Thermal-Vacuum 1: HRI-IR Spectral Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-ground-tv1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:thermal_vacuum_2_hri_ir_spectral_amp_hri_vis_image_data:87b37162","title":"Thermal-Vacuum 2: HRI-IR Spectral & HRI-VIS Image Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv-2-ground-tv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:thermal_vacuum_3_its_vis_image_data:aceba8fb","title":"Thermal-Vacuum 3: ITS-VIS Image Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-ground-tv3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:thermal_vacuum_4_hri_ir_spectral_hri_vis_amp_mri_vis_image_data:2bbcf436","title":"Thermal-Vacuum 4: HRI-IR Spectral, HRI-VIS & MRI-VIS Image Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-2-ground-tv4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_raw_calibration_spectra_from_cruise:ccb33ebc","title":"HRI-IR Raw Calibration Spectra from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_raw_calibration_images_from_cruise:66c19c4c","title":"HRI-VIS Raw Calibration Images from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_hri_vis_raw_calibration_images_from_cruise:3f4285b5","title":"Navigation HRI-VIS Raw Calibration Images from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-nav-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_raw_calibration_images_from_cruise:f7847cd8","title":"MRI-VIS Raw Calibration Images from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_mri_vis_raw_calibration_images_from_cruise_v1_1:26f2a673","title":"Navigation MRI-VIS Raw Calibration Images from Cruise v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-nav-9p-cruise-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:its_vis_raw_calibration_images_from_cruise:d4e2f38e","title":"ITS-VIS Raw Calibration Images from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_its_vis_raw_calibration_images_from_cruise_v1_1:761800fe","title":"Navigation ITS-VIS Raw Calibration Images from Cruise v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-nav-9p-cruise-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_raw_spectra_and_calibrations_from_encounter:b2312323","title":"HRI-IR Raw Spectra and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_9p_tempel_1_encounter_reduced_spectra_v3_0:f725de1a","title":"HRI-IR 9P/Tempel 1 Encounter Reduced Spectra v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_raw_images_and_calibrations_from_encounter:4082ce67","title":"HRI-VIS Raw Images and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_9p_tempel_1_encounter_calibrated_images_v3_0:fbcf84d5","title":"HRI-VIS 9P/Tempel 1 Encounter Calibrated Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-9p-encounter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_hri_vis_raw_images_and_calibrations_from_encounter:8a2aa353","title":"Navigation HRI-VIS Raw Images and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-nav-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_hri_vis_calibrated_images_from_encounter:44e9b49b","title":"Navigation HRI-VIS Calibrated Images from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3-nav-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_raw_images_and_calibrations_from_encounter:e85270a3","title":"MRI-VIS Raw Images and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_9p_tempel_1_encounter_calibrated_images_v3_0:c2947f36","title":"MRI-VIS 9P/Tempel 1 Encounter Calibrated Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-9p-encounter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_mri_vis_raw_images_and_calibrations_from_encounter_v1_1:028a06b3","title":"Navigation MRI-VIS Raw Images and Calibrations from Encounter v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-nav-9p-encounter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_mri_vis_calibrated_images_from_encounter_v1_1:17da12c6","title":"Navigation MRI-VIS Calibrated Images from Encounter v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3-nav-9p-encounter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:its_vis_raw_images_and_calibrations_from_encounter:9db2a535","title":"ITS-VIS Raw Images and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:its_vis_9p_tempel_1_encounter_calibrated_images_v3_0:39c2c8c1","title":"ITS-VIS 9P/Tempel 1 Encounter Calibrated Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3_4-9p-encounter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_its_vis_raw_images_and_calibrations_from_encounter_v1_1:67437e39","title":"Navigation ITS-VIS Raw Images and Calibrations from Encounter v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-nav-9p-encounter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_its_vis_calibrated_images_from_encounter:b0cbfde5","title":"Navigation ITS-VIS Calibrated Images from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3-nav-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_science_data_from_the_9p_tempel_nbsp_1_encounter:7d87003c","title":"Radio Science Data from the 9P/Tempel 1 Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-rss-1-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:impact_flyby_spacecraft_instrument_temperatures_from_flight:1c10f100","title":"Impact Flyby Spacecraft Instrument Temperatures from Flight","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii_hriv_mri-6-temps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:deep_impact_amp_epoxi_documentation_set_v4_0:af6dc0f4","title":"Deep Impact & EPOXI Documentation Set v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:deep_impact_stardust_next_derived_shape_model_of_9p_tempel_1_v2_0:fbbbf1f1","title":"Deep Impact/Stardust-NExT Derived Shape Model of 9P/Tempel 1 v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_its_mri-5-tempel1-shape-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometry_of_9p_tempel_nbsp_1_from_deep_impact_mri_vis_observations:ea7f83bd","title":"Photometry of 9P/Tempel 1 from Deep Impact/MRI-VIS Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-5-tempel1-photometry-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:derived_surface_temperature_maps_of_9p_tempel_nbsp_1:5ee96b64","title":"Derived Surface Temperature Maps of 9P/Tempel 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-5-tempel1-surf-temp-maps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:movies_of_9p_tempel_nbsp_1_during_approach_and_encounter:64a8090e","title":"Movies of 9P/Tempel 1 during Approach and Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hriv_its_mri-5-movie-coll-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:iras_images_of_9p_tempel_nbsp_1_from_1983:25545a6b","title":"IRAS Images of 9P/Tempel 1 from 1983","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-images-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:iras_photometry_of_9p_tempel_nbsp_1_from_1983:32622bbb","title":"IRAS Photometry of 9P/Tempel 1 from 1983","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-irtf:mirsi-9p::1.0","title":"IRTF Mid-IR Imaging of Comet 9P/Tempel 1","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf:mirsi-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821473","keywords":["urn:nasa:pds:gbo-irtf:mirsi-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-irtf:nirimg-9p::1.0","title":"IRTF Near-IR Images of 9P/Tempel 1 during Deep Impact Encounter","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf:nirimg-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821483","keywords":["urn:nasa:pds:gbo-irtf:nirimg-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:irtf_spex_near_ir_spectra_of_9p_tempel_nbsp_1_during_deep_impact_encounter:301a2fb1","title":"IRTF/SpeX Near-IR Spectra of 9P/Tempel 1 during Deep Impact Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0046-2-irtf-nirspec-tmpl1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:keck_i_lws_mid_ir_images_and_photometry_of_9p_tempel_nbsp_1_from_2000:6e8cd801","title":"Keck I LWS Mid-IR Images and Photometry of 9P/Tempel 1 from 2000","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-keck1lws-3-9p-images-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:nirimage-9p::1.0","title":"KPNO Near-Infrared Images of Comet 9P/Tempel 1 during Deep Impact Encounter","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno:nirimage-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821513","keywords":["urn:nasa:pds:gbo-kpno:nirimage-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:lowell_72_inch_visual_images_and_photometry_of_9p_tempel_nbsp_1_from_2000_2001:a34501a9","title":"Lowell 72-inch Visual Images and Photometry of 9P/Tempel 1 from 2000-2001","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lo72ccd-3-9p-images-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:lcs-9p::1.0","title":"McDonald Observatory 9P/Tempel 1 Spectral Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald:lcs-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821534","keywords":["urn:nasa:pds:gbo-mcdonald:lcs-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mt_bigelow_61_inch_kuiper_telescope_visual_images_of_9p_tempel_nbsp_1_from_1994:aa616367","title":"Mt. Bigelow 61-inch Kuiper Telescope Visual Images of 9P/Tempel 1 from 1994","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lplccd-3-mtbg61-tmpl1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:san_pedro_martir_1_5m_visual_images_of_9p_tempel_nbsp_1_during_deep_impact_encounter:ab4202f5","title":"San Pedro Martir 1.5m Visual Images of 9P/Tempel 1 during Deep Impact Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0276-2_3-martir15m-tmpl1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:uh_2_2m_visual_images_and_astrometry_of_9p_tempel_nbsp_1_from_1997_2000:96d80cb4","title":"UH 2.2m Visual Images and Astrometry of 9P/Tempel 1 from 1997-2000","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0034-3-uh22m-tmpl1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:image-9p::1.0","title":"KPNO Images of Comet 9P/Tempel 1 from February to June 2005","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno:image-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821580","keywords":["urn:nasa:pds:gbo-kpno:image-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:mosaic-9p::1.0","title":"KPNO MOSAIC Images of 9P/Tempel 1 from 2005 Around the DI Encounter","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno:mosaic-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821588","keywords":["urn:nasa:pds:gbo-kpno:mosaic-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ion_propulsion_system_diagnostic_system:e6fbed94","title":"Ion Propulsion System Diagnostic System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-ids-3-rdr-borrelly-v1.0/catalog/ids.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:miniature_integrated_camera_spectrometer:4b659019","title":"Miniature Integrated Camera Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-2-edr-visccd-borrelly-v1.0/catalog/micas.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:plasma_experiment_for_planetary_exploration:25b56559","title":"Plasma Experiment for Planetary Exploration","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-pepe-2-edr-borrelly-v1.0/catalog/pepe.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ids_plasma_wave_spectrometer_data_19p_borrelly_1_fly_by:eb1c66d0","title":"IDS (Plasma Wave Spectrometer) Data, 19P/Borrelly 1 Fly-by","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-ids-3-rdr-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:micas_calibrated_visccd_images_of_19p_borrelly_1:db7eb917","title":"MICAS Calibrated VISCCD Images of 19P/Borrelly 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-3-rdr-visccd-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:micas_uncalibrated_visccd_images_of_19p_borrelly_1:b318a4f5","title":"MICAS Uncalibrated VISCCD Images of 19P/Borrelly 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-2-edr-visccd-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:micas_digital_elevation_maps_of_19p_borrelly_1:67bb6f8b","title":"MICAS Digital Elevation Maps of 19P/Borrelly 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-5-borrelly-dem-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:pepe_uncalibrated_data_from_the_19p_borrelly_1_encounter:7a47766f","title":"PEPE Uncalibrated Data from the 19P/Borrelly 1 Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-pepe-2-edr-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-ctio:cfccd-19p::1.0","title":"CTIO Images of 19P/Borrelly 1 with Photometry","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio:cfccd-19p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025135","keywords":["urn:nasa:pds:gbo-ctio:cfccd-19p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mcdonald_observatory_column_density_observations_of_19p_borrelly_1:ca8fd255","title":"McDonald Observatory Column Density Observations of 19P/Borrelly 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ids_lcs-3-rdr-borrelly-mcdnld-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:igi-19p::1.0","title":"McDonald Observatory Images of Comet 19P/Borrelly","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Space 1"],"targets":["Comet","Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald:igi-19p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025156","keywords":["urn:nasa:pds:gbo-mcdonald:igi-19p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ccd_images_of_19p_borrelly_1_1987_2002:4df2f2c5","title":"CCD Images of 19P/Borrelly 1, 1987-2002","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccdimgr-3-meech-19p-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:image-19p::1.0","title":"KPNO Images of Comet 19P/Borrelly from 21-23 Sep 2001","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Space 1"],"targets":["Comet","Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno:image-19p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025175","keywords":["urn:nasa:pds:gbo-kpno:image-19p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_in_flight_calibration_spectra_v2_0_raw:383b2349","title":"HRI-IR In-flight Calibration Spectra v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-epoxi-calibrations-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_in_flight_calibration_images_v2_0_raw:eb6e25d4","title":"HRI-VIS In-flight Calibration Images v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-epoxi-calibrations-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_in_flight_calibration_images_v2_0_raw:0b2c0055","title":"MRI-VIS In-flight Calibration Images v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-epoxi-calibrations-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_epoch_earth_spectra_raw:1d5eed57","title":"HRI-IR EPOCh Earth Spectra - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-2-epoxi-earth-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_epoch_earth_calibrated_spectra_v2_0:13a23194","title":"HRI-IR EPOCh Earth Calibrated Spectra v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-3_4-epoxi-earth-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_epoch_mars_spectra_raw:aaf873cc","title":"HRI-IR EPOCh Mars Spectra - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-2-epoxi-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_epoch_mars_calibrated_spectra:37ad316e","title":"HRI-IR EPOCh Mars Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-3_4-epoxi-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_in_flight_lunar_calibrated_spectra:b854555f","title":"HRI-IR In-flight Lunar Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-l-hrii-3_4-epoxi-lunar-cals-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_epoch_exoplanet_transit_images_raw:40b18e22","title":"HRI-VIS EPOCh Exoplanet Transit Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-2-epoxi-exoplanets-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_epoch_exoplanet_transit_images_calibrated:19f164d6","title":"HRI-VIS EPOCh Exoplanet Transit Images - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-3-epoxi-exoplanets-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_epoch_exoplanet_transit_photometry:d0db76f5","title":"HRI-VIS EPOCh Exoplanet Transit Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-5-epoxi-exoplanets-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_epoch_earth_images_raw:691b79c8","title":"HRI-VIS EPOCh Earth Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-2-epoxi-earth-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_epoch_earth_images_calibrated_v2_0:1d270fb0","title":"HRI-VIS EPOCh Earth Images - Calibrated v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-3_4-epoxi-earth-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_epoch_mars_images_raw:44c6f60c","title":"HRI-VIS EPOCh Mars Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-2-epoxi-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_epoch_mars_images_calibrated_v2_0:298b8774","title":"HRI-VIS EPOCh Mars Images - Calibrated v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-3_4-epoxi-mars-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_epoch_earth_context_images_raw:8de01d91","title":"MRI-VIS EPOCh Earth Context Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-2-epoxi-earth-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_epoch_earth_context_images_calibrated_v2_0:82d464f2","title":"MRI-VIS EPOCh Earth Context Images - Calibrated v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-3_4-epoxi-earth-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_epoch_mars_context_images_raw:0ce00905","title":"MRI-VIS EPOCh Mars Context Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-2-epoxi-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_epoch_mars_context_images_calibrated_v2_0:8fe3927d","title":"MRI-VIS EPOCh Mars Context Images - Calibrated v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-3_4-epoxi-mars-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_hartley_2_raw:adc2a458","title":"HRI-IR Hartley 2 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_103p_hartley_2_calibrated_spectra_v3_0:aab55e55","title":"HRI-IR 103P/Hartley 2 Calibrated Spectra v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_hartley_2_raw:a76ff170","title":"HRI-VIS Hartley 2 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_hartley_2_calibrated:74a76c01","title":"HRI-VIS Hartley 2 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_hartley_2_deconvolved_images_of_the_nucleus:e626a49e","title":"HRI-VIS Hartley 2 - Deconvolved Images of the Nucleus","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-5-epoxi-hartley2-deconv-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_hartley_2_raw:ca5d79f4","title":"MRI-VIS Hartley 2 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_hartley_2_calibrated:8a3b8d82","title":"MRI-VIS Hartley 2 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:epoxi_mri:hartley2_photometry::1.0","title":"EPOXI MRI-VIS 103P/Hartley 2 Encounter Photometry Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri:hartley2_photometry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227490","keywords":["urn:nasa:pds:epoxi_mri:hartley2_photometry::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_hri_ir_c_garradd_2009_p1_raw_spectra:e94f3245","title":"EPOXI HRI-IR C/Garradd (2009 P1) Raw Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_hri_ir_c_garradd_2009_p1_calibrated_spectra:31919ff2","title":"EPOXI HRI-IR C/Garradd (2009 P1) Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_c_ison_2012_s1_raw_spectra:31f06548","title":"HRI-IR C/ISON (2012 S1) Raw Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_ir_c_ison_2012_s1_calibrated_spectra:1fa9bcb7","title":"HRI-IR C/ISON (2012 S1) Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_hri_vis_c_garradd_2009_p1_raw_images:c1b3600d","title":"EPOXI HRI-VIS C/Garradd (2009 P1) Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_hri_vis_c_garradd_2009_p1_calibrated_images:20675fdb","title":"EPOXI HRI-VIS C/Garradd (2009 P1) Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_mri_vis_c_garradd_2009_p1_raw_images:56337d9d","title":"EPOXI MRI-VIS C/Garradd (2009 P1) Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_mri_vis_c_garradd_2009_p1_calibrated_images:c770fc30","title":"EPOXI MRI-VIS C/Garradd (2009 P1) Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_c_ison_2012_s1_raw_images:6648690b","title":"MRI-VIS C/ISON (2012 S1) Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:mri_vis_c_ison_2012_s1_calibrated_images:a40c7f86","title":"MRI-VIS C/ISON (2012 S1) Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hri_vis_stellar_psfs:5068ae4f","title":"HRI-VIS Stellar PSFs","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-6-epoxi-stellar-psfs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_spacecraft_instrument_temperatures_v3_0:c33c9d7e","title":"EPOXI Spacecraft Instrument Temperatures v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:derived_shape_model_of_103p_hartley_2:f786774f","title":"Derived Shape Model of 103P/Hartley 2","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_mri-5-hartley2-shape-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:near_infrared_mapping_spectrometer:d9322239","title":"Near-Infrared Mapping Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/catalog/gonimsin.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photopolarimeter_radiometer:47945429","title":"Photopolarimeter-Radiometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/catalog/gopprins.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solid_state_imaging_system:77b45072","title":"Solid State Imaging System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/catalog/gossiins.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ultraviolet_spectrometer:6122f1aa","title":"Ultraviolet Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-2-edr-sl9-v1.0/catalog/gouvsins.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:galileo_near_infrared_mapping_spectrometer_observations_of_d_shoemaker_levy_9:3ecd5e0d","title":"Galileo Near-Infrared Mapping Spectrometer Observations of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:galileo_photopolarimeter_radiometer_observations_of_d_shoemaker_levy_9:302fb51d","title":"Galileo Photopolarimeter Radiometer Observations of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:galileo_solid_state_imaging_system_images_of_d_shoemaker_levy_9:c4f5b582","title":"Galileo Solid State Imaging System Images of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:galileo_uv_spectrometer_observations_of_d_shoemaker_levy_9:e52167ef","title":"Galileo UV Spectrometer Observations of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-2-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:galileo_uv_spectrometer_observations_of_fragment_g_of_d_shoemaker_levy_9:7cd72ac6","title":"Galileo UV Spectrometer Observations of Fragment G of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-3-rdr-sl9-g-fragment-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_detector_system:f7bab579","title":"Dust Impact Detector System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/catalog/did.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:energetic_particle_analyzer:00930d50","title":"Energetic Particle Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-epa-3-rdr-grigg-skjell-v1.0/catalog/epa.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_science_experiment:8fc8f147","title":"Radio Science Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-grigg-skjell-v1.0/catalog/gre.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:halley_multicolour_camera:65ce3f8c","title":"Halley Multicolour Camera","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/catalog/hmc.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ion_mass_spectrometer:2dd193c2","title":"Ion Mass Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-grigg-skjell-v1.0/catalog/ims.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:johnstone_plasma_analyzer:b3c1392d","title":"Johnstone Plasma Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa_mag-4-rdr-grigg-skjell-v1.0/catalog/jpa.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:magnetometer:b0a235a8","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-grigg-skjell-v1.0/catalog/mag.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:optical_probe_experiment:39786ed4","title":"Optical Probe Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-grigg-skjell-v1.0/catalog/ope.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:particle_impact_analyzer:80c18448","title":"Particle Impact Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/catalog/pia.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:neutral_mass_spectrometer:2b6b5dab","title":"Neutral Mass Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-nms-4-halley-v1.0/catalog/instrument.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_dust_impact_detector_observations_near_comet_halley:24b6a7dc","title":"Giotto Dust Impact Detector Observations near Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_radio_science_experiment_observations_of_comet_halley:288163e1","title":"Giotto Radio Science Experiment Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_radio_science_experiment_additional_observations_of_comet_halley:4efffa66","title":"Giotto Radio Science Experiment - Additional Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-1-edr-halley-addenda-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_halley_multi_colour_camera_observations_of_comet_halley:eed9d5f9","title":"Giotto Halley Multi-Colour Camera Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_ion_mass_spectrometer_high_energy_range_spectrometer_observations_of_comet_halley:d8ea02b3","title":"Giotto Ion Mass Spectrometer, High Energy Range Spectrometer Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-hers-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_ion_mass_spectrometer_high_intensity_spectrometer_observations_of_comet_halley:dac06871","title":"Giotto Ion Mass Spectrometer, High Intensity Spectrometer Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_johnstone_plasma_analyzer_merged_results_for_comet_halley:2b01b277","title":"Giotto Johnstone Plasma Analyzer Merged Results for Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-4-ddr-halley-merge-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_magnetometer_8_second_observations_of_comet_halley:d6682bd0","title":"Giotto Magnetometer 8-second Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-halley-8sec-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_optical_probe_experiment_photopolarimetry_of_comet_halley:e9f25631","title":"Giotto Optical Probe Experiment Photopolarimetry of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_particulate_impact_analyzer_observations_near_comet_halley:fdb87277","title":"Giotto Particulate Impact Analyzer Observations near Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_neutral_mass_spectrometer_density_profiles_of_comet_halley:c12b2b26","title":"Giotto Neutral Mass Spectrometer Density Profiles of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-nms-4-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:halley_multimeter_camera:65ce3f8c","title":"Halley Multimeter Camera","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/catalog/hmc.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_dust_impact_detector_observations_of_comet_26p_grigg_skjellerup:5701a105","title":"Giotto Dust Impact Detector Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_energetic_particle_experiment_observations_of_comet_26p_grigg_skjellerup:2e3018d8","title":"Giotto Energetic Particle Experiment Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-epa-3-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_radio_science_experiment_observations_of_comet_26p_grigg_skjellerup:0413da0d","title":"Giotto Radio Science Experiment Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_ion_mass_spectrometer_high_intensity_spectrometer_observations_of_comet_26p_grigg_skjellerup:f622b9c6","title":"Giotto Ion Mass Spectrometer, High-Intensity Spectrometer Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_combined_particle_analyzer_magnetometer_observations_of_comet_26p_grigg_skjellerup:c4ecdb8b","title":"Giotto Combined Particle Analyzer/Magnetometer Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa_mag-4-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_johnstone_particle_analyzer_observations_of_comet_26p_grigg_skjellerup:60ad5150","title":"Giotto Johnstone Particle Analyzer Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-3-rdr-iis-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_fluxgate_magnetometer_observations_of_comet_26p_grigg_skjellerup:0b783f92","title":"Giotto Fluxgate Magnetometer Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:giotto_optical_probe_experiment_observations_of_comet_26p_grigg_skjellerup:d33f7c90","title":"Giotto Optical Probe Experiment Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_didymos_raw::2.0","title":"Lucy L'LORRI Didymos Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Didymos"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638285","keywords":["urn:nasa:pds:lucy.llorri:data_didymos_raw::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::2.0","title":"Lucy L'LORRI Didymos Partially Processed Data v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Didymos"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638306","keywords":["urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_dinkinesh_raw::1.0","title":"Lucy L'LORRI Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638316","keywords":["urn:nasa:pds:lucy.llorri:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_dinkinesh_partially_processed::1.0","title":"Lucy L'LORRI Dinkinesh Partially Processed Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_dinkinesh_partially_processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638326","keywords":["urn:nasa:pds:lucy.llorri:data_dinkinesh_partially_processed::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.leisa:data_dinkinesh_raw::1.0","title":"Lucy LEISA Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638334","keywords":["urn:nasa:pds:lucy.leisa:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.leisa:data_dinkinesh_calibrated::1.0","title":"Lucy LEISA Dinkinesh Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:data_dinkinesh_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638347","keywords":["urn:nasa:pds:lucy.leisa:data_dinkinesh_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mvic:data_dinkinesh_raw::1.0","title":"Lucy MVIC Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638355","keywords":["urn:nasa:pds:lucy.mvic:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mvic:data_dinkinesh_calibrated::1.0","title":"Lucy MVIC Dinkinesh Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:data_dinkinesh_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638363","keywords":["urn:nasa:pds:lucy.mvic:data_dinkinesh_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:data_dinkinesh_ion::1.0","title":"Lucy Radio Science Subsystem Dinkinesh Mission Dependent Ionosphere Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_dinkinesh_ion-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638372","keywords":["urn:nasa:pds:lucy.rss:data_dinkinesh_ion::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:data_dinkinesh_sff::1.0","title":"Lucy Radio Science Subsystem Dinkinesh Small Forces File Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_dinkinesh_sff-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638380","keywords":["urn:nasa:pds:lucy.rss:data_dinkinesh_sff::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:data_dinkinesh_skyfreq::1.0","title":"Lucy Radio Science Subsystem Dinkinesh Sky Frequency Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_dinkinesh_skyfreq-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638388","keywords":["urn:nasa:pds:lucy.rss:data_dinkinesh_skyfreq::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:data_dinkinesh_trk234::1.0","title":"Lucy Radio Science Subsystem Dinkinesh Tracking Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_dinkinesh_trk234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638396","keywords":["urn:nasa:pds:lucy.rss:data_dinkinesh_trk234::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ltes:data_dinkinesh_raw::1.0","title":"Lucy L'TES Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638403","keywords":["urn:nasa:pds:lucy.ltes:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ltes:data_dinkinesh_hkraw::1.0","title":"Lucy L'TES Dinkinesh Raw Housekeeping Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_dinkinesh_hkraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638411","keywords":["urn:nasa:pds:lucy.ltes:data_dinkinesh_hkraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ltes:data_dinkinesh_calibrated::1.0","title":"Lucy L'TES Dinkinesh Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_dinkinesh_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638419","keywords":["urn:nasa:pds:lucy.ltes:data_dinkinesh_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ttcam:data_dinkinesh_raw::1.0","title":"Lucy TTCam Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638426","keywords":["urn:nasa:pds:lucy.ttcam:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ttcam:data_dinkinesh_calibrated::1.0","title":"Lucy TTCam Dinkinesh Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:data_dinkinesh_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638437","keywords":["urn:nasa:pds:lucy.ttcam:data_dinkinesh_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:donaldjohanson_coordinate_system_description:bb5cfa18","title":"Donaldjohanson Coordinate System Description","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mission:document-v2.0/Donaldjohanson_Coordinate_System_Description_v1.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_donaldjohanson_raw::1.0","title":"Lucy L'LORRI Donaldjohanson Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638465","keywords":["urn:nasa:pds:lucy.llorri:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_donaldjohanson_partially_processed::1.0","title":"Lucy L'LORRI Donaldjohanson Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_donaldjohanson_partially_processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638473","keywords":["urn:nasa:pds:lucy.llorri:data_donaldjohanson_partially_processed::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.leisa:data_donaldjohanson_raw::1.0","title":"Lucy L'Ralph LEISA Donaldjohanson Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638481","keywords":["urn:nasa:pds:lucy.leisa:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.leisa:data_donaldjohanson_calibrated::1.0","title":"Lucy L'Ralph LEISA Donaldjohanson Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:data_donaldjohanson_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638495","keywords":["urn:nasa:pds:lucy.leisa:data_donaldjohanson_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mvic:data_donaldjohanson_raw::1.0","title":"Lucy L'Ralph MVIC Donaldjohanson Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638503","keywords":["urn:nasa:pds:lucy.mvic:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mvic:data_donaldjohanson_calibrated::1.0","title":"Lucy L'Ralph MVIC Donaldjohanson Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:data_donaldjohanson_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638511","keywords":["urn:nasa:pds:lucy.mvic:data_donaldjohanson_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:data_donaldjohanson_ion::1.0","title":"Lucy Donaldjohanson Encounter Ionosphere Radio Science Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_donaldjohanson_ion-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638519","keywords":["urn:nasa:pds:lucy.rss:data_donaldjohanson_ion::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:data_donaldjohanson_sff::1.0","title":"Lucy Donaldjohanson Encounter Radio Science Small Forces Files","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_donaldjohanson_sff-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638527","keywords":["urn:nasa:pds:lucy.rss:data_donaldjohanson_sff::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:data_donaldjohanson_skyfreq::1.0","title":"Lucy Donaldjohanson Encounter Calibrated Sky Frequency Radio Science Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_donaldjohanson_skyfreq-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638536","keywords":["urn:nasa:pds:lucy.rss:data_donaldjohanson_skyfreq::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:data_donaldjohanson_trk234::1.0","title":"Lucy Donaldjohanson Encounter TRK-2-34 Radio Science Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_donaldjohanson_trk234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638544","keywords":["urn:nasa:pds:lucy.rss:data_donaldjohanson_trk234::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ltes:data_donaldjohanson_raw::1.0","title":"Lucy L'TES Donaldjohanson Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638552","keywords":["urn:nasa:pds:lucy.ltes:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ltes:data_donaldjohanson_hkraw::1.0","title":"Lucy L'TES Donaldjohanson Raw Housekeeping Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_donaldjohanson_hkraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638559","keywords":["urn:nasa:pds:lucy.ltes:data_donaldjohanson_hkraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ltes:data_donaldjohanson_calibrated::1.0","title":"Lucy L'TES Donaldjohanson Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_donaldjohanson_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638567","keywords":["urn:nasa:pds:lucy.ltes:data_donaldjohanson_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ttcam:data_donaldjohanson_raw::1.0","title":"Lucy TTCam Donaldjohanson Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638575","keywords":["urn:nasa:pds:lucy.ttcam:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ttcam:data_donaldjohanson_calibrated::1.0","title":"Lucy TTCam Donaldjohanson Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:data_donaldjohanson_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638582","keywords":["urn:nasa:pds:lucy.ttcam:data_donaldjohanson_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:calibration::3.0","title":"Lucy L'LORRI Calibration Collection v3.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638591","keywords":["urn:nasa:pds:lucy.llorri:calibration::3.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:document::2.0","title":"Lucy L'LORRI Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:document-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638599","keywords":["urn:nasa:pds:lucy.llorri:document::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.leisa:calibration::2.0","title":"Lucy L'Ralph LEISA Calibration Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:calibration-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638606","keywords":["urn:nasa:pds:lucy.leisa:calibration::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.leisa:document::2.0","title":"Lucy L'Ralph LEISA Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:document-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638615","keywords":["urn:nasa:pds:lucy.leisa:document::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mvic:calibration::2.0","title":"Lucy L'Ralph MVIC Calibration Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:calibration-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638623","keywords":["urn:nasa:pds:lucy.mvic:calibration::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mvic:document::2.0","title":"Lucy L'Ralph MVIC Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:document-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638630","keywords":["urn:nasa:pds:lucy.mvic:document::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss:document::1.0","title":"Lucy Radio Science Subsystem Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638638","keywords":["urn:nasa:pds:lucy.rss:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ltes:document::1.0","title":"Lucy L'TES Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638645","keywords":["urn:nasa:pds:lucy.ltes:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ttcam:calibration::1.0","title":"Lucy TTCam Calibration Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:calibration-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638652","keywords":["urn:nasa:pds:lucy.ttcam:calibration::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ttcam:document::1.0","title":"Lucy TTCam Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638658","keywords":["urn:nasa:pds:lucy.ttcam:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mission:document::2.0","title":"Lucy Mission Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mission:document-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638665","keywords":["urn:nasa:pds:lucy.mission:document::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:alice_ultraviolet_imaging_spectrograph:a6f13105","title":"ALICE Ultraviolet Imaging Spectrograph","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/documents/alice_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:linear_etalon_imaging_spectral_array:cb719533","title":"Linear Etalon Imaging Spectral Array","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/documents/leisa_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:long_range_reconnaissance_imager:0b2a690f","title":"Long Range Reconnaissance Imager","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:lorri-v1.0/documents/lorri_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:multispectral_visible_imaging_camera:9f9075a5","title":"Multispectral Visible Imaging Camera","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/documents/mvic_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:pluto_energetic_particle_spectrometer_science_investigation:b26e2c2d","title":"Pluto Energetic Particle Spectrometer Science Investigation","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/documents/pepssi_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_science_experiment:8389a00a","title":"Radio Science Experiment","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/documents/rex_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:student_dust_counter:9c3fc9b6","title":"Student Dust Counter","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/documents/sdc_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solar_wind_around_pluto:653ee81d","title":"Solar Wind Around Pluto","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/documents/swap_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_alice_post_launch_checkout_v2_0_raw:0b399dfc","title":"New Horizons ALICE Post-Launch Checkout v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_alice_post_launch_checkout_v2_0_calibrated:345e5a4a","title":"New Horizons ALICE Post-Launch Checkout v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_post_launch_checkout_v1_1_raw:e43d4b87","title":"New Horizons LEISA Post-Launch Checkout v1.1 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-launch-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_post_launch_checkout_v1_1_calibrated:76b7ca9d","title":"New Horizons LEISA Post-Launch Checkout v1.1 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-launch-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_post_launch_checkout_raw_data_v3_0:0747ec76","title":"New Horizons LORRI Post-Launch Checkout Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_post_launch_checkout_calibrated_data_v3_0:1c7b2bf0","title":"New Horizons LORRI Post-Launch Checkout Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_mvic_post_launch_checkout_v2_0_raw:238ea25f","title":"New Horizons MVIC Post-Launch Checkout v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_mvic_post_launch_checkout_v2_0_calibrated:d48b0be1","title":"New Horizons MVIC Post-Launch Checkout v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_post_launch_checkout_v1_1_raw:1da6ecbb","title":"New Horizons PEPSSI Post-Launch Checkout v1.1 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-launch-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_post_launch_checkout_v1_1_calibrated:6a13a707","title":"New Horizons PEPSSI Post-Launch Checkout v1.1 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-launch-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_post_launch_checkout_raw_data_v2_0:b4a85904","title":"New Horizons REX Post-Launch Checkout Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_post_launch_checkout_calibrated_data:7dd5395e","title":"New Horizons REX Post-Launch Checkout Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-launch-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_post_launch_checkout_raw_data_v4_0:4d4f30e9","title":"New Horizons SDC Post-Launch Checkout Raw Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_post_launch_checkout_calibrated_data_v4_0:36fb3637","title":"New Horizons SDC Post-Launch Checkout Calibrated Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_post_launch_checkout_v2_0_raw:e6acab43","title":"New Horizons SWAP Post-Launch Checkout v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_post_launch_checkout_v2_0_calibrated:ea25d920","title":"New Horizons SWAP Post-Launch Checkout v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_alice_jupiter_encounter_v2_0_raw:55b2d416","title":"New Horizons ALICE Jupiter Encounter v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-2-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_alice_jupiter_encounter_v2_0_calibrated:cfe97d0d","title":"New Horizons ALICE Jupiter Encounter v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-3-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_jupiter_encounter_v1_1_raw:db0c5290","title":"New Horizons LEISA Jupiter Encounter v1.1 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-2-jupiter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_jupiter_encounter_v1_1_calibrated:c6429895","title":"New Horizons LEISA Jupiter Encounter v1.1 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-3-jupiter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_jupiter_encounter_raw_data_v3_0:bf7ea9a4","title":"New Horizons LORRI Jupiter Encounter Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_jupiter_encounter_calibrated_data_v3_0:c7594450","title":"New Horizons LORRI Jupiter Encounter Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_mvic_jupiter_encounter_v2_0_raw:046521e4","title":"New Horizons MVIC Jupiter Encounter v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-2-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_mvic_jupiter_encounter_v2_0_calibrated:e20bf13a","title":"New Horizons MVIC Jupiter Encounter v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-3-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_jupiter_encounter_v1_1_raw:203c28c7","title":"New Horizons PEPSSI Jupiter Encounter v1.1 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-2-jupiter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_jupiter_encounter_v1_1_calibrated:c187e7a6","title":"New Horizons PEPSSI Jupiter Encounter v1.1 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-3-jupiter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_jupiter_encounter_raw_data_v2_0:e4e1190a","title":"New Horizons REX Jupiter Encounter Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-2-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_jupiter_encounter_calibrated_data:325e37f6","title":"New Horizons REX Jupiter Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-3-jupiter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_jupiter_encounter_raw_data_v4_0:a3fd1d04","title":"New Horizons SDC Jupiter Encounter Raw Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_jupiter_encounter_calibrated_data_v4_0:efc8a0d2","title":"New Horizons SDC Jupiter Encounter Calibrated Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_jupiter_encounter_raw_data_v4_0:21f65969","title":"New Horizons SWAP Jupiter Encounter Raw Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_jupiter_encounter_calibrated_data_v4_0:82ed67f6","title":"New Horizons SWAP Jupiter Encounter Calibrated Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_alice_pluto_cruise_raw_data_v2_0:d8806ee5","title":"New Horizons ALICE Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_alice_pluto_cruise_calibrated_data_v2_0:d4db8bce","title":"New Horizons ALICE Pluto Cruise Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_pluto_cruise_raw_data:7fea5c30","title":"New Horizons LEISA Pluto Cruise Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_pluto_cruise_calibrated_data:62922407","title":"New Horizons LEISA Pluto Cruise Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_pluto_cruise_raw_data_v2_0:0cca6dd5","title":"New Horizons LORRI Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_pluto_cruise_calibrated_data_v2_0:97568bc7","title":"New Horizons LORRI Pluto Cruise Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_mvic_pluto_cruise_raw_data:ae6998d4","title":"New Horizons MVIC Pluto Cruise Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436092","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_mvic_pluto_cruise_calibrated_data:297d3208","title":"New Horizons MVIC Pluto Cruise Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_pluto_cruise_raw_data_v2_0:fdc4d0c5","title":"New Horizons PEPSSI Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_pluto_cruise_calibrated_data_v2_0:602e821f","title":"New Horizons PEPSSI Pluto Cruise Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_pluto_cruise_raw_data_v2_0:08084556","title":"New Horizons REX Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_pluto_cruise_calibrated_data:01729d43","title":"New Horizons REX Pluto Cruise Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_pluto_cruise_raw_data_v2_0:947471c0","title":"New Horizons SDC Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_pluto_cruise_calibrated_data_v2_0:0a11d108","title":"New Horizons SDC Pluto Cruise Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_pluto_cruise_raw_data_v3_0:d8473780","title":"New Horizons SWAP Pluto Cruise Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_pluto_cruise_calibrated_data_v3_0:65369f64","title":"New Horizons SWAP Pluto Cruise Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:pluto_raw::1.0","title":"New Horizons Alice Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436193","keywords":["urn:nasa:pds:nh_alice:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:pluto_cal::1.0","title":"New Horizons Alice Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436202","keywords":["urn:nasa:pds:nh_alice:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:pluto_raw::1.0","title":"New Horizons LEISA Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436210","keywords":["urn:nasa:pds:nh_leisa:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:pluto_cal::1.0","title":"New Horizons LEISA Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436218","keywords":["urn:nasa:pds:nh_leisa:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:pluto_raw::1.0","title":"New Horizons LORRI Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436226","keywords":["urn:nasa:pds:nh_lorri:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:pluto_cal::1.0","title":"New Horizons LORRI Pluto Encounter Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436234","keywords":["urn:nasa:pds:nh_lorri:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:pluto_raw::1.0","title":"New Horizons MVIC Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436243","keywords":["urn:nasa:pds:nh_mvic:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:pluto_cal::1.0","title":"New Horizons MVIC Pluto Encounter Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436251","keywords":["urn:nasa:pds:nh_mvic:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:pluto_raw::1.0","title":"New Horizons PEPSSI Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436263","keywords":["urn:nasa:pds:nh_pepssi:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:pluto_cal::1.0","title":"New Horizons PEPSSI Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436272","keywords":["urn:nasa:pds:nh_pepssi:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0","title":"New Horizons Encounter with the Pluto System: Time-Averaged Solar Winds Particle and Ion Fluxes from PEPSSI Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436282","keywords":["urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:pluto_raw::1.0","title":"New Horizons SDC Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436291","keywords":["urn:nasa:pds:nh_sdc:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:pluto_cal::1.0","title":"New Horizons SDC Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436300","keywords":["urn:nasa:pds:nh_sdc:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:pluto_raw::1.0","title":"New Horizons SWAP Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436309","keywords":["urn:nasa:pds:nh_swap:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:pluto_cal::1.0","title":"New Horizons SWAP Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436318","keywords":["urn:nasa:pds:nh_swap:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:pluto_data_summary_plots::1.0","title":"New Horizons SWAP Pluto Encounter Data Summary Plots","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436327","keywords":["urn:nasa:pds:nh_swap:pluto_data_summary_plots::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_solar_wind::1.0","title":"New Horizons Encounter with the Pluto System: Solar Wind Parameters from SWAP Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436337","keywords":["urn:nasa:pds:nh_derived:plutosystem_solar_wind::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_pluto_encounter_raw_data_v2_0:cf0ea9b7","title":"New Horizons REX Pluto Encounter Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-2-pluto-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_pluto_encounter_calibrated_data:2141d458","title":"New Horizons REX Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-3-pluto-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_composition::1.0","title":"New Horizons Encounter with the Pluto System: Global Color Maps, Image Cubes, and Absorption Band Maps from the LEISA and MVIC Instruments","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436367","keywords":["urn:nasa:pds:nh_derived:plutosystem_composition::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_atmospherics::1.0","title":"New Horizons Encounter with the Pluto System: Atmospheric Opacities and Composition, Temperature, Pressure, and Haze Profiles from the LORRI, Alice, and REX Instruments","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436378","keywords":["urn:nasa:pds:nh_derived:plutosystem_atmospherics::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0","title":"New Horizons Encounter with the Pluto System: Mosaics, Topographic Maps, and Bond Albedo Maps for Pluto and Charon from LORRI and MVIC Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto","Charon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436390","keywords":["urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:ipm_solar_wind::1.0","title":"New Horizons Primary and Extended Missions: Solar Wind Parameters","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436400","keywords":["urn:nasa:pds:nh_derived:ipm_solar_wind::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents::4.3","title":"New Horizons Mission Instrument-Specific and Mission-Wide Documents v4.3","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.3/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436409","keywords":["urn:nasa:pds:nh_documents::4.3"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:calibration_files::1.0","title":"New Horizons Alice Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436418","keywords":["urn:nasa:pds:nh_alice:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:calibration_files::1.0","title":"New Horizons LORRI Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436425","keywords":["urn:nasa:pds:nh_lorri:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:calibration_files::1.0","title":"New Horizons LEISA Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436433","keywords":["urn:nasa:pds:nh_leisa:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:calibration_files::1.0","title":"New Horizons MVIC Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436442","keywords":["urn:nasa:pds:nh_mvic:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:calibration_files::2.0","title":"New Horizons PEPSSI Reference Files Used in Calibrating Data v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436494","keywords":["urn:nasa:pds:nh_pepssi:calibration_files::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:calibration_files::1.0","title":"New Horizons SDC Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436505","keywords":["urn:nasa:pds:nh_sdc:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:calibration_files::1.0","title":"New Horizons SWAP Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436513","keywords":["urn:nasa:pds:nh_swap:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:trajectory::2.0","title":"New Horizons Spacecraft Trajectory v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436522","keywords":["urn:nasa:pds:nh_swap:trajectory::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_secondary::1.0","title":"Secondary Collections to Support New Horizons Research Results","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436531","keywords":["urn:nasa:pds:nh_secondary::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:lorri_cob::1.0","title":"New Horizons Cosmic Optical Background Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436540","keywords":["urn:nasa:pds:nh_derived:lorri_cob::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:pluto_albedo::1.0","title":"Bolometric Hemispherical Albedo Map of Pluto from New Horizons Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436549","keywords":["urn:nasa:pds:nh_derived:pluto_albedo::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_alice_kem_cruise_1_raw_data_v2_0:a3d64f6a","title":"New Horizons ALICE KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_alice_kem_cruise_1_calibrated_data_v2_0:cf75db73","title":"New Horizons ALICE KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_kem_cruise_1_raw_data_v2_0:580de60f","title":"New Horizons LEISA KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_kem_cruise_1_calibrated_data_v2_0:a8534fc9","title":"New Horizons LEISA KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_kem_cruise_1_raw_data_v2_0:83271cb4","title":"New Horizons LORRI KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_kem_cruise_1_calibrated_data_v2_0:8635cdf3","title":"New Horizons LORRI KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_mvic_kem_cruise_1_raw_data_v2_0:690464f8","title":"New Horizons MVIC KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_mvic_kem_cruise_1_calibrated_data_v2_0:0354829e","title":"New Horizons MVIC KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_kem_cruise_1_raw_data_v2_0:e9b52c25","title":"New Horizons PEPSSI KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_kem_cruise_1_calibrated_data_v2_0:29952994","title":"New Horizons PEPSSI KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_kem_cruise_1_raw_data_v2_0:2c23d36c","title":"New Horizons REX KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_rex_kem_cruise_1_calibrated_data_v2_0:8c1668ba","title":"New Horizons REX KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_kem_cruise_1_raw_data_v2_0:62a4eb40","title":"New Horizons SDC KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_kem_cruise_1_calibrated_data_v2_0:d8e6baf1","title":"New Horizons SDC KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_kem_cruise_1_raw_data_v2_0:72b850c4","title":"New Horizons SWAP KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_kem_cruise_1_calibrated_data_v2_0:bcd831ab","title":"New Horizons SWAP KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:kem1_raw::1.0","title":"New Horizons Alice KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634725","keywords":["urn:nasa:pds:nh_alice:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:kem1_cal::1.0","title":"New Horizons Alice KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634734","keywords":["urn:nasa:pds:nh_alice:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:kem1_raw::1.0","title":"New Horizons LEISA KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634741","keywords":["urn:nasa:pds:nh_leisa:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:kem1_cal::1.0","title":"New Horizons LEISA KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634748","keywords":["urn:nasa:pds:nh_leisa:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:kem1_raw::1.0","title":"New Horizons LORRI KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634755","keywords":["urn:nasa:pds:nh_lorri:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:kem1_cal::1.0","title":"New Horizons LORRI KEM1 Encounter Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634763","keywords":["urn:nasa:pds:nh_lorri:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:kem1_raw::1.0","title":"New Horizons MVIC KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634771","keywords":["urn:nasa:pds:nh_mvic:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:kem1_cal::1.0","title":"New Horizons MVIC KEM1 Encounter Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634778","keywords":["urn:nasa:pds:nh_mvic:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:kem1_raw::1.0","title":"New Horizons PEPSSI KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634788","keywords":["urn:nasa:pds:nh_pepssi:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:kem1_cal::1.0","title":"New Horizons PEPSSI KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634796","keywords":["urn:nasa:pds:nh_pepssi:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_rex:kem1_raw::1.0","title":"New Horizons REX KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634804","keywords":["urn:nasa:pds:nh_rex:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_rex:kem1_cal::1.0","title":"New Horizons REX KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634811","keywords":["urn:nasa:pds:nh_rex:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_rex:kem1_tnf::1.0","title":"New Horizons REX KEM1 Encounter Tracking and Navigation Files","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634820","keywords":["urn:nasa:pds:nh_rex:kem1_tnf::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:kem1_raw::1.0","title":"New Horizons SDC KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634827","keywords":["urn:nasa:pds:nh_sdc:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:kem1_cal::1.0","title":"New Horizons SDC KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634834","keywords":["urn:nasa:pds:nh_sdc:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:kem1_raw::1.0","title":"New Horizons SWAP KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634841","keywords":["urn:nasa:pds:nh_swap:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:kem1_cal::1.0","title":"New Horizons SWAP KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634848","keywords":["urn:nasa:pds:nh_swap:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:kem1_data_summary_plots::1.0","title":"New Horizons SWAP KEM1 Encounter Data Summary Plots","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634856","keywords":["urn:nasa:pds:nh_swap:kem1_data_summary_plots::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:arrokoth_composition::1.0","title":"New Horizons Arrokoth Encounter Surface Composition Maps","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Arrokoth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634866","keywords":["urn:nasa:pds:nh_derived:arrokoth_composition::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0","title":"New Horizons Encounter with (486958) Arrokoth: Derived Shape Models and Surface Maps","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Arrokoth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634875","keywords":["urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0","title":"New Horizons Porter (2024) Arrokoth Shape Model Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Arrokoth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634885","keywords":["urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_kem2_raw_data:56c45d7c","title":"New Horizons LEISA KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_leisa_kem2_calibrated_data:419ef0e5","title":"New Horizons LEISA KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_kem2_raw_data:0f7bdbf8","title":"New Horizons LORRI KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_lorri_kem2_calibrated_data:c3b54ba4","title":"New Horizons LORRI KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_kem2_raw_data:50b675e6","title":"New Horizons PEPSSI KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_pepssi_kem2_calibrated_data:ed031ec4","title":"New Horizons PEPSSI KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_kem2_raw_data:fe4bc8e7","title":"New Horizons SDC KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_sdc_kem2_calibrated_data:b1ddaa12","title":"New Horizons SDC KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_kem2_raw_data:ca980c2b","title":"New Horizons SWAP KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:new_horizons_swap_kem2_calibrated_data:08dadfb2","title":"New Horizons SWAP KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0","title":"New Horizons Kuiper Belt Extended Mission: Alice Ultraviolet Imaging Spectrograph Scans of Lyman-alpha Emission from the Interplanetary Medium","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634976","keywords":["urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:oss_plasma_fluxes::1.0","title":"New Horizons Primary and Extended Mission in the Outer Solar System: Averaged Energetic Particle Flux Rates and Counts-per-Second from PEPSSI Observations, 2012-2020","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634986","keywords":["urn:nasa:pds:nh_derived:oss_plasma_fluxes::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:krfm_combined_radiometer_spectrophotometer_for_mars:260b94ca","title":"KRFM Combined Radiometer Spectrophotometer For Mars","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-krfm-3-photometry-v1.0/catalog/krfm.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:termoskan_optical_scanning_radiometer:caf8a51c","title":"TermoSkan Optical Scanning Radiometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-edited-thrm_vis-img-edr-v1.0/catalog/ts.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vsk_fregat_ccd_camera:b45fa577","title":"VSK-FREGAT CCD Camera","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-vsk-2-edr-v1.0/catalog/vsk.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:phobos_2_mars_krfm_photometry:d9074ed1","title":"Phobos 2 Mars KRFM Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-krfm-3-photometry-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:phobos_2_mars_termoskan_thermal_visible_flux_images:857407ed","title":"Phobos 2 Mars Termoskan Thermal/Visible Flux Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-therm_vis-imgedr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:phobos_2_mars_termoskan_edited_thermal_visible_ir_images:3255e96d","title":"Phobos 2 Mars Termoskan Edited Thermal/Visible IR Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-edited-thrm_vis-img-edr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:phobos_2_mars_phobos_jupiter_vsk_fregat_images:46ef2ba0","title":"Phobos 2 Mars/Phobos/Jupiter VSK-Fregat Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-vsk-2-edr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_laboratory_ground_benchmark_raw_data:f5a135f0","title":"Rosetta-Orbiter/Lander CONSERT Laboratory Ground Benchmark Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grndbench-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_flight_and_qualification_ground_edited_raw_data:ea3686b7","title":"Rosetta-Orbiter/Lander CONSERT Flight and Qualification Ground Edited Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grnd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_flight_and_qualification_ground_calibrated_data_v1_1:f5fd0d1a","title":"Rosetta-Orbiter/Lander CONSERT Flight and Qualification Ground Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-grnd-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_flight_and_qualification_ground_resampled_data:7e08d91d","title":"Rosetta-Orbiter/Lander CONSERT Flight and Qualification Ground Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-grnd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_2008_ground_reference_calibrated_data:ddc52ddd","title":"Rosetta-Orbiter MIDAS 2008 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2008-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_2009_ground_reference_calibrated_data:1d766b09","title":"Rosetta-Orbiter MIDAS 2009 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2009-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_2010_ground_reference_calibrated_data:1202ab9c","title":"Rosetta-Orbiter MIDAS 2010 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2010-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_2011_ground_reference_calibrated_data:9d89c4fe","title":"Rosetta-Orbiter MIDAS 2011 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2011-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_2013_ground_reference_calibrated_data:b556d4c9","title":"Rosetta-Orbiter MIDAS 2013 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2013-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_2014_ground_reference_calibrated_data:a8d2ea9d","title":"Rosetta-Orbiter MIDAS 2014 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2014-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_2015_ground_reference_calibrated_data:3575619a","title":"Rosetta-Orbiter MIDAS 2015 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2015-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_ground_thermal_vacuum_raw_data:d4cd0641","title":"Rosetta-Orbiter MIRO Ground Thermal Vacuum Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-miro-2-grnd-thermal-vac-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sd2_ground_test_model_calibrated_data:dfb42fb4","title":"Rosetta-Lander SD2 Ground Test Model Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-grnd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_commissioning_1_amp_comet_c_2002_t7_linear_raw_data:5f1c3c89","title":"Rosetta-Orbiter ALICE Commissioning 1 & Comet C/2002 T7 (LINEAR) Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cvp1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_commissioning_1_amp_comet_c_2002_t7_linear_calibrated_data:10f4c4d3","title":"Rosetta-Orbiter ALICE Commissioning 1 & Comet C/2002 T7 (LINEAR) Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cvp1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_commissioning_2_raw_data:ad17cfcb","title":"Rosetta-Orbiter ALICE Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-cvp2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_commissioning_2_calibrated_data:2228d7bb","title":"Rosetta-Orbiter ALICE Commissioning 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-3-cvp2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_cruise_1_raw_data:b01a1620","title":"Rosetta-Orbiter ALICE Cruise 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-2-cr1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_cruise_1_calibrated_data:8884c325","title":"Rosetta-Orbiter ALICE Cruise 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-3-cr1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_commissioning_1_raw_data:986a0576","title":"Rosetta-Orbiter/Lander CONSERT Commissioning 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_commissioning_2_raw_data:e60c7d2e","title":"Rosetta-Orbiter/Lander CONSERT Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_commissioning_1_raw_data:327303d5","title":"Rosetta-Orbiter GIADA Commissioning 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp1-commissioning1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_commissioning_2_raw_data:8420de7e","title":"Rosetta-Orbiter GIADA Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp2-commissioning2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_commissioning_calibrated_data_v3_0:bbd9234a","title":"Rosetta-Orbiter MIDAS Commissioning Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-cvp-full-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_commissioning_raw_data:a976c84c","title":"Rosetta-Orbiter MIRO Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-2-cvp-commissioning-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_commissioning_calibrated_data_v1_1:bd15edae","title":"Rosetta-Orbiter MIRO Commissioning Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-3-cvp-commissioning-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_commissioning_2_raw_data_v1_1:377ec18c","title":"Rosetta-Orbiter NAVCAM Commissioning 2 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cvp2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_cruise_1_earth_raw_data_v1_1:fb6741e3","title":"Rosetta-Orbiter NAVCAM Cruise 1 & Earth Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_x-navcam-2-cr1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_commissioning_engineering_raw_data:1e7f786e","title":"Rosetta-Orbiter ROSINA Commissioning Engineering Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rosina-2-eng-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_commissioning_raw_data_v3_0:125207c8","title":"Rosetta-Orbiter RPCICA Commissioning Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_commissioning_calibrated_data:54d6c90f","title":"Rosetta-Orbiter RPCICA Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-3-cvp-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_commissioning_resampled_corrected_data:35c6d129","title":"Rosetta-Orbiter RPCICA Commissioning Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_commissioning_resampled_corrected_in_counts_data:3f68bbd8","title":"Rosetta-Orbiter RPCICA Commissioning Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_commissioning_raw_data:4924cce1","title":"Rosetta-Orbiter RPCIES Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcies-2-cvp-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_commissioning_1_raw_data:94205065","title":"Rosetta-Orbiter RPCLAP Commissioning 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_commissioning_1_calibrated_data:77241260","title":"Rosetta-Orbiter RPCLAP Commissioning 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_commissioning_2_raw_data:207f3bbb","title":"Rosetta-Orbiter RPCLAP Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_commissioning_2_calibrated_data:061d5bf1","title":"Rosetta-Orbiter RPCLAP Commissioning 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_commissioning_raw_data_v9_0:999d60b6","title":"Rosetta-Orbiter RPCMAG Commissioning Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cvp-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_commissioning_calibrated_data_v9_0:e744e045","title":"Rosetta-Orbiter RPCMAG Commissioning Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cvp-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_commissioning_resampled_data_v9_0:2d515209","title":"Rosetta-Orbiter RPCMAG Commissioning Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cvp-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_commissioning_1_calibrated_data:fddf6319","title":"Rosetta-Orbiter RPCMIP Commissioning 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_commissioning_2_calibrated_data:59101878","title":"Rosetta-Orbiter RPCMIP Commissioning 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_commissioning_1_raw_data:615be0f5","title":"Rosetta-Orbiter SREM Commissioning 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_commissioning_1_derived_data:14a490a9","title":"Rosetta-Orbiter SREM Commissioning 1 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_commissioning_2_raw_data:3d53acbb","title":"Rosetta-Orbiter SREM Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_commissioning_2_derived_data:069efab6","title":"Rosetta-Orbiter SREM Commissioning 2 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_1_raw_data:dd74a25e","title":"Rosetta-Orbiter SREM Cruise 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_1_derived_data:2fdc80a9","title":"Rosetta-Orbiter SREM Cruise 1 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_commissioning_raw_data:c6a41828","title":"Rosetta-Lander ROMAP-MAG Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_commissioning_raw_data:04fd9bc9","title":"Rosetta-Lander ROMAP-SPM Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_earth_swing_by_1_raw_data:a43446f9","title":"Rosetta-Orbiter ALICE Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-ear1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_earth_swing_by_1_calibrated_data:be5e3490","title":"Rosetta-Orbiter ALICE Earth Swing-by 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-ear1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_1_raw_data_v2_0:6a1872eb","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_earth_swing_by_1_raw_data:ae999bc3","title":"Rosetta-Orbiter GIADA Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear1-earthswingby1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_earth_swing_by_1_calibrated_data_v3_0:85a109e3","title":"Rosetta-Orbiter MIDAS Earth Swing-by 1 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear1-pc0-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_earth_swing_by_1_raw_data:465a1104","title":"Rosetta-Orbiter MIRO Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear1-earth1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_earth_swing_by_1_calibrated_data_v1_1:206e669e","title":"Rosetta-Orbiter MIRO Earth Swing-by 1 Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear1-earth1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_earth_swing_by_1_raw_data_v1_1:b0a18d21","title":"Rosetta-Orbiter NAVCAM Earth Swing-by 1 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-navcam-2-ear1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_1_raw_data_v3_0:3848c771","title":"Rosetta-Orbiter RPCICA Earth Swing-by 1 Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_1_calibrated_data:054edd58","title":"Rosetta-Orbiter RPCICA Earth Swing-by 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear1-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_1_resampled_corrected_data:6b528d15","title":"Rosetta-Orbiter RPCICA Earth Swing-by 1 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_1_resampled_corrected_in_counts_data:c126d350","title":"Rosetta-Orbiter RPCICA Earth Swing-by 1 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_earth_swing_by_1_raw_data:a41ecf1a","title":"Rosetta-Orbiter RPCIES Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_1_raw_data:f4a0f841","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_1_calibrated_data:903adcf8","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_1_raw_data_v9_0:8df9aa82","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 1 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_1_calibrated_data_v9_0:74cd89a7","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 1 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_1_resampled_data_v9_0:196b853c","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 1 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_earth_swing_by_1_calibrated_data:b8adc0ab","title":"Rosetta-Orbiter RPCMIP Earth Swing-by 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_1_raw_data:a81b36a8","title":"Rosetta-Orbiter SREM Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_1_derived_data:26a2f72d","title":"Rosetta-Orbiter SREM Earth Swing-by 1 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_1_raw_data:c2b97daa","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475860","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_1_calibrated_data:2eb0d924","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_1_raw_data:9aa73fe2","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_1_calibrated_data:fdaba15a","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_cruise_2_amp_9p_tempel_1_raw_data:bf81a04f","title":"Rosetta-Orbiter ALICE Cruise 2 & 9P/Tempel 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_cruise_2_amp_9p_tempel_1_calibrated_data:3da40e57","title":"Rosetta-Orbiter ALICE Cruise 2 & 9P/Tempel 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_2_raw_data_v2_0:e8408cc9","title":"Rosetta-Orbiter/Lander CONSERT Cruise 2 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_2_calibrated_data_v2_0:32dbc594","title":"Rosetta-Orbiter/Lander CONSERT Cruise 2 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_2_resampled_data:512bf745","title":"Rosetta-Orbiter/Lander CONSERT Cruise 2 Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_cruise_2_raw_data:403832a4","title":"Rosetta-Orbiter GIADA Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cr2-cruise2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_cruise_2_calibrated_data_v3_0:f16c0e11","title":"Rosetta-Orbiter MIDAS Cruise 2 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr2-pc1-2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_cruise_2_amp_9p_tempel_1_raw_data:18b3aa67","title":"Rosetta-Orbiter MIRO Cruise 2 & 9P/Tempel 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-cr2-9p-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_cruise_2_amp_9p_tempel_1_calibrated_data_v1_1:4ad76da7","title":"Rosetta-Orbiter MIRO Cruise 2 & 9P/Tempel 1 Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-cr2-9p-tempel1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_cruise_2_9p_temple_1_raw_data_v1_1:f84922ee","title":"Rosetta-Orbiter NAVCAM Cruise 2 & 9P/Temple 1 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_x-navcam-2-cr2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_cruise_2_raw_data_v3_0:06d84ff8","title":"Rosetta-Orbiter RPCICA Cruise 2 Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_cruise_2_calibrated_data:e72b6794","title":"Rosetta-Orbiter RPCICA Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_cruise_2_resampled_corrected_data:2d98543c","title":"Rosetta-Orbiter RPCICA Cruise 2 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_cruise_2_resampled_corrected_in_counts_data:977abaa1","title":"Rosetta-Orbiter RPCICA Cruise 2 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_cruise_2_raw_data:30de76bc","title":"Rosetta-Orbiter RPCIES Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_cruise_2_raw_data:7a95f824","title":"Rosetta-Orbiter RPCLAP Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_cruise_2_calibrated_data:0034bfcd","title":"Rosetta-Orbiter RPCLAP Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_2_raw_data_v9_0:48ad3659","title":"Rosetta-Orbiter RPCMAG Cruise 2 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-cr2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_2_calibrated_data_v9_0:fc5cee75","title":"Rosetta-Orbiter RPCMAG Cruise 2 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-cr2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_2_resampled_data_v9_0:e79fef61","title":"Rosetta-Orbiter RPCMAG Cruise 2 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-cr2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_cruise_2_calibrated_data:20500036","title":"Rosetta-Orbiter RPCMIP Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_2_raw_data:ca9e0b0f","title":"Rosetta-Orbiter SREM Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_2_derived_data:46e61f76","title":"Rosetta-Orbiter SREM Cruise 2 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_cruise_2_raw_data:d2076b6c","title":"Rosetta-Lander ROMAP-MAG Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_cruise_2_calibrated_data:e819df73","title":"Rosetta-Lander ROMAP-MAG Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_cruise_2_raw_data:d09d49e8","title":"Rosetta-Lander ROMAP-SPM Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_cruise_2_calibrated_data:4cdd3f26","title":"Rosetta-Lander ROMAP-SPM Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_mars_swing_by_amp_jupiter_raw_data:bd215df8","title":"Rosetta-Orbiter ALICE Mars Swing-by & Jupiter Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-2-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_mars_swing_by_amp_jupiter_calibrated_data:503c05e1","title":"Rosetta-Orbiter ALICE Mars Swing-by & Jupiter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-3-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_mars_swing_by_raw_data_v2_0:7dd3d2b4","title":"Rosetta-Orbiter/Lander CONSERT Mars Swing-by Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-mars-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_mars_swing_by_calibrated_data_v2_0:f22c9a40","title":"Rosetta-Orbiter/Lander CONSERT Mars Swing-by Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-mars-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_mars_swing_by_resampled_data:b8ba6b30","title":"Rosetta-Orbiter/Lander CONSERT Mars Swing-by Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_mars_swing_by_raw_data:2bb57155","title":"Rosetta-Orbiter GIADA Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-mars-marsswingby-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_mars_swing_by_calibrated_data_v3_0:f5dd3d00","title":"Rosetta-Orbiter MIDAS Mars Swing-by Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-mars-pc3-5-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_mars_swing_by_raw_data_v1_1:dc3f761b","title":"Rosetta-Orbiter NAVCAM Mars Swing-by Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m_cal-navcam-2-mars-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_mars_swing_by_raw_data_v3_0:820a550a","title":"Rosetta-Orbiter RPCICA Mars Swing-by Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_mars_swing_by_calibrated_data:b90dd18f","title":"Rosetta-Orbiter RPCICA Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-3-mars-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_mars_swing_by_resampled_corrected_data:61654205","title":"Rosetta-Orbiter RPCICA Mars Swing-by Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_mars_swing_by_resampled_corrected_in_counts_data:ee73fe51","title":"Rosetta-Orbiter RPCICA Mars Swing-by Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_mars_swing_by_raw_data:a0c77a5c","title":"Rosetta-Orbiter RPCLAP Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-2-mars-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_mars_swing_by_calibrated_data:79444846","title":"Rosetta-Orbiter RPCLAP Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-3-mars-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_mars_swing_by_raw_data_v9_0:05b94825","title":"Rosetta-Orbiter RPCMAG Mars Swing-by Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-2-mars-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_mars_swing_by_calibrated_data_v9_0:91a429ef","title":"Rosetta-Orbiter RPCMAG Mars Swing-by Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-3-mars-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_mars_swing_by_resampled_data_v9_0:944f4457","title":"Rosetta-Orbiter RPCMAG Mars Swing-by Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-4-mars-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_mars_swing_by_calibrated_data:2656dcef","title":"Rosetta-Orbiter RPCMIP Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmip-3-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_mars_swing_by_raw_data:999b0ee5","title":"Rosetta-Orbiter SREM Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-mars-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_mars_swing_by_derived_data:eb373a98","title":"Rosetta-Orbiter SREM Mars Swing-by Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-mars-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_mars_swing_by_raw_data:e221b707","title":"Rosetta-Lander ROMAP-MAG Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_mars_swing_by_calibrated_data:802020f4","title":"Rosetta-Lander ROMAP-MAG Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_mars_swing_by_raw_data:603a7069","title":"Rosetta-Lander ROMAP-SPM Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_mars_swing_by_calibrated_data:9a28ca0e","title":"Rosetta-Lander ROMAP-SPM Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_3_raw_data:d4b080ba","title":"Rosetta-Orbiter SREM Cruise 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr3-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_3_derived_data:8f819148","title":"Rosetta-Orbiter SREM Cruise 3 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr3-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_earth_swing_by_2_raw_data:d437cd9c","title":"Rosetta-Orbiter ALICE Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-2-ear2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_earth_swing_by_2_calibrated_data:505dc214","title":"Rosetta-Orbiter ALICE Earth Swing-by 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-3-ear2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_2_raw_data_v2_0:3cdda7a7","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 2 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_2_calibrated_data_v2_0:8cf2a1a0","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 2 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_2_resampled_data:673b592b","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 2 Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_earth_swing_by_2_raw_data:5ad3998a","title":"Rosetta-Orbiter GIADA Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear2-earthswingby2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_earth_swing_by_2_calibrated_data_v3_0:8232abf7","title":"Rosetta-Orbiter MIDAS Earth Swing-by 2 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear2-pc6-7-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_earth_swing_by_2_raw_data:05ec1e22","title":"Rosetta-Orbiter MIRO Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear2-earth2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_earth_swing_by_2_calibrated_data:6eed24b9","title":"Rosetta-Orbiter MIRO Earth Swing-by 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear2-earth2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_earth_swing_by_2_raw_data_v1_1:963dfa6b","title":"Rosetta-Orbiter NAVCAM Earth Swing-by 2 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_2_raw_data_v3_0:edcdbc9e","title":"Rosetta-Orbiter RPCICA Earth Swing-by 2 Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_2_calibrated_data:ece24040","title":"Rosetta-Orbiter RPCICA Earth Swing-by 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_2_resampled_corrected_data:afd26891","title":"Rosetta-Orbiter RPCICA Earth Swing-by 2 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_2_resampled_corrected_in_counts_data:0d0c6b12","title":"Rosetta-Orbiter RPCICA Earth Swing-by 2 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476458","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_2_raw_data:7b81d475","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_2_calibrated_data:587841aa","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_2_raw_data_v9_0:039ff297","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 2 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_2_calibrated_data_v9_0:5bb7b3b8","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 2 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_2_resampled_data_v9_0:d437a395","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 2 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_earth_swing_by_2_calibrated_data_v2_0:2b3aaa34","title":"Rosetta-Orbiter RPCMIP Earth Swing-by 2 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_2_raw_data:d64809b8","title":"Rosetta-Orbiter SREM Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_2_derived_data:dcc498bd","title":"Rosetta-Orbiter SREM Earth Swing-by 2 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_2_raw_data:8fdafe3d","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_2_calibrated_data:e84f01a6","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_2_raw_data:607c2648","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_2_calibrated_data:aaef2ee0","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_cruise_4a_raw_data:eb45fe69","title":"Rosetta-Orbiter ALICE Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_cruise_4a_calibrated_data:3cde4655","title":"Rosetta-Orbiter ALICE Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_cruise_4a_resampled_data:093d6abc","title":"Rosetta-Orbiter ALICE Cruise 4A Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-4-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_4a_raw_data_v2_0:db3f9f7d","title":"Rosetta-Orbiter/Lander CONSERT Cruise 4A Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4a-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_4a_calibrated_data_v2_0:18fbf810","title":"Rosetta-Orbiter/Lander CONSERT Cruise 4A Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr4a-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_4a_resampled_data:698e7d90","title":"Rosetta-Orbiter/Lander CONSERT Cruise 4A Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_cruise_4a_calibrated_data_v3_0:12f992cf","title":"Rosetta-Orbiter MIDAS Cruise 4A Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4a-pc8-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_cruise_4a_raw_data:294b43b2","title":"Rosetta-Orbiter RPCLAP Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4a-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_cruise_4a_calibrated_data:bec9413a","title":"Rosetta-Orbiter RPCLAP Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4a-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4a_raw_data_v9_0:6ab1a50c","title":"Rosetta-Orbiter RPCMAG Cruise 4A Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4a-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4a_calibrated_data_v9_0:36aa4227","title":"Rosetta-Orbiter RPCMAG Cruise 4A Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4a-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4a_resampled_data_v9_0:f5116022","title":"Rosetta-Orbiter RPCMAG Cruise 4A Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4a-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_cruise_4a_calibrated_data:bcccce80","title":"Rosetta-Orbiter RPCMIP Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_4a_raw_data:8fe1faf0","title":"Rosetta-Orbiter SREM Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4a-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_4a_derived_data:b6b47c4b","title":"Rosetta-Orbiter SREM Cruise 4A Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4a-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_cruise_4a_raw_data:c22fbe7a","title":"Rosetta-Lander ROMAP-MAG Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_cruise_4a_calibrated_data:1869c7ac","title":"Rosetta-Lander ROMAP-MAG Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_cruise_4a_raw_data:da714cb5","title":"Rosetta-Lander ROMAP-SPM Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_cruise_4a_calibrated_data:15743f7d","title":"Rosetta-Lander ROMAP-SPM Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_shape_model_of_asteroid_steins:a13cd9ae","title":"Rosetta Shape Model of Asteroid Steins","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Asteroid","Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-steins-shape-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_steins_raw_data:b8c5bfaa","title":"Rosetta-Orbiter ALICE Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_steins_calibrated_data:d18eb1d1","title":"Rosetta-Orbiter ALICE Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_steins_resampled_data:2a754d56","title":"Rosetta-Orbiter ALICE Steins Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_steins_raw_data:16239c46","title":"Rosetta-Orbiter MIRO Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast1-steins-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_steins_calibrated_data:de8a683b","title":"Rosetta-Orbiter MIRO Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast1-steins-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_steins_raw_data_v1_1:983eff7a","title":"Rosetta-Orbiter NAVCAM Steins Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-navcam-2-ast1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_steins_raw_data:2030978c","title":"Rosetta-Orbiter ROSINA Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rosina-2-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_steins_edited_raw_data:0e785f5d","title":"Rosetta-Orbiter RPCIES Steins Edited Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_steins_raw_data:7231b0b9","title":"Rosetta-Orbiter RPCLAP Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_steins_calibrated_data:a99f739d","title":"Rosetta-Orbiter RPCLAP Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_steins_raw_data_v9_0:4cd6137e","title":"Rosetta-Orbiter RPCMAG Steins Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_steins_calibrated_data_v9_0:b191722c","title":"Rosetta-Orbiter RPCMAG Steins Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_steins_resampled_data_v9_0:5f59e978","title":"Rosetta-Orbiter RPCMAG Steins Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_steins_calibrated_data_v2_0:e83bb03d","title":"Rosetta-Orbiter RPCMIP Steins Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_steins_raw_data:81a6b0d4","title":"Rosetta-Orbiter SREM Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_steins_derived_data:7bf47404","title":"Rosetta-Orbiter SREM Steins Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_steins_raw_data:5a28fbf7","title":"Rosetta-Lander ROMAP-MAG Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_steins_calibrated_data:ffad4440","title":"Rosetta-Lander ROMAP-MAG Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_steins_raw_data:2eb298a5","title":"Rosetta-Lander ROMAP-SPM Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_steins_calibrated_data:ced2076c","title":"Rosetta-Lander ROMAP-SPM Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_4b_raw_data_v2_0:1a19c0cf","title":"Rosetta-Orbiter/Lander CONSERT Cruise 4B Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4b-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_cruise_4b_calibrated_data_v3_0:a97ed7fc","title":"Rosetta-Orbiter MIDAS Cruise 4B Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4b-pc9-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_cruise_4b_raw_data_v1_1:069d15ad","title":"Rosetta-Orbiter NAVCAM Cruise 4B Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cr4b-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_cruise_4_raw_data_v3_0:ea78a753","title":"Rosetta-Orbiter RPCICA Cruise 4 Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_cruise_4_calibrated_data:7a85668a","title":"Rosetta-Orbiter RPCICA Cruise 4 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr4-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_cruise_4_resampled_corrected_data:04e69159","title":"Rosetta-Orbiter RPCICA Cruise 4 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_cruise_4_resampled_corrected_in_counts_data:eb97b95f","title":"Rosetta-Orbiter RPCICA Cruise 4 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_cruise_4b_raw_data:c049e2c7","title":"Rosetta-Orbiter RPCLAP Cruise 4B Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4b-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_cruise_4b_calibrated_data:b407460f","title":"Rosetta-Orbiter RPCLAP Cruise 4B Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4b-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4b_raw_data_v9_0:72d04a9e","title":"Rosetta-Orbiter RPCMAG Cruise 4B Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4b-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4b_calibrated_data_v9_0:0b37b9ce","title":"Rosetta-Orbiter RPCMAG Cruise 4B Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4b-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4b_resampled_data_v9_0:e89dd8c9","title":"Rosetta-Orbiter RPCMAG Cruise 4B Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4b-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_cruise_4b_calibrated_data:ccd6b262","title":"Rosetta-Orbiter RPCMIP Cruise 4B Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4b-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_4b_raw_data:825fa807","title":"Rosetta-Orbiter SREM Cruise 4B Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4b-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_4b_derived_data:ad825e70","title":"Rosetta-Orbiter SREM Cruise 4B Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4b-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_cruise_4b_raw_data:c802ceb8","title":"Rosetta-Lander ROMAP-MAG Cruise 4B Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_cruise_4b_calibrated_data:e063c89a","title":"Rosetta-Lander ROMAP-MAG Cruise 4B Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_cruise_4b_raw_data:436c41d8","title":"Rosetta-Lander ROMAP-SPM Cruise 4B Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_cruise_4b_calibrated_data:b2b4a36f","title":"Rosetta-Lander ROMAP-SPM Cruise 4B Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_3_raw_data_v2_0:55206b88","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 3 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_3_calibrated_data_v2_0:8c7bf696","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 3 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_3_resampled_data:a72b3b4d","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 3 Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_earth_swing_by_3_calibrated_data_v3_0:070e364b","title":"Rosetta-Orbiter MIDAS Earth Swing-by 3 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear3-pc10-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_earth_swing_by_3_raw_data_v1_1:b9e0a0d9","title":"Rosetta-Orbiter NAVCAM Earth Swing-by 3 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear3-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_3_raw_data_v2_0:eb6c56a1","title":"Rosetta-Orbiter RPCICA Earth Swing-by 3 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear3-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_3_calibrated_data:a2e3a6b0","title":"Rosetta-Orbiter RPCICA Earth Swing-by 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear3-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_3_resampled_corrected_data:12b2f1a2","title":"Rosetta-Orbiter RPCICA Earth Swing-by 3 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_3_resampled_corrected_in_counts_data:d2fe8018","title":"Rosetta-Orbiter RPCICA Earth Swing-by 3 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_earth_swing_by_3_raw_data:37dabceb","title":"Rosetta-Orbiter RPCIES Earth Swing-by 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_3_raw_data:3c00352c","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear3-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_3_calibrated_data:2940f3e8","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear3-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_3_raw_data_v9_0:c7b3db01","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 3 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear3-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_3_calibrated_data_v9_0:63ebac09","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 3 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear3-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_3_resampled_data_v9_0:4cd1c8e8","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 3 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear3-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_earth_swing_by_3_calibrated_data:ac98ce90","title":"Rosetta-Orbiter RPCMIP Earth Swing-by 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_3_raw_data:47895f22","title":"Rosetta-Orbiter SREM Earth Swing-by 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear3-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_3_derived_data:41838569","title":"Rosetta-Orbiter SREM Earth Swing-by 3 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear3-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_3_raw_data:4030a5a3","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_3_calibrated_data:be663dda","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_3_raw_data:4b379564","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_3_calibrated_data:b48288c1","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_5_raw_data_v2_0:17b911f5","title":"Rosetta-Orbiter/Lander CONSERT Cruise 5 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr5-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_5_calibrated_data_v2_0:4d06a961","title":"Rosetta-Orbiter/Lander CONSERT Cruise 5 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr5-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_cruise_5_resampled_data:efec18c5","title":"Rosetta-Orbiter/Lander CONSERT Cruise 5 Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr5-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_cruise_5_calibrated_data_v3_0:35e9a2e5","title":"Rosetta-Orbiter MIDAS Cruise 5 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr5-pc12-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_cruise_5_solar_wind_raw_data:4eb26151","title":"Rosetta-Orbiter RPCIES Cruise 5 Solar Wind Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr5-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_cruise_5_raw_data:61f3ba07","title":"Rosetta-Orbiter RPCLAP Cruise 5 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr5-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_cruise_5_calibrated_data:3cda817f","title":"Rosetta-Orbiter RPCLAP Cruise 5 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr5-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_5_raw_data_v9_0:b37147c7","title":"Rosetta-Orbiter RPCMAG Cruise 5 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr5-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_5_calibrated_data_v9_0:22ee46b8","title":"Rosetta-Orbiter RPCMAG Cruise 5 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr5-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_cruise_5_resampled_data_v9_0:54ac105a","title":"Rosetta-Orbiter RPCMAG Cruise 5 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr5-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_cruise_5_calibrated_data:673b8ad2","title":"Rosetta-Orbiter RPCMIP Cruise 5 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr5-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_5_raw_data:b5d3dd3a","title":"Rosetta-Orbiter SREM Cruise 5 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr5-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_cruise_5_derived_data:0e8c091f","title":"Rosetta-Orbiter SREM Cruise 5 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr5-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_cruise_5_raw_data:1f413b32","title":"Rosetta-Lander ROMAP-MAG Cruise 5 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_cruise_5_calibrated_data:55287b41","title":"Rosetta-Lander ROMAP-MAG Cruise 5 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_cruise_5_raw_data:7d49ab92","title":"Rosetta-Lander ROMAP-SPM Cruise 5 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_cruise_5_calibrated_data:7ba70eb2","title":"Rosetta-Lander ROMAP-SPM Cruise 5 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_shape_model_of_asteroid_lutetia:141195b7","title":"Rosetta Shape Model of Asteroid Lutetia","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Asteroid","Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-lutetia-shape-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_lutetia_raw_data:8ae88478","title":"Rosetta-Orbiter ALICE Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_lutetia_calibrated_data:9625c150","title":"Rosetta-Orbiter ALICE Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_lutetia_resampled_data:53dd085a","title":"Rosetta-Orbiter ALICE Lutetia Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_lutetia_raw_data:24745d7a","title":"Rosetta-Orbiter/Lander CONSERT Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-a-consert-2-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_lutetia_calibrated_data_v3_0:58525be1","title":"Rosetta-Orbiter MIDAS Lutetia Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-midas-3-ast2-lute-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_lutetia_raw_data:0f6f3a2c","title":"Rosetta-Orbiter MIRO Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast2-lutetia-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_lutetia_calibrated_data:4eb2f4b9","title":"Rosetta-Orbiter MIRO Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast2-lutetia-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_lutetia_raw_data_v1_1:c4ee5484","title":"Rosetta-Orbiter NAVCAM Lutetia Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-navcam-2-ast2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_lutetia_raw_data_v2_0:6fb6cc4e","title":"Rosetta-Orbiter RPCICA Lutetia Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-2-ast2-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_lutetia_calibrated_data:34ca3beb","title":"Rosetta-Orbiter RPCICA Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-3-ast2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_lutetia_resampled_corrected_data:c7b7fbd4","title":"Rosetta-Orbiter RPCICA Lutetia Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_lutetia_resampled_corrected_in_counts_data:3b7f4804","title":"Rosetta-Orbiter RPCICA Lutetia Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_lutetia_edited_raw_data:7c9ac1fd","title":"Rosetta-Orbiter RPCIES Lutetia Edited Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_lutetia_raw_data_v2_0:cdd3e216","title":"Rosetta-Orbiter RPCLAP Lutetia Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_lutetia_calibrated_data_v2_0:8f071eb5","title":"Rosetta-Orbiter RPCLAP Lutetia Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_lutetia_raw_data_v9_0:c893dac6","title":"Rosetta-Orbiter RPCMAG Lutetia Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_lutetia_calibrated_data_v9_0:5c9cd6ac","title":"Rosetta-Orbiter RPCMAG Lutetia Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_lutetia_resampled_data_v9_0:1220dd0c","title":"Rosetta-Orbiter RPCMAG Lutetia Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_lutetia_calibrated_data:c1111cff","title":"Rosetta-Orbiter RPCMIP Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_lutetia_raw_data:2cbda846","title":"Rosetta-Orbiter SREM Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_lutetia_derived_data:3b97222f","title":"Rosetta-Orbiter SREM Lutetia Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_lutetia_raw_data:4f56e56f","title":"Rosetta-Lander ROMAP-MAG Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_lutetia_calibrated_data:a04342b6","title":"Rosetta-Lander ROMAP-MAG Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_lutetia_raw_data:7942ef8f","title":"Rosetta-Lander ROMAP-SPM Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_lutetia_calibrated_data:22bcb229","title":"Rosetta-Lander ROMAP-SPM Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_rendezvous_manoeuvre_1_raw_data:cc0c37f4","title":"Rosetta-Orbiter ALICE Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-rvm1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_rendezvous_manoeuvre_1_raw_data:df72db57","title":"Rosetta-Orbiter/Lander CONSERT Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-rvm1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_rendezvous_manoeuvre_1_raw_data:1c49056c","title":"Rosetta-Orbiter GIADA Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-rvm1-rendezmanoeuvre1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_rendezvous_manoeuvre_1_calibrated_data_v3_0:b50ac2a1","title":"Rosetta-Orbiter MIDAS Rendezvous Manoeuvre 1 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-rvm1-pc13-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_rendezvous_manoeuvre_1_raw_data_v1_1:ef58a4ea","title":"Rosetta-Orbiter NAVCAM Rendezvous Manoeuvre 1 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-rvm1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_rendezvous_manoeuvre_1_solar_wind_raw_data:c76be62c","title":"Rosetta-Orbiter RPCIES Rendezvous Manoeuvre 1 Solar Wind Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-rvm1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_rendezvous_manoeuvre_1_raw_data:f0e96fcf","title":"Rosetta-Orbiter RPCLAP Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-rvm1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_rendezvous_manoeuvre_1_calibrated_data:d21f3900","title":"Rosetta-Orbiter RPCLAP Rendezvous Manoeuvre 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-rvm1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_rendezvous_manoeuvre_1_raw_data_v9_0:a3f34aa5","title":"Rosetta-Orbiter RPCMAG Rendezvous Manoeuvre 1 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-rvm1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_rendezvous_manoeuvre_1_calibrated_data_v9_0:64b4888a","title":"Rosetta-Orbiter RPCMAG Rendezvous Manoeuvre 1 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-rvm1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_rendezvous_manoeuvre_1_resampled_data_v9_0:12c745a8","title":"Rosetta-Orbiter RPCMAG Rendezvous Manoeuvre 1 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-rvm1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rendezvous_manoeuvre_1_calibrated_data:96a82402","title":"Rosetta-Orbiter RPCMIP Rendezvous Manoeuvre 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-rvm1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_rendezvous_manoeuvre_1_raw_data:efea3f59","title":"Rosetta-Orbiter SREM Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-rvm1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_rendezvous_manoeuvre_1_derived_data:ffcfac50","title":"Rosetta-Orbiter SREM Rendezvous Manoeuvre 1 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-rvm1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_rendezvous_manoeuvre_1_raw_data:96de63c0","title":"Rosetta-Lander ROMAP-MAG Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_rendezvous_manoeuvre_1_calibrated_data:a322d04e","title":"Rosetta-Lander ROMAP-MAG Rendezvous Manoeuvre 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_rendezvous_manoeuvre_1_raw_data:e8d02841","title":"Rosetta-Lander ROMAP-SPM Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_rendezvous_manoeuvre_1_calibrated_data:93a045c6","title":"Rosetta-Lander ROMAP-SPM Rendezvous Manoeuvre 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_prelanding_67p_raw_data_v3_0:256a354c","title":"Rosetta-Orbiter ALICE Prelanding 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_prelanding_67p_calibrated_data_v3_0:d8e89e00","title":"Rosetta-Orbiter ALICE Prelanding 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_prelanding_67p_resampled_data_v3_0:18ef31e3","title":"Rosetta-Orbiter ALICE Prelanding 67P Resampled Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_prelanding_67p_raw_calibrated_data_v1_1:11fcf15b","title":"Rosetta-Orbiter GIADA Prelanding 67P Raw/Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-prl-prelanding-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_67p_prelanding_samples_calibrated_data_v3_0:76867055","title":"Rosetta-Orbiter MIDAS 67P Prelanding Samples Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_prelanding_67p_raw_data:e36520b1","title":"Rosetta-Orbiter MIRO Prelanding 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-prl-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_prelanding_67p_calibrated_data_v3_0:4f3555a8","title":"Rosetta-Orbiter MIRO Prelanding 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_prelanding_67p_resampled_data_v2_0:c2410aba","title":"Rosetta-Orbiter MIRO Prelanding 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-prl-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_commissioning_checkout_raw_data_v1_1:f6531d1a","title":"Rosetta-Orbiter NAVCAM Prelanding Commissioning Checkout Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-2-prl-com-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_commissioning_calibrated_data:224fe7bf","title":"Rosetta-Orbiter NAVCAM Prelanding Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-3-prl-com-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp003_67p_raw_data_v1_1:7ae1d58b","title":"Rosetta-Orbiter NAVCAM Prelanding MTP003 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp003-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp003_67p_calibrated_data:0d7c6b3f","title":"Rosetta-Orbiter NAVCAM Prelanding MTP003 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp003-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp004_67p_raw_data_v1_1:b8646a84","title":"Rosetta-Orbiter NAVCAM Prelanding MTP004 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp004-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp004_67p_calibrated_data:8a90e4c0","title":"Rosetta-Orbiter NAVCAM Prelanding MTP004 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp004-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp005_67p_raw_data_v1_1:8dd23013","title":"Rosetta-Orbiter NAVCAM Prelanding MTP005 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp005-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp005_67p_calibrated_data:f1ccf851","title":"Rosetta-Orbiter NAVCAM Prelanding MTP005 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp005-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp006_67p_raw_data_v1_1:09f9d0e0","title":"Rosetta-Orbiter NAVCAM Prelanding MTP006 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp006-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp006_67p_calibrated_data:7e79d82b","title":"Rosetta-Orbiter NAVCAM Prelanding MTP006 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp006-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp007_67p_raw_data_v1_1:e1111dec","title":"Rosetta-Orbiter NAVCAM Prelanding MTP007 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp007-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp007_67p_calibrated_data:2d723a9a","title":"Rosetta-Orbiter NAVCAM Prelanding MTP007 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp007-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp008_67p_raw_data_v1_1:f8a0d883","title":"Rosetta-Orbiter NAVCAM Prelanding MTP008 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp008-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp008_67p_calibrated_data:c3e93ef4","title":"Rosetta-Orbiter NAVCAM Prelanding MTP008 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp008-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp009_67p_raw_data_v1_1:c48ef8b1","title":"Rosetta-Orbiter NAVCAM Prelanding MTP009 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp009-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp009_67p_calibrated_data:6f9a4774","title":"Rosetta-Orbiter NAVCAM Prelanding MTP009 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp009-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_prelanding_67p_raw_data_v2_0:0899f003","title":"Rosetta-Orbiter ROSINA Prelanding 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_prelanding_67p_calibrated_data_v2_0:5a25120f","title":"Rosetta-Orbiter ROSINA Prelanding 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_prelanding_67p_resampled_data_v2_0:e35030b5","title":"Rosetta-Orbiter ROSINA Prelanding 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_prelanding_67p_derived_data_v2_0:1b3765ea","title":"Rosetta-Orbiter ROSINA Prelanding 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_prelanding_67p_derived_data:13770811","title":"Rosetta-Orbiter RPCIES Prelanding 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-prl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_raw_data_v3_0:d2ac9db9","title":"Rosetta-Orbiter RPCICA Prelanding 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_calibrated_data:296bc4fa","title":"Rosetta-Orbiter RPCICA Prelanding 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-prl-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_resampled_corrected_data:0de6fe06","title":"Rosetta-Orbiter RPCICA Prelanding 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_resampled_corrected_in_counts_data:e2970c34","title":"Rosetta-Orbiter RPCICA Prelanding 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_resampled_physical_mass_data:78218b73","title":"Rosetta-Orbiter RPCICA Prelanding 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_derived_moment_data:53f946c0","title":"Rosetta-Orbiter RPCICA Prelanding 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-prl-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_prelanding_67p_raw_data_v2_0:504c7b33","title":"Rosetta-Orbiter RPCIES Prelanding 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_prelanding_67p_calibrated_data_v2_0:db4ced96","title":"Rosetta-Orbiter RPCIES Prelanding 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_prelanding_67p_raw_data_v3_0:66d5de16","title":"Rosetta-Orbiter RPCLAP Prelanding 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_prelanding_67p_calibrated_data_v2_0:ef8c7a19","title":"Rosetta-Orbiter RPCLAP Prelanding 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-prl-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_prelanding_67p_derived_physical_units_data:a5d6f0b8","title":"Rosetta-Orbiter RPCLAP Prelanding 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_prelanding_67p_derived_plasma_density_at_higher_time_resolution_data:b7fa88d3","title":"Rosetta-Orbiter RPCLAP Prelanding 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_prelanding_67p_raw_data_v9_0:90296d6e","title":"Rosetta-Orbiter RPCMAG Prelanding 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_prelanding_67p_calibrated_data_v9_0:0d58dc9a","title":"Rosetta-Orbiter RPCMAG Prelanding 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-prl-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_prelanding_67p_resampled_data_v9_0:4559adab","title":"Rosetta-Orbiter RPCMAG Prelanding 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_prelanding_1_67p_calibrated_data_v3_0:fb84b7b3","title":"Rosetta-Orbiter RPCMIP Prelanding 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_prelanding_2_67p_calibrated_data_v3_0:6f5576a4","title":"Rosetta-Orbiter RPCMIP Prelanding 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_prelanding_3_67p_calibrated_data_v3_0:af430115","title":"Rosetta-Orbiter RPCMIP Prelanding 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_prelanding_67p_derived_data:26a60890","title":"Rosetta-Orbiter RPCMIP Prelanding 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-prl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_prelanding_67p_cross_calibrated_derived_data:7f820df0","title":"Rosetta-Orbiter RPCMIP/RPCLAP Prelanding 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-prl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_commissioning_raw_data:08a94d84","title":"Rosetta-Orbiter SREM Prelanding Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-com-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_commissioning_derived_data:d8dedfe0","title":"Rosetta-Orbiter SREM Prelanding Commissioning Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-com-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp003_raw_data:3812ed26","title":"Rosetta-Orbiter SREM Prelanding MTP003 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp003-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp003_derived_data:8295e538","title":"Rosetta-Orbiter SREM Prelanding MTP003 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp003-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp004_raw_data:f74fd40a","title":"Rosetta-Orbiter SREM Prelanding MTP004 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp004-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp004_derived_data:73c53efa","title":"Rosetta-Orbiter SREM Prelanding MTP004 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp004-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp005_raw_data:53480e91","title":"Rosetta-Orbiter SREM Prelanding MTP005 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp005-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp005_derived_data:71f19c28","title":"Rosetta-Orbiter SREM Prelanding MTP005 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp005-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp006_raw_data:b041abe8","title":"Rosetta-Orbiter SREM Prelanding MTP006 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp006-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp006_derived_data:ff8e2ac0","title":"Rosetta-Orbiter SREM Prelanding MTP006 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp006-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp007_raw_data:28410648","title":"Rosetta-Orbiter SREM Prelanding MTP007 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp007-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp007_derived_data:cdca529a","title":"Rosetta-Orbiter SREM Prelanding MTP007 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp007-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp008_raw_data:5d600be2","title":"Rosetta-Orbiter SREM Prelanding MTP008 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp008-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp008_derived_data:0e3e0356","title":"Rosetta-Orbiter SREM Prelanding MTP008 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp008-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp009_raw_data:e86ebc4e","title":"Rosetta-Orbiter SREM Prelanding MTP009 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp009-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp009_derived_data:75213680","title":"Rosetta-Orbiter SREM Prelanding MTP009 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp009-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_commissioning_67p_raw_data:2f4bb4fe","title":"Rosetta-Orbiter VIRTIS Prelanding Commissioning 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-com-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp004_67p_raw_data_v2_0:e71e5e57","title":"Rosetta-Orbiter VIRTIS Prelanding MTP004 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp004-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp005_67p_raw_data_v2_0:54ecd09c","title":"Rosetta-Orbiter VIRTIS Prelanding MTP005 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp005-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp006_67p_raw_data_v2_0:02848113","title":"Rosetta-Orbiter VIRTIS Prelanding MTP006 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp006-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp007_67p_raw_data_v2_0:6c86466d","title":"Rosetta-Orbiter VIRTIS Prelanding MTP007 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp007-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp008_67p_raw_data_v2_0:24709bf7","title":"Rosetta-Orbiter VIRTIS Prelanding MTP008 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp008-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp009_67p_raw_data_v2_0:685933bd","title":"Rosetta-Orbiter VIRTIS Prelanding MTP009 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp009-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp004_67p_calibrated_data_v2_0:e75dc882","title":"Rosetta-Orbiter VIRTIS Prelanding MTP004 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp004-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp005_67p_calibrated_data_v2_0:4e642ca9","title":"Rosetta-Orbiter VIRTIS Prelanding MTP005 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp005-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp006_67p_calibrated_data_v2_0:ab1845cb","title":"Rosetta-Orbiter VIRTIS Prelanding MTP006 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp006-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp007_67p_calibrated_data_v2_0:b84c3df1","title":"Rosetta-Orbiter VIRTIS Prelanding MTP007 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp007-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp008_67p_calibrated_data_v2_0:7ad6b487","title":"Rosetta-Orbiter VIRTIS Prelanding MTP008 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp008-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp009_67p_calibrated_data_v2_0:67b56c69","title":"Rosetta-Orbiter VIRTIS Prelanding MTP009 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp009-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_apxs_post_hibernation_commissioning_raw_data:58cb4b86","title":"Rosetta-Lander APXS Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-apxs-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_post_hibernation_commissioning_raw_data_v2_0:7fba112d","title":"Rosetta-Orbiter/Lander CONSERT Post Hibernation Commissioning Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-phc-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_post_hibernation_commissioning_calibrated_data_v2_0:fee21101","title":"Rosetta-Orbiter/Lander CONSERT Post Hibernation Commissioning Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-phc-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_post_hibernation_commissioning_resampled_data:bedf088c","title":"Rosetta-Orbiter/Lander CONSERT Post Hibernation Commissioning Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_cosac_post_hibernation_commissioning_raw_data:32090d89","title":"Rosetta-Lander COSAC Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_cosac_post_hibernation_commissioning_calibrated_data:e00f1e48","title":"Rosetta-Lander COSAC Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_post_hibernation_commissioning_raw_data:29ab2387","title":"Rosetta-Lander PTOLEMY Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_post_hibernation_commissioning_calibrated_data:5b4d35cb","title":"Rosetta-Lander PTOLEMY Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_mupus_post_hibernation_commissioning_raw_data:7860e7e7","title":"Rosetta-Lander MUPUS Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_mupus_post_hibernation_commissioning_calibrated_data:7e8614a0","title":"Rosetta-Lander MUPUS Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_rolis_post_hibernation_commissioning_raw_data:776e8ab4","title":"Rosetta-Lander ROLIS Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-rolis-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_post_hibernation_commissioning_edited_data:e53e977c","title":"Rosetta-Lander ROMAP-MAG Post Hibernation Commissioning Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_post_hibernation_commissioning_calibrated_data:ee0b138b","title":"Rosetta-Lander ROMAP-MAG Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_post_hibernation_commissioning_derived_data:7ec75102","title":"Rosetta-Lander ROMAP-MAG Post Hibernation Commissioning Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-phc-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_post_hibernation_commissioning_edited_data:2cb2d4ec","title":"Rosetta-Lander ROMAP-SPM Post Hibernation Commissioning Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_post_hibernation_commissioning_calibrated_data:cc5e4daa","title":"Rosetta-Lander ROMAP-SPM Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sd2_post_hibernation_commissioning_data:d08dd737","title":"Rosetta-Lander SD2 Post Hibernation Commissioning Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sesame_post_hibernation_commissioning_raw_data:4a2aff9a","title":"Rosetta-Lander SESAME Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sesame_post_hibernation_commissioning_calibrated_data:fdfba19d","title":"Rosetta-Lander SESAME Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_pre_delivery_calib_science_raw_data_v2_0:daeae0f2","title":"Rosetta-Orbiter/Lander CONSERT Pre Delivery Calib Science Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-pdcs-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_pre_delivery_calib_science_calibrated_data_v1_1:9cc45e31","title":"Rosetta-Orbiter/Lander CONSERT Pre Delivery Calib Science Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-pdcs-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_pre_delivery_calib_science_resampled_data:c7a10763","title":"Rosetta-Orbiter/Lander CONSERT Pre Delivery Calib Science Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_cosac_pre_delivery_calib_science_raw_data:e3a3499a","title":"Rosetta-Lander COSAC Pre Delivery Calib Science Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_cosac_pre_delivery_calib_science_calibrated_data:7420b18a","title":"Rosetta-Lander COSAC Pre Delivery Calib Science Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_pre_delivery_calib_science_raw_data:030f0b35","title":"Rosetta-Lander PTOLEMY Pre Delivery Calib Science Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_pre_delivery_calib_science_calibrated_data:93d1b72f","title":"Rosetta-Lander PTOLEMY Pre Delivery Calib Science Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_pre_delivery_calib_science_edited_data:aa21d7be","title":"Rosetta-Lander ROMAP-MAG Pre Delivery Calib Science Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-pdcs-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_pre_delivery_calib_science_calibrated_data:d5377159","title":"Rosetta-Lander ROMAP-MAG Pre Delivery Calib Science Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-pdcs-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_pre_delivery_calib_science_derived_data:32ae9166","title":"Rosetta-Lander ROMAP-MAG Pre Delivery Calib Science Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-pdcs-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sd2_pre_delivery_calib_science_data:d39e2373","title":"Rosetta-Lander SD2 Pre Delivery Calib Science Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sesame_pre_delivery_calib_science_raw_data:62481b47","title":"Rosetta-Lander SESAME Pre Delivery Calib Science Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sesame_pre_delivery_calib_science_calibrated_data:97f2230d","title":"Rosetta-Lander SESAME Pre Delivery Calib Science Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_separation_descent_landing_67p_raw_data_v2_0:8292bac3","title":"Rosetta-Orbiter/Lander CONSERT Separation Descent Landing 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-sdl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_separation_descent_landing_67p_calibrated_data_v1_1:716cfde6","title":"Rosetta-Orbiter/Lander CONSERT Separation Descent Landing 67P Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-sdl-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_separation_descent_landing_67p_resampled_data:cb2538b5","title":"Rosetta-Orbiter/Lander CONSERT Separation Descent Landing 67P Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_mupus_separation_descent_landing_67p_raw_data:4843c069","title":"Rosetta-Lander MUPUS Separation Descent Landing 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_mupus_separation_descent_landing_67p_calibrated_data:9a0107de","title":"Rosetta-Lander MUPUS Separation Descent Landing 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_rolis_separation_descent_landing_67p_raw_data:b18114a8","title":"Rosetta-Lander ROLIS Separation Descent Landing 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_rolis_separation_descent_landing_67p_calibrated_data:881266fd","title":"Rosetta-Lander ROLIS Separation Descent Landing 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-3-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_separation_descent_landing_67p_edited_data:6b713ad6","title":"Rosetta-Lander ROMAP-MAG Separation Descent Landing 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-sdl-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_separation_descent_landing_67p_calibrated_data:25022739","title":"Rosetta-Lander ROMAP-MAG Separation Descent Landing 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-sdl-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_separation_descent_landing_67p_derived_data:75bd6901","title":"Rosetta-Lander ROMAP-MAG Separation Descent Landing 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-sdl-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sesame_separation_descent_landing_67p_raw_data:c54dd99c","title":"Rosetta-Lander SESAME Separation Descent Landing 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sesame_separation_descent_landing_67p_calibrated_data:476244c8","title":"Rosetta-Lander SESAME Separation Descent Landing 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_cosac_rebounds_67p_raw_data:1a6b14dd","title":"Rosetta-Lander COSAC Rebounds 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_cosac_rebounds_67p_calibrated_data:e597d8f3","title":"Rosetta-Lander COSAC Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_rebounds_67p_raw_data:90625ff2","title":"Rosetta-Lander PTOLEMY Rebounds 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_rebounds_67p_calibrated_data:a18de6b2","title":"Rosetta-Lander PTOLEMY Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_mupus_rebounds_67p_raw_data:d9bc030e","title":"Rosetta-Lander MUPUS Rebounds 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_mupus_rebounds_67p_calibrated_data:c6772ae3","title":"Rosetta-Lander MUPUS Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_rebounds_67p_edited_data:534e1771","title":"Rosetta-Lander ROMAP-MAG Rebounds 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_rebounds_67p_calibrated_data:45a650b4","title":"Rosetta-Lander ROMAP-MAG Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_rebounds_67p_derived_data:4e749500","title":"Rosetta-Lander ROMAP-MAG Rebounds 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-rbd-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_rebounds_67p_edited_data:f9b32952","title":"Rosetta-Lander ROMAP-SPM Rebounds 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_rebounds_67p_calibrated_data:01f23fb8","title":"Rosetta-Lander ROMAP-SPM Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_first_science_sequence_67p_raw_data_v2_0:ff80b78c","title":"Rosetta-Orbiter/Lander CONSERT First Science Sequence 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-fss-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_first_science_sequence_67p_calibrated_data_v1_1:1d895160","title":"Rosetta-Orbiter/Lander CONSERT First Science Sequence 67P Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-fss-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_first_science_sequence_67p_resampled_data:8886cd76","title":"Rosetta-Orbiter/Lander CONSERT First Science Sequence 67P Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_cosac_first_science_sequence_67p_raw_data:2efea832","title":"Rosetta-Lander COSAC First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_cosac_first_science_sequence_67p_calibrated_data:5b0afbe3","title":"Rosetta-Lander COSAC First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_first_science_sequence_67p_raw_data:b4702338","title":"Rosetta-Lander PTOLEMY First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_first_science_sequence_67p_calibrated_data:edcc9248","title":"Rosetta-Lander PTOLEMY First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ptolemy_first_science_sequence_67p_derived_data:9415e994","title":"Rosetta-Lander PTOLEMY First Science Sequence 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-5-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_mupus_first_science_sequence_67p_raw_data:4e7c7f65","title":"Rosetta-Lander MUPUS First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_mupus_first_science_sequence_67p_calibrated_data:6aed1006","title":"Rosetta-Lander MUPUS First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_rolis_first_science_sequence_67p_raw_data:ea0d1df0","title":"Rosetta-Lander ROLIS First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_first_science_sequence_67p_edited_data:720ff7ed","title":"Rosetta-Lander ROMAP-MAG First Science Sequence 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_first_science_sequence_67p_calibrated_data:59e5408b","title":"Rosetta-Lander ROMAP-MAG First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_mag_first_science_sequence_67p_derived_data:27cf2907","title":"Rosetta-Lander ROMAP-MAG First Science Sequence 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-fss-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_first_science_sequence_67p_edited_data:04907c62","title":"Rosetta-Lander ROMAP-SPM First Science Sequence 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_romap_spm_first_science_sequence_67p_calibrated_data:4519c8df","title":"Rosetta-Lander ROMAP-SPM First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479383","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sd2_first_science_sequence_67p_data:968827cf","title":"Rosetta-Lander SD2 First Science Sequence 67P Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sd2-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sesame_first_science_sequence_67p_raw_data:37a873ee","title":"Rosetta-Lander SESAME First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_sesame_first_science_sequence_67p_calibrated_data:acdda203","title":"Rosetta-Lander SESAME First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_lander_consert_long_term_science_67p_raw_data:f2cca639","title":"Rosetta-Orbiter/Lander CONSERT Long Term Science 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-lts-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_1_67p_raw_data_v3_0:4cf67a14","title":"Rosetta-Orbiter ALICE Escort 1 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_1_67p_calibrated_data_v3_0:8099eb95","title":"Rosetta-Orbiter ALICE Escort 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_1_67p_resampled_data_v3_0:2aeb46bd","title":"Rosetta-Orbiter ALICE Escort 1 67P Resampled Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_escort_1_67p_raw_calibrated_data_v1_1:684c7f7d","title":"Rosetta-Orbiter GIADA Escort 1 67P Raw/Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc1-comet-escort-1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_escort_1_67p_calibrated_data_v3_0:ce0a8284","title":"Rosetta-Orbiter MIDAS Escort 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_1_67p_raw_data:9b7ea130","title":"Rosetta-Orbiter MIRO Escort 1 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc1-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_1_67p_calibrated_data_v3_0:2ef14d44","title":"Rosetta-Orbiter MIRO Escort 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_1_67p_resampled_data_v2_0:3e445c98","title":"Rosetta-Orbiter MIRO Escort 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc1-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp010_67p_raw_data_v1_1:bad75a2d","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP010 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp010-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp010_67p_calibrated_data:ec250c28","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP010 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp010-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp011_67p_raw_data_v1_1:cf5c9b73","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP011 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp011-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp011_67p_calibrated_data:2b31dcbf","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP011 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp011-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp012_67p_raw_data_v1_1:77b73868","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP012 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp012-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp012_67p_calibrated_data:c1643383","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP012 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp012-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp013_67p_raw_data_v1_1:da0b42d6","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP013 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp013-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp013_67p_calibrated_data:f5d589b0","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP013 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp013-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_1_67p_raw_data_v2_0:fde5323a","title":"Rosetta-Orbiter ROSINA Escort 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_1_67p_calibrated_data_v2_0:d9b1838e","title":"Rosetta-Orbiter ROSINA Escort 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_1_67p_resampled_data_v2_0:a5bba21a","title":"Rosetta-Orbiter ROSINA Escort 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_1_67p_derived_data_v2_0:854e1f98","title":"Rosetta-Orbiter ROSINA Escort 1 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_raw_data_v3_0:76fc1936","title":"Rosetta-Orbiter RPCICA Escort 1 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_calibrated_data:e9fc4d05","title":"Rosetta-Orbiter RPCICA Escort 1 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc1-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_resampled_corrected_data:017fd222","title":"Rosetta-Orbiter RPCICA Escort 1 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_resampled_corrected_in_counts_data:d7a5e89d","title":"Rosetta-Orbiter RPCICA Escort 1 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_resampled_physical_mass_data:6285a7c0","title":"Rosetta-Orbiter RPCICA Escort 1 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_derived_moment_data:f3f6edec","title":"Rosetta-Orbiter RPCICA Escort 1 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc1-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_1_67p_raw_data_v2_0:72db1075","title":"Rosetta-Orbiter RPCIES Escort 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_1_67p_calibrated_data_v2_0:72263c23","title":"Rosetta-Orbiter RPCIES Escort 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_1_67p_derived_data:de8e2c08","title":"Rosetta-Orbiter RPCIES Escort 1 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_1_67p_raw_data_v3_0:0d274b3e","title":"Rosetta-Orbiter RPCLAP Escort 1 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_1_67p_calibrated_data_v2_0:43f297b2","title":"Rosetta-Orbiter RPCLAP Escort 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_1_67p_derived_physical_units_data:e8d8253d","title":"Rosetta-Orbiter RPCLAP Escort 1 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_1_67p_derived_plasma_density_at_higher_time_resolution_data:46e0b8aa","title":"Rosetta-Orbiter RPCLAP Escort 1 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_1_67p_raw_data_v9_0:e8720729","title":"Rosetta-Orbiter RPCMAG Escort 1 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_1_67p_calibrated_data_v9_0:8f54c3f0","title":"Rosetta-Orbiter RPCMAG Escort 1 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_1_67p_resampled_data_v9_0:e3dec7e5","title":"Rosetta-Orbiter RPCMAG Escort 1 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_escort_1_67p_calibrated_data_v3_0:8fd3b623","title":"Rosetta-Orbiter RPCMIP Escort 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_escort_1_67p_derived_data:c9bb9523","title":"Rosetta-Orbiter RPCMIP Escort 1 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_escort_1_67p_cross_calibrated_derived_data:e9661f0d","title":"Rosetta-Orbiter RPCMIP/RPCLAP Escort 1 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp010_raw_data:b00f1a60","title":"Rosetta-Orbiter SREM Escort 1 MTP010 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp010-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp010_derived_data:8ef85fdc","title":"Rosetta-Orbiter SREM Escort 1 MTP010 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp010-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp011_raw_data:7071047b","title":"Rosetta-Orbiter SREM Escort 1 MTP011 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp011-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp011_derived_data:31bcc038","title":"Rosetta-Orbiter SREM Escort 1 MTP011 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp011-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp012_raw_data:9ff00b0b","title":"Rosetta-Orbiter SREM Escort 1 MTP012 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp012-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp012_derived_data:de6f8a58","title":"Rosetta-Orbiter SREM Escort 1 MTP012 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp012-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp013_raw_data:2b91ab59","title":"Rosetta-Orbiter SREM Escort 1 MTP013 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp013-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp013_derived_data:ddcc09a9","title":"Rosetta-Orbiter SREM Escort 1 MTP013 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp013-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp010_67p_raw_data_v2_0:2a109d13","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP010 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp010-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp010_67p_calibrated_data_v2_0:2ae83aaa","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP010 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp010-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp011_67p_raw_data_v2_0:26b5b08f","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP011 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp011-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp011_67p_calibrated_data_v2_0:60296a28","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP011 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp011-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp012_67p_raw_data_v2_0:4e60c9a3","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP012 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp012-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp012_67p_calibrated_data_v2_0:64775032","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP012 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp012-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp013_67p_raw_data_v2_0:6da06af0","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP013 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp013-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp013_67p_calibrated_data_v2_0:d8e93fa2","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP013 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp013-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_2_67p_raw_data_v2_0:5b4e074f","title":"Rosetta-Orbiter ALICE Escort 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_2_67p_calibrated_data_v2_0:42915cb0","title":"Rosetta-Orbiter ALICE Escort 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_2_67p_resampled_data_v2_0:6bfe2dce","title":"Rosetta-Orbiter ALICE Escort 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_escort_2_67p_raw_calibrated_data_v1_1:3779d24e","title":"Rosetta-Orbiter GIADA Escort 2 67P Raw/Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc2-comet-escort-2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_escort_2_67p_calibrated_data_v3_0:f0ce1cee","title":"Rosetta-Orbiter MIDAS Escort 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_2_67p_raw_data:42d14915","title":"Rosetta-Orbiter MIRO Escort 2 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc2-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_2_67p_calibrated_data_v3_0:e2c9dfe4","title":"Rosetta-Orbiter MIRO Escort 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc2-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_2_67p_resampled_data_v2_0:18855ca4","title":"Rosetta-Orbiter MIRO Escort 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc2-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp014_67p_raw_data_v1_1:6c1ad44a","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP014 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp014-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp014_67p_calibrated_data:ea9ef595","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP014 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp014-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp015_67p_raw_data_v1_1:e1fd6754","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP015 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp015-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp015_67p_calibrated_data:e3dc940d","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP015 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp015-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp016_67p_raw_data_v1_1:4e708a2a","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP016 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp016-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp016_67p_calibrated_data:284af300","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP016 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp016-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp017_67p_raw_data_v1_1:ebf9ce0b","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP017 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp017-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp017_67p_calibrated_data:d63de26f","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP017 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp017-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_2_67p_raw_data_v2_0:968bc98a","title":"Rosetta-Orbiter ROSINA Escort 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_2_67p_calibrated_data_v2_0:993b2141","title":"Rosetta-Orbiter ROSINA Escort 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_2_67p_resampled_data_v2_0:7d530ccd","title":"Rosetta-Orbiter ROSINA Escort 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_2_67p_derived_data_v2_0:2290f5c9","title":"Rosetta-Orbiter ROSINA Escort 2 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_raw_data_v3_0:31eeb8c2","title":"Rosetta-Orbiter RPCICA Escort 2 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_calibrated_data:83314196","title":"Rosetta-Orbiter RPCICA Escort 2 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_resampled_corrected_data:7060fe06","title":"Rosetta-Orbiter RPCICA Escort 2 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_resampled_corrected_in_counts_data:5805392b","title":"Rosetta-Orbiter RPCICA Escort 2 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_resampled_physical_mass_data:80f1b017","title":"Rosetta-Orbiter RPCICA Escort 2 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_derived_moment_data:4bb1e694","title":"Rosetta-Orbiter RPCICA Escort 2 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc2-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_2_67p_raw_data_v2_0:8645555c","title":"Rosetta-Orbiter RPCIES Escort 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_2_67p_calibrated_data_v2_0:30c51ce6","title":"Rosetta-Orbiter RPCIES Escort 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_2_67p_derived_data:cf2cd51c","title":"Rosetta-Orbiter RPCIES Escort 2 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_2_67p_raw_data_v3_0:e805f733","title":"Rosetta-Orbiter RPCLAP Escort 2 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_2_67p_calibrated_data:70fdd0ee","title":"Rosetta-Orbiter RPCLAP Escort 2 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480071","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_2_67p_derived_physical_units_data:cec28094","title":"Rosetta-Orbiter RPCLAP Escort 2 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_2_67p_derived_plasma_density_at_higher_time_resolution_data:6810389f","title":"Rosetta-Orbiter RPCLAP Escort 2 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_2_67p_raw_data_v9_0:b1e21fc5","title":"Rosetta-Orbiter RPCMAG Escort 2 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_2_67p_calibrated_data_v9_0:b790ada3","title":"Rosetta-Orbiter RPCMAG Escort 2 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_2_67p_resampled_data_v9_0:25160b96","title":"Rosetta-Orbiter RPCMAG Escort 2 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_escort_2_67p_calibrated_data_v3_0:5afd82b7","title":"Rosetta-Orbiter RPCMIP Escort 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_escort_2_67p_derived_data:23c56d04","title":"Rosetta-Orbiter RPCMIP Escort 2 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_escort_2_67p_cross_calibrated_derived_data:90f3e7b4","title":"Rosetta-Orbiter RPCMIP/RPCLAP Escort 2 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp014_raw_data:91138f77","title":"Rosetta-Orbiter SREM Escort 2 MTP014 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp014-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp014_derived_data:b125fc76","title":"Rosetta-Orbiter SREM Escort 2 MTP014 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp014-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp015_raw_data:69ff1174","title":"Rosetta-Orbiter SREM Escort 2 MTP015 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp015-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp015_derived_data:9aba8589","title":"Rosetta-Orbiter SREM Escort 2 MTP015 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp015-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp016_raw_data:261103af","title":"Rosetta-Orbiter SREM Escort 2 MTP016 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp016-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp016_derived_data:acdb88e2","title":"Rosetta-Orbiter SREM Escort 2 MTP016 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp016-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp017_raw_data:8fec3896","title":"Rosetta-Orbiter SREM Escort 2 MTP017 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp017-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp017_derived_data:870af941","title":"Rosetta-Orbiter SREM Escort 2 MTP017 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp017-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp014_67p_raw_data_v2_0:faa39932","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP014 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp014-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp014_67p_calibrated_data_v2_0:3b316fa1","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP014 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp014-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp015_67p_raw_data_v2_0:0f8930a3","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP015 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp015-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp015_67p_calibrated_data_v2_0:7aa29d93","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP015 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp015-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp016_67p_raw_data_v2_0:c5e9f132","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP016 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp016-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp016_67p_calibrated_data_v2_0:56548acd","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP016 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp016-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp017_67p_raw_data_v2_0:4354daab","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP017 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp017-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp017_67p_calibrated_data_v2_0:c47a835d","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP017 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp017-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_3_67p_raw_data_v2_0:b57d683a","title":"Rosetta-Orbiter ALICE Escort 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_3_67p_calibrated_data_v2_0:30127c4a","title":"Rosetta-Orbiter ALICE Escort 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_3_67p_resampled_data_v2_0:1d1be62e","title":"Rosetta-Orbiter ALICE Escort 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_escort_3_67p_raw_calibrated_data:0b7464d1","title":"Rosetta-Orbiter GIADA Escort 3 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc3-comet-escort-3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_escort_3_67p_calibrated_data_v3_0:24a84cdf","title":"Rosetta-Orbiter MIDAS Escort 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_3_67p_raw_data:67944a5c","title":"Rosetta-Orbiter MIRO Escort 3 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc3-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_3_67p_calibrated_data_v3_0:3d5a24f9","title":"Rosetta-Orbiter MIRO Escort 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc3-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_3_67p_resampled_data_v2_0:f740f8f8","title":"Rosetta-Orbiter MIRO Escort 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc3-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp018_67p_raw_data_v1_1:0aa860c0","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP018 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp018-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp018_67p_calibrated_data:1de890b4","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP018 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp018-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp019_67p_raw_data_v1_1:a71a9170","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP019 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp019-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp019_67p_calibrated_data:a6bbaf3a","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP019 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp019-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp020_67p_raw_data_v1_1:5986d4ca","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP020 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp020-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp020_67p_calibrated_data:105df545","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP020 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp020-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp021_67p_raw_data_v1_1:8d7f78cd","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP021 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp021-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp021_67p_calibrated_data:83668a7d","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP021 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp021-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_3_67p_raw_data_v2_0:b27150a1","title":"Rosetta-Orbiter ROSINA Escort 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_3_67p_calibrated_data_v2_0:8bf7ea55","title":"Rosetta-Orbiter ROSINA Escort 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_3_67p_resampled_data_v2_0:57216459","title":"Rosetta-Orbiter ROSINA Escort 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_3_67p_derived_data_v2_0:c58d83c7","title":"Rosetta-Orbiter ROSINA Escort 3 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_raw_data_v3_0:3da5c6e8","title":"Rosetta-Orbiter RPCICA Escort 3 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_calibrated_data:834cdcc7","title":"Rosetta-Orbiter RPCICA Escort 3 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc3-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_resampled_corrected_data:adba85df","title":"Rosetta-Orbiter RPCICA Escort 3 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_resampled_corrected_in_counts_data:b850cdd3","title":"Rosetta-Orbiter RPCICA Escort 3 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_resampled_physical_mass_data:0515dc54","title":"Rosetta-Orbiter RPCICA Escort 3 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_derived_moment_data:4691f493","title":"Rosetta-Orbiter RPCICA Escort 3 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc3-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_3_67p_raw_data_v2_0:4c5d49fd","title":"Rosetta-Orbiter RPCIES Escort 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_3_67p_calibrated_data_v2_0:cf2504d9","title":"Rosetta-Orbiter RPCIES Escort 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_3_67p_derived_data:fd1bb1f5","title":"Rosetta-Orbiter RPCIES Escort 3 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_3_67p_raw_data_v3_0:62769920","title":"Rosetta-Orbiter RPCLAP Escort 3 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_3_67p_calibrated_data:a5eaa1c4","title":"Rosetta-Orbiter RPCLAP Escort 3 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc3-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_3_67p_derived_physical_units_data:65924955","title":"Rosetta-Orbiter RPCLAP Escort 3 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_3_67p_derived_plasma_density_at_higher_time_resolution_data:5bb91b89","title":"Rosetta-Orbiter RPCLAP Escort 3 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_3_67p_raw_data_v9_0:e946466e","title":"Rosetta-Orbiter RPCMAG Escort 3 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc3-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_3_67p_calibrated_data_v9_0:026b5741","title":"Rosetta-Orbiter RPCMAG Escort 3 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc3-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_3_67p_resampled_data_v9_0:72658e6a","title":"Rosetta-Orbiter RPCMAG Escort 3 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc3-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_escort_3_67p_calibrated_data_v2_0:c84d03a5","title":"Rosetta-Orbiter RPCMIP Escort 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_escort_3_67p_derived_data:4ef7d4d6","title":"Rosetta-Orbiter RPCMIP Escort 3 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_escort_3_67p_cross_calibrated_derived_data:1bf59001","title":"Rosetta-Orbiter RPCMIP/RPCLAP Escort 3 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp018_raw_data:253c9c44","title":"Rosetta-Orbiter SREM Escort 3 MTP018 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp018-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp018_derived_data:afbdd633","title":"Rosetta-Orbiter SREM Escort 3 MTP018 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp018-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp019_raw_data:9c083c0e","title":"Rosetta-Orbiter SREM Escort 3 MTP019 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp019-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp019_derived_data:07fb9960","title":"Rosetta-Orbiter SREM Escort 3 MTP019 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp019-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp020_raw_data:9d0d5743","title":"Rosetta-Orbiter SREM Escort 3 MTP020 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp020-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp020_derived_data:2dbfcdf8","title":"Rosetta-Orbiter SREM Escort 3 MTP020 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp020-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp021_raw_data:97baba5b","title":"Rosetta-Orbiter SREM Escort 3 MTP021 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp021-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp021_derived_data:7c6bbb77","title":"Rosetta-Orbiter SREM Escort 3 MTP021 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp021-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp018_67p_raw_data_v2_0:968e0764","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP018 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp018-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp018_67p_calibrated_data_v2_0:f4ece4df","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP018 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp018-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp019_67p_raw_data_v2_0:bfc9c848","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP019 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp019-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp019_67p_calibrated_data_v2_0:d6fe1f94","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP019 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp019-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp020_67p_raw_data_v2_0:487dd706","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP020 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp020-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp020_67p_calibrated_data_v2_0:7a199b60","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP020 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp020-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp021_67p_raw_data_v2_0:0ff436b8","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP021 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp021-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp021_67p_calibrated_data_v2_0:ce6c4277","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP021 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp021-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_4_67p_raw_data_v2_0:7e6cb7d2","title":"Rosetta-Orbiter ALICE Escort 4 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_4_67p_calibrated_data_v2_0:fa56e39a","title":"Rosetta-Orbiter ALICE Escort 4 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_escort_4_67p_resampled_data_v2_0:0c59bc86","title":"Rosetta-Orbiter ALICE Escort 4 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_escort_4_67p_raw_calibrated_data:ff9ea503","title":"Rosetta-Orbiter GIADA Escort 4 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc4-comet-escort-4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_escort_4_67p_calibrated_data_v3_0:9c2f71ea","title":"Rosetta-Orbiter MIDAS Escort 4 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_4_67p_raw_data:bcce220b","title":"Rosetta-Orbiter MIRO Escort 4 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc4-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_4_67p_calibrated_data_v3_0:d339e0f0","title":"Rosetta-Orbiter MIRO Escort 4 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc4-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_escort_4_67p_resampled_data_v2_0:30b949a2","title":"Rosetta-Orbiter MIRO Escort 4 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc4-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp022_67p_raw_data_v1_1:43ef7031","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP022 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp022-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp022_67p_calibrated_data:35279928","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP022 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp022-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp023_67p_raw_data_v1_1:45ac8349","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP023 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp023-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp023_67p_calibrated_data:1a80590c","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP023 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp023-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp024_67p_raw_data_v1_1:b67a5c7b","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP024 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp024-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp024_67p_calibrated_data:c2b7bec4","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP024 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp024-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_4_67p_raw_data_v2_0:4a74de0d","title":"Rosetta-Orbiter ROSINA Escort 4 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_4_67p_calibrated_data_v2_0:a0deb2dd","title":"Rosetta-Orbiter ROSINA Escort 4 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_4_67p_resampled_data_v2_0:0a82924d","title":"Rosetta-Orbiter ROSINA Escort 4 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_escort_4_67p_derived_data_v2_0:a5216bd0","title":"Rosetta-Orbiter ROSINA Escort 4 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_raw_data_v2_0:faef93e2","title":"Rosetta-Orbiter RPCICA Escort 4 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc4-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_calibrated_data:d59f8240","title":"Rosetta-Orbiter RPCICA Escort 4 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc4-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_resampled_corrected_data:eacd1a42","title":"Rosetta-Orbiter RPCICA Escort 4 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_resampled_corrected_in_counts_data:a34702f7","title":"Rosetta-Orbiter RPCICA Escort 4 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_resampled_physical_mass_data:6f04aa26","title":"Rosetta-Orbiter RPCICA Escort 4 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_derived_moment_data:05d86e2b","title":"Rosetta-Orbiter RPCICA Escort 4 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc4-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_4_67p_raw_data:14216e98","title":"Rosetta-Orbiter RPCIES Escort 4 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_4_67p_calibrated_data_v2_0:4efa6a39","title":"Rosetta-Orbiter RPCIES Escort 4 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_escort_4_67p_derived_data:d10b5773","title":"Rosetta-Orbiter RPCIES Escort 4 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_4_67p_raw_data_v3_0:f4e38d12","title":"Rosetta-Orbiter RPCLAP Escort 4 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_4_67p_calibrated_data:668cde5a","title":"Rosetta-Orbiter RPCLAP Escort 4 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc4-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_4_67p_derived_physical_units_data:834b85bc","title":"Rosetta-Orbiter RPCLAP Escort 4 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_escort_4_67p_derived_plasma_density_at_higher_time_resolution_data:78005175","title":"Rosetta-Orbiter RPCLAP Escort 4 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_4_67p_raw_data_v9_0:575e265e","title":"Rosetta-Orbiter RPCMAG Escort 4 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc4-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_4_67p_calibrated_data_v9_0:81b89ed1","title":"Rosetta-Orbiter RPCMAG Escort 4 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc4-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_escort_4_67p_resampled_data_v9_0:f2b62aa9","title":"Rosetta-Orbiter RPCMAG Escort 4 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc4-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_escort_4_67p_calibrated_data_v2_0:73b5e3d9","title":"Rosetta-Orbiter RPCMIP Escort 4 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_escort_4_67p_derived_data:f98a4994","title":"Rosetta-Orbiter RPCMIP Escort 4 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_escort_4_67p_cross_calibrated_derived_data:9938a944","title":"Rosetta-Orbiter RPCMIP/RPCLAP Escort 4 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp022_raw_data:b986f2db","title":"Rosetta-Orbiter SREM Escort 4 MTP022 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp022-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp022_derived_data:da86bd3a","title":"Rosetta-Orbiter SREM Escort 4 MTP022 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp022-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp023_raw_data:36e535a8","title":"Rosetta-Orbiter SREM Escort 4 MTP023 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp023-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp023_derived_data:eb6076aa","title":"Rosetta-Orbiter SREM Escort 4 MTP023 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp023-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp024_raw_data:c7646622","title":"Rosetta-Orbiter SREM Escort 4 MTP024 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp024-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp024_derived_data:c07594ff","title":"Rosetta-Orbiter SREM Escort 4 MTP024 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp024-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp022_67p_raw_data_v2_0:772aa007","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP022 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp022-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp022_67p_calibrated_data_v2_0:ba9995ee","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP022 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp022-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp023_67p_raw_data_v2_0:3304dc69","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP023 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp023-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp023_67p_calibrated_data_v2_0:0a68ff7d","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP023 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp023-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp024_67p_raw_data_v2_0:934fb975","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP024 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp024-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp024_67p_calibrated_data_v2_0:4a0d38a4","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP024 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp024-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_1_67p_raw_data_v2_0:69300824","title":"Rosetta-Orbiter ALICE Extension 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_1_67p_calibrated_data_v2_0:40c48602","title":"Rosetta-Orbiter ALICE Extension 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_1_67p_resampled_data_v2_0:963871d5","title":"Rosetta-Orbiter ALICE Extension 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_extension_1_67p_raw_calibrated_data:29425706","title":"Rosetta-Orbiter GIADA Extension 1 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext1-extension-1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_extension_1_67p_calibrated_data_v3_0:4c5ffc71","title":"Rosetta-Orbiter MIDAS Extension 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_1_67p_raw_data:6634a259","title":"Rosetta-Orbiter MIRO Extension 1 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext1-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_1_67p_calibrated_data_v3_0:e691d4b6","title":"Rosetta-Orbiter MIRO Extension 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext1-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_1_67p_resampled_data_v2_0:14ad2f8e","title":"Rosetta-Orbiter MIRO Extension 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext1-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp025_67p_raw_data_v1_1:085fefe5","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP025 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp025-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp025_67p_calibrated_data:491b9b66","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP025 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp025-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp026_67p_raw_data_v1_1:3f203d27","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP026 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp026-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp026_67p_calibrated_data:18b07946","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP026 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp026-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp027_67p_raw_data_v1_1:b8e5de59","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP027 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp027-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp027_67p_calibrated_data:bf33fede","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP027 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp027-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_1_67p_raw_data_v2_0:3a26e28d","title":"Rosetta-Orbiter ROSINA Extension 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_1_67p_calibrated_data_v2_0:fe20e0d2","title":"Rosetta-Orbiter ROSINA Extension 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_1_67p_resampled_data_v2_0:ef672b5f","title":"Rosetta-Orbiter ROSINA Extension 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_1_67p_derived_data_v2_0:0d6adec7","title":"Rosetta-Orbiter ROSINA Extension 1 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_raw_data_v2_0:736b3d15","title":"Rosetta-Orbiter RPCICA Extension 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext1-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_calibrated_data:0f08fd69","title":"Rosetta-Orbiter RPCICA Extension 1 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext1-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_resampled_corrected_data:736248c7","title":"Rosetta-Orbiter RPCICA Extension 1 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_resampled_corrected_in_counts_data:26b42ac3","title":"Rosetta-Orbiter RPCICA Extension 1 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_resampled_physical_mass_data:2fd7a093","title":"Rosetta-Orbiter RPCICA Extension 1 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_derived_moment_data:1ad9f8e1","title":"Rosetta-Orbiter RPCICA Extension 1 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext1-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_1_67p_raw_data:617438f5","title":"Rosetta-Orbiter RPCIES Extension 1 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_1_67p_calibrated_data_v2_0:0722a222","title":"Rosetta-Orbiter RPCIES Extension 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_1_67p_derived_data:9ca4b62c","title":"Rosetta-Orbiter RPCIES Extension 1 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_1_67p_raw_data_v2_0:2998d708","title":"Rosetta-Orbiter RPCLAP Extension 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_1_67p_calibrated_data:43b6f793","title":"Rosetta-Orbiter RPCLAP Extension 1 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_1_67p_derived_physical_units_data:6c75b8c4","title":"Rosetta-Orbiter RPCLAP Extension 1 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_1_67p_derived_plasma_density_at_higher_time_resolution_data:2396749d","title":"Rosetta-Orbiter RPCLAP Extension 1 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_1_67p_raw_data_v9_0:fa9d91e3","title":"Rosetta-Orbiter RPCMAG Extension 1 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_1_67p_calibrated_data_v9_0:c114df47","title":"Rosetta-Orbiter RPCMAG Extension 1 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_1_67p_resampled_data_v9_0:bafd7900","title":"Rosetta-Orbiter RPCMAG Extension 1 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_extension_1_67p_calibrated_data_v2_0:fbac7091","title":"Rosetta-Orbiter RPCMIP Extension 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_extension_1_67p_derived_data:5b87ff7b","title":"Rosetta-Orbiter RPCMIP Extension 1 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_extension_1_67p_cross_calibrated_derived_data:e4d5509f","title":"Rosetta-Orbiter RPCMIP/RPCLAP Extension 1 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp025_raw_data:f65e76db","title":"Rosetta-Orbiter SREM Extension 1 MTP025 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp025-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp025_derived_data:2160bb0a","title":"Rosetta-Orbiter SREM Extension 1 MTP025 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp025-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp026_raw_data:3163343f","title":"Rosetta-Orbiter SREM Extension 1 MTP026 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp026-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp026_derived_data:4c00abc6","title":"Rosetta-Orbiter SREM Extension 1 MTP026 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp026-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp027_raw_data:39131e19","title":"Rosetta-Orbiter SREM Extension 1 MTP027 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp027-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp027_derived_data:aa294c56","title":"Rosetta-Orbiter SREM Extension 1 MTP027 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp027-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp025_67p_raw_data_v2_0:24238c0f","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP025 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp025-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp025_67p_calibrated_data_v2_0:746b891b","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP025 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp025-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp026_67p_raw_data_v2_0:7ec7a533","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP026 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp026-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp026_67p_calibrated_data_v2_0:73793763","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP026 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp026-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp027_67p_raw_data_v2_0:9bc1f3e4","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP027 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp027-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp027_67p_calibrated_data_v2_0:69eb0e78","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP027 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp027-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_2_67p_raw_data_v2_0:3550c789","title":"Rosetta-Orbiter ALICE Extension 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_2_67p_calibrated_data_v2_0:5560ac4e","title":"Rosetta-Orbiter ALICE Extension 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_2_67p_resampled_data_v2_0:380bac26","title":"Rosetta-Orbiter ALICE Extension 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_extension_2_67p_raw_calibrated_data:45f9ba9a","title":"Rosetta-Orbiter GIADA Extension 2 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext2-extension-2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_extension_2_67p_calibrated_data_v3_0:c1196cbf","title":"Rosetta-Orbiter MIDAS Extension 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_2_67p_raw_data:ceea12b3","title":"Rosetta-Orbiter MIRO Extension 2 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext2-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_2_67p_calibrated_data_v3_0:7fa50322","title":"Rosetta-Orbiter MIRO Extension 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext2-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_2_67p_resampled_data_v2_0:3e2c8bf7","title":"Rosetta-Orbiter MIRO Extension 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext2-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp028_67p_raw_data_v1_1:fe37e8d8","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP028 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp028-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp028_67p_calibrated_data:1cd14701","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP028 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp028-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp029_67p_raw_data_v1_1:354fdcc7","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP029 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp029-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp029_67p_calibrated_data:646cc63a","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP029 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp029-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp030_67p_raw_data_v1_1:8fe0242f","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP030 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp030-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp030_67p_calibrated_data:8ec8d92e","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP030 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp030-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_2_67p_raw_data_v2_0:51aa96da","title":"Rosetta-Orbiter ROSINA Extension 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_2_67p_calibrated_data_v2_0:aedc20c4","title":"Rosetta-Orbiter ROSINA Extension 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_2_67p_resampled_data_v2_0:788b1b60","title":"Rosetta-Orbiter ROSINA Extension 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_2_67p_derived_data_v2_0:84f3d6dd","title":"Rosetta-Orbiter ROSINA Extension 2 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_raw_data_v2_0:9cf1604d","title":"Rosetta-Orbiter RPCICA Extension 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext2-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_calibrated_data:1650968f","title":"Rosetta-Orbiter RPCICA Extension 2 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_resampled_corrected_data:b7867f05","title":"Rosetta-Orbiter RPCICA Extension 2 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_resampled_corrected_in_counts_data:2f589a76","title":"Rosetta-Orbiter RPCICA Extension 2 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_resampled_physical_mass_data:6b119ffc","title":"Rosetta-Orbiter RPCICA Extension 2 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_derived_moment_data:697f1297","title":"Rosetta-Orbiter RPCICA Extension 2 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext2-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_2_67p_raw_data:1d79007e","title":"Rosetta-Orbiter RPCIES Extension 2 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_2_67p_calibrated_data_v2_0:b5f4c11b","title":"Rosetta-Orbiter RPCIES Extension 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_2_67p_derived_data:3731ec9d","title":"Rosetta-Orbiter RPCIES Extension 2 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_2_67p_raw_data_v2_0:90fc8dbd","title":"Rosetta-Orbiter RPCLAP Extension 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_2_67p_calibrated_data:cc27cd0b","title":"Rosetta-Orbiter RPCLAP Extension 2 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_2_67p_derived_physical_units_data:18c6b912","title":"Rosetta-Orbiter RPCLAP Extension 2 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_2_67p_derived_plasma_density_at_higher_time_resolution_data:6407b5fd","title":"Rosetta-Orbiter RPCLAP Extension 2 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_2_67p_raw_data_v9_0:e095e440","title":"Rosetta-Orbiter RPCMAG Extension 2 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_2_67p_calibrated_data_v9_0:f0010c34","title":"Rosetta-Orbiter RPCMAG Extension 2 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_2_67p_resampled_data_v9_0:982d6deb","title":"Rosetta-Orbiter RPCMAG Extension 2 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_extension_2_67p_calibrated_data_v2_0:7d4496bc","title":"Rosetta-Orbiter RPCMIP Extension 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_extension_2_67p_derived_data:1f51721f","title":"Rosetta-Orbiter RPCMIP Extension 2 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_extension_2_67p_cross_calibrated_derived_data:2df2c6ea","title":"Rosetta-Orbiter RPCMIP/RPCLAP Extension 2 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp028_raw_data:81a3e932","title":"Rosetta-Orbiter SREM Extension 2 MTP028 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp028-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp028_derived_data:2d5b9c78","title":"Rosetta-Orbiter SREM Extension 2 MTP028 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp028-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp029_raw_data:06d1b123","title":"Rosetta-Orbiter SREM Extension 2 MTP029 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp029-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp029_derived_data:bb2e4b81","title":"Rosetta-Orbiter SREM Extension 2 MTP029 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp029-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp030_raw_data:53616ab8","title":"Rosetta-Orbiter SREM Extension 2 MTP030 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp030-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp030_derived_data:36f8be64","title":"Rosetta-Orbiter SREM Extension 2 MTP030 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp030-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp028_67p_raw_data_v2_0:0d1edeb2","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP028 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp028-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp028_67p_calibrated_data_v2_0:3e37f313","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP028 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp028-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp029_67p_raw_data_v2_0:e991e694","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP029 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp029-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp029_67p_calibrated_data_v2_0:6d23ff42","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP029 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp029-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp030_67p_raw_data_v2_0:8843dabd","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP030 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp030-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp030_67p_calibrated_data_v2_0:e3fac573","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP030 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp030-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_3_67p_raw_data_v2_0:0d4be192","title":"Rosetta-Orbiter ALICE Extension 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_3_67p_calibrated_data_v2_0:b6c8ebf0","title":"Rosetta-Orbiter ALICE Extension 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_extension_3_67p_resampled_data_v2_0:2a63c844","title":"Rosetta-Orbiter ALICE Extension 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_extension_3_67p_raw_calibrated_data:10f1650f","title":"Rosetta-Orbiter GIADA Extension 3 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext3-extension-3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_extension_3_67p_calibrated_data_v3_0:c1d43ae9","title":"Rosetta-Orbiter MIDAS Extension 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_3_67p_raw_data:6e523708","title":"Rosetta-Orbiter MIRO Extension 3 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext3-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_3_67p_calibrated_data_v3_0:a7534182","title":"Rosetta-Orbiter MIRO Extension 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext3-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_miro_extension_3_67p_resampled_data_v2_0:26eacedf","title":"Rosetta-Orbiter MIRO Extension 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext3-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp031_67p_raw_data_v1_1:3d373df8","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP031 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp031-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp031_67p_calibrated_data:e3b72ae5","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP031 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp031-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp032_67p_raw_data_v1_1:2d21f35d","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP032 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp032-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp032_67p_calibrated_data:307f4e85","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP032 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp032-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp033_67p_raw_data_v1_1:df1118c8","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP033 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp033-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp033_67p_calibrated_data:e6154054","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP033 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp033-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp034_67p_raw_data_v1_1:5effeeab","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP034 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp034-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp034_67p_calibrated_data:6fb5e6e6","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP034 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp034-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp035_67p_raw_data_v1_1:f970d30b","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP035 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp035-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp035_67p_calibrated_data:54a08562","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP035 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp035-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_3_67p_raw_data_v2_0:4a960186","title":"Rosetta-Orbiter ROSINA Extension 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_3_67p_calibrated_data_v2_0:1ed63fee","title":"Rosetta-Orbiter ROSINA Extension 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_3_67p_resampled_data_v2_0:4d63ce33","title":"Rosetta-Orbiter ROSINA Extension 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rosina_extension_3_67p_derived_data_v2_0:2f24cc95","title":"Rosetta-Orbiter ROSINA Extension 3 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_raw_data_v2_0:e8bcc563","title":"Rosetta-Orbiter RPCICA Extension 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext3-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_calibrated_data:563b9c17","title":"Rosetta-Orbiter RPCICA Extension 3 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext3-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_resampled_corrected_data:d2cdfeca","title":"Rosetta-Orbiter RPCICA Extension 3 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_resampled_corrected_in_counts_data:9835e51b","title":"Rosetta-Orbiter RPCICA Extension 3 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_resampled_physical_mass_data:84168c88","title":"Rosetta-Orbiter RPCICA Extension 3 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_derived_moment_data:04b027a7","title":"Rosetta-Orbiter RPCICA Extension 3 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext3-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_3_67p_raw_data:2dd9ce55","title":"Rosetta-Orbiter RPCIES Extension 3 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_3_67p_calibrated_data_v2_0:785027e8","title":"Rosetta-Orbiter RPCIES Extension 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcies_extension_3_67p_derived_data:9adc7e84","title":"Rosetta-Orbiter RPCIES Extension 3 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_3_67p_raw_data_v2_0:d40cc852","title":"Rosetta-Orbiter RPCLAP Extension 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_3_67p_calibrated_data:fed0e564","title":"Rosetta-Orbiter RPCLAP Extension 3 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext3-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_3_67p_derived_physical_units_data:0b4517b1","title":"Rosetta-Orbiter RPCLAP Extension 3 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpclap_extension_3_67p_derived_plasma_density_at_higher_time_resolution_data:b6f99d5d","title":"Rosetta-Orbiter RPCLAP Extension 3 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_3_67p_raw_data_v9_0:93007007","title":"Rosetta-Orbiter RPCMAG Extension 3 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext3-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_3_67p_calibrated_data_v9_0:e699ac80","title":"Rosetta-Orbiter RPCMAG Extension 3 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext3-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmag_extension_3_67p_resampled_data_v9_0:accf12c1","title":"Rosetta-Orbiter RPCMAG Extension 3 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext3-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_extension_3_67p_calibrated_data_v2_0:4e36920e","title":"Rosetta-Orbiter RPCMIP Extension 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_extension_3_67p_derived_data:3f9f88b5","title":"Rosetta-Orbiter RPCMIP Extension 3 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_extension_3_67p_cross_calibrated_derived_data:a355da61","title":"Rosetta-Orbiter RPCMIP/RPCLAP Extension 3 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp031_raw_data:ab6cc29b","title":"Rosetta-Orbiter SREM Extension 3 MTP031 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp031-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp031_derived_data:05f27c9f","title":"Rosetta-Orbiter SREM Extension 3 MTP031 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp031-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp032_raw_data:3eb627fd","title":"Rosetta-Orbiter SREM Extension 3 MTP032 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp032-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp032_derived_data:1fd1ed60","title":"Rosetta-Orbiter SREM Extension 3 MTP032 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp032-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp033_raw_data:caf5067f","title":"Rosetta-Orbiter SREM Extension 3 MTP033 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp033-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp033_derived_data:145b2c3f","title":"Rosetta-Orbiter SREM Extension 3 MTP033 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp033-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp034_raw_data:5c6bda39","title":"Rosetta-Orbiter SREM Extension 3 MTP034 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp034-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp034_derived_data:30b1e61d","title":"Rosetta-Orbiter SREM Extension 3 MTP034 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp034-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp035_raw_data:f64d4738","title":"Rosetta-Orbiter SREM Extension 3 MTP035 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp035-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp035_derived_data:e553c1dd","title":"Rosetta-Orbiter SREM Extension 3 MTP035 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp035-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp031_67p_raw_data_v2_0:17b92d5d","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP031 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp031-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp031_67p_calibrated_data_v2_0:682a8790","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP031 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp031-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp032_67p_raw_data_v2_0:c5148252","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP032 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp032-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp032_67p_calibrated_data_v2_0:5e084577","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP032 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp032-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp033_67p_raw_data_v2_0:9ba5ebbb","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP033 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp033-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp033_67p_calibrated_data_v2_0:11bcf1cb","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP033 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp033-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp034_67p_raw_data_v2_0:fe97b675","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP034 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp034-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp034_67p_calibrated_data_v2_0:eff20978","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP034 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp034-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp035_67p_raw_data_v2_0:2704ae47","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP035 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp035-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp035_67p_calibrated_data_v2_0:4ad908ef","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP035 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp035-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_cosima_in_flight_and_67p_raw_and_calibrated_data:fcf87cbb","title":"Rosetta-Orbiter COSIMA In-Flight and 67P Raw and Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v6.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_rf_antenna_engineering_data:c650d71e","title":"Rosetta Spacecraft RF Antenna Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-antennastatus-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_attitude_amp_orbit_control_system_data:857f0985","title":"Rosetta Spacecraft Attitude & Orbit Control System Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-aocgen-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_radiation_data_correction_data:13c40163","title":"Rosetta Spacecraft Radiation Data Correction Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-edac-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_high_gain_antenna_engineering_data:6e204e15","title":"Rosetta Spacecraft High Gain Antenna Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-hgaapm-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_inertial_measurement_package_data:46ea4b60","title":"Rosetta Spacecraft Inertial Measurement Package Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-imp-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_navigation_camera_engineering_data:872db2b4","title":"Rosetta Spacecraft Navigation Camera Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-navcam-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_orbit_control_manoeuvre_data:33349e75","title":"Rosetta Spacecraft Orbit Control Manoeuvre Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-ocmrcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_reaction_wheel_engineering_data:23dcd533","title":"Rosetta Spacecraft Reaction Wheel Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-rwl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_solar_array_amp_power_engineering_data:bb9c901f","title":"Rosetta Spacecraft Solar Array & Power Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-solararray-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_startracker_engineering_data:dfea0060","title":"Rosetta Spacecraft Startracker Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-startracker-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_spacecraft_thermal_control_system_data:c80e2e38","title":"Rosetta Spacecraft Thermal Control System Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-tcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:67p_c_g_reference_frames_and_mapping_scheme:73f46eef","title":"67P/C-G Reference Frames and Mapping Scheme","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v1.0/document/cheops_ref_frame_v1.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_shape_models_of_comet_67p_c_g_v2_0:28952592","title":"Rosetta Shape Models of Comet 67P/C-G v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_lander_ancillary_67p_data_v2_0:311a66d4","title":"Rosetta-Lander Ancillary 67P data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-multi-5-ancdr-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_midas_67p_cometary_particles_derived_data_v2_0:1b0a8f42","title":"Rosetta-Orbiter MIDAS 67P Cometary Particles Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-5-prl-to-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_alice_supplementary_documents_and_data:07cc3932","title":"Rosetta-Orbiter ALICE Supplementary Documents and Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-6-supplementary-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_giada_67p_dust_maps:134da826","title":"Rosetta-Orbiter GIADA 67P Dust Maps","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-5-67p-dust-maps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:rosetta_orbiter_virtis_derived_67p_maps:a93c0514","title":"Rosetta-Orbiter VIRTIS Derived 67P Maps","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-5-67p-maps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ro_derived:dfms_ts_abundance::1.0","title":"Rosetta ROSINA DFMS Time Series Abundances","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived:dfms_ts_abundance-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482592","keywords":["urn:nasa:pds:ro_derived:dfms_ts_abundance::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:magnetometer:d9657da5","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Sakigake"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-imf-3-rdr-halley-v1.0/catalog/imf.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sakigake/index.shtml","scraped_at":"2026-02-02T22:13:04.675424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solar_wind_experiment:3f96bf52","title":"Solar Wind Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Sakigake"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-sow-3-rdr-halley-v1.0/catalog/sow.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sakigake/index.shtml","scraped_at":"2026-02-02T22:13:04.675444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:interplanetary_magnetic_field_experiment_data:8a377bdc","title":"Interplanetary Magnetic Field Experiment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Sakigake"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-imf-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sakigake/index.shtml","scraped_at":"2026-02-02T22:13:04.675456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solar_wind_instrument_data:15155274","title":"Solar Wind Instrument Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Sakigake"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-sow-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sakigake/index.shtml","scraped_at":"2026-02-02T22:13:04.675466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:cometary_and_interstellar_dust:20e38ad6","title":"Cometary and Interstellar Dust","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-6-geometry-v1.0/catalog/src.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:cometary_and_interstellar_dust_analyzer:900f2c5f","title":"Cometary and Interstellar Dust Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-1-edf_hk-v1.0/catalog/cida.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:navigation_camera:4a884083","title":"Navigation Camera","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v2.0/catalog/navcam.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_flux_monitor:5105dc39","title":"Dust Flux Monitor","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dfmi-2-edr-wild2-v1.0/catalog/dfmi.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dynamic_science_experiment:b799425b","title":"Dynamic Science Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dynsci-2-wild2-v1.0/catalog/dynsci.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_pre_flight_navigation_camera_calibration_images_v2_0:a81be43e","title":"Stardust Pre-flight Navigation Camera Calibration Images v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-cal-nc-2-preflight-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_navcam_early_cruise_images_raw:f75915b4","title":"Stardust NAVCAM Early Cruise Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-nc-2-edr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_dfmi_early_cruise_dust_flux_data:502d2b3a","title":"Stardust DFMI Early Cruise Dust Flux Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-dfmi-2-edr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_navcam_annefrank_raw_images_v3_0:6b6707bc","title":"Stardust NAVCAM Annefrank Raw Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Annefrank"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_navcam_annefrank_calibrated_images:e5d1133a","title":"Stardust NAVCAM Annefrank Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Annefrank"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-3-rdr-annefrank-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_navcam_81p_wild_2_raw_images_v3_0:09e90aa6","title":"Stardust NAVCAM 81P/Wild 2 Raw Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_navcam_81p_wild_2_calibrated_images_v3_0:a98c249c","title":"Stardust NAVCAM 81P/Wild 2 Calibrated Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_dfmi_81p_wild_2_dust_flux_data:49bab8a0","title":"Stardust DFMI 81P/Wild 2 Dust Flux Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dfmi-2-edr-wild2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_cida_cruise_and_81p_wild_2_dust_mass_spectra:abccaed7","title":"Stardust CIDA Cruise and 81P/Wild 2 Dust Mass Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-1-edf_hk-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_dse_81p_wild_2_dynamic_science_data:944a6774","title":"Stardust DSE 81P/Wild 2 Dynamic Science Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dynsci-2-wild2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_collector_temperature_sensor_readings:a78cd21d","title":"Stardust Collector Temperature Sensor Readings","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-2-temps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_collector_plate_geometry:197561c0","title":"Stardust Collector Plate Geometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-6-geometry-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_navcam_81p_wild_2_shape_model_v2_1:7b06743a","title":"Stardust NAVCAM 81P/Wild 2 Shape Model v2.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v2.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:keck_ii_esi_images_of_81p_wild_2:4764a220","title":"Keck II ESI Images of 81P/Wild 2","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0039-2-sbn0007_keckiiesi-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_next_navcam_raw_images_of_9p_tempel_1:b3c5d3e2","title":"Stardust/NExT NAVCAM Raw Images of 9P/Tempel 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-2-next-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardustnext/index.shtml","scraped_at":"2026-02-02T22:13:05.040978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_next_navcam_calibrated_images_of_9p_tempel_1:10a70883","title":"Stardust/NExT NAVCAM Calibrated Images of 9P/Tempel 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-3-next-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardustnext/index.shtml","scraped_at":"2026-02-02T22:13:05.041000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_next_dfmi_9p_tempel_1_dust_flux_data:2d61596d","title":"Stardust/NExT DFMI 9P/Tempel 1 Dust Flux Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-dfmi-2_3-next-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardustnext/index.shtml","scraped_at":"2026-02-02T22:13:05.041023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:stardust_next_cida_9p_tempel_1_dust_mass_spectra:a37906c0","title":"Stardust/NExT CIDA 9P/Tempel 1 Dust Mass Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Tempel 1","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-2_3-next-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardustnext/index.shtml","scraped_at":"2026-02-02T22:13:05.041033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:suisei_solar_wind_experiment_data:9cd1219d","title":"Suisei Solar Wind Experiment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Suisei"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/suisei-c-esp-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/suisei/index.shtml","scraped_at":"2026-02-02T22:13:05.241660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:television_system:0d9adcee","title":"Television System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/catalog/tvs.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_spectrometer:47deb17d","title":"Infrared Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/catalog/iks.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_particle_counter_and_mass_analyzer:e936e994","title":"Dust-Particle Counter and Mass Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/catalog/ducma.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_particle_impact_plasma_detector_1:89d97106","title":"Dust-Particle Impact Plasma Detector 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/catalog/sp1.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_particle_impact_detector_2:bb342adf","title":"Dust-Particle Impact Detector 2","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/catalog/sp2.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_mass_spectrometer:9f00fc84","title":"Dust Mass Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/catalog/puma.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:plasma_energy_analyzer:69683287","title":"Plasma Energy Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/catalog/pm1.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:energetic_particle_analyzer:82b1dcbe","title":"Energetic Particle Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tnm-2-rdr-halley-v1.0/catalog/tnm.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:magnetometer:4acedfd2","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/catalog/mischa.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_television_system_raw_images:10441ce7","title":"Vega 1 Television System, Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_television_system_processed_images:7a31ef62","title":"Vega 1 Television System, Processed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_infrared_spectrometer_raw_data:7d34a25e","title":"Vega 1 Infrared Spectrometer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_infrared_spectrometer_processed_data:eb2ddd05","title":"Vega 1 Infrared Spectrometer, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_dust_particle_counter_and_mass_analyzer_results:49ec64b0","title":"Vega 1 Dust Particle Counter and Mass Analyzer Results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_dust_impact_plasma_detector_electrode_collector_data:b4a8ca5c","title":"Vega 1 Dust Impact Plasma Detector, Electrode Collector Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_dust_impact_plasma_detector_acoustic_sensor_data:8a37b9a1","title":"Vega 1 Dust Impact Plasma Detector, Acoustic Sensor Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_dust_impact_mass_analyzer_raw_data:e4a18fde","title":"Vega 1 Dust Impact Mass Analyzer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_dust_impact_mass_analyser_processed_data:9849b182","title":"Vega 1 Dust Impact Mass Analyser, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_plasma_energy_analyzer_observations:270aef79","title":"Vega 1 Plasma Energy Analyzer Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:tunde_m_energetic_particle_analyser_data:40ad63bb","title":"Tunde-M Energetic Particle Analyser Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tnm-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_fluxgate_magnetometer_original_data_for_comet_halley_and_solar_wind:8060844d","title":"Vega 1 Fluxgate Magnetometer Original Data for Comet Halley and Solar Wind","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c_sw-mischa-3-rdr-original-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_fluxgate_magnetometer_comet_observations:00564234","title":"Vega 1 Fluxgate Magnetometer Comet Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_1_fluxgate_magnetometer_observations_of_solar_wind:30fd9d98","title":"Vega 1 Fluxgate Magnetometer Observations of Solar Wind","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-sw-mischa-3-rdr-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:television_system:6c03f611","title":"Television System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/catalog/tvs.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_particle_counter_and_mass_analyzer:af7d3202","title":"Dust-Particle Counter and Mass Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/catalog/ducma.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_particle_impact_plasma_detector_1:185aafac","title":"Dust-Particle Impact Plasma Detector 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/catalog/sp1.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_particle_acoustical_impact_detector_2:6c9b6642","title":"Dust-Particle Acoustical Impact Detector 2","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/catalog/sp2.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_mass_spectrometer:d881c73c","title":"Dust Mass Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/catalog/puma.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:plasma_energy_analyzer:7249c695","title":"Plasma Energy Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/catalog/pm1.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:magnetometer:c0f89fbb","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/catalog/mischa.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_television_system_raw_images:e542845e","title":"Vega 2 Television System, Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_television_system_processed_images:fdd6520f","title":"Vega 2 Television System, Processed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_television_system_transformed_images:12344b41","title":"Vega 2 Television System, Transformed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-5-rdr-halley-transform-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_dust_particle_counter_and_mass_analyzer_results:9819ff1c","title":"Vega 2 Dust Particle Counter and Mass Analyzer Results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_dust_impact_plasma_detector_electrode_collector_data:d9baaa2d","title":"Vega 2 Dust Impact Plasma Detector, Electrode Collector Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_dust_impact_plasma_detector_acoustic_sensor_data:b16d103b","title":"Vega 2 Dust Impact Plasma Detector, Acoustic Sensor Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_dust_impact_mass_analyzer_raw_data:ed74a2c3","title":"Vega 2 Dust Impact Mass Analyzer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_dust_impact_mass_analyzer_processed_data:96e1990f","title":"Vega 2 Dust Impact Mass Analyzer, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_plasma_energy_analyzer_data:28bcc558","title":"Vega 2 Plasma Energy Analyzer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vega_2_fluxgate_magnetometer_original_data_for_comet_halley_and_solar_wind:8020efa1","title":"Vega 2 Fluxgate Magnetometer Original Data for Comet Halley and Solar Wind","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:voyager_2_uv_spectrometer_attempted_observations_of_d_shoemaker_levy_9_null_results:95a52610","title":"Voyager 2 UV Spectrometer Attempted Observations of D/Shoemaker-Levy 9 (Null Results)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vg2-j-uvs-0--sl9-null-results-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/voyager/index.shtml","scraped_at":"2026-02-02T22:13:06.046158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:hubble_space_telescope_wide_field_planetary_camera_2_images_of_d_shoemaker_levy_9_impact_and_aftermath:d10a8a1f","title":"Hubble Space Telescope Wide Field Planetary Camera 2 Images of D/Shoemaker-Levy 9 Impact and Aftermath","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["HST"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/hst-j-wfpc2-3-sl9-impact-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/hst/index.shtml","scraped_at":"2026-02-02T22:13:06.247191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:images_of_comet_9p_tempel_nbsp_1_from_1983:25545a6b","title":"Images of Comet 9P/Tempel 1 from 1983","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IRAS"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-images-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iras/index.shtml","scraped_at":"2026-02-02T22:13:06.456027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometry_of_comet_9p_tempel_nbsp_1_from_1983:32622bbb","title":"Photometry of Comet 9P/Tempel 1 from 1983","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IRAS"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iras/index.shtml","scraped_at":"2026-02-02T22:13:06.456052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:long_wavelength_prime:40d56746","title":"Long-Wavelength Prime","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwp-3-edr-iuecdb-v1.0/catalog/lwp.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.731957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:long_wavelength_redundant:f9994f1c","title":"Long-Wavelength Redundant","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwr-3-edr-iuecdb-v1.0/catalog/lwr.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.731979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:short_wavelength_prime:7146b0db","title":"Short-Wavelength Prime","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-swp-3-edr-iuecdb-v1.0/catalog/swp.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.731991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:comet_database_lwp_spectrograph_observations_surveys:cb39378d","title":"Comet Database - LWP Spectrograph Observations - (Surveys)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwp-3-edr-iuecdb-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:comet_database_lwr_spectrograph_observations_surveys:4695861e","title":"Comet Database - LWR Spectrograph Observations - (Surveys)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwr-3-edr-iuecdb-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:comet_database_swp_spectrograph_observations_surveys:17e6634e","title":"Comet Database - SWP Spectrograph Observations - (Surveys)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-swp-3-edr-iuecdb-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:international_ultraviolet_explorer_long_wavelength_prime_spectra_of_d_shoemaker_levy_9:eeb72752","title":"International Ultraviolet Explorer Long Wavelength Prime Spectra of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-lwp-3-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:international_ultraviolet_explorer_short_wavelength_prime_spectra_of_d_shoemaker_levy_9:7751c935","title":"International Ultraviolet Explorer Short Wavelength Prime Spectra of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-swp-3-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:large_angle_spectrometric_coronagraph_lasco:47323169","title":"Large Angle Spectrometric Coronagraph (LASCO)","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho:document-v1.1/overview/lasco.txt","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solar_wind_anisotropies_swan:0f8c9938","title":"Solar Wind ANisotropies (SWAN)","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho:document-v1.1/overview/swan.txt","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:soho_comet_images:3191fbca","title":"SOHO Comet Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SOHO"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-4-cometimages-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:soho_photometry_of_kreutz_family_comets:a9e2447b","title":"SOHO Photometry of Kreutz Family Comets","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SOHO"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-5-kreutzphotom-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:soho:document::v1.1","title":"SOHO Documentation Collection v1.1","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho:document-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056294","keywords":["urn:nasa:pds:soho:document::v1.1"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:soho:swan_derived::v4.0","title":"SOHO SWAN Derived Cometary Water Production Rates Collection v4.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056303","keywords":["urn:nasa:pds:soho:swan_derived::v4.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:spitzer:spitzer-spec-comet::1.0","title":"Spitzer Space Telescope Spectroscopy of Comets","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Spitzer"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer:spitzer-spec-comet-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/spitzer/index.shtml","scraped_at":"2026-02-02T22:13:07.294321","keywords":["urn:nasa:pds:spitzer:spitzer-spec-comet::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:energetic_particle_anisotropy_spectrometer:0d3231aa","title":"Energetic Particle Anisotropy Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/catalog/epas.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ion_composition_instrument:6dc53596","title":"Ion Composition Instrument","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/catalog/ici.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:vector_helium_magnetometer:2dcc30b5","title":"Vector Helium Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/catalog/mag.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:plasma_wave_spectrum_analyzer:4c5e3e4c","title":"Plasma Wave Spectrum Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/catalog/plawav.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_mapping_of_solar_wind_disturbances:b1aef50e","title":"Radio Mapping of Solar Wind Disturbances","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/catalog/radwav.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solar_wind_plasma:749989c5","title":"Solar Wind Plasma","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/catalog/swp.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ultralow_energy_charge_analyzer:bf119438","title":"Ultralow-energy charge analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/catalog/uleca.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ice_energetic_particle_anisotropy_spectrometer:93a33f8a","title":"ICE Energetic Particle Anisotropy Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ice_ion_composition_instrument:750413b8","title":"ICE Ion Composition Instrument","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ice_magnetometer:ec0a24bc","title":"ICE Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ice_plasma_wave_experiment_electronic_field_measurement:9ea6acea","title":"ICE Plasma Wave Experiment - Electronic Field Measurement","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ice_plasma_wave_experiment_magnetic_field_measurement:7a555373","title":"ICE Plasma Wave Experiment - Magnetic Field Measurement","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-msp-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ice_radio_wave_detector:dad6e9d2","title":"ICE Radio Wave Detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ice_solar_wind_plasma_experiment:3d524472","title":"ICE Solar Wind Plasma Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ice_ultra_low_energy_charge_analyzer:a5ad7811","title":"ICE Ultra-Low Energy Charge Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_hri_ir_c_ison_2012_s1_raw_spectra:31f06548","title":"EPOXI HRI-IR C/ISON (2012 S1) Raw Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Comet ISON Observing Campaign"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_hri_ir_c_ison_2012_s1_calibrated_spectra:1fa9bcb7","title":"EPOXI HRI-IR C/ISON (2012 S1) Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Comet ISON Observing Campaign"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_mri_vis_c_ison_2012_s1_raw_images:6648690b","title":"EPOXI MRI-VIS C/ISON (2012 S1) Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Comet ISON Observing Campaign"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:epoxi_mri_vis_c_ison_2012_s1_calibrated_images:a40c7f86","title":"EPOXI MRI-VIS C/ISON (2012 S1) Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Comet ISON Observing Campaign"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison::1.0","title":"Comet C/ISON (2012 S1) Ground-Based Observations Bundle","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Comet ISON Observing Campaign"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859633","keywords":["urn:nasa:pds:gbo-c2012_s1_ison::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:visual_magnitude_estimate:0286209f","title":"Visual Magnitude Estimate","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:astrometric_observations:e20c737a","title":"Astrometric Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_filter_parameters:4cea1659","title":"Infrared Filter Parameters","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_photometry:9bf0e42a","title":"Infrared Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:large_scale_images:a2fc8ebb","title":"Large-Scale Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempts_at_large_scale_imaging_that_failed:5fc947ef","title":"Attempts at large-scale imaging that failed","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:near_nucleus_imaged:136ba92a","title":"Near-Nucleus Imaged","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometric_fluxes:4bb5f59a","title":"Photometric Fluxes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometric_magnitudes:aff5916b","title":"Photometric Magnitudes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:polarimetry:cd1522bc","title":"Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_science_continuum_measurements:c0babbfd","title":"Radio Science Continuum Measurements","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_radio_continuum_measurements_that_returned_no_data:0591e106","title":"Attempted Radio Continuum Measurements that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_oh_observations:f604516a","title":"Radio OH Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_radio_oh_observations_that_returned_no_data:a2d7213c","title":"Attempted radio OH observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-n-ndr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_radio_spectral_line_observations_that_returned_no_data:2ed9acb2","title":"Attempted radio spectral line observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:raw_2_d_spectra:16ae8176","title":"Raw 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:reduced_2_d_spectra:4f178d40","title":"Reduced 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:1_d_spectra:45146bb4","title":"1-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:drawings:13d9d3f7","title":"Drawings.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdraw-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:visual_magnitude_estimates:a5a08b40","title":"Visual Magnitude Estimates","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:analog_photography:fb131833","title":"Analog Photography.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amphot-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:astrometry:c1040628","title":"Astrometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_filter_parameters:e4ea98cb","title":"Infrared Filter Parameters","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_images:b185b01e","title":"Infrared Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_ir_imaging_that_returned_no_data:1dedf50b","title":"Attempted IR Imaging that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_photometry:b9ababec","title":"Infrared Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_polarimetry:f0151cc7","title":"Infrared Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-2-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_spectra:0b23d93c","title":"Infrared Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:large_scale_images:15019919","title":"Large-Scale Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempts_at_large_scale_imaging_that_returned_no_data:249dca45","title":"Attempts at large-scale imaging that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:near_nucleus_images:12d5f4f1","title":"Near-Nucleus Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometric_fluxes:f23fcee1","title":"Photometric Fluxes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometric_magnitudes:96dea91b","title":"Photometric Magnitudes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:polarimetry:51a0a6f5","title":"Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_radio_continuum_observations_that_returned_no_data:b6254566","title":"Attempted radio continuum observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_occultation_observations:dd92ac22","title":"Radio Occultation Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_oh_observations:289e55d8","title":"Radio OH Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_radio_spectral_line_observations_that_returned_no_data:f97ee94c","title":"Attempted radio spectral line observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:1_d_spectra:fc70e5f7","title":"1-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:raw_2_d_spectra:6ad8de90","title":"Raw 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:reduced_2_d_spectra:956ac1f2","title":"Reduced 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:energetic_particle_anisotropy_spectrometer:93a33f8a","title":"Energetic Particle Anisotropy Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ion_composition_instrument:750413b8","title":"Ion Composition Instrument","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:magnetometer:ec0a24bc","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:plasma_wave_experiment_electronic_field_measurement:9ea6acea","title":"Plasma Wave Experiment - Electronic Field Measurement","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:plasma_wave_experiment_magnetic_field_measurement:7a555373","title":"Plasma Wave Experiment - Magnetic Field Measurement","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-msp-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_wave_detector:dad6e9d2","title":"Radio Wave Detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solar_wind_plasma_experiment:3d524472","title":"Solar Wind Plasma Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ultra_low_energy_charge_analyzer:a5ad7811","title":"Ultra-Low Energy Charge Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:drawings:334fcb8f","title":"Drawings.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdr-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:analog_photography:43287d06","title":"Analog Photography.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ampg-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:spectra:8b37191d","title":"Spectra.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amsp-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:visual_magnitude_estimates:703a7eb2","title":"Visual Magnitude Estimates","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:astrometry:bd2495f8","title":"Astrometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:b0838ae4","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ir_filter_response_curves:8753a6a8","title":"IR Filter Response Curves","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:f36ae929","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ir_filter_parameter_tables:4066be08","title":"IR Filter Parameter Tables","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:2f535755","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_images:3da65d49","title":"Infrared Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:d7e0452a","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_photometry:20ebac46","title":"Infrared Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:554d7ba5","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_photometry_additional_data:06479dda","title":"Infrared Photometry - Additional Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-irphot-2-rdr-halley-addenda-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_polarimetry:08ca4c15","title":"Infrared Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:ddd76426","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_spectra:192af9c9","title":"Infrared Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:0f3bd782","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_ir_spectral_observations_that_resulted_in_no_data:d7d3b31a","title":"Attempted IR Spectral Observations that resulted in no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:large_scale_images:0b076b12","title":"Large-Scale Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:39bf2e63","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_large_scale_imaging_that_returned_no_results:b5eb6aef","title":"Attempted large-scale imaging that returned no results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:eta_aquarids_radar_meteor_counts:f096b0c1","title":"Eta Aquarids - Radar Meteor Counts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-eta-aquar-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:eta_aquarids_visual_meteor_counts:d41e0931","title":"Eta Aquarids - Visual Meteor Counts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-eta-aquar-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:orionids_radar_meteor_counts:80815f74","title":"Orionids - Radar Meteor Counts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-orionid-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:orionids_visual_meteor_counts:0059f85a","title":"Orionids - Visual Meteor Counts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-orionid-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:international_halley_watch_near_nucleus_images_of_comet_halley_v2_0:f1883287","title":"International Halley Watch Near Nucleus Images of Comet Halley v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometric_fluxes:772cbf85","title":"Photometric Fluxes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:85491733","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometric_magnitudes:24292d88","title":"Photometric Magnitudes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:07f98147","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:polarimetry:ba088d73","title":"Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:d573edda","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:polarimetry_stokes_parameters:2ee43ce1","title":"Polarimetry - Stokes Parameters","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:version_2_0:a5bdac1d","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_continuum_measurements:c703777f","title":"Radio Continuum Measurements","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_radio_continuum_measurements_that_produced_no_results:f47f72dd","title":"Attempted radio continuum measurements that produced no results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_occultation_observations:d9a0dda6","title":"Radio Occultation Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:oh_observations:2949452c","title":"OH Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:arecibo_radar_observations:a829b09a","title":"Arecibo Radar Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsrdr-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_spectral_line_observations:bbe4b71f","title":"Radio Spectral Line Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:attempted_radio_spectral_line_observations_that_returned_no_data:d759133f","title":"Attempted radio spectral line observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:u_v_observations:bbdb44c6","title":"U-V Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsuv-2-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:raw_2_d_spectra:82f8285d","title":"Raw 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:calibrate_2_d_spectra:f769a95b","title":"Calibrate 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-didr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:calibrated_1_d_spectra:5aefdfe7","title":"Calibrated 1-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_detector:24b6a7dc","title":"Dust Impact Detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_science_experiment:288163e1","title":"Radio Science Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:radio_science_experiment_additional_observations:4efffa66","title":"Radio Science Experiment - Additional Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-1-edr-halley-addenda-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:halley_multi_colour_camera_images:eed9d5f9","title":"Halley Multi-Colour Camera Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ion_mass_spectrometer_high_energy_range_observations:d8ea02b3","title":"Ion Mass Spectrometer, High Energy Range Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-hers-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:ion_mass_spectrometer_high_intensity_spectrometer_observations:dac06871","title":"Ion Mass Spectrometer, High Intensity Spectrometer Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:johnstone_3_dimensional_particle_analyzer_data_merged_with_magnetometer_data:2b01b277","title":"Johnstone 3-Dimensional Particle Analyzer Data Merged with Magnetometer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-4-ddr-halley-merge-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:magnetometer_data:d6682bd0","title":"Magnetometer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-halley-8sec-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photopolarimetry_from_the_optical_probe_experiment:e9f25631","title":"Photopolarimetry from the Optical Probe Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:particle_impact_analyzer_data:fdb87277","title":"Particle Impact Analyzer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solar_wind_experiment_data:9cd1219d","title":"Solar Wind Experiment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/suisei-c-esp-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_particle_counter_and_mass_analyzer_results:49ec64b0","title":"Dust Particle Counter and Mass Analyzer Results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_spectrometer_raw_data:7d34a25e","title":"Infrared Spectrometer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_spectrometer_processed_data:eb2ddd05","title":"Infrared Spectrometer, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:fluxgate_magnetometer_comet_observations:00564234","title":"Fluxgate Magnetometer Comet Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:fluxgate_magnetometer_comet_and_solar_wind_data_in_its_original_form:8060844d","title":"Fluxgate Magnetometer Comet and Solar Wind Data, in its original form","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c_sw-mischa-3-rdr-original-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:plasma_energy_analyzer_observations:270aef79","title":"Plasma Energy Analyzer Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_mass_analyzer_raw_data:e4a18fde","title":"Dust Impact Mass Analyzer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_mass_analyser_processed_data:9849b182","title":"Dust Impact Mass Analyser, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_plasma_detector_electrode_collector_data:b4a8ca5c","title":"Dust Impact Plasma Detector, Electrode Collector Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_plasma_detector_acoustic_sensor_data:8a37b9a1","title":"Dust Impact Plasma Detector, Acoustic Sensor Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:television_system_raw_images:10441ce7","title":"Television System, Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:television_system_processed_images:7a31ef62","title":"Television System, Processed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:fluxgate_magnetometer_comet_and_solar_wind_data_in_its_original_form:8020efa1","title":"Fluxgate Magnetometer Comet and Solar Wind Data, in its original form","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_particle_counter_and_mass_analyzer_results:9819ff1c","title":"Dust Particle Counter and Mass Analyzer Results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:plasma_energy_analyzer_data:28bcc558","title":"Plasma Energy Analyzer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_mass_analyzer_raw_data:ed74a2c3","title":"Dust Impact Mass Analyzer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_mass_analyzer_processed_data:96e1990f","title":"Dust Impact Mass Analyzer, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_plasma_detector_electrode_collector_data:d9baaa2d","title":"Dust Impact Plasma Detector, Electrode Collector Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:dust_impact_plasma_detector_acoustic_sensor_data:b16d103b","title":"Dust Impact Plasma Detector, Acoustic Sensor Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:television_system_raw_images:e542845e","title":"Television System, Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:television_system_processed_images:fdd6520f","title":"Television System, Processed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:television_system_transformed_images:12344b41","title":"Television System, Transformed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-5-rdr-halley-transform-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:halley_outburst_images:e5c782f1","title":"Halley Outburst Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-ct-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:halley_outburst_images:10f4095e","title":"Halley Outburst Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-eso-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:halley_outburst_images:3bb86a02","title":"Halley Outburst Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-uh-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:global_imaging_campaign:b4678aa7","title":"Global Imaging Campaign","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-j_c-hsccd-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photometry_of_io_and_europa_during_sl9_flashes:c221fd3d","title":"Photometry of Io and Europa During SL9 Flashes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-j_sa-hsotp-2-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:eso_multi_mode_instrument_emmi:06ec7c98","title":"ESO Multi-Mode Instrument (EMMI)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-c-emmi-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_spectrometer:5370c5d7","title":"Infrared Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-j-irspec-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:superb_seeing_imager_susi:5cae7f22","title":"Superb Seeing Imager (SUSI)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-j-susi-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:images_of_the_fragments_prior_to_impact_and_of_the_jovian_rings_post_impact:43c7611c","title":"images of the fragments prior to impact and of the Jovian rings post-impact","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/irtf-j_c-nsfcam-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:images_of_the_impacts:edf908ef","title":"images of the impacts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:observations_of_standard_stars:fb442625","title":"observations of standard stars","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-stds-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:infrared_images_obtained_with_the_okayama_astrophysical_system_for_infrared_imaging_and_spectroscopy_oasis:2493e093","title":"infrared images obtained with the Okayama Astrophysical System for Infrared Imaging and Spectroscopy (OASIS)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/oao-j-oasis-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:images_of_jupiter_during_the_shoemaker_levy_9_fragment_impacts:d10a8a1f","title":"images of Jupiter during the Shoemaker-Levy 9 fragment impacts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/hst-j-wfpc2-3-sl9-impact-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:long_wavelength_prime_detector:eeb72752","title":"Long-Wavelength Prime detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-lwp-3-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:short_wavelength_prime_detector:7751c935","title":"Short-Wavelength Prime detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-swp-3-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:near_infrared_mapping_spectrometer_data_tables:3ecd5e0d","title":"Near Infrared Mapping Spectrometer data tables","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:photopolarimeter_radiometer_time_series_data:302fb51d","title":"Photopolarimeter Radiometer time series data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:solid_state_imaging_camera_raw_images:c4f5b582","title":"Solid State Imaging camera (raw) images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:reduced:7cd72ac6","title":"Reduced","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-3-rdr-sl9-g-fragment-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"sbn:voyager_2_attempted_ultraviolet_spectrometer_observations:95a52610","title":"Voyager 2 attempted Ultraviolet Spectrometer observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vg2-j-uvs-0--sl9-null-results-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet::4.0","title":"Comet Data Compilations from Published Sources","description":"The collections in this archive contain results that have been reported in the literature,\n or in some cases made available by private communication, for various comet properties.\n Individual collections focus on one or several closely related properties or targets of\n high interest.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:13.599287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:halebopp::1.0","title":"Hale-Bopp Visual Lightcurve","description":"This dataset contains visual magnitudes of comet C/1995 O1 (Hale-Bopp) that were\nobtained from the International Comet Quarterly and processed to provide a secular\nlightcurve from -7 au (pre-perihelion) to +8 au (post-perihelion). The original\napparent magnitudes from 17 observers were corrected for geocentric distance and\nphase angle, and then combined in a systematic way that yielded a self-consistent\nconsensus fit. In analyzing visual data from multiple observers, the questions\ninevitably arise of which data to reject, and under what justification, and whether\ncombining data from observers, each with their own systematic errors, leads to a\nbiased result. Without instrumental calibration, there is no certain answer to these\nquestions, and such calibration is not available for the observations discussed here.\nWe estimated the shifts with a self-consistent statistical approach, leading to a\nsharper light curve and improving the precision of the measured slopes. The dataset\nincludes the original apparent magnitudes, those corrected for geocentric distance\nand phase angle, and the final shifted and weighted values. The final secular\nlightcurve is the best produced to date for comet Hale-Bopp.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/1995 O1 (HALE-BOPP)"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1995-07-24","stop_date":"1999-09-23","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:14.077446","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:lightcurves::1.0","title":"Survey of Comet Lightcurves (PDS4 Format)","description":"This is a dataset that compiles reported observations of brightness\n\t\t\t\tchanges in comets from various papers to produce lightcurves.\n\t\t\t\tSpecifically, the data were based on references in Samarasinha et al.\n\t\t\t\t(2004), i.e. they are those lightcurves which were used to find the\n\t\t\t\trotational properties of comet nuclei (periods, rotation vector\n\t\t\t\tcoordinates, spin mode, etc.) reported by Samarasinha et al. (2004).\n\t\t\t\t\n\t\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\t\tEAR-C-COMPIL-5-LIGHTCURVES-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1957-07-28","stop_date":"1957-07-28","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:14.403688","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:nuc_properties::1.0","title":"Properties of Comet Nuclei (PDS4 Format)","description":"This collection contains size, shape, albedo and color data for\n\t\t\t\tvarious comets collected from the literature.\n\t\t\t\t\n\t\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\t\tEAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0, Properties of Comet Nuclei.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2010-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:14.805140","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:nuc_rotation::1.0","title":"Rotation of Comet Nuclei: Table 1 (PDS4 Format)","description":"This collection presents Table 1 of Samarasinha, et al. (2004):\n\t\t\t\t'Information on spin states of specific comets', as published\n\t\t\t\tin 'Comets II' (Festou, Keller and Weaver, eds.).\n\t\t\t\t\n\t\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\t\tand EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0, Rotation of Comet\n\t\t\t\tNuclei: Table 1.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:15.207340","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:phys_char::1.0","title":"Physical Charecteristics of Comets (PDS4 Format)","description":"This dataset is a compilation of observational measurements on comet\n morphology and magnitude covering just over a thousand apparitions of\n various comets from -466 to 1975.\n\t\t\t\t\n\t\t\t\tThese data were migrated from the PDS3 dataset EAR-C-5-DDR-PCC-V1.0.\n\t\t\t\tFor migration, the data files were left untouched and the information\n\t\t\t\tin the PDS3 labels was translated into PDS4 format and augmented with\n\t\t\t\tadditional metadata; the reference list file was converted to a\n\t\t\t\tdocument product; and the PDS3 data set catalog file was edited and\n\t\t\t\tupdated to create the description document.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:15.682162","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:polarimetry::1.0","title":"Compilation of Comet Polarimetry from Published and Unpublished Sources","description":"This collection presents comet polarimetry results collected and\n tabulated from both published literature and unpublished sources.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1881-06-29","stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:16.018803","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:unid-emis::1.0","title":"Catalog of Unidentified Cometary Emission Lines","description":"This data set contains tables of unidentified spectral emission lines and\n other ancillary information in a variety of comet observations. All these\n originally unidentified lines have been taken from the reference papers\n without adding or removing lines or using selection criteria.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1943-02-24","stop_date":"2004-04-24","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:16.418836","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart::1.0","title":"DART Spacecraft Archive Bundle","description":"The DART Spacecraft Bundle contains raw and calibrated data products\n taken from the DRACO imager on board the DART spacecraft.\n The bundle also includes documentation that describes the data products for\n each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Draco","DRACO"],"instrument_hosts":["DART","Dart"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/bundle_dart_spacecraft.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:18.311396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_dracocal::1.0","title":"Calibrated Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This data collection contains calibrated images from the Didymos \n Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown \n aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART) mission. \n These images have been calibrated to either radiance or reflectance, depending on \n the mission phase, and have been put into a simple 2D fits format. Ancillary files \n used in the calibration process are included in the data set as either 2D fits \n format or ASCII fixed-width table format. The DART mission was a planetary defense mission\n designed to test and measure the deflection caused by a kinetic impactor \n (the spacecraft) on the orbit of Dimorphos asteroid around its primary, (65803) Didymos.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":[],"start_date":"2021-01-01","stop_date":"2022-04-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/data_dracocal/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/data_dracocal/collection_data_dracocal.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:18.623945","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_dracoraw::1.0","title":"Raw Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This data collection contains the raw images returned by the Didymos\n Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown\n aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART)\n mission. These images have been put into a simple 2D FITS format ready for calibration\n and analysis. The DART mission was a planetary defense mission designed to test and\n measure the deflection caused by a kinetic impactor (the spacecraft) on the orbit of\n Dimorphos asteroid around its primary, (65803) Didymos.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":[],"start_date":"2021-12-02","stop_date":"2022-04-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/data_dracoraw/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/data_dracoraw/collection_data_dracoraw.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:19.035763","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel:data_derived_didymos_model_v003::1.0","title":"Derived data products for DART shapemodel: didymos_model_v003","description":"This data collection contains a set of digital\n terrain maps and ancillary information (slope, magnitude of gravity, etc) for\n didymos_model_v003. It is the final model of Didymos produced by the DART project using\n both LICIACube and DART images. It has an accuracy uncertainty of ~14 m in x, y, and z,\n with ~ 3.3% volume uncertainty. See SIS for details on ancillary information\n provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_didymos_model_v003/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_didymos_model_v003/collection_data_derived_didymos_model_v003.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:27.898955","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v003::1.0","title":"Derived data products for DART shapemodel: dimorphos_model_v003","description":"This data collection contains a set of digital terrain maps and\n ancillary information (slope, magnitude of gravity, etc) for dimorphos_model_v003.\n To learn about the model including its quality, see 'Daly et al., 2023.\n \"Successful Kinetic Impact into an Asteroid for Planetary Defense.\" Nature 1–3.\n https://doi.org/10.1038/s41586-023-05810-5.\" See SIS for details on ancillary\n information provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["Dimorphos","(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_dimorphos_model_v003/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_dimorphos_model_v003/collection_data_derived_dimorphos_model_v003.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:28.280316","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v004::1.0","title":"Derived data products for DART shapemodel: dimorphos_model_v004","description":"This data collection contains a set of digital terrain maps and ancillary\n information (slope, magnitude of gravity, etc) for dimorphos_model_v004. This is the\n final pre-impact model of the asteroid Dimorphos produced by the DART project. It has an\n accuracy uncertainty of 1 m in x, 4 m in y, and 1 m in z, with ~ 5% volume uncertainty\n and shows significant improvement relative to the earlier dimorphos_model_v003. See SIS\n for details on ancillary information provided, including references on how the ancillary\n information is calculated.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["Dimorphos","(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_dimorphos_model_v004/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_dimorphos_model_v004/collection_data_derived_dimorphos_model_v004.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:28.752496","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs::1.0","title":"DART Telescopic Observation Archive","description":"The DART Telescopic Observation Bundle contains raw, calibrated,\n and derived data products taken from several ground observations in support\n of the DART mission. The bundle also includes documentation organized\n by ground observatory that describes the observatory data collections.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:29.885378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtcal::1.0","title":"DART Lowell Discovery Telescope (LDT) Calibrated Data Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration\n images with the Lowell Discovery Telescope (LDT) through a VR filter. These \n images were taken in order to determine the orbit period of Dimorphos, the \n satellite of Didymos. This collection consists of the Lowell calibrated images,\n the supporting calibration images: master bias frame images, and master flat field images,\n and the reference star PNGs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:30.382877","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtddp::1.0","title":"DART Lowell Discovery Telescope (LDT) Derived Data Product Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration\n images with the Lowell Discovery Telescope (LDT) through a VR filter. These \n images were taken in order to determine the orbit period of Dimorphos, the \n satellite of Didymos. This collection consists of the photometry summary tables,\n which are a PDS4 derived product.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:30.691596","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtraw::1.0","title":"DART Lowell Discovery Telescope (LDT) Raw Data Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration\n images with the Lowell Discovery Telescope (LDT) through a VR filter. These \n images were taken in order to determine the orbit period of Dimorphos, the \n satellite of Didymos. This collection consists of the Lowell Raw Images.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:31.101088","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:epoxi_mri::1.0","title":"EPOXI MRI Observations Bundle","description":"This bundle contains observations collected with the MRI instrument on the Deep Impact Flyby Spacecraft during the EPOXI mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Epoxi","EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:44.528530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbl-classe::1.0","title":"Laboratory Experiments at the Center for Laboratory Astrophysics and Space Science Experiments (CLASSE)","description":"This bundle contains collections of data from instrument suites at the\n Southwest Research Institute (SwRI) Center for Laboratory Astrophysics and Space\n Science Experiments (CLASSE).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":["CLASSE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:45.528629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbl-classe:charon_exosphere::1.0","title":"Center for Laboratory Astrophysics and Space Science Experiments (CLASSE) Charon\n Exospheric Simulation Data","description":"This dataset includes exospheric simulations and laboratory data relevant to the\n Charon red polar region. The dataset provides predictions for methane accretion\n relative to Lyman-Alpha flux at Charon's winter polar region and the photolytic\n production of higher order hydrocarbons. We also provide infrared spectra of\n photolyzed films under conditions found at Charon's polar (high phi) and\n mid-latitude (low phi) regions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Charon Laboratory Analog"],"instruments":["Mordor (Ultra-high Vacuum) UHV System"],"instrument_hosts":["CLASSE"],"data_types":[],"start_date":"2022-02-15","stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/charon_exosphere/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/charon_exosphere/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:45.874230","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:feb2013_hfosc_fosc::1.0","title":"Comet ISON February 2013 HFOSC and FOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken in February 2013.\n\t\t\tImaging data were acquired on February 19, 21 and 22 in R and I\n\t\t\tBessel bands using the Himalayan Faint Object Spectrograph and Camera\n\t\t\t(HFOSC) mounted on 2-m Himalayan Chandra Telescope (HCT), Indian\n\t\t\tAstrophysical Observatory (IAO), Hanle, Leh, of the Indian Institute\n\t\t\tof Astrophysics (IIA). Spectroscopic data were taken on February 09\n\t\t\tusing the Faint Object Spectrograph and Camera (FOSC) mounted on the\n\t\t\t40-inch telescope (T40) of the Wise Observatory of the Tel-Aviv\n\t\t\tUniversity, Israel. Spectroscopic data provides coverage from 380 to\n\t\t\t730 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)","Faint Object Spectrographic Camera"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:46.882505","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:hfosc_solar-analog::1.0","title":"Comet ISON 2014 Solar Analog Spectroscopy Collection","description":"This dataset contains raw, processed and derived spectroscopic data of the solar analog star HD195034 taken on May 31, 2014, using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectroscopic data provides coverage from 380 to 830 nm. The manual of the HFOSC instrument is included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["HD 195034"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:47.282037","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:jan2013_hfosc::1.0","title":"Comet ISON January 2013 HFOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken on January 22,\n\t\t\t2013, using the Himalayan Faint Object Spectrograph and Camera\n\t\t\t(HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian\n\t\t\tAstrophysical Observatory (IAO) of the Indian Institute of\n\t\t\tAstrophysics (IIA), located at 4500 m above sea level, Hanle, Leh,\n\t\t\tLadakh. Photometric data were taken in V, R and I Bessel bands, and\n\t\t\timages were aligned. Spectroscopic data provides coverage from 380\n\t\t\tto 830 nm. The manual of the HFOSC instrument is included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:47.683693","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:may2013_hfosc_omr::1.0","title":"Comet ISON May 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken in May 2013.\n\t\t\tPhotometric data was obtained on May 01 and 04 in V and R Bessel\n\t\t\tbands using the Himalayan Faint Object Spectrograph and Camera\n\t\t\t(HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical\n\t\t\tObservatory (IAO) of the Indian Institute of Astrophysics (IIA),\n\t\t\tlocated at 4500 m above sea level, Hanle, Leh, Ladakh. Spectra were\n\t\t\ttaken using the HFOSC instrument on May 01 and 15; and on May 02\n\t\t\tusing the medium-resolution spectrograph from Optomechanics Research\n\t\t\t(OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu\n\t\t\tBappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu,\n\t\t\tIndia. Spectroscopic data provides coverage from 380 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)","OMR Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:48.151731","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:nov2013_hfosc_omr::1.0","title":"Comet ISON November 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON), taken in November\n\t\t\t2013. Two images of the comet were obtained on November 10 in R\n\t\t\tBessel band using the Himalayan Faint Object Spectrograph and Camera\n\t\t\t(HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical\n\t\t\tObservatory (IAO) of the Indian Institute of Astrophysics (IIA),\n\t\t\tlocated at 4500 m above sea level, Hanle, Leh, Ladakh. Comet spectra\n\t\t\twere taken on five dates: November 08, 09, 11, 12 and 13, using the\n\t\t\tmedium-resolution spectrograph from Optomechanics Research (OMR)\n\t\t\tmounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu\n\t\t\tObservatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India.\n\t\t\tSpectroscopic data provides coverage from 400 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)","OMR Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:48.481007","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:oct2013_hfosc_omr::1.0","title":"Comet ISON October 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken in October 2013.\n\t\t\tPhotometric data was obtained on October 01 in B and R Bessel bands\n\t\t\tusing the Himalayan Faint Object Spectrograph and Camera (HFOSC)\n\t\t\tmounted on the 2.0-m HCT of the Indian Astrophysical Observatory\n\t\t\t(IAO) of the Indian Institute of Astrophysics (IIA), located at\n\t\t\t4500 m above sea level, Hanle, Leh, Ladakh. Spectra were taken on\n\t\t\tOctober 01 using the HFOSC instrument; and on October 17 using the\n\t\t\tmedium-resolution spectrograph from Optomechanics Research (OMR)\n\t\t\tmounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu\n\t\t\tObservatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India.\n\t\t\tSpectroscopic data provides coverage from 380 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)","OMR Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:48.889511","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:sept2013_hfosc::1.0","title":"Comet ISON September 2013 HFOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken in September 2013\n\t\t\tusing the Himalayan Faint Object Spectrograph and Camera (HFOSC)\n\t\t\tmounted on the 2.0-m HCT of the Indian Astrophysical Observatory\n\t\t\t(IAO) of the Indian Institute of Astrophysics (IIA), located at 4500\n\t\t\tm above sea level, Hanle, Leh, Ladakh, India. Photometric data was\n\t\t\tobtained on September 08 in I Bessel band. Spectroscopic data was\n\t\t\tobtained on September 29 and provides coverage from 380 to 730 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:49.288038","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-ctio::1.0","title":"Groundbased Observations at Cerro Tololo Inter-American Observatory","description":"This bundle collects data taken at Cerro Tololo Inter-American Observatory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["19P Borrelly","19P/1904 Y2 (Borrelly 1)"],"instruments":["Cfccd","Cassegrain Focus Direct Image CCD Camera"],"instrument_hosts":[],"data_types":[],"start_date":"2000-07-28","stop_date":"2000-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:51.114792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-irtf::2.0","title":"Groundbased Observations at the NASA Infrared Telescope Facility (IRTF)","description":"This bundle collects data taken at IRTF and\n\t\t\tassociated document files.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":["9P Tempel 1","9P/1867 G1 (Tempel 1)"],"instruments":["Irtf3M0","Mirsi","SpeX","Mid-Infrared Spectrometer and Imager"],"instrument_hosts":[],"data_types":[],"start_date":"2005-06-24","stop_date":"2005-07-18","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:52.111489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno::4.0","title":"Groundbased Observations at Kitt Peak National Observatory (KPNO)","description":"This bundle collects data taken at Kitt Peak National\n\t\t\tObservatory and associated document files.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":["C1996 B2 Hyakutake","9P Tempel 1","19P Borrelly","C/1996 B2 (Hyakutake)","9P/1867 G1 (Tempel 1)","19P/1904 Y2 (Borrelly 1)"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1996-03-26","stop_date":"2005-07-09","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:53.720605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:hyakutake_spectra::1.0","title":"Spectra of C/1996 B2 (Hyakutake) for Multiple Offsets from Photocenter","description":"High resolution spectra of comet Hyakutake obtained at Kitt \n\t\t\t\tPeak National Observatory on the day of closest approach, \n\t\t\t\t26 March 1996, with the echelle spectrograph on the 4m Mayall \n\t\t\t\tTelescope. There are spectra for offsets of 0, 2, 7, and 10 \n\t\t\t\tarcsec sunward from the photocenter. The wavelength ranges \n\t\t\t\tfrom 3040-4500 Angstroms.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":["C/1996 B2 (Hyakutake)"],"instruments":["Echelle Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":"1996-03-26","stop_date":"1996-03-26","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:54.120156","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald::3.0","title":"Groundbased Observations at McDonald Observatory","description":"This bundle collects data taken at McDonald Observatory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None","No Specific Investigation"],"targets":["9P Tempel 1","19P Borrelly","Multiple Comets","9P/1867 G1 (Tempel 1)","19P/1904 Y2 (Borrelly 1)"],"instruments":["Image Dissector Scanner","Large Cassegrain Spectrograph","Imaging Grism Instrument"],"instrument_hosts":[],"data_types":[],"start_date":"1981-01-03","stop_date":"1995-10-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:57.330030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:19p_col_density::1.0","title":"McDonald Observatory Column Density Observations of 19P/Borrelly (PDS4 Format)","description":"This data set includes the raw column densities of several gas\n\t\t\tspecies observed in the spectra of comet Borrelly, as a function\n\t\t\tof position in the coma. All measurements were made with the\n\t\t\t2.7-m Harlan J Smith Telescope at McDonald Observatory. During\n\t\t\tthe 1981 and 1987-1988 apparitions, the data were obtained with\n\t\t\tthe Intensified Dissector Scanner (IDS), and during the 1994\n\t\t\tapparition, the data were obtained with the Large Cassegrain\n\t\t\tSpectrograph (LCS).\n\t\t\t\n\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\tEAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["19P Borrelly","19P/1904 Y2 (Borrelly 1)"],"instruments":["Image Dissector Scanner","Large Cassegrain Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":"1981-01-03","stop_date":"1994-12-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:57.736755","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:devico_atlas::1.0","title":"High Spectral Resolution Atlas of Comet 122P/deVico (PDS4 Format)","description":"This collection presents an atlas of 12,219 identified and 4,055\n\t\t\tunidentified spectral lines from high resolution spectra of comet\n\t\t\t122P/deVico. The spectra were obtained at the McDonald\n\t\t\tObservatory using the 2D Coude cross-dispersed echelle spectrograph\n\t\t\t(CS2) at the Coude f/32.5 focus of the 2.7m Harlan J. Smith telescope.\n\t\t\t\n\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\tEAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["122P/1846 D1 (de Vico 1)"],"instruments":["Image Dissector Scanner","Large Cassegrain Spectrograph","Imaging Grism Instrument"],"instrument_hosts":[],"data_types":[],"start_date":"1995-10-03","stop_date":"1995-10-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:58.165252","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:faint_comet_survey::1.0","title":"McDonald Observatory Faint Comet Spectro-Photometric Survey (PDS4 Format)","description":"This study presents spectral data from 152 observations\n\t\t\tof 17 comets obtained using an Intensified Dissector Scanner\n\t\t\tspectrograph at the McDonald Observatory.\n\t\t\t\n\t\t\tA full description of these data and the reduction process, along\n\t\t\twith Haser model production rates can be found in Cochran et al. (1992).\n\t\t\t\n\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\tEAR-C-MCDIDS-3-RDR-MCDNLD-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":["Image Dissector Scanner"],"instrument_hosts":[],"data_types":[],"start_date":"1981-08-25","stop_date":"1989-05-08","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:58.635160","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:liciacube::1.0","title":"Light Italian Cubesat for Imaging of Asteroids (LICIACube) Spacecraft Archive Bundle","description":"Light Italian Cubesat for Imaging of Asteroids (LICIACube) Spacecraft \n Bundle. This bundle contains all the operational products generated by both the\n Liciacube Explorer Imaging for Asteroid (LEIA) and Liciacube Unit Key Explorer (LUKE) instruments\n together with Radio Science. The bundle also includes documentation that describes the \n data products for each data collection. The LICIACube Science Operations Center located at the Space Science\n Data Center of the Italians Space Agency (SSDC-ASI) produced these data products in support of the DART mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["Dimorphos","(65803) Didymos I (Dimorphos)"],"instruments":["Leia","Luke","LEIA","LUKE"],"instrument_hosts":["LICIACube","Liciacube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube-v1.0/bundle_liciacube_spacecraft.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:00.890245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.leisa::1.0","title":"Lucy L'Ralph LEISA Bundle","description":"This bundle collects all the operational data products produced by the Lucy Ralph instrument's Linear Etalon Imaging Spectral Array.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Leisa","Lucy Ralph Linear Etalon Imaging Spectral Array (LEISA)"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"2020-02-04","stop_date":"2024-05-29","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:04.749294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.leisa:calibration::1.0","title":"Lucy L'Ralph LEISA Calibration Collection","description":"This collection contains products used in the calibration of data from Lucy's L'Ralph LEISA instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":["Lucy Ralph Linear Etalon Imaging Spectral Array (LEISA)"],"instrument_hosts":["Lucy Spacecraft"],"data_types":[],"start_date":"2020-02-04","stop_date":"2024-05-29","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa-v1.0/calibration/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa-v1.0/calibration/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:05.141261","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri::1.0","title":"Lucy Mission L'LORRI Instrument Bundle","description":"This bundle collects all the operational data products produced by the Lucy LOng Range Reconnaissance Imager.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy","Lucy Mission"],"targets":["65803 Didymos","(65803) Didymos"],"instruments":["Llorri","Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy","Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:10.366679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:calibration::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Calibration Data","description":"Calibration data for the Lucy LOng Range Reconnaissance Imager\n (L'LORRI) data archive. The calibrations include bias, flat\n field, and time corrections.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy","Lucy Mission"],"targets":["65803 Didymos","(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/calibration/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/calibration/collection_calibration_v1.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:10.779982","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Partially Processed Data for the Didymos Observation Data\n Archive","description":"This data collection contains partially processed images for the\n Lucy LOng Range Reconnaissance Imager (L'LORRI) Didymos/Double\n Asteroid Redirection Test (DART) data archive. The Lucy team\n found that the Lucy spacecraft and the L'LORRI instrument would\n be able to image the DART impact experiment on the Didymos\n system. The Lucy spacecraft observed the DART mission impact on\n 2022 September 26 with the L'LORRI instrument for about 36 hours\n surrounding the time of impact, resulting in 1549 observational\n products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy","Lucy Mission"],"targets":["65803 Didymos","(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/data_didymos_partially_processed/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/data_didymos_partially_processed/collection_data_didymos_partially_processed_v1.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:11.271353","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_didymos_raw::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Raw Data for the Didymos Observation Data Archive","description":"This data collection contains raw images for the Lucy LOng Range\n Reconnaissance Imager (L'LORRI) Didymos/Double Asteroid\n Redirection Test (DART) data archive. The Lucy team found that\n the Lucy spacecraft and the L'LORRI instrument would be able to\n image the DART impact experiment on the Didymos system. The Lucy\n spacecraft observed the DART mission impact on 2022 September 26\n with the L'LORRI instrument for about 36 hours surrounding the\n time of impact, resulting in 1549 observational products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy","Lucy Mission"],"targets":["65803 Didymos","(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/data_didymos_raw/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/data_didymos_raw/collection_data_didymos_raw_v1.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:11.579488","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ltes::1.0","title":"Lucy L'TES Bundle","description":"This bundle collects all the operational data products produced by the Lucy Thermal Emission Spectrometer.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Ltes","Lucy Thermal Emission Spectrometer (L'TES)"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"2023-10-29","stop_date":"2023-11-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:20.431276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mission::1.0","title":"Lucy Mission Bundle","description":"This bundle collects products relevant to the Lucy mission that are not specific to any given instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mission-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mission-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:26.287350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mvic::1.0","title":"Lucy L'Ralph MVIC Bundle","description":"This bundle collects all the operational data products produced by the Lucy Ralph instrument's Multispectral Visible Imaging Camera.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Mvic","Lucy Ralph Multispectral Visible Imaging Camera (MVIC)"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"2023-11-01","stop_date":"2023-11-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:27.520630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.mvic:calibration::1.0","title":"Lucy L'Ralph MVIC Calibration Collection","description":"This collection contains products used in the calibration of data from Lucy's L'Ralph MVIC instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":["Lucy Ralph Multispectral Visible Imaging Camera (MVIC)"],"instrument_hosts":["Lucy Spacecraft"],"data_types":[],"start_date":"2023-11-01","stop_date":"2023-11-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic-v1.0/calibration/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic-v1.0/calibration/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:27.897687","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.rss::1.0","title":"Lucy Radio Science Bundle","description":"This bundle collects products relating to and produced by the Radio Science Subsystem on the Lucy spacecraft.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Rss","Lucy Radio Science"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:33.108036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.ttcam::1.0","title":"Lucy TTCam Bundle","description":"This bundle collects all the operational data products produced by the Lucy Terminal Tracking Camera(s).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Ttcam","Lucy Terminal Tracking Cameras (TTCam)"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"1970-01-01","stop_date":"2023-11-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:40.627401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived::1.0","title":"New Horizons Derived Data Bundle","description":"This bundle contains collections of products derived from\n\t\tarchival New Horizons data that are separate from deliveries by the New\n\t\tHorizons team.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kem1","New Horizons Kuiper Belt Extended Mission (kem1)"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:47.447904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ro_derived::1.0","title":"Rosetta Derived Data Bundle","description":"This bundle contains collections of products derived from\n\t\tarchival Rosetta data that are separate from deliveries by the Rosetta team.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["International Rosetta Mission","INTERNATIONAL ROSETTA MISSION"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:15:07.493243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:soho::1.0","title":"Comet Data from the Solar and Heliospheric Observatory (SOHO)","description":"This archive bundle contains collections of comet observations and derived results \n from the SOHO data archives, with related documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Solar And Heliospheric Observatory","SOHO"],"targets":[],"instruments":[],"instrument_hosts":["Soho"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:15:08.499868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:soho:swan_derived::1.0","title":"SOHO SWAN Derived Cometary Water Production Rates Collection","description":"This data collection contains derived water production\n\t\trates for numerous comets observed by the SOHO SWAN\n\t\tinstrument from 1996 to 2012. Multiple measurements\n\t\twere made for each comet through a single perihelion\n\t\tpassage and some comets were observed over multiple\n\t\tepochs. The production rates were derived by modeling\n\t\tthe observed distribution of atomic hydrogen in the\n\t\tcomae of the comets.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Soho","SOHO"],"targets":["Multiple Comets"],"instruments":["SWAN"],"instrument_hosts":["Soho"],"data_types":[],"start_date":"1996-01-22","stop_date":"2013-11-24","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho-v1.0/swan_derived/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho-v1.0/swan_derived/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:15:08.942454","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:spitzer::1.0","title":"Data from the Spitzer Space Telescope","description":"This archive bundle contains collections of observations and derived results \n from the Spitzer Heritage Archive, with related documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Spitzer","Spitzer Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":["Spitzer"],"data_types":[],"start_date":"2003-11-23","stop_date":"2009-04-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:15:12.919977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/utils/pds_catalog_client.py b/akd_ext/tools/pds/utils/pds_catalog_client.py index 2d46f81..b67fc13 100644 --- a/akd_ext/tools/pds/utils/pds_catalog_client.py +++ b/akd_ext/tools/pds/utils/pds_catalog_client.py @@ -17,7 +17,7 @@ logger = logging.getLogger(__name__) # Default catalog directory containing scraped JSONL files -DEFAULT_CATALOG_DIR = Path(__file__).parent.parent.parent / "sde-data-agents" / "src" / "pds_catalog_mcp" / "scraped_data" +DEFAULT_CATALOG_DIR = Path(__file__).parent.parent / "pds_catalog" / "scraped_data" # Response limits MAX_RESULTS_LIMIT = 50 From 8397280935fa87de1bfad82454fea6049828af69 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Tue, 10 Feb 2026 12:22:36 -0600 Subject: [PATCH 03/16] Add scraped data in package-data --- pyproject.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 043781c..5ea8924 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -45,6 +45,9 @@ build-backend = "setuptools.build_meta" include = ["akd_ext*"] exclude = ["tests*"] +[tool.setuptools.package-data] +"akd_ext.tools.pds.pds_catalog" = ["scraped_data/*.jsonl"] + [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] From 6aaab525721701b44cfb9f0095fd46795de8302b Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Tue, 10 Feb 2026 13:16:38 -0600 Subject: [PATCH 04/16] Add local testing instruction --- akd_ext/testing_instruction.md | 77 ++++++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 akd_ext/testing_instruction.md diff --git a/akd_ext/testing_instruction.md b/akd_ext/testing_instruction.md new file mode 100644 index 0000000..e0106fb --- /dev/null +++ b/akd_ext/testing_instruction.md @@ -0,0 +1,77 @@ +# Testing MCP Server with MCP Inspector + +This document provides instructions for testing the FastMCP cloud-hosted MCP server locally using MCP Inspector. + +Follow these steps to test the MCP server using MCP Inspector. + + + +## Step 1: Install and Start MCP Inspector + +Open your terminal/command prompt and run: +```bash +npx @modelcontextprotocol/inspector +``` + +This will: +- Download and install MCP Inspector (first time only) +- Start the inspector +- Automatically open it in your browser at `http://localhost:6274` + +> **Note:** Keep the terminal window open while using the inspector. + +--- + +## Step 2: Configure Connection Settings + +In the MCP Inspector interface, you'll see a connection form. Configure it as follows: + +### **Transport Type** +Select: `Streamable HTTP` + +### **URL** +Enter your Fastmcp cloud url. + +### **Connection Type** +Select: `Via Proxy` (should be default) + +### **Authentication** +1. Expand the **"Authentication"** section if it's collapsed +2. Under **"Custom Headers"**: + - Make sure the toggle switch next to "Authorization" is **ON** (enabled) + - Header name: `Authorization` + - Header value: `Bearer YOUR_API_KEY_HERE` + + ⚠️ **Important:** Replace `YOUR_API_KEY_HERE` with the actual API key provided to you + +**Example:** +If your API key is `fmcp_abc123xyz`, enter: +``` +Bearer fmcp_abc123xyz +``` + +--- + +## Step 3: Connect to the Server + +1. After entering all settings, click the **"Connect"** button +2. Wait a few seconds for the connection to establish +3. If successful, you should see the page change to show available tools + +--- + +## Step 4: Test the Endpoints + +Once connected: + +### **View Available Tools** +- You should automatically see a list of tools on the left side +- Or click **"List Tools"** button if needed + +### **Test Individual Tools** +1. Click on any tool name from the list +2. Fill in any required parameters +3. Click **"Run"** or **"Execute"** to test the tool +4. View the response/results + +--- \ No newline at end of file From 7f5e03bcb3fc8304ed2ffa92f0114f53155ffcf2 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Tue, 10 Feb 2026 13:20:31 -0600 Subject: [PATCH 05/16] Move instruction to root dir --- akd_ext/testing_instruction.md => testing_instruction.md | 2 -- 1 file changed, 2 deletions(-) rename akd_ext/testing_instruction.md => testing_instruction.md (99%) diff --git a/akd_ext/testing_instruction.md b/testing_instruction.md similarity index 99% rename from akd_ext/testing_instruction.md rename to testing_instruction.md index e0106fb..b1e6b8a 100644 --- a/akd_ext/testing_instruction.md +++ b/testing_instruction.md @@ -73,5 +73,3 @@ Once connected: 2. Fill in any required parameters 3. Click **"Run"** or **"Execute"** to test the tool 4. View the response/results - ---- \ No newline at end of file From b52f646e5fd6751e29047ef2e97ac4d85a1b2326 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Tue, 10 Feb 2026 13:22:56 -0600 Subject: [PATCH 06/16] Remove unnecssary example in tool docstring --- akd_ext/tools/pds/pds4/crawl_context_product.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/akd_ext/tools/pds/pds4/crawl_context_product.py b/akd_ext/tools/pds/pds4/crawl_context_product.py index 031dfe9..bf36ce8 100644 --- a/akd_ext/tools/pds/pds4/crawl_context_product.py +++ b/akd_ext/tools/pds/pds4/crawl_context_product.py @@ -55,16 +55,6 @@ class PDS4CrawlContextProductTool(BaseTool[PDS4CrawlContextProductInputSchema, P - id: URN identifier - title: Product title - description: Product description (if available) - - Example Usage: - tool = CrawlContextProductTool() - result = await tool.arun(PDS4CrawlContextProductInputSchema( - urn="urn:nasa:pds:context:investigation:mission.mars2020" - )) - - # Access related products - print(f"Targets: {result.targets}") - print(f"Instruments: {result.observing_system_components}") """ input_schema = PDS4CrawlContextProductInputSchema From 6eee14a5ba2836427c2d24b83ab114e01c1aafbc Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Thu, 12 Feb 2026 20:31:51 -0600 Subject: [PATCH 07/16] Fix for opus failing tools --- akd_ext/tools/__init__.py | 10 -- akd_ext/tools/pds/__init__.py | 10 -- akd_ext/tools/pds/opus/__init__.py | 13 --- akd_ext/tools/pds/opus/opus_get_fields.py | 128 --------------------- akd_ext/tools/pds/utils/opus_api_models.py | 98 ++++++---------- akd_ext/tools/pds/utils/opus_client.py | 15 --- 6 files changed, 32 insertions(+), 242 deletions(-) delete mode 100644 akd_ext/tools/pds/opus/opus_get_fields.py diff --git a/akd_ext/tools/__init__.py b/akd_ext/tools/__init__.py index b26aa34..0679e1a 100644 --- a/akd_ext/tools/__init__.py +++ b/akd_ext/tools/__init__.py @@ -112,11 +112,6 @@ OPUSGetFilesOutputSchema, OPUSGetFilesToolConfig, OPUSBrowseImages, - OPUSGetFieldsTool, - OPUSGetFieldsInputSchema, - OPUSGetFieldsOutputSchema, - OPUSGetFieldsToolConfig, - OPUSFieldItem, IMGSearchTool, IMGSearchInputSchema, IMGSearchOutputSchema, @@ -263,11 +258,6 @@ "OPUSGetFilesOutputSchema", "OPUSGetFilesToolConfig", "OPUSBrowseImages", - "OPUSGetFieldsTool", - "OPUSGetFieldsInputSchema", - "OPUSGetFieldsOutputSchema", - "OPUSGetFieldsToolConfig", - "OPUSFieldItem", # IMG Tools "IMGSearchTool", "IMGSearchInputSchema", diff --git a/akd_ext/tools/pds/__init__.py b/akd_ext/tools/pds/__init__.py index 95bf7d9..92e78ab 100644 --- a/akd_ext/tools/pds/__init__.py +++ b/akd_ext/tools/pds/__init__.py @@ -101,11 +101,6 @@ OPUSCountOutputSchema, OPUSCountTool, OPUSCountToolConfig, - OPUSFieldItem, - OPUSGetFieldsInputSchema, - OPUSGetFieldsOutputSchema, - OPUSGetFieldsTool, - OPUSGetFieldsToolConfig, OPUSGetFilesInputSchema, OPUSGetFilesOutputSchema, OPUSGetFilesTool, @@ -257,11 +252,6 @@ "OPUSGetFilesOutputSchema", "OPUSGetFilesToolConfig", "OPUSBrowseImages", - "OPUSGetFieldsTool", - "OPUSGetFieldsInputSchema", - "OPUSGetFieldsOutputSchema", - "OPUSGetFieldsToolConfig", - "OPUSFieldItem", # IMG Tools "IMGSearchTool", "IMGSearchInputSchema", diff --git a/akd_ext/tools/pds/opus/__init__.py b/akd_ext/tools/pds/opus/__init__.py index 3133c26..0b41e8f 100644 --- a/akd_ext/tools/pds/opus/__init__.py +++ b/akd_ext/tools/pds/opus/__init__.py @@ -12,13 +12,6 @@ OPUSCountTool, OPUSCountToolConfig, ) -from akd_ext.tools.pds.opus.opus_get_fields import ( - OPUSFieldItem, - OPUSGetFieldsInputSchema, - OPUSGetFieldsOutputSchema, - OPUSGetFieldsTool, - OPUSGetFieldsToolConfig, -) from akd_ext.tools.pds.opus.opus_get_files import ( OPUSBrowseImages, OPUSGetFilesInputSchema, @@ -63,10 +56,4 @@ "OPUSGetFilesOutputSchema", "OPUSGetFilesToolConfig", "OPUSBrowseImages", - # opus_get_fields - "OPUSGetFieldsTool", - "OPUSGetFieldsInputSchema", - "OPUSGetFieldsOutputSchema", - "OPUSGetFieldsToolConfig", - "OPUSFieldItem", ] diff --git a/akd_ext/tools/pds/opus/opus_get_fields.py b/akd_ext/tools/pds/opus/opus_get_fields.py deleted file mode 100644 index af4253c..0000000 --- a/akd_ext/tools/pds/opus/opus_get_fields.py +++ /dev/null @@ -1,128 +0,0 @@ -"""OPUS Get Fields Tool - Get available search fields.""" - -import logging - -from akd._base import InputSchema, OutputSchema -from akd.tools import BaseTool, BaseToolConfig -from pydantic import BaseModel, Field - -from akd_ext.mcp.decorators import mcp_tool -from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError - -logger = logging.getLogger(__name__) - - -class OPUSFieldItem(BaseModel): - """Field definition item.""" - - id: str - label: str - search_label: str | None = None - - -class OPUSGetFieldsInputSchema(InputSchema): - """Input schema for OPUSGetFieldsTool. - - This tool takes no parameters - it retrieves all available fields. - """ - - pass - - -class OPUSGetFieldsOutputSchema(OutputSchema): - """Output schema for OPUSGetFieldsTool.""" - - status: str = Field(..., description="Status of the field retrieval") - categories: list[str] = Field( - default_factory=list, - description="List of field categories", - ) - fields_by_category: dict[str, list[OPUSFieldItem]] = Field( - default_factory=dict, - description="Field definitions organized by category", - ) - total_fields: int = Field(..., description="Total number of fields available") - - -class OPUSGetFieldsToolConfig(BaseToolConfig): - """Configuration for OPUSGetFieldsTool.""" - - base_url: str = Field( - default="https://opus.pds-rings.seti.org/opus/api/", - description="OPUS API base URL", - ) - timeout: float = Field( - default=30.0, - description="Request timeout in seconds", - ) - max_retries: int = Field( - default=3, - description="Maximum number of retry attempts", - ) - - -@mcp_tool -class OPUSGetFieldsTool(BaseTool[OPUSGetFieldsInputSchema, OPUSGetFieldsOutputSchema]): - """Get all available search fields in OPUS. - - Returns field definitions organized by category, useful for understanding - what parameters can be used in advanced searches. Categories include: - - General Constraints - - PDS Constraints - - Image Constraints - - Wavelength Constraints - - Ring Geometry Constraints - - Surface Geometry Constraints - - Instrument-specific Constraints - """ - - input_schema = OPUSGetFieldsInputSchema - output_schema = OPUSGetFieldsOutputSchema - config_schema = OPUSGetFieldsToolConfig - - async def _arun(self, params: OPUSGetFieldsInputSchema) -> OPUSGetFieldsOutputSchema: - """Execute the fields retrieval.""" - try: - async with OPUSClient( - base_url=self.config.base_url, - timeout=self.config.timeout, - max_retries=self.config.max_retries, - ) as client: - response = await client.get_fields() - - if response.status == "error": - logger.error(f"OPUS fields error: {response.error}") - return OPUSGetFieldsOutputSchema( - status="error", - categories=[], - fields_by_category={}, - total_fields=0, - ) - - # Organize fields by category - fields_by_category: dict[str, list[OPUSFieldItem]] = {} - for field in response.fields: - category = field.category or "Other" - if category not in fields_by_category: - fields_by_category[category] = [] - - field_item = OPUSFieldItem( - id=field.field_id, - label=field.label, - search_label=field.search_label, - ) - fields_by_category[category].append(field_item) - - return OPUSGetFieldsOutputSchema( - status="success", - categories=response.categories, - fields_by_category=fields_by_category, - total_fields=len(response.fields), - ) - - except OPUSClientError as e: - logger.error(f"OPUS client error: {e}") - raise - except Exception as e: - logger.error(f"Unexpected error in OPUS get fields: {e}") - raise RuntimeError(f"Internal error: {e}") from e diff --git a/akd_ext/tools/pds/utils/opus_api_models.py b/akd_ext/tools/pds/utils/opus_api_models.py index b244054..14dabf1 100644 --- a/akd_ext/tools/pds/utils/opus_api_models.py +++ b/akd_ext/tools/pds/utils/opus_api_models.py @@ -249,9 +249,16 @@ class OPUSFiles(BaseModel): @classmethod def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSFiles": - """Create from raw API response.""" - # Get the file data for this opusid - file_data = data.get(opusid, {}) + """Create from raw API response. + + The OPUS files API returns:: + + {"data": {opusid: {category: [url, ...], ...}}, "versions": {...}} + + All categories (including browse images) are lists of URL strings. + """ + # API nests files under data -> opusid + file_data = data.get("data", {}).get(opusid, {}) raw_files: list[str] = [] calibrated_files: list[str] = [] @@ -263,24 +270,23 @@ def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSFiles": for category, category_data in file_data.items(): if category.startswith("browse_"): - # Browse images are direct URLs + # Browse images are lists of URLs; extract first element + url = cls._extract_first_url(category_data) if category == "browse_thumb": - browse_thumb = category_data if isinstance(category_data, str) else None + browse_thumb = url elif category == "browse_small": - browse_small = category_data if isinstance(category_data, str) else None + browse_small = url elif category == "browse_medium": - browse_medium = category_data if isinstance(category_data, str) else None + browse_medium = url elif category == "browse_full": - browse_full = category_data if isinstance(category_data, str) else None - elif isinstance(category_data, dict): - # Data files are nested by version - files = category_data.get("Current", []) - if isinstance(files, list): - all_files[category] = files - if "raw" in category.lower(): - raw_files.extend(files) - elif "calib" in category.lower(): - calibrated_files.extend(files) + browse_full = url + elif isinstance(category_data, list): + # Data file categories are flat lists of URL strings + all_files[category] = category_data + if "raw" in category.lower(): + raw_files.extend(category_data) + elif "calib" in category.lower(): + calibrated_files.extend(category_data) return cls( opusid=opusid, @@ -293,6 +299,15 @@ def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSFiles": all_files=all_files, ) + @staticmethod + def _extract_first_url(value: Any) -> str | None: + """Extract the first URL from a value that may be a list or string.""" + if isinstance(value, list) and value: + return str(value[0]) + if isinstance(value, str): + return value + return None + class OPUSFilesResponse(BaseModel): """OPUS files response wrapper.""" @@ -317,52 +332,3 @@ def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSFilesResponse" ) -class OPUSField(BaseModel): - """OPUS search field definition.""" - - field_id: str - label: str - category: str - search_label: str | None = None - full_label: str | None = None - - -class OPUSFieldsResponse(BaseModel): - """OPUS fields response wrapper.""" - - status: str = "success" - fields: list[OPUSField] = Field(default_factory=list) - categories: list[str] = Field(default_factory=list) - error: str | None = None - - @classmethod - def from_raw_data(cls, data: dict[str, Any]) -> "OPUSFieldsResponse": - """Create from raw API response.""" - if "error" in data: - return cls( - status="error", - error=str(data.get("error")), - ) - - fields: list[OPUSField] = [] - categories: set[str] = set() - - for field_id, field_data in data.items(): - if isinstance(field_data, dict): - category = field_data.get("category", "") - categories.add(category) - fields.append( - OPUSField( - field_id=field_id, - label=field_data.get("label", field_id), - category=category, - search_label=field_data.get("search_label"), - full_label=field_data.get("full_label"), - ) - ) - - return cls( - status="success", - fields=fields, - categories=sorted(categories), - ) diff --git a/akd_ext/tools/pds/utils/opus_client.py b/akd_ext/tools/pds/utils/opus_client.py index 5206206..0ec6ac3 100644 --- a/akd_ext/tools/pds/utils/opus_client.py +++ b/akd_ext/tools/pds/utils/opus_client.py @@ -15,7 +15,6 @@ from .opus_api_models import ( OPUSCountResponse, - OPUSFieldsResponse, OPUSFilesResponse, OPUSMetadataResponse, OPUSSearchResponse, @@ -319,17 +318,3 @@ async def get_files( logger.error(f"Failed to parse OPUS files response: {e}") raise OPUSClientError(f"Invalid response format: {e}") - async def get_fields(self) -> OPUSFieldsResponse: - """Get all available search fields. - - Returns: - OPUSFieldsResponse with field definitions and categories - """ - response = await self._request("fields.json") - - try: - data = response.json() - return OPUSFieldsResponse.from_raw_data(data) - except Exception as e: - logger.error(f"Failed to parse OPUS fields response: {e}") - raise OPUSClientError(f"Invalid response format: {e}") From 5f2270fdaf9bd2e9692fb59412392a110d85c0d2 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Thu, 12 Feb 2026 21:13:42 -0600 Subject: [PATCH 08/16] Fix for failure in case of empty response --- akd_ext/tools/pds/opus/opus_count.py | 2 +- akd_ext/tools/pds/opus/opus_search.py | 16 +++++------ akd_ext/tools/pds/opus/types.py | 38 ++++++++++++++------------- 3 files changed, 29 insertions(+), 27 deletions(-) diff --git a/akd_ext/tools/pds/opus/opus_count.py b/akd_ext/tools/pds/opus/opus_count.py index 6bc2b8a..2b80805 100644 --- a/akd_ext/tools/pds/opus/opus_count.py +++ b/akd_ext/tools/pds/opus/opus_count.py @@ -38,7 +38,7 @@ class OPUSCountInputSchema(InputSchema): ) instrument: OPUS_INSTRUMENTS | None = Field( None, - description='Instrument name filter (e.g., "ISS", "VIMS")', + description='Instrument name filter (e.g., "Cassini ISS", "Cassini VIMS")', ) planet: OPUS_PLANETS | None = Field( None, diff --git a/akd_ext/tools/pds/opus/opus_search.py b/akd_ext/tools/pds/opus/opus_search.py index 300866f..9319b3c 100644 --- a/akd_ext/tools/pds/opus/opus_search.py +++ b/akd_ext/tools/pds/opus/opus_search.py @@ -32,13 +32,13 @@ class OPUSSearchInputSchema(InputSchema): Valid planets: Jupiter, Saturn, Uranus, Neptune, Pluto, Other Valid missions: Cassini, Voyager 1, Voyager 2, Galileo, New Horizons, Juno, Hubble - Valid instruments by mission: - - Cassini: ISS, VIMS, UVIS, CIRS, RSS - - Voyager: ISS, IRIS - - Galileo: SSI - - New Horizons: LORRI, MVIC - - Juno: JunoCam, JIRAM - - Hubble: WFPC2, WFC3, ACS, STIS, NICMOS + Valid instruments (use full name with mission prefix): + - Cassini ISS, Cassini VIMS, Cassini UVIS, Cassini CIRS, Cassini RSS + - Voyager ISS, Voyager IRIS + - Galileo SSI + - New Horizons LORRI, New Horizons MVIC + - Juno JunoCam, Juno JIRAM + - Hubble WFPC2, Hubble WFC3, Hubble ACS, Hubble STIS, Hubble NICMOS """ target: str | None = Field( @@ -51,7 +51,7 @@ class OPUSSearchInputSchema(InputSchema): ) instrument: OPUS_INSTRUMENTS | None = Field( None, - description='Instrument name filter (e.g., "ISS", "VIMS")', + description='Instrument name filter (e.g., "Cassini ISS", "Cassini VIMS")', ) planet: OPUS_PLANETS | None = Field( None, diff --git a/akd_ext/tools/pds/opus/types.py b/akd_ext/tools/pds/opus/types.py index a1318c8..78506aa 100644 --- a/akd_ext/tools/pds/opus/types.py +++ b/akd_ext/tools/pds/opus/types.py @@ -12,29 +12,31 @@ # Valid missions in OPUS database OPUS_MISSIONS = Literal["Cassini", "Voyager 1", "Voyager 2", "Galileo", "New Horizons", "Juno", "Hubble"] -# Valid instruments in OPUS database (from MCP resource://opus_instruments) -# Organized by mission for clarity +# Valid instruments in OPUS database. +# Values must match the full instrument names expected by the OPUS API +# ``instrument`` query parameter (e.g. "Cassini ISS", not just "ISS"). OPUS_INSTRUMENTS = Literal[ # Cassini - "ISS", - "VIMS", - "UVIS", - "CIRS", - "RSS", + "Cassini ISS", + "Cassini VIMS", + "Cassini UVIS", + "Cassini CIRS", + "Cassini RSS", # Voyager - "IRIS", + "Voyager ISS", + "Voyager IRIS", # Galileo - "SSI", + "Galileo SSI", # New Horizons - "LORRI", - "MVIC", + "New Horizons LORRI", + "New Horizons MVIC", # Juno - "JunoCam", - "JIRAM", + "Juno JunoCam", + "Juno JIRAM", # Hubble - "WFPC2", - "WFC3", - "ACS", - "STIS", - "NICMOS", + "Hubble WFPC2", + "Hubble WFC3", + "Hubble ACS", + "Hubble STIS", + "Hubble NICMOS", ] From 91f7b80d2882cc6914e3b7dcb40103c09658ecbc Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Thu, 12 Feb 2026 21:20:39 -0600 Subject: [PATCH 09/16] Fix similar erros as last commit for other tools --- akd_ext/tools/pds/utils/img_api_models.py | 42 ++++++++++++++-------- akd_ext/tools/pds/utils/ode_api_models.py | 34 +++++++++++++++++- akd_ext/tools/pds/utils/opus_api_models.py | 15 +++++--- akd_ext/tools/pds/utils/pds4_api_models.py | 19 +++++++--- akd_ext/tools/pds/utils/sbn_api_models.py | 16 ++++++--- 5 files changed, 99 insertions(+), 27 deletions(-) diff --git a/akd_ext/tools/pds/utils/img_api_models.py b/akd_ext/tools/pds/utils/img_api_models.py index 5b47031..9275563 100644 --- a/akd_ext/tools/pds/utils/img_api_models.py +++ b/akd_ext/tools/pds/utils/img_api_models.py @@ -154,13 +154,14 @@ def from_raw_data(cls, data: dict[str, Any]) -> "IMGSearchResponse": # Check for error response if "error" in data: error_info = data.get("error", {}) - return cls( - status="error", - error=error_info.get("msg", "Unknown error"), - ) + if isinstance(error_info, dict): + return cls(status="error", error=error_info.get("msg", "Unknown error")) + return cls(status="error", error=str(error_info)) # Parse response header response_header = data.get("responseHeader", {}) + if not isinstance(response_header, dict): + response_header = {} status_code = response_header.get("status", 0) query_time = response_header.get("QTime", 0) @@ -173,11 +174,15 @@ def from_raw_data(cls, data: dict[str, Any]) -> "IMGSearchResponse": # Parse response body response = data.get("response", {}) + if not isinstance(response, dict): + return cls(status="error", error=f"Invalid response format: expected dict, got {type(response).__name__}") num_found = response.get("numFound", 0) start = response.get("start", 0) docs = response.get("docs", []) + if not isinstance(docs, list): + docs = [] - products = [IMGProduct.from_raw_data(doc) for doc in docs] + products = [IMGProduct.from_raw_data(doc) for doc in docs if isinstance(doc, dict)] return cls( status="success", @@ -202,13 +207,14 @@ def from_raw_data(cls, data: dict[str, Any]) -> "IMGCountResponse": # Check for error response if "error" in data: error_info = data.get("error", {}) - return cls( - status="error", - error=error_info.get("msg", "Unknown error"), - ) + if isinstance(error_info, dict): + return cls(status="error", error=error_info.get("msg", "Unknown error")) + return cls(status="error", error=str(error_info)) # Parse response header response_header = data.get("responseHeader", {}) + if not isinstance(response_header, dict): + response_header = {} status_code = response_header.get("status", 0) query_time = response_header.get("QTime", 0) @@ -221,6 +227,8 @@ def from_raw_data(cls, data: dict[str, Any]) -> "IMGCountResponse": # Parse response body - just need numFound response = data.get("response", {}) + if not isinstance(response, dict): + return cls(status="error", error=f"Invalid response format: expected dict, got {type(response).__name__}") num_found = response.get("numFound", 0) return cls( @@ -262,14 +270,14 @@ def from_raw_data(cls, data: dict[str, Any], facet_field: str) -> "IMGFacetRespo # Check for error response if "error" in data: error_info = data.get("error", {}) - return cls( - status="error", - facet_field=facet_field, - error=error_info.get("msg", "Unknown error"), - ) + if isinstance(error_info, dict): + return cls(status="error", facet_field=facet_field, error=error_info.get("msg", "Unknown error")) + return cls(status="error", facet_field=facet_field, error=str(error_info)) # Parse response header response_header = data.get("responseHeader", {}) + if not isinstance(response_header, dict): + response_header = {} status_code = response_header.get("status", 0) query_time = response_header.get("QTime", 0) @@ -283,8 +291,14 @@ def from_raw_data(cls, data: dict[str, Any], facet_field: str) -> "IMGFacetRespo # Parse facet data facet_counts = data.get("facet_counts", {}) + if not isinstance(facet_counts, dict): + facet_counts = {} facet_fields = facet_counts.get("facet_fields", {}) + if not isinstance(facet_fields, dict): + facet_fields = {} raw_values = facet_fields.get(facet_field, []) + if not isinstance(raw_values, list): + raw_values = [] # Convert alternating list [value, count, value, count, ...] to list of dicts values: list[IMGFacetValue] = [] diff --git a/akd_ext/tools/pds/utils/ode_api_models.py b/akd_ext/tools/pds/utils/ode_api_models.py index 7afde09..0229977 100644 --- a/akd_ext/tools/pds/utils/ode_api_models.py +++ b/akd_ext/tools/pds/utils/ode_api_models.py @@ -152,6 +152,11 @@ def from_raw_data(cls, data: dict[str, Any]) -> "ODEProductSearchResponse": if not isinstance(data, dict): return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") ode_results = data.get("ODEResults", {}) + if not isinstance(ode_results, dict): + return cls( + status="ERROR", + error=f"Invalid response format: expected dict for ODEResults, got {type(ode_results).__name__}: {ode_results}", + ) status = ode_results.get("Status", "ERROR") if status == "ERROR": @@ -160,8 +165,10 @@ def from_raw_data(cls, data: dict[str, Any]) -> "ODEProductSearchResponse": error=ode_results.get("Error"), ) - # Parse products + # Parse products - API returns "No Products Found" string when empty products_data = ode_results.get("Products", {}) + if not isinstance(products_data, dict): + return cls(status=status, count=_parse_int(ode_results.get("Count", 0)), products=[]) product_list = products_data.get("Product", []) # Handle single product (dict) vs multiple (list) @@ -194,6 +201,11 @@ def from_raw_data(cls, data: dict[str, Any]) -> "ODEProductCountResponse": if not isinstance(data, dict): return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") ode_results = data.get("ODEResults", {}) + if not isinstance(ode_results, dict): + return cls( + status="ERROR", + error=f"Invalid response format: expected dict for ODEResults, got {type(ode_results).__name__}: {ode_results}", + ) status = ode_results.get("Status", "ERROR") if status == "ERROR": @@ -244,6 +256,11 @@ def from_raw_data(cls, data: dict[str, Any]) -> "ODEIIPTResponse": if not isinstance(data, dict): return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") ode_results = data.get("ODEResults", {}) + if not isinstance(ode_results, dict): + return cls( + status="ERROR", + error=f"Invalid response format: expected dict for ODEResults, got {type(ode_results).__name__}: {ode_results}", + ) status = ode_results.get("Status", "ERROR") if status == "ERROR": @@ -301,6 +318,11 @@ def from_raw_data(cls, data: dict[str, Any]) -> "ODEFeatureDataResponse": if not isinstance(data, dict): return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") ode_results = data.get("ODEResults", {}) + if not isinstance(ode_results, dict): + return cls( + status="ERROR", + error=f"Invalid response format: expected dict for ODEResults, got {type(ode_results).__name__}: {ode_results}", + ) status = ode_results.get("Status", "ERROR") if status == "ERROR": @@ -376,6 +398,11 @@ def from_raw_data(cls, data: dict[str, Any]) -> "ODEFeatureClassesResponse": if not isinstance(data, dict): return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") ode_results = data.get("ODEResults", {}) + if not isinstance(ode_results, dict): + return cls( + status="ERROR", + error=f"Invalid response format: expected dict for ODEResults, got {type(ode_results).__name__}: {ode_results}", + ) status = ode_results.get("Status", "ERROR") if status == "ERROR": @@ -404,6 +431,11 @@ def from_raw_data(cls, data: dict[str, Any]) -> "ODEFeatureNamesResponse": if not isinstance(data, dict): return cls(status="ERROR", error=f"Invalid response format: expected dict, got {type(data).__name__}") ode_results = data.get("ODEResults", {}) + if not isinstance(ode_results, dict): + return cls( + status="ERROR", + error=f"Invalid response format: expected dict for ODEResults, got {type(ode_results).__name__}: {ode_results}", + ) status = ode_results.get("Status", "ERROR") if status == "ERROR": diff --git a/akd_ext/tools/pds/utils/opus_api_models.py b/akd_ext/tools/pds/utils/opus_api_models.py index 14dabf1..4ab4bce 100644 --- a/akd_ext/tools/pds/utils/opus_api_models.py +++ b/akd_ext/tools/pds/utils/opus_api_models.py @@ -103,6 +103,10 @@ def from_raw_data(cls, data: dict[str, Any]) -> "OPUSSearchResponse": # Parse page data - OPUS returns arrays, not dictionaries page = data.get("page", []) columns = data.get("columns", []) + if not isinstance(page, list): + page = [] + if not isinstance(columns, list): + columns = [] # Handle both array format (API default) and dict format observations: list[OPUSObservation] = [] @@ -143,7 +147,9 @@ def from_raw_data(cls, data: dict[str, Any]) -> "OPUSCountResponse": # Extract count from data array data_array = data.get("data", []) - if data_array and len(data_array) > 0: + if not isinstance(data_array, list): + data_array = [] + if data_array and isinstance(data_array[0], dict): count = data_array[0].get("result_count", 0) else: count = 0 @@ -258,7 +264,10 @@ def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSFiles": All categories (including browse images) are lists of URL strings. """ # API nests files under data -> opusid - file_data = data.get("data", {}).get(opusid, {}) + data_wrapper = data.get("data", {}) + if not isinstance(data_wrapper, dict): + data_wrapper = {} + file_data = data_wrapper.get(opusid, {}) raw_files: list[str] = [] calibrated_files: list[str] = [] @@ -330,5 +339,3 @@ def from_raw_data(cls, opusid: str, data: dict[str, Any]) -> "OPUSFilesResponse" status="success", files=files, ) - - diff --git a/akd_ext/tools/pds/utils/pds4_api_models.py b/akd_ext/tools/pds/utils/pds4_api_models.py index 74fbdf0..2ccd584 100644 --- a/akd_ext/tools/pds/utils/pds4_api_models.py +++ b/akd_ext/tools/pds/utils/pds4_api_models.py @@ -325,6 +325,8 @@ def from_raw_data(cls, data: dict[str, Any]) -> "PDS4Product": Populated PDS4Product instance """ props = data.get("properties", {}) if "properties" in data else data + if not isinstance(props, dict): + props = {} identification_area = PDS4IdentificationArea.from_properties(props) investigation_area = PDS4InvestigationArea.from_properties(props) @@ -454,11 +456,16 @@ class PDS4SearchResponse(BaseModel): def from_raw_data(cls, data: dict[str, Any]) -> "PDS4SearchResponse": """Create PDS4SearchResponse from raw API response data.""" summary_data = data.get("summary", {}) + if not isinstance(summary_data, dict): + summary_data = {} # Parse facets from summary facets = [] - for facet_data in summary_data.get("facets", []): - facets.append(PDS4Facet(**facet_data)) + facets_data = summary_data.get("facets", []) + if isinstance(facets_data, list): + for facet_data in facets_data: + if isinstance(facet_data, dict): + facets.append(PDS4Facet(**facet_data)) # Create summary without facets (they're handled separately) summary = PDS4Summary( @@ -470,8 +477,12 @@ def from_raw_data(cls, data: dict[str, Any]) -> "PDS4SearchResponse": ) products = [] - for item in data.get("data", []): - products.append(PDS4Product.from_raw_data(item)) + data_list = data.get("data", []) + if not isinstance(data_list, list): + data_list = [] + for item in data_list: + if isinstance(item, dict): + products.append(PDS4Product.from_raw_data(item)) return cls( summary=summary, diff --git a/akd_ext/tools/pds/utils/sbn_api_models.py b/akd_ext/tools/pds/utils/sbn_api_models.py index 23b4893..7abf30b 100644 --- a/akd_ext/tools/pds/utils/sbn_api_models.py +++ b/akd_ext/tools/pds/utils/sbn_api_models.py @@ -221,11 +221,15 @@ def from_raw_data(cls, data: dict[str, Any]) -> "CatchResultsResponse": # Parse observations from data array observations_data = data.get("data", []) - observations = [CatchObservation.from_raw_data(obs) for obs in observations_data] + if not isinstance(observations_data, list): + observations_data = [] + observations = [CatchObservation.from_raw_data(obs) for obs in observations_data if isinstance(obs, dict)] # Parse source status status_data = data.get("status", []) - source_status = [CatchSourceStatus.from_raw_data(s) for s in status_data] + if not isinstance(status_data, list): + status_data = [] + source_status = [CatchSourceStatus.from_raw_data(s) for s in status_data if isinstance(s, dict)] return cls( status="success", @@ -259,7 +263,9 @@ def from_raw_data(cls, data: dict[str, Any]) -> "CatchStatusResponse": # Parse source status status_data = data.get("status", []) - source_status = [CatchSourceStatus.from_raw_data(s) for s in status_data] + if not isinstance(status_data, list): + status_data = [] + source_status = [CatchSourceStatus.from_raw_data(s) for s in status_data if isinstance(s, dict)] return cls( status="success", @@ -290,7 +296,9 @@ def from_raw_data(cls, data: dict[str, Any]) -> "CatchFixedResponse": # Parse observations from data array observations_data = data.get("data", []) - observations = [CatchObservation.from_raw_data(obs) for obs in observations_data] + if not isinstance(observations_data, list): + observations_data = [] + observations = [CatchObservation.from_raw_data(obs) for obs in observations_data if isinstance(obs, dict)] return cls( status="success", From a3aacf2ff6fed9212877e90b1bd0359304a9a8d7 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Fri, 13 Feb 2026 15:21:58 -0600 Subject: [PATCH 10/16] Address the issues raised in PR - Move testing instructions to md - Add loading base url from env with defaults - Use loguru for logging - Remove annotated type and use field type --- akd_ext/tools/pds/img/__init__.py | 2 +- akd_ext/tools/pds/img/count.py | 34 +++++++----------- akd_ext/tools/pds/img/get_facets.py | 33 ++++++----------- akd_ext/tools/pds/img/get_product.py | 10 +++--- akd_ext/tools/pds/img/search.py | 36 +++++++------------ akd_ext/tools/pds/img/{_types.py => types.py} | 2 +- akd_ext/tools/pds/ode/count_products.py | 19 +++++----- akd_ext/tools/pds/ode/get_feature_bounds.py | 10 +++--- akd_ext/tools/pds/ode/list_feature_classes.py | 10 +++--- akd_ext/tools/pds/ode/list_feature_names.py | 12 +++---- akd_ext/tools/pds/ode/list_instruments.py | 13 ++++--- akd_ext/tools/pds/ode/search_products.py | 22 ++++++------ akd_ext/tools/pds/opus/opus_count.py | 10 +++--- akd_ext/tools/pds/opus/opus_get_files.py | 10 +++--- akd_ext/tools/pds/opus/opus_get_metadata.py | 14 ++++---- akd_ext/tools/pds/opus/opus_search.py | 18 +++++----- .../tools/pds/pds4/crawl_context_product.py | 11 +++--- akd_ext/tools/pds/pds4/get_product.py | 11 +++--- akd_ext/tools/pds/pds4/search_bundles.py | 23 +++++------- akd_ext/tools/pds/pds4/search_collections.py | 17 ++++----- .../tools/pds/pds4/search_instrument_hosts.py | 22 ++++++------ akd_ext/tools/pds/pds4/search_instruments.py | 14 ++++---- .../tools/pds/pds4/search_investigations.py | 14 ++++---- akd_ext/tools/pds/pds4/search_products.py | 33 +++++++---------- akd_ext/tools/pds/pds4/search_targets.py | 14 ++++---- akd_ext/tools/pds/pds_catalog/get_dataset.py | 11 +++--- .../tools/pds/pds_catalog/list_missions.py | 9 +++-- akd_ext/tools/pds/pds_catalog/list_targets.py | 9 +++-- akd_ext/tools/pds/pds_catalog/search.py | 13 +++---- akd_ext/tools/pds/pds_catalog/stats.py | 4 +-- akd_ext/tools/pds/sbn/list_sources.py | 10 +++--- akd_ext/tools/pds/sbn/search_coordinates.py | 22 ++++++------ akd_ext/tools/pds/sbn/search_object.py | 26 ++++++-------- akd_ext/tools/pds/utils/__init__.py | 7 +++- akd_ext/tools/pds/utils/img_client.py | 6 ++-- akd_ext/tools/pds/utils/ode_client.py | 3 +- akd_ext/tools/pds/utils/opus_client.py | 5 +-- akd_ext/tools/pds/utils/pds4_client.py | 4 +-- .../tools/pds/utils/pds_catalog_api_models.py | 4 +-- akd_ext/tools/pds/utils/pds_catalog_client.py | 3 +- akd_ext/tools/pds/utils/sbn_client.py | 4 +-- .../testing_instruction.md | 4 +-- 42 files changed, 256 insertions(+), 302 deletions(-) rename akd_ext/tools/pds/img/{_types.py => types.py} (99%) rename testing_instruction.md => docs/testing_instruction.md (98%) diff --git a/akd_ext/tools/pds/img/__init__.py b/akd_ext/tools/pds/img/__init__.py index b264a21..4d812a0 100644 --- a/akd_ext/tools/pds/img/__init__.py +++ b/akd_ext/tools/pds/img/__init__.py @@ -1,6 +1,6 @@ """IMG Atlas tools for planetary imagery search and discovery.""" -from akd_ext.tools.pds.img._types import ( +from akd_ext.tools.pds.img.types import ( IMGFacetField, IMGInstrument, IMGMission, diff --git a/akd_ext/tools/pds/img/count.py b/akd_ext/tools/pds/img/count.py index daa747e..99f1a5f 100644 --- a/akd_ext/tools/pds/img/count.py +++ b/akd_ext/tools/pds/img/count.py @@ -1,18 +1,18 @@ """IMG Atlas count tool for counting imagery products.""" -import logging -from typing import Annotated, Any +import os + +from loguru import logger +from typing import Any from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig from pydantic import Field from akd_ext.mcp.decorators import mcp_tool -from akd_ext.tools.pds.img._types import IMGInstrument, IMGMission, IMGProductType, IMGTarget +from akd_ext.tools.pds.img.types import IMGInstrument, IMGMission, IMGProductType, IMGTarget from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError -logger = logging.getLogger(__name__) - class IMGCountInputSchema(InputSchema): """Input schema for IMGCountTool.""" @@ -48,21 +48,15 @@ class IMGCountInputSchema(InputSchema): stop_time: str | None = Field( None, description="End of time range in ISO 8601 format (e.g., '2020-12-31T23:59:59Z')" ) - sol_min: Annotated[int, Field(ge=0)] | None = Field(None, description="Minimum sol number (Mars missions only)") - sol_max: Annotated[int, Field(ge=0)] | None = Field(None, description="Maximum sol number (Mars missions only)") + sol_min: int | None = Field(None, ge=0, description="Minimum sol number (Mars missions only)") + sol_max: int | None = Field(None, ge=0, description="Maximum sol number (Mars missions only)") product_type: IMGProductType | None = Field( None, description="Product type: 'EDR' for raw data, 'RDR' for processed data" ) - filter_name: str | None = Field( - None, description="Camera filter name (e.g., 'L0', 'R0', 'RED', 'GREEN', 'BLUE')" - ) + filter_name: str | None = Field(None, description="Camera filter name (e.g., 'L0', 'R0', 'RED', 'GREEN', 'BLUE')") frame_type: str | None = Field(None, description="Frame type filter (e.g., 'FULL', 'SUBFRAME')") - exposure_min: Annotated[float, Field(ge=0)] | None = Field( - None, description="Minimum exposure duration in milliseconds" - ) - exposure_max: Annotated[float, Field(ge=0)] | None = Field( - None, description="Maximum exposure duration in milliseconds" - ) + exposure_min: float | None = Field(None, ge=0, description="Minimum exposure duration in milliseconds") + exposure_max: float | None = Field(None, ge=0, description="Maximum exposure duration in milliseconds") local_solar_time: str | None = Field( None, description="Local true solar time filter (e.g., '12:00' for noon images)" ) @@ -74,9 +68,7 @@ class IMGCountOutputSchema(OutputSchema): status: str = Field(..., description="Status of the request: 'success' or 'error'") count: int = Field(..., description="Total number of products matching the criteria") query_time_ms: int = Field(..., description="Query execution time in milliseconds") - filters: dict[str, Any] = Field( - default_factory=dict, description="Applied filters echoed back for reference" - ) + filters: dict[str, Any] = Field(default_factory=dict, description="Applied filters echoed back for reference") error: str | None = Field(None, description="Error message if status is 'error'") @@ -84,8 +76,8 @@ class IMGCountToolConfig(BaseToolConfig): """Configuration for IMGCountTool.""" base_url: str = Field( - default="https://pds-imaging.jpl.nasa.gov/solr/pds_archives/", - description="Base URL for the IMG Atlas API", + default=os.getenv("IMG_BASE_URL", "https://pds-imaging.jpl.nasa.gov/solr/pds_archives/"), + description="IMG Atlas API base URL (override with IMG_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/img/get_facets.py b/akd_ext/tools/pds/img/get_facets.py index 496df59..ec84ec1 100644 --- a/akd_ext/tools/pds/img/get_facets.py +++ b/akd_ext/tools/pds/img/get_facets.py @@ -1,18 +1,16 @@ """IMG Atlas get facets tool for discovering available field values.""" -import logging -from typing import Annotated +import os +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig from pydantic import BaseModel, Field from akd_ext.mcp.decorators import mcp_tool -from akd_ext.tools.pds.img._types import IMGFacetField, IMGInstrument, IMGMission, IMGTarget +from akd_ext.tools.pds.img.types import IMGFacetField, IMGInstrument, IMGMission, IMGTarget from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError -logger = logging.getLogger(__name__) - class IMGFacetValueItem(BaseModel): """A single facet value with its count.""" @@ -38,18 +36,10 @@ class IMGGetFacetsInputSchema(InputSchema): "- 'pds_standard': PDS version (PDS3, PDS4)" ), ) - limit: Annotated[int, Field(ge=1, le=1000)] = Field( - 100, description="Maximum number of values to return" - ) - target: IMGTarget | None = Field( - None, description="Optional target filter to narrow results" - ) - mission: IMGMission | None = Field( - None, description="Optional mission filter to narrow results" - ) - instrument: IMGInstrument | None = Field( - None, description="Optional instrument filter to narrow results" - ) + limit: int = Field(100, ge=1, le=1000, description="Maximum number of values to return") + target: IMGTarget | None = Field(None, description="Optional target filter to narrow results") + mission: IMGMission | None = Field(None, description="Optional mission filter to narrow results") + instrument: IMGInstrument | None = Field(None, description="Optional instrument filter to narrow results") class IMGGetFacetsOutputSchema(OutputSchema): @@ -69,8 +59,8 @@ class IMGGetFacetsToolConfig(BaseToolConfig): """Configuration for IMGGetFacetsTool.""" base_url: str = Field( - default="https://pds-imaging.jpl.nasa.gov/solr/pds_archives/", - description="Base URL for the IMG Atlas API", + default=os.getenv("IMG_BASE_URL", "https://pds-imaging.jpl.nasa.gov/solr/pds_archives/"), + description="IMG Atlas API base URL (override with IMG_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") @@ -139,10 +129,7 @@ async def _arun(self, params: IMGGetFacetsInputSchema) -> IMGGetFacetsOutputSche ) # Convert to output schema format - values = [ - IMGFacetValueItem(value=v.value, count=v.count) - for v in response.values - ] + values = [IMGFacetValueItem(value=v.value, count=v.count) for v in response.values] return IMGGetFacetsOutputSchema( status="success", diff --git a/akd_ext/tools/pds/img/get_product.py b/akd_ext/tools/pds/img/get_product.py index 79c4a1b..99cd877 100644 --- a/akd_ext/tools/pds/img/get_product.py +++ b/akd_ext/tools/pds/img/get_product.py @@ -1,6 +1,8 @@ """IMG Atlas get product tool for retrieving detailed product metadata.""" -import logging +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -9,8 +11,6 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError -logger = logging.getLogger(__name__) - class IMGProductDetailURLs(BaseModel): """URL container for IMG product detail.""" @@ -62,8 +62,8 @@ class IMGGetProductToolConfig(BaseToolConfig): """Configuration for IMGGetProductTool.""" base_url: str = Field( - default="https://pds-imaging.jpl.nasa.gov/solr/pds_archives/", - description="Base URL for the IMG Atlas API", + default=os.getenv("IMG_BASE_URL", "https://pds-imaging.jpl.nasa.gov/solr/pds_archives/"), + description="IMG Atlas API base URL (override with IMG_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/img/search.py b/akd_ext/tools/pds/img/search.py index 9074e38..6ae121d 100644 --- a/akd_ext/tools/pds/img/search.py +++ b/akd_ext/tools/pds/img/search.py @@ -1,14 +1,14 @@ """IMG Atlas search tool for planetary imagery products.""" -import logging -from typing import Annotated +import os +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig from pydantic import BaseModel, Field from akd_ext.mcp.decorators import mcp_tool -from akd_ext.tools.pds.img._types import ( +from akd_ext.tools.pds.img.types import ( IMGInstrument, IMGMission, IMGProductType, @@ -18,8 +18,6 @@ ) from akd_ext.tools.pds.utils.img_client import IMGAtlasClient, IMGAtlasClientError -logger = logging.getLogger(__name__) - class IMGImageSize(BaseModel): """Image dimensions in pixels.""" @@ -88,30 +86,22 @@ class IMGSearchInputSchema(InputSchema): stop_time: str | None = Field( None, description="End of time range in ISO 8601 format (e.g., '2020-12-31T23:59:59Z')" ) - sol_min: Annotated[int, Field(ge=0)] | None = Field(None, description="Minimum sol number (Mars missions only)") - sol_max: Annotated[int, Field(ge=0)] | None = Field(None, description="Maximum sol number (Mars missions only)") + sol_min: int | None = Field(None, ge=0, description="Minimum sol number (Mars missions only)") + sol_max: int | None = Field(None, ge=0, description="Maximum sol number (Mars missions only)") product_type: IMGProductType | None = Field( None, description="Product type: 'EDR' for raw data, 'RDR' for processed data" ) - filter_name: str | None = Field( - None, description="Camera filter name (e.g., 'L0', 'R0', 'RED', 'GREEN', 'BLUE')" - ) + filter_name: str | None = Field(None, description="Camera filter name (e.g., 'L0', 'R0', 'RED', 'GREEN', 'BLUE')") frame_type: str | None = Field(None, description="Frame type filter (e.g., 'FULL', 'SUBFRAME')") - exposure_min: Annotated[float, Field(ge=0)] | None = Field( - None, description="Minimum exposure duration in milliseconds" - ) - exposure_max: Annotated[float, Field(ge=0)] | None = Field( - None, description="Maximum exposure duration in milliseconds" - ) + exposure_min: float | None = Field(None, ge=0, description="Minimum exposure duration in milliseconds") + exposure_max: float | None = Field(None, ge=0, description="Maximum exposure duration in milliseconds") local_solar_time: str | None = Field( None, description="Local true solar time filter (e.g., '12:00' for noon images)" ) - sort_by: IMGSortField | None = Field( - None, description="Field to sort results by" - ) + sort_by: IMGSortField | None = Field(None, description="Field to sort results by") sort_order: IMGSortOrder = Field("desc", description="Sort direction: 'asc' or 'desc'") - rows: Annotated[int, Field(ge=1, le=1000)] = Field(100, description="Maximum number of products to return") - start: Annotated[int, Field(ge=0)] = Field(0, description="Pagination offset (for retrieving additional pages)") + rows: int = Field(100, ge=1, le=1000, description="Maximum number of products to return") + start: int = Field(0, ge=0, description="Pagination offset (for retrieving additional pages)") class IMGSearchOutputSchema(OutputSchema): @@ -131,8 +121,8 @@ class IMGSearchToolConfig(BaseToolConfig): """Configuration for IMGSearchTool.""" base_url: str = Field( - default="https://pds-imaging.jpl.nasa.gov/solr/pds_archives/", - description="Base URL for the IMG Atlas API", + default=os.getenv("IMG_BASE_URL", "https://pds-imaging.jpl.nasa.gov/solr/pds_archives/"), + description="IMG Atlas API base URL (override with IMG_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/img/_types.py b/akd_ext/tools/pds/img/types.py similarity index 99% rename from akd_ext/tools/pds/img/_types.py rename to akd_ext/tools/pds/img/types.py index 60c3914..c7142d9 100644 --- a/akd_ext/tools/pds/img/_types.py +++ b/akd_ext/tools/pds/img/types.py @@ -70,4 +70,4 @@ "FRAME_TYPE", "FILTER_NAME", "pds_standard", -] \ No newline at end of file +] diff --git a/akd_ext/tools/pds/ode/count_products.py b/akd_ext/tools/pds/ode/count_products.py index de66769..6624806 100644 --- a/akd_ext/tools/pds/ode/count_products.py +++ b/akd_ext/tools/pds/ode/count_products.py @@ -1,7 +1,8 @@ """Count products matching criteria without retrieving them.""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +12,6 @@ from akd_ext.tools.pds.ode.types import TargetType from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError -logger = logging.getLogger(__name__) - class ODECountProductsInputSchema(InputSchema): """Input schema for ODECountProductsTool.""" @@ -21,10 +20,10 @@ class ODECountProductsInputSchema(InputSchema): ihid: str = Field(..., description="Instrument Host ID (e.g., 'MRO', 'LRO', 'MESS')") iid: str = Field(..., description="Instrument ID (e.g., 'HIRISE', 'CTX', 'LROC', 'MDIS')") pt: str = Field(..., description="Product Type (e.g., 'RDRV11', 'EDR')") - minlat: Annotated[float, Field(ge=-90, le=90)] | None = Field(None, description="Minimum latitude filter") - maxlat: Annotated[float, Field(ge=-90, le=90)] | None = Field(None, description="Maximum latitude filter") - westlon: Annotated[float, Field(ge=0, le=360)] | None = Field(None, description="Western longitude filter") - eastlon: Annotated[float, Field(ge=0, le=360)] | None = Field(None, description="Eastern longitude filter") + minlat: float | None = Field(None, ge=-90, le=90, description="Minimum latitude filter") + maxlat: float | None = Field(None, ge=-90, le=90, description="Maximum latitude filter") + westlon: float | None = Field(None, ge=0, le=360, description="Western longitude filter") + eastlon: float | None = Field(None, ge=0, le=360, description="Eastern longitude filter") minobtime: str | None = Field( None, description="Minimum observation time in UTC format (e.g., '2020-01-01' or '2020-01-01T00:00:00')" ) @@ -49,8 +48,8 @@ class ODECountProductsToolConfig(BaseToolConfig): """Configuration for ODECountProductsTool.""" base_url: str = Field( - default="https://oderest.rsl.wustl.edu/live2/", - description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + default=os.getenv("ODE_BASE_URL", "https://oderest.rsl.wustl.edu/live2/"), + description="ODE API base URL (override with ODE_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/ode/get_feature_bounds.py b/akd_ext/tools/pds/ode/get_feature_bounds.py index 2ee551f..21f7b3f 100644 --- a/akd_ext/tools/pds/ode/get_feature_bounds.py +++ b/akd_ext/tools/pds/ode/get_feature_bounds.py @@ -1,6 +1,8 @@ """Get geographic bounds (lat/lon) for a named planetary feature.""" -import logging +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -10,8 +12,6 @@ from akd_ext.tools.pds.ode.types import TargetType from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError -logger = logging.getLogger(__name__) - class ODEGetFeatureBoundsInputSchema(InputSchema): """Input schema for ODEGetFeatureBoundsTool.""" @@ -39,8 +39,8 @@ class ODEGetFeatureBoundsToolConfig(BaseToolConfig): """Configuration for ODEGetFeatureBoundsTool.""" base_url: str = Field( - default="https://oderest.rsl.wustl.edu/live2/", - description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + default=os.getenv("ODE_BASE_URL", "https://oderest.rsl.wustl.edu/live2/"), + description="ODE API base URL (override with ODE_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/ode/list_feature_classes.py b/akd_ext/tools/pds/ode/list_feature_classes.py index 9f3c885..c649999 100644 --- a/akd_ext/tools/pds/ode/list_feature_classes.py +++ b/akd_ext/tools/pds/ode/list_feature_classes.py @@ -1,6 +1,8 @@ """Get available feature types for a planetary target.""" -import logging +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -10,8 +12,6 @@ from akd_ext.tools.pds.ode.types import TargetType from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError -logger = logging.getLogger(__name__) - class ODEListFeatureClassesInputSchema(InputSchema): """Input schema for ODEListFeatureClassesTool.""" @@ -33,8 +33,8 @@ class ODEListFeatureClassesToolConfig(BaseToolConfig): """Configuration for ODEListFeatureClassesTool.""" base_url: str = Field( - default="https://oderest.rsl.wustl.edu/live2/", - description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + default=os.getenv("ODE_BASE_URL", "https://oderest.rsl.wustl.edu/live2/"), + description="ODE API base URL (override with ODE_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/ode/list_feature_names.py b/akd_ext/tools/pds/ode/list_feature_names.py index a381644..0928493 100644 --- a/akd_ext/tools/pds/ode/list_feature_names.py +++ b/akd_ext/tools/pds/ode/list_feature_names.py @@ -1,7 +1,8 @@ """Get names of planetary features by class.""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,7 +12,6 @@ from akd_ext.tools.pds.ode.types import TargetType from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError -logger = logging.getLogger(__name__) MAX_FEATURE_NAMES_LIMIT = 50 # Max feature names @@ -21,7 +21,7 @@ class ODEListFeatureNamesInputSchema(InputSchema): target: TargetType = Field(..., description="Planetary body to query") feature_class: str = Field(..., description="Feature type (e.g., 'crater', 'chasma', 'mons', 'vallis', 'mare')") - limit: Annotated[int, Field(ge=1, le=50)] = Field(50, description="Maximum names to return (default 50, max 50)") + limit: int = Field(50, ge=1, le=50, description="Maximum names to return (default 50, max 50)") class ODEListFeatureNamesOutputSchema(OutputSchema): @@ -39,8 +39,8 @@ class ODEListFeatureNamesToolConfig(BaseToolConfig): """Configuration for ODEListFeatureNamesTool.""" base_url: str = Field( - default="https://oderest.rsl.wustl.edu/live2/", - description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + default=os.getenv("ODE_BASE_URL", "https://oderest.rsl.wustl.edu/live2/"), + description="ODE API base URL (override with ODE_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/ode/list_instruments.py b/akd_ext/tools/pds/ode/list_instruments.py index 2bce73e..2d382e1 100644 --- a/akd_ext/tools/pds/ode/list_instruments.py +++ b/akd_ext/tools/pds/ode/list_instruments.py @@ -1,6 +1,8 @@ """Get valid instrument and product type combinations for a planetary target.""" -import logging +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -10,7 +12,6 @@ from akd_ext.tools.pds.ode.types import TargetType from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError -logger = logging.getLogger(__name__) MAX_INSTRUMENTS_LIMIT = 25 # Max instruments returned @@ -31,9 +32,7 @@ class ODEListInstrumentsInputSchema(InputSchema): """Input schema for ODEListInstrumentsTool.""" target: TargetType = Field(..., description="Planetary body to query") - ihid: str | None = Field( - None, description="Filter by Instrument Host ID (e.g., 'MRO', 'LRO', 'MESS'). Optional." - ) + ihid: str | None = Field(None, description="Filter by Instrument Host ID (e.g., 'MRO', 'LRO', 'MESS'). Optional.") iid: str | None = Field(None, description="Filter by Instrument ID (e.g., 'HIRISE', 'CTX', 'LROC'). Optional.") limit: int = Field(25, ge=1, le=25, description="Maximum combinations to return (default 25, max 25)") @@ -56,8 +55,8 @@ class ODEListInstrumentsToolConfig(BaseToolConfig): """Configuration for ODEListInstrumentsTool.""" base_url: str = Field( - default="https://oderest.rsl.wustl.edu/live2/", - description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + default=os.getenv("ODE_BASE_URL", "https://oderest.rsl.wustl.edu/live2/"), + description="ODE API base URL (override with ODE_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/ode/search_products.py b/akd_ext/tools/pds/ode/search_products.py index d861425..c2c4b29 100644 --- a/akd_ext/tools/pds/ode/search_products.py +++ b/akd_ext/tools/pds/ode/search_products.py @@ -1,7 +1,8 @@ """Search ODE planetary data products with geographic and temporal filtering.""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,7 +12,6 @@ from akd_ext.tools.pds.ode.types import TargetType from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError -logger = logging.getLogger(__name__) # Response size limits to prevent overwhelming LLM context windows MAX_SEARCH_LIMIT = 10 # Max products per search @@ -64,18 +64,18 @@ class ODESearchProductsInputSchema(InputSchema): iid: str | None = Field(None, description="Instrument ID (e.g., 'HIRISE', 'CTX', 'LROC', 'MDIS')") pt: str | None = Field(None, description="Product Type (e.g., 'RDRV11', 'EDR')") pdsid: str | None = Field(None, description="PDS Product ID for direct lookup (e.g., 'ESP_012600_1655_RED')") - minlat: Annotated[float, Field(ge=-90, le=90)] | None = Field(None, description="Minimum latitude (-90 to 90)") - maxlat: Annotated[float, Field(ge=-90, le=90)] | None = Field(None, description="Maximum latitude (-90 to 90)") - westlon: Annotated[float, Field(ge=0, le=360)] | None = Field(None, description="Western longitude (0 to 360)") - eastlon: Annotated[float, Field(ge=0, le=360)] | None = Field(None, description="Eastern longitude (0 to 360)") + minlat: float | None = Field(None, ge=-90, le=90, description="Minimum latitude (-90 to 90)") + maxlat: float | None = Field(None, ge=-90, le=90, description="Maximum latitude (-90 to 90)") + westlon: float | None = Field(None, ge=0, le=360, description="Western longitude (0 to 360)") + eastlon: float | None = Field(None, ge=0, le=360, description="Eastern longitude (0 to 360)") minobtime: str | None = Field( None, description="Minimum observation time in UTC format (e.g., '2018-05-01' or '2018-05-01T00:00:00')" ) maxobtime: str | None = Field( None, description="Maximum observation time in UTC format (e.g., '2018-08-31' or '2018-08-31T23:59:59')" ) - limit: Annotated[int, Field(ge=1, le=10)] = Field(10, description="Maximum products to return (default 10)") - offset: Annotated[int, Field(ge=0)] = Field(0, description="Pagination offset (default 0)") + limit: int = Field(10, ge=1, le=10, description="Maximum products to return (default 10)") + offset: int = Field(0, ge=0, description="Pagination offset (default 0)") class ODESearchProductsOutputSchema(OutputSchema): @@ -97,8 +97,8 @@ class ODESearchProductsToolConfig(BaseToolConfig): """Configuration for ODESearchProductsTool.""" base_url: str = Field( - default="https://oderest.rsl.wustl.edu/live2/", - description="ODE API base URL (can be overridden with ODE_BASE_URL env var)", + default=os.getenv("ODE_BASE_URL", "https://oderest.rsl.wustl.edu/live2/"), + description="ODE API base URL (override with ODE_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/opus/opus_count.py b/akd_ext/tools/pds/opus/opus_count.py index 2b80805..676dac6 100644 --- a/akd_ext/tools/pds/opus/opus_count.py +++ b/akd_ext/tools/pds/opus/opus_count.py @@ -1,6 +1,8 @@ """OPUS Count Tool - Count observations matching criteria.""" -import logging +import os + +from loguru import logger from typing import Any from akd._base import InputSchema, OutputSchema @@ -11,8 +13,6 @@ from akd_ext.tools.pds.opus.types import OPUS_INSTRUMENTS, OPUS_MISSIONS, OPUS_PLANETS from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError -logger = logging.getLogger(__name__) - class OPUSCountInputSchema(InputSchema): """Input schema for OPUSCountTool. @@ -69,8 +69,8 @@ class OPUSCountToolConfig(BaseToolConfig): """Configuration for OPUSCountTool.""" base_url: str = Field( - default="https://opus.pds-rings.seti.org/opus/api/", - description="OPUS API base URL", + default=os.getenv("OPUS_BASE_URL", "https://opus.pds-rings.seti.org/opus/api/"), + description="OPUS API base URL (override with OPUS_BASE_URL env var)", ) timeout: float = Field( default=30.0, diff --git a/akd_ext/tools/pds/opus/opus_get_files.py b/akd_ext/tools/pds/opus/opus_get_files.py index d620688..d285382 100644 --- a/akd_ext/tools/pds/opus/opus_get_files.py +++ b/akd_ext/tools/pds/opus/opus_get_files.py @@ -1,6 +1,8 @@ """OPUS Get Files Tool - Get downloadable file URLs for observations.""" -import logging +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -9,8 +11,6 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError -logger = logging.getLogger(__name__) - class OPUSBrowseImages(BaseModel): """Browse image URLs for an observation.""" @@ -57,8 +57,8 @@ class OPUSGetFilesToolConfig(BaseToolConfig): """Configuration for OPUSGetFilesTool.""" base_url: str = Field( - default="https://opus.pds-rings.seti.org/opus/api/", - description="OPUS API base URL", + default=os.getenv("OPUS_BASE_URL", "https://opus.pds-rings.seti.org/opus/api/"), + description="OPUS API base URL (override with OPUS_BASE_URL env var)", ) timeout: float = Field( default=30.0, diff --git a/akd_ext/tools/pds/opus/opus_get_metadata.py b/akd_ext/tools/pds/opus/opus_get_metadata.py index 35e8347..5a86511 100644 --- a/akd_ext/tools/pds/opus/opus_get_metadata.py +++ b/akd_ext/tools/pds/opus/opus_get_metadata.py @@ -1,6 +1,8 @@ """OPUS Get Metadata Tool - Get detailed metadata for observations.""" -import logging +import os + +from loguru import logger from typing import Any from akd._base import InputSchema, OutputSchema @@ -10,8 +12,6 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError -logger = logging.getLogger(__name__) - class OPUSGetMetadataInputSchema(InputSchema): """Input schema for OPUSGetMetadataTool.""" @@ -61,8 +61,8 @@ class OPUSGetMetadataToolConfig(BaseToolConfig): """Configuration for OPUSGetMetadataTool.""" base_url: str = Field( - default="https://opus.pds-rings.seti.org/opus/api/", - description="OPUS API base URL", + default=os.getenv("OPUS_BASE_URL", "https://opus.pds-rings.seti.org/opus/api/"), + description="OPUS API base URL (override with OPUS_BASE_URL env var)", ) timeout: float = Field( default=30.0, @@ -125,7 +125,9 @@ async def _arun(self, params: OPUSGetMetadataInputSchema) -> OPUSGetMetadataOutp image=metadata.image_constraints if metadata.image_constraints else None, wavelength=metadata.wavelength_constraints if metadata.wavelength_constraints else None, ring_geometry=metadata.ring_geometry_constraints if metadata.ring_geometry_constraints else None, - surface_geometry=metadata.surface_geometry_constraints if metadata.surface_geometry_constraints else None, + surface_geometry=metadata.surface_geometry_constraints + if metadata.surface_geometry_constraints + else None, instrument_specific=metadata.instrument_constraints if metadata.instrument_constraints else None, ) diff --git a/akd_ext/tools/pds/opus/opus_search.py b/akd_ext/tools/pds/opus/opus_search.py index 9319b3c..13eec4f 100644 --- a/akd_ext/tools/pds/opus/opus_search.py +++ b/akd_ext/tools/pds/opus/opus_search.py @@ -1,7 +1,8 @@ """OPUS Search Tool - Search outer planets observations.""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +12,6 @@ from akd_ext.tools.pds.opus.types import OPUS_INSTRUMENTS, OPUS_MISSIONS, OPUS_PLANETS from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError -logger = logging.getLogger(__name__) - class OPUSObservationSummary(BaseModel): """Observation item in search results.""" @@ -65,12 +64,15 @@ class OPUSSearchInputSchema(InputSchema): None, description="End of time range (ISO 8601 format)", ) - limit: Annotated[int, Field(ge=1, le=1000)] = Field( + limit: int = Field( 100, + ge=1, + le=1000, description="Maximum observations to return", ) - startobs: Annotated[int, Field(ge=1)] = Field( + startobs: int = Field( 1, + ge=1, description="Starting observation index for pagination", ) @@ -93,8 +95,8 @@ class OPUSSearchToolConfig(BaseToolConfig): """Configuration for OPUSSearchTool.""" base_url: str = Field( - default="https://opus.pds-rings.seti.org/opus/api/", - description="OPUS API base URL", + default=os.getenv("OPUS_BASE_URL", "https://opus.pds-rings.seti.org/opus/api/"), + description="OPUS API base URL (override with OPUS_BASE_URL env var)", ) timeout: float = Field( default=30.0, diff --git a/akd_ext/tools/pds/pds4/crawl_context_product.py b/akd_ext/tools/pds/pds4/crawl_context_product.py index bf36ce8..428893c 100644 --- a/akd_ext/tools/pds/pds4/crawl_context_product.py +++ b/akd_ext/tools/pds/pds4/crawl_context_product.py @@ -1,6 +1,8 @@ """Crawl a single PDS Context product and return other PDS Context products it is associated with.""" -import logging +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -9,8 +11,6 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class PDS4CrawlContextProductInputSchema(InputSchema): """Input schema for PDS4CrawlContextProductTool.""" @@ -34,7 +34,10 @@ class PDS4CrawlContextProductOutputSchema(OutputSchema): class PDS4CrawlContextProductToolConfig(BaseToolConfig): """Configuration for PDS4CrawlContextProductTool.""" - base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + base_url: str = Field( + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", + ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum retry attempts") diff --git a/akd_ext/tools/pds/pds4/get_product.py b/akd_ext/tools/pds/pds4/get_product.py index 7ea5bb0..bce6967 100644 --- a/akd_ext/tools/pds/pds4/get_product.py +++ b/akd_ext/tools/pds/pds4/get_product.py @@ -1,6 +1,8 @@ """Get a single PDS product by its URN identifier.""" -import logging +import os + +from loguru import logger from typing import Any from akd._base import InputSchema, OutputSchema @@ -10,8 +12,6 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class PDS4GetProductInputSchema(InputSchema): """Input schema for PDS4GetProductTool.""" @@ -28,7 +28,10 @@ class PDS4GetProductOutputSchema(OutputSchema): class PDS4GetProductToolConfig(BaseToolConfig): """Configuration for PDS4GetProductTool.""" - base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + base_url: str = Field( + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", + ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum retry attempts") diff --git a/akd_ext/tools/pds/pds4/search_bundles.py b/akd_ext/tools/pds/pds4/search_bundles.py index c9defa2..380f1b3 100644 --- a/akd_ext/tools/pds/pds4/search_bundles.py +++ b/akd_ext/tools/pds/pds4/search_bundles.py @@ -1,7 +1,8 @@ """Search for bundles in PDS4 with comprehensive results.""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +12,6 @@ from akd_ext.tools.pds.pds4.types import PROCESSING_LEVEL from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class BundleSummary(BaseModel): """Bundle item in search results.""" @@ -36,19 +35,13 @@ class PDS4SearchBundlesInputSchema(InputSchema): None, description="Start of time range (ISO 8601 format, e.g., '2020-01-01T00:00:00Z')" ) end_time: str | None = Field(None, description="End of time range (ISO 8601 format)") - processing_level: PROCESSING_LEVEL | None = Field( - None, description="Filter by processing level" - ) - limit: Annotated[int, Field(ge=0, le=100)] = Field( - 0, description="Number of actual products to return (set to 0 for facets only)" - ) + processing_level: PROCESSING_LEVEL | None = Field(None, description="Filter by processing level") + limit: int = Field(0, ge=0, le=100, description="Number of actual products to return (set to 0 for facets only)") facet_fields: str | None = Field( None, description="Comma-separated list of fields to facet on (e.g., 'pds:Identification_Area.pds:title,lidvid')", ) - facet_limit: Annotated[int, Field(ge=1, le=100)] = Field( - 25, description="Maximum number of facet values to return (default: 25)" - ) + facet_limit: int = Field(25, ge=1, le=100, description="Maximum number of facet values to return (default: 25)") class PDS4SearchBundlesOutputSchema(OutputSchema): @@ -66,8 +59,8 @@ class PDS4SearchBundlesToolConfig(BaseToolConfig): """Configuration for PDS4SearchBundlesTool.""" base_url: str = Field( - default="https://pds.mcp.nasa.gov/api/search/1/", - description="PDS4 API base URL (can be overridden with PDS4_BASE_URL env var)", + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/pds4/search_collections.py b/akd_ext/tools/pds/pds4/search_collections.py index 886ab5b..4e40fa0 100644 --- a/akd_ext/tools/pds/pds4/search_collections.py +++ b/akd_ext/tools/pds/pds4/search_collections.py @@ -1,7 +1,8 @@ """Search PDS data collections filtered by instrument, target, instrument host, and investigation.""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +12,6 @@ from akd_ext.tools.pds.pds4.types import PROCESSING_LEVEL from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class CollectionSummary(BaseModel): """Collection item in search results.""" @@ -50,10 +49,8 @@ class PDS4SearchCollectionsInputSchema(InputSchema): end_time: str | None = Field( None, description="End of time range in ISO 8601 format (e.g., '2021-01-01T00:00:00Z')" ) - processing_level: PROCESSING_LEVEL | None = Field( - None, description="Filter by calibration level" - ) - limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + processing_level: PROCESSING_LEVEL | None = Field(None, description="Filter by calibration level") + limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") class PDS4SearchCollectionsOutputSchema(OutputSchema): @@ -70,8 +67,8 @@ class PDS4SearchCollectionsToolConfig(BaseToolConfig): """Configuration for PDS4SearchCollectionsTool.""" base_url: str = Field( - default="https://pds.mcp.nasa.gov/api/search/1/", - description="PDS4 API base URL", + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum retry attempts") diff --git a/akd_ext/tools/pds/pds4/search_instrument_hosts.py b/akd_ext/tools/pds/pds4/search_instrument_hosts.py index a037e8f..713bf7a 100644 --- a/akd_ext/tools/pds/pds4/search_instrument_hosts.py +++ b/akd_ext/tools/pds/pds4/search_instrument_hosts.py @@ -1,7 +1,8 @@ """Search PDS Context products that are Instrument Hosts (spacecraft, rovers, telescopes).""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +12,6 @@ from akd_ext.tools.pds.pds4.types import INSTRUMENT_HOST_TYPE from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class InstrumentHostSummary(BaseModel): """Instrument host item in search results.""" @@ -30,10 +29,8 @@ class PDS4SearchInstrumentHostsInputSchema(InputSchema): keywords: str | None = Field( None, description="Space-delimited search terms (e.g. 'mars rover', 'voyager spacecraft')" ) - instrument_host_type: INSTRUMENT_HOST_TYPE | None = Field( - None, description="Filter by instrument host type" - ) - limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + instrument_host_type: INSTRUMENT_HOST_TYPE | None = Field(None, description="Filter by instrument host type") + limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") class PDS4SearchInstrumentHostsOutputSchema(OutputSchema): @@ -51,13 +48,18 @@ class PDS4SearchInstrumentHostsOutputSchema(OutputSchema): class PDS4SearchInstrumentHostsToolConfig(BaseToolConfig): """Configuration for PDS4SearchInstrumentHostsTool.""" - base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + base_url: str = Field( + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", + ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum retry attempts") @mcp_tool -class PDS4SearchInstrumentHostsTool(BaseTool[PDS4SearchInstrumentHostsInputSchema, PDS4SearchInstrumentHostsOutputSchema]): +class PDS4SearchInstrumentHostsTool( + BaseTool[PDS4SearchInstrumentHostsInputSchema, PDS4SearchInstrumentHostsOutputSchema] +): """Search PDS Context products that are Instrument Hosts (spacecraft, rovers, telescopes). Instrument Hosts are platforms that carry scientific instruments: spacecraft, rovers, landers, telescopes. diff --git a/akd_ext/tools/pds/pds4/search_instruments.py b/akd_ext/tools/pds/pds4/search_instruments.py index 3125762..ae73351 100644 --- a/akd_ext/tools/pds/pds4/search_instruments.py +++ b/akd_ext/tools/pds/pds4/search_instruments.py @@ -1,7 +1,8 @@ """Search the latest-versioned instances of PDS Context products that are Instruments.""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +12,6 @@ from akd_ext.tools.pds.pds4.types import INSTRUMENT_TYPE from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class InstrumentSummary(BaseModel): """Instrument item in search results.""" @@ -31,7 +30,7 @@ class PDS4SearchInstrumentsInputSchema(InputSchema): None, description="Space-delimited search terms (e.g. 'camera mars', 'spectrometer cassini')" ) instrument_type: INSTRUMENT_TYPE | None = Field(None, description="Filter by instrument type") - limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") class PDS4SearchInstrumentsOutputSchema(OutputSchema): @@ -47,7 +46,10 @@ class PDS4SearchInstrumentsOutputSchema(OutputSchema): class PDS4SearchInstrumentsToolConfig(BaseToolConfig): """Configuration for PDS4SearchInstrumentsTool.""" - base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + base_url: str = Field( + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", + ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum retry attempts") diff --git a/akd_ext/tools/pds/pds4/search_investigations.py b/akd_ext/tools/pds/pds4/search_investigations.py index b87720c..6d628e2 100644 --- a/akd_ext/tools/pds/pds4/search_investigations.py +++ b/akd_ext/tools/pds/pds4/search_investigations.py @@ -1,7 +1,8 @@ """Search PDS Context products that are Investigations (missions/projects).""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -10,8 +11,6 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class InvestigationSummary(BaseModel): """Investigation item in search results.""" @@ -30,7 +29,7 @@ class PDS4SearchInvestigationsInputSchema(InputSchema): keywords: str | None = Field( None, description="Space-delimited search terms (e.g. 'mars rover', 'jupiter cassini')" ) - limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") class PDS4SearchInvestigationsOutputSchema(OutputSchema): @@ -48,7 +47,10 @@ class PDS4SearchInvestigationsOutputSchema(OutputSchema): class PDS4SearchInvestigationsToolConfig(BaseToolConfig): """Configuration for PDS4SearchInvestigationsTool.""" - base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + base_url: str = Field( + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", + ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum retry attempts") diff --git a/akd_ext/tools/pds/pds4/search_products.py b/akd_ext/tools/pds/pds4/search_products.py index 0d963c6..d3bb57c 100644 --- a/akd_ext/tools/pds/pds4/search_products.py +++ b/akd_ext/tools/pds/pds4/search_products.py @@ -1,7 +1,8 @@ """Search PDS observational products with advanced filtering.""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +12,6 @@ from akd_ext.tools.pds.pds4.types import PROCESSING_LEVEL from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class ProductSummary(BaseModel): """Product item in search results.""" @@ -37,25 +36,19 @@ class PDS4SearchProductsInputSchema(InputSchema): end_time: str | None = Field( None, description="End of time range in ISO 8601 format (e.g., '2021-01-01T00:00:00Z')" ) - processing_level: PROCESSING_LEVEL | None = Field( - None, description="Filter by calibration level" - ) - bbox_north: Annotated[float, Field(ge=-90, le=90)] | None = Field( - None, description="North bounding coordinate (latitude, -90 to 90)" - ) - bbox_south: Annotated[float, Field(ge=-90, le=90)] | None = Field( - None, description="South bounding coordinate (latitude, -90 to 90)" - ) - bbox_east: Annotated[float, Field(ge=-180, le=180)] | None = Field( - None, description="East bounding coordinate (longitude, -180 to 180)" + processing_level: PROCESSING_LEVEL | None = Field(None, description="Filter by calibration level") + bbox_north: float | None = Field(None, ge=-90, le=90, description="North bounding coordinate (latitude, -90 to 90)") + bbox_south: float | None = Field(None, ge=-90, le=90, description="South bounding coordinate (latitude, -90 to 90)") + bbox_east: float | None = Field( + None, ge=-180, le=180, description="East bounding coordinate (longitude, -180 to 180)" ) - bbox_west: Annotated[float, Field(ge=-180, le=180)] | None = Field( - None, description="West bounding coordinate (longitude, -180 to 180)" + bbox_west: float | None = Field( + None, ge=-180, le=180, description="West bounding coordinate (longitude, -180 to 180)" ) ref_lid_target: str | None = Field( None, description="URN identifier for target (e.g., 'urn:nasa:pds:context:target:planet.mars')" ) - limit: Annotated[int, Field(ge=0, le=100)] = Field(100, description="Maximum results to return (default 100)") + limit: int = Field(100, ge=0, le=100, description="Maximum results to return (default 100)") class PDS4SearchProductsOutputSchema(OutputSchema): @@ -72,8 +65,8 @@ class PDS4SearchProductsToolConfig(BaseToolConfig): """Configuration for PDS4SearchProductsTool.""" base_url: str = Field( - default="https://pds.mcp.nasa.gov/api/search/1/", - description="PDS4 API base URL (can be overridden with PDS4_BASE_URL env var)", + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/pds4/search_targets.py b/akd_ext/tools/pds/pds4/search_targets.py index ee6cbd5..71bc5f6 100644 --- a/akd_ext/tools/pds/pds4/search_targets.py +++ b/akd_ext/tools/pds/pds4/search_targets.py @@ -1,7 +1,8 @@ """Search PDS Context products that are Targets (celestial bodies, phenomena).""" -import logging -from typing import Annotated +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +12,6 @@ from akd_ext.tools.pds.pds4.types import TARGET_TYPE from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError -logger = logging.getLogger(__name__) - class TargetSummary(BaseModel): """Target item in search results.""" @@ -32,7 +31,7 @@ class PDS4SearchTargetsInputSchema(InputSchema): None, description="Space-delimited search terms (e.g. 'jupiter moon', 'asteroid belt')" ) target_type: TARGET_TYPE | None = Field(None, description="Filter by target type") - limit: Annotated[int, Field(ge=0, le=100)] = Field(10, description="Max results (default 10)") + limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") class PDS4SearchTargetsOutputSchema(OutputSchema): @@ -48,7 +47,10 @@ class PDS4SearchTargetsOutputSchema(OutputSchema): class PDS4SearchTargetsToolConfig(BaseToolConfig): """Configuration for PDS4SearchTargetsTool.""" - base_url: str = Field(default="https://pds.mcp.nasa.gov/api/search/1/", description="PDS4 API base URL") + base_url: str = Field( + default=os.getenv("PDS4_BASE_URL", "https://pds.mcp.nasa.gov/api/search/1/"), + description="PDS4 API base URL (override with PDS4_BASE_URL env var)", + ) timeout: float = Field(default=30.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum retry attempts") diff --git a/akd_ext/tools/pds/pds_catalog/get_dataset.py b/akd_ext/tools/pds/pds_catalog/get_dataset.py index ae54440..3fc8b53 100644 --- a/akd_ext/tools/pds/pds_catalog/get_dataset.py +++ b/akd_ext/tools/pds/pds_catalog/get_dataset.py @@ -1,6 +1,6 @@ """Get detailed information about a specific PDS dataset.""" -import logging +from loguru import logger from typing import Any from akd._base import InputSchema, OutputSchema @@ -8,9 +8,12 @@ from pydantic import Field from akd_ext.mcp.decorators import mcp_tool -from akd_ext.tools.pds.utils.pds_catalog_client import FIELD_PROFILES, PDSCatalogClient, PDSCatalogClientError, filter_dataset - -logger = logging.getLogger(__name__) +from akd_ext.tools.pds.utils.pds_catalog_client import ( + FIELD_PROFILES, + PDSCatalogClient, + PDSCatalogClientError, + filter_dataset, +) class PDSCatalogGetDatasetInputSchema(InputSchema): diff --git a/akd_ext/tools/pds/pds_catalog/list_missions.py b/akd_ext/tools/pds/pds_catalog/list_missions.py index 476ea36..7a48b82 100644 --- a/akd_ext/tools/pds/pds_catalog/list_missions.py +++ b/akd_ext/tools/pds/pds_catalog/list_missions.py @@ -1,7 +1,6 @@ """List missions available in the PDS catalog.""" -import logging -from typing import Annotated +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +10,6 @@ from akd_ext.tools.pds.pds_catalog.types import PDS_NODE from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClient, PDSCatalogClientError -logger = logging.getLogger(__name__) - class PDSCatalogMissionItem(BaseModel): """Mission item in list results.""" @@ -29,8 +26,10 @@ class PDSCatalogListMissionsInputSchema(InputSchema): None, description="Filter by PDS node (optional)", ) - limit: Annotated[int, Field(ge=1, le=50)] = Field( + limit: int = Field( 50, + ge=1, + le=50, description="Maximum missions to return (default 50)", ) diff --git a/akd_ext/tools/pds/pds_catalog/list_targets.py b/akd_ext/tools/pds/pds_catalog/list_targets.py index 9fcc95a..1336a29 100644 --- a/akd_ext/tools/pds/pds_catalog/list_targets.py +++ b/akd_ext/tools/pds/pds_catalog/list_targets.py @@ -1,7 +1,6 @@ """List targets (celestial bodies) available in the PDS catalog.""" -import logging -from typing import Annotated +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -11,8 +10,6 @@ from akd_ext.tools.pds.pds_catalog.types import PDS_NODE from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClient, PDSCatalogClientError -logger = logging.getLogger(__name__) - class PDSCatalogTargetItem(BaseModel): """Target item in list results.""" @@ -29,8 +26,10 @@ class PDSCatalogListTargetsInputSchema(InputSchema): None, description="Filter by PDS node (optional)", ) - limit: Annotated[int, Field(ge=1, le=50)] = Field( + limit: int = Field( 50, + ge=1, + le=50, description="Maximum targets to return (default 50)", ) diff --git a/akd_ext/tools/pds/pds_catalog/search.py b/akd_ext/tools/pds/pds_catalog/search.py index 7e7597f..c67cbac 100644 --- a/akd_ext/tools/pds/pds_catalog/search.py +++ b/akd_ext/tools/pds/pds_catalog/search.py @@ -1,8 +1,8 @@ """Search the PDS dataset catalog.""" -import logging +from loguru import logger from datetime import date -from typing import Annotated, Any +from typing import Any from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -18,8 +18,6 @@ filter_dataset, ) -logger = logging.getLogger(__name__) - class PDSCatalogSearchInputSchema(InputSchema): """Input schema for PDSCatalogSearchTool.""" @@ -67,12 +65,15 @@ class PDSCatalogSearchInputSchema(InputSchema): None, description="Filter datasets that have data on or before this date (YYYY-MM-DD)", ) - limit: Annotated[int, Field(ge=1, le=50)] = Field( + limit: int = Field( 20, + ge=1, + le=50, description="Maximum results to return (default 20, max 50)", ) - offset: Annotated[int, Field(ge=0)] = Field( + offset: int = Field( 0, + ge=0, description="Skip first N results for pagination (default 0)", ) fields: FIELD_PROFILE = Field( diff --git a/akd_ext/tools/pds/pds_catalog/stats.py b/akd_ext/tools/pds/pds_catalog/stats.py index d5db3f6..3e8909c 100644 --- a/akd_ext/tools/pds/pds_catalog/stats.py +++ b/akd_ext/tools/pds/pds_catalog/stats.py @@ -1,6 +1,6 @@ """Get statistics about the PDS catalog.""" -import logging +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -9,8 +9,6 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClient, PDSCatalogClientError -logger = logging.getLogger(__name__) - class PDSCatalogStatsInputSchema(InputSchema): """Input schema for PDSCatalogStatsTool. diff --git a/akd_ext/tools/pds/sbn/list_sources.py b/akd_ext/tools/pds/sbn/list_sources.py index f400a7d..9a02a71 100644 --- a/akd_ext/tools/pds/sbn/list_sources.py +++ b/akd_ext/tools/pds/sbn/list_sources.py @@ -1,6 +1,8 @@ """List available CATCH data sources with their current status.""" -import logging +import os + +from loguru import logger from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -9,8 +11,6 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.sbn_client import SBNCatchClient, SBNCatchClientError -logger = logging.getLogger(__name__) - class SBNSourceSummary(BaseModel): """Source item in list_sources results.""" @@ -44,8 +44,8 @@ class SBNListSourcesToolConfig(BaseToolConfig): """Configuration for SBNListSourcesTool.""" base_url: str = Field( - default="https://catch-api.astro.umd.edu/", - description="CATCH API base URL (can be overridden with SBN_BASE_URL env var)", + default=os.getenv("SBN_BASE_URL", "https://catch-api.astro.umd.edu/"), + description="CATCH API base URL (override with SBN_BASE_URL env var)", ) timeout: float = Field(default=60.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/sbn/search_coordinates.py b/akd_ext/tools/pds/sbn/search_coordinates.py index 61c7d83..e61219b 100644 --- a/akd_ext/tools/pds/sbn/search_coordinates.py +++ b/akd_ext/tools/pds/sbn/search_coordinates.py @@ -1,7 +1,9 @@ """Search for observations at fixed sky coordinates.""" -import logging -from typing import Annotated, Any, Literal +import os + +from loguru import logger +from typing import Any, Literal from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -18,8 +20,6 @@ ) from akd_ext.tools.pds.utils.sbn_client import SBNCatchClient, SBNCatchClientError -logger = logging.getLogger(__name__) - class SBNSearchCoordinatesInputSchema(InputSchema): """Input schema for SBNSearchCoordinatesTool.""" @@ -32,16 +32,14 @@ class SBNSearchCoordinatesInputSchema(InputSchema): ..., description="Declination. Formats: Sexagesimal '+12:34:56.7' or '-12:34:56.7', or decimal degrees '-30.5'", ) - radius: Annotated[float, Field(gt=0, le=120)] = Field( - 10.0, description="Search radius in arcminutes (0-120, default 10)" - ) + radius: float = Field(10.0, gt=0, le=120, description="Search radius in arcminutes (0-120, default 10)") sources: list[str] | None = Field(None, description=VALID_SOURCES_DESCRIPTION) start_date: str | None = Field(None, description="Start date filter (format: 'YYYY-MM-DD')") stop_date: str | None = Field(None, description="Stop date filter (format: 'YYYY-MM-DD')") - limit: Annotated[int, Field(ge=1, le=10)] = Field( - DEFAULT_OBSERVATIONS_LIMIT, description="Maximum observations to return (default 10, max 10)" + limit: int = Field( + DEFAULT_OBSERVATIONS_LIMIT, ge=1, le=10, description="Maximum observations to return (default 10, max 10)" ) - offset: Annotated[int, Field(ge=0)] = Field(0, description="Skip first N observations for pagination (default 0)") + offset: int = Field(0, ge=0, description="Skip first N observations for pagination (default 0)") fields: Literal["essential", "summary", "full"] = Field( "summary", description="Field profile: 'essential' (minimal), 'summary' (default), or 'full' (all fields)" ) @@ -68,8 +66,8 @@ class SBNSearchCoordinatesToolConfig(BaseToolConfig): """Configuration for SBNSearchCoordinatesTool.""" base_url: str = Field( - default="https://catch-api.astro.umd.edu/", - description="CATCH API base URL (can be overridden with SBN_BASE_URL env var)", + default=os.getenv("SBN_BASE_URL", "https://catch-api.astro.umd.edu/"), + description="CATCH API base URL (override with SBN_BASE_URL env var)", ) timeout: float = Field(default=60.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/sbn/search_object.py b/akd_ext/tools/pds/sbn/search_object.py index 4a8f03f..103c902 100644 --- a/akd_ext/tools/pds/sbn/search_object.py +++ b/akd_ext/tools/pds/sbn/search_object.py @@ -1,7 +1,9 @@ """Search for observations of a comet or asteroid.""" -import logging -from typing import Annotated, Any, Literal +import os + +from loguru import logger +from typing import Any, Literal from akd._base import InputSchema, OutputSchema from akd.tools import BaseTool, BaseToolConfig @@ -19,26 +21,20 @@ ) from akd_ext.tools.pds.utils.sbn_client import SBNCatchClient, SBNCatchClientError -logger = logging.getLogger(__name__) - class SBNSearchObjectInputSchema(InputSchema): """Input schema for SBNSearchObjectTool.""" target: str = Field(..., description="JPL Horizons-resolvable designation (e.g., '65803', '1P/Halley', 'Didymos')") sources: list[str] | None = Field(None, description=VALID_SOURCES_DESCRIPTION) - start_date: str | None = Field( - None, description="Start date filter (format: 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM')" - ) + start_date: str | None = Field(None, description="Start date filter (format: 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM')") stop_date: str | None = Field(None, description="Stop date filter (format: 'YYYY-MM-DD' or 'YYYY-MM-DD HH:MM')") cached: bool = Field(True, description="Use cached results if available (default True, faster)") - timeout: Annotated[float, Field(gt=0, le=600)] = Field( - 120.0, description="Maximum time to wait for results in seconds (default 120)" - ) - limit: Annotated[int, Field(ge=1, le=10)] = Field( - DEFAULT_OBSERVATIONS_LIMIT, description="Maximum observations to return (default 10, max 10)" + timeout: float = Field(120.0, gt=0, le=600, description="Maximum time to wait for results in seconds (default 120)") + limit: int = Field( + DEFAULT_OBSERVATIONS_LIMIT, ge=1, le=10, description="Maximum observations to return (default 10, max 10)" ) - offset: Annotated[int, Field(ge=0)] = Field(0, description="Skip first N observations for pagination (default 0)") + offset: int = Field(0, ge=0, description="Skip first N observations for pagination (default 0)") fields: Literal["essential", "summary", "full"] = Field( "summary", description="Field profile: 'essential' (minimal), 'summary' (default), or 'full' (all fields)" ) @@ -66,8 +62,8 @@ class SBNSearchObjectToolConfig(BaseToolConfig): """Configuration for SBNSearchObjectTool.""" base_url: str = Field( - default="https://catch-api.astro.umd.edu/", - description="CATCH API base URL (can be overridden with SBN_BASE_URL env var)", + default=os.getenv("SBN_BASE_URL", "https://catch-api.astro.umd.edu/"), + description="CATCH API base URL (override with SBN_BASE_URL env var)", ) timeout: float = Field(default=60.0, description="Request timeout in seconds") max_retries: int = Field(default=3, description="Maximum number of retry attempts for failed requests") diff --git a/akd_ext/tools/pds/utils/__init__.py b/akd_ext/tools/pds/utils/__init__.py index 933f9ad..18b9e76 100644 --- a/akd_ext/tools/pds/utils/__init__.py +++ b/akd_ext/tools/pds/utils/__init__.py @@ -5,7 +5,12 @@ from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError, OPUSRateLimitError from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError, PDS4RateLimitError from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClient, PDSCatalogClientError -from akd_ext.tools.pds.utils.sbn_client import SBNCatchClient, SBNCatchClientError, SBNCatchJobError, SBNCatchRateLimitError +from akd_ext.tools.pds.utils.sbn_client import ( + SBNCatchClient, + SBNCatchClientError, + SBNCatchJobError, + SBNCatchRateLimitError, +) __all__ = [ "IMGAtlasClient", diff --git a/akd_ext/tools/pds/utils/img_client.py b/akd_ext/tools/pds/utils/img_client.py index 0c3a29c..a821e91 100644 --- a/akd_ext/tools/pds/utils/img_client.py +++ b/akd_ext/tools/pds/utils/img_client.py @@ -7,7 +7,7 @@ """ import asyncio -import logging +from loguru import logger from types import TracebackType from typing import Any @@ -15,8 +15,6 @@ from .img_api_models import IMGCountResponse, IMGFacetResponse, IMGSearchResponse -logger = logging.getLogger(__name__) - class IMGAtlasClientError(Exception): """Base exception for IMG Atlas client errors.""" @@ -448,7 +446,7 @@ async def get_facets( # Validate facet field if facet_field not in self.VALID_FACET_FIELDS: raise IMGAtlasClientError( - f"Invalid facet field: {facet_field}. " f"Valid fields: {', '.join(sorted(self.VALID_FACET_FIELDS))}" + f"Invalid facet field: {facet_field}. Valid fields: {', '.join(sorted(self.VALID_FACET_FIELDS))}" ) # Build filter queries for optional filters diff --git a/akd_ext/tools/pds/utils/ode_client.py b/akd_ext/tools/pds/utils/ode_client.py index bf31ce0..a3c4c0c 100644 --- a/akd_ext/tools/pds/utils/ode_client.py +++ b/akd_ext/tools/pds/utils/ode_client.py @@ -7,7 +7,7 @@ """ import asyncio -import logging +from loguru import logger from types import TracebackType from typing import Any, Literal @@ -22,7 +22,6 @@ ODEProductSearchResponse, ) -logger = logging.getLogger(__name__) # Valid ODE targets ODETarget = Literal["mars", "moon", "mercury", "phobos", "deimos", "venus"] diff --git a/akd_ext/tools/pds/utils/opus_client.py b/akd_ext/tools/pds/utils/opus_client.py index 0ec6ac3..6f27f16 100644 --- a/akd_ext/tools/pds/utils/opus_client.py +++ b/akd_ext/tools/pds/utils/opus_client.py @@ -7,7 +7,7 @@ """ import asyncio -import logging +from loguru import logger from types import TracebackType from typing import Any @@ -20,8 +20,6 @@ OPUSSearchResponse, ) -logger = logging.getLogger(__name__) - class OPUSClientError(Exception): """Base exception for OPUS client errors.""" @@ -317,4 +315,3 @@ async def get_files( except Exception as e: logger.error(f"Failed to parse OPUS files response: {e}") raise OPUSClientError(f"Invalid response format: {e}") - diff --git a/akd_ext/tools/pds/utils/pds4_client.py b/akd_ext/tools/pds/utils/pds4_client.py index ce83d8f..3c7687a 100644 --- a/akd_ext/tools/pds/utils/pds4_client.py +++ b/akd_ext/tools/pds/utils/pds4_client.py @@ -17,7 +17,7 @@ """ import asyncio -import logging +from loguru import logger import re from types import TracebackType from typing import Any @@ -26,8 +26,6 @@ import httpx from pydantic import ValidationError -logger = logging.getLogger(__name__) - def validate_urn(urn: str) -> str: """Validate and return a PDS4 URN. diff --git a/akd_ext/tools/pds/utils/pds_catalog_api_models.py b/akd_ext/tools/pds/utils/pds_catalog_api_models.py index 6e3e503..446fb3d 100644 --- a/akd_ext/tools/pds/utils/pds_catalog_api_models.py +++ b/akd_ext/tools/pds/utils/pds_catalog_api_models.py @@ -5,15 +5,13 @@ """ import json -import logging +from loguru import logger from datetime import date, datetime from enum import Enum from pathlib import Path from pydantic import BaseModel, Field -logger = logging.getLogger(__name__) - class PDSNode(str, Enum): """PDS node identifiers.""" diff --git a/akd_ext/tools/pds/utils/pds_catalog_client.py b/akd_ext/tools/pds/utils/pds_catalog_client.py index b67fc13..382c95a 100644 --- a/akd_ext/tools/pds/utils/pds_catalog_client.py +++ b/akd_ext/tools/pds/utils/pds_catalog_client.py @@ -4,7 +4,7 @@ It supports filtering by node, mission, instrument, target, and temporal range. """ -import logging +from loguru import logger import os from datetime import date from pathlib import Path @@ -14,7 +14,6 @@ from akd_ext.tools.pds.utils.pds_catalog_api_models import PDSDataset, load_from_jsonl -logger = logging.getLogger(__name__) # Default catalog directory containing scraped JSONL files DEFAULT_CATALOG_DIR = Path(__file__).parent.parent / "pds_catalog" / "scraped_data" diff --git a/akd_ext/tools/pds/utils/sbn_client.py b/akd_ext/tools/pds/utils/sbn_client.py index f0b2cd5..cd10fb1 100644 --- a/akd_ext/tools/pds/utils/sbn_client.py +++ b/akd_ext/tools/pds/utils/sbn_client.py @@ -7,7 +7,7 @@ """ import asyncio -import logging +from loguru import logger from types import TracebackType from typing import Any @@ -21,8 +21,6 @@ CatchStatusResponse, ) -logger = logging.getLogger(__name__) - class SBNCatchClientError(Exception): """Base exception for SBN CATCH client errors.""" diff --git a/testing_instruction.md b/docs/testing_instruction.md similarity index 98% rename from testing_instruction.md rename to docs/testing_instruction.md index b1e6b8a..dacc73d 100644 --- a/testing_instruction.md +++ b/docs/testing_instruction.md @@ -30,7 +30,7 @@ In the MCP Inspector interface, you'll see a connection form. Configure it as fo Select: `Streamable HTTP` ### **URL** -Enter your Fastmcp cloud url. +Enter your Fastmcp cloud url. ### **Connection Type** Select: `Via Proxy` (should be default) @@ -41,7 +41,7 @@ Select: `Via Proxy` (should be default) - Make sure the toggle switch next to "Authorization" is **ON** (enabled) - Header name: `Authorization` - Header value: `Bearer YOUR_API_KEY_HERE` - + ⚠️ **Important:** Replace `YOUR_API_KEY_HERE` with the actual API key provided to you **Example:** From 5dc44f3ff1f5ae748ba2edca7b9a7944552697ad Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Thu, 26 Feb 2026 22:56:34 -0600 Subject: [PATCH 11/16] Updated scraped data for pds catalog --- .../scraped_data/atm_catalog.jsonl | 6142 +++++++------- .../scraped_data/geo_catalog.jsonl | 1560 +++- .../scraped_data/img_catalog.jsonl | 353 +- .../scraped_data/naif_catalog.jsonl | 160 +- .../scraped_data/ppi_catalog.jsonl | 1069 +-- .../scraped_data/rms_catalog.jsonl | 1103 ++- .../scraped_data/sbn_catalog.jsonl | 7035 +++++++++++++---- 7 files changed, 11674 insertions(+), 5748 deletions(-) diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl index e3071ff..6aed243 100644 --- a/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl @@ -1,2741 +1,3401 @@ -{"id":"atm:messmas_1001_messenger_mascs_uncalibrated_data_archive:ee85b049","title":"ATM Volume messmas_1001 (MESSENGER Mascs Uncalibrated Data Archive)","description":"This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2014-260 (17 Sep). 1.MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0 This data set consists of the MESSENGER MASCS UVVS uncalibrated observations, also known as EDRs. 2.MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0 This data set consists of the MESSENGER MASCS VIRS uncalibrated observations, also known as EDRs.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:messmas_2001_messenger_mascs_calibrated_and_derived_data_archive:a7131f3b","title":"ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)","description":"This volume contains calibrated MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2014-260 (17 Sep). 1. MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0 The MESSENGER MASCS UVVS calibrated observations consist of science and instrument data collected by the UVVS detector during cruise, flyby operations of Earth/Moon, Venus, and Mercury, and orbit operations of Mercury. 2. MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0 The MESSENGER MASCS VIRS calibrated observations consist of science and instrument data collected by the VIRS detector during cruise, flyby operations of Earth/Moon, Venus, and Mercury, and orbit operations of Mercury. 3. MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0 The MESSENGER MASCS UVVS derived data records consist of science and instrument data collected by the UVVS detector during orbital operations of Mercury. 4. MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0 The MESSENGER MASCS VIRS derived observations consist of science and instrument data collected by the VIRS detector during flyby and orbital operations of Mercury. 5. MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0 The MESSENGER MASCS VIRS derived analysis product dataset consists of a 500 meter per pixel mosaic map of 1 wavelength (750 nm) of VIRS spectral data for footprints covering the planet Mercury.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:messmas_2101_messenger_mascs_calibrated_and_derived_data_archive:08655949","title":"ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)","description":"This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr). 1. MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0 The MESSENGER MASCS UVVS calibrated observations consist of science and instrument data collected by the UVVS detector during cruise, flyby operations of Earth/Moon, Venus, and Mercury, and orbit operations of Mercury. 2. MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0 The MESSENGER MASCS UVVS derived data records consist of science and instrument data collected by the UVVS detector during orbital operations of Mercury. 3. MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0 The MESSENGER MASCS UVVS+VIRS combined derived data records consist of science and instrument data collected by the UVVS and VIRS detectors during orbital operations of Mercury. 4. MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0 The MESSENGER MASCS VIRS calibrated observations consist of science and instrument data collected by the VIRS detector during cruise, flyby operations of Earth/Moon, Venus, and Mercury, and orbit operations of Mercury. 5. MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0 The MESSENGER MASCS VIRS derived analysis product dataset consists of a 500 meter per pixel mosaic map of 1 wavelength (750 nm) of VIRS spectral data for footprints covering the planet Mercury.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:go_0002_galileo_solid_state_imaging_redr_data:d41d8cd9","title":"ATM Volume go_0002 (galileo:solid state imaging redr data)","description":"this volume contains images from the galileo orbiter spacecraft. it also contains documentation, software and index directories to support access to the image files on this disk.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_0002 (galileo:solid state imaging redr data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:go_1001_galileo_near_infrared_mapping_spectrometer_nims_edr_data:d41d8cd9","title":"ATM Volume go_1001 (galileo:near-infrared mapping spectrometer (nims) edr data)","description":"this volume contains a first set of the galileo near-infrared mapping spectrometer (nims) experiment data records (edrs). this collection consists of edrs acquired by the nims instrument starting at galileo launch through the first earth encounter. included are data for the earth, the earth's moon and venus. additional test, star and calibration edr data are also included.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1001 (galileo:near-infrared mapping spectrometer (nims) edr data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:go_1101_galileo_nims_cube_data_venus:d41d8cd9","title":"ATM Volume go_1101 (galileo nims cube data: venus)","description":"this volume is the first containing galileo near infrared mapping spectrometer (nims) spectral image cubes, also known as nims mosaics. it is derived from data acquired by the nims instrument during galileo's venus encounter.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1101 (galileo nims cube data: venus)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:messmas_2001_messenger_mascs_calibrated_data_archive:a7131f3b","title":"ATM Volume messmas_2001 (messenger mascs calibrated data archive)","description":"this volume contains calibrated messenger mascs data collected by the uvvs and virs detectors at earth, venus and mercury over the interval 2004-240 (27-aug) to 2011-138 (18 may). 1.mess-e/v/h-mascs-3-uvvs-cdr-caldata-v1.0 this data set consists of the messenger mascs uvvs calibrated observations, also known as cdrs. 2.mess-e/v/h-mascs-3-virs-cdr-caldata-v1.0 this data set consists of the messenger mascs virs calibrated observations, also known as cdrs.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2201_mg_2202_mg_2203_mg_2204_mg_2205_mg_2206_mg_2207_mg_2208_mg_2209_mg_2210_mg_2211_mg_2212_mg_2213_mg_2214_magellan_radio_occultation_raw_data_records:4b1ee5bf","title":"ATM Volume mg_2201 , mg_2202 , mg_2203 , mg_2204 , mg_2205 , mg_2206 , mg_2207 , mg_2208 , mg_2209 , mg_2210 , mg_2211 , mg_2212 , mg_2213 , mg_2214 (Magellan Radio Occultation Raw Data Records)","description":"These volumes contain raw data, partially processed data, and ancillary files from Magellan radio occultation experiments: 1.MGN-V-RSS-1-ROCC-V2.0 This data set is a time-ordered collection of raw and partially processed data from radio occultation experiments conducted using the Magellan spacecraft while it orbited Venus","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2401_magellan_venus_radio_occultation_atmospheric_profiles:68e5eb45","title":"ATM Volume mg_2401 (Magellan Venus Radio Occultation Atmospheric Profiles)","description":"This volume contains archival data produced from dual-frequency ingress radio occultation experiments using the Magellan orbiter on three consecutive orbits (#3212 - #3214) on October 5 and 6, 1991. The data sets include vertical profiles of refractivity, temperature, pressure and density in the neutral Venus atmosphere, and vertical profiles of 13-cm and 3.6-cm absorptivity and abundance of sulfuric acid vapor (H2SO4). The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM: 1.MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0 This data set includes vertical profiles of 13-cm and 3.6-cm absorptivity and abundance of sulfuric acid vapor (H2SO4). 2.MGN-V-RSS-5-OCC-PROF-RTPD-V1.0 This data set includes vertical profiles of refractivity, temperature, pressure and density in the neutral Venus atmosphere.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:pv01_1001_pv01_1002_pioneer_venus_orbiter_ouvs_inbound_monochrome_images:b49baee9","title":"ATM Volume pv01_1001 , pv01_1002 (Pioneer Venus Orbiter OUVS Inbound Monochrome Images)","description":"These volumes contain Inbound Monochrome Images (IMIDR) produced from the Orbiter Ultraviolet Spectrometer (OUVS) instrument on the Pioneer Venus spacecraft. Data contained here were obtained between 1978 and 1992. The volume also contains documentation in the form of ancillary files, to support access of the data on these volumes. 1.PVO-V-OUVS-5-IMIDR-V1.0 This data set provides a mission-long set of images at several far-UV and near-UV wavelengths associated with day and night airglow emissions and with reflected sunlight. All Venus phases are sampled, as are all levels of solar activity during 1978-1992.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:pv03_0001_pioneer_venus_orbiter_neutral_mass_spectrometer:d41d8cd9","title":"ATM Volume pv03_0001 (Pioneer Venus Orbiter Neutral Mass Spectrometer)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=pv03_0001 (Pioneer Venus Orbiter Neutral Mass Spectrometer)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir1_0001_venus_climate_orbiter_ir1_data:4eecabb7","title":"ATM Volume vcoir1_0001 (VENUS CLIMATE ORBITER IR1 DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR1-2-EDR-V1.0 Venus Climate Orbiter IR1 raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir1_1001_venus_climate_orbiter_ir1_data:d8683109","title":"ATM Volume vcoir1_1001 (VENUS CLIMATE ORBITER IR1 DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR1-3-CDR-V1.0 Venus Climate Orbiter IR1 calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir1_2001_venus_climate_orbiter_ir1_data:f46e4306","title":"ATM Volume vcoir1_2001 (VENUS CLIMATE ORBITER IR1 DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR1-3-SEDR-V1.0 Venus Climate Orbiter IR1 geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir2_0001_venus_climate_orbiter_ir2_data:b4401440","title":"ATM Volume vcoir2_0001 (VENUS CLIMATE ORBITER IR2 DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR2-2-EDR-V1.0 Venus Climate Orbiter IR2 raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir2_1001_venus_climate_orbiter_ir2_data:7235613f","title":"ATM Volume vcoir2_1001 (VENUS CLIMATE ORBITER IR2 DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR2-3-CDR-V1.0 Venus Climate Orbiter IR2 calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir2_2001_venus_climate_orbiter_ir2_data:7e83ed4b","title":"ATM Volume vcoir2_2001 (VENUS CLIMATE ORBITER IR2 DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09. 1. VCO-V-IR2-3-SEDR-V1.0 Venus Climate Orbiter IR2 geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0001_venus_climate_orbiter_lir_data:2c84a890","title":"ATM Volume vcolir_0001 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03. 1. VCO-V-LIR-2-EDR-V1.0 Venus Climate Orbiter LIR raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0002_venus_climate_orbiter_lir_data:1a6af38b","title":"ATM Volume vcolir_0002 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07. 1. VCO-V-LIR-2-EDR-V1.0 Venus Climate Orbiter LIR raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0003_venus_climate_orbiter_lir_data:cb71b1d2","title":"ATM Volume vcolir_0003 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04. 1. VCO-V-LIR-2-EDR-V1.0 Venus Climate Orbiter LIR raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0004_venus_climate_orbiter_lir_data:e399c0b0","title":"ATM Volume vcolir_0004 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08. 1. VCO-V-LIR-2-EDR-V1.0 Venus Climate Orbiter LIR raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0005_venus_climate_orbiter_lir_data:418903f3","title":"ATM Volume vcolir_0005 (VENUS CLIMATE ORBITER LIR DATA)","description":"1. VCO-V-LIR-2-EDR-V1.0 This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0006_venus_climate_orbiter_lir_data:740ffb53","title":"ATM Volume vcolir_0006 (VENUS CLIMATE ORBITER LIR DATA)","description":"1. VCO-V-LIR-2-EDR-V1.0 This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vco_v_lir_2_edr_v1_0_this_volume_contains_venus_climate_orbiter_vco_also_known_as_planet_c_and_akatsuki_data_collected_by_the_lir_instrument_over_the_interval_2021_06_07_to_2021_12_02:d41d8cd9","title":"ATM Volume VCO-V-LIR-2-EDR-V1.0 This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=VCO-V-LIR-2-EDR-V1.0 This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1001_venus_climate_orbiter_lir_data:23e6b014","title":"ATM Volume vcolir_1001 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1002_venus_climate_orbiter_lir_data:e04bdd03","title":"ATM Volume vcolir_1002 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1003_venus_climate_orbiter_lir_data:3e611371","title":"ATM Volume vcolir_1003 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1004_venus_climate_orbiter_lir_data:44ed4461","title":"ATM Volume vcolir_1004 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1005_venus_climate_orbiter_lir_data:440b0cd9","title":"ATM Volume vcolir_1005 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1006_venus_climate_orbiter_lir_data:2c873272","title":"ATM Volume vcolir_1006 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1007_venus_climate_orbiter_lir_data:77c35266","title":"ATM Volume vcolir_1007 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02. 1. VCO-V-LIR-3-CDR-V1.0 Venus Climate Orbiter LIR calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2001_venus_climate_orbiter_lir_data:b5bf0369","title":"ATM Volume vcolir_2001 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2002_venus_climate_orbiter_lir_data:36adc0cb","title":"ATM Volume vcolir_2002 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2003_venus_climate_orbiter_lir_data:6ff500e4","title":"ATM Volume vcolir_2003 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2004_venus_climate_orbiter_lir_data:efb0b2b4","title":"ATM Volume vcolir_2004 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2005_venus_climate_orbiter_lir_data:4565cf21","title":"ATM Volume vcolir_2005 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2006_venus_climate_orbiter_lir_data:0badc6a6","title":"ATM Volume vcolir_2006 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07. 1. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2007_venus_climate_orbiter_lir_data:1063ae1c","title":"ATM Volume vcolir_2007 (VENUS CLIMATE ORBITER LIR DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02. VCO-V-LIR-3-SEDR-V1.0 Venus Climate Orbiter LIR geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_1001_venus_climate_orbiter_rs_data:4a179434","title":"ATM Volume vcors_1001 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11. 1. VCO-V-RS-3-OCC-V1.0 Venus Climate Orbiter Doppler and signal intensity time series obtained by Radio Science experiment","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_1002_venus_climate_orbiter_rs_data:a094f6b5","title":"ATM Volume vcors_1002 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26. 1. VCO-V-RS-3-OCC-V1.0 Venus Climate Orbiter Doppler and signal intensity time series obtained by Radio Science experiment","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_1003_venus_climate_orbiter_rs_data:f15e3c6f","title":"ATM Volume vcors_1003 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2019-02-09 to 2020-08-24. 1. VCO-V-RS-3-OCC-V1.0 Venus Climate Orbiter Doppler and signal intensity time series obtained by Radio Science experiment","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_1004_venus_climate_orbiter_rs_data:fdbbcc3f","title":"ATM Volume vcors_1004 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13. 1. VCO-V-RS-3-OCC-V1.0 Venus Climate Orbiter Doppler and signal intensity time series obtained by Radio Science experiment","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_2001_venus_climate_orbiter_rs_data:0ff5cef6","title":"ATM Volume vcors_2001 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11. 1. VCO-V-RS-5-OCC-V1.0 Venus Climate Orbiter bending angle and temperature/pressure profiles obtained by Radio Science experiments","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_2002_venus_climate_orbiter_rs_data:d78cb565","title":"ATM Volume vcors_2002 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26. 1. VCO-V-RS-5-OCC-V1.0 Venus Climate Orbiter bending angle and temperature/pressure profiles obtained by Radio Science experiments","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_2003_venus_climate_orbiter_rs_data:1b653add","title":"ATM Volume vcors_2003 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2020-02-09 to 2020-08-24. 1. VCO-V-RS-5-OCC-V1.0 Venus Climate Orbiter bending angle and temperature/pressure profiles obtained by Radio Science experiments","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_2004_venus_climate_orbiter_rs_data:1e2d5cdf","title":"ATM Volume vcors_2004 (VENUS CLIMATE ORBITER RS DATA)","description":"This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13. 1. VCO-V-RS-5-OCC-V1.0 Venus Climate Orbiter bending angle and temperature/pressure profiles obtained by Radio Science experiments","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0001_venus_climate_orbiter_uvi_data:caeec82f","title":"ATM Volume vcouvi_0001 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0002_venus_climate_orbiter_uvi_data:58eb9af3","title":"ATM Volume vcouvi_0002 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0003_venus_climate_orbiter_uvi_data:44a7719e","title":"ATM Volume vcouvi_0003 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0004_venus_climate_orbiter_uvi_data:e7e3c1eb","title":"ATM Volume vcouvi_0004 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0005_venus_climate_orbiter_uvi_data:e30eeb99","title":"ATM Volume vcouvi_0005 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0006_venus_climate_orbiter_uvi_data:330cb00c","title":"ATM Volume vcouvi_0006 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0007_venus_climate_orbiter_uvi_data:9d4f1376","title":"ATM Volume vcouvi_0007 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02. 1. VCO-V-UVI-2-EDR-V1.0 Venus Climate Orbiter UVI raw image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1001_venus_climate_orbiter_uvi_data:2d8ec82f","title":"ATM Volume vcouvi_1001 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1002_venus_climate_orbiter_uvi_data:adadfa32","title":"ATM Volume vcouvi_1002 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1003_venus_climate_orbiter_uvi_data:b22ed255","title":"ATM Volume vcouvi_1003 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1004_venus_climate_orbiter_uvi_data:775001af","title":"ATM Volume vcouvi_1004 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1005_venus_climate_orbiter_uvi_data:844b1494","title":"ATM Volume vcouvi_1005 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1006_venus_climate_orbiter_uvi_data:f0abd8d1","title":"ATM Volume vcouvi_1006 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1007_venus_climate_orbiter_uvi_data:1aa6fc20","title":"ATM Volume vcouvi_1007 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02. VCO-V-UVI-3-CDR-V1.0 Venus Climate Orbiter UVI calibrated image data","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2001_venus_climate_orbiter_uvi_data:fc3874a8","title":"ATM Volume vcouvi_2001 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2002_venus_climate_orbiter_uvi_data:083f6f2f","title":"ATM Volume vcouvi_2002 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2003_venus_climate_orbiter_uvi_data:5e1d2c75","title":"ATM Volume vcouvi_2003 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2004_venus_climate_orbiter_uvi_data:044150bb","title":"ATM Volume vcouvi_2004 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2005_venus_climate_orbiter_uvi_data:ac203683","title":"ATM Volume vcouvi_2005 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2006_venus_climate_orbiter_uvi_data:951d0112","title":"ATM Volume vcouvi_2006 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2007_venus_climate_orbiter_uvi_data:25150ca0","title":"ATM Volume vcouvi_2007 (VENUS CLIMATE ORBITER UVI DATA)","description":"This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02. VCO-V-UVI-3-SEDR-V1.0 Venus Climate Orbiter UVI geometry information","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vega_5001_vega_venus_data:710ee113","title":"ATM Volume vega_5001 (VEGA VENUS DATA)","description":"This volume contains Vega observations from the balloon and lander at Venus. VEGA1/VEGA2-V-2/3-VENUS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vega_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vxrs_1101_vxrs_1102_vxrs_1103_vxrs_1104_vex_raw_dsn_radio_science_data_extended_mission:9cc5852f","title":"ATM Volume VXRS_1101 , VXRS_1102 , VXRS_1103 , VXRS_1104 (VEX: Raw DSN Radio Science Data Extended Mission)","description":"This volume contains raw and partially processed radio science data and ancillary files from the Venus Express mission. VEX-V-RSS-1-ENT-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://atmos.nmsu.edu/PDS/data/VXRS_1104/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:go_0002_go_0015_galileo_orbiter_images:d41d8cd9","title":"ATM Volume go_0002 - go_0015 (Galileo Orbiter Images)","description":"These volumes contain images from the Galileo Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_0002 - go_0015 (Galileo Orbiter Images)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:go_1001_go_1004_galileo_orbiter_nims_edrs:d41d8cd9","title":"ATM Volume go_1001 - go_1004 (Galileo Orbiter NIMS EDRs)","description":"These volumes contain NIMS EDRs from the Galileo Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1001 - go_1004 (Galileo Orbiter NIMS EDRs)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:go_1102_go_1103_galileo_orbiter_nims_cubes:d41d8cd9","title":"ATM Volume go_1102,go_1103 (Galileo Orbiter NIMS CUBEs)","description":"These volumes contain NIMS CUBEs from the Galileo Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1102,go_1103 (Galileo Orbiter NIMS CUBEs)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gr_0001_gr_0009_geologic_remote_sensing_field_experiment:d41d8cd9","title":"ATM Volume gr_0001 - gr_0009 (Geologic Remote Sensing Field Experiment)","description":"This data set collection includes the following data sets from the Geologic Remote Sensing Field Experiment which may be of use to Atmospheres Node users: 1.FIELD EXP E AWND CALIB RDR TEMPERATURE AND VELOCITY V1.0 This data set consists of near surface wind observations at two sites on Lunar Lake Playa. 2.FIELD EXP E RANGER II PLUS RDMT & THRM CALIB RDR TEMP V1.0 This data set consists of directional variations in thermal emission of different surfaces. 3.FIELD EXP E REAG CALIBRATED RDR OPTICAL DEPTH V1.0 This data set consists of optical depth measurements made using the Reagan Radiometer. 4.FIELD EXP E SHYG CALIBRATED RDR OPTICAL DEPTH V1.0 This data set consists of observations by the spectral hygrometer. 5.FIELD EXP E WTHS CALIB RDR TEMPERATURE AND VELOCITY V1.0 This data set consists of wind velocity, direction, and air temperature measurements at Lunar Lake. 6.ER2 EARTH AVIRIS CALIBRATED REDUCED DATA RECORD IMAGE V1.0 This data set consists of Airborne Visible and Infrared Imaging Spectrometer observations","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Earth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=gr_0001 - gr_0009 (Geologic Remote Sensing Field Experiment)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:atmos_0006_mars_ancillary_data:68fb1a37","title":"ATM Volume atmos_0006 (Mars Ancillary Data)","description":"This volume contains archival data produced from the three types of Mars experiments. Two of the experiments were part of the Mars Consortium data sets. The third experiment was produced using photogrammetry of Viking Orbiter images and Earth-based radar altimetry. This CD-WO is not PDS compliant in that the CD-WO does not fully comply with the set of PDS standards required to make this a PDS archive product. However, the files, structure, and data sets contained on the CD-WO do conform to PDS standards. 1.MARS DIGITAL ALBEDO MAP The data set provides a map of phase-corrected albedo between -60 and +60 degrees latitude, and is binned at 1 x 1 degree resolution in latitude and longitude. 2.MARS THERMAL INERTIA MAP The data set provides a map of thermal inertia between -60 and +60 degrees latitude, and is binned at 2 x 2 degree resolution in latitude and longitude. 3.MARS TOPOGRAPHIC MAP The data set was produced using photogrammetry of Viking Orbiter images and Earth-based radar altimetry. The data set provides coverage between -56 and +56 degrees of latitude, and was rebinned by LASP at 1 x 1 degree latitude/longitude resolution from original 0.1 degree resolution","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=atmos_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:merimu_1001_mars_exploration_rovers_1_2_inertial_measurement_unit_edl_data:9f8d3929","title":"ATM Volume merimu_1001 (Mars Exploration Rovers 1/2 Inertial Measurement Unit EDL Data)","description":"This volume contains entry, descent and landing data from Mars Exploration Rovers 1/2 Inertial Measurement Unit investigations. 1.MER1/MER2-M-IMU-4-EDL-V1.0 This data set includes reduced data from Entry, Descent, and Landing (EDL) phases of each rover mission, specifically measurements from the accelerometers and gyros within the two inertial measurement units (IMUs), one each within the rover and within the backshell, on each of the two Mars Exploration Rovers","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=merimu_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:merimu_2001_mer1_mer2_mars_imu_entry_descent_landing_derived_data:a0c6a404","title":"ATM Volume merimu_2001 (MER1/MER2 Mars IMU Entry Descent & Landing Derived Data)","description":"This volume contains time ordered records of measured acceleration derived velocity, derived position, derived atmospheric properties and, other quantities determined from IMU measurements recorded during the EDLs of MER-1 and MER-2. MER1/MER2-M-IMU-5-EDL-DERIVED-V1.0 This data set includes data products from the Entry, Descent, and Landing (EDL) phases of each rover mission, specifically reconstructed spacecraft positions, spacecraft velocities, atmospheric densities, atmospheric pressures and atmospheric temperatures.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=merimu_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mexpfs_1001_mars_express_mars_pfs_edr_nominal_mission_data:bf0851db","title":"ATM Volume mexpfs_1001 (Mars Express Mars PFS EDR Nominal Mission Data)","description":"This volume contains data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF-IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA). MEX-M-PFS-2-EDR-NOMINAL-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mexpfs_1002_mars_express_mars_pfs_edr_nominal_mission_data:14213405","title":"ATM Volume mexpfs_1002 (Mars Express Mars PFS EDR Nominal Mission Data)","description":"This volume contains data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF-IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA). MEX-M-PFS-2-EDR-EXT1-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mexspi_0auv_mex_spicam_cruise_mars_uv_edr_raw:8bc06d71","title":"ATM Volume mexspi_0auv (MEX SPICAM CRUISE/MARS UV EDR-RAW)","description":"This volume release contains Mars Express SPICAM UV Raw Data Products (level 0A), in ADU units, along with documentation and other ancillary information about the data products. MEX-Y/M-SPI-2-UVEDR-RAWXCRUISE/MARS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexspi_0auv","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mexspi_0bir_mex_spicam_cruise_mars_ir_edr_raw:88d7b9c4","title":"ATM Volume mexspi_0bir (MEX SPICAM CRUISE/MARS IR EDR-RAW)","description":"This volume release contains Mars Express SPICAM IR Raw Data Products (level 0B), in ADU units, along with documentation and other ancillary information about the data products. MEX-Y/M-SPI-2-IREDR-RAWXCRUISE/MARS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexspi_0bir","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mgs_0001_mars_global_surveyor_sampler_cd:8ca2ac16","title":"ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)","description":"This volume contains science data products mainly from observations acquired by Mars Global Surveyor (MGS) instruments between October 13 and November 7, 1997 (MGS orbits 19 through 36). These orbits correspond to the Assessment Subphase of the Orbit Insertion Phase of the mission. MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0 The Science Sampler Collection is intended to provide users with samples of MGS data products from each instrument, to allow them to prepare for data products that will be delivered routinely after MGS achieves its mapping orbit in March 1999. The collection includes MGS data products from the Mars Orbiter Camera (MOC), the Mars Orbiter Laser Altimeter (MOLA), the Thermal Emission Spectrometer (TES), and the Magnetometer / Electron Reflectometer (MAG/ER). It also includes two gravity models of Mars based on Mariner 9 and Viking data, which will be updated with the results of the MGS Radio Science Subsystem (RSS) observations. (No RSS data were collected during the Assessment Subphase, and none were available for release when this sampler collection was being assembled.) Finally, SPICE kernels and orbit nadir ground track files are included to allow the user to understand where data were acquired during the Assessment Subphase of the mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mgsa_0001_mars_global_surveyor_accelerometer_raw_data:ffc7f2bc","title":"ATM Volume mgsa_0001 (Mars Global Surveyor Accelerometer Raw Data)","description":"This volume contains raw data from Mars Global Surveyor Accelerometer investigations. 1.MGS-M-ACCEL-0-ACCEL_DATA-V1.0 This data set consists of raw counts from the MGS Accelerometer and other orbital information.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mgsa_0002_mars_global_surveyor_accelerometer_reduced_data:0f432171","title":"ATM Volume mgsa_0002 (Mars Global Surveyor Accelerometer Reduced Data)","description":"This volume contains reduced data from Mars Global Surveyor Accelerometer investigations. 1.MGS-M-ACCEL-5-PROFILE-V1.1 This data set consists of orbital profiles from the MGS Accelerometer. 2.MGS-M-ACCEL-5-ALTITUDE-V1.0 This data set consists of densities and density scale heights at six different altitudes from the MGS Accelerometer.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mgsl_300x_mars_global_surveyor_mars_orbiter_laser_altimeter_topographic_maps:d41d8cd9","title":"ATM Volume mgsl_300x (Mars Global Surveyor Mars Orbiter Laser Altimeter Topographic Maps)","description":"The MOLA Mission Experiment Gridded Data Records (MEGDRs) are global topographic maps of Mars created by binning altimetry values from the MOLA PEDR products acquired over the entire MGS mission. MEGDRs have been produced at resolutions of 4, 16, 32, 64, and 128 pixels per degree","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=mgsl_300x (Mars Global Surveyor Mars Orbiter Laser Altimeter Topographic Maps)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mgst_1100_mgst_1407_mars_global_surveyor_thermal_emission_spectrometer_data:d41d8cd9","title":"These volumes contain data from Mars Global Surveyor Thermal Emission Spectrometer investigations","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=mgst_1100 - mgst_1407 (Mars Global Surveyor Thermal Emission Spectrometer Data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mogc_0001_ames_mars_general_circulation_model_data_record:56f92dc0","title":"ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)","description":"This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1.MODEL-M-AMES-GCM-5-LAT-V1.0 This data set contains the time and zonally averaged values calculated by the Ames Mars General Circulation Model for the mean surface and sea level pressures and for several of the vertically integrated heat and angular momentum variables. The data are given as a function of latitude. 2.MODEL-M-AMES-GCM-5-LAT-LON-V1.0 This data set contains the instantaneous values for the surface temperature minimum and maximum, and for the amount of CO2 frost on the ground, calculated by the Ames Mars General Circulation Model. The data are given as a function of longitude and latitude. 3.MODEL-M-AMES-GCM-5-LAT-PRES-V1.0 This data set contains the time and zonally averaged values for several first order, heating, eddy, phase and amplitude variables, calculated by the Ames Mars General Circulation Model. The data are given as a function of latitude and vertical pressure. 4.MODEL-M-AMES-GCM-5-LAT-TIME-V1.0 This data set contains the zonally averaged values for the surface temperature mean, calculated by the Ames Mars General Circulation Model. The data are given as a function of latitude and local time. 5.MODEL-M-AMES-GCM-5-TIME-V1.0 This data set contains the meridionally and zonally averaged values for the CO2 mass condensation rate, calculated by the Ames Mars General Circulation Model. The data are given as a function of local time. 6.MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0 This data set contains the surface topography used by the Ames GCM, obtained from a combination of relevant ground-based and spacecraft data (commonly known as the \"Mars Consortium\" data set). The data were smoothed for compatibility with the model resolution. The model has 25 latitude bins (7.5 degree resolution) and 40 longitude bins (9.0 degree resolution).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_0101_mors_0156_mars_global_surveyor_radio_science_cruise_data:7c3d9228","title":"ATM Volume mors_0101 - mors_0156 (Mars Global Surveyor Radio Science Cruise Data)","description":"These volumes contain raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation. They also contain documentation in the form of ancillary files, to support access of the data on these CD-ROMs. 1.MGS-M-RSS-1-CRU-V1.0 This data set was collected while the spacecraft was en route from Earth to Mars (the MGS Cruise Phase); it can serve as calibration for later Mars observations. During Cruise, the spacecraft was far from other bodies, so evolution of its trajectory was very smooth. Range and Doppler behavior could be predicted long in advance, and variability resulted from intrinsic limitations of the equipment (including unmodeled spacecraft activity) -- not from the phenomena being measured. Some of the Cruise data have intrinsic science value of their own. Approximately halfway through Cruise, three weeks of spacecraft and ground system time was devoted to a search for gravitational waves, presumably originating outside the solar system.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_0201_mors_0359_mars_global_surveyor_radio_science_mars_orbit_insertion_moi_data:1c901307","title":"ATM Volume mors_0201 - mors_0359 (Mars Global Surveyor Radio Science Mars Orbit Insertion (MOI) Data)","description":"These volumes contain raw MOI data from Mars Global Surveyor Radio Science investigations. 1.MGS-M-RSS-1-MOI-V1.0 This data set was collected during the Mars Orbit Insertion (MOI) Phase -- while the spacecraft was on final approach to Mars, entering Mars orbit, and adjusting the orbit in preparation for the Mapping Phase. Most of the radio data supported MGS Navigation activities though some, especially toward the end when periapsis was low and near the pole, have intrinsic science value of their own.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.556994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_0401_mors_0584_mars_global_surveyor_radio_science_mapping_data:71233664","title":"ATM Volume mors_0401 - mors_0584 (Mars Global Surveyor Radio Science Mapping Data)","description":"These volumes contain raw mapping data from Mars Global Surveyor Radio Science investigations. 1.MGS-M-RSS-1-MAP-V1.0 This data set was collected during the MGS Mars Mapping (MAP) mission phase -- while the spacecraft was in a near-circular orbit and systematically collecting data from Mars. Some of the data supported MGS Navigation activities, but the majority went directly to science analysis.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_0601_mors_08xx_mars_global_surveyor_radio_science_mapping_data:f8f48512","title":"ATM Volume mors_0601 - mors_08xx (Mars Global Surveyor Radio Science Mapping Data)","description":"These volumes contain raw mapping data from Mars Global Surveyor Extended Mission Radio Science investigations. 1.MGS-M-RSS-1-EXT-V1.0 This data set was collected during the MGS Extended (EXT) mission phase.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1001_mors_1002_mors_1003_mors_1004_mors_1005_mors_1006_mors_1007_mors_1008_mors_1009_mors_1010_mors_1011_mors_1012_mors_1013_mors_1014_mors_1015_mors_1016_mors_1017_mors_1018_mors_1019_mors_1020_mors_1021_mors_1022_mors_1023_mors_1024_mors_1025_mors_1026_mors_1027_mors_1028_mors_1029_mors_1030_mors_1031_mors_1032_mors_1033_mors_1034_mors_1035_mors_1036_mors_1037_mors_1038_mars_global_surveyor_radio_science_reduced_data:8b3d3956","title":"ATM Volume mors_1001 , mors_1002 , mors_1003 , mors_1004 , mors_1005 , mors_1006 , mors_1007 , mors_1008 , mors_1009 , mors_1010 , mors_1011 , mors_1012 , mors_1013 , mors_1014 , mors_1015 , mors_1016 , mors_1017 , mors_1018 , mors_1019 , mors_1020 , mors_1021 , mors_1022 , mors_1023 , mors_1024 , mors_1025 , mors_1026 , mors_1027 , mors_1028 , mors_1029 , mors_1030 , mors_1031 , mors_1032 , mors_1033 , mors_1034 , mors_1035 , mors_1036 , mors_1037 , mors_1038 (Mars Global Surveyor Radio Science Reduced Data)","description":"These volumes contain reduced data from Mars Global Surveyor Radio Science investigations. 1.MGS-M-RSS-5-SDP-V1.0 The Mars Global Surveyor (MGS) Radio Science (RS) Archive Data Collection (ADC) of Science Data Products (SDP) includes data from radio occultation, gravity, and surface reflection investigations conducted by members of the MGS Radio Science Team (RST).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1101_mgs_rs_atmospheric_temperature_pressure_profiles:baaae302","title":"ATM Volume mors_1101 (MGS RS: Atmospheric Temperature-Pressure Profiles)","description":"This archival volume contains the entire collection of radio occultation neutral atmosphere temperature-pressure (T-p) profiles derived from Mars Global Surveyor (MGS) data during the MGS mission. The profiles were archived previously as part of the MGS-M-RSS-5-SDP-V1.0 data set (38 volumes, from MORS_1001 through MORS_1038). These are the same profiles, but they have been collected into a single volume where they are organized chronologically. The accompanying PDS detached labels are also the same except for minor edits needed for conformance to the new data set. MGS-M-RSS-5-TPS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1102_mgs_radio_science_science_data_products:716bbf77","title":"ATM Volume mors_1102 (MGS Radio Science - Science Data Products)","description":"This archival volume contains the complete collection of Mars Global Surveyor radio occultation ionosphere electron density profiles reorganized into a single archival volume. MGS-M-RSS-5-EDS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mpam_0001_mars_pathfinder_atmospheric_structure_instrument_meteorology_package:464e0ffe","title":"ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)","description":"This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission. 1. MPFL MARS ATM STRUCT INST AND MET PKG RAW AND CALIB EDL V1.0 This data set contains the raw and calibrated ASI/MET data collected during the EDL phase of the mission. These data were collected by accelerometers, temperature sensors, a pressure sensor, and a wind sensor. 2. MPFL MARS ATM STRUCT INST AND MET PKG DERIVED EDL V1.0 This data set contains temperature, pressure, and density profiles derived from the data in the first data set. 3. MPFL MARS ATM STRUCT INST AND MET PKG RAW SURFACE V1.0 This data set contains the raw MET data collected during the Surface phase of the mission. These data were acquired by temperature sensors, a pressure sensor, and a wind sensor. 4. MPFL MARS ATM STRUCT INST AND MET PKG CALIB SURFACE V1.0 This data set contains the calibrated versions of the data in the third data set.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mpim_0001_mpim_0003_mars_pathfinder_imager:d41d8cd9","title":"ATM Volume mpim_0001 - mpim_0003 (Mars Pathfinder Imager)","description":"These volumes contain Mars Pathfinder IMP EDR images and ancillary files. Each volume also contains a complete set of documentation files that describe the archive EDR images. 1.MPF LANDER MARS IMAGER FOR MARS PATHFINDER 2 EDR V1.0 This data set contains images taken by the Imager for Mars Pathfinder. The images are EDRs, which have been decoded and decompressed in single frame form, but not calibrated or radiometrically corrected. The data set also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, a gazetteer, an HTML image browser, and index tables.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=mpim_0001 - mpim_0003 (Mars Pathfinder Imager)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mr9_1001_mariner_9_infrared_interferometer_spectrometer_iris_spectral_observations_of_mars:fccf34b2","title":"ATM Volume mr9_1001 (Mariner 9 Infrared Interferometer Spectrometer (IRIS) Spectral Observations of Mars)","description":"This volume contains data produced from the Mariner 9 IRIS experiment. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1.MR9-M-IRIS-3-RDR-V1.0 The dataset contains measurements from the infrared interferometer spectrometer and ancillary data. Each record of the dataset consists of a header and a spectral observation of Mars; the header contains pointing and other information on the geometry of the observation.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mr9_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mroa_0001_mro_accelerometer_data:fcb88589","title":"ATM Volume mroa_0001 (MRO ACCELEROMETER DATA)","description":"This volume contains archival accelerometer results from the Mars Reconnaissance Orbiter (MRO) mission. This volume includes raw data from aerobraking and also includes reduced data. 1. MRO-M-ACCEL-5-ALTITUDE-V1.0 2. MRO-M-ACCEL-5-PROFILE-V1.0 3. MRO-M-ACCEL-2-ACCELDATA-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0001_mrom_0002_mrom_0003_mrom_0004_mrom_0005_mrom_0006_mrom_0007_mrom_0008_mrom_0009_mrom_0010_mrom_0011_mrom_0012_mrom_0013_mrom_0014_mrom_0015_mrom_0016_mrom_0017_mrom_0018_mrom_0019_mrom_0020_mrom_0021_mrom_0022_mrom_0023_mrom_0024_mrom_0025_mrom_0026_mrom_0027_mrom_0028_mrom_0029_mrom_0030_mrom_0031_mrom_0032_mrom_0033_mrom_0034_mrom_0035_mrom_0036_mrom_0040_mrom_0041_mrom_0042_mrom_0043_mrom_0044_mrom_0045_mrom_0046_mrom_0047_mrom_0048_mrom_0049_mrom_0050_mrom_0051_mrom_0052_mrom_0053_mrom_0054_mrom_0055_mrom_0056_mrom_0057_mrom_0058_mrom_0059_mrom_0060_mrom_0061_mrom_0062_mrom_0063_mrom_0064_mrom_0065_mrom_0066_mrom_0067_mrom_0068_mrom_0069_mrom_0070_mrom_0071_mrom_0072_mrom_0073_mrom_0074_mrom_0075_mrom_0076_mrom_0077_mrom_0078_mrom_0079_mrom_0080_mrom_0081_mrom_0082_mrom_0083_mrom_0084_mrom_0085_mrom_0086_mrom_0087_mrom_0088_mrom_0089_mrom_0090_mrom_0091_mrom_0092_mrom_0093_mrom_0094_mrom_0095_mrom_0096_mrom_0097_mrom_0098_mrom_0099_mrom_0100_mrom_0101_mrom_0102_mrom_0103_mrom_0104_mrom_0105_mrom_0106_mrom_0107_mrom_0108_mrom_0109_mrom_0110_mrom_0111_mrom_0112_mrom_0113_mrom_0114_mrom_0115_mrom_0116_mrom_0117_mrom_0118_mrom_0119_mrom_0120_mrom_0121_mrom_0122_mrom_0123_mrom_0124_mrom_0125_mrom_0126_mrom_0127_mrom_0128_mrom_0129_mrom_0130_mrom_0131_mrom_0132_mrom_0133_mrom_0134_mrom_0135_mrom_0136_mrom_0137_mrom_0138_mrom_0139_mrom_0140_mrom_0141_mrom_0142_mrom_0143_mrom_0144_mrom_0145_mrom_0146_mrom_0147_mrom_0148_mrom_0149_mrom_0150_mrom_0151_mrom_0152_mrom_0153_mrom_0154_mrom_0155_mrom_0156_mrom_0157_mrom_0158_mrom_0159_mrom_0160_mrom_0161_mrom_0162_mrom_0163_mrom_0164_mrom_0165_mrom_0166_mrom_0167_mrom_0168_mrom_0169_mrom_0170_mrom_0171_mrom_0172_mrom_0173_mrom_0174_mrom_0175_mrom_0176_mrom_0177_mrom_0178_mrom_0179_mrom_0180_mrom_0181_mrom_0182_mrom_0183_mrom_0184_mrom_0185_mrom_0186_mrom_0187_mrom_0188_mrom_0189_mrom_0190_mrom_0191_mrom_0192_mrom_0193_mrom_0194_mrom_0195_mrom_0196_mrom_0197_mrom_0198_mrom_0199_mrom_0200_mrom_0201_mrom_0202_mrom_0203_mrom_0204_mrom_0205_mrom_0206_mrom_0207_mrom_0208_mrom_0209_mrom_0210_mrom_0211_mrom_0212_mrom_0213_mrom_0214_mrom_0215_mrom_0216_mrom_0217_mrom_0218_mrom_0219_mrom_0220_mrom_0221_mrom_0222_mrom_0223_mrom_0224_mrom_0225_mrom_0226_mrom_0227_mars_climate_sounder_edr:5bf2f76f","title":"ATM Volume mrom_0001 , mrom_0002 , mrom_0003 , mrom_0004 , mrom_0005 , mrom_0006 , mrom_0007 , mrom_0008 , mrom_0009 , mrom_0010 , mrom_0011 , mrom_0012 , mrom_0013 , mrom_0014 , mrom_0015 , mrom_0016 , mrom_0017 , mrom_0018 , mrom_0019 , mrom_0020 , mrom_0021 , mrom_0022 , mrom_0023 , mrom_0024 , mrom_0025 , mrom_0026 , mrom_0027 , mrom_0028 , mrom_0029 , mrom_0030 , mrom_0031 , mrom_0032 , mrom_0033 , mrom_0034 , mrom_0035 , mrom_0036 , mrom_0040 , mrom_0041 , mrom_0042 , mrom_0043 , mrom_0044 , mrom_0045 , mrom_0046 , mrom_0047 , mrom_0048 , mrom_0049 , mrom_0050 , mrom_0051 , mrom_0052 , mrom_0053 , mrom_0054 , mrom_0055 , mrom_0056 , mrom_0057 , mrom_0058 , mrom_0059 , mrom_0060 , mrom_0061 , mrom_0062 , mrom_0063 , mrom_0064 , mrom_0065 , mrom_0066 , mrom_0067 , mrom_0068 , mrom_0069 , mrom_0070 , mrom_0071 , mrom_0072 , mrom_0073 , mrom_0074 , mrom_0075 , mrom_0076 , mrom_0077 , mrom_0078 , mrom_0079 , mrom_0080 , mrom_0081 , mrom_0082 , mrom_0083 , mrom_0084 , mrom_0085 , mrom_0086 , mrom_0087 , mrom_0088 , mrom_0089 , mrom_0090 , mrom_0091 , mrom_0092 , mrom_0093 , mrom_0094 , mrom_0095 , mrom_0096 , mrom_0097 , mrom_0098 , mrom_0099 , mrom_0100 , mrom_0101 , mrom_0102 , mrom_0103 , mrom_0104 , mrom_0105 , mrom_0106 , mrom_0107 , mrom_0108 , mrom_0109 , mrom_0110 , mrom_0111 , mrom_0112 , mrom_0113 , mrom_0114 , mrom_0115 , mrom_0116 , mrom_0117 , mrom_0118 , mrom_0119 , mrom_0120 , mrom_0121 , mrom_0122 , mrom_0123 , mrom_0124 , mrom_0125 , mrom_0126 , mrom_0127 , mrom_0128 , mrom_0129 , mrom_0130 , mrom_0131 , mrom_0132 , mrom_0133 , mrom_0134 , mrom_0135 , mrom_0136 , mrom_0137 , mrom_0138 , mrom_0139 , mrom_0140 , mrom_0141 , mrom_0142 , mrom_0143 , mrom_0144 , mrom_0145 , mrom_0146 , mrom_0147 , mrom_0148 , mrom_0149 , mrom_0150 , mrom_0151 , mrom_0152 , mrom_0153 , mrom_0154 , mrom_0155 , mrom_0156 , mrom_0157 , mrom_0158 , mrom_0159 , mrom_0160 , mrom_0161 , mrom_0162 , mrom_0163 , mrom_0164 , mrom_0165 , mrom_0166 , mrom_0167 , mrom_0168 , mrom_0169 , mrom_0170 , mrom_0171 , mrom_0172 , mrom_0173 , mrom_0174 , mrom_0175 , mrom_0176 , mrom_0177 , mrom_0178 , mrom_0179 , mrom_0180 , mrom_0181 , mrom_0182 , mrom_0183 , mrom_0184 , mrom_0185 , mrom_0186 , mrom_0187 , mrom_0188 , mrom_0189 , mrom_0190 , mrom_0191 , mrom_0192 , mrom_0193 , mrom_0194 , mrom_0195 , mrom_0196 , mrom_0197 , mrom_0198 , mrom_0199 , mrom_0200 , mrom_0201 , mrom_0202 , mrom_0203 , mrom_0204 , mrom_0205 , mrom_0206 , mrom_0207 , mrom_0208 , mrom_0209 , mrom_0210 , mrom_0211 , mrom_0212 , mrom_0213 , mrom_0214 , mrom_0215 , mrom_0216 , mrom_0217 , mrom_0218 , mrom_0219 , mrom_0220 , mrom_0221 , mrom_0222 , mrom_0223 , mrom_0224 , mrom_0225 , mrom_0226 , mrom_0227 (MARS CLIMATE SOUNDER EDR)","description":"This volume contains one month of raw sensor-level data (NASA level 0, CODMAC level 2) from the Mars Climate Sounder (MCS), flying aboard the Mars Reconnaissance Orbiter (MRO) spacecraft. These measurements include instrument engineering and housekeeping data, as well as detector science measurements of scene views and of calibration targets. 1. MRO-M-MCS-2-EDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1001_mrom_1002_mrom_1003_mrom_1004_mrom_1005_mrom_1006_mrom_1007_mrom_1008_mrom_1009_mrom_1010_mrom_1011_mrom_1012_mrom_1013_mrom_1014_mrom_1015_mrom_1016_mrom_1017_mrom_1018_mrom_1019_mrom_1020_mrom_1021_mrom_1022_mrom_1023_mrom_1024_mrom_1025_mrom_1026_mrom_1027_mrom_1028_mrom_1029_mrom_1030_mrom_1031_mrom_1032_mrom_1033_mrom_1034_mrom_1035_mrom_1036_mrom_1040_mrom_1041_mrom_1042_mrom_1043_mrom_1044_mrom_1045_mrom_1046_mrom_1047_mrom_1048_mrom_1049_mrom_1050_mrom_1051_mrom_1052_mrom_1053_mrom_1054_mrom_1055_mrom_1056_mrom_1057_mrom_1058_mrom_1059_mrom_1060_mrom_1061_mrom_1062_mrom_1063_mrom_1064_mrom_1065_mrom_1066_mrom_1067_mrom_1068_mrom_1069_mrom_1070_mrom_1071_mrom_1072_mrom_1073_mrom_1074_mrom_1075_mrom_1076_mrom_1077_mrom_1078_mrom_1079_mrom_1080_mrom_1081_mrom_1082_mrom_1083_mrom_1084_mrom_1085_mrom_1086_mrom_1087_mrom_1088_mrom_1089_mrom_1090_mrom_1091_mrom_1092_mrom_1093_mrom_1094_mrom_1095_mrom_1096_mrom_1097_mrom_1098_mrom_1099_mrom_1099_mrom_1100_mrom_1101_mrom_1102_mrom_1103_mrom_1104_mrom_1105_mrom_1106_mrom_1107_mrom_1108_mrom_1109_mrom_1110_mrom_1111_mrom_1112_mrom_1113_mrom_1114_mrom_1115_mrom_1116_mrom_1117_mrom_1118_mrom_1119_mrom_1120_mrom_1121_mrom_1122_mrom_1123_mrom_1124_mrom_1125_mrom_1126_mrom_1127_mrom_1128_mrom_1129_mrom_1130_mrom_1131_mrom_1132_mrom_1133_mrom_1134_mrom_1135_mrom_1136_mrom_1137_mrom_1138_mrom_1139_mrom_1140_mrom_1141_mrom_1142_mrom_1143_mrom_1144_mrom_1145_mrom_1146_mrom_1147_mrom_1148_mrom_1149_mrom_1150_mrom_1151_mrom_1152_mrom_1153_mrom_1154_mrom_1155_mrom_1156_mrom_1157_mrom_1158_mrom_1159_mrom_1160_mrom_1161_mrom_1162_mrom_1163_mrom_1164_mrom_1165_mrom_1166_mrom_1167_mrom_1168_mrom_1169_mrom_1170_mrom_1171_mrom_1172_mrom_1173_mrom_1174_mrom_1175_mrom_1176_mrom_1177_mrom_1178_mrom_1179_mrom_1180_mrom_1181_mrom_1182_mrom_1183_mrom_1184_mrom_1185_mrom_1186_mrom_1187_mrom_1188_mrom_1189_mrom_1190_mrom_1191_mrom_1192_mrom_1193_mrom_1194_mrom_1195_mrom_1196_mrom_1197_mrom_1198_mrom_1199_mrom_1200_mrom_1201_mrom_1202_mrom_1203_mrom_1204_mrom_1205_mrom_1206_mrom_1207_mrom_1208_mrom_1209_mrom_1210_mrom_1211_mrom_1212_mrom_1213_mrom_1214_mrom_1215_mrom_1216_mrom_1217_mrom_1218_mrom_1219_mrom_1220_mrom_1221_mrom_1222_mrom_1223_mrom_1224_mrom_1225_mrom_1226_mrom_1227_mars_climate_sounder_rdr:835ee98a","title":"ATM Volume mrom_1001 , mrom_1002 , mrom_1003 , mrom_1004 , mrom_1005 , mrom_1006 , mrom_1007 , mrom_1008 , mrom_1009 , mrom_1010 , mrom_1011 , mrom_1012 , mrom_1013 , mrom_1014 , mrom_1015 , mrom_1016 , mrom_1017 , mrom_1018 , mrom_1019 , mrom_1020 , mrom_1021 , mrom_1022 , mrom_1023 , mrom_1024 , mrom_1025 , mrom_1026 , mrom_1027 , mrom_1028 , mrom_1029 , mrom_1030 , mrom_1031 , mrom_1032 , mrom_1033 , mrom_1034 , mrom_1035 , mrom_1036 , mrom_1040 , mrom_1041 , mrom_1042 , mrom_1043 , mrom_1044 , mrom_1045 , mrom_1046 , mrom_1047 , mrom_1048 , mrom_1049 , mrom_1050 , mrom_1051 , mrom_1052 , mrom_1053 , mrom_1054 , mrom_1055 , mrom_1056 , mrom_1057 , mrom_1058 , mrom_1059 , mrom_1060 , mrom_1061 , mrom_1062 , mrom_1063 , mrom_1064 , mrom_1065 , mrom_1066 , mrom_1067 , mrom_1068 , mrom_1069 , mrom_1070 , mrom_1071 , mrom_1072 , mrom_1073 , mrom_1074 , mrom_1075 , mrom_1076 , mrom_1077 , mrom_1078 , mrom_1079 , mrom_1080 , mrom_1081 , mrom_1082 , mrom_1083 , mrom_1084 , mrom_1085 , mrom_1086 , mrom_1087 , mrom_1088 , mrom_1089 , mrom_1090 , mrom_1091 , mrom_1092 , mrom_1093 , mrom_1094 , mrom_1095 , mrom_1096 , mrom_1097 , mrom_1098 , mrom_1099 , mrom_1099 , mrom_1100 , mrom_1101 , mrom_1102 , mrom_1103 , mrom_1104 , mrom_1105 , mrom_1106 , mrom_1107 , mrom_1108 , mrom_1109 , mrom_1110 , mrom_1111 , mrom_1112 , mrom_1113 , mrom_1114 , mrom_1115 , mrom_1116 , mrom_1117 , mrom_1118 , mrom_1119 , mrom_1120 , mrom_1121 , mrom_1122 , mrom_1123 , mrom_1124 , mrom_1125 , mrom_1126 , mrom_1127 , mrom_1128 , mrom_1129 , mrom_1130 , mrom_1131 , mrom_1132 , mrom_1133 , mrom_1134 , mrom_1135 , mrom_1136 , mrom_1137 , mrom_1138 , mrom_1139 , mrom_1140 , mrom_1141 , mrom_1142 , mrom_1143 , mrom_1144 , mrom_1145 , mrom_1146 , mrom_1147 , mrom_1148 , mrom_1149 , mrom_1150 , mrom_1151 , mrom_1152 , mrom_1153 , mrom_1154 , mrom_1155 , mrom_1156 , mrom_1157 , mrom_1158 , mrom_1159 , mrom_1160 , mrom_1161 , mrom_1162 , mrom_1163 , mrom_1164 , mrom_1165 , mrom_1166 , mrom_1167 , mrom_1168 , mrom_1169 , mrom_1170 , mrom_1171 , mrom_1172 , mrom_1173 , mrom_1174 , mrom_1175 , mrom_1176 , mrom_1177 , mrom_1178 , mrom_1179 , mrom_1180 , mrom_1181 , mrom_1182 , mrom_1183 , mrom_1184 , mrom_1185 , mrom_1186 , mrom_1187 , mrom_1188 , mrom_1189 , mrom_1190 , mrom_1191 , mrom_1192 , mrom_1193 , mrom_1194 , mrom_1195 , mrom_1196 , mrom_1197 , mrom_1198 , mrom_1199 , mrom_1200 , mrom_1201 , mrom_1202 , mrom_1203 , mrom_1204 , mrom_1205 , mrom_1206 , mrom_1207 , mrom_1208 , mrom_1209 , mrom_1210 , mrom_1211 , mrom_1212 , mrom_1213 , mrom_1214 , mrom_1215 , mrom_1216 , mrom_1217 , mrom_1218 , mrom_1219 , mrom_1220 , mrom_1221 , mrom_1222 , mrom_1223 , mrom_1224 , mrom_1225 , mrom_1226 , mrom_1227 (MARS CLIMATE SOUNDER RDR)","description":"These volumes each contain one month of raw sensor-level data (NASA level 1B; CODMAC level 4) from the Mars Climate Sounder (MCS), flying aboard the Mars Reconnaissance Orbiter (MRO) spacecraft. These measurements include instrument engineering and housekeeping data, as well as detector science measurements of scene views and of calibration targets. 1. MRO-M-MCS-4-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2001_mrom_2002_mrom_2003_mrom_2004_mrom_2005_mrom_2006_mrom_2007_mrom_2008_mrom_2009_mrom_2010_mrom_2011_mrom_2012_mrom_2013_mrom_2014_mrom_2015_mrom_2016_mrom_2017_mrom_2018_mrom_2019_mrom_2020_mrom_2021_mrom_2022_mrom_2023_mrom_2024_mrom_2025_mrom_2026_mrom_2027_mrom_2028_mrom_2029_mrom_2030_mrom_2031_mrom_2032_mrom_2033_mrom_2034_mrom_2035_mrom_2036_mrom_2040_mrom_2041_mrom_2042_mrom_2043_mrom_2044_mrom_2045_mrom_2046_mrom_2047_mrom_2048_mrom_2049_mrom_2050_mrom_2051_mrom_2052_mrom_2053_mrom_2054_mrom_2055_mrom_2056_mrom_2057_mrom_2058_mrom_2059_mrom_2060_mrom_2061_mrom_2062_mrom_2063_mrom_2064_mrom_2065_mrom_2066_mrom_2067_mrom_2068_mrom_2069_mrom_2070_mrom_2071_mrom_2072_mrom_2073_mrom_2074_mrom_2075_mrom_2076_mrom_2077_mrom_2078_mrom_2079_mrom_2080_mrom_2081_mrom_2082_mrom_2083_mrom_2084_mrom_2085_mrom_2086_mrom_2087_mrom_2088_mrom_2089_mrom_2090_mrom_2091_mrom_2092_mrom_2093_mrom_2094_mrom_2095_mrom_2096_mrom_2097_mrom_2098_mrom_2099_mrom_2100_mrom_2101_mrom_2102_mrom_2103_mrom_2104_mrom_2105_mrom_2106_mrom_2107_mrom_2108_mrom_2109_mrom_2110_mrom_2111_mrom_2112_mrom_2113_mrom_2114_mrom_2115_mrom_2116_mrom_2117_mrom_2118_mrom_2119_mrom_2120_mrom_2121_mrom_2122_mrom_2123_mrom_2124_mrom_2125_mrom_2126_mrom_2127_mrom_2128_mrom_2129_mrom_2130_mrom_2131_mrom_2132_mrom_2133_mrom_2134_mrom_2135_mrom_2136_mrom_2137_mrom_2138_mrom_2139_mrom_2140_mrom_2141_mrom_2142_mrom_2143_mrom_2144_mrom_2145_mrom_2146_mrom_2147_mrom_2148_mrom_2149_mrom_2150_mrom_2151_mrom_2152_mrom_2153_mrom_2154_mrom_2155_mrom_2156_mrom_2157_mrom_2158_mrom_2159_mrom_2160_mrom_2161_mrom_2162_mrom_2163_mrom_2164_mrom_2165_mrom_2166_mrom_2167_mrom_2168_mrom_2169_mrom_2170_mrom_2171_mrom_2172_mrom_2173_mrom_2174_mrom_2175_mrom_2176_mrom_2177_mrom_2178_mrom_2179_mrom_2180_mrom_2181_mrom_2182_mrom_2183_mrom_2184_mrom_2185_mrom_2186_mrom_2187_mrom_2188_mrom_2189_mrom_2190_mrom_2191_mrom_2192_mrom_2193_mrom_2194_mrom_2195_mrom_2196_mrom_2197_mrom_2198_mrom_2199_mrom_2200_mrom_2201_mrom_2202_mrom_2203_mrom_2204_mrom_2205_mrom_2206_mrom_2207_mrom_2208_mrom_2209_mrom_2210_mrom_2211_mrom_2212_mrom_2213_mrom_2214_mrom_2215_mrom_2216_mrom_2217_mrom_2218_mrom_2219_mrom_2220_mrom_2221_mrom_2222_mrom_2223_mrom_2224_mrom_2225_mrom_2226_mrom_2227_mars_climate_sounder_ddr:3afb3fa4","title":"ATM Volume mrom_2001 , mrom_2002 , mrom_2003 , mrom_2004 , mrom_2005 , mrom_2006 , mrom_2007 , mrom_2008 , mrom_2009 , mrom_2010 , mrom_2011 , mrom_2012 , mrom_2013 , mrom_2014 , mrom_2015 , mrom_2016 , mrom_2017 , mrom_2018 , mrom_2019 , mrom_2020 , mrom_2021 , mrom_2022 , mrom_2023 , mrom_2024 , mrom_2025 , mrom_2026 , mrom_2027 , mrom_2028 , mrom_2029 , mrom_2030 , mrom_2031 , mrom_2032 , mrom_2033 , mrom_2034 , mrom_2035 , mrom_2036 , mrom_2040 , mrom_2041 , mrom_2042 , mrom_2043 , mrom_2044 , mrom_2045 , mrom_2046 , mrom_2047 , mrom_2048 , mrom_2049 , mrom_2050 , mrom_2051 , mrom_2052 , mrom_2053 , mrom_2054 , mrom_2055 , mrom_2056 , mrom_2057 , mrom_2058 , mrom_2059 , mrom_2060 , mrom_2061 , mrom_2062 , mrom_2063 , mrom_2064 , mrom_2065 , mrom_2066 , mrom_2067 , mrom_2068 , mrom_2069 , mrom_2070 , mrom_2071 , mrom_2072 , mrom_2073 , mrom_2074 , mrom_2075 , mrom_2076 , mrom_2077 , mrom_2078 , mrom_2079 , mrom_2080 , mrom_2081 , mrom_2082 , mrom_2083 , mrom_2084 , mrom_2085 , mrom_2086 , mrom_2087 , mrom_2088 , mrom_2089 , mrom_2090 , mrom_2091 , mrom_2092 , mrom_2093 , mrom_2094 , mrom_2095 , mrom_2096 , mrom_2097 , mrom_2098 , mrom_2099 , mrom_2100 , mrom_2101 , mrom_2102 , mrom_2103 , mrom_2104 , mrom_2105 , mrom_2106 , mrom_2107 , mrom_2108 , mrom_2109 , mrom_2110 , mrom_2111 , mrom_2112 , mrom_2113 , mrom_2114 , mrom_2115 , mrom_2116 , mrom_2117 , mrom_2118 , mrom_2119 , mrom_2120 , mrom_2121 , mrom_2122 , mrom_2123 , mrom_2124 , mrom_2125 , mrom_2126 , mrom_2127 , mrom_2128 , mrom_2129 , mrom_2130 , mrom_2131 , mrom_2132 , mrom_2133 , mrom_2134 , mrom_2135 , mrom_2136 , mrom_2137 , mrom_2138 , mrom_2139 , mrom_2140 , mrom_2141 , mrom_2142 , mrom_2143 , mrom_2144 , mrom_2145 , mrom_2146 , mrom_2147 , mrom_2148 , mrom_2149 , mrom_2150 , mrom_2151 , mrom_2152 , mrom_2153 , mrom_2154 , mrom_2155 , mrom_2156 , mrom_2157 , mrom_2158 , mrom_2159 , mrom_2160 , mrom_2161 , mrom_2162 , mrom_2163 , mrom_2164 , mrom_2165 , mrom_2166 , mrom_2167 , mrom_2168 , mrom_2169 , mrom_2170 , mrom_2171 , mrom_2172 , mrom_2173 , mrom_2174 , mrom_2175 , mrom_2176 , mrom_2177 , mrom_2178 , mrom_2179 , mrom_2180 , mrom_2181 , mrom_2182 , mrom_2183 , mrom_2184 , mrom_2185 , mrom_2186 , mrom_2187 , mrom_2188 , mrom_2189 , mrom_2190 , mrom_2191 , mrom_2192 , mrom_2193 , mrom_2194 , mrom_2195 , mrom_2196 , mrom_2197 , mrom_2198 , mrom_2199 , mrom_2200 , mrom_2201 , mrom_2202 , mrom_2203 , mrom_2204 , mrom_2205 , mrom_2206 , mrom_2207 , mrom_2208 , mrom_2209 , mrom_2210 , mrom_2211 , mrom_2212 , mrom_2213 , mrom_2214 , mrom_2215 , mrom_2216 , mrom_2217 , mrom_2218 , mrom_2219 , mrom_2220 , mrom_2221 , mrom_2222 , mrom_2223 , mrom_2224 , mrom_2225 , mrom_2226 , mrom_2227 (Mars Climate Sounder DDR)","description":"These volumes each contain one month of derived sensor-level data (NASA Level 2; CODMAC Level 5) from the Mars Climate Sounder (MCS), flying aboard the Mars Reconnaissance Orbiter (MRO) spacecraft. These measurements include instrument engineering and housekeeping data, as well as detector science measurements of scene views and of calibration targets. 1.MRO-M-MCS-5-DDR-V6.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mslrem_0001_rems_edr_data:0dfbec69","title":"ATM Volume mslrem_0001 (REMS EDR DATA)","description":"This volume contains raw data from the Mars Science Laboratory REMS instrument. 1.MSL-M-REMS-2-EDR-V1.0 Raw, unprocessed scientific and housekeeping engineering data taken from the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mslrem_1001_rems_rdr_data:f23fef1f","title":"ATM Volume mslrem_1001 (REMS RDR DATA)","description":"This volume contains processed data from the Mars Science Laboratory REMS instrument. 1. MSL-M-REMS-3-TELRDR-V1.0 Data taken by the sensors of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory, in electrical and thermal units. 2. MSL-M-REMS-4-ENVRDR-V1.0 Data taken by the sensors of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory, in physical units. 3. MSL-M-REMS-5-MODRDR-V1.0 Data taken by the sensors of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory, in physical units, with corrections and modeling. 4. MSL-M-REMS-6-ADR-V1.0 Ancillary data used in the processing of the data taken by the sensors of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory. 5. MSL-M-REMS-5-UVRDR-V1.0 UV fluxes measured by the UV sensor of the Rover Environmental Monitoring Station (REMS) aboard the Mars Science Laboratory in physical units, with corrections and modeling.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrors_2001_mro_rs_tps_archive:99f1bc32","title":"ATM Volume mrors_2001 (MRO RS TPS ARCHIVE)","description":"The Mars Reconnaissance Orbiter (MRO) Radio Science (RS Occultation Data Collection contains Radio Science Atmospheric Temperature-Pressure Profile (RSTP) data files. MRO-M-RSS-5-TPS-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mrors_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:odt_xxxx_mars_odyssey_themis_data:d41d8cd9","title":"ATM Volume odt_xxxx (Mars Odyssey THEMIS Data)","description":"This volume contains 2001 Mars Odyssey THEMIS Standard Data Products, along with documentation and other ancillary information about the data products. 1.ODY-M-THM-2-IREDR-V1.0 2.ODY-M-THM-2-VISEDR-V1.0 3.ODY-M-THM-3-IRRDR-V1.0 4.ODY-M-THM-3-VISRDR-V1.0 5.ODY-M-THM-3-IRBTR-V1.0 6.ODY-M-THM-3-VISABR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=odt_xxxx (Mars Odyssey THEMIS Data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:odya_0001_ody_accelerometer_data:b6045ae2","title":"ATM Volume odya_0001 (ODY Accelerometer Data)","description":"This volume contains archival accelerometer results from the Mars Odyssey (ODY) mission. This volume includes raw and reduced data from the Aerobraking Phase of the mission. 1. ODY-M-ACCEL-5-ALTITUDE-V2.0 2. ODY-M-ACCEL-5-PROFILE-V2.0 3. ODY-M-ACCEL-2-ACCELDATA-V2.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:odya_1001_odyssey_accelerometer_derived_data:2da57ee2","title":"ATM Volume odya_1001 (Odyssey Accelerometer Derived Data)","description":"This volume contains archival data products obtained from accelerometer observations from the aerobraking phase of the Mars Odyssey mission, specifically raw low rate and high rate accelerations, derived density profiles, derived densities and density scale heights at constant altitudes, and ancillary information. 1. ODY-M-ACCEL-5-DERIVED-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phld_0001_phld_0002_phld_0003_phoenix_mars_met_lidar_atmospheric_profiles:876cea7c","title":"ATM Volume phld_0001 , phld_0002 , phld_0003 (Phoenix Mars MET LIDAR Atmospheric Profiles)","description":"This volume contains Phoenix MET Lidar TSDR (Time-Sequential Data Record) products, and documentation which describes the TSDRs. 1. PHX-M-MET-2-L-EDR-V1.0 This volume contains unprocessed laser scattering atmospheric profiles for photon counting data at 532nm, and analog data at both 532 and 1064nm wavelengths (expressed in Digital Numbers). The range data is provided as a time series of profiles between 5 and 90 min in total duration, with each profile representing an accumulation or average over 1.28-20.24 sec. Supplemental data of estimated laser power and inter-profile analog background skylight estimates are also provided. 2. PHX-M-MET-3-L-RDR-V1.0 This volume contains raw (volts and counts) laser scattering atmospheric profiles for photon counting data at 532nm, and analog data at both 532 and 1064nm wavelengths. The range data is provided as a time series of profiles between 5 and 90 min in total duration, with each profile representing an accumulation or average over 1.28-20.24 sec. Supplemental data of estimated laser power (given as a voltage) and inter-profile analog background skylight estimates are also provided.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phmt_0001_phmt_0002_phmt_0003_phoenix_mars_meteorological_pressure_temperature:69b637e0","title":"ATM Volume phmt_0001 , phmt_0002 , phmt_0003 (Phoenix Mars Meteorological Pressure / Temperature)","description":"This volume contains Phoenix MET P&T TSDR (Time-Sequential Data Record) products, and documentation which describes the TSDRs. PHX-M-MET-2-PT-EDR-V1.0 This volume contains pre-processed (Digital Numbers) temperature and pressure data. The temperature data was collected at 250, 500 and 1000mm above the Phoenix Lander deck, and the pressure data was collected at (nearly) the height of the Lander deck. Nominally the data was collected at 2 sec resolution, but is also provided at 512 sec averages (with distribution statistics). PHX-M-MET-3-PT-RDR-V1.0 This volume contains calibrated temperature and pressure data. The temperature data was collected at 250, 500 and 1000mm above the Phoenix Lander deck, and the pressure data was collected at (nearly) the height of the Lander deck. Nominally the data was collected at 2 sec resolution, but is also provided at 512 sec averages (with distribution statistics). Owing to the placement of a heater near the pressure sensor, a corrected set of values was required, and is provided for the pressure data.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phxao_1001_phx_mars_ssi_atmospheric_opacity_rdr:0ccde453","title":"ATM Volume phxao_1001 (PHX Mars SSI Atmospheric Opacity RDR)","description":"This volume contains the atmospheric opacity derived products from the SSI experiment of the PHOENIX mission. PHX-M-SSI-5-ATMOS-OPACITY-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxao_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phxase_0001_phoenix_mars_atmospheric_structure_experiment:c4ff7563","title":"ATM Volume phxase_0001 (Phoenix Mars Atmospheric Structure Experiment)","description":"This volume contains Atmospheric Structure Experiment (ASE) results. This volume includes data from Entry, Descent, and Landing (EDL) phases of the mission, specifically measurements from the accelerometers and gyros. PHX-M-ASE-2-EDL-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phxase_0002_phoenix_atmospheric_structure_experiment_archive:7e817e14","title":"ATM Volume phxase_0002 (Phoenix Atmospheric Structure Experiment Archive)","description":"This volume contains time ordered records of measured acceleration, derived velocity, derived position, derived atmospheric properties and, other quantities determined from IMU (ASE) measurements recorded during the EDL of PHX. PHX-M-ASE-5-EDL-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phxwnd_0001_phoenix_mars_telltale_wind_velocity_direction:e248e5ba","title":"ATM Volume phxwnd_0001 (Phoenix Mars Telltale Wind Velocity & Direction)","description":"This volume contains Telltale Experiment (TT) results from the PHOENIX Lander mission. PHX-M-TT-5-WIND-VEL-DIR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxwnd_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vl_0001_vl_0002_viking_lander_images:d41d8cd9","title":"ATM Volume vl_0001, vl_0002 (Viking Lander Images)","description":"These volumes contain Viking Lander EDR images and ancillary files. Each volume also contains a complete set of documentation and errata files that describe the archive and EDR images. 1.VL1/VL2 MARS LCS EXPERIMENT DATA RECORD V1.0 The data set consists of EDR images from the Viking Lander spacecraft.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vl_0001, vl_0002 (Viking Lander Images)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vl_1001_viking_lander_products:6e4f99af","title":"ATM Volume vl_1001 (Viking Lander Products)","description":"This volume contains data from the Viking Lander 1 & 2 spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO: 1.VL1-M-MET-4-BINNED-P-T-V-CORR-V1.0 This data set contains binned and splined data obtained from the Viking Meteorology Instrument System (VMIS) through portions of the Viking Lander 1 mission. The data set consists of mean values of pressure, temperature, and wind speed (zonal and meridional) calculated for 25 bins of equal duration per day. 2.VL1/VL2-M-MET-4-DAILY-AVG-PRESSURE-V1.0 This data set contains summary pressure data obtained from the Viking Meteorology Instrument System (VMIS) through the duration of the Viking Lander 1 and 2 missions. The data are derived from the ambient pressure sensor carried onboard the Landers. The data set consists of the daily average pressure values and relevant statistics presented on a sol by sol basis. 3.VL1/VL2-M-LCS-5-ATMOS-OPTICAL-DEPTH-V1.0 Viking Lander camera images of the Sun were used to compute total normal atmospheric optical depth at the two landing sites over a period of about 900 Mars days. This data set contains 1044 measurements of optical depth and associated error estimates. The optical depths were derived from Sun diode images, which were obtained by the Lander cameras at a wavelength of 0.67 micrometers. 4.VL1/VL2-M-MET-3-P-V1.0 This data set contains the martian surface atmospheric pressure readings obtained through much of the duration of the Viking Lander 1 and 2 missions (data are included for Viking Lander 1 sols 0 - 2245 and Viking Lander 2 sols 0 - 1050). The data are derived from the ambient pressure sensor carried onboard the Landers and values are presented on a point by point basis. 5.VL1/VL2-M-MET-4-BINNED-P-T-V-V1.0 This data set contains binned and splined data obtained from the Viking Meteorology Instrument System (VMIS) through most of the Viking Lander 2 mission and the early days of the Lander 1 mission. The data set consists of mean values of pressure, temperature, and wind speed (zonal, meridional, and combined) and relevant statistics and warning flags calculated for 25 bins of equal duration per day.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vl_1002_viking_lander_products:2d51c11b","title":"ATM Volume vl_1002 (Viking Lander Products)","description":"This volume contains archival data produced from the Viking Lander missions to Mars. The data sets included were produced from the Lander Footpad Temperature Sensors. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1.VL1/VL2-M-FTS-3-FOOTPAD-TEMP-V1.0 This data set contains the Martian near-surface temperatures obtained from the Viking Lander 1 and 2 thermocouple footpad temperature sensors. The data set is composed of the following parameter fields (listed as the field name followed by a description). 2.VL1/VL2-M-FTS-4-SOL-AVG-FTPD-TEMP-V1.0 This data set contains sol averages of the Martian near-surface temperatures obtained from the Viking Lander 1 and 2 thermocouple footpad temperature sensors. The data set consists of the daily average footpad temperature values and relevant statistics presented on a sol by sol basis. The data set is composed of the following parameter fields (listed as the field name followed by a description).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vo_0001_viking_orbiter_irtm:d41d8cd9","title":"ATM Volume vo_0001 (Viking Orbiter IRTM)","description":"This volume contains a single data set from the Viking Orbiter spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO: 1.VO1/VO2 MARS INFRARED THERMAL MAPPER RESAMPLED DATA V1.0 This data set contains the Infrared Thermal Mapping (IRTM) data of Mars acquired by the Viking orbiters. The database contains the time, geometry, and radiative parameters obtained by the IRTM instrument.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vo_0001 (Viking Orbiter IRTM)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vo_1001_vo_1032_vo_1051_vo_1064_viking_orbiter_images:d41d8cd9","title":"ATM Volume vo_1001 - vo_1032, vo_1051 - vo_1064 (Viking Orbiter Images)","description":"These volumes contain compressed level-2 (unprocessed) images and subsampled browse images from the Viking Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks. 1.VO1/VO2 MARS VISUAL IMAGING SS EXPRMNT DATA RECORD V2.0 The data set consists of compressed images from the Viking Orbiter spacecraft. The images are compressed using a Huffman encoding scheme. 2.VO1/VO2 MARS VISUAL IMAGING SS EXPRMNT DATA REC BROWSE V2.0 This data set consists of subsampled browse images from the Viking Orbiter spacecraft. The image data are not compressed but subsampled by a factor of 4 in both lines and samples.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vo_1001 - vo_1032, vo_1051 - vo_1064 (Viking Orbiter Images)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vo_3001_viking_orbiter_mawd:f789f723","title":"ATM Volume vo_3001 (Viking Orbiter MAWD)","description":"This volume contains data from the Viking Orbiter spacecraft MAWD experiments. It also contains documentation in the form of ancillary files, to support access of the data. 1.VO1/VO2 MARS ATMOSPHERIC WATER DETECTOR 4 V1.0 This data set consists of the raster-averaged radiant intensities and associated data parameters produced from data acquired by the Mars Atmospheric Water Detectors (MAWD) onboard the Viking Orbiters. The basic observations give temporal coverage spanning just over two martian years and variable, but extensive, spatial coverage of the planet. MAWD was a five-channel grating spectrometer measuring solar radiation reflected from the surface and atmosphere of Mars in and out of water vapor bands in the 1.4 micrometer spectral interval. The data set described here contains the solar reflected radiant intensities (i.e., radiances) measured by MAWD, derived water vapor column abundances, a derived '1.4-micrometer brightness', and ancillary data (e.g., viewing geometry, surface elevation and airmass).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vo_3002_viking_orbiter_irtm:f7b75140","title":"ATM Volume vo_3002 (Viking Orbiter IRTM)","description":"This volume contains data derived from the Viking Orbiter spacecraft IRTM experiments. It also contains documentation in the form of ancillary files, to support access of the data. 1.VO1/VO2-M-IRTM-5-BINNED/CLOUDS-V1.0 This data set, derived from the Viking Orbiter Infrared Thermal Mapper (IRTM) data set, has been binned in both space and time. It consists of two complementary portions, water ice cloud observations and surface observations. An algorithm for detecting clouds was employed, based upon the contrasts among the brightness temperatures derived from the 7, 9, and 20 micrometer IRTM channels. Water ice clouds were identified by their characteristic thermal signature. The IRTM observations in which clouds were detected were binned at 2 x 2 degree spatial (latitude, longitude) resolution for every 10 degrees in areocentric solar longitude.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vomr_0001_mars_clouds:60baf1a8","title":"ATM Volume vomr_0001 (Mars Clouds)","description":"This volume contains a single data set from the Mariner 9 and Viking Orbiter spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO: MR9/VO1/VO2-M-ISS/VIS-5-CLOUD-V1.0 This data set consists of a catalog of clouds observed in Mariner 9 and Viking Orbiter images. Seven 'cloud types' were defined according to easily observable objective morphologic criteria. The entire Mariner 9 and Viking Orbiter image data sets (approximately 7400 and over 50000 images, respectively) were examined at least twice, by two separate observers. Cloud occurrences were compiled by examining images for specific cloud morphologies, examining the same area at different times, utilizing limb images, and consulting photomosaics to determine the spatial relations of cloud obscurations. The data set contains details of the cloud occurrences and the images in which they were observed.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vomr_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0010_cocirs_0011_cocirs_0012_cocirs_0101_cocirs_0102_cocirs_0103_cocirs_0104_cocirs_0107_cocirs_0110_cocirs_0201_cocirs_0205_cocirs_0207_cocirs_0209_cocirs_0210_cocirs_0301_cocirs_0304_cocirs_0306_cassini_cirs_jupiter_raw_and_calibrated_data_archive:4d41dbce","title":"ATM Volume cocirs_0010 , cocirs_0011 , cocirs_0012 , cocirs_0101 , cocirs_0102 , cocirs_0103 , cocirs_0104 , cocirs_0107 , cocirs_0110 , cocirs_0201 , cocirs_0205 , cocirs_0207 , cocirs_0209 , cocirs_0210 , cocirs_0301 , cocirs_0304 , cocirs_0306 (Cassini Cirs Jupiter Raw and Calibrated Data Archive)","description":"These volumes contain infrared interferograms and spectra from the Cassini CIRS Instrument. These volumes also contain Cassini CIRS TSDR (Time-Sequential Data Record) products, and documentation which describes the TSDRs. CO-J-CIRS-2/3/4-TSDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/review/CIRSV2/COCIRS_0306","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0001_cassini_ultraviolet_imaging_spectrograph_data:151f53dd","title":"ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2000-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-J-UVIS-2-CUBE-V1.2 2. CO-J-UVIS-2-SPEC-V1.2 3. CO-J-UVIS-2-SSB-V1.2 4. CO-J-UVIS-2-WAV-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:coiss_0011_cassini_iss_experiment_data_records_and_calibration_files:8e3ca792","title":"ATM Volume coiss_0011 (CASSINI ISS EXPERIMENT DATA RECORDS AND CALIBRATION FILES)","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras. CO_CAL_ISSNA/ISSWA_2_EDR_V4.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coiss_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0002_cassini_ultraviolet_imaging_spectrograph_data:08537b20","title":"ATM Volume couvis_0002 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-J-UVIS-2-CUBE-V1.2 2. CO-J-UVIS-2-SPEC-V1.2 3. CO-J-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gbat_0001_spectrophotometry_of_the_jovian_planets_and_titan:ac90c4e0","title":"ATM Volume gbat_0001 (Spectrophotometry of the Jovian Planets and Titan)","description":"This volume contains archival data produced from ground based observations of the Jovian planets and Titan tabulating the methane absorption coefficient and the full disk albedos of the Jovian planets and Titan at wavelengths from 300 nm to 1000 nm. 1.ESO-J/S/N/U-SPECTROPHOTOMETER-4-V2.0 Full-disk albedo spectra of the jovian planets and Titan were derived from observations at the European Southern Observatory in July 1995.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gbat_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:go_0016_go_0022_galileo_orbiter_images:d41d8cd9","title":"ATM Volume go_0016 - go_0022 (Galileo Orbiter Images)","description":"These volumes contain images from the Galileo Orbiter spacecraft. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_0016 - go_0022 (Galileo Orbiter Images)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:go_1005_go_1007_go_1104_go_1119_galileo_orbiter_nims_data:d41d8cd9","title":"ATM Volume go_1005 - go_1007 , go_1104 - go_1119 (Galileo Orbiter NIMS Data)","description":"These volumes contain data from the Galileo Orbiter NIMS instrument. They also contain documentation, software and index directories to support access to the image files on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=go_1005 - go_1007 , go_1104 - go_1119 (Galileo Orbiter NIMS Data)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gopr_5001_gopr_5002_galileo_ppr:211a88de","title":"ATM Volume gopr_5001 , gopr_5002 (Galileo PPR)","description":"This volume contains data records (R_EDRs and RDRs) for the Photopolarimeter/Radiometer (PPR) during the Jupiter Orbital phase of the Galileo Mission. 1.GO-J-PPR-2-REDR-V1.0 2.GO-J-PPR-3-RDR-V1.0 These volumes contain the raw and reduced data archive from the Galileo Orbiter Photopolarimeter/Radiometer (PPR) instrument. All observations from orbit G1 up to and including orbit E11 are included on GOPR_5001; and observations from orbit E12 up to and including orbit I33 are included on GOPR_5002.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gouv_0002_gouv_0003_galileo_ultraviolet_spectrometer_data:ae349f91","title":"ATM Volume gouv_0002 , gouv_0003 (GALILEO ULTRAVIOLET SPECTROMETER DATA)","description":"This volume contains raw data records for the Ultraviolet Spectrometer (UVS) and Extreme Ultraviolet Spectrometer (EUV) during the Jupiter Orbital phase of the Galileo Mission. 1.GO-J-EUV-2-EDR-JUPITER-V1.0 2.GO-J-UVS-2-EDR-JUPITER-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gp_0001_galileo_probe_archive:e73d6a20","title":"ATM Volume gp_0001 (Galileo Probe Archive)","description":"This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. 1.GP-J-ASI-3-ENTRY-V1.0 2.GP-J-DWE-3-ENTRY-V1.0 3.GP-J-EPI-3-ENTRY-V1.0 4.GP-J-HAD-3-ENTRY-V1.0 5.GP-J-LRD-3-ENTRY-V1.0 6.GP-J-NEP-3-ENTRY-V1.0 7.GP-J-NFR-3-ENTRY-V1.0 8.GP-J-NMS-3-ENTRY-V1.0 These data sets correspond as follows: 1.ASI - This data set contains data from the Atmospheric Structure Instrument. 2.DWE - This data set contains data from the Doppler Wind Experiment, which is not an actual instrument on board the Probe but an analysis of the radio signals to determine the atmospheric winds. 3.EPI - This data set contains data from the Energetic Particle Instrument. 4.HAD - This data set contains data from the Helium Abundance Detector. 5.LRD - This data set contains data from the Lightning and Radio Emission Detector. 6.NEP - This data set contains data from the Nephelometer. 7.NFR - This data set contains data from the Net Flux Radiometer. 8.NMS - This data set contains data from the Neutral Mass Spectrometer.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnogrv_0001_juno_outer_cruise_raw_rs_gravity_data:0a4355ee","title":"ATM Volume jnogrv_0001 (JUNO OUTER CRUISE RAW RS GRAVITY DATA)","description":"This archive contains raw data and ancillary files for the gravity science from the Juno spacecraft during outer cruise between the Earth Flyby in October 2013 to Orbit Insertion in July 2016. JUNO OUTER CRUISE RAW GRAVITY SCIENCE 1 V1.0 Raw gravity science data and ancillary files for the Juno outer cruise phase.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnogrv_0002_juno_gravity_science_instrument_derived_l_2_data:5b3b2be6","title":"ATM Volume jnogrv_0002 (JUNO GRAVITY SCIENCE INSTRUMENT DERIVED L-2 DATA)","description":"This volume contains derived gravity science data from the Juno gravity science investigation. JUNO DERIVED RADIO SCIENCE GRAVITY DATA V1.0 Juno reduced gravity data.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnogrv_1001_juno_jupiter_raw_rs_gravity_data:de617829","title":"ATM Volume jnogrv_1001 (JUNO JUPITER RAW RS GRAVITY DATA)","description":"This archive contains raw data and ancillary files from the Juno spacecraft during the science mission phase starting in July 2016. JUNO JUPITER RAW GRAVITY SCIENCE 1 V1.0 Raw gravity science data and ancillary files for the Juno outer cruise phase.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1000_juno_jiram_data:524435a4","title":"ATM Volume jnojir_1000 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated. JUNO JUPITER JIRAM EXPERIMENT DATA RECORD V1.0 This data set contains the CODMAC Level 2 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1001_jnojir_1002_jnojir_1003_jnojir_1004_jnojir_1005_jnojir_1006_jnojir_1007_jnojir_1008_jnojir_1009_jnojir_1010_jnojir_1011_jnojir_1012_jnojir_1013_jnojir_1014_jnojir_1015_jnojir_1016_jnojir_1017_jnojir_1018_jnojir_1019_jnojir_1020_jnojir_1021_jnojir_1022_jnojir_1023_jnojir_1024_jnojir_1025_jnojir_1026_jnojir_1027_jnojir_1028_jnojir_1029_jnojir_1030_jnojir_1031_jnojir_1032_jnojir_1033_jnojir_1034_jnojir_1035_jnojir_1036_jnojir_1037_jnojir_1038_jnojir_1039_jnojir_1040_jnojir_1041_jnojir_1042_jnojir_1043_jnojir_1044_jnojir_1045_jnojir_1046_jnojir_1047_jnojir_1048_jnojir_1049_jnojir_1050_jnojir_1051_jnojir_1052_jnojir_1053_jnojir_1054_jnojir_1055_jnojir_1056_jnojir_1057_jnojir_1058_jnojir_1060_jnojir_1061_jnojir_1062_jnojir_1063_jnojir_1064_jnojir_1065_jnojir_1066_jnojir_1067_jnojir_1068_juno_jiram_data:b6d25e60","title":"ATM Volume jnojir_1001 , jnojir_1002 , jnojir_1003 , jnojir_1004 , jnojir_1005 , jnojir_1006 , jnojir_1007 , jnojir_1008 , jnojir_1009 , jnojir_1010 , jnojir_1011 , jnojir_1012 , jnojir_1013 , jnojir_1014 , jnojir_1015 , jnojir_1016 , jnojir_1017 , jnojir_1018 , jnojir_1019 , jnojir_1020 , jnojir_1021 , jnojir_1022 , jnojir_1023 , jnojir_1024 , jnojir_1025 , jnojir_1026 , jnojir_1027 , jnojir_1028 , jnojir_1029 , jnojir_1030 , jnojir_1031 , jnojir_1032 , jnojir_1033 , jnojir_1034 , jnojir_1035 , jnojir_1036 , jnojir_1037 , jnojir_1038 , jnojir_1039 , jnojir_1040 , jnojir_1041 , jnojir_1042 , jnojir_1043 , jnojir_1044 , jnojir_1045 , jnojir_1046 , jnojir_1047 , jnojir_1048 , jnojir_1049 , jnojir_1050 , jnojir_1051 , jnojir_1052 , jnojir_1053 , jnojir_1054 , jnojir_1055 , jnojir_1056 , jnojir_1057 , jnojir_1058 , jnojir_1060 , jnojir_1061 , jnojir_1062 , jnojir_1063 , jnojir_1064 , jnojir_1065 , jnojir_1066 , jnojir_1067 , jnojir_1068 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated. JUNO JUPITER JIRAM EXPERIMENT DATA RECORD V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2000_juno_jiram_data:871b2e46","title":"ATM Volume jnojir_2000 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2013-10-09. JUNO MOON JIRAM EXPERIMENT DATA RECORD V3.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2001_jnojir_2002_jnojir_2003_juno_jiram_data:feaa6b74","title":"ATM Volume jnojir_2001 , jnojir_2002 , jnojir_2003 , (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2016-07-10 to 2016-07-20. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2004_juno_jiram_data:a2b3bb68","title":"ATM Volume jnojir_2004 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-02-01 to 2017-02-03. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2005_juno_jiram_data:f346ee21","title":"ATM Volume jnojir_2005 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-03-26 to 2017-03-27. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2006_juno_jiram_data:671e5b08","title":"ATM Volume jnojir_2006 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-05-18 to 2017-05-22. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2007_jnojir_2008_juno_jiram_data:31bfb064","title":"ATM Volume jnojir_2007 , jnojir_2008 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-07-10 to 2017-07-11. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2009_jnojir_2010_juno_jiram_data:7a557e09","title":"ATM Volume jnojir_2009 , jnojir_2010 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-10-23 to 2017-10-25. JUNO JUPITER JIRAM REDUCED DATA RECORD V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2011_juno_jiram_data:f57c15bf","title":"ATM Volume jnojir_2011 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-02-06 to 2018-02-08. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2012_juno_jiram_data:eda10a07","title":"ATM Volume jnojir_2012 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-03-31 to 2018-04-01. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2013_jnojir_2014_juno_jiram_data:23af089a","title":"ATM Volume jnojir_2013 , jnojir_2014 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-05-23 to 2018-05-25. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2015_juno_jiram_data:3c1b196d","title":"ATM Volume jnojir_2015 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-09-06 to 2018-09-07. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2016_juno_jiram_data:ba26f825","title":"ATM Volume jnojir_2016 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-10-29. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2017_juno_jiram_data:da100278","title":"ATM Volume jnojir_2017 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-12-20 to 2018-12-21. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2018_juno_jiram_data:1f459b84","title":"ATM Volume jnojir_2018 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2019-02-12. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2019_juno_jiram_data:ffa6fa5c","title":"ATM Volume jnojir_2019 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-04-05 and 2019-04-06. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2020_juno_jiram_data:bddde4aa","title":"ATM Volume jnojir_2020 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-05-28 and 2019-05-29. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2021_juno_jiram_data:a9eca9db","title":"ATM Volume jnojir_2021 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-07-20 and 2019-07-21. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2022_juno_jiram_data:f90968d7","title":"ATM Volume jnojir_2022 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-09-11 and 2019-09-12. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2023_juno_jiram_data:0dbc91ea","title":"ATM Volume jnojir_2023 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-11-03 and 2019-11-04. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2024_juno_jiram_data:7a0b3df4","title":"ATM Volume jnojir_2024 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2020-02-16. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2025_jnojir_2026_jnojir_2027_juno_jiram_data:2c778b3d","title":"ATM Volume jnojir_2025 , jnojir_2026 , jnojir_2027 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2019-12-26. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2028_juno_jiram_data:d9e4f328","title":"ATM Volume jnojir_2028 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-07-24 and 2020-07-25.\" JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2029_juno_jiram_data:bbd062e9","title":"ATM Volume jnojir_2029 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-09-15 and 2020-09-16. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2030_jnojir_2031_juno_jiram_data:27832dc4","title":"ATM Volume jnojir_2030 , jnojir_2031 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-11-07 and 2020-11-08. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2032_juno_jiram_data:1fae5be8","title":"ATM Volume jnojir_2032 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-02-20 and 2021-02-22. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2033_juno_jiram_data:de0acb34","title":"ATM Volume jnojir_2033 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-04-15 and 2021-04-16. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2034_juno_jiram_data:8204280a","title":"ATM Volume jnojir_2034 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-06-07 and 2021-07-19. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2035_juno_jiram_data:024bc836","title":"ATM Volume jnojir_2035 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-07-20 and 2021-07-21. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2036_juno_jiram_data:cfe1ef2b","title":"ATM Volume jnojir_2036 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-09-02 and 2021-09-03. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2037_juno_jiram_data:4657b1a0","title":"ATM Volume jnojir_2037 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2021-10-16. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2038_juno_jiram_data:262ae9f0","title":"ATM Volume jnojir_2038 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2021-11-29. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2039_juno_jiram_data:78cc7a74","title":"ATM Volume jnojir_2039 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2022-01-12. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2040_juno_jiram_data:6112f90f","title":"ATM Volume jnojir_2040 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2022-02-24 and 2022-02-25. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2041_juno_jiram_data:e860e26c","title":"ATM Volume jnojir_2041 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2022-04-09. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2042_juno_jiram_data:6aef4a8b","title":"ATM Volume jnojir_2042 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-05-22 and 2022-05-23. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2043_juno_jiram_data:8bc6c6a0","title":"ATM Volume jnojir_2043 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-07-04 and 2022-07-05. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2044_juno_jiram_data:d36a400e","title":"ATM Volume jnojir_2044 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-08-16 and 2022-08-18. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2045_juno_jiram_data:9164106e","title":"ATM Volume jnojir_2045 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2022-09-29 and 2022-09-30. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2046_juno_jiram_data:e9b7cbcb","title":"ATM Volume jnojir_2046 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2022-11-06 and 2022-11-07. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2047_juno_jiram_data:3ec13ed9","title":"ATM Volume jnojir_2047 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2022-12-14 and 2022-12-15. JNO-J-JIRAM-3-RDR-V1.0 This data set contains the CODMAC Level 3 JIRAM data for the JUNO mission","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2048_juno_jiram_data:1257fe3f","title":"ATM Volume jnojir_2048 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2023-01-21 and 2023-01-22. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2049_juno_jiram_data:c1bb6d9a","title":"ATM Volume jnojir_2049 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2023-02-28 and 2023-03-01. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2050_juno_jiram_data:fb6fe1ea","title":"ATM Volume jnojir_2050 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2023-04-08 and 2023-05-02. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2051_juno_jiram_data:17e12438","title":"ATM Volume jnojir_2051 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-05-15 and 2023-05-16. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2052_juno_jiram_data:45d5da41","title":"ATM Volume jnojir_2052 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-06-22 and 2023-06-26. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2053_juno_jiram_data:1d6eec33","title":"ATM Volume jnojir_2053 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-07-31 and 2023-08-02. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2054_juno_jiram_data:e60608f3","title":"ATM Volume jnojir_2054 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-09-07 and 2023-09-09. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2055_juno_jiram_data:1b6340d4","title":"ATM Volume jnojir_2055 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-10-14 and 2023-10-16. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2056_juno_jiram_data:9d84a254","title":"ATM Volume jnojir_2056 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates 2023-11-23. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2057_juno_jiram_data:523bd7ce","title":"ATM Volume jnojir_2057 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2023-12-30 and 2024-01-08 JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2058_juno_jiram_data:43de64ed","title":"ATM Volume jnojir_2058 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2024-02-03. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2061_juno_jiram_data:bb09ee38","title":"ATM Volume jnojir_2061 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2024-05-12. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2062_juno_jiram_data:073cf76e","title":"ATM Volume jnojir_2062 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2024-06-13 and 2024-06-14. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2063_juno_jiram_data:5041e313","title":"ATM Volume jnojir_2063 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date between 2024-07-16 and 2024-07-17. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2064_juno_jiram_data:24cf1b36","title":"ATM Volume jnojir_2064 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2024-08-18. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2065_juno_jiram_data:bee68f1f","title":"ATM Volume jnojir_2065 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2024-09-20. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2066_juno_jiram_data:3730f912","title":"ATM Volume jnojir_2066 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-10-22 and 2024-10-23. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2067_juno_jiram_data:6a6687f1","title":"ATM Volume jnojir_2067 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-11-24 and 2024-11-25. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2068_juno_jiram_data:cb4c2124","title":"ATM Volume jnojir_2068 (JUNO JIRAM DATA)","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-12-27 and 2024-12-28. JNO-J-JIRAM-3-RDR-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_0000_juno_mwr:32304145","title":"ATM Volume jnomwr_0000 (JUNO MWR)","description":"This volume contains documentation and all available Juno MWR telemetry for spacecraft event times (SCET) 2011-08-24 to 2016-06-29. These are raw data and are not intended for use by the wider community. The companion volume JNOMWR_1000 contains calibrated useful for the wider public. JUNO MWR CRUISE/SKY EDR DATA RECORDS V1.2 The Juno MWR EDR data set in this volume includes all uncalibrated MWR science data records for the cruise phase of the Juno mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_0100_juno_mwr_jupiter_standard_raw_products:8d67c7f1","title":"ATM Volume jnomwr_0100 (JUNO MWR JUPITER STANDARD RAW PRODUCTS)","description":"This volume contains documentation and all available Juno MWR telemetry starting from spacecraft event time (SCET) 2016-07-06 to the end of the mission. JUNO JUPITER MWR 2 EXPERIMENT DATA RECORDS V2.0 The Juno MWR EDR data set in this volume includes uncalibrated MWR science data records from the Jupiter phase of the Juno mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_1000_juno_mwr:dc51ce33","title":"ATM Volume jnomwr_1000 (JUNO MWR)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_1100_juno_mwr_jupiter_standard_calibrated_products:b909ff7b","title":"ATM Volume jnomwr_1100 (JUNO MWR JUPITER STANDARD CALIBRATED PRODUCTS)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_2100_juno_mwr_jupiter_high_level_products:8a4dfec1","title":"ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnouvs_2001_juno_uvs_observations:be8055b7","title":"ATM Volume jnouvs_2001 (JUNO UVS OBSERVATIONS)","description":"This volume contains experiment data record (EDR) data acquired by the Juno Ultraviolet Spectrograph. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table. JUNO JUPITER UVS 2 EXPERIMENT DATA RECORD V1.0 The Juno Ultraviolet Spectrograph (UVS) CODMAC Level 2 Experiment Data Record is a collection of the far ultraviolet photon detections obtained by the UVS instrument, in raw form","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnouvs_3001_juno_uvs_observations:4a2106d6","title":"ATM Volume jnouvs_3001 (JUNO UVS OBSERVATIONS)","description":"This volume contains reduced data record (RDR) data acquired by the Juno Ultraviolet Spectrograph. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table. JUNO JUPITER UVS 3 REDUCED DATA RECORD V1.0 The Juno Ultraviolet Spectrograph (UVS) CODMAC Level 3 Reduced Data Record is a collection of the far ultraviolet photon detections obtained by the UVS instrument, corrected, calibrated, and located in space and time.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_3001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnouvs_5001_juno_uvs_observations:0fcd642a","title":"ATM Volume jnouvs_5001 (JUNO UVS OBSERVATIONS)","description":"This volume contains derived data record (DDR) data acquired by the Juno Ultraviolet Spectrograph. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table. JUNO JUPITER UVS 5 DERIVED DATA RECORD V1.0 The Juno Ultraviolet Spectrograph (UVS) CODMAC Level 5 Derived Data Record is a collection of the far ultraviolet photon detections obtained by the UVS instrument, corrected, calibrated, and located in space and time.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0005_sl9_0006_shoemaker_levy_9_impact_observations_from_hubble_space_telescope_wfpc2:ad3ec6b2","title":"ATM Volume sl9_0005 , sl9_0006 (Shoemaker-Levy 9 Impact Observations from Hubble Space Telescope WFPC2)","description":"These volumes contain observations of Jupiter during the Comet Shoemaker-Levy 9 impact events by the Hubble Space Telescope in July 1994. These data consist of images by the Wide Field Planetary Camera 2 (WFPC2). 1. HST J WFPC2 SL9 IMPACT V1.0 This data set consists of images of Jupiter taken by the Hubble Space Telescope (HST) during the Comet Shoemaker-Levy 9 (SL9) impact period, which occurred July 16-22, 1994. The impact data are supplemented by one multi-color rotation of the planet (6 orbits of data) on July 15 before any of the fragments impacted Jupiter's predawn hemisphere. A follow-up rotation was obtained Aug 24, a month after the last impacts to record the nature of dispersal of material.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0008_sl9_0009_sl9_0010_sl9_0011_sl9_0012_shoemaker_levy_9_impact_observations_from_the_anglo_australian_observatory:61f05423","title":"ATM Volume sl9_0008 , sl9_0009 , sl9_0010 , sl9_0011 , sl9_0012 (Shoemaker-Levy 9 Impact Observations from the Anglo Australian Observatory)","description":"These volumes contain observations of Jupiter during the Comet Shoemaker-Levy9 impact events from the Anglo-Australian Observatory. 1. Anglo-Australian Observatory Data from SL9 Impacts This data set contains imaging, spectroscopy, and spectral mapping of Jupiter from July 16, 1994 through July 23, 1994. This includes data from the C, D, G, K, N, R, V, and W impacts in addition to before and after observations for baseline and comparison.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_0006_vg_0008_vg_0013_vg_0025_voyager_iss:d41d8cd9","title":"ATM Volume vg_0006 - vg_0008, vg_0013 - vg_0025 (Voyager ISS)","description":"These volumes contain compressed level-2 (unprocessed) images from the Voyager Jupiter encounters. They also contain documentation, software and index directories to support access to the images files on these disks. 1. VG1/VG2 JUPITER IMAGING SCIENCE SUBSYSTEM EDITED EDR V1.0 This data set contains images taken by NASA's twin Voyager spacecraft during their encounters with the planet Jupiter. These are full resolution digital images returned by the Voyager cameras. No additional processing has been performed to enhance the images. The images are compressed but can be restored to their full resolution using algorithms described in documentation on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vg_0006 - vg_0008, vg_0013 - vg_0025 (Voyager ISS)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2001_voyager_iris:f27a14dd","title":"ATM Volume vg_2001 (Voyager IRIS)","description":"This volume contains four data sets from the Voyager 1 & 2 spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO: 1. VG1/VG2 JUPITER IRIS 3 RDR V1.0 2. VG2 NEPTUNE IRIS 3 RDR V1.0 3. VG1/VG2 SATURN IRIS 3 RDR V1.0 4. VG2 URANUS IRIS 3 RDR V1.0 These data sets contains measurements from both the infrared interferometer spectrometer and the broadband reflected solar radiometer and ancillary data. The data set is ordered by time as measured by the Flight Data System Count (FDSC). Also included is pointing and other information on the geometry associated with a given data record. Each record of the data set contains a header, radiometer observations, and interferometer observations.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.557997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2101_voyager_uvs:c2a95332","title":"ATM Volume vg_2101 (Voyager UVS)","description":"This volume contains two data sets from the Voyager 1 & 2 spacecraft. It contains the following data sets and ancillary documentation to support access of the data on this volume. 1. VG1/VG2 JUPITER UVS 5 BRIGHTNESS NORTH/SOUTH MAPS V1.0 2. VG1/VG2 SATURN UVS 5 BRIGHTNESS NORTH/SOUTH MAPS V1.0 This volume contains maps of hydrogen Lyman-alpha and molecular hydrogen bands derived from Voyager 1 and 2 Ultraviolet Spectrometer (UVS) observations obtained during North/South mapping sequences of Jupiter and Saturn. The incorporated pointing information has been updated with image navigation techniques (C-smithed). Data are grouped in subdirectories for each of the two planets; within each subdirectory are the data files (further separated by spacecraft) and the associated PDS label files.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2102_voyager_iris_derived_n_s_grs_parameters:31d6c8de","title":"ATM Volume vg_2102 (Voyager IRIS Derived N/S & GRS Parameters)","description":"This volume contains data produced from the Voyager IRIS experiments. Atmospheric parameters derived from IRIS spectral data are included. It contains the following data sets and ancillary documentation to support access of the data on this volume. 1. VG1/VG2 JUPITER IRIS 5 NORTH/SOUTH ATMOS PARAMETERS V1.0 2. VG1/VG2 SATURN IRIS 5 NORTH/SOUTH ATMOS PARAMETERS V1.0 3. VG1/VG2 JUPITER IRIS DERIVED GREAT RED SPOT PARAMETERS V1.0 This volume contains maps of atmospheric parameters derived from Voyager 1 and 2 IRIS spectral observations of Jupiter and Saturn. The derived quantities include maps of ammonia and para-hydrogen abundance, atmospheric opacity and temperatures at several pressure levels, and IRIS radiometry. Data were available for North/South mapping sequences at Jupiter and Saturn and high-resolution observations of the Great Red Spot. The incorporated pointing information has been updated with image navigation techniques (C-smithed). Data are separated by spacecraft and target (Jupiter, Saturn, and Red Spot) and are accompanied by PDS label files.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2201_vg_2202_vg_2203_voyager_1_uvs:ff5067ab","title":"ATM Volume vg_2201 , vg_2202 , vg_2203 (Voyager 1 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG1-J-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 1 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Jupiter.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2204_vg_2205_vg_2206_voyager_2_uvs:fb7effbb","title":"ATM Volume vg_2204 , vg_2205 , vg_2206 (Voyager 2 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-J-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Jupiter.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0401_cocirs_0402_cocirs_0403_cocirs_0404_cocirs_0405_cocirs_0406_cocirs_0407_cocirs_0408_cocirs_0409_cocirs_0410_cocirs_0411_cocirs_0412_cocirs_0501_cocirs_0502_cocirs_0503_cocirs_0504_cocirs_0505_cocirs_0506_cocirs_0507_cocirs_0508_cocirs_0509_cocirs_0510_cocirs_0511_cocirs_0512_cocirs_0601_cocirs_0602_cocirs_0603_cocirs_0604_cocirs_0605_cocirs_0606_cocirs_0607_cocirs_0608_cocirs_0609_cocirs_0610_cocirs_0611_cocirs_0612_cocirs_0701_cocirs_0702_cocirs_0703_cocirs_0704_cocirs_0705_cocirs_0706_cocirs_0707_cocirs_0708_cocirs_0709_cocirs_0710_cocirs_0711_cocirs_0712_cocirs_0801_cocirs_0802_cocirs_0803_cocirs_0804_cocirs_0805_cocirs_0806_cocirs_0807_cocirs_0808_cocirs_0809_cocirs_0810_cocirs_0811_cocirs_0812_cocirs_0901_cocirs_0902_cocirs_0903_cocirs_0904_cocirs_0905_cocirs_0906_cocirs_0907_cocirs_0908_cocirs_0909_cocirs_0910_cocirs_0911_cocirs_0912_cocirs_1001_cocirs_1002_cocirs_1004_cocirs_1005_cocirs_1006_cocirs_1007_cocirs_1008_cocirs_1009_cocirs_1010_cocirs_1011_cocirs_1012_cocirs_1101_cocirs_1102_cocirs_1103_cocirs_1104_cocirs_1105_cocirs_1106_cocirs_1107_cocirs_1108_cocirs_1109_cocirs_1110_cocirs_1111_cocirs_1112_cocirs_1201_cocirs_1202_cocirs_1203_cocirs_1204_cocirs_1205_cocirs_1206_cocirs_1207_cocirs_1208_cocirs_1209_cocirs_1210_cocirs_1211_cocirs_1212_cocirs_1301_cocirs_1302_cocirs_1303_cocirs_1304_cocirs_1305_cocirs_1306_cocirs_1307_cocirs_1308_cocirs_1309_cocirs_1310_cocirs_1311_cocirs_1312_cocirs_1401_cocirs_1402_cocirs_1403_cocirs_1404_cocirs_1405_cocirs_1406_cocirs_1407_cocirs_1408_cocirs_1409_cocirs_1410_cocirs_1411_cocirs_1412_cocirs_1501_cocirs_1502_cocirs_1503_cocirs_1504_cocirs_1505_cocirs_1506_cocirs_1507_cocirs_1508_cocirs_1509_cocirs_1510_cocirs_1511_cocirs_1512_cocirs_1601_cocirs_1602_cocirs_1603_cocirs_1604_cocirs_1605_cocirs_1606_cocirs_1607_cocirs_1608_cocirs_1609_cocirs_1610_cocirs_1611_cocirs_1612_cocirs_1701_cocirs_1702_cocirs_1703_cocirs_1704_cocirs_1705_cocirs_1706_cocirs_1707_cocirs_1708_cocirs_1709_cassini_infrared_spectra:d9e7b237","title":"ATM Volume cocirs_0401 , cocirs_0402 , cocirs_0403 , cocirs_0404 , cocirs_0405 , cocirs_0406 , cocirs_0407 , cocirs_0408 , cocirs_0409 , cocirs_0410 , cocirs_0411 , cocirs_0412 , cocirs_0501 , cocirs_0502 , cocirs_0503 , cocirs_0504 , cocirs_0505 , cocirs_0506 , cocirs_0507 , cocirs_0508 , cocirs_0509 , cocirs_0510 , cocirs_0511 , cocirs_0512 , cocirs_0601 , cocirs_0602 , cocirs_0603 , cocirs_0604 , cocirs_0605 , cocirs_0606 , cocirs_0607 , cocirs_0608 , cocirs_0609 , cocirs_0610 , cocirs_0611 , cocirs_0612 , cocirs_0701 , cocirs_0702 , cocirs_0703 , cocirs_0704 , cocirs_0705 , cocirs_0706 , cocirs_0707 , cocirs_0708 , cocirs_0709 , cocirs_0710 , cocirs_0711 , cocirs_0712 , cocirs_0801 , cocirs_0802 , cocirs_0803 , cocirs_0804 , cocirs_0805 , cocirs_0806 , cocirs_0807 , cocirs_0808 , cocirs_0809 , cocirs_0810 , cocirs_0811 , cocirs_0812 , cocirs_0901 , cocirs_0902 , cocirs_0903 , cocirs_0904 , cocirs_0905 , cocirs_0906 , cocirs_0907 , cocirs_0908 , cocirs_0909 , cocirs_0910 , cocirs_0911 , cocirs_0912 , cocirs_1001 , cocirs_1002 , cocirs_1004 , cocirs_1005 , cocirs_1006 , cocirs_1007 , cocirs_1008 , cocirs_1009 , cocirs_1010 , cocirs_1011 , cocirs_1012 , cocirs_1101 , cocirs_1102 , cocirs_1103 , cocirs_1104 , cocirs_1105 , cocirs_1106 , cocirs_1107 , cocirs_1108 , cocirs_1109 , cocirs_1110 , cocirs_1111 , cocirs_1112 , cocirs_1201 , cocirs_1202 , cocirs_1203 , cocirs_1204 , cocirs_1205 , cocirs_1206 , cocirs_1207 , cocirs_1208 , cocirs_1209 , cocirs_1210 , cocirs_1211 , cocirs_1212 , cocirs_1301 , cocirs_1302 , cocirs_1303 , cocirs_1304 , cocirs_1305 , cocirs_1306 , cocirs_1307 , cocirs_1308 , cocirs_1309 , cocirs_1310 , cocirs_1311 , cocirs_1312 , cocirs_1401 , cocirs_1402 , cocirs_1403 , cocirs_1404 , cocirs_1405 , cocirs_1406 , cocirs_1407 , cocirs_1408 , cocirs_1409 , cocirs_1410 , cocirs_1411 , cocirs_1412 , cocirs_1501 , cocirs_1502 , cocirs_1503 , cocirs_1504 , cocirs_1505 , cocirs_1506 , cocirs_1507 , cocirs_1508 , cocirs_1509 , cocirs_1510 , cocirs_1511 , cocirs_1512 , cocirs_1601 , cocirs_1602 , cocirs_1603 , cocirs_1604 , cocirs_1605 , cocirs_1606 , cocirs_1607 , cocirs_1608 , cocirs_1609 , cocirs_1610 , cocirs_1611 , cocirs_1612 , cocirs_1701 , cocirs_1702 , cocirs_1703 , cocirs_1704 , cocirs_1705 , cocirs_1706 , cocirs_1707 , cocirs_1708 , cocirs_1709 (Cassini Infrared Spectra)","description":"This data set comprises uncalibrated and calibrated data from the Cassini Composite Infrared Spectrometer (CIRS) instrument. The basic data is comprised of uncalibrated raw spectra, along with along with pointing and geometry information, and housekeeping information. Also included are calibrated power spectra, and documentation. CO-S-CIRS-2/3/4-TSDR-V4.0 CO-S-CIRS-5-CUBES-V2.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1709","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:coradr_5001_saturn_cassini_radar_radiometry:713b15ec","title":"ATM Volume coradr_5001 , (Saturn Cassini RADAR Radiometry)","description":"This volume contains Saturn global mapping radiometry scans. CO-S-RADAR-5-RADIOMETRY-V1.0 This data set comprises well-calibrated, high-resolution maps of Saturn’s thermal emission at 2.2-cm wavelength obtained by the Cassini RADAR radiometer through the Prime and Equinox Cassini missions, a period covering approximately six years. Also included are time-ordered data detailing the modeling results, referencing the midpoint of each radiometric integration period.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coradr_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0001_cors_0002_cors_0003_cors_0004_cors_0005_cors_0006_cors_0007_cors_0008_cors_0009_cors_0010_cassini_rss_raw_data_set_gwe1:25d883f3","title":"ATM Volume cors_0001 , cors_0002 , cors_0003 , cors_0004 , cors_0005 , cors_0006 , cors_0007 , cors_0008 , cors_0009 , cors_0010 (Cassini RSS Raw Data Set - GWE1)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the First Cassini Gravitational Wave Experiment conducted during the Quiet Cruise subphase of the Cassini mission. CO-X-RSS-1-GWE1-V1.0 These data are contained in ten Volumes (DVDs). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0021_cors_0022_cors_0023_cors_0024_cors_0025_cors_0026_cors_0027_cors_0028_cassini_rss_raw_data_set_sce1:3c463907","title":"ATM Volume cors_0021 , cors_0022 , cors_0023 , cors_0024 , cors_0025 , cors_0026 , cors_0027 , cors_0028 (Cassini RSS Raw Data Set - SCE1)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the First Cassini Solar Conjunction Experiment conducted during the Quiet Cruise subphase of the Cassini mission. (CO-SS-RSS-1-SCE1-V1.0) These data are contained in eight Volumes (DVDs). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0041_cors_0042_cors_0043_cors_0044_cors_0045_cors_0046_cors_0047_cors_0048_cors_0049_cors_0050_cassini_rss_raw_data_set_gwe2:ea35de4f","title":"ATM Volume cors_0041 , cors_0042 , cors_0043 , cors_0044 , cors_0045 , cors_0046 , cors_0047 , cors_0048 , cors_0049 , cors_0050 (Cassini RSS Raw Data Set - GWE2)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Second Cassini Gravitational Wave Experiment conducted during the Space Science subphase of the Cassini mission. CO-X-RSS-1-GWE2-V1.0 These data are contained in ten Volumes (DVDs). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0081_cors_0082_cors_0083_cors_0084_cors_0085_cassini_rss_raw_data_set_gwe3:1ef19241","title":"ATM Volume cors_0081 , cors_0082 , cors_0083 , cors_0084 , cors_0085 (Cassini RSS Raw Data Set - GWE3)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Third Cassini Gravitational Wave Experiment conducted during the Space Science subphase of the Cassini mission. CO-X-RSS-1-GWE3-V1.0 These data are contained in five Volumes (DVDs). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0101_cassini_rss_raw_data_set_engr1:9199bf2a","title":"ATM Volume cors_0101 (Cassini RSS Raw Data Set - ENGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enceladus Gravity experiment conducted on February 16 and 17, 2005 during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-ENGR1-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0102_cassini_rss_raw_data_set_tigr1:ab5a1086","title":"ATM Volume cors_0102 (Cassini RSS Raw Data Set - TIGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiment conducted on March 30, 2005 during the Tour subphase of the Cassini mission. These data are contained in one Volume (DVD). CO-SSA-RSS-1-TIGR1-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0103_cassini_rss_raw_data_set_sagr1_v1_0:2ca4b514","title":"ATM Volume cors_0103 (Cassini RSS Raw Data Set - SAGR1 V1.0)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on May 2 (DOY 122), May 4 (DOY 124), June 6 (DOY 157), June 9 (DOY 160), June 26 (DOY 177) and June 27 (DOY 178) 2005, during the Tour subphase of the Cassini mission. CO-S-RSS-1-SAGR1-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN) .","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0104_cors_0105_cors_0106_cors_0107_cors_0108_cors_0109_cors_0110_cors_0111_cors_0112_cors_0113_cors_0114_cors_0115_cors_0116_cassini_rss_raw_data_set_sroc1_v1_0:dc91c5e8","title":"ATM Volume cors_0104 , cors_0105 , cors_0106 , cors_0107 , cors_0108 , cors_0109 , cors_0110 , cors_0111 , cors_0112 , cors_0113 , cors_0114 , cors_0115 , cors_0116 (Cassini RSS Raw Data Set - SROC1 V1.0)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on May 3 (DOY 123), May 21 (DOY 141), June 8 (DOY 159), and June 26 (DOY 177) 2005, during the Tour subphase of the Cassini mission. CO-S-RSS-1-SROC1-V1.0 These data are contained in thirteen volumes (DVDs) - CORS_0104 through CORS_0116. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0117_cors_0118_cors_0119_cors_0120_cors_0121_cors_0122_cors_0123_cors_0124_cors_0125_cors_0126_cassini_rss_raw_data_set_sroc2:8d65e075","title":"ATM Volume cors_0117 , cors_0118 , cors_0119 , cors_0120 , cors_0121 , cors_0122 , cors_0123 , cors_0124 , cors_0125 , cors_0126 (Cassini RSS Raw Data Set - SROC2)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on July 15 (DOY 196), August 2 (DOY 214), August 20 (DOY 232), and September 5 (DOY 248) 2005, during the Tour subphase of the Cassini mission. CO-S-RSS-1-SROC2-V1.0 These data are contained in ten volumes (DVDs) - CORS_0117 through CORS_0126. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0127_cassini_rss_raw_data_set_sagr2:d1a281af","title":"ATM Volume cors_0127 (Cassini RSS Raw Data Set - SAGR2)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on July 13 (DOY 194), July 15 (DOY 196), August 1 (DOY 213), August 2 (DOY 214), August 20 (DOY 232), August 21 (DOY 233), August 23 (DOY 235), September 5 (DOY 248) and September 6 (DOY 249) 2005 during the Tour subphase of the Cassini mission. CO-S-RSS-1-SAGR2-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0128_cassini_rss_raw_data_set_hygr1:25966872","title":"ATM Volume cors_0128 (Cassini RSS Raw Data Set - HYGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Hyperion Gravity Science Enhancement experiments conducted on September 25 (DOY 268), and September 26 (DOY 269), 2005 and the Hyperion Mass Determination experiment conducted on September 25, (DOY 268), 2005, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-HYGR1-V1.0 These data are contained in one Volume (DVD), CORS_0128. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0129_cassini_rss_raw_data_set_scc1:fc0aba31","title":"ATM Volume cors_0129 (Cassini RSS Raw Data Set - SCC1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Solar Corona Characterization experiment conducted on July 15 (DOY 196), July 17 (DOY 198), July 21 (DOY 202), July 22 (DOY 203), July 23 (DOY 204), July 24 (DOY 205) and July 25 (DOY 206), 2005, during the Tour subphase of the Cassini mission. CO-SS-RSS-1-SCC1-V1.0 These data are contained in one Volume (DVD), CORS_0129. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0130_cassini_rss_raw_data_set_tigr2:0e0c3ef6","title":"ATM Volume cors_0130 (Cassini RSS Raw Data Set - TIGR2)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiment conducted on October 27 (DOY 300), October 29 (DOY 302), December 25 (DOY 359), December 27 (DOY 361) and December 28 (DOY 362) 2005 during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR2-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN) .","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0131_cassini_rss_raw_data_set_digr1:be7881f7","title":"ATM Volume cors_0131 (Cassini RSS Raw Data Set - DIGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Dione Gravity Science Enhancement experiment conducted on October 10 (DOY 283), and the Dione Mass Determination experiment conducted on October 11 and 12 (DOY 284-5), 2005, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-DIGR1-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0132_cassini_rss_raw_data_set_rhgr1:c7ac284d","title":"ATM Volume cors_0132 (Cassini RSS Raw Data Set - RHGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Rhea Gravity Science Enhancement experiment conducted on November 25 (DOY 329), and the Rhea Gravity Field Determination experiment conducted on November 26 and 27 (DOY 330-1), 2005, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-RHGR1-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0133_cassini_rss_raw_data_set_tigr3:66eeb9b4","title":"ATM Volume cors_0133 (Cassini RSS Raw Data Set - TIGR3)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination experiment conducted on February 27 (DOY 058), 2006, and the Titan Gravity Science Enhancement experiments conducted on February 27 (DOY 058), March 1 (DOY 060), March 18 (DOY 077), and March 19 (DOY 078) 2006, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR3-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0134_cors_0135_cors_0136_cors_0137_cors_0138_cors_0139_cors_0140_cassini_rss_raw_data_set_tboc1:25321d62","title":"ATM Volume cors_0134 , cors_0135 , cors_0136 , cors_0137 , cors_0138 , cors_0139 , cors_0140 (Cassini RSS Raw Data Set - TBOC1)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic and Occultation experiments conducted on March 18 and 19 (DOY 077 and 078) 2006, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TBOC1-V1.0 These data are contained in seven volumes (DVDs) - CORS_0134 through CORS_0140. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0141_cassini_rss_raw_data_set_tigr4:1460f309","title":"ATM Volume cors_0141 (Cassini RSS Raw Data Set - TIGR4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiments conducted on April 29 (DOY 119), May 1 (DOY 121), May 19 (DOY 139), and May 21 (DOY141), during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR4-V1.0 These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0142_cors_0143_cors_0144_cors_0145_cassini_rss_raw_data_set_tboc2:65b1a872","title":"ATM Volume cors_0142 , cors_0143 , cors_0144 , cors_0145 (Cassini RSS Raw Data Set - TBOC2)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic and Occultation experiments conducted on May 20 (DOY 140) 2006, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TBOC2-V1.0 These data are contained in seven volumes (DVDs) - CORS_0142 through CORS_0145. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0146_cassini_rss_raw_data_set_tigr5:b9823d1c","title":"ATM Volume cors_0146 (Cassini Rss Raw Data Set - TIGR5)","description":"This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on July 1 and July 2, 2006. CO-SSA-RSS-1-TIGR5-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0147_cassini_rss_raw_data_set_sagr3_v1_0:4ebd9007","title":"ATM Volume cors_0147 (Cassini Rss Raw Data Set - SAGR3 V1.0)","description":"This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on September 8 and 17, 2006 and the Saturn Gravity Field Determination experiment on September 9, 2006. CO-S-RSS-1-SAGR3-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0148_cassini_rss_raw_data_set_enoc1:c605224a","title":"ATM Volume cors_0148 (Cassini Rss Raw Data Set - ENOC1)","description":"This volume contains raw data and ancillary files from the Cassini radio science investigations during the Enceladus Occultation experiment on September 15, 2006. CO-SSA-RSS-1-ENOC1-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0149_cors_0150_cors_0151_cors_0152_cors_0153_cors_0154_cors_0155_cors_0156_cors_0157_cors_0158_cors_0159_cors_0160_cors_0161_cors_0162_cors_0163_cassini_rss_raw_data_set_sroc3:26c91af1","title":"ATM Volume cors_0149 , cors_0150 , cors_0151 , cors_0152 , cors_0153 , cors_0154 , cors_0155 , cors_0156 , cors_0157 , cors_0158 , cors_0159 , cors_0160 , cors_0161 , cors_0162 , cors_0163 (Cassini Rss Raw Data Set - SROC3)","description":"This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on September 15-17, 2006. CO-S-RSS-1-SROC3-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0164_cors_0165_cors_0166_cors_0167_cassini_rss_raw_data_set_scc2:ff017a34","title":"ATM Volume cors_0164 , cors_0165 , cors_0166 , cors_0167 (Cassini Rss Raw Data Set - SCC2)","description":"This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from July 22 until August 21, 2006. CO-SS-RSS-1-SCC2-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0168_cassini_rss_raw_data_set_tigr6:b4339deb","title":"ATM Volume cors_0168 (Cassini Rss Raw Data Set - TIGR6)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination experiment and Gravity Science Enhancement experiments conducted on December 27 and 28 (DOY 361-362), 2006, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR6-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0169_cassini_rss_raw_data_set_tigr7:080cb865","title":"ATM Volume cors_0169 (Cassini Rss Raw Data Set - TIGR7)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination and Gravity Science Enhancement experiments conducted on January 28 and 30, March 24 and 26 (DOY 028, 030, 084,086), 2007, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TIGR7-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0170_cors_0171_cors_0172_cors_0173_cors_0174_cors_0175_cassini_rss_raw_data_set_tboc3:64393ec6","title":"ATM Volume cors_0170 , cors_0171 , cors_0172 , cors_0173 , cors_0174 , cors_0175 (Cassini Rss Raw Data Set - TBOC3)","description":"This volume contains archival raw, and ancillary/supporting radio science for the Cassini Radio Science Titan Bistatic and Occultation experiments conducted on March 25-26 (DOY 084 - 085) 2007, during the Tour subphase of the Cassini mission. CO-SSA-RSS-1-TBOC3-V1.0 The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN).","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0176_cassini_rss_raw_data_set_tigr8:e9dcb364","title":"ATM Volume cors_0176 (CASSINI RSS RAW DATA SET - TIGR8)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination experiment conducted on June 29, 2007 and the Gravity Science Enhancement experiments conducted on May 27, May 29, June 28 and June 30, 2007 during the Tour subphase of the Cassini mission. These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-TIGR8-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0177_cassini_rss_raw_data_set_sagr4:1bcd9c80","title":"ATM Volume cors_0177 (Cassini Rss Raw Data Set - SAGR4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on May 10 and June 12, 2007, during the Tour subphase of the Cassini mission. These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR4-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0178_cors_0179_cors_0180_cors_0181_cors_0182_cassini_rss_raw_data_set_sroc4:15c4b1d6","title":"ATM Volume cors_0178 , cors_0179 , cors_0180 , cors_0181 , cors_0182 (Cassini Rss Raw Data Set - SROC4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on May 10 and June 11, 2007, during the Tour subphase of the Cassini mission. These data are contained in 5 volumes (DVDs) - CORS_0178 through CORS_0182. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SROC4-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0183_cors_0184_cors_0185_cors_0186_cassini_rss_raw_data_set_tocc1:5181ef9f","title":"ATM Volume cors_0183 , cors_0184 , cors_0185 , cors_0186 (Cassini RSS Raw Data Set - TOCC1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Occultation experiment conducted on May 28, 2007, during the Tour subphase of the Cassini mission. These data are contained in four volumes (DVDs) - CORS_0183 through CORS_0186. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-TOCC1-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0187_cassini_rss_raw_data_set_tigr9:fc87efe4","title":"ATM Volume cors_0187 (Cassini RSS Raw Data Set - TIGR9)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field Determination experiment and Gravity Science Enhancement experiments conducted on July 17 and July 19 (DOY 198 and DOY 200), 2007, during the Tour subphase of the Cassini mission. These data are contained in one volume. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-TIGR9-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0188_cassini_rss_raw_data_set_iagr1:e6cd5dee","title":"ATM Volume cors_0188 (Cassini Rss Raw Data Set - IAGR1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Iapetus Gravity Science Enhancement conducted on September 10 (DOY 253), 2007, during the Tour subphase of the Cassini mission. These data are contained in one volume. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-IAGR1-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0189_cors_0190_cors_0191_cors_0192_cors_0193_cors_0194_cors_0195_cassini_rss_raw_data_set_tbis1:cb0d5fcf","title":"ATM Volume cors_0189 , cors_0190 , cors_0191 , cors_0192 , cors_0193 , cors_0194 , cors_0195 (Cassini Rss Raw Data Set - TBIS1)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic experiment conducted on July 18, 2007, during the Tour subphase of the Cassini mission. These data are contained in seven volumes - CORS_0189 through CORS_0195. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TBIS1-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0196_cors_0197_cors_0198_cors_0199_cassini_rss_raw_data_set_scc3:e1603d69","title":"ATM Volume cors_0196 , cors_0197 , cors_0198 , cors_0199 (Cassini Rss Raw Data Set - SCC3)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Solar Corona Characterization experiment conducted from August 7 (DOY 219) until September 4 (DOY 247), 2007, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SS-RSS-1-SCC3-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0200_cassini_rss_raw_data_set_tigr10:d77e22b4","title":"ATM Volume cors_0200 (Cassini Rss Raw Data Set - TIGR10)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiments conducted on December 4 and December 6, 2007, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-SSA-RSS-1-TIGR10-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0201_cassini_rss_raw_data_set_sagr5:8e3c3e77","title":"ATM Volume cors_0201 (Cassini Rss Raw Data Set - SAGR5)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on October 23 and 24, 2008, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR5-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0202_cors_0203_cors_0204_cors_0205_cors_0206_cors_0207_cors_0208_cors_0209_cassini_rss_raw_data_set_sroc5:f8b84827","title":"ATM Volume cors_0202 cors_0203 , cors_0204 , cors_0205 , cors_0206 , cors_0207 , cors_0208 , cors_0209 (Cassini Rss Raw Data Set - SROC5)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on October 24, December 3 and 19, 2007, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SROC5-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0210_cassini_rss_raw_data_set_sagr6:66f67159","title":"ATM Volume cors_0210 (Cassini RSS Raw Data Set - SAGR6)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Science Enhancement experiments conducted on January 14, February 7, 9, and March 31, 2008, during the Tour subphase of the Cassini mission. 1. CO-S-RSS-1-SAGR6-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0211_cassini_rss_raw_data_set_engr2:6ef4c621","title":"ATM Volume cors_0211 (Cassini RSS Raw Data Set - ENGR2 )","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enceladus Gravity Science Enhancement experiments conducted on March 11 and 13, 2008, during the Tour subphase of the Cassini mission. 1. CO-SSA-RSS-1-ENGR2-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0212_cors_0213_cors_0214_cors_0215_cors_0216_cors_0217_cors_0218_cors_0219_cors_0220_cassini_rss_raw_data_set_sroc6:c8778ad0","title":"ATM Volume cors_0212 , cors_0213 , cors_0214 , cors_0215 , cors_0216 , cors_0217 , cors_0218 , cors_0219 , cors_0220 (Cassini RSS Raw Data Set - SROC6)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn and Ring Occultation experiments conducted on January 15, 27, February 8 and March 2, 2008, during the Tour subphase of the Cassini mission. 1. CO-S-RSS-1-SROC6-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0221_cassini_rss_raw_data_set_sagr7:d2e52c99","title":"ATM Volume cors_0221 (Cassini RSS Raw Data Set - SAGR7)","description":"This volume archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Gravity Field experiment conducted on May 17, 2008 and the Gravity Science Enhancement experiments conducted on April 2, June 8, 9, 14, 16, 21, and 29, 2008, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR7-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0222_cors_0223_cors_0224_cors_0225_cors_0226_cors_0227_cors_0228_cors_0229_cors_0230_cors_0231_cors_0232_cors_0233_cors_0234_cors_0235_cors_0236_cassini_rss_raw_data_set_sroc7:c5d30845","title":"ATM Volume cors_0222 , cors_0223 , cors_0224 , cors_0225 , cors_0226 , cors_0227 , cors_0228 , cors_0229 , cors_0230 , cors_0231 , cors_0232 , cors_0233 , cors_0234 , cors_0235 , cors_0236 (Cassini RSS Raw Data Set - SROC7)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Atmosphere and Ring Occultation experiments conducted on April 1, 11, May 9, 17, June 1, 16, and 23, 2008, during the Tour subphase of the Cassini mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SROC7-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0236","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0237_cors_0238_cassini_rss_raw_data_set_sagr8:5da59a6e","title":"ATM Volume cors_0237 , cors_0238 (CASSINI RSS RAW DATA SET - SAGR8)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enhancement experiments conducted on July 1, August 17, 19, 24, 27, September 9, 11, 16, 18, 24, 25, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-S-RSS-1-SAGR8-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0238","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0239_cassini_rss_raw_data_set_tigr11_v1_0:f6fbe0c4","title":"ATM Volume cors_0239 (CASSINI RSS RAW DATA SET - TIGR11 V1.0)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Field experiments conducted on July 30, 31, 2008, and the Titan Gravity Science Enhancement experiments conducted on July 29, 31, 2008, during the Cassini Extended Mission. These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TIGR11-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0239","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0240_cassini_rss_raw_data_set_engr3:e531270d","title":"ATM Volume cors_0240 (CASSINI RSS RAW DATA SET - ENGR3)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enceladus Gravity Science Enhancement experiments conducted on August 10 and 12, 2008, and the Enceladus Gravity Field experiments conducted on August 11 and 12, 2008, during the Cassini Extended Mission. These data are contained in one Volume (DVD). The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TIGR11-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0240","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0241_cors_0242_cors_0243_cassini_rss_raw_data_set_scc4:8a4b46e6","title":"ATM Volume cors_0241 , cors_0242 , cors_0243 (CASSINI RSS RAW DATA SET - SCC4)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Solar Corona Characterization experiment conducted from August 20 (DOY 233) until September 15 (DOY 259), 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SS-RSS-1-SCC4-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0243","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0244_cors_0245_cors_0246_cors_0247_cors_0248_cors_0249_cors_0250_cors_0251_cors_0252_cassini_rss_raw_data_set_sroc8:78d29e69","title":"ATM Volume cors_0244 , cors_0245 , cors_0246 , cors_0247 , cors_0248 , cors_0249 , cors_0250 , cors_0251 , cors_0252 (CASSINI RSS RAW DATA SET - SROC8)","description":"These volumes contain archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Atmosphere and Ring Occultation experiments conducted on July 7, August 4, 19, 26 and September 10, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-S-RSS-1-SROC8-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0252","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0253_cassini_rss_raw_data_set_sagr9:ec441cd4","title":"ATM Volume cors_0253 (CASSINI RSS RAW DATA SET - SAGR9)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enhancement experiments conducted on October 8, 10, 23, 25, 2008, and the Gravity Field experiment conduced on November 16, 2008, during the CassiniaExtended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR9-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0253","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0254_cassini_rss_raw_data_set_engr4:a56326fc","title":"ATM Volume cors_0254 (CASSINI RSS RAW DATA SET - ENGR4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Enceladus Gravity Science Enhancement experiment conducted on November 1, 2008, and the Enceladus Gravity Field experiment conducted on October 31 and November 1, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). 1. CO-S-RSS-1-SAGR9-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0254","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0255_cassini_rss_raw_data_set_tigr12:7b956d04","title":"ATM Volume cors_0255 (CASSINI RSS RAW DATA SET - TIGR12)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiments conducted on November 2 and 4, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TIGR12-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0255","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0256_cors_0257_cors_0258_cors_0259_cors_0260_cassini_rss_raw_data_set_tboc4:c4183933","title":"ATM Volume cors_0256 , cors_0257 , cors_0258 , cors_0259 , cors_0260 (CASSINI RSS RAW DATA SET - TBOC4)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic and Occultation experiments conducted on November 3 (DOY 308) 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TBOC4-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0260","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0261_cors_0262_cassini_rss_raw_data_set_sroc9:5e94bbbd","title":"ATM Volume cors_0261 , cors_0262 (CASSINI RSS RAW DATA SET - SROC9)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Saturn Ring Occultation experiment conducted on October 17, 2008, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-S-RSS-1-SROC9-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0262","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0263_cassini_rss_raw_data_set_tigr13_v1_0:2449eb2c","title":"ATM Volume cors_0263 (CASSINI RSS RAW DATA SET - TIGR13 V1.0)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Gravity Science Enhancement experiments conducted on March 26 and 28, 2009, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TIGR13-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0263","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0264_cors_0265_cors_0266_cassini_rss_raw_data_set_tbis2_v1_0:4fe0d53b","title":"ATM Volume cors_0264 , cors_0265 , cors_0266 (CASSINI RSS RAW DATA SET - TBIS2 V1.0)","description":"This volume contains archival raw, and ancillary/supporting radio science data for the Cassini Radio Science Titan Bistatic experiment conducted on March 27 (DOY 086) 2009, during the Cassini Extended Mission. The radio observations were carried out using the Cassini Spacecraft and Earth-based receiving stations of the NASA Deep Space Network (DSN). CO-SSA-RSS-1-TBIS2-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0266","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0267_cassini_raw_rs_tigr14_data:a7d59235","title":"ATM Volume cors_0267 (Cassini: Raw Rs TIGR14 Data)","description":"This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science Enhancement experiments on April 3, 5, June 21 and 23, 2009. 1. CO-SSA-RSS-1-TIGR14-V1.0","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0267","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0268_cors_0269_cors_0270_cors_0271_cors_0272_cors_0273_cors_0274_cors_0275_cors_0276_cors_0277_cors_0278_cassini_raw_rs_tboc5_data:ed7fc0b7","title":"ATM Volume cors_0268 , cors_0269 , cors_0270 , cors_0271 , cors_0272 , cors_0273 , cors_0274 , cors_0275 , cors_0276 , cors_0277 , cors_0278 (Cassini: Raw RS TBOC5 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0278","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0279_cors_0280_cors_0281_cors_0282_cors_0283_cors_0284_cors_0285_cassini_raw_rs_scc5_data:a02b6b8f","title":"ATM Volume cors_0279 , cors_0280 , cors_0281 , cors_0282 , cors_0283 , cors_0284 , cors_0285 (CASSINI: RAW RS SCC5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0285","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0286_cassini_raw_rs_engr5_data:c561027f","title":"ATM Volume cors_0286 (CASSINI: RAW RS ENGR5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0286","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0287_cors_0288_cors_0289_cors_0290_cors_0291_cors_0292_cors_0293_cors_0294_cors_0295_cors_0296_cors_0297_cors_0298_cors_0299_cors_0300_cors_0301_cors_0302_cors_0303_cors_0304_cors_0305_cassini_raw_rs_sroc10_data:7e3ae929","title":"ATM Volume cors_0287 , cors_0288 , cors_0289 , cors_0290 , cors_0291 , cors_0292 , cors_0293 , cors_0294 , cors_0295 , cors_0296 , cors_0297 , cors_0298 , cors_0299 , cors_0300 , cors_0301 , cors_0302 , cors_0303 , cors_0304 , cors_0305 (CASSINI: RAW RS SROC10 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0305","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0306_cassini_raw_rs_engr5_data:51c060f5","title":"ATM Volume cors_0306 (CASSINI: RAW RS ENGR5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0306","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0307_cors_0308_cors_0309_cassini_raw_rs_enoc2_data:4d6f3a8d","title":"ATM Volume cors_0307 , cors_0308 , cors_0309 (CASSINI: RAW RS ENOC2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0309","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0310_cors_0311_cors_0312_cors_0313_cors_0314_cors_0315_cors_0316_cassini_raw_rs_sroc11_data:11fa6f22","title":"ATM Volume cors_0310 , cors_0311 , cors_0312 , cors_0313 , cors_0314 , cors_0315 , cors_0316 (Cassini: Raw RS SROC11 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0316","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0317_cassini_raw_rs_digr2_data:34ac4dea","title":"ATM Volume cors_0317 (Cassini: Raw RS DIGR2 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0317","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0318_cors_0319_cassini_raw_rs_engr6_data:7c53da5f","title":"ATM Volume cors_0318 , cors_0319 (Cassini: Raw RS ENGR6 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0319","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0320_cassini_raw_rs_tigr15_data:72b34e4a","title":"ATM Volume cors_0320 (Cassini: Raw RS TIGR15 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0320","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0321_cors_0322_cors_0323_cors_0324_cors_0325_cors_0326_cors_0327_cors_0328_cors_0329_cors_0330_cors_0331_cors_0332_cors_0333_cors_0334_cassini_raw_rs_sroc12_data:015da813","title":"ATM Volume cors_0321 , cors_0322 , cors_0323 , cors_0324 , cors_0325 , cors_0326 , cors_0327 , cors_0328 , cors_0329 , cors_0330 , cors_0331 , cors_0332 , cors_0333 , cors_0334 (Cassini: RAW RS SROC12 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0334","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0335_cassini_raw_rs_sagr11_data:66adea63","title":"ATM Volume cors_0335 (CASSINI: RAW RS SAGR11 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0335","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0336_cors_0337_cors_0338_cors_0339_cors_0340_cors_0341_cors_0342_cors_0343_cassini_raw_rs_sroc13_data:f0c5d17b","title":"ATM Volume cors_0336 , cors_0337 , cors_0338 , cors_0339 , cors_0340 , cors_0341 , cors_0342 , cors_0343 (CASSINI: RAW RS SROC13 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0343","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0344_cors_0345_cassini_raw_rs_scc6_data:96c5c60a","title":"ATM Volume cors_0344 , cors_0345 (CASSINI: RAW RS SCC6 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0345","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0346_cors_0347_cassini_raw_rs_scc7_data:c29280f9","title":"ATM Volume cors_0346 , cors_0347 (CASSINI: RAW RS SCC7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0347","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0348_cassini_raw_rs_engr7_data:cffe36ed","title":"ATM Volume cors_0348 (CASSINI: RAW RS ENGR7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0348","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0349_cors_0350_cassini_raw_rs_tigr16_data:2b52b9e1","title":"ATM Volume cors_0349 cors_0350 (CASSINI: RAW RS TIGR16 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0350","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0351_cassini_raw_rs_sagr12_data:e50f8b3d","title":"ATM Volume cors_0351 (CASSINI: RAW RS SAGR12 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0351","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0352_cassini_raw_rs_scc8_data:a69016d4","title":"ATM Volume cors_0352 (CASSINI: RAW RS SCC8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0352","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0353_cors_0354_cors_0355_cors_0356_cors_0357_cors_0358_cassini_raw_rs_sroc14_data:3fba1c29","title":"ATM Volume cors_0353 cors_0354 cors_0355 cors_0356 cors_0357 cors_0358 (CASSINI: RAW RS SROC14 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0358","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0359_cassini_raw_rs_digr3_data:dd2125c5","title":"ATM Volume cors_0359 (CASSINI: RAW RS DIGR3 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0359","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0360_cors_0361_cors_0362_cors_0363_cassini_raw_rs_scc9_data:09d5f390","title":"ATM Volume cors_0360 cors_0361 cors_0362 cors_0363 (CASSINI: RAW RS SCC9 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0363","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0364_cassini_raw_rs_sagr13_data:a0d78c5f","title":"ATM Volume cors_0364 (CASSINI: RAW RS SAGR13 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0364","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0365_cassini_raw_rs_engr8_data:ca849464","title":"ATM Volume cors_0365 (CASSINI: RAW RS ENGR8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0365","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0366_cors_0367_cors_0368_cors_0369_cors_0370_cors_0371_cors_0372_cassini_raw_rs_sroc15_data:7ff6ce42","title":"ATM Volume cors_0366 cors_0367 cors_0368 cors_0369 cors_0370 cors_0371 cors_0372 (CASSINI: RAW RS SROC15 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0372","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0373_cassini_raw_rs_sagr14_data:50814cc0","title":"ATM Volume cors_0373 (CASSINI: RAW RS SAGR14 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0373","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0374_cors_0375_cors_0376_cors_0377_cors_0378_cors_0379_cors_0380_cors_0381_cors_0382_cors_0383_cors_0384_cassini_raw_rs_sroc16_data:18b08f42","title":"ATM Volume cors_0374 , cors_0375 , cors_0376 , cors_0377 , cors_0378 , cors_0379 , cors_0380 , cors_0381 , cors_0382 , cors_0383 , cors_0384 (CASSINI: RAW RS SROC16 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0384","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0385_cors_0386_cors_0387_cors_0388_cassini_raw_rs_scc10_data:d805d8ff","title":"ATM Volume cors_0385 , cors_0386 , cors_0387 , cors_0388 (CASSINI: RAW RS SCC10 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0388","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0389_cors_0390_cors_0391_cassini_raw_rs_sroc17_data:ec1d0ff0","title":"ATM Volume cors_0389 , cors_0390 , cors_0391 (CASSINI: RAW RS SROC17 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0391","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0392_cassini_raw_rs_sagr15_data:00ccad81","title":"ATM Volume cors_0392 , (CASSINI: RAW RS SAGR15 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0392","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0393_cassini_raw_rs_rhgr2_data:e17ccc20","title":"ATM Volume cors_0393 , (CASSINI: RAW RS RHGR2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0393","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0394_cors_0395_cassini_raw_rs_tigr17_data:a775fe7d","title":"ATM Volume cors_0394 , cors_0395 (CASSINI: RAW RS TIGR17 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0395","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0396_cors_0397_cors_0398_cors_0399_cors_0400_cors_0401_cors_0402_cors_0403_cors_0404_cors_0405_cors_0406_cors_0407_cors_0408_cors_0409_cors_0410_cors_0411_cors_0412_cors_0413_cassini_raw_rs_sroc18_data:43d63cfe","title":"ATM Volume cors_0396 , cors_0397 , cors_0398 , cors_0399 , cors_0400 , cors_0401 , cors_0402 , cors_0403 , cors_0404 , cors_0405 , cors_0406 , cors_0407 , cors_0408 , cors_0409 , cors_0410 , cors_0411 , cors_0412 , cors_0413 , (Cassini: Raw RS SROC18 Data)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0413","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0414_cassini_raw_rs_sagr16_data:8e765b8e","title":"ATM Volume cors_0414 (CASSINI: RAW RS SAGR16 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0414","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0415_cors_0416_cors_0417_cors_0418_cors_0419_cors_0420_cors_0421_cors_0422_cors_0423_cors_0424_cors_0425_cors_0426_cors_0427_cors_0428_cors_0429_cors_0430_cors_0431_cors_0432_cors_0433_cors_0434_cors_0435_cors_0436_cors_0437_cors_0438_cors_0439_cors_0440_cors_0441_cors_0442_cors_0443_cors_0444_cors_0445_cors_0446_cors_0447_cors_0448_cors_0449_cors_0450_cors_0451_cors_0452_cors_0453_cors_0454_cors_0455_cassini_raw_rs_sroc19_data:ad6ad2e7","title":"ATM Volume cors_0415 , cors_0416 , cors_0417 , cors_0418 , cors_0419 , cors_0420 , cors_0421 , cors_0422 , cors_0423 , cors_0424 , cors_0425 , cors_0426 , cors_0427 , cors_0428 , cors_0429 , cors_0430 , cors_0431 , cors_0432 , cors_0433 , cors_0434 , cors_0435 , cors_0436 , cors_0437 , cors_0438 , cors_0439 , cors_0440 , cors_0441 , cors_0442 , cors_0443 , cors_0444 , cors_0445 , cors_0446 , cors_0447 , cors_0448 , cors_0449 , cors_0450 , cors_0451 , cors_0452 , cors_0453 , cors_0454 , cors_0455 (CASSINI: RAW RS SROC19 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0455","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0456_cassini_raw_rs_sagr17_data:4445b9c3","title":"ATM Volume cors_0456 (CASSINI: RAW RS SAGR17 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0456","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0457_cors_0458_cors_0459_cors_0460_cors_0461_cors_0462_cors_0463_cors_0464_cors_0465_cors_0466_cors_0467_cors_0468_cors_0469_cors_0470_cors_0471_cors_0472_cors_0473_cors_0474_cors_0475_cors_0476_cors_0477_cors_0478_cors_0479_cors_0480_cors_0481_cassini_raw_rs_sroc20_data:20304308","title":"ATM Volume cors_0457 , cors_0458 , cors_0459 , cors_0460 , cors_0461 , cors_0462 , cors_0463 , cors_0464 , cors_0465 , cors_0466 , cors_0467 , cors_0468 , cors_0469 , cors_0470 , cors_0471 , cors_0472 , cors_0473 , cors_0474 , cors_0475 , cors_0476 , cors_0477 , cors_0478 , cors_0479 , cors_0480 , cors_0481 (CASSINI: RAW RS SROC20 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0481","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0482_cors_0483_cors_0484_cors_0485_cors_0486_cassini_raw_rs_scc11_data:0b91bb16","title":"ATM Volume cors_0482 , cors_0483 , cors_0484 , cors_0485 , cors_0486 (CASSINI: RAW RS SCC11 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0486","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0487_cors_0488_cassini_raw_rs_tigr18_data:f1ad7d28","title":"ATM Volume cors_0487 , cors_0488 (CASSINI: RAW RS TIGR18 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0488","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0489_cors_0490_cors_0491_cors_0492_cors_0493_cors_0494_cors_0495_cors_0496_cors_0497_cors_0498_cors_0499_cors_0500_cors_0501_cors_0502_cors_0503_cors_0504_cors_0505_cors_0506_cors_0507_cassini_raw_rs_tboc6_data:ea93fbdc","title":"ATM Volume cors_0489 , cors_0490 , cors_0491 , cors_0492 , cors_0493 , cors_0494 , cors_0495 , cors_0496 , cors_0497 , cors_0498 , cors_0499 , cors_0500 , cors_0501 , cors_0502 , cors_0503 , cors_0504 , cors_0505 , cors_0506 , cors_0507 (CASSINI: RAW RS TBOC6 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0507","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0508_cors_0509_cors_0510_cors_0511_cors_0512_cassini_raw_rs_scc12_data:0b1c8329","title":"ATM Volume cors_0508 , cors_0509 , cors_0510 , cors_0511 , cors_0512 (CASSINI: RAW RS SCC12 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0512","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0513_cors_0514_cors_0515_cors_0516_cors_0517_cors_0518_cors_0519_cors_0520_cors_0521_cors_0522_cors_0523_cors_0524_cassini_raw_rs_tbis3_data:43e4e345","title":"ATM Volume cors_0513 , cors_0514 , cors_0515 , cors_0516 , cors_0517 , cors_0518 , cors_0519 , cors_0520 , cors_0521 , cors_0522 , cors_0523 , cors_0524 (CASSINI: RAW RS TBIS3 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0524","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0525_cassini_raw_rs_tigr19_data:80c87be2","title":"ATM Volume cors_0525 (CASSINI: RAW RS TIGR19 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0525","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0526_cassini_raw_rs_digr4_data:89500845","title":"ATM Volume cors_0526 (CASSINI: RAW RS DIGR4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0526","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0527_cassini_raw_rs_digr5_data:e17fb6b1","title":"ATM Volume cors_0527 (CASSINI: RAW RS DIGR5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0527","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0528_cors_0529_cors_0530_cors_0531_cassini_raw_rs_scc13_data:da211697","title":"ATM Volume cors_0528 , cors_0529 , cors_0530 , cors_0531 (CASSINI: RAW RS SCC13 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0531","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0532_cors_0533_cors_0534_cors_0535_cors_0536_cors_0537_cors_0538_cassini_raw_rs_tboc7_data:c60ed63e","title":"ATM Volume cors_0532 , cors_0533 , cors_0534 , cors_0535 , cors_0536 , cors_0537 , cors_0538 (CASSINI: RAW RS TBOC7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0538","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0539_cors_0540_cors_0541_cors_0542_cors_0543_cors_0544_cors_0545_cassini_raw_rs_tboc8_data:f61407d2","title":"ATM Volume cors_0539 , cors_0540 , cors_0541 , cors_0542 , cors_0543 , cors_0544 , cors_0545 (CASSINI: RAW RS TBOC8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0545","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0546_cors_0547_cors_0548_cors_0549_cors_0550_cors_0551_cors_0552_cors_0553_cors_0554_cors_0555_cors_0556_cors_0557_cors_0558_cors_0559_cors_0560_cors_0561_cors_0562_cassini_raw_rs_sroc21_data:2c3bda79","title":"ATM Volume cors_0546 , cors_0547 , cors_0548 , cors_0549 , cors_0550 , cors_0551 , cors_0552 , cors_0553 , cors_0554 , cors_0555 , cors_0556 , cors_0557 , cors_0558 , cors_0559 , cors_0560 , cors_0561 , cors_0562 (CASSINI: RAW RS SROC21 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0562","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0563_cors_0564_cors_0565_cassini_raw_rs_sroc4b_data:37806f1f","title":"ATM Volume cors_0563 , cors_0564 , cors_0565 (CASSINI: RAW RS SROC4B DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0565","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0566_cors_0567_cassini_raw_rs_tigr20_data:800be58d","title":"ATM Volume cors_0566 , cors_0567 (CASSINI: RAW RS TIGR20 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0567","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0568_cors_0569_cors_0570_cors_0571_cors_0572_cors_0573_cors_0574_cors_0575_cors_0576_cors_0577_cors_0578_cors_0579_cors_0580_cors_0581_cors_0582_cors_0583_cors_0584_cors_0585_cors_0586_cors_0587_cassini_raw_rs_sroc21_data:68fdb50b","title":"ATM Volume cors_0568 , cors_0569 , cors_0570 , cors_0571 , cors_0572 , cors_0573 , cors_0574 , cors_0575 , cors_0576 , cors_0577 , cors_0578 , cors_0579 , cors_0580 , cors_0581 , cors_0582 , cors_0583 , cors_0584 , cors_0585 , cors_0586 , cors_0587 (CASSINI: RAW RS SROC21 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0587","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.558997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0588_cors_0589_cors_0590_cors_0591_cors_0592_cors_0593_cors_0594_cassini_raw_rs_scc14_data:943bffdc","title":"ATM Volume cors_0588 , cors_0589 , cors_0590 , cors_0591 , cors_0592 , cors_0593 , cors_0594 (CASSINI: RAW RS SCC14 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0594","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0595_cors_0596_cors_0597_cors_0598_cors_0599_cors_0600_cors_0601_cassini_raw_rs_tbis4_data:eddf09fe","title":"ATM Volume cors_0595 , cors_0596 , cors_0597 , cors_0598 , cors_0599 , cors_0600 , cors_0601 (CASSINI: RAW RS TBIS4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0601","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0602_cors_0603_cors_0604_cors_0605_cors_0606_cors_0607_cors_0608_cors_0609_cors_0610_cors_0611_cors_0612_cors_0613_cors_0614_cors_0615_cors_0616_cors_0617_cors_0618_cors_0619_cors_0620_cors_0621_cors_0622_cors_0623_cors_0624_cors_0625_cors_0626_cors_0627_cors_0628_cors_0629_cors_0630_cassini_raw_rs_sroc23_data:964e0cc2","title":"ATM Volume cors_0602 , cors_0603 , cors_0604 , cors_0605 , cors_0606 , cors_0607 , cors_0608 , cors_0609 , cors_0610 , cors_0611 , cors_0612 , cors_0613 , cors_0614 , cors_0615 , cors_0616 , cors_0617 , cors_0618 , cors_0619 , cors_0620 , cors_0621 , cors_0622 , cors_0623 , cors_0624 , cors_0625 , cors_0626 , cors_0627 , cors_0628 , cors_0629 , cors_0630 (CASSINI: RAW RS SROC23 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0630","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0631_cors_0632_cors_0633_cors_0634_cors_0635_cors_0636_cors_0637_cors_0638_cors_0639_cors_0640_cors_0641_cors_0642_cors_0643_cors_0644_cors_0645_cors_0646_cors_0647_cors_0648_cors_0649_cors_0650_cassini_raw_rs_sroc24_data:58a90d0e","title":"ATM Volume cors_0631 , cors_0632 , cors_0633 , cors_0634 , cors_0635 , cors_0636 , cors_0637 , cors_0638 , cors_0639 , cors_0640 , cors_0641 , cors_0642 , cors_0643 , cors_0644 , cors_0645 , cors_0646 , cors_0647 , cors_0648 , cors_0649 , cors_0650 (CASSINI: RAW RS SROC24 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0650","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0651_cors_0652_cors_0653_cors_0654_cors_0655_cors_0656_cors_0657_cors_0658_cors_0659_cors_0660_cors_0661_cors_0662_cors_0663_cors_0664_cors_0665_cors_0666_cors_0667_cors_0668_cors_0669_cors_0670_cors_0671_cors_0672_cors_0673_cors_0674_cors_0675_cors_0676_cors_0677_cors_0678_cors_0679_cors_0680_cassini_raw_rs_sagr18_data:ca0f50f1","title":"ATM Volume cors_0651 , cors_0652 , cors_0653 , cors_0654 , cors_0655 , cors_0656 , cors_0657 , cors_0658 , cors_0659 , cors_0660 , cors_0661 , cors_0662 , cors_0663 , cors_0664 , cors_0665 , cors_0666 , cors_0667 , cors_0668 , cors_0669 , cors_0670 , cors_0671 , cors_0672 , cors_0673 , cors_0674 , cors_0675 , cors_0676 , cors_0677 , cors_0678 , cors_0679 , cors_0680 (CASSINI: RAW RS SAGR18 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0680","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0681_cors_0682_cors_0683_cors_0684_cors_0685_cors_0686_cors_0687_cors_0688_cors_0689_cors_0690_cors_0691_cors_0692_cors_0693_cors_0694_cors_0695_cors_0696_cors_0697_cors_0698_cors_0699_cors_0700_cors_0701_cors_0702_cors_0703_cassini_raw_rs_sroc25_data:34b54659","title":"ATM Volume cors_0681 , cors_0682 , cors_0683 , cors_0684 , cors_0685 , cors_0686 , cors_0687 , cors_0688 , cors_0689 , cors_0690 , cors_0691 , cors_0692 , cors_0693 , cors_0694 , cors_0695 , cors_0696 , cors_0697 , cors_0698 , cors_0699 , cors_0700 , cors_0701 , cors_0702 , cors_0703 (CASSINI: RAW RS SROC25 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0703","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0704_cors_0705_cors_0706_cors_0707_cors_0708_cassini_raw_rs_sagr18_data:9c3df470","title":"ATM Volume cors_0704 , cors_0705 , cors_0706 , cors_0707 , cors_0708 (CASSINI: RAW RS SAGR18 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0708","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0709_cors_0710_cors_0711_cors_0712_cors_0713_cors_0714_cors_0715_cors_0716_cors_0717_cors_0718_cors_0719_cors_0720_cors_0721_cors_0722_cors_0723_cors_0724_cors_0725_cors_0726_cassini_raw_rs_sroc26_data:114716c5","title":"ATM Volume cors_0709 , cors_0710 , cors_0711 , cors_0712 , cors_0713 , cors_0714 , cors_0715 , cors_0716 , cors_0717 , cors_0718 , cors_0719 , cors_0720 , cors_0721 , cors_0722 , cors_0723 , cors_0724 , cors_0725 , cors_0726 (CASSINI: RAW RS SROC26 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0726","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0727_cors_0728_cassini_raw_rs_sroc1_data:b0aa05b7","title":"ATM Volume cors_0727 , cors_0728 (CASSINI: RAW RS SROC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0728","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0729_cassini_raw_rs_sroc2_data:8ae32004","title":"ATM Volume cors_0729 (CASSINI: RAW RS SROC2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0729","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0730_cassini_raw_rs_tboc1_data:6fe59de9","title":"ATM Volume cors_0730 (CASSINI: RAW RS TBOC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0730","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0731_cassini_raw_rs_tboc2_data:7aee7354","title":"ATM Volume cors_0731 (CASSINI: RAW RS TBOC2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0731","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0732_cassini_raw_rs_enoc1_data:367f2a27","title":"ATM Volume cors_0732 (CASSINI: RAW RS ENOC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0732","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559131","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0733_cors_0734_cassini_raw_rs_enoc1_data:ef59c9f2","title":"ATM Volume cors_0733 , cors_0734 (CASSINI: RAW RS ENOC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0734","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0735_cassini_raw_rs_tboc3_data:4f1da8ff","title":"ATM Volume cors_0735 (CASSINI: RAW RS TBOC3 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0735","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0736_cassini_raw_rs_sroc4_data:b4d709ec","title":"ATM Volume cors_0736 (CASSINI: RAW RS SROC4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0736","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0737_cassini_raw_rs_tocc1_data:6c240510","title":"ATM Volume cors_0737 (CASSINI: RAW RS TOCC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0737","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0738_cassini_raw_rs_sroc4b_data:1421b987","title":"ATM Volume cors_0738 (CASSINI: RAW RS SROC4B DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0738","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0739_cassini_raw_rs_tocc1_data:f3057399","title":"ATM Volume cors_0739 (CASSINI: RAW RS TOCC1 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0739","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0740_cassini_raw_rs_sroc5_data:b0aeaeaa","title":"ATM Volume cors_0740 (CASSINI: RAW RS SROC5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0740","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0741_cassini_raw_rs_sroc6_data:7aefd4f5","title":"ATM Volume cors_0741 (CASSINI: RAW RS SROC6 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0741","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0742_cors_0743_cors_0744_cassini_raw_rs_sroc7_data:88f3c138","title":"ATM Volume cors_0742 , cors_0743 , cors_0744 (CASSINI: RAW RS SROC7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0744","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0745_cassini_raw_rs_sroc8_data:1f1401b3","title":"ATM Volume cors_0745 (CASSINI: RAW RS SROC8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0745","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0746_cassini_raw_rs_sroc9_data:bbb99503","title":"ATM Volume cors_0746 (CASSINI: RAW RS SROC9 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0746","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0747_cassini_raw_rs_tboc4_data:1610c883","title":"ATM Volume cors_0747 (CASSINI: RAW RS TBOC4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0747","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0748_cassini_raw_rs_tbis2_data:4cbf4bcd","title":"ATM Volume cors_0748 (CASSINI: RAW RS TBIS2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0748","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0749_cassini_raw_rs_tboc5_data:a616ec66","title":"ATM Volume cors_0749 (CASSINI: RAW RS TBOC5 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0749","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0750_cors_0751_cassini_raw_rs_sroc10_data:f7db7268","title":"ATM Volume cors_0750 , cors_0751 (CASSINI: RAW RS SROC10 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0751","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0752_cassini_raw_rs_enoc2_data:377571f7","title":"ATM Volume cors_0752 (CASSINI: RAW RS ENOC2 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0752","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0753_cassini_raw_rs_sroc11_data:972ba8b9","title":"ATM Volume cors_0753 (CASSINI: RAW RS SROC11 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0753","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0754_cassini_raw_rs_sroc12_data:c4afdef4","title":"ATM Volume cors_0754 (CASSINI: RAW RS SROC12 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0754","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0755_cassini_raw_rs_sroc13_data:2ed8b84e","title":"ATM Volume cors_0755 (CASSINI: RAW RS SROC13 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0755","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0756_cassini_raw_rs_sroc14_data:cfbf9d13","title":"ATM Volume cors_0756 (CASSINI: RAW RS SROC14 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0756","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0757_cassini_raw_rs_sroc15_data:681f595c","title":"ATM Volume cors_0757 (CASSINI: RAW RS SROC15 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0757","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0758_cors_0759_cors_0760_cassini_raw_rs_sroc16_data:63433258","title":"ATM Volume cors_0758 , cors_0759 , cors_0760 (CASSINI: RAW RS SROC16 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0760","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0761_cassini_raw_rs_sroc17_data:6be15973","title":"ATM Volume cors_0761 (CASSINI: RAW RS SROC17 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0761","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0762_cors_0763_cors_0764_cassini_raw_rs_sroc18_data:c6d08d8d","title":"ATM Volume cors_0762 , cors_0763 , cors_0764 (CASSINI: RAW RS SROC18 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0764","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0765_cors_0766_cors_0767_cors_0768_cors_0769_cassini_raw_rs_sroc19_data:2ff34446","title":"ATM Volume cors_0765 , cors_0766 , cors_0767 , cors_0768 , cors_0769 (CASSINI: RAW RS SROC19 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0769","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0770_cors_0771_cors_0772_cors_0773_cors_0774_cors_0775_cassini_raw_rs_sroc20_data:e83feba4","title":"ATM Volume cors_0770 , cors_0771 , cors_0772 , cors_0773 , cors_0774 , cors_0775 (CASSINI: RAW RS SROC20 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0775","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0776_cassini_raw_rs_tboc6_data:0168c39a","title":"ATM Volume cors_0776 (CASSINI: RAW RS TBOC6 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0776","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0777_cassini_raw_rs_tbis3_data:e069ba08","title":"ATM Volume cors_0777 (CASSINI: RAW RS TBIS3 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0777","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0778_cassini_raw_rs_tboc7_data:1a15b050","title":"ATM Volume cors_0778 (CASSINI: RAW RS TBOC7 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0778","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0779_cassini_raw_rs_tboc8_data:3e59dc82","title":"ATM Volume cors_0779 (CASSINI: RAW RS TBOC8 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0779","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0780_cors_0781_cors_0782_cors_0783_cassini_raw_rs_tboc21_data:bd1cd344","title":"ATM Volume cors_0780 , cors_0781 , cors_0782 , cors_0783 (CASSINI: RAW RS TBOC21 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0783","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0784_cors_0785_cassini_raw_rs_sroc22_data:b5f69bb3","title":"ATM Volume cors_0784 , cors_0785 (CASSINI: RAW RS SROC22 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0785","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0786_cors_0787_cors_0788_cors_0789_cors_0790_cors_0791_cors_0792_cors_0793_cors_0794_cors_0795_cassini_raw_rs_sroc23_data:d326a307","title":"ATM Volume cors_0786 , cors_0787 , cors_0788 , cors_0789 , cors_0790 , cors_0791 , cors_0792 , cors_0793 , cors_0794 , cors_0795 (CASSINI: RAW RS SROC23 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0795","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0796_cassini_raw_rs_tbis4_data:9144aeae","title":"ATM Volume cors_0796 (CASSINI: RAW RS TBIS4 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0796","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0797_cors_0798_cors_0799_cors_0800_cassini_raw_rs_sroc24_data:96e70a6c","title":"ATM Volume cors_0797 , cors_0798 , cors_0799 , cors_0800 (CASSINI: RAW RS SROC24 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0800","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0801_cors_0802_cors_0803_cors_0804_cors_0805_cassini_raw_rs_sroc25_data:f3d1bcdf","title":"ATM Volume cors_0801 , cors_0802 , cors_0803 , cors_0804 , cors_0805 (CASSINI: RAW RS SROC25 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0805","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0806_cors_0807_cors_0808_cassini_raw_rs_sroc26_data:4f44c0ed","title":"ATM Volume cors_0806 , cors_0807 , cors_0808 (CASSINI: RAW RS SROC26 DATA)","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0808","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0003_cassini_ultraviolet_imaging_spectrograph_data:2145b184","title":"ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-047 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-WAV-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0004_cassini_ultraviolet_imaging_spectrograph_data:a071bbfd","title":"ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-CUBE-V1.2 4. CO-S-UVIS-2-WAV-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0005_cassini_ultraviolet_imaging_spectrograph_data:1b9f389c","title":"ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-WAV-V1.2 5. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0006_cassini_ultraviolet_imaging_spectrograph_data:3702974b","title":"ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-CUBE-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0007_cassini_ultraviolet_imaging_spectrograph_data:5ee9d32c","title":"ATM Volume couvis_0007 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2004-173 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0008_cassini_ultraviolet_imaging_spectrograph_data:d5038070","title":"ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0009_cassini_ultraviolet_imaging_spectrograph_data:2ef1b4f6","title":"ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0010_cassini_ultraviolet_imaging_spectrograph_data:1a2901d8","title":"ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-366...2005-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0011_cassini_ultraviolet_imaging_spectrograph_data:f25a44cf","title":"ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0012_cassini_ultraviolet_imaging_spectrograph_data:9e6cac87","title":"ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0013_cassini_ultraviolet_imaging_spectrograph_data:7e75f163","title":"ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0014_cassini_ultraviolet_imaging_spectrograph_data:19233c1d","title":"ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-CALIB-V1.2 4. CO-S-UVIS-2-CUBE-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0015_cassini_ultraviolet_imaging_spectrograph_data:d49a8790","title":"ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0016_cassini_ultraviolet_imaging_spectrograph_data:7ebfec7d","title":"ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1.CO-S-UVIS-2-SPEC-V1.2 2.CO-S-UVIS-2-SSB-V1.2 3.CO-S-UVIS-2-CUBE-V1.2 4.CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0017_cassini_ultraviolet_imaging_spectrograph_data:486aecd4","title":"ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2006-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1.CO-S-UVIS-2-SPEC-V1.2 2.CO-S-UVIS-2-SSB-V1.2 3.CO-S-UVIS-2-CALIB-V1.2 4.CO-S-UVIS-2-CUBE-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0018_cassini_ultraviolet_imaging_spectrograph_data:e9c45963","title":"ATM Volume couvis_0018 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2007-001...2007-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1.CO-S-UVIS-2-CUBE-V1.2 2.CO-S-UVIS-2-SSB-V1.2 3.CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0019_couvis_0020_cassini_ultraviolet_imaging_spectrograph_data:e88812ef","title":"ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2007-091...2007-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SPEC-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0021_cassini_ultraviolet_imaging_spectrograph_data:9fa918c8","title":"ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0022_couvis_0023_cassini_ultraviolet_imaging_spectrograph_data:6a5c3695","title":"ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2008-001...2008-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0024_cassini_ultraviolet_imaging_spectrograph_data:9eb9f3fa","title":"ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"\"This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0025_cassini_ultraviolet_imaging_spectrograph_data:2bc41ba9","title":"ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"\"This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0026_cassini_ultraviolet_imaging_spectrograph_data:cb61067c","title":"ATM Volume couvis_0026 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2009-002...2009-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-SSB-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-CUBE-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0027_cassini_ultraviolet_imaging_spectrograph_data:8e1a6b4a","title":"ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CALIB-V1.2 2. CO-S-UVIS-2-CUBE-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0028_cassini_ultraviolet_imaging_spectrograph_data:2d124af9","title":"ATM Volume couvis_0028 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2009-182...2009-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-SSB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0029_cassini_ultraviolet_imaging_spectrograph_data:a2622a4b","title":"ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0030_cassini_ultraviolet_imaging_spectrograph_data:0b07ff88","title":"ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-SSB-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0031_cassini_ultraviolet_imaging_spectrograph_data:3121b780","title":"ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-SSB-V1.2 2. CO-S-UVIS-2-SPEC-V1.2 3. CO-S-UVIS-2-CUBE-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0032_cassini_ultraviolet_imaging_spectrograph_data:7e89df7f","title":"ATM Volume couvis_0032 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2010-185...2010-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0033_cassini_ultraviolet_imaging_spectrograph_data:70120d40","title":"ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0034_couvis_0035_couvis_0036_cassini_ultraviolet_imaging_spectrograph_data:b5c0da68","title":"ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2011-001...2011-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0037_cassini_ultraviolet_imaging_spectrograph_data:b9e9046e","title":"ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0038_cassini_ultraviolet_imaging_spectrograph_data:5c800fd0","title":"ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0039_cassini_ultraviolet_imaging_spectrograph_data:94087c39","title":"ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0040_cassini_ultraviolet_imaging_spectrograph_data:291ac75e","title":"ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifi es the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0041_cassini_ultraviolet_imaging_spectrograph_data:a4a165d5","title":"ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.2 2. CO-S-UVIS-2-SSB-V1.2 3. CO-S-UVIS-2-SPEC-V1.2 4. CO-S-UVIS-2-CALIB-V1.2","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0042_cassini_ultraviolet_imaging_spectrograph_data:6f14df9d","title":"ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559659","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0043_cassini_ultraviolet_imaging_spectrograph_data:0fef5a41","title":"ATM Volume couvis_0043 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0044_cassini_ultraviolet_imaging_spectrograph_data:d45c625f","title":"ATM Volume couvis_0044 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-182...2013-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0045_cassini_ultraviolet_imaging_spectrograph_data:248b436a","title":"ATM Volume couvis_0045 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-274...2014-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0046_cassini_ultraviolet_imaging_spectrograph_data:9a536af9","title":"ATM Volume couvis_0046 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2014-001...2014-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0047_cassini_ultraviolet_imaging_spectrograph_data:2439a452","title":"ATM Volume couvis_0047 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2014-091...2014-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0048_cassini_ultraviolet_imaging_spectrograph_data:eefd07e3","title":"ATM Volume couvis_0048 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2014-182...2014-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0049_cassini_ultraviolet_imaging_spectrograph_data:7d7ef331","title":"ATM Volume couvis_0049 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the Oct 1, 2014... Jan 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0050_cassini_ultraviolet_imaging_spectrograph_data:377dd213","title":"ATM Volume couvis_0050 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0051_cassini_ultraviolet_imaging_spectrograph_data:40589c3b","title":"ATM Volume couvis_0051 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations^M taken by the UVIS instrument during the Apr 1, 2015...Jul 1, 2015 time period. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0052_cassini_ultraviolet_imaging_spectrograph_data:d3494041","title":"ATM Volume couvis_0052 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2015-182...2015-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0053_cassini_ultraviolet_imaging_spectrograph_data:8908f6a7","title":"ATM Volume couvis_0053 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2015-274...2016-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0054_cassini_ultraviolet_imaging_spectrograph_data:e6db74f7","title":"ATM Volume couvis_0054 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2016-001...2016-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0055_cassini_ultraviolet_imaging_spectrograph_data:1ec78c7f","title":"ATM Volume couvis_0055 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2016-092...2016-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0056_cassini_ultraviolet_imaging_spectrograph_data:e2ff5d7f","title":"ATM Volume couvis_0056 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2016-183...2016-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0057_cassini_ultraviolet_imaging_spectrograph_data:0b7d1d7d","title":"ATM Volume couvis_0057 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2016-275...2017-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0058_cassini_ultraviolet_imaging_spectrograph_data:48eea4c8","title":"ATM Volume couvis_0058 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2017-001...2017-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0059_cassini_ultraviolet_imaging_spectrograph_data:14619c3b","title":"ATM Volume couvis_0059 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2017-091...2017-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0060_cassini_ultraviolet_imaging_spectrograph_data:400d70bd","title":"ATM Volume couvis_0060 (Cassini Ultraviolet Imaging Spectrograph Data)","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2017-182...2017-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpacp_0001_huygens_acp_calibrated_engineering_science_data:7e1a7c88","title":"ATM Volume hpacp_0001 (Huygens ACP Calibrated Engineering & Science Data)","description":"The Huygens Aerosol Collector and Pyrolyzer (ACP) was designed for the chemical analysis of Titan's atmospheric aerosols. 1.HP-SSA-ACP-3-DESCENT-V1.0 It sampled the aerosols during the descent to Titan's surface and prepared the collected material (by evaporation, pyrolysis, and gas products transfer) for analysis by the Huygens GCMS instrument.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpacp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpdisr_0001_huygens_probe_disr_results:8d96bbe9","title":"ATM Volume hpdisr_0001 (Huygens Probe DISR Results)","description":"This dataset contains data obtained by the Descent Imager Spectral Radiometer(DISR) aboard the Huygens probe, which was released from the Cassini Spacecraft. 1.HP-SSA-DISR-2/3-EDR/RDR-V1.0 The Huygens Descent Imager and Spectral Radiometer (DISR) made measurements of solar radiation as it traveled through Titan's atmosphere and landed on the surface. Its suite of seven instruments includes photodiodes, a charge-coupled device (CCD), and two near-infrared linear array detectors. The interaction of sunlight with Titan's surface and atmospheric aerosols and gases will provide insight into the nature of Titan's surface and the composition, meteorology, thermal balance, and clouds and aerosols in Titan's atmosphere. The data was obtained on January 14 during the primary descent phase of the Cassini-Huygens mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdisr_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpdtwg_0001_huygens_trajectory:a625c617","title":"ATM Volume hpdtwg_0001 (Huygens Trajectory)","description":"The Huygens Descent Trajectory Working Group (DTWG) data set contains the trajectory data of the Huygens Probe in the atmosphere of Titan. 1.HP-SSA-DTWG-6-TRAJECTORY-V1.0 This data set consists of seven data products that describe both the entry phase and the descent phase of the Probe's mission.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdtwg_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpdwe_0001_huygens_probe_dwe_results:16d84dfd","title":"ATM Volume hpdwe_0001 (Huygens Probe DWE Results)","description":"This dataset contains data from the Huygens Doppler Wind Experiment (DWE) obtained during the Huygens Mission at Titan. 1.HP-SSA-DWE-2-3-DESCENT-V1.0 The Huygens Doppler Wind Experiment (DWE) was designed to measure wind speeds and directions on Titan as the Huygens Probe descended through the atmosphere. The wind profile was determined by Doppler tracking the Probe Relay Link signal from the Earth.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdwe_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpgcms_0001_huygens_titan_gas_chromatograph:efd470cb","title":"ATM Volume hpgcms_0001 (Huygens Titan Gas Chromatograph)","description":"The Huygens Gas Chromatograph Mass Spectrometer (GCMS) was designed to provide an accurate analysis of Titan's atmospheric composition along the descent trajectory of the Huygens Probe. HP-SSA-GCMS-3-FCO/DESCENT-V1.0 It measured the altitude profiles of the atmospheric constituents, isotopic ratios, and trace species.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpgcms_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hphasi_0001_huygens_hasi_mission_raw_and_calibrated_data_v1_1:86396454","title":"ATM Volume hphasi_0001 (Huygens HASI Mission Raw and Calibrated Data V1.1)","description":"This dataset contains the engineering and scientific data derived from the measurements obtained by the HASI instrument during the Huygens probe mission at Titan on 14 January 2005. HP-SSA-HASI-2-3-4-MISSION-V1.1 The Huygens Atmospheric Structure Instrument (HASI) was designed to measure the physical properties of Titan's atmosphere during the entry and descent phase and at the surface. Specifically, it measured atmospheric deceleration, pressure, temperature, and electrical conductivity, ion conductivity, acoustic noise, and radar echoes below 60 km altitude.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphasi_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hphk_0001_huygens_engineering_data:e8356c24","title":"ATM Volume hphk_0001 (Huygens Engineering Data)","description":"This dataset contains housekeeping (engineering) data obtained by the Huygens probe during its mission on 14 January 2005. HP-SSA-HK-2/3-V1.0 There are two primary elements of Huygens: the Probe, which detached from the Cassini Orbiter and landed on Titan's surface, and the Probe Support Equipment that remained on the Orbiter and supported the radio link relay between the Probe and the Orbiter. The Probe engineering data related to both of the above elements are archived.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphk_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpssp_0001_huygens_entry_descent_and_surface_data:d3c091cb","title":"ATM Volume hpssp_0001 (Huygens Entry, Descent and Surface Data)","description":"The Huygens Housekeeping (HK) data are the engineering data of the Probe. HP-SSA-SSP-3/4-DESCENT-V1.0 There are two primary elements of Huygens: the Probe, which detached from the Cassini Orbiter and landed on Titan's surface, and the Probe Support Equipment that remained on the Orbiter and supported the radio link relay between the Probe and the Orbiter. The Probe engineering data related to both of the above elements are archived.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpssp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2207_vg_2208_vg_2209_vg_2210_voyager_1_uvs:d3627025","title":"ATM Volume vg_2207 , vg_2208 , vg_2209 , vg_2210 (Voyager 1 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG1-S-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 1 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Saturn.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2211_vg_2212_vg_2213_voyager_2_uvs:815c35b8","title":"ATM Volume vg_2211 , vg_2212 , vg_2213 (Voyager 2 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-S-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Saturn.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Saturn"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_0001_vg_0003_voyager_iss:d41d8cd9","title":"ATM Volume vg_0001 - vg_0003 (Voyager ISS)","description":"These volumes contain compressed level-2 (unprocessed) images from the Voyager 2 Uranus encounter. They also contain documentation, software and index directories to support access to the images files on these disks. 1. VG2 URANUS IMAGING SCIENCE SUBSYSTEM EDITED EDR V1.0 This data set contains images taken by NASA's Voyager 2 spacecraft during its encounter with the planet Uranus. These are full resolution digital images returned by the Voyager cameras. No additional processing has been performed to enhance the images. The images are compressed but can be restored to their full resolution using algorithms described in documentation on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vg_0001 - vg_0003 (Voyager ISS)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2214_vg_2215_voyager_2_uvs:9f27bb67","title":"ATM Volume vg_2214 , vg_2215 (Voyager 2 UVS)","description":"These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-U-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Uranus.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_0009_vg_0012_voyager_iss:d41d8cd9","title":"ATM Volume vg_0009 - vg_0012 (Voyager ISS)","description":"These volumes contain compressed level-2 (unprocessed) images from the Voyager 2 Neptune encounter. They also contain documentation, software and index directories to support access to the images files on these disks. 1. VG2 NEPTUNE IMAGING SCIENCE SUBSYSTEM EDITED EDR V1.0 This data set contains images taken by NASA's Voyager 2 spacecraft during its encounter with the planet Neptune. These are full resolution digital images returned by the Voyager cameras. No additional processing has been performed to enhance the images. The images are compressed but can be restored to their full resolution using algorithms described in documentation on these disks.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=vg_0009 - vg_0012 (Voyager ISS)","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2216_voyager_2_uvs:f9e0fa58","title":"ATM Volume vg_2216 (Voyager 2 UVS)","description":"This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-N-UVS-3-RDR-V1.0 This volume contains reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Neptune.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2499_voyager_2_triton_radio_occultations:8141e026","title":"ATM Volume vg_2499 (Voyager 2 Triton Radio Occultations)","description":"This volume contains results from Voyager 2 radio occultation measurements at Triton. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO. 1. VOYAGER 2 TRITON RADIO OCCULTATION REDUCED DATA V1.0 This data set contains processed data acquired from the Voyager 2 Triton radio occultation experiment. Observations were carried out using the Voyager 2 spacecraft and facilities of the NASA Deep Space Network (DSN); they were designed to detect and measure the structure of Triton's atmosphere.","node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2499","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:none:d41d8cd9","title":"ATM Volume NONE","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?volume=NONE","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.559925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:messmas_1001:ee85b049","title":"ATM Volume messmas_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:messmas_2001:a7131f3b","title":"ATM Volume messmas_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:messmas_2101:08655949","title":"ATM Volume messmas_2101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["MESSENGER"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2201:8085365c","title":"ATM Volume mg_2201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2202:d46c0847","title":"ATM Volume mg_2202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2203:aae22ba2","title":"ATM Volume mg_2203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2204:83cde0ea","title":"ATM Volume mg_2204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2205:89879fcb","title":"ATM Volume mg_2205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2206:24ab6dff","title":"ATM Volume mg_2206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2207:196ac24e","title":"ATM Volume mg_2207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2208:b614633b","title":"ATM Volume mg_2208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2209:29d7ce6e","title":"ATM Volume mg_2209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2210:ce02d47c","title":"ATM Volume mg_2210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2211:b4986620","title":"ATM Volume mg_2211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2212:0743df31","title":"ATM Volume mg_2212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2213:7aac52f5","title":"ATM Volume mg_2213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2214:4b1ee5bf","title":"ATM Volume mg_2214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mg_2401:68e5eb45","title":"ATM Volume mg_2401","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:pv01_1001:d1ba6e7e","title":"ATM Volume pv01_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:pv01_1002:b49baee9","title":"ATM Volume pv01_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir1_0001:4eecabb7","title":"ATM Volume vcoir1_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir1_1001:d8683109","title":"ATM Volume vcoir1_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir1_2001:f46e4306","title":"ATM Volume vcoir1_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir2_0001:b4401440","title":"ATM Volume vcoir2_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir2_1001:7235613f","title":"ATM Volume vcoir2_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcoir2_2001:7e83ed4b","title":"ATM Volume vcoir2_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0001:2c84a890","title":"ATM Volume vcolir_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0002:1a6af38b","title":"ATM Volume vcolir_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0003:cb71b1d2","title":"ATM Volume vcolir_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0004:e399c0b0","title":"ATM Volume vcolir_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0005:418903f3","title":"ATM Volume vcolir_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0006:740ffb53","title":"ATM Volume vcolir_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_0007:f7c6558c","title":"ATM Volume vcolir_0007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1001:23e6b014","title":"ATM Volume vcolir_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1002:e04bdd03","title":"ATM Volume vcolir_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1003:3e611371","title":"ATM Volume vcolir_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1004:44ed4461","title":"ATM Volume vcolir_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1005:440b0cd9","title":"ATM Volume vcolir_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1006:2c873272","title":"ATM Volume vcolir_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_1007:77c35266","title":"ATM Volume vcolir_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2001:b5bf0369","title":"ATM Volume vcolir_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2002:36adc0cb","title":"ATM Volume vcolir_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2003:6ff500e4","title":"ATM Volume vcolir_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2004:efb0b2b4","title":"ATM Volume vcolir_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2005:4565cf21","title":"ATM Volume vcolir_2005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2006:0badc6a6","title":"ATM Volume vcolir_2006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcolir_2007:1063ae1c","title":"ATM Volume vcolir_2007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_1001:4a179434","title":"ATM Volume vcors_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_1002:a094f6b5","title":"ATM Volume vcors_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_1003:f15e3c6f","title":"ATM Volume vcors_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_1004:fdbbcc3f","title":"ATM Volume vcors_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_2001:0ff5cef6","title":"ATM Volume vcors_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_2002:d78cb565","title":"ATM Volume vcors_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_2003:1b653add","title":"ATM Volume vcors_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcors_2004:1e2d5cdf","title":"ATM Volume vcors_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0001:caeec82f","title":"ATM Volume vcouvi_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0002:58eb9af3","title":"ATM Volume vcouvi_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0003:44a7719e","title":"ATM Volume vcouvi_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0004:e7e3c1eb","title":"ATM Volume vcouvi_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0005:e30eeb99","title":"ATM Volume vcouvi_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0006:330cb00c","title":"ATM Volume vcouvi_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_0007:9d4f1376","title":"ATM Volume vcouvi_0007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1001:2d8ec82f","title":"ATM Volume vcouvi_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1002:adadfa32","title":"ATM Volume vcouvi_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1003:b22ed255","title":"ATM Volume vcouvi_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1004:775001af","title":"ATM Volume vcouvi_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1005:844b1494","title":"ATM Volume vcouvi_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1006:f0abd8d1","title":"ATM Volume vcouvi_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_1007:1aa6fc20","title":"ATM Volume vcouvi_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2001:fc3874a8","title":"ATM Volume vcouvi_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2002:083f6f2f","title":"ATM Volume vcouvi_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2003:5e1d2c75","title":"ATM Volume vcouvi_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2004:044150bb","title":"ATM Volume vcouvi_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2005:ac203683","title":"ATM Volume vcouvi_2005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2006:951d0112","title":"ATM Volume vcouvi_2006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vcouvi_2007:25150ca0","title":"ATM Volume vcouvi_2007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Venus Climate Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vega_5001:710ee113","title":"ATM Volume vega_5001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Venus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vega_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:atmos_0006:68fb1a37","title":"ATM Volume atmos_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=atmos_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:merimu_1001:9f8d3929","title":"ATM Volume merimu_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=merimu_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:merimu_2001:a0c6a404","title":"ATM Volume merimu_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=merimu_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mexpfs_1001:bf0851db","title":"ATM Volume mexpfs_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Express"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mexpfs_1002:14213405","title":"ATM Volume mexpfs_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Express"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mexspi_0auv:8bc06d71","title":"ATM Volume mexspi_0auv","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Express"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexspi_0auv","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mexspi_0bir:88d7b9c4","title":"ATM Volume mexspi_0bir","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Express"],"targets":["Mercury"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexspi_0bir","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mgs_0001:8ca2ac16","title":"ATM Volume mgs_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mgsa_0001:ffc7f2bc","title":"ATM Volume mgsa_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mgsa_0002:0f432171","title":"ATM Volume mgsa_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mogc_0001:56f92dc0","title":"ATM Volume mogc_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_0156:7c3d9228","title":"ATM Volume mors_0156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_0210:1c901307","title":"ATM Volume mors_0210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_0410:71233664","title":"ATM Volume mors_0410","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_0610:f8f48512","title":"ATM Volume mors_0610","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1001:d594242f","title":"ATM Volume mors_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1002:92bf2f47","title":"ATM Volume mors_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1003:d839d3d1","title":"ATM Volume mors_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1004:b7de500e","title":"ATM Volume mors_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1005:f703e9cc","title":"ATM Volume mors_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1006:8af062f5","title":"ATM Volume mors_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1007:6f2b6840","title":"ATM Volume mors_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1008:018eaea7","title":"ATM Volume mors_1008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1009:15bf102c","title":"ATM Volume mors_1009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.560994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1010:3c058437","title":"ATM Volume mors_1010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1011:6fa58386","title":"ATM Volume mors_1011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1012:ef5d367b","title":"ATM Volume mors_1012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1013:d9fb72d8","title":"ATM Volume mors_1013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561038","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1014:fe24c9ba","title":"ATM Volume mors_1014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1015:03ffee82","title":"ATM Volume mors_1015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1016:21ead8a2","title":"ATM Volume mors_1016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1017:8f83861c","title":"ATM Volume mors_1017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1018:3519e410","title":"ATM Volume mors_1018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1019:ee15e9ae","title":"ATM Volume mors_1019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1020:a1826610","title":"ATM Volume mors_1020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1021:ca8e59db","title":"ATM Volume mors_1021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1022:f9dc0551","title":"ATM Volume mors_1022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1023:bf362f57","title":"ATM Volume mors_1023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1024:95c6af62","title":"ATM Volume mors_1024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1025:0127cadf","title":"ATM Volume mors_1025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1026:5120026d","title":"ATM Volume mors_1026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1027:83563822","title":"ATM Volume mors_1027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1028:f26af113","title":"ATM Volume mors_1028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1029:8306a03a","title":"ATM Volume mors_1029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1030:3b011d0a","title":"ATM Volume mors_1030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1031:7fdac120","title":"ATM Volume mors_1031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1032:fdf0e6b5","title":"ATM Volume mors_1032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1033:3f5f7355","title":"ATM Volume mors_1033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1034:f2f941d8","title":"ATM Volume mors_1034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1035:029ca5ed","title":"ATM Volume mors_1035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1036:3b1ee4ae","title":"ATM Volume mors_1036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1037:b1b78760","title":"ATM Volume mors_1037","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1038:8b3d3956","title":"ATM Volume mors_1038","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1101:baaae302","title":"ATM Volume mors_1101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mors_1102:716bbf77","title":"ATM Volume mors_1102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mpam_0001:464e0ffe","title":"ATM Volume mpam_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mr9_1001:fccf34b2","title":"ATM Volume mr9_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mr9_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mroa_0001:fcb88589","title":"ATM Volume MROA_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0001:d5533c3a","title":"ATM Volume MROM_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0002:b8539d07","title":"ATM Volume MROM_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0003:57176236","title":"ATM Volume MROM_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0004:14a0c827","title":"ATM Volume MROM_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0005:31d93057","title":"ATM Volume MROM_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0006:be15fb0a","title":"ATM Volume MROM_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0007:3b6656be","title":"ATM Volume MROM_0007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0008:a1a8e5f3","title":"ATM Volume MROM_0008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0009:1716cfab","title":"ATM Volume MROM_0009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0010:341116cf","title":"ATM Volume MROM_0010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0011:0b28fbae","title":"ATM Volume MROM_0011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0012:0a20fb8d","title":"ATM Volume MROM_0012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0013:0f7573a7","title":"ATM Volume MROM_0013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0014:90f82edf","title":"ATM Volume MROM_0014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0015:473cabb2","title":"ATM Volume MROM_0015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0016:b023b0cc","title":"ATM Volume MROM_0016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0017:bf94fc46","title":"ATM Volume MROM_0017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0018:8ffb9ec2","title":"ATM Volume MROM_0018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0019:3580b25f","title":"ATM Volume MROM_0019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0020:3e32877e","title":"ATM Volume MROM_0020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0021:0e973f0f","title":"ATM Volume MROM_0021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0022:ecb9e3ba","title":"ATM Volume MROM_0022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0023:4dd339b6","title":"ATM Volume MROM_0023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0024:901b8f65","title":"ATM Volume MROM_0024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0025:39578836","title":"ATM Volume MROM_0025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0026:d2cf13ae","title":"ATM Volume MROM_0026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0027:0ded5643","title":"ATM Volume MROM_0027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0028:346225e7","title":"ATM Volume MROM_0028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0029:78b6b8d3","title":"ATM Volume MROM_0029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0030:b2103a53","title":"ATM Volume MROM_0030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0031:0de91e7e","title":"ATM Volume MROM_0031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0032:7ebe5908","title":"ATM Volume MROM_0032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0033:f3e90ea2","title":"ATM Volume MROM_0033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0034:73362bd0","title":"ATM Volume MROM_0034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0035:2328f1fb","title":"ATM Volume MROM_0035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0036:f7f8c6f6","title":"ATM Volume MROM_0036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0040:f2e0f279","title":"ATM Volume MROM_0040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0041:de51c248","title":"ATM Volume MROM_0041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0042:42884085","title":"ATM Volume MROM_0042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0043:af86730d","title":"ATM Volume MROM_0043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0044:72366520","title":"ATM Volume MROM_0044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0045:d3b4cff5","title":"ATM Volume MROM_0045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0046:33e7c957","title":"ATM Volume MROM_0046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0047:e2d1b3c5","title":"ATM Volume MROM_0047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0048:cb3b7f28","title":"ATM Volume MROM_0048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0049:8cca4d4b","title":"ATM Volume MROM_0049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0050:e562378b","title":"ATM Volume MROM_0050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0051:0167010b","title":"ATM Volume MROM_0051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0052:53d73988","title":"ATM Volume MROM_0052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0053:da684b30","title":"ATM Volume MROM_0053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0054:255d4375","title":"ATM Volume MROM_0054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0055:b98f0f9e","title":"ATM Volume MROM_0055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0056:ed513ae4","title":"ATM Volume MROM_0056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0057:78674460","title":"ATM Volume MROM_0057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0058:5054c64b","title":"ATM Volume MROM_0058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0059:42b7d4c3","title":"ATM Volume MROM_0059","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0060:7343664a","title":"ATM Volume MROM_0060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0061:47310851","title":"ATM Volume MROM_0061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0062:9d3a1c74","title":"ATM Volume MROM_0062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0063:906200bf","title":"ATM Volume MROM_0063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0064:ac4d9011","title":"ATM Volume MROM_0064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0065:b430e396","title":"ATM Volume MROM_0065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0066:9514b72c","title":"ATM Volume MROM_0066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0067:cc8f30d9","title":"ATM Volume MROM_0067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0068:ba9c3b3c","title":"ATM Volume MROM_0068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.561992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0069:5defd944","title":"ATM Volume MROM_0069","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0069","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0070:4719818d","title":"ATM Volume MROM_0070","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0070","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0071:44023a10","title":"ATM Volume MROM_0071","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0071","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0072:5d8a2f01","title":"ATM Volume MROM_0072","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0072","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0073:6c754769","title":"ATM Volume MROM_0073","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0073","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0074:290aadee","title":"ATM Volume MROM_0074","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0074","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0075:dab1b414","title":"ATM Volume MROM_0075","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0075","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0076:71baf845","title":"ATM Volume MROM_0076","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0076","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0077:9e55932d","title":"ATM Volume MROM_0077","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0077","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0078:e5b1b727","title":"ATM Volume MROM_0078","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0078","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0079:1d93c8af","title":"ATM Volume MROM_0079","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0079","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0080:0dd970b1","title":"ATM Volume MROM_0080","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0080","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0081:be2caf31","title":"ATM Volume MROM_0081","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0081","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0082:5f232bf5","title":"ATM Volume MROM_0082","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0082","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0083:d8b9a928","title":"ATM Volume MROM_0083","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0083","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0084:21414594","title":"ATM Volume MROM_0084","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0084","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0085:d57e4c1a","title":"ATM Volume MROM_0085","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0086:8bacc10a","title":"ATM Volume MROM_0086","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0086","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0087:ed3a3661","title":"ATM Volume MROM_0087","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0087","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0088:6c6aeeb1","title":"ATM Volume MROM_0088","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0088","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0089:55c8cfaa","title":"ATM Volume MROM_0089","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0089","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0090:57b75ba9","title":"ATM Volume MROM_0090","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0090","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0091:d3d5dac1","title":"ATM Volume MROM_0091","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0091","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0092:3532ddf9","title":"ATM Volume MROM_0092","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0092","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0093:ebdf2731","title":"ATM Volume MROM_0093","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0093","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0094:f4a15a30","title":"ATM Volume MROM_0094","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0094","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0095:92410b24","title":"ATM Volume MROM_0095","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0095","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0096:59e10ab2","title":"ATM Volume MROM_0096","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0096","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0097:6a3d8e14","title":"ATM Volume MROM_0097","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0097","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0098:7e265d4b","title":"ATM Volume MROM_0098","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0098","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0099:c0cde645","title":"ATM Volume MROM_0099","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0099","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0100:141924e5","title":"ATM Volume MROM_0100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0101:b1a82489","title":"ATM Volume MROM_0101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0102:1e312377","title":"ATM Volume MROM_0102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0103:5204c929","title":"ATM Volume MROM_0103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0104:dd60e0e0","title":"ATM Volume MROM_0104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0105:20343e33","title":"ATM Volume MROM_0105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0106:7ebba4db","title":"ATM Volume MROM_0106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0107:af5f7ac6","title":"ATM Volume MROM_0107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0108:081620f9","title":"ATM Volume MROM_0108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0109:8f8c1af5","title":"ATM Volume MROM_0109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.562337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0110:165e8a30","title":"ATM Volume MROM_0110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0111:e15f9086","title":"ATM Volume MROM_0111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0112:4ff46449","title":"ATM Volume MROM_0112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0113:9ddd007d","title":"ATM Volume MROM_0113","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0113","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0114:b8e5b35b","title":"ATM Volume MROM_0114","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0114","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0115:9c4eb779","title":"ATM Volume MROM_0115","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0115","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0116:e1833598","title":"ATM Volume MROM_0116","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0117:cf28b01b","title":"ATM Volume MROM_0117","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0117","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0118:acb0fd99","title":"ATM Volume MROM_0118","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0118","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0119:578b3f0e","title":"ATM Volume MROM_0119","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0119","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0120:abd1315f","title":"ATM Volume MROM_0120","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0120","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0121:734fac1d","title":"ATM Volume MROM_0121","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0121","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0122:fe0d5c26","title":"ATM Volume MROM_0122","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0122","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0123:1b724106","title":"ATM Volume MROM_0123","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0123","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0124:6bfd04ec","title":"ATM Volume MROM_0124","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0124","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0125:32db6074","title":"ATM Volume MROM_0125","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0125","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0126:da41da71","title":"ATM Volume MROM_0126","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0127:0fc733a4","title":"ATM Volume MROM_0127","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0128:957c24ed","title":"ATM Volume MROM_0128","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0129:ef5a1066","title":"ATM Volume MROM_0129","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0130:48d15bca","title":"ATM Volume MROM_0130","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0131:21a87df1","title":"ATM Volume MROM_0131","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0132:abd7079e","title":"ATM Volume MROM_0132","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0133:22548365","title":"ATM Volume MROM_0133","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566616","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0134:485f2f7d","title":"ATM Volume MROM_0134","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0134","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0135:77464c51","title":"ATM Volume MROM_0135","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0135","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0136:361095de","title":"ATM Volume MROM_0136","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0136","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0137:7d39654b","title":"ATM Volume MROM_0137","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0137","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0138:e2d8bede","title":"ATM Volume MROM_0138","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0138","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0139:3a161852","title":"ATM Volume MROM_0139","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0139","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0140:a03dec16","title":"ATM Volume MROM_0140","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0141:f5afd1c3","title":"ATM Volume MROM_0141","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0142:b1547825","title":"ATM Volume MROM_0142","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0142","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0143:c2fd28de","title":"ATM Volume MROM_0143","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0143","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0144:3949aa62","title":"ATM Volume MROM_0144","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0144","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0145:7469dd51","title":"ATM Volume MROM_0145","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0146:c71f7983","title":"ATM Volume MROM_0146","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0147:67fdaa5b","title":"ATM Volume MROM_0147","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0148:e219fa86","title":"ATM Volume MROM_0148","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0149:6d691c5b","title":"ATM Volume MROM_0149","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0149","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0150:49b73d2b","title":"ATM Volume MROM_0150","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0150","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0151:4396e5cc","title":"ATM Volume MROM_0151","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0151","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566759","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0152:62c0b6a1","title":"ATM Volume MROM_0152","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0152","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0153:9bb4ca47","title":"ATM Volume MROM_0153","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0153","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0154:cb3d94ef","title":"ATM Volume MROM_0154","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0154","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0155:d7fed723","title":"ATM Volume MROM_0155","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0155","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0156:965d6a17","title":"ATM Volume MROM_0156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0157:c4427991","title":"ATM Volume MROM_0157","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0157","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0158:14fb00a5","title":"ATM Volume MROM_0158","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0158","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0159:1dc3965a","title":"ATM Volume MROM_0159","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0159","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0160:44ca285c","title":"ATM Volume MROM_0160","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0160","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0161:efee2c09","title":"ATM Volume MROM_0161","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0161","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0162:103071be","title":"ATM Volume MROM_0162","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0162","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0163:658677df","title":"ATM Volume MROM_0163","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0164:0b1dcb65","title":"ATM Volume MROM_0164","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0164","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0165:b2a987e0","title":"ATM Volume MROM_0165","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0165","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0166:e8154459","title":"ATM Volume MROM_0166","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0166","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0167:42a9b4de","title":"ATM Volume MROM_0167","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0168:26b68b9b","title":"ATM Volume MROM_0168","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0169:391dcba2","title":"ATM Volume MROM_0169","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0170:43d0cd28","title":"ATM Volume MROM_0170","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0170","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0171:a18a8d21","title":"ATM Volume MROM_0171","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0171","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0172:be42803f","title":"ATM Volume MROM_0172","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0172","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0173:41cdcafa","title":"ATM Volume MROM_0173","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0173","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0174:eb30cc00","title":"ATM Volume MROM_0174","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0174","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0175:431b6872","title":"ATM Volume MROM_0175","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0176:00ca7a16","title":"ATM Volume MROM_0176","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0177:d7357507","title":"ATM Volume MROM_0177","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0178:ec24ba91","title":"ATM Volume MROM_0178","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0178","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0179:fda03f45","title":"ATM Volume MROM_0179","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0179","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0180:b4aec96a","title":"ATM Volume MROM_0180","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0180","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0181:fc5249a7","title":"ATM Volume MROM_0181","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0181","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.566994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0182:6bfc6027","title":"ATM Volume MROM_0182","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0183:5c0a63af","title":"ATM Volume MROM_0183","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0183","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0184:25b1a431","title":"ATM Volume MROM_0184","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0184","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0185:240085aa","title":"ATM Volume MROM_0185","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0185","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0186:a937134e","title":"ATM Volume MROM_0186","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0187:bfdc51d0","title":"ATM Volume MROM_0187","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0188:52b71834","title":"ATM Volume MROM_0188","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0189:1cc711da","title":"ATM Volume MROM_0189","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0189","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0190:b25d9cf3","title":"ATM Volume MROM_0190","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0190","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0191:696f8b03","title":"ATM Volume MROM_0191","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0191","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0192:b5a2f3ab","title":"ATM Volume MROM_0192","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0192","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0193:0d54ed6b","title":"ATM Volume MROM_0193","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0193","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0194:79e50171","title":"ATM Volume MROM_0194","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0194","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0195:213926db","title":"ATM Volume MROM_0195","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0196:1a3a075a","title":"ATM Volume MROM_0196","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0196","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0197:66780b5e","title":"ATM Volume MROM_0197","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0197","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0198:9f6861e8","title":"ATM Volume MROM_0198","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0198","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0199:01cd8c85","title":"ATM Volume MROM_0199","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0200:b159b346","title":"ATM Volume MROM_0200","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0201:b5d67922","title":"ATM Volume MROM_0201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0202:11ba72d2","title":"ATM Volume MROM_0202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0203:a87c3ccf","title":"ATM Volume MROM_0203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0204:dfcb8bd5","title":"ATM Volume MROM_0204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0205:a3b98867","title":"ATM Volume MROM_0205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0206:3f24e03f","title":"ATM Volume MROM_0206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0207:6ba1d173","title":"ATM Volume MROM_0207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0208:5382cbc3","title":"ATM Volume MROM_0208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0209:4596dfe0","title":"ATM Volume MROM_0209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0210:33ffd1b5","title":"ATM Volume MROM_0210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0211:a4bb80e5","title":"ATM Volume MROM_0211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0212:4d56eb6b","title":"ATM Volume MROM_0212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0213:b30a8c2f","title":"ATM Volume MROM_0213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0214:c2e18269","title":"ATM Volume MROM_0214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0215:0e4e72f0","title":"ATM Volume MROM_0215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0216:f20e2cbe","title":"ATM Volume MROM_0216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0217:e3a9d510","title":"ATM Volume MROM_0217","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0217","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0218:66286e33","title":"ATM Volume MROM_0218","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0218","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0219:ed477ff1","title":"ATM Volume MROM_0219","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0219","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0220:6202185f","title":"ATM Volume MROM_0220","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0221:6de0afde","title":"ATM Volume MROM_0221","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0222:8cede8c1","title":"ATM Volume MROM_0222","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0222","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0223:d75627f1","title":"ATM Volume MROM_0223","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0223","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0224:9a4be4a7","title":"ATM Volume MROM_0224","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0224","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0225:b1a75144","title":"ATM Volume MROM_0225","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0225","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0226:dd4416f8","title":"ATM Volume MROM_0226","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0226","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_0227:5bf2f76f","title":"ATM Volume MROM_0227","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1001:16087865","title":"ATM Volume MROM_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1002:60468ff5","title":"ATM Volume MROM_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1003:e5f61b1c","title":"ATM Volume MROM_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1004:f8f85531","title":"ATM Volume MROM_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1005:3de3317b","title":"ATM Volume MROM_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1006:fa67b358","title":"ATM Volume MROM_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1007:2bce1501","title":"ATM Volume MROM_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1008:501a321a","title":"ATM Volume MROM_1008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1009:e771082e","title":"ATM Volume MROM_1009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1010:5779d18b","title":"ATM Volume MROM_1010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1011:684291cf","title":"ATM Volume MROM_1011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1012:de294471","title":"ATM Volume MROM_1012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1013:867f0eee","title":"ATM Volume MROM_1013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1014:a0cc6cd8","title":"ATM Volume MROM_1014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1015:592732a1","title":"ATM Volume MROM_1015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1016:191339e0","title":"ATM Volume MROM_1016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1017:3189be26","title":"ATM Volume MROM_1017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1018:db2c2369","title":"ATM Volume MROM_1018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1019:1b0cde7c","title":"ATM Volume MROM_1019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1020:e3c2919c","title":"ATM Volume MROM_1020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1021:3d667fc5","title":"ATM Volume MROM_1021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1022:442c2505","title":"ATM Volume MROM_1022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1023:883eb1b3","title":"ATM Volume MROM_1023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1024:b6d190ea","title":"ATM Volume MROM_1024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1025:1a9c7498","title":"ATM Volume MROM_1025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1026:992835d8","title":"ATM Volume MROM_1026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1027:86983b88","title":"ATM Volume MROM_1027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1028:3650f2c3","title":"ATM Volume MROM_1028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1029:105e0bce","title":"ATM Volume MROM_1029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1030:926801c2","title":"ATM Volume MROM_1030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1031:5b469acb","title":"ATM Volume MROM_1031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1032:4f4962bd","title":"ATM Volume MROM_1032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1033:e2ec474a","title":"ATM Volume MROM_1033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1034:e941a60d","title":"ATM Volume MROM_1034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1035:35e001b3","title":"ATM Volume MROM_1035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1036:fb617856","title":"ATM Volume MROM_1036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1040:a930aa35","title":"ATM Volume MROM_1040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1041:640ab60f","title":"ATM Volume MROM_1041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1042:ad022314","title":"ATM Volume MROM_1042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1043:46aa0c58","title":"ATM Volume MROM_1043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1044:6a20b884","title":"ATM Volume MROM_1044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1045:3ac71d53","title":"ATM Volume MROM_1045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1046:045f8f32","title":"ATM Volume MROM_1046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1047:d6e12cef","title":"ATM Volume MROM_1047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1048:66523db3","title":"ATM Volume MROM_1048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1049:09d46b12","title":"ATM Volume MROM_1049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1050:b1bee44a","title":"ATM Volume MROM_1050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1051:369411dc","title":"ATM Volume MROM_1051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1052:7c6174df","title":"ATM Volume MROM_1052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1053:d01370cb","title":"ATM Volume MROM_1053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1054:ccc93b2a","title":"ATM Volume MROM_1054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1055:70837c5e","title":"ATM Volume MROM_1055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1056:b04de1ec","title":"ATM Volume MROM_1056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1057:a83c6db3","title":"ATM Volume MROM_1057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1058:b2fb1cd7","title":"ATM Volume MROM_1058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1059:d8afbd3a","title":"ATM Volume MROM_1059","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1060:1ffa7872","title":"ATM Volume MROM_1060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1061:c7684c0f","title":"ATM Volume MROM_1061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1062:c71a5974","title":"ATM Volume MROM_1062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1063:37971d0c","title":"ATM Volume MROM_1063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1064:bb7f6842","title":"ATM Volume MROM_1064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1065:125e1d50","title":"ATM Volume MROM_1065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1066:d6f5989c","title":"ATM Volume MROM_1066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1067:36030e0f","title":"ATM Volume MROM_1067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1068:57a1ff20","title":"ATM Volume MROM_1068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1069:c9392a2e","title":"ATM Volume MROM_1069","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1069","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1070:e5a11f9f","title":"ATM Volume MROM_1070","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1070","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1071:89f7ef51","title":"ATM Volume MROM_1071","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1071","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1072:eb4ed00e","title":"ATM Volume MROM_1072","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1072","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1073:ad8bfd28","title":"ATM Volume MROM_1073","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1073","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1074:a7dd95ae","title":"ATM Volume MROM_1074","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1074","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.567999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1075:331767bc","title":"ATM Volume MROM_1075","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1075","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1076:c0d04843","title":"ATM Volume MROM_1076","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1076","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1077:e2a62b17","title":"ATM Volume MROM_1077","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1077","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1078:a81de8ef","title":"ATM Volume MROM_1078","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1078","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1079:83c7b0e3","title":"ATM Volume MROM_1079","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1079","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1080:581d42f0","title":"ATM Volume MROM_1080","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1080","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1081:1c994fc1","title":"ATM Volume MROM_1081","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1081","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1082:64244cf0","title":"ATM Volume MROM_1082","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1082","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1083:c29f05c0","title":"ATM Volume MROM_1083","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1083","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568071","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1084:7c918149","title":"ATM Volume MROM_1084","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1084","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1085:ba7a8556","title":"ATM Volume MROM_1085","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1086:5871914f","title":"ATM Volume MROM_1086","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1086","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1087:284806df","title":"ATM Volume MROM_1087","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1087","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1088:bf50736a","title":"ATM Volume MROM_1088","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1088","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1089:428d4bf4","title":"ATM Volume MROM_1089","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1089","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1090:c0d698eb","title":"ATM Volume MROM_1090","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1090","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1091:bb960b35","title":"ATM Volume MROM_1091","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1091","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1092:bcba1e8b","title":"ATM Volume MROM_1092","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1092","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1093:23950b72","title":"ATM Volume MROM_1093","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1093","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1094:43d24f75","title":"ATM Volume MROM_1094","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1094","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1095:350e2d67","title":"ATM Volume MROM_1095","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1095","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1096:5e0ff4da","title":"ATM Volume MROM_1096","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1096","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1097:b306cbdd","title":"ATM Volume MROM_1097","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1097","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1098:a4660ffb","title":"ATM Volume MROM_1098","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1098","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1099:0ef0cd4b","title":"ATM Volume MROM_1099","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1099","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1100:57ea102a","title":"ATM Volume MROM_1100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1101:9025af84","title":"ATM Volume MROM_1101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1102:46d057b6","title":"ATM Volume MROM_1102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1103:4494f518","title":"ATM Volume MROM_1103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1104:f719285d","title":"ATM Volume MROM_1104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1105:09af93e5","title":"ATM Volume MROM_1105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1106:1d9abd33","title":"ATM Volume MROM_1106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1107:87d81a44","title":"ATM Volume MROM_1107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1108:97f46a6f","title":"ATM Volume MROM_1108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1109:086f65f8","title":"ATM Volume MROM_1109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1110:4c3830cb","title":"ATM Volume MROM_1110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1111:96277808","title":"ATM Volume MROM_1111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1112:6a4719ce","title":"ATM Volume MROM_1112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1113:6a2bd216","title":"ATM Volume MROM_1113","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1113","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1114:7f046f77","title":"ATM Volume MROM_1114","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1114","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1115:d109b9a9","title":"ATM Volume MROM_1115","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1115","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1116:93d76f89","title":"ATM Volume MROM_1116","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1117:2ed55335","title":"ATM Volume MROM_1117","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1117","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1118:6582f778","title":"ATM Volume MROM_1118","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1118","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1119:ed27c13e","title":"ATM Volume MROM_1119","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1119","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1120:5d1ce176","title":"ATM Volume MROM_1120","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1120","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1121:85cdeb7c","title":"ATM Volume MROM_1121","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1121","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1122:92102b31","title":"ATM Volume MROM_1122","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1122","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1123:5e33bf0e","title":"ATM Volume MROM_1123","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1123","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1124:d8c475b6","title":"ATM Volume MROM_1124","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1124","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1125:b7cb8a8c","title":"ATM Volume MROM_1125","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1125","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1126:e9d9e0a9","title":"ATM Volume MROM_1126","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1127:a0a20c12","title":"ATM Volume MROM_1127","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1128:1de166ed","title":"ATM Volume MROM_1128","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1129:3747a331","title":"ATM Volume MROM_1129","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1130:64a8bc15","title":"ATM Volume MROM_1130","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1131:93591c94","title":"ATM Volume MROM_1131","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1132:57d69d78","title":"ATM Volume MROM_1132","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1133:b658e8cf","title":"ATM Volume MROM_1133","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1134:028e3145","title":"ATM Volume MROM_1134","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1134","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1135:4b61cb88","title":"ATM Volume MROM_1135","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1135","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1136:14e926a9","title":"ATM Volume MROM_1136","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1136","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1137:69431667","title":"ATM Volume MROM_1137","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1137","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1138:9c61aaa2","title":"ATM Volume MROM_1138","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1138","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1139:bbaf602f","title":"ATM Volume MROM_1139","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1139","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1140:1e66d7ff","title":"ATM Volume MROM_1140","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1141:b7b6ba9b","title":"ATM Volume MROM_1141","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1142:eb2386fc","title":"ATM Volume MROM_1142","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1142","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1143:133dbc85","title":"ATM Volume MROM_1143","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1143","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1144:ac3077c2","title":"ATM Volume MROM_1144","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1144","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1145:e0bde19a","title":"ATM Volume MROM_1145","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1146:f2b16e48","title":"ATM Volume MROM_1146","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1147:8f4aa01d","title":"ATM Volume MROM_1147","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1148:942af5d9","title":"ATM Volume MROM_1148","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1149:18c67f43","title":"ATM Volume MROM_1149","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1149","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1150:4a3e6838","title":"ATM Volume MROM_1150","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1150","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1151:c15bfe42","title":"ATM Volume MROM_1151","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1151","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1152:80d70462","title":"ATM Volume MROM_1152","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1152","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1153:2d960d2b","title":"ATM Volume MROM_1153","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1153","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1154:eeab56fc","title":"ATM Volume MROM_1154","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1154","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1155:10cd9f8b","title":"ATM Volume MROM_1155","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1155","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1156:9a9fa05a","title":"ATM Volume MROM_1156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1157:94ef34f2","title":"ATM Volume MROM_1157","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1157","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1158:fa561aa9","title":"ATM Volume MROM_1158","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1158","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1159:2b59a1ac","title":"ATM Volume MROM_1159","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1159","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1160:93d90aaa","title":"ATM Volume MROM_1160","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1160","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1161:d26cb455","title":"ATM Volume MROM_1161","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1161","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1162:ec74938a","title":"ATM Volume MROM_1162","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1162","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1163:ecae7ab6","title":"ATM Volume MROM_1163","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1164:6bf7fe60","title":"ATM Volume MROM_1164","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1164","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1165:bb5f827e","title":"ATM Volume MROM_1165","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1165","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1166:99679e9e","title":"ATM Volume MROM_1166","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1166","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1167:d80b2a20","title":"ATM Volume MROM_1167","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1168:5e2b0f50","title":"ATM Volume MROM_1168","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1169:a6702bf3","title":"ATM Volume MROM_1169","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1170:6d60b0bd","title":"ATM Volume MROM_1170","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1170","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1171:91c03f37","title":"ATM Volume MROM_1171","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1171","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1172:d0a5f829","title":"ATM Volume MROM_1172","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1172","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1173:2f1fd601","title":"ATM Volume MROM_1173","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1173","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1174:98153ce4","title":"ATM Volume MROM_1174","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1174","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1175:d0d99eb4","title":"ATM Volume MROM_1175","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1176:bb3cafe0","title":"ATM Volume MROM_1176","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1177:6be6d60b","title":"ATM Volume MROM_1177","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1178:de2c5e31","title":"ATM Volume MROM_1178","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1178","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1179:f73f64f3","title":"ATM Volume MROM_1179","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1179","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1180:87944f27","title":"ATM Volume MROM_1180","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1180","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1181:2ab75dff","title":"ATM Volume MROM_1181","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1181","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1182:25fec022","title":"ATM Volume MROM_1182","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1183:f3ff5ca5","title":"ATM Volume MROM_1183","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1183","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1184:6b8aae44","title":"ATM Volume MROM_1184","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1184","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1185:3658ea18","title":"ATM Volume MROM_1185","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1185","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1186:868cdb07","title":"ATM Volume MROM_1186","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1187:03c5a2c4","title":"ATM Volume MROM_1187","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1188:38816d91","title":"ATM Volume MROM_1188","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1189:0540d942","title":"ATM Volume MROM_1189","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1189","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1190:94026595","title":"ATM Volume MROM_1190","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1190","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1191:0a531177","title":"ATM Volume MROM_1191","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1191","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1192:aae7e6d2","title":"ATM Volume MROM_1192","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1192","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1193:6668070f","title":"ATM Volume MROM_1193","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1193","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1194:8f53c428","title":"ATM Volume MROM_1194","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1194","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1195:16151470","title":"ATM Volume MROM_1195","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1196:8fd13986","title":"ATM Volume MROM_1196","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1196","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1197:d2c356dd","title":"ATM Volume MROM_1197","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1197","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.568999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1198:66be52af","title":"ATM Volume MROM_1198","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1198","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1199:25db044f","title":"ATM Volume MROM_1199","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1200:6868776b","title":"ATM Volume MROM_1200","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1201:7634c24c","title":"ATM Volume MROM_1201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1202:76f03678","title":"ATM Volume MROM_1202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1203:cf6b56a4","title":"ATM Volume MROM_1203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1204:7cbbc8b4","title":"ATM Volume MROM_1204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1205:d0f2f6be","title":"ATM Volume MROM_1205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1206:6e70a6a4","title":"ATM Volume MROM_1206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1207:6631d154","title":"ATM Volume MROM_1207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1208:a8caafa7","title":"ATM Volume MROM_1208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1209:066f2423","title":"ATM Volume MROM_1209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1210:a377e690","title":"ATM Volume MROM_1210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1211:4b5ae186","title":"ATM Volume MROM_1211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1212:ff70dcb6","title":"ATM Volume MROM_1212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1213:d885d78d","title":"ATM Volume MROM_1213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1214:f70d6627","title":"ATM Volume MROM_1214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1215:e4b384fd","title":"ATM Volume MROM_1215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1216:6f26cf02","title":"ATM Volume MROM_1216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1217:8e2a76a5","title":"ATM Volume MROM_1217","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1217","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1218:2ce3eb2f","title":"ATM Volume MROM_1218","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1218","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1219:ca1634dd","title":"ATM Volume MROM_1219","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1219","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1220:deb6e1e4","title":"ATM Volume MROM_1220","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1221:2b631fde","title":"ATM Volume MROM_1221","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1222:465a65d0","title":"ATM Volume MROM_1222","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1222","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1223:d5f7b302","title":"ATM Volume MROM_1223","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1223","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1224:7a5768b6","title":"ATM Volume MROM_1224","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1224","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1225:e2b926e0","title":"ATM Volume MROM_1225","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1225","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1226:4f69a9be","title":"ATM Volume MROM_1226","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1226","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_1227:835ee98a","title":"ATM Volume MROM_1227","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2001:e19293d2","title":"ATM Volume MROM_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2002:971e211b","title":"ATM Volume MROM_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2003:11ab4f34","title":"ATM Volume MROM_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2004:46413452","title":"ATM Volume MROM_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2005:b688c981","title":"ATM Volume MROM_2005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2006:54b4256f","title":"ATM Volume MROM_2006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2007:090db2c4","title":"ATM Volume MROM_2007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2008:47cf51b7","title":"ATM Volume MROM_2008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2009:370e4af2","title":"ATM Volume MROM_2009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2010:574b0134","title":"ATM Volume MROM_2010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2011:2e81430d","title":"ATM Volume MROM_2011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2012:c7e717bb","title":"ATM Volume MROM_2012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2013:01d21f34","title":"ATM Volume MROM_2013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2014:200da632","title":"ATM Volume MROM_2014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2015:b0ea596d","title":"ATM Volume MROM_2015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2016:3802b37c","title":"ATM Volume MROM_2016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2017:7d0e409d","title":"ATM Volume MROM_2017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2018:71ded0e0","title":"ATM Volume MROM_2018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2019:ddf88e80","title":"ATM Volume MROM_2019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2020:09ca7f8c","title":"ATM Volume MROM_2020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2021:3820a18e","title":"ATM Volume MROM_2021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2022:1cffd768","title":"ATM Volume MROM_2022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2023:37cd0d2c","title":"ATM Volume MROM_2023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2024:87f7d022","title":"ATM Volume MROM_2024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2025:02b520de","title":"ATM Volume MROM_2025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2026:b488cdc2","title":"ATM Volume MROM_2026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2027:519338c6","title":"ATM Volume MROM_2027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2028:e4bd35b6","title":"ATM Volume MROM_2028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2029:aeb59833","title":"ATM Volume MROM_2029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2030:8a72790c","title":"ATM Volume MROM_2030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2031:81ecc5d8","title":"ATM Volume MROM_2031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2032:441f64a7","title":"ATM Volume MROM_2032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2033:04e4d536","title":"ATM Volume MROM_2033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2034:b9631f1b","title":"ATM Volume MROM_2034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2035:ac9612aa","title":"ATM Volume MROM_2035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2036:16e70226","title":"ATM Volume MROM_2036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2040:c2df3fb6","title":"ATM Volume MROM_2040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2041:dcd08bd9","title":"ATM Volume MROM_2041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2042:144cd2be","title":"ATM Volume MROM_2042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2043:6e57faa2","title":"ATM Volume MROM_2043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2044:ae032fe6","title":"ATM Volume MROM_2044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2045:55cc92a2","title":"ATM Volume MROM_2045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2046:26ba0078","title":"ATM Volume MROM_2046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2047:563b5483","title":"ATM Volume MROM_2047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2048:5e5c0c44","title":"ATM Volume MROM_2048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2049:565a363a","title":"ATM Volume MROM_2049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2050:b764fe1f","title":"ATM Volume MROM_2050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2051:7d7965e9","title":"ATM Volume MROM_2051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2052:8575e2c8","title":"ATM Volume MROM_2052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2053:7b123224","title":"ATM Volume MROM_2053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2054:a42fd62e","title":"ATM Volume MROM_2054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2055:dd6e2da7","title":"ATM Volume MROM_2055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2056:5395bcef","title":"ATM Volume MROM_2056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2057:c53e63af","title":"ATM Volume MROM_2057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2058:9a290fce","title":"ATM Volume MROM_2058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2059:063c8148","title":"ATM Volume MROM_2059","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2060:b302634b","title":"ATM Volume MROM_2060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2061:bbe2815d","title":"ATM Volume MROM_2061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2062:d7d94e56","title":"ATM Volume MROM_2062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2063:058b3e9a","title":"ATM Volume MROM_2063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2064:c7ef20f2","title":"ATM Volume MROM_2064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2065:ed2e5c0e","title":"ATM Volume MROM_2065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2066:bb48b189","title":"ATM Volume MROM_2066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2067:2d308290","title":"ATM Volume MROM_2067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2068:8d498cf5","title":"ATM Volume MROM_2068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2069:2977fc15","title":"ATM Volume MROM_2069","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2069","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2070:ce8ba451","title":"ATM Volume MROM_2070","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2070","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2071:685f2bd5","title":"ATM Volume MROM_2071","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2071","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2072:c0c58365","title":"ATM Volume MROM_2072","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2072","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2073:a068231e","title":"ATM Volume MROM_2073","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2073","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2074:dd4774eb","title":"ATM Volume MROM_2074","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2074","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2075:22e2aa02","title":"ATM Volume MROM_2075","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2075","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2076:ebec6c54","title":"ATM Volume MROM_2076","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2076","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2077:c76fdf24","title":"ATM Volume MROM_2077","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2077","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2078:61210f82","title":"ATM Volume MROM_2078","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2078","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2079:7681a8f4","title":"ATM Volume MROM_2079","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2079","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2080:e3068f48","title":"ATM Volume MROM_2080","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2080","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2081:f1f27789","title":"ATM Volume MROM_2081","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2081","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2082:52d57891","title":"ATM Volume MROM_2082","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2082","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2083:5997fa3d","title":"ATM Volume MROM_2083","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2083","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2084:a5a53eb2","title":"ATM Volume MROM_2084","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2084","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2085:c73825c1","title":"ATM Volume MROM_2085","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2086:a14a09a6","title":"ATM Volume MROM_2086","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2086","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2087:88939eb6","title":"ATM Volume MROM_2087","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2087","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2088:70507813","title":"ATM Volume MROM_2088","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2088","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2089:e233ae4e","title":"ATM Volume MROM_2089","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2089","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2090:fee6c744","title":"ATM Volume MROM_2090","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2090","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2091:b8616832","title":"ATM Volume MROM_2091","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2091","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2092:4bbddec7","title":"ATM Volume MROM_2092","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2092","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2093:dd56bae1","title":"ATM Volume MROM_2093","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2093","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2094:014ab7c6","title":"ATM Volume MROM_2094","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2094","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.569994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2095:779a5b09","title":"ATM Volume MROM_2095","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2095","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2096:6a7fd11a","title":"ATM Volume MROM_2096","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2096","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2097:e4b6c7f3","title":"ATM Volume MROM_2097","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2097","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2098:14ad7eb0","title":"ATM Volume MROM_2098","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2098","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2099:397eac1e","title":"ATM Volume MROM_2099","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2099","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2100:1770c2eb","title":"ATM Volume MROM_2100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2101:73fa1643","title":"ATM Volume MROM_2101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2102:9933a82d","title":"ATM Volume MROM_2102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2103:898d8650","title":"ATM Volume MROM_2103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2104:a7b49ffa","title":"ATM Volume MROM_2104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2105:b7c515b9","title":"ATM Volume MROM_2105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2106:acab5485","title":"ATM Volume MROM_2106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2107:ecbe3f35","title":"ATM Volume MROM_2107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2108:31c825e6","title":"ATM Volume MROM_2108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2109:26f7538e","title":"ATM Volume MROM_2109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2110:afb212ae","title":"ATM Volume MROM_2110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2111:0f4abdd2","title":"ATM Volume MROM_2111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2112:631bfee4","title":"ATM Volume MROM_2112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2113:47a42d05","title":"ATM Volume MROM_2113","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2113","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2114:66bd1d97","title":"ATM Volume MROM_2114","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2114","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2115:eeb39133","title":"ATM Volume MROM_2115","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2115","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2116:98fc03f4","title":"ATM Volume MROM_2116","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2117:420edec8","title":"ATM Volume MROM_2117","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2117","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2118:3330a7b4","title":"ATM Volume MROM_2118","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2118","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2119:45daff2c","title":"ATM Volume MROM_2119","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2119","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2120:bf02ac3c","title":"ATM Volume MROM_2120","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2120","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2121:15412c2d","title":"ATM Volume MROM_2121","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2121","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2122:422573f7","title":"ATM Volume MROM_2122","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2122","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2123:ca6bfa13","title":"ATM Volume MROM_2123","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2123","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2124:6c0962e5","title":"ATM Volume MROM_2124","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2124","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2125:a60c433d","title":"ATM Volume MROM_2125","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2125","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2126:60afaf0a","title":"ATM Volume MROM_2126","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2127:123527ad","title":"ATM Volume MROM_2127","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2128:6b30818a","title":"ATM Volume MROM_2128","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2129:6971de6b","title":"ATM Volume MROM_2129","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2130:a8d26b7b","title":"ATM Volume MROM_2130","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2131:6942888b","title":"ATM Volume MROM_2131","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2132:de1f0acd","title":"ATM Volume MROM_2132","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2133:b124867e","title":"ATM Volume MROM_2133","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2134:5d3cd058","title":"ATM Volume MROM_2134","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2134","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2135:9b45f8c0","title":"ATM Volume MROM_2135","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2135","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2136:ed7b9ce8","title":"ATM Volume MROM_2136","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2136","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2137:2361b0ea","title":"ATM Volume MROM_2137","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2137","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2138:e240fc13","title":"ATM Volume MROM_2138","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2138","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2139:65fa62de","title":"ATM Volume MROM_2139","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2139","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2140:ffc8680a","title":"ATM Volume MROM_2140","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2141:67003cb2","title":"ATM Volume MROM_2141","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2142:c7b632de","title":"ATM Volume MROM_2142","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2142","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2143:0fe1172a","title":"ATM Volume MROM_2143","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2143","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2144:e6ee9ae0","title":"ATM Volume MROM_2144","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2144","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2145:66294f2e","title":"ATM Volume MROM_2145","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2146:07cae673","title":"ATM Volume MROM_2146","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2147:c25b7a78","title":"ATM Volume MROM_2147","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2148:abd43a40","title":"ATM Volume MROM_2148","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2149:32c27db7","title":"ATM Volume MROM_2149","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2149","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2150:846e8e3f","title":"ATM Volume MROM_2150","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2150","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2151:99c17919","title":"ATM Volume MROM_2151","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2151","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2152:e832e9d2","title":"ATM Volume MROM_2152","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2152","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2153:b71f34d5","title":"ATM Volume MROM_2153","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2153","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2154:9d0a901e","title":"ATM Volume MROM_2154","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2154","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2155:ea1e405b","title":"ATM Volume MROM_2155","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2155","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2156:e73b9dc5","title":"ATM Volume MROM_2156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2157:52c04daf","title":"ATM Volume MROM_2157","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2157","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2158:f3ce2c96","title":"ATM Volume MROM_2158","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2158","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2159:0a54eed8","title":"ATM Volume MROM_2159","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2159","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2160:d9f02daf","title":"ATM Volume MROM_2160","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2160","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2161:6f052f2e","title":"ATM Volume MROM_2161","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2161","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2162:ed584119","title":"ATM Volume MROM_2162","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2162","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2163:dedba2c8","title":"ATM Volume MROM_2163","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2164:cf596471","title":"ATM Volume MROM_2164","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2164","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2165:383f1c1b","title":"ATM Volume MROM_2165","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2165","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2166:fa91c00c","title":"ATM Volume MROM_2166","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2166","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2167:e53f2b81","title":"ATM Volume MROM_2167","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2168:0d67902d","title":"ATM Volume MROM_2168","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2169:6ad6b89f","title":"ATM Volume MROM_2169","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2170:bfe8f781","title":"ATM Volume MROM_2170","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2170","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2171:b4a93483","title":"ATM Volume MROM_2171","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2171","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2172:bb18e2a1","title":"ATM Volume MROM_2172","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2172","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2173:3ae93da0","title":"ATM Volume MROM_2173","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2173","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2174:ac1ce764","title":"ATM Volume MROM_2174","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2174","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2175:edcae265","title":"ATM Volume MROM_2175","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2176:397406fe","title":"ATM Volume MROM_2176","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2177:a19e0a25","title":"ATM Volume MROM_2177","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2178:2366d20c","title":"ATM Volume MROM_2178","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2178","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2179:c49c020d","title":"ATM Volume MROM_2179","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2179","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2180:14d9142d","title":"ATM Volume MROM_2180","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2180","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2181:1110c5f1","title":"ATM Volume MROM_2181","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2181","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2182:f656cbaf","title":"ATM Volume MROM_2182","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2183:2d91c865","title":"ATM Volume MROM_2183","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2183","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2184:718605f8","title":"ATM Volume MROM_2184","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2184","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2185:7680d0df","title":"ATM Volume MROM_2185","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2185","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2186:33889af6","title":"ATM Volume MROM_2186","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2187:85beea8b","title":"ATM Volume MROM_2187","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2188:f5d0bde5","title":"ATM Volume MROM_2188","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2189:90b9606d","title":"ATM Volume MROM_2189","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2189","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2190:059a28b9","title":"ATM Volume MROM_2190","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2190","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2191:21a486e5","title":"ATM Volume MROM_2191","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2191","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2192:d39172b7","title":"ATM Volume MROM_2192","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2192","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2193:c02cca5a","title":"ATM Volume MROM_2193","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2193","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2194:8d93339b","title":"ATM Volume MROM_2194","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2194","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2195:031909d3","title":"ATM Volume MROM_2195","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2196:c5fc1dc6","title":"ATM Volume MROM_2196","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2196","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2197:9be2f6ce","title":"ATM Volume MROM_2197","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2197","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2198:0bdb4313","title":"ATM Volume MROM_2198","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2198","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2199:1daa3d17","title":"ATM Volume MROM_2199","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2200:7e3acbc9","title":"ATM Volume MROM_2200","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2201:5e560bf8","title":"ATM Volume MROM_2201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2202:db568e91","title":"ATM Volume MROM_2202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2203:df7aabc5","title":"ATM Volume MROM_2203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2204:0e6971c7","title":"ATM Volume MROM_2204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2205:041486a0","title":"ATM Volume MROM_2205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2206:8a5eb395","title":"ATM Volume MROM_2206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2207:941c1a42","title":"ATM Volume MROM_2207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2208:d2a79fde","title":"ATM Volume MROM_2208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2209:e2c509d7","title":"ATM Volume MROM_2209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2210:b6e5681a","title":"ATM Volume MROM_2210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2211:ccfca69e","title":"ATM Volume MROM_2211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2212:1d22bf9f","title":"ATM Volume MROM_2212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2213:561184a1","title":"ATM Volume MROM_2213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2214:427c46f5","title":"ATM Volume MROM_2214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2215:0f23abd0","title":"ATM Volume MROM_2215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.570996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2216:1060c88b","title":"ATM Volume MROM_2216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2217:e5ce6c4d","title":"ATM Volume MROM_2217","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2217","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2218:231b58cc","title":"ATM Volume MROM_2218","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2218","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2219:8d1d1d97","title":"ATM Volume MROM_2219","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2219","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2220:cb259b48","title":"ATM Volume MROM_2220","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2221:23c2f1c0","title":"ATM Volume MROM_2221","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2222:8ecf00eb","title":"ATM Volume MROM_2222","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2222","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2223:76d5fce6","title":"ATM Volume MROM_2223","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2223","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2224:441932ca","title":"ATM Volume MROM_2224","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2224","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2225:16b39307","title":"ATM Volume MROM_2225","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2225","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2226:ac933a00","title":"ATM Volume MROM_2226","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2226","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrom_2227:3afb3fa4","title":"ATM Volume MROM_2227","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mslrem_0001:0dfbec69","title":"ATM Volume mslrem_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mslrem_1001:f23fef1f","title":"ATM Volume mslrem_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571131","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:mrors_2001:99f1bc32","title":"ATM Volume mrors_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mrors_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:odya_0001:b6045ae2","title":"ATM Volume odya_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:odya_1001:2da57ee2","title":"ATM Volume odya_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":["Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phld_0001:e61df975","title":"ATM Volume phld_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phld_0002:50241c81","title":"ATM Volume phld_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phld_0003:876cea7c","title":"ATM Volume phld_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phmt_0001:d1620ac6","title":"ATM Volume phmt_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phmt_0002:6a2631d5","title":"ATM Volume phmt_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phmt_0003:69b637e0","title":"ATM Volume phmt_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phxao_1001:0ccde453","title":"ATM Volume phxao_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxao_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phxase_0001:c4ff7563","title":"ATM Volume phxase_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phxase_0002:7e817e14","title":"ATM Volume phxase_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:phxwnd_0001:e248e5ba","title":"ATM Volume phxwnd_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxwnd_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vl_1001:6e4f99af","title":"ATM Volume vl_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vl_1002:2d51c11b","title":"ATM Volume vl_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vo_3001:f789f723","title":"ATM Volume vo_3001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vo_3002:f7b75140","title":"ATM Volume vo_3002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vomr_0001:60baf1a8","title":"ATM Volume vomr_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vomr_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0001:151f53dd","title":"ATM Volume couvis_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:coiss_0011:8e3ca792","title":"ATM Volume coiss_0011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coiss_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0002:08537b20","title":"ATM Volume couvis_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gbat_0001:ac90c4e0","title":"ATM Volume gbat_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gbat_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gopr_5001:06d0f4bb","title":"ATM Volume gopr_5001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gopr_5002:211a88de","title":"ATM Volume gopr_5002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gouv_0002:5e5c373c","title":"ATM Volume gouv_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gouv_0003:ae349f91","title":"ATM Volume gouv_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:gp_0001:e73d6a20","title":"ATM Volume gp_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnogrv_0001:0a4355ee","title":"ATM Volume jnogrv_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnogrv_0002:5b3b2be6","title":"ATM Volume jnogrv_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnogrv_1001:de617829","title":"ATM Volume jnogrv_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1000:524435a4","title":"ATM Volume jnojir_1000","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1001:a4862b21","title":"ATM Volume jnojir_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1002:d9cdbbe4","title":"ATM Volume jnojir_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1003:4e326793","title":"ATM Volume jnojir_1003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1004:809b9016","title":"ATM Volume jnojir_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1005:4f57f012","title":"ATM Volume jnojir_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1006:696f0e56","title":"ATM Volume jnojir_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1007:2fd389e2","title":"ATM Volume jnojir_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1008:d3cbee0c","title":"ATM Volume jnojir_1008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1009:51160256","title":"ATM Volume jnojir_1009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1010:fe3d8377","title":"ATM Volume jnojir_1010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1011:b3ac53f0","title":"ATM Volume jnojir_1011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1012:45cc10fa","title":"ATM Volume jnojir_1012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1013:fed9e372","title":"ATM Volume jnojir_1013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1014:79bd31e0","title":"ATM Volume jnojir_1014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1015:f0abf90a","title":"ATM Volume jnojir_1015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1016:1c84d646","title":"ATM Volume jnojir_1016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1017:251c837c","title":"ATM Volume jnojir_1017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1018:0aa0d1c3","title":"ATM Volume jnojir_1018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1019:5428567d","title":"ATM Volume jnojir_1019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1020:8a344c7c","title":"ATM Volume jnojir_1020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1021:5c4eb61c","title":"ATM Volume jnojir_1021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1022:14adfa5a","title":"ATM Volume jnojir_1022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1023:03dad093","title":"ATM Volume jnojir_1023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1024:a56a7c07","title":"ATM Volume jnojir_1024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1025:d684a81f","title":"ATM Volume jnojir_1025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1026:0f3230cd","title":"ATM Volume jnojir_1026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1027:5f83616a","title":"ATM Volume jnojir_1027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1028:76ada533","title":"ATM Volume jnojir_1028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1029:9942a4f6","title":"ATM Volume jnojir_1029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1030:a09b0ba0","title":"ATM Volume jnojir_1030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1031:60b85970","title":"ATM Volume jnojir_1031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1032:329c31dd","title":"ATM Volume jnojir_1032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1033:7c9ed3e8","title":"ATM Volume jnojir_1033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1034:eec3ff75","title":"ATM Volume jnojir_1034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1035:adea4211","title":"ATM Volume jnojir_1035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1036:a9e7a2a7","title":"ATM Volume jnojir_1036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1037:eb0abaec","title":"ATM Volume jnojir_1037","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1038:d6ba7b0c","title":"ATM Volume jnojir_1038","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1039:73e83749","title":"ATM Volume jnojir_1039","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1040:ac68bc25","title":"ATM Volume jnojir_1040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1041:31acb888","title":"ATM Volume jnojir_1041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1042:19cf1eb2","title":"ATM Volume jnojir_1042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1043:09802f2f","title":"ATM Volume jnojir_1043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1044:561ad2af","title":"ATM Volume jnojir_1044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1045:69090feb","title":"ATM Volume jnojir_1045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1046:d1cf0bbd","title":"ATM Volume jnojir_1046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1047:19729738","title":"ATM Volume jnojir_1047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1048:6bae6922","title":"ATM Volume jnojir_1048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1049:674383d5","title":"ATM Volume jnojir_1049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1050:52f420b0","title":"ATM Volume jnojir_1050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1051:d0b36c2f","title":"ATM Volume jnojir_1051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1052:8d07cd3f","title":"ATM Volume jnojir_1052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1053:17ccd660","title":"ATM Volume jnojir_1053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1054:1e934518","title":"ATM Volume jnojir_1054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1055:9201224b","title":"ATM Volume jnojir_1055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1056:cd01e7d1","title":"ATM Volume jnojir_1056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1057:f632247a","title":"ATM Volume jnojir_1057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1058:62c40b53","title":"ATM Volume jnojir_1058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1060:c5ae9129","title":"ATM Volume jnojir_1060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1061:814dc438","title":"ATM Volume jnojir_1061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1062:933cbf32","title":"ATM Volume jnojir_1062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1063:dae779e5","title":"ATM Volume jnojir_1063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1064:41062c3f","title":"ATM Volume jnojir_1064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1065:5179621e","title":"ATM Volume jnojir_1065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1066:9de7348e","title":"ATM Volume jnojir_1066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1067:c7212684","title":"ATM Volume jnojir_1067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_1068:b6d25e60","title":"ATM Volume jnojir_1068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2000:871b2e46","title":"ATM Volume jnojir_2000","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2001:2473daa6","title":"ATM Volume jnojir_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2002:951dcc43","title":"ATM Volume jnojir_2002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2003:feaa6b74","title":"ATM Volume jnojir_2003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2004:a2b3bb68","title":"ATM Volume jnojir_2004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2005:f346ee21","title":"ATM Volume jnojir_2005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2006:671e5b08","title":"ATM Volume jnojir_2006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2007:f95ebe9f","title":"ATM Volume jnojir_2007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2008:31bfb064","title":"ATM Volume jnojir_2008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.571999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2009:13a5eee8","title":"ATM Volume jnojir_2009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2010:7a557e09","title":"ATM Volume jnojir_2010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2011:f57c15bf","title":"ATM Volume jnojir_2011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2012:eda10a07","title":"ATM Volume jnojir_2012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2013:1c8648ff","title":"ATM Volume jnojir_2013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2014:23af089a","title":"ATM Volume jnojir_2014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2015:3c1b196d","title":"ATM Volume jnojir_2015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2016:ba26f825","title":"ATM Volume jnojir_2016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2017:da100278","title":"ATM Volume jnojir_2017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2018:1f459b84","title":"ATM Volume jnojir_2018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2019:ffa6fa5c","title":"ATM Volume jnojir_2019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2020:bddde4aa","title":"ATM Volume jnojir_2020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2021:a9eca9db","title":"ATM Volume jnojir_2021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2022:f90968d7","title":"ATM Volume jnojir_2022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2023:0dbc91ea","title":"ATM Volume jnojir_2023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2024:7a0b3df4","title":"ATM Volume jnojir_2024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2025:ba8b2140","title":"ATM Volume jnojir_2025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2026:5ef1d337","title":"ATM Volume jnojir_2026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2027:2c778b3d","title":"ATM Volume jnojir_2027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2028:d9e4f328","title":"ATM Volume jnojir_2028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2029:bbd062e9","title":"ATM Volume jnojir_2029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2030:1c9e13ff","title":"ATM Volume jnojir_2030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2031:27832dc4","title":"ATM Volume jnojir_2031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2032:1fae5be8","title":"ATM Volume jnojir_2032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2033:de0acb34","title":"ATM Volume jnojir_2033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2034:8204280a","title":"ATM Volume jnojir_2034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2035:024bc836","title":"ATM Volume jnojir_2035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2036:cfe1ef2b","title":"ATM Volume jnojir_2036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2037:4657b1a0","title":"ATM Volume jnojir_2037","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2038:262ae9f0","title":"ATM Volume jnojir_2038","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2039:78cc7a74","title":"ATM Volume jnojir_2039","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2040:6112f90f","title":"ATM Volume jnojir_2040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2041:e860e26c","title":"ATM Volume jnojir_2041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2042:6aef4a8b","title":"ATM Volume jnojir_2042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2043:8bc6c6a0","title":"ATM Volume jnojir_2043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2044:d36a400e","title":"ATM Volume jnojir_2044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2045:9164106e","title":"ATM Volume jnojir_2045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2046:e9b7cbcb","title":"ATM Volume jnojir_2046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2047:3ec13ed9","title":"ATM Volume jnojir_2047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2048:1257fe3f","title":"ATM Volume jnojir_2048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2049:c1bb6d9a","title":"ATM Volume jnojir_2049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2050:fb6fe1ea","title":"ATM Volume jnojir_2050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2051:17e12438","title":"ATM Volume jnojir_2051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2052:45d5da41","title":"ATM Volume jnojir_2052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2053:1d6eec33","title":"ATM Volume jnojir_2053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2054:e60608f3","title":"ATM Volume jnojir_2054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2055:1b6340d4","title":"ATM Volume jnojir_2055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2056:9d84a254","title":"ATM Volume jnojir_2056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2057:523bd7ce","title":"ATM Volume jnojir_2057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2058:43de64ed","title":"ATM Volume jnojir_2058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2061:bb09ee38","title":"ATM Volume jnojir_2061","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2061","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2062:073cf76e","title":"ATM Volume jnojir_2062","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2062","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2063:5041e313","title":"ATM Volume jnojir_2063","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2063","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2064:24cf1b36","title":"ATM Volume jnojir_2064","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2064","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2065:bee68f1f","title":"ATM Volume jnojir_2065","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2065","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2066:3730f912","title":"ATM Volume jnojir_2066","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2066","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2067:6a6687f1","title":"ATM Volume jnojir_2067","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2067","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnojir_2068:cb4c2124","title":"ATM Volume jnojir_2068","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2068","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_0000:32304145","title":"ATM Volume jnomwr_0000","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_0100:8d67c7f1","title":"ATM Volume jnomwr_0100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_1000:dc51ce33","title":"ATM Volume jnomwr_1000","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1000","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_1100:b909ff7b","title":"ATM Volume jnomwr_1100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnomwr_2100:8a4dfec1","title":"ATM Volume jnomwr_2100","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnouvs_2001:be8055b7","title":"ATM Volume jnouvs_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnouvs_3001:4a2106d6","title":"ATM Volume jnouvs_3001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_3001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:jnouvs_5001:0fcd642a","title":"ATM Volume jnouvs_5001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0005:6a28f877","title":"ATM Volume sl9_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0006:ad3ec6b2","title":"ATM Volume sl9_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0008:1ad32033","title":"ATM Volume sl9_0008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0009:410131e5","title":"ATM Volume sl9_0009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0010:b61ea59e","title":"ATM Volume sl9_0010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0011:444ad532","title":"ATM Volume sl9_0011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:sl9_0012:61f05423","title":"ATM Volume sl9_0012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2001:f27a14dd","title":"ATM Volume vg_2001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2101:c2a95332","title":"ATM Volume vg_2101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2102:31d6c8de","title":"ATM Volume vg_2102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2201:ace3895a","title":"ATM Volume vg_2201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2202:9b9a080c","title":"ATM Volume vg_2202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2203:ff5067ab","title":"ATM Volume vg_2203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2204:d22fd50d","title":"ATM Volume vg_2204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2205:31a61432","title":"ATM Volume vg_2205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2206:fb7effbb","title":"ATM Volume vg_2206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0401:1387691d","title":"ATM Volume cocirs_0401","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0402:ea7f4081","title":"ATM Volume cocirs_0402","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0402","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0403:97901714","title":"ATM Volume cocirs_0403","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0403","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0404:84aea2af","title":"ATM Volume cocirs_0404","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0404","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0405:599b1b13","title":"ATM Volume cocirs_0405","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0405","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0406:ec4e226f","title":"ATM Volume cocirs_0406","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0406","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0407:e130cffd","title":"ATM Volume cocirs_0407","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0407","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0408:b6c7f80c","title":"ATM Volume cocirs_0408","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0408","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0409:f3a4222b","title":"ATM Volume cocirs_0409","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0409","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0410:02f33876","title":"ATM Volume cocirs_0410","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0411:42b0580e","title":"ATM Volume cocirs_0411","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0411","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0412:711187c4","title":"ATM Volume cocirs_0412","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0412","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0501:ef714d6b","title":"ATM Volume cocirs_0501","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0501","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0502:40fb5f26","title":"ATM Volume cocirs_0502","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0502","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0503:2d123325","title":"ATM Volume cocirs_0503","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0503","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0504:1d8157f9","title":"ATM Volume cocirs_0504","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0504","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0505:3e73a48c","title":"ATM Volume cocirs_0505","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0505","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0506:59f88c44","title":"ATM Volume cocirs_0506","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0506","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0507:17821ea0","title":"ATM Volume cocirs_0507","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0507","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0508:52464084","title":"ATM Volume cocirs_0508","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0508","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0509:a3ac3f39","title":"ATM Volume cocirs_0509","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0509","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0510:3292a111","title":"ATM Volume cocirs_0510","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0510","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0511:9dfb0c48","title":"ATM Volume cocirs_0511","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0511","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0512:7d5c4f53","title":"ATM Volume cocirs_0512","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0512","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0601:ab391650","title":"ATM Volume cocirs_0601","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0601","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0602:7978117c","title":"ATM Volume cocirs_0602","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0602","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0603:ec20fc7e","title":"ATM Volume cocirs_0603","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0603","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0604:5aaf438e","title":"ATM Volume cocirs_0604","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0604","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0605:f8c5acac","title":"ATM Volume cocirs_0605","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0605","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0606:2b3bdc0c","title":"ATM Volume cocirs_0606","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0606","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0607:f1c6e6e8","title":"ATM Volume cocirs_0607","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0607","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0608:2bedd1af","title":"ATM Volume cocirs_0608","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0608","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0609:bc9fb22b","title":"ATM Volume cocirs_0609","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0609","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0610:9384a4bf","title":"ATM Volume cocirs_0610","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0611:123e1cad","title":"ATM Volume cocirs_0611","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0611","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0612:ff241221","title":"ATM Volume cocirs_0612","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0612","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0701:95b45ada","title":"ATM Volume cocirs_0701","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0701","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0702:931b4f74","title":"ATM Volume cocirs_0702","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0702","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0703:68281df1","title":"ATM Volume cocirs_0703","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0703","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0704:39567937","title":"ATM Volume cocirs_0704","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0704","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.572992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0705:2415c2bc","title":"ATM Volume cocirs_0705","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0705","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0706:1e87d929","title":"ATM Volume cocirs_0706","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0706","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0707:42be5f06","title":"ATM Volume cocirs_0707","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0707","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0708:d99135ad","title":"ATM Volume cocirs_0708","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0708","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0709:e4701853","title":"ATM Volume cocirs_0709","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0709","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0710:d4381c36","title":"ATM Volume cocirs_0710","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0710","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0711:2fe7073d","title":"ATM Volume cocirs_0711","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0711","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0712:5e8a5ec6","title":"ATM Volume cocirs_0712","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0712","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0801:2abb1775","title":"ATM Volume cocirs_0801","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0801","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0802:9171c118","title":"ATM Volume cocirs_0802","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0802","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0803:fe9733e7","title":"ATM Volume cocirs_0803","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0803","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0804:1e135fb7","title":"ATM Volume cocirs_0804","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0804","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0805:71f2b2ad","title":"ATM Volume cocirs_0805","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0805","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0806:bd55cd04","title":"ATM Volume cocirs_0806","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0806","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0807:4533d625","title":"ATM Volume cocirs_0807","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0807","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0808:ef8637ae","title":"ATM Volume cocirs_0808","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0808","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0809:3b0f599f","title":"ATM Volume cocirs_0809","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0809","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0810:828d3b1c","title":"ATM Volume cocirs_0810","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0810","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0811:d2f5853e","title":"ATM Volume cocirs_0811","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0811","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0812:3e825915","title":"ATM Volume cocirs_0812","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0812","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0901:94561cae","title":"ATM Volume cocirs_0901","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0901","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0902:1a087b66","title":"ATM Volume cocirs_0902","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0902","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0903:fb65fe6b","title":"ATM Volume cocirs_0903","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0903","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0904:5eef41cc","title":"ATM Volume cocirs_0904","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0904","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0905:6b709646","title":"ATM Volume cocirs_0905","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0905","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0906:52a1455a","title":"ATM Volume cocirs_0906","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0906","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0907:05be6f11","title":"ATM Volume cocirs_0907","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0907","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0908:e5f68171","title":"ATM Volume cocirs_0908","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0908","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0909:995c691d","title":"ATM Volume cocirs_0909","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0909","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0910:b69f2d07","title":"ATM Volume cocirs_0910","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0910","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0911:e2e8ea23","title":"ATM Volume cocirs_0911","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0911","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_0912:863fbf39","title":"ATM Volume cocirs_0912","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_0912","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1001:a7137bb5","title":"ATM Volume cocirs_1001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1002:3a9e75bd","title":"ATM Volume cocirs_1002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1004:ca98c8a9","title":"ATM Volume cocirs_1004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1005:f4464072","title":"ATM Volume cocirs_1005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1006:21fbd32a","title":"ATM Volume cocirs_1006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1007:1e6e18a0","title":"ATM Volume cocirs_1007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1008:2574c6c5","title":"ATM Volume cocirs_1008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1009:c6acf0ef","title":"ATM Volume cocirs_1009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1010:e7319b05","title":"ATM Volume cocirs_1010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1011:4e491511","title":"ATM Volume cocirs_1011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1012:8f271a74","title":"ATM Volume cocirs_1012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1101:30c0f215","title":"ATM Volume cocirs_1101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1102:b50c0990","title":"ATM Volume cocirs_1102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1103:ec07fbd6","title":"ATM Volume cocirs_1103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1104:99f729d6","title":"ATM Volume cocirs_1104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1105:b33c84c8","title":"ATM Volume cocirs_1105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1106:f0951f9f","title":"ATM Volume cocirs_1106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1107:b6e580bf","title":"ATM Volume cocirs_1107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1108:4b998ad3","title":"ATM Volume cocirs_1108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1109:2dae5b5b","title":"ATM Volume cocirs_1109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1110:f9713be9","title":"ATM Volume cocirs_1110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1111:430a6b23","title":"ATM Volume cocirs_1111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1112:d7e31de7","title":"ATM Volume cocirs_1112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1201:6e7f176e","title":"ATM Volume cocirs_1201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1202:82367a31","title":"ATM Volume cocirs_1202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1203:6faf2759","title":"ATM Volume cocirs_1203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1204:4dcedc9d","title":"ATM Volume cocirs_1204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1205:9346897e","title":"ATM Volume cocirs_1205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1206:f4c96e37","title":"ATM Volume cocirs_1206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1207:949ad455","title":"ATM Volume cocirs_1207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1208:d9f3ded7","title":"ATM Volume cocirs_1208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1209:a9ee68fb","title":"ATM Volume cocirs_1209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1210:806c4296","title":"ATM Volume cocirs_1210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1211:b9e3e22a","title":"ATM Volume cocirs_1211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1212:56e16f15","title":"ATM Volume cocirs_1212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1301:5c49ffe4","title":"ATM Volume cocirs_1301","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1301","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1302:3eb3746a","title":"ATM Volume cocirs_1302","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1302","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1303:a302aa2e","title":"ATM Volume cocirs_1303","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1303","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1304:8e61e57c","title":"ATM Volume cocirs_1304","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1304","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1305:22ec7d37","title":"ATM Volume cocirs_1305","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1305","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1306:dd188f78","title":"ATM Volume cocirs_1306","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1306","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1307:60a941ce","title":"ATM Volume cocirs_1307","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1307","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1308:c8954842","title":"ATM Volume cocirs_1308","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1308","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1309:09ce3ec0","title":"ATM Volume cocirs_1309","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1309","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1310:63501fb1","title":"ATM Volume cocirs_1310","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1310","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1311:e339025d","title":"ATM Volume cocirs_1311","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1311","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1312:68f24dee","title":"ATM Volume cocirs_1312","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1312","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1401:29534f5f","title":"ATM Volume cocirs_1401","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1402:850fcef5","title":"ATM Volume cocirs_1402","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1402","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1403:4791f5b9","title":"ATM Volume cocirs_1403","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1403","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1404:2bc7bbdf","title":"ATM Volume cocirs_1404","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1404","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1405:94292616","title":"ATM Volume cocirs_1405","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1405","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1406:dddd2ca8","title":"ATM Volume cocirs_1406","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1406","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1407:2e876e75","title":"ATM Volume cocirs_1407","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1407","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1408:060533a0","title":"ATM Volume cocirs_1408","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1408","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1409:2767e4eb","title":"ATM Volume cocirs_1409","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1409","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1410:4c03cd14","title":"ATM Volume cocirs_1410","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1411:f4c4521e","title":"ATM Volume cocirs_1411","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1411","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1412:ef7a7af2","title":"ATM Volume cocirs_1412","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1412","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1501:8ff1aa71","title":"ATM Volume cocirs_1501","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1501","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1502:b92bd666","title":"ATM Volume cocirs_1502","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1502","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1503:a3a4d21c","title":"ATM Volume cocirs_1503","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1503","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1504:393878cb","title":"ATM Volume cocirs_1504","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1504","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1505:72d916ec","title":"ATM Volume cocirs_1505","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1505","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1506:50050730","title":"ATM Volume cocirs_1506","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1506","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1507:a4e10d3f","title":"ATM Volume cocirs_1507","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1507","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1508:0cd1b153","title":"ATM Volume cocirs_1508","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1508","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1509:ce73d124","title":"ATM Volume cocirs_1509","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1509","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1510:8bf52b4b","title":"ATM Volume cocirs_1510","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1510","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1511:b0ee3792","title":"ATM Volume cocirs_1511","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1511","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1512:7e6e8d8a","title":"ATM Volume cocirs_1512","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1512","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1601:1920047a","title":"ATM Volume cocirs_1601","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1601","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1602:f3b30e4b","title":"ATM Volume cocirs_1602","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1602","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1603:3eb6f2f9","title":"ATM Volume cocirs_1603","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1603","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1604:27142bc4","title":"ATM Volume cocirs_1604","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1604","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1605:89ccc8fe","title":"ATM Volume cocirs_1605","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1605","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1606:34cd5ee5","title":"ATM Volume cocirs_1606","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1606","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1607:6532e568","title":"ATM Volume cocirs_1607","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1607","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1608:e7db1dd7","title":"ATM Volume cocirs_1608","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1608","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1609:11dba417","title":"ATM Volume cocirs_1609","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1609","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1610:c91b2bb5","title":"ATM Volume cocirs_1610","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1611:fff83a95","title":"ATM Volume cocirs_1611","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1611","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1612:0a346cbe","title":"ATM Volume cocirs_1612","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1612","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1701:15157b17","title":"ATM Volume cocirs_1701","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1701","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1702:03850532","title":"ATM Volume cocirs_1702","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1702","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1703:9bca78d1","title":"ATM Volume cocirs_1703","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1703","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1704:6db229b9","title":"ATM Volume cocirs_1704","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1704","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1705:473920ad","title":"ATM Volume cocirs_1705","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1705","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1706:34d16119","title":"ATM Volume cocirs_1706","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1706","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1707:23734fb4","title":"ATM Volume cocirs_1707","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1707","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1708:75336e8d","title":"ATM Volume cocirs_1708","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1708","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cocirs_1709:d9e7b237","title":"ATM Volume cocirs_1709","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1709","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:coradr_5001:713b15ec","title":"ATM Volume coradr_5001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coradr_5001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.573991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0001:9b632e28","title":"ATM Volume cors_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0002:3ad99a21","title":"ATM Volume cors_0002","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0002","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0003:b23fc6e8","title":"ATM Volume cors_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0004:78ff58bd","title":"ATM Volume cors_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0005:be8dca29","title":"ATM Volume cors_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0008:64114cb3","title":"ATM Volume cors_0008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0009:d739e768","title":"ATM Volume cors_0009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0010:25d883f3","title":"ATM Volume cors_0010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0021:55f884af","title":"ATM Volume cors_0021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0022:64e2ee2f","title":"ATM Volume cors_0022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0023:b68d4cc8","title":"ATM Volume cors_0023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0024:bbec7659","title":"ATM Volume cors_0024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0025:f9b23da7","title":"ATM Volume cors_0025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0026:27bc64fd","title":"ATM Volume cors_0026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0027:537330fa","title":"ATM Volume cors_0027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0028:3c463907","title":"ATM Volume cors_0028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0041:79d81bc9","title":"ATM Volume cors_0041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0042:5c1b18d2","title":"ATM Volume cors_0042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0043:c73d5711","title":"ATM Volume cors_0043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0044:842402bc","title":"ATM Volume cors_0044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0045:fa7d0e64","title":"ATM Volume cors_0045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0046:70ebddfa","title":"ATM Volume cors_0046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0047:80cfb7b8","title":"ATM Volume cors_0047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0048:b3808039","title":"ATM Volume cors_0048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0049:0984a5ad","title":"ATM Volume cors_0049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0050:ea35de4f","title":"ATM Volume cors_0050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0081:da08159f","title":"ATM Volume cors_0081","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0081","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0082:c28ccd23","title":"ATM Volume cors_0082","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0082","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0083:4426820a","title":"ATM Volume cors_0083","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0083","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0084:05cb7a89","title":"ATM Volume cors_0084","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0084","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0085:1ef19241","title":"ATM Volume cors_0085","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0085","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0101:9199bf2a","title":"ATM Volume cors_0101","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0101","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0102:ab5a1086","title":"ATM Volume cors_0102","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0102","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0103:2ca4b514","title":"ATM Volume cors_0103","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0103","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0104:5e8a910c","title":"ATM Volume cors_0104","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0104","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0105:b14fa3e8","title":"ATM Volume cors_0105","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0105","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0106:925b1d7f","title":"ATM Volume cors_0106","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0106","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0107:622b186c","title":"ATM Volume cors_0107","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0107","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0108:352e9eb7","title":"ATM Volume cors_0108","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0108","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0109:e93d929a","title":"ATM Volume cors_0109","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0109","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0110:97b4f7e0","title":"ATM Volume cors_0110","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0110","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0111:c0e1d4eb","title":"ATM Volume cors_0111","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0111","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0112:41a72c2a","title":"ATM Volume cors_0112","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0112","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0113:3b2741d6","title":"ATM Volume cors_0113","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0113","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0114:958bb9cc","title":"ATM Volume cors_0114","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0114","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0115:5c3891ce","title":"ATM Volume cors_0115","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0115","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0116:dc91c5e8","title":"ATM Volume cors_0116","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0116","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0117:a3b1404e","title":"ATM Volume cors_0117","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0117","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0118:42e1bfab","title":"ATM Volume cors_0118","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0118","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0119:348d5b85","title":"ATM Volume cors_0119","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0119","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0120:543beaac","title":"ATM Volume cors_0120","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0120","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0121:bf70aab6","title":"ATM Volume cors_0121","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0121","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0122:b952b1e1","title":"ATM Volume cors_0122","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0122","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0123:0f7e1574","title":"ATM Volume cors_0123","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0123","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0124:779e54e1","title":"ATM Volume cors_0124","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0124","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0125:6c89f8f9","title":"ATM Volume cors_0125","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0125","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0126:8d65e075","title":"ATM Volume cors_0126","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0126","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0127:d1a281af","title":"ATM Volume cors_0127","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0127","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0128:25966872","title":"ATM Volume cors_0128","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0128","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0129:fc0aba31","title":"ATM Volume cors_0129","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0129","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0130:0e0c3ef6","title":"ATM Volume cors_0130","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0130","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0131:be7881f7","title":"ATM Volume cors_0131","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0131","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0132:c7ac284d","title":"ATM Volume cors_0132","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0132","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574659","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0133:66eeb9b4","title":"ATM Volume cors_0133","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0133","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0134:8742856f","title":"ATM Volume cors_0134","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0134","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0135:1ff42c9b","title":"ATM Volume cors_0135","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0135","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0136:fc22ffa2","title":"ATM Volume cors_0136","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0136","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0137:f2383c12","title":"ATM Volume cors_0137","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0137","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0138:879df98a","title":"ATM Volume cors_0138","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0138","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0139:74ad8592","title":"ATM Volume cors_0139","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0139","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0140:25321d62","title":"ATM Volume cors_0140","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0140","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0141:1460f309","title":"ATM Volume cors_0141","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0141","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0142:c42956ef","title":"ATM Volume cors_0142","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0142","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0143:485b73ae","title":"ATM Volume cors_0143","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0143","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0144:664d9368","title":"ATM Volume cors_0144","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0144","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0145:65b1a872","title":"ATM Volume cors_0145","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0145","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0146:b9823d1c","title":"ATM Volume cors_0146","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0146","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0147:4ebd9007","title":"ATM Volume cors_0147","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0147","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0148:c605224a","title":"ATM Volume cors_0148","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0148","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0149:4f76c518","title":"ATM Volume cors_0149","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0149","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0150:2fd9eb9f","title":"ATM Volume cors_0150","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0150","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0151:c9c2e43d","title":"ATM Volume cors_0151","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0151","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0152:842a1de1","title":"ATM Volume cors_0152","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0152","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0153:25fcd88a","title":"ATM Volume cors_0153","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0153","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0154:3da23711","title":"ATM Volume cors_0154","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0154","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0155:f46b48cd","title":"ATM Volume cors_0155","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0155","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0156:1ae87e69","title":"ATM Volume cors_0156","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0156","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0157:24336547","title":"ATM Volume cors_0157","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0157","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0158:973698b5","title":"ATM Volume cors_0158","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0158","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0159:a070a594","title":"ATM Volume cors_0159","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0159","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0160:126b4a35","title":"ATM Volume cors_0160","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0160","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0161:8281ba77","title":"ATM Volume cors_0161","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0161","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0162:ef0c2795","title":"ATM Volume cors_0162","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0162","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0163:26c91af1","title":"ATM Volume cors_0163","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0163","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0164:d8a473c5","title":"ATM Volume cors_0164","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0164","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0165:1c2abcbc","title":"ATM Volume cors_0165","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0165","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0166:e42f34de","title":"ATM Volume cors_0166","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0166","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0167:ff017a34","title":"ATM Volume cors_0167","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0167","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0168:b4339deb","title":"ATM Volume cors_0168","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0168","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0169:080cb865","title":"ATM Volume cors_0169","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0169","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0170:ea0f49bc","title":"ATM Volume cors_0170","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0170","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0171:33d609d3","title":"ATM Volume cors_0171","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0171","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0172:9d1740c4","title":"ATM Volume cors_0172","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0172","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0173:59666a5d","title":"ATM Volume cors_0173","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0173","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0174:1ae493e1","title":"ATM Volume cors_0174","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0174","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.574996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0175:64393ec6","title":"ATM Volume cors_0175","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0175","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0176:e9dcb364","title":"ATM Volume cors_0176","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0176","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0177:1bcd9c80","title":"ATM Volume cors_0177","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0177","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0178:fa80c5e0","title":"ATM Volume cors_0178","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0178","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0179:c8fb1f0f","title":"ATM Volume cors_0179","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0179","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0180:d34b180c","title":"ATM Volume cors_0180","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0180","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0181:3b30b152","title":"ATM Volume cors_0181","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0181","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0182:15c4b1d6","title":"ATM Volume cors_0182","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0182","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0183:a310aca8","title":"ATM Volume cors_0183","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0183","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0184:29f29175","title":"ATM Volume cors_0184","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0184","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0185:6e47fb1a","title":"ATM Volume cors_0185","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0185","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0186:5181ef9f","title":"ATM Volume cors_0186","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0186","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0187:fc87efe4","title":"ATM Volume cors_0187","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0187","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0188:e6cd5dee","title":"ATM Volume cors_0188","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0188","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0189:d1d5d34c","title":"ATM Volume cors_0189","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0189","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0190:e783a8a3","title":"ATM Volume cors_0190","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0190","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0191:4c736167","title":"ATM Volume cors_0191","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0191","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0192:6280e26e","title":"ATM Volume cors_0192","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0192","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0193:05d7f57e","title":"ATM Volume cors_0193","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0193","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0194:941375ea","title":"ATM Volume cors_0194","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0194","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0195:cb0d5fcf","title":"ATM Volume cors_0195","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0195","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0196:10c5cb83","title":"ATM Volume cors_0196","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0196","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0197:9c4b7cee","title":"ATM Volume cors_0197","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0197","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0198:bd9f8005","title":"ATM Volume cors_0198","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0198","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0199:e1603d69","title":"ATM Volume cors_0199","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0199","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0200:d77e22b4","title":"ATM Volume cors_0200","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0200","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0201:8e3c3e77","title":"ATM Volume cors_0201","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0201","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0202:e6a19e15","title":"ATM Volume cors_0202","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0202","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0203:55381068","title":"ATM Volume cors_0203","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0203","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0204:88d7553d","title":"ATM Volume cors_0204","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0204","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0205:aa3df6e7","title":"ATM Volume cors_0205","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0205","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0206:3e4f665b","title":"ATM Volume cors_0206","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0206","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0207:50495451","title":"ATM Volume cors_0207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0208:64911e1e","title":"ATM Volume cors_0208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0209:f8b84827","title":"ATM Volume cors_0209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0210:66f67159","title":"ATM Volume cors_0210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0211:6ef4c621","title":"ATM Volume cors_0211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0212:df89dcd9","title":"ATM Volume cors_0212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0213:9c918e67","title":"ATM Volume cors_0213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0214:fc5094e3","title":"ATM Volume cors_0214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0215:a5c898f7","title":"ATM Volume cors_0215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0216:d2fcfa70","title":"ATM Volume cors_0216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0217:20162d73","title":"ATM Volume cors_0217","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0217","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0218:0b22d8e4","title":"ATM Volume cors_0218","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0218","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0219:df41d8b7","title":"ATM Volume cors_0219","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0219","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0220:c8778ad0","title":"ATM Volume cors_0220","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0220","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0221:d2e52c99","title":"ATM Volume cors_0221","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0221","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0222:9af2aa36","title":"ATM Volume cors_0222","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0222","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0223:55e506be","title":"ATM Volume cors_0223","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0223","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0224:d8264ba6","title":"ATM Volume cors_0224","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0224","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0225:281dea11","title":"ATM Volume cors_0225","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0225","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0226:e0b5f8ea","title":"ATM Volume cors_0226","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0226","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0227:3dc71756","title":"ATM Volume cors_0227","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0227","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0228:c2689351","title":"ATM Volume cors_0228","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0228","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0229:490db62c","title":"ATM Volume cors_0229","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0229","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0230:66a67dac","title":"ATM Volume cors_0230","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0230","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0231:7815f3b4","title":"ATM Volume cors_0231","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0231","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0232:4c5df8be","title":"ATM Volume cors_0232","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0232","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0233:8d1e149a","title":"ATM Volume cors_0233","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0233","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0234:17ebe6b3","title":"ATM Volume cors_0234","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0234","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0235:eae4343f","title":"ATM Volume cors_0235","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0235","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0236:c5d30845","title":"ATM Volume cors_0236","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0236","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0237:0f1432dd","title":"ATM Volume cors_0237","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0237","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0238:5da59a6e","title":"ATM Volume cors_0238","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0238","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0239:f6fbe0c4","title":"ATM Volume cors_0239","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0239","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0240:e531270d","title":"ATM Volume cors_0240","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0240","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0241:de3bf849","title":"ATM Volume cors_0241","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0241","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0242:37c43093","title":"ATM Volume cors_0242","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0242","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0243:8a4b46e6","title":"ATM Volume cors_0243","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0243","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0244:9e85a0ec","title":"ATM Volume cors_0244","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0244","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0245:1b7a74a8","title":"ATM Volume cors_0245","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0245","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0246:9ecb4052","title":"ATM Volume cors_0246","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0246","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0247:26c8ba5b","title":"ATM Volume cors_0247","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0247","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0248:dda92c4a","title":"ATM Volume cors_0248","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0248","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0249:88ac15fa","title":"ATM Volume cors_0249","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0249","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0250:482cf9c0","title":"ATM Volume cors_0250","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0250","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0251:7de4aa42","title":"ATM Volume cors_0251","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0251","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0252:78d29e69","title":"ATM Volume cors_0252","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0252","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0253:ec441cd4","title":"ATM Volume cors_0253","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0253","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0254:a56326fc","title":"ATM Volume cors_0254","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0254","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0255:7b956d04","title":"ATM Volume cors_0255","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0255","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0256:8097f51c","title":"ATM Volume cors_0256","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0256","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0257:6f37dd41","title":"ATM Volume cors_0257","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0257","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0258:02e36e54","title":"ATM Volume cors_0258","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0258","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0259:d97f9c5d","title":"ATM Volume cors_0259","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0259","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0260:c4183933","title":"ATM Volume cors_0260","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0260","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0261:8e668a2d","title":"ATM Volume cors_0261","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0261","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0262:5e94bbbd","title":"ATM Volume cors_0262","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0262","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0263:2449eb2c","title":"ATM Volume cors_0263","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0263","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0264:84e83b37","title":"ATM Volume cors_0264","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0264","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0265:2a7bec70","title":"ATM Volume cors_0265","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0265","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0266:4fe0d53b","title":"ATM Volume cors_0266","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0266","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0267:a7d59235","title":"ATM Volume cors_0267","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0267","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0268:759e7188","title":"ATM Volume cors_0268","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0268","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0269:0f2913b6","title":"ATM Volume cors_0269","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0269","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0270:041b7cca","title":"ATM Volume cors_0270","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0270","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0271:6fc37a41","title":"ATM Volume cors_0271","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0271","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0272:3a6b1f5a","title":"ATM Volume cors_0272","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0272","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0273:4d08d902","title":"ATM Volume cors_0273","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0273","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0274:f7fc573d","title":"ATM Volume cors_0274","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0274","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0275:edfc6ae7","title":"ATM Volume cors_0275","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0275","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0276:fe25572f","title":"ATM Volume cors_0276","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0276","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0277:93a37aa3","title":"ATM Volume cors_0277","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0277","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0278:ed7fc0b7","title":"ATM Volume cors_0278","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0278","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0279:97c2de1f","title":"ATM Volume cors_0279","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0279","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0280:8b5d9b99","title":"ATM Volume cors_0280","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0280","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0281:c2961aad","title":"ATM Volume cors_0281","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0281","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0282:483be75d","title":"ATM Volume cors_0282","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0282","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0283:cedc0855","title":"ATM Volume cors_0283","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0283","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0284:2e365251","title":"ATM Volume cors_0284","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0284","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0285:a02b6b8f","title":"ATM Volume cors_0285","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0285","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0286:c561027f","title":"ATM Volume cors_0286","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0286","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0287:cd1c2dcb","title":"ATM Volume cors_0287","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0287","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0288:388d3f80","title":"ATM Volume cors_0288","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0288","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0289:2957cd42","title":"ATM Volume cors_0289","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0289","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0290:aaee6ab6","title":"ATM Volume cors_0290","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0290","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0291:9280b4e6","title":"ATM Volume cors_0291","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0291","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0292:e17f31e8","title":"ATM Volume cors_0292","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0292","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0293:ad7a2162","title":"ATM Volume cors_0293","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0293","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0294:52f465aa","title":"ATM Volume cors_0294","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0294","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0295:f0485d65","title":"ATM Volume cors_0295","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0295","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0296:28bed6f7","title":"ATM Volume cors_0296","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0296","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.575993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0297:61cb3f64","title":"ATM Volume cors_0297","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0297","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0298:b1e831f4","title":"ATM Volume cors_0298","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0298","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0299:f1a6c5e3","title":"ATM Volume cors_0299","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0299","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0300:29352530","title":"ATM Volume cors_0300","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0300","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0301:05a31aa8","title":"ATM Volume cors_0301","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0301","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0302:12b2f155","title":"ATM Volume cors_0302","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0302","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0303:7ff31d68","title":"ATM Volume cors_0303","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0303","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0304:1e667150","title":"ATM Volume cors_0304","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0304","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0305:7e3ae929","title":"ATM Volume cors_0305","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0305","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0306:51c060f5","title":"ATM Volume cors_0306","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0306","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0307:0b4c38dd","title":"ATM Volume cors_0307","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0307","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0308:e1565c02","title":"ATM Volume cors_0308","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0308","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0309:4d6f3a8d","title":"ATM Volume cors_0309","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0309","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0310:93dcde67","title":"ATM Volume cors_0310","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0310","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0311:bfc9f582","title":"ATM Volume cors_0311","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0311","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0312:4e981332","title":"ATM Volume cors_0312","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0312","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0313:107884d1","title":"ATM Volume cors_0313","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0313","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0314:1cee4556","title":"ATM Volume cors_0314","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0314","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0315:7e88bb29","title":"ATM Volume cors_0315","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0315","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0316:11fa6f22","title":"ATM Volume cors_0316","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0316","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0317:34ac4dea","title":"ATM Volume cors_0317","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0317","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0318:45af758f","title":"ATM Volume cors_0318","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0318","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0319:7c53da5f","title":"ATM Volume cors_0319","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0319","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0320:72b34e4a","title":"ATM Volume cors_0320","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0320","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0321:2595bc9b","title":"ATM Volume cors_0321","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0321","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0322:8974b2fc","title":"ATM Volume cors_0322","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0322","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0323:3e9716a1","title":"ATM Volume cors_0323","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0323","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0324:3c690df9","title":"ATM Volume cors_0324","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0324","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0325:96b9d7ae","title":"ATM Volume cors_0325","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0325","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0326:b7b3cf89","title":"ATM Volume cors_0326","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0326","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0327:de4219f0","title":"ATM Volume cors_0327","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0327","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0328:f60bf538","title":"ATM Volume cors_0328","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0328","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0329:d358c328","title":"ATM Volume cors_0329","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0329","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0330:ec621fab","title":"ATM Volume cors_0330","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0330","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0331:f8833784","title":"ATM Volume cors_0331","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0331","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0332:cab5879a","title":"ATM Volume cors_0332","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0332","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0333:e640c936","title":"ATM Volume cors_0333","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0333","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0334:015da813","title":"ATM Volume cors_0334","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0334","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0335:66adea63","title":"ATM Volume cors_0335","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0335","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0336:84be8311","title":"ATM Volume cors_0336","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0336","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0337:844aa177","title":"ATM Volume cors_0337","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0337","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0338:664faffe","title":"ATM Volume cors_0338","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0338","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0339:df741383","title":"ATM Volume cors_0339","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0339","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0340:5936b832","title":"ATM Volume cors_0340","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0340","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0341:4ca5e586","title":"ATM Volume cors_0341","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0341","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0342:814539cc","title":"ATM Volume cors_0342","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0342","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0343:f0c5d17b","title":"ATM Volume cors_0343","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0343","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0344:e0cab8d1","title":"ATM Volume cors_0344","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0344","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0345:96c5c60a","title":"ATM Volume cors_0345","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0345","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0346:929c8d41","title":"ATM Volume cors_0346","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0346","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0347:c29280f9","title":"ATM Volume cors_0347","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0347","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0348:cffe36ed","title":"ATM Volume cors_0348","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0348","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0349:ba90c6c0","title":"ATM Volume cors_0349","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0349","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0350:2b52b9e1","title":"ATM Volume cors_0350","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0350","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0351:e50f8b3d","title":"ATM Volume cors_0351","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0351","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0352:a69016d4","title":"ATM Volume cors_0352","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0352","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0353:bb3d0945","title":"ATM Volume cors_0353","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0353","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0354:ccaf9fa7","title":"ATM Volume cors_0354","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0354","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0355:8f72c7f5","title":"ATM Volume cors_0355","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0355","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0356:94563ec7","title":"ATM Volume cors_0356","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0356","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0357:541d22c3","title":"ATM Volume cors_0357","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0357","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0358:3fba1c29","title":"ATM Volume cors_0358","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0358","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0359:dd2125c5","title":"ATM Volume cors_0359","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0359","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0360:d6cf881a","title":"ATM Volume cors_0360","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0360","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0361:aa283add","title":"ATM Volume cors_0361","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0361","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0362:609793d3","title":"ATM Volume cors_0362","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0362","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0363:09d5f390","title":"ATM Volume cors_0363","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0363","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0364:a0d78c5f","title":"ATM Volume cors_0364","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0364","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0365:ca849464","title":"ATM Volume cors_0365","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0365","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0366:031cbdc8","title":"ATM Volume cors_0366","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0366","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0367:f3f269d2","title":"ATM Volume cors_0367","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0367","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0368:9effdee9","title":"ATM Volume cors_0368","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0368","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0369:91875839","title":"ATM Volume cors_0369","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0369","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0370:15951fa6","title":"ATM Volume cors_0370","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0370","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0371:0bdab0bb","title":"ATM Volume cors_0371","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0371","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0372:7ff6ce42","title":"ATM Volume cors_0372","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0372","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0373:50814cc0","title":"ATM Volume cors_0373","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0373","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0374:305491ed","title":"ATM Volume cors_0374","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0374","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0375:40e6ccb3","title":"ATM Volume cors_0375","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0375","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0376:b6cb81c7","title":"ATM Volume cors_0376","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0376","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0377:a1790e70","title":"ATM Volume cors_0377","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0377","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0378:888f5ca5","title":"ATM Volume cors_0378","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0378","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0379:24175a85","title":"ATM Volume cors_0379","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0379","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0380:f96788d6","title":"ATM Volume cors_0380","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0380","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0381:7e5fc1c1","title":"ATM Volume cors_0381","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0381","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0382:9cafc2b1","title":"ATM Volume cors_0382","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0382","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0383:e00d6126","title":"ATM Volume cors_0383","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0383","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0384:18b08f42","title":"ATM Volume cors_0384","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0384","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0385:fcb47380","title":"ATM Volume cors_0385","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0385","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0386:1bdbfe1a","title":"ATM Volume cors_0386","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0386","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0387:0c857f48","title":"ATM Volume cors_0387","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0387","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0388:d805d8ff","title":"ATM Volume cors_0388","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0388","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0389:023187c8","title":"ATM Volume cors_0389","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0389","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0390:0f90ffce","title":"ATM Volume cors_0390","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0390","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0391:ec1d0ff0","title":"ATM Volume cors_0391","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0391","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0392:00ccad81","title":"ATM Volume cors_0392","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0392","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0393:e17ccc20","title":"ATM Volume cors_0393","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0393","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0394:8d67b1c5","title":"ATM Volume cors_0394","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0394","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0395:a775fe7d","title":"ATM Volume cors_0395","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0395","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0396:dc3f9016","title":"ATM Volume cors_0396","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0396","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0397:c1671f47","title":"ATM Volume cors_0397","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0397","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0398:04a493f3","title":"ATM Volume cors_0398","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0398","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0399:5348cca2","title":"ATM Volume cors_0399","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0399","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0400:85dfa58e","title":"ATM Volume cors_0400","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0400","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0401:cdd5744d","title":"ATM Volume cors_0401","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0401","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0402:11f2e073","title":"ATM Volume cors_0402","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0402","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0403:364f2809","title":"ATM Volume cors_0403","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0403","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0404:c918c9d0","title":"ATM Volume cors_0404","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0404","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0405:2023a2c2","title":"ATM Volume cors_0405","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0405","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0406:782215fa","title":"ATM Volume cors_0406","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0406","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0407:42f0f24d","title":"ATM Volume cors_0407","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0407","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0408:31da775e","title":"ATM Volume cors_0408","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0408","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0409:8acd25be","title":"ATM Volume cors_0409","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0409","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0410:d9c077a5","title":"ATM Volume cors_0410","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0410","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0411:84acaffc","title":"ATM Volume cors_0411","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0411","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0412:04221a91","title":"ATM Volume cors_0412","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0412","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0413:43d63cfe","title":"ATM Volume cors_0413","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0413","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0414:8e765b8e","title":"ATM Volume cors_0414","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0414","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0415:f4e3dc89","title":"ATM Volume cors_0415","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0415","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0416:21a14a7c","title":"ATM Volume cors_0416","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0416","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0417:3c56671b","title":"ATM Volume cors_0417","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0417","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0418:b9eda26d","title":"ATM Volume cors_0418","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0418","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0419:8b9ca459","title":"ATM Volume cors_0419","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0419","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0420:eecbf4f6","title":"ATM Volume cors_0420","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0420","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.576997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0421:a544550b","title":"ATM Volume cors_0421","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0421","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0422:e24f6573","title":"ATM Volume cors_0422","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0422","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0423:1e3d71c3","title":"ATM Volume cors_0423","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0423","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0424:6c29b29d","title":"ATM Volume cors_0424","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0424","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0425:cb52c200","title":"ATM Volume cors_0425","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0425","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0426:b54d9829","title":"ATM Volume cors_0426","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0426","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0427:fde564e4","title":"ATM Volume cors_0427","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0427","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0428:cf44da23","title":"ATM Volume cors_0428","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0428","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0429:89c6b811","title":"ATM Volume cors_0429","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0429","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0430:d24f3aa5","title":"ATM Volume cors_0430","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0430","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0431:9c5d8b33","title":"ATM Volume cors_0431","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0431","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0432:f553fbe5","title":"ATM Volume cors_0432","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0432","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0433:0dfec577","title":"ATM Volume cors_0433","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0433","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0434:b1ebd50b","title":"ATM Volume cors_0434","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0434","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0435:e2530cd2","title":"ATM Volume cors_0435","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0435","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0436:3b562013","title":"ATM Volume cors_0436","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0436","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0437:f4ef465d","title":"ATM Volume cors_0437","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0437","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0438:f996fdf4","title":"ATM Volume cors_0438","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0438","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0439:622503b6","title":"ATM Volume cors_0439","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0439","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0440:fc39b3ff","title":"ATM Volume cors_0440","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0440","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0441:0daf9dd3","title":"ATM Volume cors_0441","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0441","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0442:dd48556f","title":"ATM Volume cors_0442","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0442","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0443:e56d873d","title":"ATM Volume cors_0443","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0443","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0444:f9b5cf46","title":"ATM Volume cors_0444","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0444","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0445:13f44306","title":"ATM Volume cors_0445","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0445","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0446:bac7a50d","title":"ATM Volume cors_0446","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0446","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0447:92627180","title":"ATM Volume cors_0447","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0447","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0448:b2b7f607","title":"ATM Volume cors_0448","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0448","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0449:df135332","title":"ATM Volume cors_0449","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0449","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0450:db91f4df","title":"ATM Volume cors_0450","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0450","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0451:192e8337","title":"ATM Volume cors_0451","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0451","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0452:1b880858","title":"ATM Volume cors_0452","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0452","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0453:ea04d410","title":"ATM Volume cors_0453","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0453","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0454:4f7c42b3","title":"ATM Volume cors_0454","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0454","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0455:ad6ad2e7","title":"ATM Volume cors_0455","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0455","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0456:4445b9c3","title":"ATM Volume cors_0456","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0456","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0457:25774504","title":"ATM Volume cors_0457","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0457","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0458:7333886d","title":"ATM Volume cors_0458","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0458","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0459:f0933e6d","title":"ATM Volume cors_0459","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0459","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0460:b8aa2dcd","title":"ATM Volume cors_0460","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0460","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0461:1887cde0","title":"ATM Volume cors_0461","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0461","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0462:28327931","title":"ATM Volume cors_0462","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0462","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0463:56869acf","title":"ATM Volume cors_0463","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0463","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0464:c8fb85d7","title":"ATM Volume cors_0464","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0464","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0465:0617c72f","title":"ATM Volume cors_0465","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0465","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0466:9400c07b","title":"ATM Volume cors_0466","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0466","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0467:e245d418","title":"ATM Volume cors_0467","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0467","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0468:2bb40a3c","title":"ATM Volume cors_0468","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0468","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0469:8f3da817","title":"ATM Volume cors_0469","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0469","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0470:bb6d1a0c","title":"ATM Volume cors_0470","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0470","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0471:53d03482","title":"ATM Volume cors_0471","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0471","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0472:5436b16b","title":"ATM Volume cors_0472","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0472","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0473:cc1eb875","title":"ATM Volume cors_0473","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0473","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0474:7d4b7561","title":"ATM Volume cors_0474","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0474","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0475:6d7dd717","title":"ATM Volume cors_0475","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0475","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0476:4ca703a9","title":"ATM Volume cors_0476","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0476","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0477:3d3379a4","title":"ATM Volume cors_0477","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0477","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0478:d3eea2ce","title":"ATM Volume cors_0478","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0478","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0479:41cb19e5","title":"ATM Volume cors_0479","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0479","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0480:8d097291","title":"ATM Volume cors_0480","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0480","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0481:20304308","title":"ATM Volume cors_0481","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0481","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0482:f65094b1","title":"ATM Volume cors_0482","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0482","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0483:c288d3a6","title":"ATM Volume cors_0483","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0483","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0484:1aaf6e3c","title":"ATM Volume cors_0484","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0484","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0485:017e5ad6","title":"ATM Volume cors_0485","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0485","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0486:0b91bb16","title":"ATM Volume cors_0486","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0486","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0487:5defba48","title":"ATM Volume cors_0487","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0487","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0488:f1ad7d28","title":"ATM Volume cors_0488","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0488","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0489:23dd0ff7","title":"ATM Volume cors_0489","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0489","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0490:952f97d8","title":"ATM Volume cors_0490","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0490","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0491:00b86baf","title":"ATM Volume cors_0491","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0491","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0492:b590d948","title":"ATM Volume cors_0492","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0492","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0493:e75395e9","title":"ATM Volume cors_0493","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0493","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0494:00454883","title":"ATM Volume cors_0494","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0494","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0495:97434be7","title":"ATM Volume cors_0495","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0495","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0496:5aed92a9","title":"ATM Volume cors_0496","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0496","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0497:44849f74","title":"ATM Volume cors_0497","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0497","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0498:9c48ce81","title":"ATM Volume cors_0498","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0498","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0499:dc541e8b","title":"ATM Volume cors_0499","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0499","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0500:07859c53","title":"ATM Volume cors_0500","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0500","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0501:97e1d291","title":"ATM Volume cors_0501","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0501","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0502:a7d81ce8","title":"ATM Volume cors_0502","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0502","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0503:57f51888","title":"ATM Volume cors_0503","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0503","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0504:02074254","title":"ATM Volume cors_0504","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0504","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0505:536036cd","title":"ATM Volume cors_0505","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0505","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0506:688b7df9","title":"ATM Volume cors_0506","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0506","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0507:ea93fbdc","title":"ATM Volume cors_0507","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0507","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0508:93cb7509","title":"ATM Volume cors_0508","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0508","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0509:fbb63d94","title":"ATM Volume cors_0509","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0509","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0510:6748df58","title":"ATM Volume cors_0510","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0510","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0511:ffd1b729","title":"ATM Volume cors_0511","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0511","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0512:0b1c8329","title":"ATM Volume cors_0512","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0512","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0513:2e3a4139","title":"ATM Volume cors_0513","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0513","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0514:f2caa2e6","title":"ATM Volume cors_0514","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0514","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0515:8402f44d","title":"ATM Volume cors_0515","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0515","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0516:cd16abe3","title":"ATM Volume cors_0516","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0516","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0517:89b7c346","title":"ATM Volume cors_0517","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0517","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0518:cf7c9478","title":"ATM Volume cors_0518","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0518","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0519:40e83ee8","title":"ATM Volume cors_0519","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0519","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0520:04720152","title":"ATM Volume cors_0520","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0520","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0521:5a47a64a","title":"ATM Volume cors_0521","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0521","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0522:18a57707","title":"ATM Volume cors_0522","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0522","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0523:b5eb6f47","title":"ATM Volume cors_0523","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0523","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0524:43e4e345","title":"ATM Volume cors_0524","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0524","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0525:80c87be2","title":"ATM Volume cors_0525","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0525","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0526:89500845","title":"ATM Volume cors_0526","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0526","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0527:e17fb6b1","title":"ATM Volume cors_0527","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0527","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577860","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0528:4b1898b4","title":"ATM Volume cors_0528","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0528","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0529:b8205fa0","title":"ATM Volume cors_0529","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0529","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0530:cc7be3d5","title":"ATM Volume cors_0530","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0530","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0531:da211697","title":"ATM Volume cors_0531","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0531","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0532:0e385224","title":"ATM Volume cors_0532","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0532","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0533:06a00039","title":"ATM Volume cors_0533","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0533","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0534:dde87774","title":"ATM Volume cors_0534","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0534","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0535:59cf7488","title":"ATM Volume cors_0535","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0535","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0536:72827d8e","title":"ATM Volume cors_0536","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0536","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0537:4c0123be","title":"ATM Volume cors_0537","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0537","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0538:c60ed63e","title":"ATM Volume cors_0538","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0538","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0539:55d0aad5","title":"ATM Volume cors_0539","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0539","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0540:dbdff8a9","title":"ATM Volume cors_0540","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0540","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0541:d0b389b8","title":"ATM Volume cors_0541","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0541","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0542:62f88b01","title":"ATM Volume cors_0542","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0542","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0543:1abb30e2","title":"ATM Volume cors_0543","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0543","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0544:b6429f85","title":"ATM Volume cors_0544","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0544","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.577997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0545:f61407d2","title":"ATM Volume cors_0545","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0545","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0546:73a838b8","title":"ATM Volume cors_0546","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0546","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0547:1093032f","title":"ATM Volume cors_0547","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0547","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0548:e05102ed","title":"ATM Volume cors_0548","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0548","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0549:26e5a12d","title":"ATM Volume cors_0549","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0549","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0550:8fe90f00","title":"ATM Volume cors_0550","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0550","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0551:d2695fb1","title":"ATM Volume cors_0551","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0551","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0552:44885714","title":"ATM Volume cors_0552","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0552","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578071","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0553:d13a8ccb","title":"ATM Volume cors_0553","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0553","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0554:5726ce39","title":"ATM Volume cors_0554","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0554","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0555:8c15e7e0","title":"ATM Volume cors_0555","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0555","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0556:29efb19d","title":"ATM Volume cors_0556","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0556","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0557:87b6fe18","title":"ATM Volume cors_0557","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0557","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0558:71559488","title":"ATM Volume cors_0558","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0558","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0559:98b69996","title":"ATM Volume cors_0559","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0559","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0560:179a140b","title":"ATM Volume cors_0560","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0560","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0561:bb81fc48","title":"ATM Volume cors_0561","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0561","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0562:2c3bda79","title":"ATM Volume cors_0562","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0562","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0563:d582e721","title":"ATM Volume cors_0563","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0563","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0564:627b0362","title":"ATM Volume cors_0564","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0564","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0565:37806f1f","title":"ATM Volume cors_0565","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0565","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0566:5c215e96","title":"ATM Volume cors_0566","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0566","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0567:800be58d","title":"ATM Volume cors_0567","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0567","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0568:3a10b64d","title":"ATM Volume cors_0568","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0568","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0569:60e113e1","title":"ATM Volume cors_0569","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0569","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0570:97689531","title":"ATM Volume cors_0570","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0570","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0571:49247665","title":"ATM Volume cors_0571","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0571","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0572:19860be6","title":"ATM Volume cors_0572","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0572","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0573:a19ebf38","title":"ATM Volume cors_0573","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0573","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0574:a92f2b94","title":"ATM Volume cors_0574","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0574","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0575:b1e9ee4a","title":"ATM Volume cors_0575","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0575","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0576:253f125c","title":"ATM Volume cors_0576","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0576","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0577:039d8d2a","title":"ATM Volume cors_0577","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0577","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0578:7489009c","title":"ATM Volume cors_0578","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0578","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0579:9ae196b7","title":"ATM Volume cors_0579","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0579","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0580:5b4cb997","title":"ATM Volume cors_0580","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0580","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0581:c36cd019","title":"ATM Volume cors_0581","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0581","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0582:4d4c46e4","title":"ATM Volume cors_0582","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0582","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0583:f6d6a2b6","title":"ATM Volume cors_0583","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0583","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0584:021b9a5d","title":"ATM Volume cors_0584","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0584","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0585:04dc9dda","title":"ATM Volume cors_0585","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0585","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0586:c5cf62a4","title":"ATM Volume cors_0586","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0586","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0587:68fdb50b","title":"ATM Volume cors_0587","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0587","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0588:9ec3782e","title":"ATM Volume cors_0588","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0588","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578383","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0589:310b1ea6","title":"ATM Volume cors_0589","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0589","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0590:581333ac","title":"ATM Volume cors_0590","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0590","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0591:46e63a45","title":"ATM Volume cors_0591","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0591","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0592:1cacf146","title":"ATM Volume cors_0592","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0592","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0593:26e3daac","title":"ATM Volume cors_0593","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0593","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0594:943bffdc","title":"ATM Volume cors_0594","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0594","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0595:894f5e9d","title":"ATM Volume cors_0595","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0595","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0596:6ed1b41f","title":"ATM Volume cors_0596","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0596","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0597:3ac82769","title":"ATM Volume cors_0597","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0597","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0598:0351a20a","title":"ATM Volume cors_0598","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0598","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0599:2359b740","title":"ATM Volume cors_0599","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0599","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0600:a4f0666a","title":"ATM Volume cors_0600","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0600","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0601:eddf09fe","title":"ATM Volume cors_0601","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0601","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0602:32dee1c5","title":"ATM Volume cors_0602","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0602","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0603:dede2e8b","title":"ATM Volume cors_0603","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0603","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0604:d77a6e45","title":"ATM Volume cors_0604","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0604","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0605:a2b5dd38","title":"ATM Volume cors_0605","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0605","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0606:4e63ecf2","title":"ATM Volume cors_0606","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0606","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0607:a0b0a0f7","title":"ATM Volume cors_0607","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0607","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0608:e579f3b4","title":"ATM Volume cors_0608","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0608","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0609:3d0027e0","title":"ATM Volume cors_0609","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0609","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0610:c438a70f","title":"ATM Volume cors_0610","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0610","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0611:ca182b1a","title":"ATM Volume cors_0611","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0611","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0612:e5a65450","title":"ATM Volume cors_0612","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0612","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0613:17b29565","title":"ATM Volume cors_0613","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0613","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0614:7a19abf3","title":"ATM Volume cors_0614","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0614","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0615:34e570b5","title":"ATM Volume cors_0615","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0615","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0616:6fe45b69","title":"ATM Volume cors_0616","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0616","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0617:b692a82d","title":"ATM Volume cors_0617","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0617","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0618:835b2418","title":"ATM Volume cors_0618","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0618","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0619:bce04cfe","title":"ATM Volume cors_0619","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0619","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0620:444f06c6","title":"ATM Volume cors_0620","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0620","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0621:446f1c2b","title":"ATM Volume cors_0621","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0621","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0622:e3247bd2","title":"ATM Volume cors_0622","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0622","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0623:881c5e3c","title":"ATM Volume cors_0623","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0623","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0624:c321093c","title":"ATM Volume cors_0624","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0624","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0625:41a2318b","title":"ATM Volume cors_0625","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0625","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0626:adeb5bb7","title":"ATM Volume cors_0626","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0626","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0627:6c99fc24","title":"ATM Volume cors_0627","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0627","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0628:66c56cfc","title":"ATM Volume cors_0628","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0628","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0629:c5451e33","title":"ATM Volume cors_0629","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0629","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0630:964e0cc2","title":"ATM Volume cors_0630","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0630","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0631:8a3b0e00","title":"ATM Volume cors_0631","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0631","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0632:f7260ef9","title":"ATM Volume cors_0632","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0632","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0633:a462bc08","title":"ATM Volume cors_0633","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0633","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0634:e0414ccc","title":"ATM Volume cors_0634","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0634","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0635:28f8662a","title":"ATM Volume cors_0635","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0635","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0636:4c1d7564","title":"ATM Volume cors_0636","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0636","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0637:ac88eb6e","title":"ATM Volume cors_0637","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0637","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0638:6ecf01e1","title":"ATM Volume cors_0638","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0638","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0639:14206dba","title":"ATM Volume cors_0639","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0639","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0640:902b6501","title":"ATM Volume cors_0640","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0640","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0641:6e5ae5bd","title":"ATM Volume cors_0641","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0641","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0642:0ba32d25","title":"ATM Volume cors_0642","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0642","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0643:c142c8d7","title":"ATM Volume cors_0643","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0643","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0644:31e9ae89","title":"ATM Volume cors_0644","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0644","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0645:9dd2faf3","title":"ATM Volume cors_0645","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0645","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0646:27bbb176","title":"ATM Volume cors_0646","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0646","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0647:30b94422","title":"ATM Volume cors_0647","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0647","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0648:4349b2d1","title":"ATM Volume cors_0648","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0648","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0649:323799a1","title":"ATM Volume cors_0649","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0649","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0650:58a90d0e","title":"ATM Volume cors_0650","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0650","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0651:c626a6ff","title":"ATM Volume cors_0651","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0651","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0652:84dc4855","title":"ATM Volume cors_0652","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0652","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0653:30f44332","title":"ATM Volume cors_0653","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0653","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0654:3e9c1b08","title":"ATM Volume cors_0654","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0654","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0655:a9e9e286","title":"ATM Volume cors_0655","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0655","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0656:a6da17ab","title":"ATM Volume cors_0656","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0656","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0657:097bb01b","title":"ATM Volume cors_0657","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0657","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0658:f1a48981","title":"ATM Volume cors_0658","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0658","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0659:437cc67c","title":"ATM Volume cors_0659","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0659","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0660:414fc66b","title":"ATM Volume cors_0660","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0660","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0661:9bfe648f","title":"ATM Volume cors_0661","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0661","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0662:dcf8c49d","title":"ATM Volume cors_0662","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0662","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0663:4ab50701","title":"ATM Volume cors_0663","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0663","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0664:b5758741","title":"ATM Volume cors_0664","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0664","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.578998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0665:ddbcdb3b","title":"ATM Volume cors_0665","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0665","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0666:44c101fa","title":"ATM Volume cors_0666","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0666","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0667:32ff3c6f","title":"ATM Volume cors_0667","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0667","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0668:c5b59914","title":"ATM Volume cors_0668","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0668","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0669:b6106b87","title":"ATM Volume cors_0669","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0669","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0670:808debf1","title":"ATM Volume cors_0670","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0670","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0671:15c7e5ee","title":"ATM Volume cors_0671","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0671","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0672:478a9256","title":"ATM Volume cors_0672","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0672","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0673:572c6cbe","title":"ATM Volume cors_0673","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0673","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0674:fe106632","title":"ATM Volume cors_0674","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0674","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0675:f96f196c","title":"ATM Volume cors_0675","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0675","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0676:ee741e0d","title":"ATM Volume cors_0676","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0676","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0677:c027f1e6","title":"ATM Volume cors_0677","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0677","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0678:3f68e880","title":"ATM Volume cors_0678","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0678","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0679:0d279954","title":"ATM Volume cors_0679","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0679","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0680:ca0f50f1","title":"ATM Volume cors_0680","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0680","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0681:7920d2a5","title":"ATM Volume cors_0681","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0681","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0682:c9b21d64","title":"ATM Volume cors_0682","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0682","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0683:133bf01a","title":"ATM Volume cors_0683","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0683","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0684:2d3c6fa4","title":"ATM Volume cors_0684","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0684","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0685:3cd96639","title":"ATM Volume cors_0685","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0685","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0686:483ba459","title":"ATM Volume cors_0686","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0686","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0687:8d6ea2b2","title":"ATM Volume cors_0687","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0687","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0688:30b6c45a","title":"ATM Volume cors_0688","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0688","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0689:996bfd90","title":"ATM Volume cors_0689","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0689","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0690:8dfc2d70","title":"ATM Volume cors_0690","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0690","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0691:cb391fce","title":"ATM Volume cors_0691","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0691","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0692:919273c8","title":"ATM Volume cors_0692","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0692","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0693:6e39dec2","title":"ATM Volume cors_0693","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0693","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0694:93a8b13c","title":"ATM Volume cors_0694","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0694","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0695:ec7b2a64","title":"ATM Volume cors_0695","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0695","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0696:6232a6c8","title":"ATM Volume cors_0696","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0696","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0697:77bfe330","title":"ATM Volume cors_0697","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0697","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0698:0668e1f4","title":"ATM Volume cors_0698","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0698","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0699:80768fe0","title":"ATM Volume cors_0699","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0699","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0700:a9b27ceb","title":"ATM Volume cors_0700","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0700","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0701:522bf53e","title":"ATM Volume cors_0701","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0701","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0702:d96ac49b","title":"ATM Volume cors_0702","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0702","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0703:34b54659","title":"ATM Volume cors_0703","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0703","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0704:67a0b582","title":"ATM Volume cors_0704","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0704","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0705:ea2f40da","title":"ATM Volume cors_0705","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0705","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0706:636ca0da","title":"ATM Volume cors_0706","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0706","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0707:9de71f44","title":"ATM Volume cors_0707","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0707","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0708:9c3df470","title":"ATM Volume cors_0708","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0708","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0709:f41c5b97","title":"ATM Volume cors_0709","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0709","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0710:c12099bb","title":"ATM Volume cors_0710","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0710","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0711:b0cc5809","title":"ATM Volume cors_0711","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0711","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0712:b13f1247","title":"ATM Volume cors_0712","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0712","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0713:23764367","title":"ATM Volume cors_0713","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0713","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0714:8c737230","title":"ATM Volume cors_0714","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0714","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0715:1198fb24","title":"ATM Volume cors_0715","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0715","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0716:204306bf","title":"ATM Volume cors_0716","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0716","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0717:7cccf83a","title":"ATM Volume cors_0717","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0717","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0718:5a8178a7","title":"ATM Volume cors_0718","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0718","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0719:5f68e526","title":"ATM Volume cors_0719","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0719","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0720:1728cad3","title":"ATM Volume cors_0720","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0720","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0721:4bf42291","title":"ATM Volume cors_0721","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0721","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0722:def7fe5b","title":"ATM Volume cors_0722","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0722","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0723:18643b5d","title":"ATM Volume cors_0723","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0723","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0724:94ae0ce9","title":"ATM Volume cors_0724","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0724","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0725:82a1ede6","title":"ATM Volume cors_0725","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0725","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0726:114716c5","title":"ATM Volume cors_0726","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0726","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0727:7d2d1b23","title":"ATM Volume cors_0727","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0727","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0728:b0aa05b7","title":"ATM Volume cors_0728","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0728","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0729:8ae32004","title":"ATM Volume cors_0729","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0729","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0730:6fe59de9","title":"ATM Volume cors_0730","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0730","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0731:7aee7354","title":"ATM Volume cors_0731","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0731","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0732:367f2a27","title":"ATM Volume cors_0732","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0732","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0733:17fc6d3b","title":"ATM Volume cors_0733","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0733","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0734:ef59c9f2","title":"ATM Volume cors_0734","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0734","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0735:4f1da8ff","title":"ATM Volume cors_0735","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0735","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0736:b4d709ec","title":"ATM Volume cors_0736","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0736","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0737:6c240510","title":"ATM Volume cors_0737","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0737","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0738:1421b987","title":"ATM Volume cors_0738","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0738","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0739:f3057399","title":"ATM Volume cors_0739","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0739","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0740:b0aeaeaa","title":"ATM Volume cors_0740","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0740","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0741:7aefd4f5","title":"ATM Volume cors_0741","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0741","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0742:c8d9bd69","title":"ATM Volume cors_0742","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0742","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0743:23ec8269","title":"ATM Volume cors_0743","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0743","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0744:88f3c138","title":"ATM Volume cors_0744","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0744","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0745:1f1401b3","title":"ATM Volume cors_0745","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0745","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0746:bbb99503","title":"ATM Volume cors_0746","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0746","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0747:1610c883","title":"ATM Volume cors_0747","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0747","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0748:4cbf4bcd","title":"ATM Volume cors_0748","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0748","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0749:a616ec66","title":"ATM Volume cors_0749","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0749","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0750:be2c72ee","title":"ATM Volume cors_0750","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0750","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0751:f7db7268","title":"ATM Volume cors_0751","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0751","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0752:377571f7","title":"ATM Volume cors_0752","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0752","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0753:972ba8b9","title":"ATM Volume cors_0753","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0753","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0754:c4afdef4","title":"ATM Volume cors_0754","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0754","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0755:2ed8b84e","title":"ATM Volume cors_0755","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0755","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0756:cfbf9d13","title":"ATM Volume cors_0756","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0756","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0757:681f595c","title":"ATM Volume cors_0757","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0757","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0758:923b9379","title":"ATM Volume cors_0758","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0758","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0759:e761cf0f","title":"ATM Volume cors_0759","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0759","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0760:63433258","title":"ATM Volume cors_0760","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0760","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0761:6be15973","title":"ATM Volume cors_0761","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0761","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0762:81a1b342","title":"ATM Volume cors_0762","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0762","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0763:c420cbcd","title":"ATM Volume cors_0763","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0763","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0764:c6d08d8d","title":"ATM Volume cors_0764","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0764","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0765:217cd7f7","title":"ATM Volume cors_0765","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0765","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0766:24242f9c","title":"ATM Volume cors_0766","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0766","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0767:fa4cfba4","title":"ATM Volume cors_0767","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0767","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0768:2775f7df","title":"ATM Volume cors_0768","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0768","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0769:2ff34446","title":"ATM Volume cors_0769","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0769","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0770:c13359f3","title":"ATM Volume cors_0770","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0770","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0771:f794aba2","title":"ATM Volume cors_0771","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0771","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0772:9f425110","title":"ATM Volume cors_0772","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0772","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0773:487b36f5","title":"ATM Volume cors_0773","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0773","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0774:23cb3aaa","title":"ATM Volume cors_0774","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0774","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0775:e83feba4","title":"ATM Volume cors_0775","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0775","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0776:0168c39a","title":"ATM Volume cors_0776","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0776","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0777:e069ba08","title":"ATM Volume cors_0777","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0777","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0778:1a15b050","title":"ATM Volume cors_0778","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0778","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0779:3e59dc82","title":"ATM Volume cors_0779","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0779","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0780:59e692d4","title":"ATM Volume cors_0780","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0780","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0781:3f38ca2b","title":"ATM Volume cors_0781","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0781","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0782:c4010ada","title":"ATM Volume cors_0782","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0782","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0783:bd1cd344","title":"ATM Volume cors_0783","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0783","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0784:140f0d3b","title":"ATM Volume cors_0784","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0784","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0785:b5f69bb3","title":"ATM Volume cors_0785","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0785","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.579991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0786:575234ad","title":"ATM Volume cors_0786","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0786","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0787:680f4767","title":"ATM Volume cors_0787","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0787","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0788:aca6eea3","title":"ATM Volume cors_0788","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0788","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0789:ad339580","title":"ATM Volume cors_0789","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0789","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0790:63edcaca","title":"ATM Volume cors_0790","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0790","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0791:f2e9bf3f","title":"ATM Volume cors_0791","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0791","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0792:6775e943","title":"ATM Volume cors_0792","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0792","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0793:996176be","title":"ATM Volume cors_0793","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0793","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0794:e9252f23","title":"ATM Volume cors_0794","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0794","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0795:d326a307","title":"ATM Volume cors_0795","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0795","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0796:9144aeae","title":"ATM Volume cors_0796","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0796","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0797:21a4e16d","title":"ATM Volume cors_0797","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0797","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0798:d2842a9c","title":"ATM Volume cors_0798","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0798","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0799:392a5436","title":"ATM Volume cors_0799","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0799","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0800:96e70a6c","title":"ATM Volume cors_0800","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0800","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0801:d217b839","title":"ATM Volume cors_0801","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0801","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0802:990de58c","title":"ATM Volume cors_0802","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0802","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0803:0620788e","title":"ATM Volume cors_0803","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0803","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0804:6f99e4d9","title":"ATM Volume cors_0804","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0804","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0805:f3d1bcdf","title":"ATM Volume cors_0805","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0805","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0806:453c78a9","title":"ATM Volume cors_0806","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0806","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0807:76ef1c6e","title":"ATM Volume cors_0807","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0807","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:cors_0808:4f44c0ed","title":"ATM Volume cors_0808","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0808","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0003:2145b184","title":"ATM Volume couvis_0003","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0004:a071bbfd","title":"ATM Volume couvis_0004","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0005:1b9f389c","title":"ATM Volume couvis_0005","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0006:3702974b","title":"ATM Volume couvis_0006","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0007:5ee9d32c","title":"ATM Volume couvis_0007","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0008:d5038070","title":"ATM Volume couvis_0008","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0009:2ef1b4f6","title":"ATM Volume couvis_0009","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0010:1a2901d8","title":"ATM Volume couvis_0010","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0011:f25a44cf","title":"ATM Volume couvis_0011","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0012:9e6cac87","title":"ATM Volume couvis_0012","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0013:7e75f163","title":"ATM Volume couvis_0013","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0014:19233c1d","title":"ATM Volume couvis_0014","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0015:d49a8790","title":"ATM Volume couvis_0015","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0016:7ebfec7d","title":"ATM Volume couvis_0016","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0017:486aecd4","title":"ATM Volume couvis_0017","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0018:e9c45963","title":"ATM Volume couvis_0018","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0019:da5d1db1","title":"ATM Volume couvis_0019","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0019","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0020:e88812ef","title":"ATM Volume couvis_0020","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0021:9fa918c8","title":"ATM Volume couvis_0021","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0022:a1f32a2f","title":"ATM Volume couvis_0022","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0022","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0023:6a5c3695","title":"ATM Volume couvis_0023","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0024:9eb9f3fa","title":"ATM Volume couvis_0024","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0025:2bc41ba9","title":"ATM Volume couvis_0025","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0026:cb61067c","title":"ATM Volume couvis_0026","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0027:8e1a6b4a","title":"ATM Volume couvis_0027","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0028:2d124af9","title":"ATM Volume couvis_0028","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0029:a2622a4b","title":"ATM Volume couvis_0029","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0030:0b07ff88","title":"ATM Volume couvis_0030","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0031:3121b780","title":"ATM Volume couvis_0031","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0032:7e89df7f","title":"ATM Volume couvis_0032","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0033:70120d40","title":"ATM Volume couvis_0033","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0034:717fef02","title":"ATM Volume couvis_0034","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0034","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0035:156830c8","title":"ATM Volume couvis_0035","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0035","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580458","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0036:b5c0da68","title":"ATM Volume couvis_0036","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0037:b9e9046e","title":"ATM Volume couvis_0037","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0038:5c800fd0","title":"ATM Volume couvis_0038","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0039:94087c39","title":"ATM Volume couvis_0039","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0040:291ac75e","title":"ATM Volume couvis_0040","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0041:a4a165d5","title":"ATM Volume couvis_0041","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0042:6f14df9d","title":"ATM Volume couvis_0042","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0043:0fef5a41","title":"ATM Volume couvis_0043","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0044:d45c625f","title":"ATM Volume couvis_0044","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0045:248b436a","title":"ATM Volume couvis_0045","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0046:9a536af9","title":"ATM Volume couvis_0046","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0047:2439a452","title":"ATM Volume couvis_0047","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0048:eefd07e3","title":"ATM Volume couvis_0048","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0049:7d7ef331","title":"ATM Volume couvis_0049","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0050:377dd213","title":"ATM Volume couvis_0050","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0051:40589c3b","title":"ATM Volume couvis_0051","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0052:d3494041","title":"ATM Volume couvis_0052","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0053:8908f6a7","title":"ATM Volume couvis_0053","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0054:e6db74f7","title":"ATM Volume couvis_0054","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0055:1ec78c7f","title":"ATM Volume couvis_0055","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0056:e2ff5d7f","title":"ATM Volume couvis_0056","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0057:0b7d1d7d","title":"ATM Volume couvis_0057","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0058:48eea4c8","title":"ATM Volume couvis_0058","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0059:14619c3b","title":"ATM Volume couvis_0059","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:couvis_0060:400d70bd","title":"ATM Volume couvis_0060","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpacp_0001:7e1a7c88","title":"ATM Volume hpacp_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpacp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpdisr_0001:8d96bbe9","title":"ATM Volume hpdisr_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdisr_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpdtwg_0001:a625c617","title":"ATM Volume hpdtwg_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdtwg_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpdwe_0001:16d84dfd","title":"ATM Volume hpdwe_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdwe_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpgcms_0001:efd470cb","title":"ATM Volume hpgcms_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpgcms_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580709","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hphasi_0001:86396454","title":"ATM Volume hphasi_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphasi_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hphk_0001:e8356c24","title":"ATM Volume hphk_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphk_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:hpssp_0001:d3c091cb","title":"ATM Volume hpssp_0001","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpssp_0001","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2207:6784fcf1","title":"ATM Volume vg_2207","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2207","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2208:d82f23a4","title":"ATM Volume vg_2208","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2208","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2209:15538de2","title":"ATM Volume vg_2209","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2209","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2210:d3627025","title":"ATM Volume vg_2210","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2210","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2211:1de16e36","title":"ATM Volume vg_2211","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2211","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2212:5e0cfeb6","title":"ATM Volume vg_2212","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2212","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2213:815c35b8","title":"ATM Volume vg_2213","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2213","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2214:3c33f17f","title":"ATM Volume vg_2214","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2214","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2215:9f27bb67","title":"ATM Volume vg_2215","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2215","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2216:f9e0fa58","title":"ATM Volume vg_2216","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2216","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"atm:vg_2499:8141e026","title":"ATM Volume vg_2499","description":null,"node":"atm","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2499","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm","scraped_at":"2026-02-02T21:41:28.580827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:Huygens","title":"Huygens (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:29.262068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:InSight","title":"Insight (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":["InSight"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:29.674346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex::1.0","title":"InSight Vortex Data","description":"InSight Vortex data for dust devil detections","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","Insight","Insight","APSS PS","APSS TWINS","SEIS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/bundle_insight_vortex.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:30.668348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:context::1.0","title":"InSight Vortex Data Context Collection","description":"InSight Vortex data for dust devil detections Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/collection_insight_vortex_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:31.674019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:data_seis::1.0","title":"InSight Vortex SEIS Data Collection","description":"InSight SEIS data for dust devil detections. Data are additionally archived on the IPSL InSight archive: https://data.ipsl.fr/catalog/srv/eng/catalog.search#/metadata/2ddaba56-cf61-4d5b-83b7-e4a079ed836b","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["SEIS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-12-12","stop_date":"2020-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/collection_insight_vortex_seis_data_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:32.684839","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:data_vortex::1.0","title":"InSight Vortex Data Collection","description":"InSight Vortex data for dust devil detections","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-12-12","stop_date":"2020-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/collection_insight_vortex_data_catalog_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:33.685808","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:xml_schema::1.0","title":"InSight Vortex Data Schema Collection","description":"InSight Vortex data for dust devil detections Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/collection_insight_vortex_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:34.685081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:LADEE","title":"Ladee (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:35.182875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:MAVEN","title":"Maven (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":["MAVEN"],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:35.699010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:Mars2020","title":"Mars2020 (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":[],"targets":["Mars"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:36.183041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:PHX","title":"Phx (PDS4)","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/","download_url":null,"label_url":null,"source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:36.685073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe::1.0","title":"Cassini Radio Science Gravitational Wave Experiment (GWE) Raw Data Bundle","description":"This bundle contains raw radio science data acquired during the Cassini\n Gravitational Wave Experiment (GWE). The primary data in this bundle are\n Radio Science Receiver (RSR) files, Orbit Data Files (ODFs), Tracking and\n Navigation Files (TNFs), and Archival Tracking Data Files (ATDFs or TDFs).\n The primary data files are accompanied by supplementary data files. These\n include 0158-Monitor (158) files, MON-5-15 (515) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n LOG files, Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n Also included are UltraStable Oscillator (USO), High-Gain Antenna (HGA), \n Boresight calibration (BORESIGHT), Leap Second (LSK), and Clock Conversion \n (TSC) files. The bundle is a migration of data from the original PDS3 archive \n with minor improvements and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/bundle_gwe.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:37.734628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.boresight::1.0","title":"Cassini High-Gain Antenna Boresight Calibration File","description":"The BORESIGHT calibration collection includes one product which describe the results of four boresight\n calibrations conducted during the early years of the Cassini mission\n (between October 2001 and May 2004). The spacecraft high-gain antenna \n was aimed toward Earth, then slightly offset in a raster pattern that \n allowed determination of the boresight vector in fixed-body spacecraft \n coordinates.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-boresight/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-boresight/collection_gwe_boresight.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:38.784407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.ckf::1.0","title":"Cassini Radio Science GWE SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-20","stop_date":"2003-12-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-ckf/collection_gwe_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:39.750910","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.eop::1.0","title":"Cassini Radio Science GWE EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science \n observations during Gravitational Wave Experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-05-12","stop_date":"2004-02-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-eop/collection_gwe_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:40.691291","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.hga::1.0","title":"Cassini High-Gain Antenna Calibration Collection","description":"The High-Gain Antenna Calibration collection includes one product which describes the results of HGA\n calibrations conducted during the Cassini mission. It is the concatenation\n of three Calibration Reports with publication dates between May 2004 and\n July 2018. No report has any content other than an acknowledgement that\n the HGA Calibration Report is unavailable. Basic parameters describing\n the HGA have been imported from Kliore et al. (2004).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-hga/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-hga/collection_gwe_hga.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:41.700950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.ion::1.0","title":"Cassini Radio Science GWE Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-12-01","stop_date":"2003-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-ion/collection_gwe_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:42.703958","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.lsk::1.0","title":"Cassini SPICE Leap Second Kernel Collection","description":"The collection of SPICE leap second kernels created by NAIF.\n This collection includes a single product which covers the entire Cassini mission.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"1972-01-01","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-lsk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-lsk/collection_gwe_lsk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:43.699973","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.spk::1.0","title":"Cassini Radio Science GWE SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science GWE \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-spk/collection_gwe_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:44.706810","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.tro::1.0","title":"Cassini Radio Science GWE Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-12-01","stop_date":"2003-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-tro/collection_gwe_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:45.712796","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.tsc::1.0","title":"Cassini SPICE Clock Conversion Kernel Collection","description":"The collection of Cassini SPICE Clock Conversion products created by NAIF, JPL.\n The collection includes a single product which covers the entire Cassini mission.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Cassini"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"1980-01-01","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-tsc/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-tsc/collection_gwe_tsc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:46.711728","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:calib.uso::1.0","title":"Cassini UltraStable Oscillator Calibration Collection","description":"This UltraStable Oscillator calibration collection contains a single product \n which describes the results of \n calibrations conducted during the Cassini mission to estimate the\n frequency of the onboard oscillator that controlled one-way transmissions\n during radio science observations. The product includes equivalent S-band, \n X-band, and Ka-band frequencies and standard deviations.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-uso/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/calib-uso/collection_gwe_uso.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:47.714778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:context::1.0","title":"Cassini Radio Science GWE Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Gravitational Wave Experiment raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Earth","Solar System","Co","Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/context/collection_gwe_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:48.736103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.158::1.0","title":"Cassini Radio Science GWE 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss25 34M","DSS-25 34-m Radio Telescope"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-158/collection_gwe_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:49.786958","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.515::1.0","title":"Cassini Radio Science GWE MON-5-15 Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (MON-5-15 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss25 34M","Dss34 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-25 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-515/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-515/collection_gwe_515.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:50.759685","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.log::1.0","title":"Cassini Radio Science RSR Operations Log Data Products Collection","description":"The RSR Operations Log (ROL) documents a use of one or more Radio Science\n Receivers (RSR) during one DSN pass supporting Cassini Gravitational Wave\n Experiment 1 (GWE1). The ROL file is an ASCII file; it was migrated from\n the original PDS3 archive and includes the PDS3 attached label.\n No ROL files were archived from any other Cassini Radio Science experiment.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2002-01-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-log/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-log/collection_gwe_log.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:51.810325","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.odf::1.0","title":"Cassini Radio Science GWE Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the Cassini Radio Science Gravitational Wave Experiment (GWE). \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Solar System"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-odf/collection_gwe_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:52.729705","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.pd1::1.0","title":"Cassini Radio Science GWE Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Gravitational Wave Experiment (GWE).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-pd1/collection_gwe_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:53.724369","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.pd2::1.0","title":"Cassini Radio Science GWE Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Gravitational Wave Experiment (GWE).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-pd2/collection_gwe_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:54.726652","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.rsr01::1.0","title":"Cassini Radio Science GWE RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Gravitational Wave Experiment (GWE). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-rsr01/collection_gwe_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:55.732254","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.tdf::1.0","title":"Cassini Radio Science GWE Archival Tracking Data Products Collection","description":"This is the collection of Radio Science Tracking Data Files (TDFs or sometimes Archival Tracking Data \n Files, ATDFs) acquired during the Cassini Radio Science Gravitational Wave Experiment (GWE).\n These files were produced by JPL multi-mission support personnel for use in determining spacecraft \n trajectories, gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves","Solar System"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tdf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tdf/collection_gwe_tdf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:56.728769","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.tlm::1.0","title":"Cassini Radio Science GWE Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during \n the Cassini Radio Science Gravitational Wave Experiment (GWE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-11-26","stop_date":"2003-11-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tlm/collection_gwe_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:57.731101","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.gwe:data.tnf::1.0","title":"Cassini Radio Science GWE Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Gravitational Wave Experiment (GWE). \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Gravitational Waves"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2003-11-10","stop_date":"2003-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-gwe/data-tnf/collection_gwe_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:58.731967","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr::1.0","title":"Cassini Radio Science Saturn Gravity Science Experiment (SAGR) Raw Data Bundle","description":"This bundle contains the Cassini radio science raw data acquired\n during the Saturn Gravity Science Experiment (SAGR). \n The primary data in this bundle are the Radio Science Receiver\n (RSR) files, the Orbit Data Files (ODFs), and the Tracking and Navigation Files (TNFs).\n The primary data files are accompanied by supplementary data files. \n These include 0158-Monitor (158) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n The bundle is a migration of data from the original PDS3 archive with\n minor improvements and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/bundle_sagr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:41:59.750413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.ckf::1.0","title":"Cassini Radio Science SAGR SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-ckf/collection_sagr_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:00.792173","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.eop::1.0","title":"Cassini Radio Science SAGR EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science \n observations during Saturn Gravity Science Experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-08-31","stop_date":"2017-10-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-eop/collection_sagr_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:01.769970","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.ion::1.0","title":"Cassini Radio Science SAGR Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Saturn Gravity Science Experiment (SAGR).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-01","stop_date":"2017-08-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-ion/collection_sagr_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:02.824317","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.spk::1.0","title":"Cassini Radio Science SAGR SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science SAGR \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn","Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-04-24","stop_date":"2017-08-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-spk/collection_sagr_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:03.745758","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:calib.tro::1.0","title":"Cassini Radio Science SAGR Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Saturn Gravity Science Experiment (SAGR).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-01","stop_date":"2017-07-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/calib-tro/collection_sagr_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:04.746955","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:context::1.0","title":"Cassini Radio Science SAGR Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Saturn Gravity raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/context/collection_sagr_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:05.746515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.158::1.0","title":"Cassini Radio Science SAGR 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Saturn Gravity Science Experiment (SAGR).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss15 34M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-158/collection_sagr_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:06.749989","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.odf::1.0","title":"Cassini Radio Science SAGR Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the Cassini Radio Science Saturn Gravity Science Experiment (SAGR). \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-06-06","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-odf/collection_sagr_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:07.750209","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.pd1::1.0","title":"Cassini Radio Science SAGR Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Saturn Gravity Science Experiment (SAGR).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-06-09","stop_date":"2010-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-pd1/collection_sagr_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:08.754808","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.pd2::1.0","title":"Cassini Radio Science SAGR Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Saturn Gravity Science Experiment (SAGR).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2011-08-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-pd2/collection_sagr_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:09.763360","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.rsr01::1.0","title":"Cassini Radio Science SAGR RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn Gravity Science Experiment (SAGR). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-rsr01/collection_sagr_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:10.764113","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.rsr02::1.0","title":"Cassini Radio Science SAGR RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn Gravity Science Experiment (SAGR). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 2 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-04","stop_date":"2012-06-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-rsr02/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-rsr02/collection_sagr_rsr02.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:11.810223","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.tlm::1.0","title":"Cassini Radio Science SAGR Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during \n the Cassini Radio Science Saturn Gravity Science Experiment (SAGR).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-tlm/collection_sagr_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:12.780389","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sagr:data.tnf::1.0","title":"Cassini Radio Science SAGR Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Saturn Gravity Science Experiment (SAGR). \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-09-08","stop_date":"2017-07-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sagr/data-tnf/collection_sagr_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:13.827526","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce::1.0","title":"Cassini Radio Science Science Solar Corona Experiment (SCE) Raw Data Bundle","description":"This bundle contains the raw radio science raw data acquired during the\n Cassini Solar Corona Experiment (SCE). The primary data in this bundle \n are the Radio Science Receiver (RSR) files, the Orbit Data Files (ODFs), \n and the Tracking and Navigation Files (TNFs). The primary data files are \n accompanied by supplementary data files. These include 0158-Monitor (158) \n files, MON-5-15 (515) files, C-Kernel (CKF) files, Earth Orientation \n Parameters (EOP) files, Ionosphere Calibration (ION) files, Path Delay \n (PD1 and PD2) files, Spacecraft/Planetary Ephemeris (SPK) files, Telemetry \n (TLM) files, and Troposphere Calibration (TRO) files. The bundle is a \n migration of data from the original PDS3 archive with minor improvements \n and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth","Sun","Solar Wind","General Relativity","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Tests of General Relativity","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-09-01","stop_date":"2017-03-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/bundle_sce.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:14.768941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.ckf::1.0","title":"Cassini Radio Science SCE SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Sun","Solar Wind","General Relativity","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Tests of General Relativity","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-04","stop_date":"2016-12-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-ckf/collection_sce_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:15.773280","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.eop::1.0","title":"Cassini Radio Science SCE EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science \n observations during Solar Corona Experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-09-01","stop_date":"2017-03-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-eop/collection_sce_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:16.770833","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.ion::1.0","title":"Cassini Radio Science SCE Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-01","stop_date":"2017-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-ion/collection_sce_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:17.771737","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.spk::1.0","title":"Cassini Radio Science SCE SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science SCE \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-09","stop_date":"2016-12-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-spk/collection_sce_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:19.068701","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:calib.tro::1.0","title":"Cassini Radio Science SCE Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-01","stop_date":"2017-01-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/calib-tro/collection_sce_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:19.773471","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:context::1.0","title":"Cassini Radio Science SCE Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Solar Conjunction Experiment raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Sun","Solar Wind","General Relativity","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss36 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Tests of General Relativity","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-36 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2001-09-01","stop_date":"2017-03-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/context/collection_sce_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:20.779629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.158::1.0","title":"Cassini Radio Science SCE 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-07","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-158/collection_sce_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:21.793577","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.515::1.0","title":"Cassini Radio Science SCE MON-5-15 Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (MON-5-15 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss15 34M","Dss25 34M","Dss45 34M","Dss54 34M","Dss65 34M","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2002-07-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-515/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-515/collection_sce_515.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:22.815365","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.odf::1.0","title":"Cassini Radio Science SCE Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the Cassini Radio Science Solar Corona Experiment (SCE). \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind","General Relativity","Tests of General Relativity"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-odf/collection_sce_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:23.862056","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.pd1::1.0","title":"Cassini Radio Science SCE Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Solar Corona Experiment (SCE).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2002-07-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-pd1/collection_sce_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:24.838570","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.pd2::1.0","title":"Cassini Radio Science SCE Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Solar Corona Experiment (SCE).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2002-07-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-pd2/collection_sce_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:25.785187","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.rsr01::1.0","title":"Cassini Radio Science SCE 1 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Solar Corona Experiment (SCE). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collection at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind","General Relativity","Tests of General Relativity"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr01/collection_sce_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:26.801105","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.rsr02::1.0","title":"Cassini Radio Science SCE 2 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Solar Corona Experiment (SCE). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 2 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind","General Relativity","Tests of General Relativity"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2013-10-31","stop_date":"2013-10-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr02/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr02/collection_sce_rsr02.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:27.808205","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.rsr04::1.0","title":"Cassini Radio Science SCE RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Solar Corona Experiment (SCE). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 4 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind","General Relativity","Tests of General Relativity"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2013-10-30","stop_date":"2014-11-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr04/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-rsr04/collection_sce_rsr04.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:28.799412","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.tdf::1.0","title":"Cassini Radio Science SCE Archival Tracking Data Products Collection","description":"This is the collection of Radio Science Tracking Data Files (TDFs or sometimes Archival Tracking Data \n Files, ATDFs) acquired during the Cassini Radio Science Solar Corona Experiment (SCE).\n These files were produced by JPL multi-mission support personnel for use in determining spacecraft \n trajectories, gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2002-07-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tdf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tdf/collection_sce_tdf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:29.805354","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.tlm::1.0","title":"Cassini Radio Science SCE Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during \n the Cassini Radio Science Solar Corona Experiment (SCE).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2002-06-06","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tlm/collection_sce_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:30.796024","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sce:data.tnf::1.0","title":"Cassini Radio Science SCE Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Solar Corona Experiment (SCE). \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Sun","Solar Wind"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-07-22","stop_date":"2016-12-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sce/data-tnf/collection_sce_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:31.804036","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc::1.0","title":"Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC) Raw Data Bundle","description":"This bundle contains the Cassini radio science raw data acquired\n during the Saturn and Saturn/Ring Occultation Experiment (SROC).\n The primary data in this bundle are the Radio Science Receiver\n (RSR) files, the Orbit Data Files (ODFs), and the Tracking and Navigation Files (TNFs).\n The primary data files are accompanied by supplementary data files. \n These include 0158-Monitor (158) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n The bundle is a migration of data from the original PDS3 archive with\n minor improvements and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-08-31","stop_date":"2017-12-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/bundle_sroc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:32.806261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.ckf::1.0","title":"Cassini Radio Science SROC SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-ckf/collection_sroc_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:33.827353","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.eop::1.0","title":"Cassini Radio Science SROC EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science \n observations during Saturn and Saturn/Ring Occultation Experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-08-31","stop_date":"2017-12-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-eop/collection_sroc_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:34.876858","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.ion::1.0","title":"Cassini Radio Science SROC Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-01","stop_date":"2017-10-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-ion/collection_sroc_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:35.846450","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.spk::1.0","title":"Cassini Radio Science SROC SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science SROC \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn","Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-04-24","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-spk/collection_sroc_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:36.898721","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:calib.tro::1.0","title":"Cassini Radio Science SROC Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-01","stop_date":"2017-09-23","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/calib-tro/collection_sroc_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:37.820812","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:context::1.0","title":"Cassini Radio Science SROC Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Saturn Radio Occultation raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-08-31","stop_date":"2017-12-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/context/collection_sroc_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:38.832523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.158::1.0","title":"Cassini Radio Science SROC 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n the Saturn and Saturn/Ring Occultation Experiment (SROC).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-158/collection_sroc_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:39.826410","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.odf::1.0","title":"Cassini Radio Science SROC Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-odf/collection_sroc_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:40.828880","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.pd1::1.0","title":"Cassini Radio Science SROC Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2010-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-pd1/collection_sroc_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:41.825407","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.pd2::1.0","title":"Cassini Radio Science SROC Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the \n Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2010-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-pd2/collection_sroc_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:42.827057","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.rsr01::1.0","title":"Cassini Radio Science SROC 1 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr01/collection_sroc_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:43.828769","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.rsr02::1.0","title":"Cassini Radio Science SROC 2 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 2 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2008-06-01","stop_date":"2008-06-23","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr02/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr02/collection_sroc_rsr02.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:44.840747","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.rsr16::1.0","title":"Cassini Radio Science SROC 16 ksps RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 16 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr16/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-rsr16/collection_sroc_rsr16.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:45.888330","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.tlm::1.0","title":"Cassini Radio Science SROC Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during \n the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-tlm/collection_sroc_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:46.858054","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.sroc:data.tnf::1.0","title":"Cassini Radio Science SROC Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Saturn and Saturn/Ring Occultation Experiment (SROC). \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-02","stop_date":"2017-09-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-sroc/data-tnf/collection_sroc_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:47.907836","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa::1.0","title":"Cassini Radio Science Icy Satellite Gravity Science Experiment Raw Data Bundle","description":"This bundle contains the Cassini radio science raw data acquired\n during Cassini icy satellite gravity science observations.\n The primary data in this bundle are the Radio Science Receiver\n (RSR) files, the Orbit Data Files (ODFs), and the Tracking and Navigation Files (TNFs).\n The primary data files are accompanied by supplementary data files. \n These include 0158-Monitor (158) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n The bundle is a migration of data from the original PDS3 archive with\n minor improvements and corrections.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth","Saturn","Co","Rhea","Iapetus","Hyperion","Enceladus","Dione","Dss14 70M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2015-11-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/bundle_ssa.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:48.841200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.ckf::1.0","title":"Cassini Radio Science Icy Satellite SPICE C-Kernel Collection","description":"The collection of Cassini Orbiter attitude C-kernel files (CKFs) associated with radio science\n observations of icy satellites, migrated from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Earth","Saturn","Co","Rhea","Iapetus","Hyperion","Enceladus","Dione","Dss14 70M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-11-23","stop_date":"2015-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-ckf/collection_ssa_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:49.846355","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.eop::1.0","title":"Cassini Radio Science Icy Satellite EOP Data Product Collection","description":"The collection of Earth Orientation Parameter files associated with Cassini gravity science\n observations of icy satellites, migrated from the original PDS3 archive to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2015-11-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-eop/collection_ssa_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:50.847235","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.ion::1.0","title":"Cassini Radio Science Icy Satellite Ionospheric Calibration Data Collection","description":"The collection of DSN files used to calibrate Cassini radio tracking data for the\n effects of Earth's ionosphere during observations of icy satellites, migrated from \n PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-01","stop_date":"2015-09-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-ion/collection_ssa_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:51.848694","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.spk::1.0","title":"Cassini Radio Science Icy Satellites SPICE SPK Calibration Product Collection","description":"The collection of Cassini Orbiter ephemeris kernel (SPK) files for gravity science observations\n of Saturn's icy satellites, migrated from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Rhea","Iapetus","Enceladus","Dione","Hyperion","Saturn","Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-11-16","stop_date":"2015-09-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-spk/collection_ssa_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:52.849710","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:calib.tro::1.0","title":"Cassini Radio Science Icy Satellite Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n Radio Science icy satellite gravity science observations.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-01","stop_date":"2015-08-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/calib-tro/collection_ssa_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:53.850023","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.158::1.0","title":"Cassini Radio Science Icy Satellite 0158-Monitor Data Product Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n an icy satellite gravity science observation.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M","DSS-14 70-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS 65 34-m Radio Telescope before 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-158/collection_ssa_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:54.850669","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.odf::1.0","title":"Cassini Radio Science Icy Satellite Orbit Data File (ODF) Collection","description":"The collection of Cassini Orbit Data Files (ODFs) acquired\n during icy satellite gravity science observations.\n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Rhea","Iapetus","Hyperion","Enceladus","Dione"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-odf/collection_ssa_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:55.854527","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.pd1::1.0","title":"Cassini Radio Science Icy Satellite Path Delay (PD1) Data Product Collection","description":"The first of two collections of path delay files acquired during \n Cassini gravity science observations of Saturn's icy satellites.\n These path delay files were generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file was generated a week after data acquisition when the MCS\n development team had supplied updated calibration files.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-pd1/collection_ssa_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:56.895034","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.pd2::1.0","title":"Cassini Radio Science Icy Satellite Path Delay (PD2) Data Product Collection","description":"The second of two collections of path delay files acquired during \n Cassini gravity science observations of Saturn's icy satellites.\n These path delay files were generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file was generated a week after data acquisition when the MCS\n development team had supplied updated calibration files.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-17","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-pd2/collection_ssa_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:57.944847","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.rsr01::1.0","title":"Cassini Radio Science Icy Satellites RSR Data Product Collection - 1 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during Cassini icy satellite gravity science observations.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Rhea","Iapetus","Hyperion","Enceladus","Earth","Dione"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr01/collection_ssa_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:58.918029","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.rsr08::1.0","title":"Cassini Radio Science Icy Satellites RSR Data Product Collection - 8 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during Cassini icy satellite gravity science observations.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were coll;ected at 8 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Iapetus","Earth"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2007-09-10","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr08/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr08/collection_ssa_rsr08.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:42:59.862769","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.rsr16::1.0","title":"Cassini Radio Science Icy Satellites RSR Data Product Collection - 16 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during Cassini icy satellite gravity science observations.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 16 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Enceladus"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-09-15","stop_date":"2010-01-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr16/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-rsr16/collection_ssa_rsr16.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:00.861822","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.tlm::1.0","title":"Cassini Radio Science Icy Satellite Engineering Telemetry (TLM) Data Product Collection","description":"The collection of spacecraft engineering data relevant to Cassini gravity science observations of Saturn's icy satellites.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-tlm/collection_ssa_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:01.864872","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.ssa:data.tnf::1.0","title":"Cassini Radio Science Icy Satellite Tracking and Navigation (TNF) Data Product Collection","description":"The collection of Cassini Tracking and Navigation (TNF) data products acquired\n during icy satellite gravity science observations, migrated from PDS3 to PDS4.\n In PDS3 records were stored in absolute chronological order; for PDS4, records \n were sorted according to data type, retaining chronological order within each \n data type.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Rhea","Iapetus","Hyperion","Enceladus","Dione"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-02-16","stop_date":"2015-08-19","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-ssa/data-tnf/collection_ssa_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:02.865419","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan::1.0","title":"Cassini Radio Science Titan Gravity, Occultation, and Bistatic Radar Experiments Raw Data Bundle","description":"This bundle contains the Cassini radio science raw data acquired\n during Titan gravity, occultation, and bistatic radar experiments.\n The primary data in this bundle are the Radio Science Receiver\n (RSR) files, the Orbit Data Files (ODFs), and the Tracking and Navigation Files (TNFs).\n The primary data files are accompanied by supplementary data files. \n These include 0158-Monitor (158) files, C-Kernel (CKF) files,\n Earth Orientation Parameters (EOP) files, Ionosphere Calibration (ION) files,\n Path Delay (PD1 and PD2) files, Spacecraft/Planetary Ephemeris\n (SPK) files, Telemetry (TLM) files, and Troposphere Calibration (TRO) files.\n The bundle is a migration of data from the original PDS3 archive with\n minor improvements and corrections. 40 RSR files from Titan bistatic radar experiment\n calibrations in 2016 -- not included in the PDS3 archive -- have been added.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Dsn","Geodesy","Cassini-Huygens","DSN Media Calibration"],"targets":["Co","Earth","Saturn","Titan","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2017-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/bundle_titan.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:03.869805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.ckf::1.0","title":"Cassini Radio Science Titan SPICE C-Kernel Collection","description":"Cassini Orbiter attitude (CK) files for radio science \n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Earth","Saturn","Titan","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-28","stop_date":"2007-05-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-ckf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-ckf/collection_titan_ckf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:04.874012","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.eop::1.0","title":"Cassini Radio Science Titan EOP Data Products Collection","description":"Earth Orientation Parameter (EOP) files for Cassini radio science\n observations during Titan gravity, occultation, and bistatic radar experiments, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Geodesy"],"targets":["Earth"],"instruments":["Rss","Media","Co","Co","NASA Deep Space Network Radio Science","Deep Space Station Media Calibration Subsystem","Cassini Engineering","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2017-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-eop/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-eop/collection_titan_eop.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:05.878088","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.ion::1.0","title":"Cassini Radio Science Titan Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric \n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Titan gravity, occultation, and bistatic radar experiments.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-01","stop_date":"2016-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-ion/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-ion/collection_titan_ion.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:06.886832","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.spk::1.0","title":"Cassini Radio Science Titan SPICE SPK Calibration Products Collection","description":"Cassini Orbiter ephemeris kernel (SPK) files for radio science Titan\n observations, migrated from the original PDS3 archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan","Solar System","Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-22","stop_date":"2016-11-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-spk/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-spk/collection_titan_spk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:07.902375","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:calib.tro::1.0","title":"Cassini Radio Science Titan Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric\n calibration information for radio tracking of the Cassini spacecraft during\n the Radio Science Titan gravity, occultation, and bistatic radar experiments.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dsn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-01","stop_date":"2016-11-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-tro/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/calib-tro/collection_titan_tro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:08.962889","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:context::1.0","title":"Cassini Radio Science TITAN Raw Data Context Collection","description":"This collection contains the context products associated with the Cassini Radio\n Science (RS) Saturn/Titan raw data bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Earth","Saturn","Titan","Dss14 70M","Dss15 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","Cassini Orbiter","DSS-14 70-m Radio Telescope","DSS-15 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-07-24","stop_date":"2017-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/context/collection_titan_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:09.926497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.158::1.0","title":"Cassini Radio Science Titan 0158-Monitor Data Products Collection","description":"This collection of ASCII files contains data extracted from binary DSN Monitor Files\n (158 format). These files provide information on the configuration, status, and \n performance of a DSN antenna that was tracking the Cassini-Huygens spacecraft during\n Titan gravity, occultation, and bistatic radar experiments.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Dss14 70M","Dss24 34M","Dss25 34M","Dss26 34M","Dss34 34M","Dss35 34M","Dss43 70M","Dss45 34M","Dss47 2008","Dss54 34M","Dss55 34M","Dss63 70M","Dss65 34M Post2005","DSS-14 70-m Radio Telescope","DSS-24 34-m Radio Telescope","DSS-25 34-m Radio Telescope","DSS-26 34-m Radio Telescope","DSS-34 34-m Radio Telescope","DSS-35 34-m Radio Telescope","DSS-43 70-m Radio Telescope","DSS-45 34-m Radio Telescope","Australia Telescope Compact Array - 2008","DSS-54 34-m Radio Telescope","DSS-55 34-m Radio Telescope","DSS-63 70-m Radio Telescope","DSS-65 34-m Radio Telescope after 2005 Relocation"],"instruments":["NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-30","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-158/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-158/collection_titan_158.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:10.976992","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.odf::1.0","title":"Cassini Radio Science Titan Orbit Data File (ODF) Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired\n during the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-30","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-odf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-odf/collection_titan_odf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:11.887026","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.pd1::1.0","title":"Cassini Radio Science Titan Path Delay (PD1) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the\n Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the first of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-10-29","stop_date":"2014-03-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-pd1/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-pd1/collection_titan_pd1.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:12.888066","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.pd2::1.0","title":"Cassini Radio Science Titan Path Delay (PD2) Data Products Collection","description":"This is a collection of ASCII path delay files acquired during the\n Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n These path delay files are generated by IO-RS using software supplied by the\n development team for the Cassini Advanced Media Calibration System (MCS).\n Typically, the file is generated a week after data acquisition when the MCS\n development team has supplied updated calibration files. These data are from\n the second of two sets of measurements.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Dsn","Cassini-Huygens","DSN Media Calibration"],"targets":["Earth"],"instruments":["Deep Space Station Media Calibration Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-30","stop_date":"2014-03-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-pd2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-pd2/collection_titan_pd2.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:13.902830","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.rsr01::1.0","title":"Cassini Radio Science Titan RSR Data Products Collection - 1 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 1 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-10-27","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-rsr01/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-rsr01/collection_titan_rsr01.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:14.892881","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.rsr16::1.0","title":"Cassini Radio Science Titan RSR Data Products Collection - 16 ksps","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.\n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels. These data were collected at 16 ksps.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-rsr16/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-rsr16/collection_titan_rsr16.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:15.893979","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.tlm::1.0","title":"Cassini Radio Science Titan Engineering Telemetry (TLM) Data Products Collection","description":"A collection of engineering telemetry data acquired during\n the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Co","Cassini Orbiter"],"instruments":["Radio Science Subsystem","Cassini Engineering"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-03-30","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-tlm/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-tlm/collection_titan_tlm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:16.890599","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini.rss.raw.titan:data.tnf::1.0","title":"Cassini Radio Science Titan Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the Cassini Radio Science Titan gravity, occultation, and bistatic radar experiments. \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Radio Science Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-12-25","stop_date":"2016-11-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-tnf/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-rss-raw-titan/data-tnf/collection_titan_tnf.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:17.901694","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library::1.0","title":"Cassini UVIS Titan Library Bundle","description":"Cassini UVIS spectral library for Titan","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["Co","UVIS"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/bundle_cassini-uvis_titan-library.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:18.920718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library:context::1.0","title":"Cassini UVIS Titan Library Context collection file","description":"Context collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/collection_cassini-uvis_titan-library_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:19.967912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library:data_derived::1.0","title":"Cassini UVIS Titan Library Derived Data collection file","description":"Data collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/collection_cassini-uvis_titan-library_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:20.937594","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library:xml_schema::1.0","title":"Cassini UVIS Titan Library XML Schema collection file","description":"XML Schema collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/collection_cassini-uvis_titan-library_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:21.983108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Bundle","description":"2.2 cm thermal emission maps of Saturn obtained\n using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","RADAR for CO"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/bundle_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:22.907822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps:context::1.1","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Context Collection","description":"2.2 cm thermal emission maps of Saturn obtained\n using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2015-12-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/collection_context_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:23.912607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps:data::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Derived Data Collection","description":"2.2 cm thermal emission maps of Saturn obtained\n using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/collection_data_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:24.920236","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps:schema::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/collection_schema_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:25.920218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Bundle","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Co","Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/bundle_co-rss_slepian-grav-coeff.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:26.920778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:context::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Context Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/collection_co-rss_slepian-grav-coeff_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:27.923945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:data_derived::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Derived Data Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/collection_co-rss_slepian-grav-coeff_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:28.924125","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:xml_schema::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions XML Schema Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/collection_co-rss_slepian-grav-coeff_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:29.929314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn","description":"description","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Name"],"targets":["Jupiter","Saturn"],"instruments":["Co","Co","Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini","Co"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/bundle_co_iss_global-maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:30.971359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps:context::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived Context Collection","description":"Global Maps of Jupiter and Saturn based on Cassini ISS Images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/collection_co_iss_global-maps_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:31.944687","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps:data_derived::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived Data Collection","description":"Cassini ISS Global Maps of Jupiter and Saturn","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/collection_co_iss_global-maps_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:32.996026","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps:xml_schema::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived XML Schema Collection","description":"Cassini ISS Global Maps of Jupiter and Saturn","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/collection_co_iss_global-maps_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:33.942243","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Mole fractions during the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","cocirs"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/bundle_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:34.935983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund:context::1.1","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Ethylene (C2H4) mole fractions after the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/collection_context_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:35.936389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund:data_derived::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Ethylene (C2H4) mole fractions after the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/collection_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:36.941582","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund:xml_schema::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/collection_schema_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:37.938832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds::1.0","title":"Saturn Zonal Winds Bundle","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","Co","Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/bundle_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:38.945300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds:context::1.0","title":"Saturn Zonal Winds Context Collection","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/collection_context_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:39.950611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds:data_derived::1.0","title":"Saturn Zonal Winds Observarions Collection","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/collection_data_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:40.948318","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds:schema::1.0","title":"Saturn Zonal Winds Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/collection_schema_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:41.989799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density","description":"Derived data products from Cassini radio occultations at Titan \n and their accompanying documentation. Derived data products include: \n (A) time series of the frequency of the radio \n signal received at Earth during an occultation; (B) individual \n electron density profiles from occultations; (C) average electron \n density profiles from occultations; and (D) summary of average \n electron density profiles.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Co","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/bundle_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:43.031872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens:context::1.1","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/collection_context_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:44.007833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens:data_derived::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Derived Data Collection","description":"Derived data products from Cassini radio occultations at Titan. \n Derived data products include: (A) time series \n of the frequency of the radio signal received at Earth during an \n occultation; (B) individual electron density profiles from \n occultations; (C) average electron density profiles from \n occultations; and (D) summary of average electron density profiles.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/collection_corss_occul_el_dens_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:45.054645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens:xml_schema::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/collection_schema_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:45.965268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dd_nnss-nv::1.0","title":"Seven years of convective vortex recordings in the Mojave desert Bundle","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion microbarometers","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Dd Nnss Nv 2019","Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion Ifs5000","Hyperion Ifs3000","Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":[],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/bundle_dd_nnss-nv.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:46.958932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dd_nnss-nv:context::1.0","title":"Seven years of convective vortex recordings in the Mojave desert Context Collection","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion IFS-5000 microbarometers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Nnss Nv 2019","Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":[],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/context/collection_dd_nnss-nv_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:47.971640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dd_nnss-nv:data_derived::1.0","title":"Seven years of convective vortex recordings in the Mojave desert Derived Data Collection","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion microbarometers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Nnss Nv 2019","Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":[],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/collection_dd_nnss-nv_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:48.962354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dd_nnss-nv:xml_schema::1.0","title":"Seven years of convective vortex recordings in the Mojave desert XML Schema Collection","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion IFS-5000 microbarometers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Nnss Nv 2019","Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":[],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/xml_schema/collection_dd_nnss-nv_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:49.969053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv::1.0","title":"Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015","description":"Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Dd Eldorado Nv 2015","Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Met Station","Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/bundle_eldorado_nv_dd_ptv.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:50.968002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:context::1.0","title":"Jackson and Lorenz Dust Devil Field Campaign Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Eldorado Nv 2015","Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/collection_eldorado_nv_dd_ptv_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:51.966313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:data_derived::1.0","title":"Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015","description":"Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Eldorado Nv 2015","Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/collection_eldorado_nv_dd_ptv_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:52.993305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:xml_schema::1.0","title":"Jackson and Lorenz Dust Devil Field Campaign XML Schema Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dd Eldorado Nv 2015","Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/collection_eldorado_nv_dd_ptv_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:54.049740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp::1.0","title":"Galileo Probe (GP) Bundle","description":"This version of the GP bundle was created by the PDS Atmospheres node in 2024","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["Asi","Dwe","Epi","Gpms","Had","Lrd","Nep","Nfr","ASI","DWE","EPI","GPMS","HAD","LRD","NEP","NFR"],"instrument_hosts":["GALILEO PROBE","Gp"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/bundle_gp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:55.013909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:context::1.0","title":"Galileo Probe Context Collection","description":"This PDS4 context_collection file for Galileo Probe (GP) was created in 2021","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI","DWE","EPI","GPMS","HAD","LRD","NEP","NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/context/collection_gp_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:56.065428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_asi::1.0","title":"Galileo Probe Atmospheric Structure Instrument (ASI) data_gpasi collection file","description":"GPASI data collection for the Galileo Probe ASI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/collection_gpasi_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:56.980378","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_dwe::1.0","title":"Galileo Probe Doppler Wind Experiment (DWE) data_gpdwe collection file","description":"GPDWE data collection for the Galileo Probe DWE PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["DWE"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/collection_gpdwe_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:57.981963","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_epi::1.0","title":"Galileo Probe Energetic Particles Instrument (EPI) data_gpepi collection file","description":"GPEPI data collection for the Galileo Probe EPI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["EPI"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/collection_gpepi_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:43:58.986241","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_had::1.0","title":"Galileo Probe Helium Abundance Detector (HAD) data_gphad collection file","description":"GPHAD data collection for the Galileo Probe HAD PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["HAD"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/collection_gphad_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:00.329744","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_nep::1.0","title":"Galileo Probe Nephelometer (NEP) data_gpnep collection file","description":"GPNEP data collection for the Galileo Probe NEP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["NEP"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/collection_gpnep_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:00.992457","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_nfr::1.0","title":"Galileo Probe Net Flux Radiometer (NFR) data_gpnfr collection file","description":"GPNFR data collection for the Galileo Probe NFR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/collection_gpnfr_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:01.991448","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_nms::1.0","title":"Galileo Probe Mass Spectrometer (GPMS) data_gpnms collection file","description":"GPMS data collection for the Galileo Probe NMS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["GPMS"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/collection_gpnms_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:03.004369","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:xml_schema::1.0","title":"Galileo Probe XML_Schema Collection","description":"XML Schema collection for the Galileo Probe (GP) PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI","DWE","EPI","GPMS","HAD","LRD","NEP","NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/xml_schema/collection_gp_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:04.007481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad::1.0","title":"Galileo NIMS Hot Spot Spectral Radiance Bundle","description":"Hot spot spectral radiance derived from Galileo NIMS observations of Io","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo","Galileo Mission"],"targets":["Io"],"instruments":["Nims","Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter","Go"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/bundle_go_nims_io_rad.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:05.057708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad:context::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance Context Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/collection_go_nims_io_rad_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:06.023446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad:data_derived::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance Derived Data Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/collection_go_nims_io_rad_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:07.072462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad:xml_schema::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance XML Schema Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/collection_go_nims_io_rad_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:08.009509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) for GO Bundle","description":"This version of the Photopolarimeter Radiometer (PPR) for GO bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Amalthea","GLL PCT","PPR RCT"],"instruments":["Ppr","PPR"],"instrument_hosts":["GALILEO ORBITER","Go"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/bundle_goppr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:09.010605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:context::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer Context Collection","description":"This PDS4 context_collection file was created in 2021","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/context/collection_goppr_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:10.506722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:geometry::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) geometry collection file","description":"GEOMETRY collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/geometry_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:11.509901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:data_redr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) data_redr collection file","description":"R_EDR data collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","GLL PCT","PPR RCT"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/data_redr_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:12.518082","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:data_rdr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) data_rdr collection file","description":"RDR data collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","GLL PCT","PPR RCT"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/data_rdr_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:13.516831","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:xml_schema::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer XML_Schema Collection","description":"XML Schema collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/xml_schema/collection_goppr_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:14.516834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) for GO Bundle","description":"This version of the Ultraviolet Spectrometer (UVS) for GO bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Io Torus","Io Plasma Torus","STAR"],"instruments":["Uvs","UVS"],"instrument_hosts":["GALILEO ORBITER","Go"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/bundle_gouvs.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:15.542728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:calibration::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer Calibration Collection","description":"Calibration collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/calibration_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:16.583385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:context::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer Context Collection","description":"This PDS4 context_collection file was created in 2021","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Io Torus","Io Plasma Torus","STAR"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/context/collection_gouvs_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:17.558612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:data_euv::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) data_euv collection file","description":"EUV data collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1995-12-08","stop_date":"2002-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/data_gouvs_euv_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:18.606830","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:geometry_euv::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) geometry_euv collection file","description":"GEOMETRY EUV collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1995-12-08","stop_date":"2002-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_euv_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:19.524763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:data_uvs_dat::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) data_uvs_dat collection file","description":"UVS DAT data collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1995-12-08","stop_date":"1999-06-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/data_uvs_dat_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:20.534448","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:xml_schema::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer XML_Schema Collection","description":"XML Schema collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo","GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Io Torus","Io Plasma Torus"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/xml_schema/collection_gouvs_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:21.528988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape::1.0","title":"Hot Ion Atmospheric Escape Data","description":"This bundle contains collated hot ion atmospheric escape data from multiple published sources","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Hot Ion Atmos Escape","Hot Ion Atmospheric Escape Data"],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/bundle_hot_ion_atmos_escape.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:22.536562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape:context::1.0","title":"Hot Ion Atmospheric Escape Data Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmos Escape","Hot Ion Atmospheric Escape Data"],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/collection_hot_ion_atmos_escape_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:23.534295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape:data_derived::1.0","title":"Collated Hot Ion Atmospheric Escape Data Derived Data Collection","description":"Collection of derived data (from model fits and laboratory experiments) pertaining to hot ion collisions and atmospheric escape","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmos Escape","Hot Ion Atmospheric Escape Data"],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/collection_hot_ion_atmos_escape_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:24.542283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape:xml_schema::1.0","title":"Hot Ion Atmospheric Escape Data XML Schema Collection","description":"XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmos Escape","Hot Ion Atmospheric Escape Data"],"targets":["Uranus"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/collection_hot_ion_atmos_escape_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:25.540836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl::1.0","title":"InSight EDL Bundle","description":"This PDS4 bundle contains the InSight EDL atmospheric reconstruction","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Insight","EDL"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/bundle_insightedl.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:26.549695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl:context::1.0","title":"InSight EDL Context","description":"This is a PDS4 Context Collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["EDL"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/collection_insightedl_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:27.603574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl:data::1.0","title":"InSight EDL Data Collection Inventory","description":"This is a PDS4 data collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["EDL"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/collection_insightedl_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:28.569280","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl:schema::1.0","title":"InSight EDL Schema","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight","InSight"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/collection_insightedl_xmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:29.617200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry::1.0","title":"InfraRed Telescope Facility Io Photometry Bundle","description":"IRTF Photometry of Io","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Irtf Io","IRTF Photometry of Io"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1983-02-09","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/bundle_irtf_io_photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:30.557324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry:context::1.0","title":"IRTF Io Photometry Context Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["Irtf Io","IRTF Io Photometry"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/collection_irtf_io_photometry_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:31.551099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry:data_derived::1.1","title":"IRTF Io Photometry Data Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["Irtf Io","IRTF Io Photometry"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/collection_irtf_io_photometry_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:32.557060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry:schema::1.0","title":"IRTF Io Photometry XML Schema Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["Irtf Io","IRTF Io Photometry"],"targets":["Io"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/collection_irtf_io_photometry_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:33.548970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram::1.1","title":"Juno JIRAM Bundle","description":"This version of the Juno JIRAM bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["Jupiter"],"instruments":["Jno","JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/bundle_juno_jiram.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:34.559472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:calibration::1.0","title":"Juno JIRAM Calibration collection file","description":"Calibration collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/collection_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:35.557113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:context::1.0","title":"Juno JIRAM Context collection file","description":"Context collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:36.564291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:data_calibrated::1.0","title":"Juno JIRAM Calibrated Data collection file","description":"Calibrated (lv. 3) data collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/collection_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:39.669841","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:data_raw::1.0","title":"Juno JIRAM Raw Data collection file","description":"Raw (lv.2) data collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/collection_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:41.760537","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:xml_schema::1.0","title":"Juno JIRAM XML Schema collection file","description":"XML Schema collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Jno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:42.800082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:junocam_atm-ml-calib::1.0","title":"JunoCam - Machine Learning Calibration Bundle","description":"This bundle photometrically calibrated JunoCam images using a novel machine learning technique.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["Jupiter"],"instruments":["Jno","Juno JunoCam"],"instrument_hosts":["Juno","Jno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/bundle_junocam_atm-ml-calib.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:43.848810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:junocam_atm-ml-calib:context::1.0","title":"JunoCam - Machine Learning Calibration Bundle - Context Collection","description":"This collection contains the machine-learning-assisted calibration of JunoCam images.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Juno JunoCam"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/context/collection_junocam_atm-ml-calib_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:44.822357","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:junocam_atm-ml-calib:data_calibrated::1.0","title":"JunoCam - Machine Learning Calibration Bundle - Calibrated Data Collection","description":"This collection contains the machine-learning-assisted calibration of JunoCam images.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Juno JunoCam"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/data_calibrated/collection_junocam_atm-ml-calib_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:45.872078","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:junocam_atm-ml-calib:data_mosaics::1.0","title":"JunoCam - Machine Learning Calibration Bundle - Data Mosaics Collection","description":"This collection contains the machine-learning-assisted calibration of JunoCam images.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Juno JunoCam"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/data_mosaics/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/data_mosaics/collection_junocam_atm-ml-calib_data_mosaics.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:46.774215","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:junocam_atm-ml-calib:xml_schema::1.0","title":"JunoCam - Machine Learning Calibration Bundle - XML Schema Collection","description":"This collection contains the machine-learning-assisted calibration of JunoCam images.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Juno JunoCam"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2018-05-24","stop_date":"2021-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/junocam_atm-ml-calib/xml_schema/collection_junocam_atm-ml-calib_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:47.782404","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra::4.0","title":"Laboratory Study of Hydrocarbon IR Spectra Bundle","description":"________","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Hydrocarbon Spectra","Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Jupiter","Saturn","Titan","Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Brukifs125Hr Ftspec","Thz Farir Beamline","Farir Beamline","Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:48.788666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:context::2.1","title":"Laboratory Study of Hydrocarbon IR Spectra Context Collection","description":"Context collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hydrocarbon Spectra","Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Jupiter","Saturn","Titan","Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:49.779960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:data::4.0","title":"Laboratory Study of Hydrocarbon IR Spectra Data Collection","description":"Data collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hydrocarbon Spectra","Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Jupiter","Saturn","Titan","Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:50.780536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:xml_schema::2.1","title":"Laboratory Study of Hydrocarbon IR Spectra XML Schema Collection","description":"XML schema collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hydrocarbon Spectra","Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Jupiter","Saturn","Titan","Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:51.787675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Bundle","description":"Photometric observations of Uranus and Neptune (1972-2016) in the b (472 nm) and y (551 nm) filters of the Strömgren photometric system at Lowell Observatory.\n Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune\n from 1972-2016.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Lowell Uranus Neptune Photometry","Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/bundle_lowell_uranus-neptune_photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:52.782230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:context::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Context Collection","description":"Context collection for photometric observations of Uranus and Neptune (1972-2016) in the Strömgren b (472 nm) and y (551 nm) filters at Lowell Observatory.\n Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune\n from 1972-2016.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Lowell Uranus Neptune Photometry","Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/collection_lowell_uranus-neptune-photometry_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:54.066950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:data::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Data Collection","description":"Data collection for photometric observations of Uranus and Neptune (1972-2016) in the Strömgren b (472 nm) and y (551 nm) filters at Lowell Observatory.\n Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune\n from 1972-2016.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Lowell Uranus Neptune Photometry","Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/collection_lowell_uranus-neptune-photometry_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:54.870747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:schema::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Lowell Uranus Neptune Photometry","Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/collection_schema_lowell_uranus-neptune-photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:55.834479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Bundle","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mcmath Pierce Mercury","McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["Vacuum Spectrograph","Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/bundle_mcmath-pierce_mercury.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:56.883902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury:context::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Context Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mcmath Pierce Mercury","McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/collection_mcmath-pierce_mercury_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:57.801079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury:data_calibrated::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Data-Calibrated Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mcmath Pierce Mercury","McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/collection_mcmath-pierce_mercury_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:58.805636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury:xml_schema::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury XML Schema Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mcmath Pierce Mercury","McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/collection_mcmath-pierce_mercury_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:44:59.801438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mer_imu::1.1","title":"Mars Exploration Rover IMU Bundle","description":"This version of the MERIMU bundle was created by the PDS Atmospheres node in 2014","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mer1","Mer2","Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/bundle_mer_imu.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:00.808376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mer_imu:context::1.2","title":"MER1/MER2 Mars IMU Entry Descent & Landing","description":"This PDS4 merimu_context_collection file was submitted in 2004","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/context/collection_merimu_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:01.802376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mer_imu:derived::1.1","title":"MER1/MER2 Mars IMU Entry Descent & Landing","description":"The original MER dataset was submitted in 2004 by Paul Withers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":"2004-01-04","stop_date":"2004-01-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/data/collection_merimu_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:02.805370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mer_imu:xml_schema::1.1","title":"PDS4 MERIMU xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Mer1","Mer2","Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["Mer1","Mer2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:03.809764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgn-atm-profile::1.0","title":"Magellan Atmospheric Profile Bundle","description":"This version of the Magellan Atmospheric Profile bundle was created by the PDS Atmospheres node in 2025","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Magellan"],"targets":["Venus"],"instruments":["Rss","Radio Science Subsystem"],"instrument_hosts":["Magellan","Mgn"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/bundle_mgn.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:04.821423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgn-atm-profile:context::1.0","title":"Magellan Context Collection","description":"Context collection file for the Magellan Atmospheric Profile mission was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Magellan"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Magellan"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/context/collection_mgn_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:05.868883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgn-atm-profile:data_derived::1.0","title":"Magellan Data Collection","description":"Data collection for the Magellan Atmospheric Profile PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Magellan"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Magellan"],"data_types":[],"start_date":"1989-05-04","stop_date":"1994-10-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/data/data_mgn_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:06.844688","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgn-atm-profile:xml_schema::1.0","title":"Magellan XML Schema Collection","description":"XML Schema collection for the Magellan Atmospheric Profile PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Magellan"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Magellan"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgn-atm-profile/xml_schema/collection_mgn_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:08.417692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Bundle","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) \n temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Rss","Rss","Radio Science Subsystem","DSN Instrumentation"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network","Mgs"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/bundle_mgs-rss_nocturnal-mixed-layers.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:09.329420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:context::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Context Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) \n temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/collection_mgs-rss_nocturnal-mixed-layers_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:10.325972","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:data_derived::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Derived Data Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) \n temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/collection_mgs-rss_nocturnal-mixed-layers_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:11.325087","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:xml_schema::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties XML Schema Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) \n temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/collection_mgs-rss_nocturnal-mixed-layers_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:12.331014","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice::1.0","title":"Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) Atmospheric Column Optical Depths for Dust and Water Ice Bundle","description":"This bundle contains atmospheric column optical depth data for dust and water ice as well as daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["Tes","TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/bundle_mgs_tes_atmos_dust-ice.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:13.327234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:context::1.0","title":"MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Context Collection","description":"Context for the atmospheric column optical depth data for dust and water ice as well as the daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/collection_mgs_tes_atmos_dust-ice_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:14.330808","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_ir-aerosol-optical-depth::1.0","title":"MGS TES Infrared Column Aerosol Optical Depth Derived Data Collection","description":"Atmospheric infrared column dust and water ice optical depths retrieved from MGS TES observations. Absorption infrared optical depths are retrieved from thermal infrared observations in nadir-viewing mode and reported at a reference wavelength of 9.3 micron for the dust and 12.1 micron for the water ice.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_ir-aerosol-optical-depth.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:15.339325","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_maps::1.0","title":"MGS TES Infrared Column Dust Optical Depth Maps Derived Data Collection","description":"Daily global maps of atmospheric infrared column dust optical depth reconstructed from gridding of MGS TES single retrievals. Maps provided at a reference infrared wavelength of 9.3 micron in absorption are reconstructed from gridding of single retrievals of column dust optical depth from thermal infrared observations in nadir-viewing mode.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/collection_mgs_tes_atmos_dust-ice_data_derived_ir-dust-optical-depth-maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:16.361743","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_vis-dust-optical-depth::1.0","title":"MGS TES Visible Column Dust Optical Depth Derived Data Collection","description":"Atmospheric visible column dust optical depths retrieved from MGS TES observations. Visible optical depths are retrieved from solar band emergence phase function sequences and reported at a reference wavelength of 0.67 micron.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-03-12","stop_date":"2004-08-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_vis-dust-optical-depth.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:17.402638","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:xml_schema::1.0","title":"MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Schema Collection","description":"Schema collection for the atmospheric column optical depth data for dust and water ice as well as the daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/collection_mgs_tes_atmos_dust-ice_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:18.379500","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos::3.0","title":"Mars Global Surveyor Thermal Emission Spectrometer Atmospheric Recalibration Bundle","description":"________","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Tes","Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:19.426462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:calibration::1.0","title":"MGS TES Atmospheric Recalibration Calibration Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/collection_mgs_tes_recalib_atmos_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:20.338984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:context::1.0","title":"MGS TES Atmospheric Recalibration Context Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/collection_mgs_tes_recalib_atmos_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:21.339676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_calibrated::1.0","title":"MGS TES Atmospheric Recalibration Calibrated Data Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/collection_mgs_tes_recalib_atmos_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:22.349306","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_atmos-opacity::1.1","title":"MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:23.876318","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_surf-emissivity::1.1","title":"MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:24.879684","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:xml_schema::1.0","title":"MGS TES Atmospheric Recalibration XML Schema Collection","description":"_________","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/collection_mgs_tes_recalib_atmos_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:25.882586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel::1.0","title":"MGS Accel Bundle","description":"This version of the MGS ACCEL bundle was created by the PDS Atmospheres node in 2015","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars","MARS"],"instruments":["Accel","ACCEL"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/bundle_mgs_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:26.882776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel:context::1.0","title":"PDS4 MGS ACCEL Context Collection","description":"This PDS4 mgs_accel_context_collection file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor","MGS"],"targets":["Mars","MARS"],"instruments":["ACCEL"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/collection_mgs_accel_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:27.890537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel:xml_schema::1.0","title":"PDS4 MGS ACCEL xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars","MARS"],"instruments":["Accel","ACCEL"],"instrument_hosts":["Mgs"],"data_types":[],"start_date":"1997-11-13","stop_date":"1999-02-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:29.463601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim::1.0","title":"IMP Opacities Bundle","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Pathfinder","Pathfinder"],"targets":["Mars"],"instruments":["Mpfl","mpim"],"instrument_hosts":["Mpfl"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/bundle_lemmon.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:30.438506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim:context::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Pathfinder","Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Mpfl"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/collection_lemmoncontext.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:31.392233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim:derived::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Pathfinder","Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Mpfl"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/collection_lemmondata.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:32.394371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim:schema::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Pathfinder","Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Mpfl"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/collection_lemmonxmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:33.408063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9_iris::1.0","title":"Mariner 9 Infrared Interferometer Spectrometer (IRIS) Bundle","description":"This version of the Mariner 9 IRIS bundle was created by the PDS Atmospheres node in 2025","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Mr9","Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9","Mr9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/bundle_mr9.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:34.397630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9_iris:calibration::1.0","title":"Mariner 9 IRIS Calibration collection file","description":"This PDS4 Calibration collection file for Mariner 9 IRIS was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/calib/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/calib/calibration_mr9_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:35.403715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9_iris:context::1.0","title":"Mariner 9 IRIS Context Collection","description":"This PDS4 Context collection file for Mariner 9 IRIS was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/context/collection_mr9_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:36.402508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9_iris:data::1.0","title":"Mariner 9 IRIS Data collection file","description":"This PDS4 Data collection file for Mariner 9 IRIS was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9"],"data_types":[],"start_date":"1971-11-14","stop_date":"1972-10-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/data/data_mr9_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:37.407837","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9_iris:xml_schema::1.0","title":"Mariner 9 IRIS XML Schema collection file","description":"This PDS4 XML Schema collection file for Mariner 9 IRIS was created in 2025","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Infrared Interferometer Spectrometer"],"instrument_hosts":["Mariner 9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mr9_iris/xml_schema/collection_mr9_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:38.907656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Bundle","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, \n vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase \n Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Mro","Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter","Mro"],"data_types":[],"start_date":"2006-01-01","stop_date":"2024-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/bundle.mro-crism_atmos-db.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:39.950787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db:context::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Context Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, \n vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase \n Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":[],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/collection_mro-crism_atmos-db_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:41.006467","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db:data_derived::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Derived Data Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, \n vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase \n Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":[],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/collection_mro-crism_atmos-db_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:41.971553","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db:xml_schema::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM XML Schema Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, \n vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase \n Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":[],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/collection_mro-crism_atmos-db_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:43.018396","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel::1.0","title":"MRO Accel Bundle","description":"This version of the MRO ACCEL bundle was created by the PDS Atmospheres node in 2016","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Reconnaissance Orbiter","Mars Reconnaissance orbiter"],"targets":["Mars","MARS"],"instruments":["Mro","ACCEL"],"instrument_hosts":["Mro"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/bundle_mro_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:43.923891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel:context::1.0","title":"PDS4 MRO ACCEL Context Collection","description":"This PDS4 collection_mro_accel_context file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter","MRO"],"targets":["Mars","MARS"],"instruments":["ACCEL"],"instrument_hosts":["Mro"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/collection_mro_accel_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:45.194006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel:xml_schema::1.0","title":"PDS4 MRO Accelerometer xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter"],"targets":["Mars","MARS"],"instruments":["Mro","ACCEL"],"instrument_hosts":["Mro"],"data_types":[],"start_date":"2006-04-02","stop_date":"2006-08-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:46.425695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msl_ice-dust::1.0","title":"Mars Science Laboratory Atmospheric Ice and Dust Bundle","description":"MSL image-derived atmospheric properties","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","NAVIGATION CAMERA"],"instrument_hosts":["Mars Science Laboratory","Msl"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/bundle_msl_ice-dust.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:47.424526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msl_ice-dust:context::1.0","title":"Mars Science Laboratory Atmospheric Ice and Dust Context Collection","description":"Mars Science Laboratory Atmospheric Ice, Dust Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["NAVIGATION CAMERA"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2022-12-01","stop_date":"2022-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/context/collection_msl_ice-dust_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:48.429864","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msl_ice-dust:data_derived::1.0","title":"Mars Science Laboratory Atmospheric Ice and Dust Derived Data Collection","description":"Mars Science Laboratory Atmospheric Ice and Dust Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["NAVIGATION CAMERA"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2022-12-01","stop_date":"2022-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/data_derived/collection_msl_ice-dust_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:49.437498","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msl_ice-dust:xml_schema::1.0","title":"Mars Science Laboratory Atmospheric Ice and Dust XML Schema Collection","description":"Mars Science Laboratory Atmospheric Ice and Dust XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["NAVIGATION CAMERA","MAST CAMERA LEFT"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2022-12-01","stop_date":"2022-12-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msl_ice-dust/xml_schema/collection_msl_ice-dust_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:50.440075","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl::1.1","title":"MSLEDL Bundle","description":"This PDS4 file contains the MSL EDL atmospheric reconstruction","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Msl","Accelerometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/bundle_msledl.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:51.487148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl:context::1.0","title":"MSLEDL Context","description":"This is a PDS4 Context Collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/collection_msledl_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:52.458111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl:data::1.1","title":"MSLEDL Collection","description":"MSL EDL Reconstructed Atmospheric Profiles","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2015-08-06","stop_date":"2015-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/collection_msledl_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:53.506851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl:schema::1.1","title":"MSLEDL Schema","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Msl"],"data_types":[],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/collection_msledl_xmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:54.439251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel::1.0","title":"ODYA Bundle","description":"This version of the ODYA bundle was created by the PDS Atmospheres node in 2015","node":"atm","pds_version":"PDS4","type":"bundle","missions":["2001 Mars Odyssey","Mars Odyssey"],"targets":["Mars","MARS"],"instruments":["Ody","ACCEL"],"instrument_hosts":["Ody"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/bundle_ody_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:55.444855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:context::1.0","title":"PDS4 ODYSSEY ACCELEROMETER Context Collection","description":"This PDS4 odya_context_collection file was submitted in 2014","node":"atm","pds_version":"PDS4","type":"collection","missions":["2001 Mars Odyssey","ODY"],"targets":["Mars","MARS"],"instruments":["ACCEL"],"instrument_hosts":["Ody"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/collection_odya_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:56.448156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:xml_schema::1.0","title":"PDS4 Odyssey Accelerometer xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["2001 Mars Odyssey"],"targets":["Mars","MARS"],"instruments":["Ody","ACCEL"],"instrument_hosts":["Ody"],"data_types":[],"start_date":"2006-04-02","stop_date":"2006-08-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:57.957777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms::1.0","title":"CLPS Task Order 2AB Peregrine Ion-Trap Mass Spectrometer (PITMS) for Lunar Surface Volatiles","description":"This bundle contains the data collected by the Peregine Ion Trap Mass Spectormeter aboard the Peregrine lander, along with the documents and other information necessary for the interpretation of that data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Clps To 2Ab","CLPS 2AB"],"targets":["Moon"],"instruments":["Pitms","PITMS"],"instrument_hosts":["Peregrine Lunar Lander","Clps To 2Ab Pll"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/bundle_pitms.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:58.961104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:context::1.0","title":"collection PITMS Context","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/collection_pitms_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:45:59.957163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_calibrated::1.0","title":"collection_PITMS_CAL_INVENTORY","description":"This collection contains all the PITMS calibrated data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/collection_PITMS_CAL_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:00.958160","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_derived::1.0","title":"collection_PITMS_DER_INVENTORY","description":"This collection contains all the PITMS derived data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/collection_PITMS_DER_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:01.976109","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_raw::1.0","title":"collection_PITMS_RAW_INVENTORY","description":"This collection contains all the PITMS raw data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/collection_PITMS_RAW_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:03.023820","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:xml_schema::1.0","title":"collection PITMS XML Schema","description":"XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Clps To 2Ab","CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/collection_pitms_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:03.991108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_lnms_gas_samples::1.0","title":"Neutral Mass Spectrometer for Pioneer Venus Large Probe Gas Sampling Data (1-208 amu) Bundle","description":"This bundle contains one file of gas sampling measurements at 1-15 amu \n and 15-208 amu acquired by Neutral Mass Spectrometer (LNMS) as the \n Pioneer Venus Large Probe descended through the atmosphere of Venus\n on 9 December 1978 and continuously measured the gas coming through inlets\n on the side of the probe. For this restoration, ground received time,\n atmospheric pressure, temperature, derived density, and compressibility\n factor data from simultaneous measurements made the Large Probe Atmospheric\n Structure (LAS) instrument were interpolated for and merged into the LNMS\n gas sampling file. The data cover an altitude range of 64.2 to 0.2 km and\n span about 55 minutes. The data are provided as an ASCII comma-separated\n values file.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Lnms","Las","Neutral Mass Spectrometer for Pioneer Venus Large Probe","Atmospheric Structure Experiment for Pioneer Venus Large Probe"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","Lp"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/bundle.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:05.041022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_lnms_gas_samples:context::1.0","title":"Neutral Mass Spectrometer for Pioneer Venus Large Probe Gas Sampling Data (1-208 amu) - Context Collection","description":"This collection identifies PDS4 context products referenced in this bundle","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Neutral Mass Spectrometer for Pioneer Venus Large Probe","Atmospheric Structure Experiment for Pioneer Venus Large Probe"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:05.966085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_lnms_gas_samples:data::1.0","title":"Neutral Mass Spectrometer for Pioneer Venus Large Probe Gas Sampling Data (1-208 amu) - Data Collection","description":"This collection contains one file of gas sampling measurements at 1-15 amu \n and 15-208 amu acquired by Neutral Mass Spectrometer (LNMS) as the \n Pioneer Venus Large Probe descended through the atmosphere of Venus\n on 9 December 1978 and continuously measured the gas coming through inlets\n on the side of the probe. For this restoration, ground received time,\n atmospheric pressure, temperature, derived density, and compressibility\n factor data from simultaneous measurements made the Large Probe Atmospheric\n Structure (LAS) instrument were interpolated for and merged into the LNMS\n gas sampling file. The data cover an altitude range of 64.2 to 0.2 km and\n span about 55 minutes. The data are provided as an ASCII comma-separated\n values file.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Neutral Mass Spectrometer for Pioneer Venus Large Probe","Atmospheric Structure Experiment for Pioneer Venus Large Probe"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/data/collection_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:06.966319","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_lnms_gas_samples:xml_schema::1.0","title":"Neutral Mass Spectrometer for Pioneer Venus Large Probe Gas Sampling Data (1-208 amu) - Schema Collection","description":"This collection identifies PDS4 XML schema products referenced in this bundle","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Neutral Mass Spectrometer for Pioneer Venus Large Probe","Atmospheric Structure Experiment for Pioneer Venus Large Probe"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_lnms_gas_samples/xml_schema/collection_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:07.971155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed::1.0","title":"Pioneer Venus Special Events Data (SED) Bundle","description":"This bundle contains the Pioneer Venus Special Events Data (SED) extracted\n from NSSDCA dataset PSPA-00034 and reformatted as ASCII CSV products. The\n SED data consist of separate files for a number of instruments on the\n Pioneer Venus orbiter as well as the four atmospheric probes (Multiprobes).\n Data products include: Multiprobe Atmospheric Structure pressure and\n temperature data during entry and descent; Orbiter Gas Chromatograph lower\n atmospheric composition data; Large Probe Infrared Radiometer pre-entry and\n descent data; Large Probe Solar Flux Radiometer lower atmospheric up, down,\n and net flux data, Multiprobe Nephelometer atmospheric backscatter,\n temperature, UV and VIS background data, and spectral functions; Pioneer\n Venus Atmospheric Drag model and density data; Orbiter Solar Wind Plasma\n Analyzer proton parameters outside the bow shock; and Small Probes Net Flux\n Radiometer atmospheric data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Oad","Opa","Las","Lgc","Lir","Ln","Lsfr","Sas","Snfr","Sn","Sas","Snfr","Sn","Sas","Snfr","Sn","ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)","Pvo","Lp","Sp Day","Sp Night","Sp North"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/bundle_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:08.970309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:context::1.0","title":"Pioneer Venus Special Events Data (SED) - Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/collection_context_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:09.980503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_atm_struct::1.0","title":"Pioneer Venus Special Events Data (SED) - Multiprobes Atmospheric Structure Data Collection","description":"This collection contains middle and low atmospheric state properties from\n observations performed by the Atmospheric Structure Experiments on board\n the Pioneer Venus Large Probe and the Small Day, Night, and North Probes\n during entry and descent to the surface of Venus. Small Probe data from\n middle altitude observations include trajectory parameters. This collection\n also includes a Night Probe data file that extends the state properties to\n higher altitudes. These data were extracted from NSSDCA dataset PSPA-00034,\n Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV\n products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/collection_data_atm_struct.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:10.977724","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_lgc::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Gas Chromatograph Data Collection","description":"This collection contains atmospheric composition data from the \n Gas Chromatograph on board the Pioneer Venus Large Probe during\n descent to the surface of Venus. These data were extracted from NSSDCA\n dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and\n reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/collection_data_lgc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:11.978848","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_lir::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Infrared Radiometer Data Collection","description":"This collection contains atmospheric data from the Infrared Radiometer on\n board the Pioneer Venus Large Probe during pre-entry and descent to the\n surface of Venus. This collection also includes onboard calibration data.\n These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus\n Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE INFRARED RADIOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/collection_data_lir.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:12.982810","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_lsfr::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Solar Flux Radiometer Data Collection","description":"This collection contains lower atmospheric solar down, up, and net flux\n data from the Solar Flux Radiometer on board the Pioneer Venus Large Probe\n during descent to the surface of Venus. These data were extracted from\n NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and\n reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/collection_data_lsfr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:14.030562","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_neph::1.0","title":"Pioneer Venus Special Events Data (SED) - Multiprobes Nephelometer Data Collection","description":"This collection contains nephelometer data from each of the four Pioneer\n Venus atmospheric probes. The data include: 1) backscatter channel data; 2)\n ambient background radiation channels and spectral functions; and 3) time\n vs. temperature. These data were extracted from NSSDCA data set PSPA-00034,\n Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV\n products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/collection_data_neph.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:15.002879","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_oad::1.0","title":"Pioneer Venus Special Events Data (SED) - Orbiter Atmospheric Drag Observations and Model Data Collection","description":"This collection contains one file of observations acquired by the\n Atmospheric Drag Experiment during orbits 5-246 (1978-12-09 to 1979-08-07)\n of the Pioneer Venus Orbiter and one file of output from the Pioneer Venus\n Drag Atmospheric Model. The observational data include altitude, density,\n scale height, exospheric temperature, local solar time, and Venus longitude.\n The model data include local solar time, altitude, density, number density\n of atomic oxygen, ratio of number densities of O/CO2, and temperature.\n These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus\n Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS"],"instrument_hosts":["PIONEER VENUS ORBITER"],"data_types":[],"start_date":"1978-12-09","stop_date":"1979-08-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/collection_data_oad.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:16.051224","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_opa::1.0","title":"Pioneer Venus Special Events Data (SED) - Orbiter Solar Wind Plasma Analyzer Data Collection","description":"This collection contains reduced solar wind flow speed and proton number\n density observed by the Solar Wind Plasma Analyzer just before the\n (first) inbound crossing of the bow shock of Venus, and the same\n quantities just after the (last) outbound crossing by the Pioneer Venus\n Orbiter. This collection also contains one file of 9-minute solar wind\n proton bulk velocities while the orbiter was outside bow shock and\n before beginning inbound proton measurements during orbit 7 on\n 1978-12-11. These data were extracted from NSSDCA dataset PSPA-00034,\n Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII\n CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS"],"instrument_hosts":["PIONEER VENUS ORBITER"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/collection_data_opa.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:16.986302","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_snfr::1.0","title":"Pioneer Venus Special Events Data (SED) - Small Probes Net Flux Radiometers Data Collection","description":"This collection contains lower atmospheric data (66-13 km) from the Net\n Flux Radiometers on board the Pioneer Venus Small Day, Night, and North\n Probes during descent to the surface of Venus. These data were extracted\n from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED),\n and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER"],"instrument_hosts":["PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/collection_data_snfr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:17.998568","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:xml_schema::1.0","title":"Pioneer Venus Special Events Data (SED) - Schema Collection","description":"PDS4 xml_schema collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/collection_schema_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:18.999741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvmp_dlbi::1.0","title":"Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components Data Bundle","description":"This bundle contains data on relative crustal and atmospheric velocity\n components from the Pioneer Venus Multiprobe Differential Long Base Line\n Interferometer (DLBI) experiments conducted during the descent of four\n entry probes through the atmosphere of Venus on 9 December 1978. The time\n resolution is approximately 6.3 seconds for the large probe data and 18.9\n seconds for the three small probes.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["Dlbi","Dlbi","Dlbi","Dlbi","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"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)","Lp","Sp Day","Sp Night","Sp North"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/bundle.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:20.004946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvmp_dlbi:context::1.0","title":"Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components Data - Context Collection","description":"This collection identifies the PDS4 context products referenced in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["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"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:21.005634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvmp_dlbi:data::1.0","title":"Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components - Data Collection","description":"This collection contains data on relative crustal and atmospheric velocity\n components from the Pioneer Venus Multiprobe Differential Long Base Line\n Interferometer (DLBI) experiments conducted during the descent of four\n entry probes through the atmosphere of Venus on 9 December 1978. The\n probes continuously measured the components of their velocity relative to\n Venus' crust and to the ambient atmosphere, both in meters per second. The\n time resolution is approximately 6.3 seconds for the large probe data and\n 18.9 seconds for the three small probes. The data products are the\n reformatted contents of datasets PSPA-00344, PSPA-00126, PSPA-00308, and\n PSPA-00035 held on tape at NASA Space Science Data Coordinated Archive\n (NSSDCA).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["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"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/data/collection_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:22.007146","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvmp_dlbi:xml_schema::1.0","title":"Pioneer Venus Multiprobe DLBI Relative Crustal and Atmospheric Velocity Components Data - Schema Collection","description":"This collection identifies the PDS4 XML schema products referenced in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","PIONEER VENUS"],"targets":["Venus"],"instruments":["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"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvmp_dlbi/xml_schema/collection_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:22.994639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse::1.0","title":"Pioneer Venus Orbiter Radio Occultation Profiles","description":"Derived data products from Pioneer Venus Orbiter radio occultations \n at Venus and their accompanying documentation. Derived data products \n include: (A) frequency data from the NSSDC, (B) Venus ionospheric \n electron density profiles from the NSSDC, (C) Venus neutral \n atmospheric profiles from the NSSDC, (D) Venus ionospheric electron \n density profiles from graphical sources, and (E) Venus neutral \n atmospheric profiles from graphical sources.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orse","Radio Science Experiment"],"instrument_hosts":["Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/bundle_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:24.007947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse:context::1.0","title":"Pioneer Venus Orbiter Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus Orbiter"],"targets":["Venus"],"instruments":["Orbiter Radio Science Experiment"],"instrument_hosts":["Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/collection_context_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:25.036873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse:data_derived::1.0","title":"Pioneer Venus Orbiter Radio Occultation Profiles Derived Data Collection","description":"Derived data products from Pioneer Venus Orbiter \n radio occultations at Venus. Derived data products include: \n (A) frequency data from the NSSDC, (B) Venus ionospheric \n electron density profiles from the NSSDC, (C) Venus neutral \n atmospheric profiles from the NSSDC, (D) Venus ionospheric \n electron density profiles from graphical sources, and (E) Venus \n neutral atmospheric profiles from graphical sources.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Radio Science Experiment"],"instrument_hosts":["Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/collection_pvoro_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:26.085238","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse:xml_schema::1.0","title":"Pioneer Venus Orbiter Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus Orbiter"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/collection_schema_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:27.059160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere::1.0","title":"Saturn Ionosphere Bundle","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/bundle_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:28.108019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere:context::1.1","title":"Saturn Ionosphere Context Collection","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/collection_context_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:29.020162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere:data_derived::1.1","title":"Saturn Ionosphere Observations Collection","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/collection_data_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:30.017697","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere:schema::1.0","title":"Saturn Ionosphere Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/collection_schema_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:31.020923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Bundle","description":"Molecular hydrogen and temperature profiles of Saturn's \n thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["Co","Co","ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter","Co"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/bundle_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:32.025170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:context::1.1","title":"Structure of Saturn's Thermosphere from Stellar Occultations Context Collection","description":"Molecular hydrogen and temperature profiles of Saturn's \n thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/collection_context_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:33.028003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:data::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Derived Data Collection","description":"Molecular hydrogen and temperature profiles of Saturn's \n thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/collection_data_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:34.025750","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:schema::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/collection_schema_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:35.025138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere::1.0","title":"Titan Ionosphere Bundle","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Co","Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/bundle_corss_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:36.049275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere:context::1.0","title":"Titan Ionosphere Context Collection","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/collection_context_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:37.097051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere:data_derived::1.1","title":"Titan Ionosphere Observations Collection","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/collection_data_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:38.071746","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere:schema::1.0","title":"Titan Ionosphere Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/collection_schema_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:39.120457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp::2.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Bundle","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["Co","cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/bundle_corsstpp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:40.050210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp:context::1.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Context Collection","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/collection_corsstppcontext.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:41.041363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp:data_derived::2.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Derived Data Collection","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/collection_corsstppdata.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:42.044746","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp:schema::1.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini Huygens","Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Co"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/collection_corsstpp_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:43.047548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) for VG Bundle","description":"This version of the Ultraviolet Spectrometer (UVS) for Voyager (VG) bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["Uvs","Uvs","UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2","Vg1","Vg2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/bundle_vguvs.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:44.048340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs:calibration::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) Calibration Collection","description":"Calibration collection for Voyager 1 UVS and Voyager 2 UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/calibration_vguvs_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:45.058097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs:context::1.0","title":"Voyager (VG) Ultraviolet Spectrometer Context Collection","description":"This PDS4 context_collection file was created in 2022","node":"atm","pds_version":"PDS4","type":"collection","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/context/collection_vguvs_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:46.057429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs:data_raw::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) Data collection","description":"Data collection for Voyager 1 UVS and Voyager 2 UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":"1977-08-20","stop_date":"1989-10-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/data_vguvs_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:47.062524","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs:xml_schema::1.0","title":"Voyager (VG) Ultraviolet Spectrometer XML_Schema Collection","description":"XML Schema collection for the Voyager UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Voyager","VOYAGER"],"targets":["Jupiter","Saturn","Uranus","Neptune","JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/xml_schema/collection_vguvs_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:48.106949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden::1.0","title":"Viking Orbiters 1 and 2 Radio Occultation Electron Density Document Collection","description":"Derived data products from Viking Orbiter 1 and 2 radio occultations at Mars and their accompanying documentation. \n Derived data products are electron density profiles from occultations.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Viking","Viking Orbiters 1 and 2"],"targets":["Mars"],"instruments":["Vo1","Vo2","Radio Science Subsystem"],"instrument_hosts":["Vo1","Vo2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/bundle_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:49.080837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden:context::1.0","title":"Viking Orbiter 1 and 2 Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking","Viking Orbiter"],"targets":["Mars"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Vo1","Vo2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/collection_context_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:50.129915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden:data_derived::1.0","title":"Viking Orbiters 1 and 2 Radio Occultation Electron Density Derived Data Collection","description":"Derived data products from Viking Orbiter 1 and 2 radio occultations at Mars. \n Derived data products are electron density profiles from occultations.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking","Viking Orbiters 1 and 2"],"targets":["Mars"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Vo1","Vo2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/collection_voroelden_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:51.062895","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden:xml_schema::1.0","title":"Viking Orbiter 1 and 2 Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Vo1","Vo2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/collection_schema_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:52.070351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wt_threshold_speed::1.0","title":"Wind Tunnel Threshold Speed Document Bundle","description":"Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Wt Threshold","Planetary Aeolian Laboratory Wind Tunnel Threshold Speed"],"targets":["Mars","Venus","Titan","Earth","Mars Analog","Venus Analog","Titan Analog","Earth Analog"],"instruments":["Marswit","Twt","Vwt","Cwt","Isuwt","Awtsi 2004","Awtsii 2010","Sloped Wt","Tewt","Bagnold Wt","Chepil Wt","Guelph Wt","Belly Wt","Darwish Wt","Shapotou Wt","Logie Wt","Pietersma Portable Wt","Butterfield Wt","Ice Wt","Dunhuang Portable Wt","Usda Ars Wt","Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/bundle_wt_threshold_speed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:53.067820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wt_threshold_speed:context::1.0","title":"Wind Tunnel Threshold Speed Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Wt Threshold","Planetary Boundary Layer Wind Tunnel Particle Threshold"],"targets":["Mars","Venus","Titan","Earth","Mars Analog","Venus Analog","Titan Analog","Earth Analog"],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/collection_wt_threshold_speed_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:54.070977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wt_threshold_speed:data::1.0","title":"Wind Tunnel Threshold Speed Document Collection","description":"Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels","node":"atm","pds_version":"PDS4","type":"collection","missions":["Wt Threshold","Planetary Boundary Layer Wind Tunnel Particle Threshold"],"targets":["Mars","Venus","Titan","Earth","Mars Analog","Venus Analog","Titan Analog","Earth Analog"],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/collection_wt_threshold_speed_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/","scraped_at":"2026-02-02T21:46:55.070916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id": "MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0", "publication_date": "2015-10-09", "description": "This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS UNCALIBRATED DATA", "volume_id": "MESSMAS_1001", "volume_name": "MESSENGER MASCS UNCALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_1001 (MESSENGER Mascs Uncalibrated Data Archive)"} +{"id": "MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0", "publication_date": "2015-10-09", "description": "This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS UNCALIBRATED DATA", "volume_id": "MESSMAS_1001", "volume_name": "MESSENGER MASCS UNCALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_1001 (MESSENGER Mascs Uncalibrated Data Archive)"} +{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V2.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} +{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} +{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} +{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} +{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} +{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-09-25", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2214", "volume_name": "VOLUME 14: RAW DATA 1994-10-11 TO 1994-10-12", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2214", "node": "atm", "targets": ["Venus"], "title": "ATM Volume mg_2201 , mg_2202 , mg_2203 , mg_2204 , mg_2205 , mg_2206 , mg_2207 , mg_2208 , mg_2209 , mg_2210 , mg_2211 , mg_2212 , mg_2213 , mg_2214 (Magellan Radio Occultation Raw Data Records)"} +{"id": "MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0", "publication_date": "1996-06-27", "description": "This volume contains archival data produced from dual-frequency ingress radio occultation experiments using the Magellan orbiter on three consecutive orbits (#3212 - #3214) on October 5 and 6, 1991. The data sets include vertical profiles of refractivity, temperature, pressure and density in the neutral Venus atmosphere, and vertical profiles of 13-cm and 3.6-cm absorptivity and abundance of sulfuric acid vapor (H2SO4). The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MAGELLAN OCCULTATION PROFILE DATA RECORD", "volume_id": "MG_2401", "volume_name": "MAGELLAN OCCULTATION PROFILE DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2401", "node": "atm", "targets": ["Venus"], "title": "ATM Volume mg_2401 (Magellan Venus Radio Occultation Atmospheric Profiles)"} +{"id": "PVO-V-OUVS-5-IMIDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PVO-V-OUVS-5-IMIDR-V1.0", "publication_date": "1995-09-27", "description": "This volume contains the Pioneer Venus Orbiter Inbound Monochrome Image Data Record (IMIDR) archive, a set of rectified monochromatic images of Venus acquired by the Pioneer Venus Orbiter Ultraviolet Spectrometer (PVOUVS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "volume_id": "PV01_1002", "volume_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume pv01_1001 , pv01_1002 (Pioneer Venus Orbiter OUVS Inbound Monochrome Images)"} +{"id": "VCO-V-IR1-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_0001", "volume_name": "VENUS CLIMATE ORBITER IR1 RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_0001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir1_0001 (VENUS CLIMATE ORBITER IR1 DATA)"} +{"id": "VCO-V-IR1-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_1001", "volume_name": "VENUS CLIMATE ORBITER IR1 CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir1_1001 (VENUS CLIMATE ORBITER IR1 DATA)"} +{"id": "VCO-V-IR1-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_2001", "volume_name": "VENUS CLIMATE ORBITER IR1 GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir1_2001 (VENUS CLIMATE ORBITER IR1 DATA)"} +{"id": "VCO-V-IR2-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_0001", "volume_name": "VENUS CLIMATE ORBITER IR2 RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_0001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir2_0001 (VENUS CLIMATE ORBITER IR2 DATA)"} +{"id": "VCO-V-IR2-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_1001", "volume_name": "VENUS CLIMATE ORBITER IR2 CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir2_1001 (VENUS CLIMATE ORBITER IR2 DATA)"} +{"id": "VCO-V-IR2-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_2001", "volume_name": "VENUS CLIMATE ORBITER IR2 GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir2_2001 (VENUS CLIMATE ORBITER IR2 DATA)"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0001", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0001 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0002", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0002 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0003", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0003 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0004", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0004 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0005", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0005 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0006", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0006 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1001", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1001 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1002", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1002 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1003", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1003 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1004", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1004 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1005", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1005 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1006", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1006 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1007", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1007 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2001", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2001 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2002", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2002 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2003", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2003 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2004", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2004 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2005", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2005 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2006", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2006 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2007", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2007 (VENUS CLIMATE ORBITER LIR DATA)"} +{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2017-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1001", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_1001 (VENUS CLIMATE ORBITER RS DATA)"} +{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2020-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1002", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_1002 (VENUS CLIMATE ORBITER RS DATA)"} +{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2021-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2019-02-09 to 2020-08-24.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1003", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_1003 (VENUS CLIMATE ORBITER RS DATA)"} +{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2023-06-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1004", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_1004 (VENUS CLIMATE ORBITER RS DATA)"} +{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2017-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2001", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_2001 (VENUS CLIMATE ORBITER RS DATA)"} +{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2020-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2002", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_2002 (VENUS CLIMATE ORBITER RS DATA)"} +{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2021-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2020-02-09 to 2020-08-24.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2003", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_2003 (VENUS CLIMATE ORBITER RS DATA)"} +{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2023-06-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2004", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_2004 (VENUS CLIMATE ORBITER RS DATA)"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0001", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0001 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0002", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0002 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0003", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0003 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0004", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0004 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0005", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0005 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0006", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0006 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0007", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0007 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1001", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1001 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1002", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1002 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1003", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1003 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1004", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1004 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1005", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1005 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1006", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1006 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1007", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1007 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2001", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2001 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2002", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2002 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2003", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2003 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2004", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2004 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2005", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2005 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2006", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2006 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2007", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2007 (VENUS CLIMATE ORBITER UVI DATA)"} +{"id": "VEGA1/VEGA2-V-2/3-VENUS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VEGA1/VEGA2-V-2/3-VENUS-V1.0", "publication_date": "2020-02-01", "description": "This volume contains Vega observations from the balloon and lander at Venus.", "volume_set_name": "VEGA VENUS DATA", "volume_id": "VEGA_5001", "volume_name": "VEGA VENUS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vega_5001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vega_5001 (VEGA VENUS DATA)"} +{"id": "VEX-V-RSS-1-ENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "VEX-V-RSS-1-ENT-V1.0", "publication_date": "2013-03-26", "description": "This volume contains raw and partially processed radio science data and ancillary files from the Venus Express mission.", "volume_set_name": "VEX: RAW DSN RADIO SCIENCE DATA EXTENDED MISSION", "volume_id": "VXRS_1104", "volume_name": "VOLUME 1104: VERA DSN RAW DATA 2012", "browse_url": "https://atmos.nmsu.edu/PDS/data/VXRS_1104/", "node": "atm", "targets": ["Venus"], "title": "ATM Volume VXRS_1101 , VXRS_1102 , VXRS_1103 , VXRS_1104 (VEX: Raw DSN Radio Science Data Extended Mission)"} +{"id": "MEX-M-PFS-2-EDR-NOMINAL-V1.0", "pds_version_id": "PDS3", "data_set_id": "MEX-M-PFS-2-EDR-NOMINAL-V1.0", "publication_date": "2008-07-10", "description": "Data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF- IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA)", "volume_set_name": "MARS EXPRESS PFS DATA", "volume_id": "MEXPFS_1001", "volume_name": "VOLUME 1: MARS EXPRESS PFS DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mexpfs_1001 (Mars Express Mars PFS EDR Nominal Mission Data)"} +{"id": "MEX-M-PFS-2-EDR-EXT1-V1.0", "pds_version_id": "PDS3", "data_set_id": "MEX-M-PFS-2-EDR-EXT1-V1.0", "publication_date": "2008-07-23", "description": "Data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF- IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA)", "volume_set_name": "MARS EXPRESS PFS DATA", "volume_id": "MEXPFS_1001", "volume_name": "VOLUME 1: MARS EXPRESS PFS DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mexpfs_1002 (Mars Express Mars PFS EDR Nominal Mission Data)"} +{"id": "MGS-M-MOC-4-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOC-4-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} +{"id": "MGS-M-MOLA-1-AEDR-L0-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-1-AEDR-L0-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} +{"id": "MGS-M-MOLA-3-PEDR-L1A-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-3-PEDR-L1A-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} +{"id": "MGS-M-MOLA-5-PEDR-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-5-PEDR-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} +{"id": "MGS-M-TES-3-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-TES-3-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} +{"id": "MGS-M-TES-5-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-TES-5-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} +{"id": "MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0", "pds_version_id": "PDS3", "data_set_id": "MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} +{"id": "MGS-M-MAG/ER-5-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MAG/ER-5-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} +{"id": "MGS-M-ACCEL-2-EDR-V1.1", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-2-EDR-V1.1", "publication_date": "2002-05-10", "description": "This volume contains raw data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0001", "volume_name": "MGS AEROBRAKING ACCELEROMETER RAW DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgsa_0001 (Mars Global Surveyor Accelerometer Raw Data)"} +{"id": "MGS-M-ACCEL-5-PROFILE-V1.2", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-5-PROFILE-V1.2", "publication_date": "2002-05-10", "description": "This volume contains reduced data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0002", "volume_name": "MGS AEROBRAKING ACCELEROMETER REDUCED DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgsa_0002 (Mars Global Surveyor Accelerometer Reduced Data)"} +{"id": "MGS-M-ACCEL-5-ALTITUDE-V1.1", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-5-ALTITUDE-V1.1", "publication_date": "2002-05-10", "description": "This volume contains reduced data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0002", "volume_name": "MGS AEROBRAKING ACCELEROMETER REDUCED DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgsa_0002 (Mars Global Surveyor Accelerometer Reduced Data)"} +{"id": "MODEL-M-AMES-GCM-5-LAT-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} +{"id": "MODEL-M-AMES-GCM-5-LAT-LON-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-LON-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} +{"id": "MODEL-M-AMES-GCM-5-LAT-PRES-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-PRES-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} +{"id": "MODEL-M-AMES-GCM-5-LAT-TIME-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-TIME-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} +{"id": "MODEL-M-AMES-GCM-5-TIME-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-TIME-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} +{"id": "MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} +{"id": "MGS-M-RSS-1-CRU-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-CRU-V1.0", "publication_date": "1999-12-29", "description": "This volume contains raw data, partially processed data, ancillary files, and final documentation from the Mars Global Surveyor Radio Science investigation Cruise Phase.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM CRUISE", "volume_id": "MORS_0156", "volume_name": "VOLUME 0156: 1997-08-30 to 1997-09-01", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0156", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_0101 - mors_0156 (Mars Global Surveyor Radio Science Cruise Data)"} +{"id": "MGS-M-RSS-1-MOI-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-MOI-V1.0", "publication_date": "1997-10-02", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM MOI", "volume_id": "MORS_0210", "volume_name": "VOLUME 0210: 1997-09-28 to 1997-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0210", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_0201 - mors_0359 (Mars Global Surveyor Radio Science Mars Orbit Insertion (MOI) Data)"} +{"id": "MGS-M-RSS-1-MAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-MAP-V1.0", "publication_date": "1999-04-16", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM MAPPING", "volume_id": "MORS_0410", "volume_name": "VOLUME 0410: 1999-04-14 to 1999-04-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0410", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_0401 - mors_0584 (Mars Global Surveyor Radio Science Mapping Data)"} +{"id": "MGS-M-RSS-1-EXT-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-EXT-V1.0", "publication_date": "2001-03-21", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RS DATA FROM EXTENDED MISSION", "volume_id": "MORS_0610", "volume_name": "VOLUME 0610: 2001-03-11 TO 2001-03-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0610", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_0601 - mors_08xx (Mars Global Surveyor Radio Science Mapping Data)"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2007-09-25", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1038", "volume_name": "VOLUME 1038: SPC, JUL - SEP 06 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1038", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_1001 , mors_1002 , mors_1003 , mors_1004 , mors_1005 , mors_1006 , mors_1007 , mors_1008 , mors_1009 , mors_1010 , mors_1011 , mors_1012 , mors_1013 , mors_1014 , mors_1015 , mors_1016 , mors_1017 , mors_1018 , mors_1019 , mors_1020 , mors_1021 , mors_1022 , mors_1023 , mors_1024 , mors_1025 , mors_1026 , mors_1027 , mors_1028 , mors_1029 , mors_1030 , mors_1031 , mors_1032 , mors_1033 , mors_1034 , mors_1035 , mors_1036 , mors_1037 , mors_1038 (Mars Global Surveyor Radio Science Reduced Data)"} +{"id": "MGS-M-RSS-5-TPS-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-TPS-V1.0", "publication_date": "2008-06-04", "description": "MORS_1101 contains the complete collection of Mars Global Surveyor radio occultation neutral atmosphere temperature-pressure profiles reorganized into a single archival volume.", "volume_set_name": "MGS RADIO SCIENCE - SCIENCE DATA PRODUCTS", "volume_id": "MORS_1101", "volume_name": "MGS RS TPS ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1101", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_1101 (MGS RS: Atmospheric Temperature-Pressure Profiles)"} +{"id": "MGS-M-RSS-5-EDS-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-EDS-V1.0", "publication_date": "2007-09-28", "description": "MORS_1102 contains the complete collection of Mars Global Surveyor radio occultation ionosphere electron density profiles reorganized into a single archival volume.", "volume_set_name": "MGS RADIO SCIENCE - SCIENCE DATA PRODUCTS", "volume_id": "MORS_1102", "volume_name": "MGS RS EDS ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1102", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_1102 (MGS Radio Science - Science Data Products)"} +{"id": "MPFL-M-ASIMET-2-EDR-SURF-V1.0", "pds_version_id": "PDS3", "data_set_id": "MPFL-M-ASIMET-2-EDR-SURF-V1.0", "publication_date": "2000-08-25", "description": "This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission.", "volume_set_name": "MARS PATHFINDER: THE ASI/MET ARCHIVE", "volume_id": "MPAM_0001", "volume_name": "VOLUME 1: EDL ASI-MET AND SURFACE MET DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)"} +{"id": "MPFL-M-ASIMET-3-RDR-SURF-V1.0", "pds_version_id": "PDS3", "data_set_id": "MPFL-M-ASIMET-3-RDR-SURF-V1.0", "publication_date": "2000-08-25", "description": "This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission.", "volume_set_name": "MARS PATHFINDER: THE ASI/MET ARCHIVE", "volume_id": "MPAM_0001", "volume_name": "VOLUME 1: EDL ASI-MET AND SURFACE MET DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)"} +{"id": "MPFL-M-ASIMET-2/3-EDR/RDR-EDL-V1.0", "pds_version_id": "PDS3", "data_set_id": "MPFL-M-ASIMET-2/3-EDR/RDR-EDL-V1.0", "publication_date": "2000-08-25", "description": "This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission.", "volume_set_name": "MARS PATHFINDER: THE ASI/MET ARCHIVE", "volume_id": "MPAM_0001", "volume_name": "VOLUME 1: EDL ASI-MET AND SURFACE MET DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)"} +{"id": "MPFL-M-ASIMET-4-DDR-EDL-V1.0", "pds_version_id": "PDS3", "data_set_id": "MPFL-M-ASIMET-4-DDR-EDL-V1.0", "publication_date": "2000-08-25", "description": "This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission.", "volume_set_name": "MARS PATHFINDER: THE ASI/MET ARCHIVE", "volume_id": "MPAM_0001", "volume_name": "VOLUME 1: EDL ASI-MET AND SURFACE MET DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)"} +{"id": "MR9-M-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MR9-M-IRIS-3-RDR-V1.0", "publication_date": "1998-03-12", "description": "This volume contains data produced from the Mariner 9 IRIS experiment. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MARINER 9 IRIS SPECTRAL OBSERVATIONS OF MARS", "volume_id": "MR9_1001", "volume_name": "MARINER 9 IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mr9_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mr9_1001 (Mariner 9 Infrared Interferometer Spectrometer (IRIS) Spectral Observations of Mars)"} +{"id": "MRO-M-ACCEL-2-ACCELDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-ACCEL-2-ACCELDATA-V1.0", "publication_date": "2010-03-08", "description": "This volume contains raw and reduced data from the MRO Accelerometer instrument.", "volume_set_name": "MARS MRO ACCELEROMETER DATA", "volume_id": "MROA_0001", "volume_name": "MRO ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mroa_0001 (MRO ACCELEROMETER DATA)"} +{"id": "MRO-M-ACCEL-5-PROFILE-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-ACCEL-5-PROFILE-V1.0", "publication_date": "2010-03-08", "description": "This volume contains raw and reduced data from the MRO Accelerometer instrument.", "volume_set_name": "MARS MRO ACCELEROMETER DATA", "volume_id": "MROA_0001", "volume_name": "MRO ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mroa_0001 (MRO ACCELEROMETER DATA)"} +{"id": "MRO-M-ACCEL-5-ALTITUDE-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-ACCEL-5-ALTITUDE-V1.0", "publication_date": "2010-03-08", "description": "This volume contains raw and reduced data from the MRO Accelerometer instrument.", "volume_set_name": "MARS MRO ACCELEROMETER DATA", "volume_id": "MROA_0001", "volume_name": "MRO ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mroa_0001 (MRO ACCELEROMETER DATA)"} +{"id": "MRO-M-MCS-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-MCS-2-EDR-V1.0", "publication_date": "2006-07-06", "description": "This volume contains uncalibrated science and engineering data from the MRO MCS instrument", "volume_set_name": "MARS CLIMATE SOUNDER EDR", "volume_id": "MROM_0227", "volume_name": "VOLUME 227: JULY 2025", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0227", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mrom_0001 , mrom_0002 , mrom_0003 , mrom_0004 , mrom_0005 , mrom_0006 , mrom_0007 , mrom_0008 , mrom_0009 , mrom_0010 , mrom_0011 , mrom_0012 , mrom_0013 , mrom_0014 , mrom_0015 , mrom_0016 , mrom_0017 , mrom_0018 , mrom_0019 , mrom_0020 , mrom_0021 , mrom_0022 , mrom_0023 , mrom_0024 , mrom_0025 , mrom_0026 , mrom_0027 , mrom_0028 , mrom_0029 , mrom_0030 , mrom_0031 , mrom_0032 , mrom_0033 , mrom_0034 , mrom_0035 , mrom_0036 , mrom_0040 , mrom_0041 , mrom_0042 , mrom_0043 , mrom_0044 , mrom_0045 , mrom_0046 , mrom_0047 , mrom_0048 , mrom_0049 , mrom_0050 , mrom_0051 , mrom_0052 , mrom_0053 , mrom_0054 , mrom_0055 , mrom_0056 , mrom_0057 , mrom_0058 , mrom_0059 , mrom_0060 , mrom_0061 , mrom_0062 , mrom_0063 , mrom_0064 , mrom_0065 , mrom_0066 , mrom_0067 , mrom_0068 , mrom_0069 , mrom_0070 , mrom_0071 , mrom_0072 , mrom_0073 , mrom_0074 , mrom_0075 , mrom_0076 , mrom_0077 , mrom_0078 , mrom_0079 , mrom_0080 , mrom_0081 , mrom_0082 , mrom_0083 , mrom_0084 , mrom_0085 , mrom_0086 , mrom_0087 , mrom_0088 , mrom_0089 , mrom_0090 , mrom_0091 , mrom_0092 , mrom_0093 , mrom_0094 , mrom_0095 , mrom_0096 , mrom_0097 , mrom_0098 , mrom_0099 , mrom_0100 , mrom_0101 , mrom_0102 , mrom_0103 , mrom_0104 , mrom_0105 , mrom_0106 , mrom_0107 , mrom_0108 , mrom_0109 , mrom_0110 , mrom_0111 , mrom_0112 , mrom_0113 , mrom_0114 , mrom_0115 , mrom_0116 , mrom_0117 , mrom_0118 , mrom_0119 , mrom_0120 , mrom_0121 , mrom_0122 , mrom_0123 , mrom_0124 , mrom_0125 , mrom_0126 , mrom_0127 , mrom_0128 , mrom_0129 , mrom_0130 , mrom_0131 , mrom_0132 , mrom_0133 , mrom_0134 , mrom_0135 , mrom_0136 , mrom_0137 , mrom_0138 , mrom_0139 , mrom_0140 , mrom_0141 , mrom_0142 , mrom_0143 , mrom_0144 , mrom_0145 , mrom_0146 , mrom_0147 , mrom_0148 , mrom_0149 , mrom_0150 , mrom_0151 , mrom_0152 , mrom_0153 , mrom_0154 , mrom_0155 , mrom_0156 , mrom_0157 , mrom_0158 , mrom_0159 , mrom_0160 , mrom_0161 , mrom_0162 , mrom_0163 , mrom_0164 , mrom_0165 , mrom_0166 , mrom_0167 , mrom_0168 , mrom_0169 , mrom_0170 , mrom_0171 , mrom_0172 , mrom_0173 , mrom_0174 , mrom_0175 , mrom_0176 , mrom_0177 , mrom_0178 , mrom_0179 , mrom_0180 , mrom_0181 , mrom_0182 , mrom_0183 , mrom_0184 , mrom_0185 , mrom_0186 , mrom_0187 , mrom_0188 , mrom_0189 , mrom_0190 , mrom_0191 , mrom_0192 , mrom_0193 , mrom_0194 , mrom_0195 , mrom_0196 , mrom_0197 , mrom_0198 , mrom_0199 , mrom_0200 , mrom_0201 , mrom_0202 , mrom_0203 , mrom_0204 , mrom_0205 , mrom_0206 , mrom_0207 , mrom_0208 , mrom_0209 , mrom_0210 , mrom_0211 , mrom_0212 , mrom_0213 , mrom_0214 , mrom_0215 , mrom_0216 , mrom_0217 , mrom_0218 , mrom_0219 , mrom_0220 , mrom_0221 , mrom_0222 , mrom_0223 , mrom_0224 , mrom_0225 , mrom_0226 , mrom_0227 (MARS CLIMATE SOUNDER EDR)"} +{"id": "MRO-M-MCS-4-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-MCS-4-RDR-V1.0", "publication_date": "2006-07-01", "description": "This volume contains science and engineering data from the MRO MCS Instrument", "volume_set_name": "MARS CLIMATE SOUNDER RDR", "volume_id": "MROM_1227", "volume_name": "VOLUME 1227: JULY 2025", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1227", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mrom_1001 , mrom_1002 , mrom_1003 , mrom_1004 , mrom_1005 , mrom_1006 , mrom_1007 , mrom_1008 , mrom_1009 , mrom_1010 , mrom_1011 , mrom_1012 , mrom_1013 , mrom_1014 , mrom_1015 , mrom_1016 , mrom_1017 , mrom_1018 , mrom_1019 , mrom_1020 , mrom_1021 , mrom_1022 , mrom_1023 , mrom_1024 , mrom_1025 , mrom_1026 , mrom_1027 , mrom_1028 , mrom_1029 , mrom_1030 , mrom_1031 , mrom_1032 , mrom_1033 , mrom_1034 , mrom_1035 , mrom_1036 , mrom_1040 , mrom_1041 , mrom_1042 , mrom_1043 , mrom_1044 , mrom_1045 , mrom_1046 , mrom_1047 , mrom_1048 , mrom_1049 , mrom_1050 , mrom_1051 , mrom_1052 , mrom_1053 , mrom_1054 , mrom_1055 , mrom_1056 , mrom_1057 , mrom_1058 , mrom_1059 , mrom_1060 , mrom_1061 , mrom_1062 , mrom_1063 , mrom_1064 , mrom_1065 , mrom_1066 , mrom_1067 , mrom_1068 , mrom_1069 , mrom_1070 , mrom_1071 , mrom_1072 , mrom_1073 , mrom_1074 , mrom_1075 , mrom_1076 , mrom_1077 , mrom_1078 , mrom_1079 , mrom_1080 , mrom_1081 , mrom_1082 , mrom_1083 , mrom_1084 , mrom_1085 , mrom_1086 , mrom_1087 , mrom_1088 , mrom_1089 , mrom_1090 , mrom_1091 , mrom_1092 , mrom_1093 , mrom_1094 , mrom_1095 , mrom_1096 , mrom_1097 , mrom_1098 , mrom_1099 , mrom_1099 , mrom_1100 , mrom_1101 , mrom_1102 , mrom_1103 , mrom_1104 , mrom_1105 , mrom_1106 , mrom_1107 , mrom_1108 , mrom_1109 , mrom_1110 , mrom_1111 , mrom_1112 , mrom_1113 , mrom_1114 , mrom_1115 , mrom_1116 , mrom_1117 , mrom_1118 , mrom_1119 , mrom_1120 , mrom_1121 , mrom_1122 , mrom_1123 , mrom_1124 , mrom_1125 , mrom_1126 , mrom_1127 , mrom_1128 , mrom_1129 , mrom_1130 , mrom_1131 , mrom_1132 , mrom_1133 , mrom_1134 , mrom_1135 , mrom_1136 , mrom_1137 , mrom_1138 , mrom_1139 , mrom_1140 , mrom_1141 , mrom_1142 , mrom_1143 , mrom_1144 , mrom_1145 , mrom_1146 , mrom_1147 , mrom_1148 , mrom_1149 , mrom_1150 , mrom_1151 , mrom_1152 , mrom_1153 , mrom_1154 , mrom_1155 , mrom_1156 , mrom_1157 , mrom_1158 , mrom_1159 , mrom_1160 , mrom_1161 , mrom_1162 , mrom_1163 , mrom_1164 , mrom_1165 , mrom_1166 , mrom_1167 , mrom_1168 , mrom_1169 , mrom_1170 , mrom_1171 , mrom_1172 , mrom_1173 , mrom_1174 , mrom_1175 , mrom_1176 , mrom_1177 , mrom_1178 , mrom_1179 , mrom_1180 , mrom_1181 , mrom_1182 , mrom_1183 , mrom_1184 , mrom_1185 , mrom_1186 , mrom_1187 , mrom_1188 , mrom_1189 , mrom_1190 , mrom_1191 , mrom_1192 , mrom_1193 , mrom_1194 , mrom_1195 , mrom_1196 , mrom_1197 , mrom_1198 , mrom_1199 , mrom_1200 , mrom_1201 , mrom_1202 , mrom_1203 , mrom_1204 , mrom_1205 , mrom_1206 , mrom_1207 , mrom_1208 , mrom_1209 , mrom_1210 , mrom_1211 , mrom_1212 , mrom_1213 , mrom_1214 , mrom_1215 , mrom_1216 , mrom_1217 , mrom_1218 , mrom_1219 , mrom_1220 , mrom_1221 , mrom_1222 , mrom_1223 , mrom_1224 , mrom_1225 , mrom_1226 , mrom_1227 (MARS CLIMATE SOUNDER RDR)"} +{"id": "MRO-M-MCS-5-DDR-V6.2", "pds_version_id": "PDS3", "data_set_id": "MRO-M-MCS-5-DDR-V6.2", "publication_date": "2008-05-20", "description": "This volume contains geophysical profile data from the MRO MCS Instrument", "volume_set_name": "MARS CLIMATE SOUNDER DDR", "volume_id": "MROM_2227", "volume_name": "VOLUME 2227: JULY 2025", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2227", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mrom_2001 , mrom_2002 , mrom_2003 , mrom_2004 , mrom_2005 , mrom_2006 , mrom_2007 , mrom_2008 , mrom_2009 , mrom_2010 , mrom_2011 , mrom_2012 , mrom_2013 , mrom_2014 , mrom_2015 , mrom_2016 , mrom_2017 , mrom_2018 , mrom_2019 , mrom_2020 , mrom_2021 , mrom_2022 , mrom_2023 , mrom_2024 , mrom_2025 , mrom_2026 , mrom_2027 , mrom_2028 , mrom_2029 , mrom_2030 , mrom_2031 , mrom_2032 , mrom_2033 , mrom_2034 , mrom_2035 , mrom_2036 , mrom_2040 , mrom_2041 , mrom_2042 , mrom_2043 , mrom_2044 , mrom_2045 , mrom_2046 , mrom_2047 , mrom_2048 , mrom_2049 , mrom_2050 , mrom_2051 , mrom_2052 , mrom_2053 , mrom_2054 , mrom_2055 , mrom_2056 , mrom_2057 , mrom_2058 , mrom_2059 , mrom_2060 , mrom_2061 , mrom_2062 , mrom_2063 , mrom_2064 , mrom_2065 , mrom_2066 , mrom_2067 , mrom_2068 , mrom_2069 , mrom_2070 , mrom_2071 , mrom_2072 , mrom_2073 , mrom_2074 , mrom_2075 , mrom_2076 , mrom_2077 , mrom_2078 , mrom_2079 , mrom_2080 , mrom_2081 , mrom_2082 , mrom_2083 , mrom_2084 , mrom_2085 , mrom_2086 , mrom_2087 , mrom_2088 , mrom_2089 , mrom_2090 , mrom_2091 , mrom_2092 , mrom_2093 , mrom_2094 , mrom_2095 , mrom_2096 , mrom_2097 , mrom_2098 , mrom_2099 , mrom_2100 , mrom_2101 , mrom_2102 , mrom_2103 , mrom_2104 , mrom_2105 , mrom_2106 , mrom_2107 , mrom_2108 , mrom_2109 , mrom_2110 , mrom_2111 , mrom_2112 , mrom_2113 , mrom_2114 , mrom_2115 , mrom_2116 , mrom_2117 , mrom_2118 , mrom_2119 , mrom_2120 , mrom_2121 , mrom_2122 , mrom_2123 , mrom_2124 , mrom_2125 , mrom_2126 , mrom_2127 , mrom_2128 , mrom_2129 , mrom_2130 , mrom_2131 , mrom_2132 , mrom_2133 , mrom_2134 , mrom_2135 , mrom_2136 , mrom_2137 , mrom_2138 , mrom_2139 , mrom_2140 , mrom_2141 , mrom_2142 , mrom_2143 , mrom_2144 , mrom_2145 , mrom_2146 , mrom_2147 , mrom_2148 , mrom_2149 , mrom_2150 , mrom_2151 , mrom_2152 , mrom_2153 , mrom_2154 , mrom_2155 , mrom_2156 , mrom_2157 , mrom_2158 , mrom_2159 , mrom_2160 , mrom_2161 , mrom_2162 , mrom_2163 , mrom_2164 , mrom_2165 , mrom_2166 , mrom_2167 , mrom_2168 , mrom_2169 , mrom_2170 , mrom_2171 , mrom_2172 , mrom_2173 , mrom_2174 , mrom_2175 , mrom_2176 , mrom_2177 , mrom_2178 , mrom_2179 , mrom_2180 , mrom_2181 , mrom_2182 , mrom_2183 , mrom_2184 , mrom_2185 , mrom_2186 , mrom_2187 , mrom_2188 , mrom_2189 , mrom_2190 , mrom_2191 , mrom_2192 , mrom_2193 , mrom_2194 , mrom_2195 , mrom_2196 , mrom_2197 , mrom_2198 , mrom_2199 , mrom_2200 , mrom_2201 , mrom_2202 , mrom_2203 , mrom_2204 , mrom_2205 , mrom_2206 , mrom_2207 , mrom_2208 , mrom_2209 , mrom_2210 , mrom_2211 , mrom_2212 , mrom_2213 , mrom_2214 , mrom_2215 , mrom_2216 , mrom_2217 , mrom_2218 , mrom_2219 , mrom_2220 , mrom_2221 , mrom_2222 , mrom_2223 , mrom_2224 , mrom_2225 , mrom_2226 , mrom_2227 (Mars Climate Sounder DDR)"} +{"id": "MSL-M-REMS-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-2-EDR-V1.0", "publication_date": "2013-02-06", "description": "This volume contains raw data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS EXPERIMENT DATA RECORD", "volume_id": "MSLREM_0001", "volume_name": "REMS EDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_0001 (REMS EDR DATA)"} +{"id": "MSL-M-REMS-3-TELRDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-3-TELRDR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} +{"id": "MSL-M-REMS-4-ENVRDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-4-ENVRDR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} +{"id": "MSL-M-REMS-5-MODRDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-5-MODRDR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} +{"id": "MSL-M-REMS-6-ADR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-6-ADR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} +{"id": "MSL-M-REMS-5-UVRDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-5-UVRDR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} +{"id": "MRO-M-RSS-5-TPS-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-RSS-5-TPS-V1.0", "publication_date": "2013-08-01", "description": "MRORS_2001 contains the complete collection of Mars Reconnaissance Orbiter radio occultation temperature-pressure profiles.", "volume_set_name": "MRO: DERIVED RADIO SCIENCE T-P PRODUCTS", "volume_id": "MRORS_2001", "volume_name": "MRO RS TPS ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mrors_2001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mrors_2001 (MRO RS TPS ARCHIVE)"} +{"id": "ODY-M-ACCEL-2-ACCELDATA-V2.0", "pds_version_id": "PDS3", "data_set_id": "ODY-M-ACCEL-2-ACCELDATA-V2.0", "publication_date": "2007-12-01", "description": "This volume contains data from Mars Odyssey Accelerometer investigations.", "volume_set_name": "ODY ACCELEROMETER DATA PRODUCTS", "volume_id": "ODYA_0001", "volume_name": "ODY AEROBRAKING ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume odya_0001 (ODY Accelerometer Data)"} +{"id": "ODY-M-ACCEL-5-PROFILE-V2.0", "pds_version_id": "PDS3", "data_set_id": "ODY-M-ACCEL-5-PROFILE-V2.0", "publication_date": "2007-12-01", "description": "This volume contains data from Mars Odyssey Accelerometer investigations.", "volume_set_name": "ODY ACCELEROMETER DATA PRODUCTS", "volume_id": "ODYA_0001", "volume_name": "ODY AEROBRAKING ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume odya_0001 (ODY Accelerometer Data)"} +{"id": "ODY-M-ACCEL-5-ALTITUDE-V2.0", "pds_version_id": "PDS3", "data_set_id": "ODY-M-ACCEL-5-ALTITUDE-V2.0", "publication_date": "2007-12-01", "description": "This volume contains data from Mars Odyssey Accelerometer investigations.", "volume_set_name": "ODY ACCELEROMETER DATA PRODUCTS", "volume_id": "ODYA_0001", "volume_name": "ODY AEROBRAKING ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume odya_0001 (ODY Accelerometer Data)"} +{"id": "ODY-M-ACCEL-5-DERIVED-V1.0", "pds_version_id": "PDS3", "data_set_id": "ODY-M-ACCEL-5-DERIVED-V1.0", "publication_date": "2009-02-13", "description": "This volume contains time ordered records of measured acceleration, ancilliary information, derived density profiles and atmospheric properties at constant altitude levels from the aerobraking of Odyssey.", "volume_set_name": "ODY ACC ATMOSPHERIC DATA ARCHIVE", "volume_id": "ODYA_1001", "volume_name": "ODY ACC ATMOSPHERIC DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume odya_1001 (Odyssey Accelerometer Derived Data)"} +{"id": "PHX-M-MET-2-L-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-MET-2-L-EDR-V1.0", "publication_date": "2008-02-09", "description": "This volume contains measurements from the LIDAR portion of the METEOROLOGY package of the PHOENIX mission.", "volume_set_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "volume_id": "PHLD_0003", "volume_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0003", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phld_0001 , phld_0002 , phld_0003 (Phoenix Mars MET LIDAR Atmospheric Profiles)"} +{"id": "PHX-M-MET-3-L-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-MET-3-L-RDR-V1.0", "publication_date": "2008-02-09", "description": "This volume contains measurements from the LIDAR portion of the METEOROLOGY package of the PHOENIX mission.", "volume_set_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "volume_id": "PHLD_0003", "volume_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0003", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phld_0001 , phld_0002 , phld_0003 (Phoenix Mars MET LIDAR Atmospheric Profiles)"} +{"id": "PHX-M-MET-2-PT-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-MET-2-PT-EDR-V1.0", "publication_date": "2008-02-23", "description": "This volume contains measurements from the pressure/temperature portion of the METEOROLOGY package of the PHOENIX mission.", "volume_set_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "volume_id": "PHMT_0003", "volume_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0003", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phmt_0001 , phmt_0002 , phmt_0003 (Phoenix Mars Meteorological Pressure / Temperature)"} +{"id": "PHX-M-MET-3-PT-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-MET-3-PT-RDR-V1.0", "publication_date": "2008-02-23", "description": "This volume contains measurements from the pressure/temperature portion of the METEOROLOGY package of the PHOENIX mission.", "volume_set_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "volume_id": "PHMT_0003", "volume_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0003", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phmt_0001 , phmt_0002 , phmt_0003 (Phoenix Mars Meteorological Pressure / Temperature)"} +{"id": "PHX-M-SSI-5-ATMOS-OPACITY-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-SSI-5-ATMOS-OPACITY-V1.0", "publication_date": "2009-04-29", "description": "This volume contains the atmospheric opacity derived products from the SSI experiment of the PHOENIX mission.", "volume_set_name": "PHOENIX ATMOSPHERIC OPACITY ARCHIVE", "volume_id": "PHXAO_1001", "volume_name": "PHOENIX ATMOSPHERIC OPACITY ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxao_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phxao_1001 (PHX Mars SSI Atmospheric Opacity RDR)"} +{"id": "PHX-M-ASE-2-EDL-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-ASE-2-EDL-V1.0", "publication_date": "2008-12-23", "description": "This volume contains all ASE measurements available from the EDL phase of the PHOENIX mission.", "volume_set_name": "PHOENIX ATMOSPHERIC STRUCTURE EXPERIMENT ARCHIVE", "volume_id": "PHXASE_0001", "volume_name": "PHOENIX ATMOSPHERIC STRUCTURE EXPERIMENT ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phxase_0001 (Phoenix Mars Atmospheric Structure Experiment)"} +{"id": "PHX-M-ASE-5-EDL-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-ASE-5-EDL-RDR-V1.0", "publication_date": "2010-04-05", "description": "This volume contains time ordered records of measured acceleration, derived velocity, derived position, derived atmospheric properties and, other quantities determined from IMU (ASE) measurements recorded during the EDL of PHX.", "volume_set_name": "PHOENIX ATMOSPHERIC STRUCTURE EXPERIMENT ARCHIVE", "volume_id": "PHXASE_0002", "volume_name": "PHOENIX ATMOSPHERIC STRUCTURE EXPERIMENT ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phxase_0002 (Phoenix Atmospheric Structure Experiment Archive)"} +{"id": "PHX-M-TT-5-WIND-VEL-DIR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-TT-5-WIND-VEL-DIR-V1.0", "publication_date": "2009-04-29", "description": "This volume contains wind velocity and direction measurements from the Telltale experiment of the PHOENIX mission.", "volume_set_name": "PHOENIX WIND VELOCITY & DIRECTION ARCHIVE", "volume_id": "PHXWND_0001", "volume_name": "PHOENIX WIND VELOCITY & DIRECTION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxwnd_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phxwnd_0001 (Phoenix Mars Telltale Wind Velocity & Direction)"} +{"id": "VL1/VL2-M-MET-3-P-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-MET-3-P-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} +{"id": "VL1/VL2-M-MET-4-DAILY-AVG-PRESSURE-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-MET-4-DAILY-AVG-PRESSURE-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} +{"id": "VL1-M-MET-4-BINNED-P-T-V-CORR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1-M-MET-4-BINNED-P-T-V-CORR-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} +{"id": "VL1/VL2-M-MET-4-BINNED-P-T-V-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-MET-4-BINNED-P-T-V-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} +{"id": "VL1/VL2-M-LCS-5-ATMOS-OPTICAL-DEPTH-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-LCS-5-ATMOS-OPTICAL-DEPTH-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} +{"id": "VL1/VL2-M-FTS-3-FOOTPAD-TEMP-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-FTS-3-FOOTPAD-TEMP-V1.0", "publication_date": "1996-03-26", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The data sets included were produced from the Lander Footpad Temperature Sensors. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Footpad Temperature Sensor Data", "volume_id": "VL_1002", "volume_name": "VL1/VL2 Footpad Temperature Sensor Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1002 (Viking Lander Products)"} +{"id": "VL1/VL2-M-FTS-4-SOL-AVG-FTPD-TEMP-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-FTS-4-SOL-AVG-FTPD-TEMP-V1.0", "publication_date": "1996-03-26", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The data sets included were produced from the Lander Footpad Temperature Sensors. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Footpad Temperature Sensor Data", "volume_id": "VL_1002", "volume_name": "VL1/VL2 Footpad Temperature Sensor Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1002 (Viking Lander Products)"} +{"id": "VO1/VO2-M-MAWD-4-V1.0", "pds_version_id": "PDS3", "data_set_id": "VO1/VO2-M-MAWD-4-V1.0", "publication_date": "1995-06-30", "description": "This volume contains data from the Viking Orbiter spacecraft MAWD experiments. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VIKING ORBITER 1&2: MAWD Data", "volume_id": "VO_3001", "volume_name": "VO1/VO2 Mars Atmospheric Water Detector (MAWD) Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vo_3001 (Viking Orbiter MAWD)"} +{"id": "VO1/VO2-M-IRTM-5-BINNED/CLOUDS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VO1/VO2-M-IRTM-5-BINNED/CLOUDS-V1.0", "publication_date": "1995-07-20", "description": "This volume contains data derived from the Viking Orbiter spacecraft IRTM experiments. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VIKING ORBITERS INFRARED THERMAL MAPPER BINNED/CLOUDS", "volume_id": "VO_3002", "volume_name": "VO1/VO2 MARS IRTM BINNED/CLOUDS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vo_3002 (Viking Orbiter IRTM)"} +{"id": "MR9/VO1/VO2-M-ISS/VIS-5-CLOUD-V1.0", "pds_version_id": "PDS3", "data_set_id": "MR9/VO1/VO2-M-ISS/VIS-5-CLOUD-V1.0", "publication_date": "1995-07-20", "description": "This volume contains data derived from the Viking Orbiter and Mariner 9 imaging (ISS) experiments. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VIKING ORBITERS AND MARINER 9 MARS CLOUD CATALOG", "volume_id": "VOMR_0001", "volume_name": "VO1/VO2/MR9 MARS CLOUD CATALOG", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vomr_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vomr_0001 (Mars Clouds)"} +{"id": "CO-J-CIRS-2/3/4-TSDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "CO-J-CIRS-2/3/4-TSDR-V2.0", "publication_date": "2010-01-01", "description": "This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument", "volume_set_name": "CASSINI INFRARED SPECTRA", "volume_id": "COCIRS_0306", "volume_name": "CASSINI CIRS JUPITER RAW AND CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/review/CIRSV2/COCIRS_0306", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume cocirs_0010 , cocirs_0011 , cocirs_0012 , cocirs_0101 , cocirs_0102 , cocirs_0103 , cocirs_0104 , cocirs_0107 , cocirs_0110 , cocirs_0201 , cocirs_0205 , cocirs_0207 , cocirs_0209 , cocirs_0210 , cocirs_0301 , cocirs_0304 , cocirs_0306 (Cassini Cirs Jupiter Raw and Calibrated Data Archive)"} +{"id": "CO-J-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SSB-V1.2", "publication_date": "2012-01-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0001", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-J-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0001", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-J-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0001", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-J-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-WAV-V1.2", "publication_date": "2012-01-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0001", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.2", "pds_version_id": "PDS3", "data_set_id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.2", "publication_date": null, "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "volume_set_name": "CASSINI ISS EXPERIMENT DATA RECORDS AND CALIBRATION FILES", "volume_id": "COISS_0011", "volume_name": "CASSINI ISS CALIBRATION FILES", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coiss_0011", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume coiss_0011 (CASSINI ISS EXPERIMENT DATA RECORDS AND CALIBRATION FILES)"} +{"id": "CO-J-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0002", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0002 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-J-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SSB-V1.2", "publication_date": "2012-01-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0002", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0002 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-J-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0002", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0002 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "ESO-J/S/N/U-SPECTROPHOTOMETER-4-V2.0", "pds_version_id": "PDS3", "data_set_id": "ESO-J/S/N/U-SPECTROPHOTOMETER-4-V2.0", "publication_date": "1998-12-17", "description": "This volume contains archival data produced from ground based observations of the Jovian planets and Titan tabulating the methane absorption coefficient and the full disk albedos of the Jovian planets and Titan at wavelengths from 300 nm to 1000 nm.", "volume_set_name": "GROUND BASED ATMOSPHERIC OBSERVATIONS", "volume_id": "GBAT_0001", "volume_name": "Spectrophotometry of the Jovian Planets and Titan at 300- to 1000-nm", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gbat_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gbat_0001 (Spectrophotometry of the Jovian Planets and Titan)"} +{"id": "GO-J-PPR-2-REDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "GO-J-PPR-2-REDR-V1.0", "publication_date": "2003-01-12", "description": "This volume contains data records (R_EDRs and RDRs) for the Photopolarimeter/Radiometer (PPR) during the GEM and GMM phases of the Galileo Mission.", "volume_set_name": "GALILEO: JUPITER PPR RAW AND REDUCED DATA RECORDS", "volume_id": "GOPR_5002", "volume_name": "GALILEO PPR JUPITER GEM AND GMM RAW AND REDUCED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gopr_5001 , gopr_5002 (Galileo PPR)"} +{"id": "GO-J-PPR-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "GO-J-PPR-3-RDR-V1.0", "publication_date": "2003-01-12", "description": "This volume contains data records (R_EDRs and RDRs) for the Photopolarimeter/Radiometer (PPR) during the GEM and GMM phases of the Galileo Mission.", "volume_set_name": "GALILEO: JUPITER PPR RAW AND REDUCED DATA RECORDS", "volume_id": "GOPR_5002", "volume_name": "GALILEO PPR JUPITER GEM AND GMM RAW AND REDUCED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gopr_5001 , gopr_5002 (Galileo PPR)"} +{"id": "GO-J-EUV-2-EDR-JUPITER-V1.0", "pds_version_id": "PDS3", "data_set_id": "GO-J-EUV-2-EDR-JUPITER-V1.0", "publication_date": "1999-03-19", "description": "This volume contains raw data records for the Ultraviolet Spectrometer (UVS) and Extreme Ultraviolet Spectrometer (EUV) during the Jupiter Orbital phase of the Galileo Mission.", "volume_set_name": "GALILEO ULTRAVIOLET SPECTROMETER DATA", "volume_id": "GOUV_0003", "volume_name": "GALILEO EUV/UVS JUPITER DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0003", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gouv_0002 , gouv_0003 (GALILEO ULTRAVIOLET SPECTROMETER DATA)"} +{"id": "GO-J-UVS-2-EDR-JUPITER-V1.0", "pds_version_id": "PDS3", "data_set_id": "GO-J-UVS-2-EDR-JUPITER-V1.0", "publication_date": "1999-03-19", "description": "This volume contains raw data records for the Ultraviolet Spectrometer (UVS) and Extreme Ultraviolet Spectrometer (EUV) during the Jupiter Orbital phase of the Galileo Mission.", "volume_set_name": "GALILEO ULTRAVIOLET SPECTROMETER DATA", "volume_id": "GOUV_0003", "volume_name": "GALILEO EUV/UVS JUPITER DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0003", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gouv_0002 , gouv_0003 (GALILEO ULTRAVIOLET SPECTROMETER DATA)"} +{"id": "GP-J-ASI-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-ASI-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} +{"id": "GP-J-DWE-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-DWE-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} +{"id": "GP-J-EPI-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-EPI-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} +{"id": "GP-J-HAD-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-HAD-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} +{"id": "GP-J-LRD-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-LRD-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} +{"id": "GP-J-NEP-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-NEP-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} +{"id": "GP-J-NFR-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-NFR-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} +{"id": "GP-J-NMS-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-NMS-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} +{"id": "JUNO-J-RSS-1-OCRU-V1.0", "pds_version_id": "PDS3", "data_set_id": "JUNO-J-RSS-1-OCRU-V1.0", "publication_date": "2016-10-26", "description": "This archive contains raw data and ancillary files for the gravity science from the Juno spacecraft during outer cruise between the Earth Flyby in October 2013 to Orbit Insertion in July 2016.", "volume_set_name": "JUNO OUTER CRUISE RAW RS GRAVITY DATA", "volume_id": "JNOGRV_0001", "volume_name": "JUNO OUTER CRUISE RAW RS GRAVITY DATA OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnogrv_0001 (JUNO OUTER CRUISE RAW RS GRAVITY DATA)"} +{"id": "JNO-J-RSS-5-JUGR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-RSS-5-JUGR-V1.0", "publication_date": "2022-03-21", "description": "This volume contains derived gravity science data from the Juno gravity science investigation.", "volume_set_name": "JUNO GRAVITY SCIENCE INSTRUMENT DERIVED L-2 DATA", "volume_id": "JNOGRV_0002", "volume_name": "JUNO DERIVED RADIO SCIENCE GRAVITY DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnogrv_0002 (JUNO GRAVITY SCIENCE INSTRUMENT DERIVED L-2 DATA)"} +{"id": "JNO-J-RSS-1-JUGR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-RSS-1-JUGR-V1.0", "publication_date": "2017-05-20", "description": "This archive contains raw data and ancillary files from the Juno spacecraft during the science mission phase starting in July 2016.", "volume_set_name": "JUNO JUPITER RAW RS GRAVITY DATA", "volume_id": "JNOGRV_1001", "volume_name": "JUNO JUPITER RAW RS GRAVITY DATA OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_1001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnogrv_1001 (JUNO JUPITER RAW RS GRAVITY DATA)"} +{"id": "JNO-L-JIRAM-2-EDR-V3.0", "pds_version_id": "PDS3", "data_set_id": "JNO-L-JIRAM-2-EDR-V3.0", "publication_date": "2015-11-16", "description": "This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_1000", "volume_name": "JUNO JIRAM EDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1000", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_1000 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-2-EDR-V1.0", "publication_date": "2025-06-25", "description": "This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_1068", "volume_name": "JUNO JIRAM EDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1068", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_1001 , jnojir_1002 , jnojir_1003 , jnojir_1004 , jnojir_1005 , jnojir_1006 , jnojir_1007 , jnojir_1008 , jnojir_1009 , jnojir_1010 , jnojir_1011 , jnojir_1012 , jnojir_1013 , jnojir_1014 , jnojir_1015 , jnojir_1016 , jnojir_1017 , jnojir_1018 , jnojir_1019 , jnojir_1020 , jnojir_1021 , jnojir_1022 , jnojir_1023 , jnojir_1024 , jnojir_1025 , jnojir_1026 , jnojir_1027 , jnojir_1028 , jnojir_1029 , jnojir_1030 , jnojir_1031 , jnojir_1032 , jnojir_1033 , jnojir_1034 , jnojir_1035 , jnojir_1036 , jnojir_1037 , jnojir_1038 , jnojir_1039 , jnojir_1040 , jnojir_1041 , jnojir_1042 , jnojir_1043 , jnojir_1044 , jnojir_1045 , jnojir_1046 , jnojir_1047 , jnojir_1048 , jnojir_1049 , jnojir_1050 , jnojir_1051 , jnojir_1052 , jnojir_1053 , jnojir_1054 , jnojir_1055 , jnojir_1056 , jnojir_1057 , jnojir_1058 , jnojir_1060 , jnojir_1061 , jnojir_1062 , jnojir_1063 , jnojir_1064 , jnojir_1065 , jnojir_1066 , jnojir_1067 , jnojir_1068 (JUNO JIRAM DATA)"} +{"id": "JNO-L-JIRAM-3-RDR-V3.0", "pds_version_id": "PDS3", "data_set_id": "JNO-L-JIRAM-3-RDR-V3.0", "publication_date": "2015-11-16", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2013-10-09.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2000", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2000", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2000 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2017-06-20", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2016-08-26 to 2016-08-28.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2003", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2003", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2001 , jnojir_2002 , jnojir_2003 , (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2017-12-14", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-02-01 to 2017-02-03.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2004", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2004", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2004 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-01-10", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-03-26 to 2017-03-27.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2005", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2005", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2005 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-01-12", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-05-18 to 2017-05-22.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2006", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2006", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2006 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-03-09", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-07-10 to 2017-07-11.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2008", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2008", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2007 , jnojir_2008 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-05-31", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-10-23 to 2017-10-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2010", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2010", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2009 , jnojir_2010 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-08-23", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-02-06 to 2018-02-08.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2011", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2011", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2011 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-08-29", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-03-31 to 2018-04-01.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2012", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2012", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2012 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2019-02-05", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-05-23 to 2018-05-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2014", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2014", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2013 , jnojir_2014 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2019-10-09", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-09-06 to 2018-09-07.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2015", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2015", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2015 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2019-10-28", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2018-10-29.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2016", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2016", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2016 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-01-10", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-12-20 to 2018-12-21.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2017", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2017", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2017 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2019-10-28", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2019-02-12.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2018", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2018", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2018 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-03-29", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-04-05 and 2019-04-06.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2019", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2019", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2019 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-04-08", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-05-28 and 2019-05-29.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2020", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2020", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2020 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-05-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-07-20 and 2019-07-21.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2021", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2021", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2021 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-05-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-09-11T and 2019-09-12.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2022", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2022", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2022 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-08-06", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-11-03 and 2019-11-04.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2023", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2023", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2023 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-08-31", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2020-02-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2024", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2024", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2024 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-08-24", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2019-12-26.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2027", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2027", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2025 , jnojir_2026 , jnojir_2027 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-12-16", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-07-24 and 2020-07-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2028", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2028", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2028 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-03-10", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-09-15 and 2020-09-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2029", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2029", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2029 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-03-22", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-11-07 and 2020-11-08.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2031", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2031", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2030 , jnojir_2031 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-03-28", "description": "This volume contains all JIRAM Level 2 data, that have been calibrated, for spacecraft event time (SCET) date 2021-04-14.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2032", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2032", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2032 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-10-22", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-04-15 and 2021-04-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2033", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2033", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2033 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-10-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-06-07 and 2021-07-19.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2034", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2034", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2034 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-01-17", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-07-20 and 2021-07-21.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2035", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2035", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2035 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-01-23", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-09-02 and 2021-09-03.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2036", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2036", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2036 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-04-11", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2021-10-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2037", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2037", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2037 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-04-11", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2021-11-29.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2038", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2038", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2038 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-07-12", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2022-01-12.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2039", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2039", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2039 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-07-12", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2022-02-24 and 2022-02-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2040", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2040", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2040 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-10-24", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2022-04-09.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2041", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2041", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2041 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-10-24", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-05-22 and 2022-05-23.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2042", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2042", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2042 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-01-04", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-07-04 and 2022-07-05.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2043", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2043", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2043 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-01-07", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-08-16 and 2022-08-18.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2044", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2044", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2044 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-03-16", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-09-29 and 2022-09-30.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2045", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2045", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2045 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-03-17", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-11-06 and 2022-11-07.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2046", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2046", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2046 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-04-19", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-12-14 and 2022-12-15.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2047", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2047", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2047 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-04-19", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-01-21 and 2023-01-22.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2048", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2048", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2048 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-09-05", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-02-28 and 2023-03-01.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2049", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2049", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2049 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-09-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-04-08 and 2023-05-02.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2050", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2050", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2050 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-12-11", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-05-15 and 2023-05-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2051", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2051", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2051 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-12-15", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-06-22 and 2023-06-26.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2052", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2052", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2052 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-12-18", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-07-31 and 2023-08-02.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2053", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2053", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2053 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-03-21", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-09-07 and 2023-09-09.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2054", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2054", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2054 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-03-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-10-14 and 2023-10-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2055", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2055", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2055 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-03-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates 2023-11-23.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2056", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2056", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2056 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-05-28", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-12-30 and 2024-01-08.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2057", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2057", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2057 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-05-28", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date 2024-02-03.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2058", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2058", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2058 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-01-20", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date 2024-05-12.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2061", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2061", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2061 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-01-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-06-13 and 2024-06-14.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2062", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2062", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2062 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-02-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-07-16 and 2024-07-17.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2063", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2063", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2063 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-02-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date 2024-08-18.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2064", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2064", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2064 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-02-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date 2024-09-20.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2065", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2065", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2065 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-05-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-10-22 and 2024-10-23.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2066", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2066", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2066 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-05-27", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-11-24 and 2024-11-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2067", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2067", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2067 (JUNO JIRAM DATA)"} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-05-27", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-12-27 and 2024-12-28.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2068", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2068", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2068 (JUNO JIRAM DATA)"} +{"id": "JNO-X-MWR-2-EDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "JNO-X-MWR-2-EDR-V2.0", "publication_date": "2020-05-03", "description": "This volume contains documentation and all available Juno MWR telemetry for spacecraft event times (SCET) 2011-08-24 to 2016-06-29. These are raw data and are not intended for use by the wider community. The companion volume JNOMWR_1000 contains calibrated useful for the wider public.", "volume_set_name": "JUNO MWR CRUISE STANDARD RAW PRODUCTS", "volume_id": "JNOMWR_0000", "volume_name": "JUNO MWR CRUISE STANDARD RAW PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0000", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_0000 (JUNO MWR)"} +{"id": "JNO-J-MWR-2-EDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-2-EDR-V2.0", "publication_date": "2020-05-10", "description": "This volume contains documentation and all available Juno MWR telemetry starting from spacecraft event time (SCET) 2016-07-06 to the end of the mission. The single dataset in this volume is an accumulating set of data, and eventually it will contain all raw data from the orbit for the entire mission. These are raw data and are not intended for use by the wider community. The companion volume JNOMWR_1100 contains calibrated useful for the wider public.", "volume_set_name": "JUNO MWR JUPITER STANDARD RAW PRODUCTS", "volume_id": "JNOMWR_0100", "volume_name": "JUNO MWR JUPITER STANDARD RAW PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_0100 (JUNO MWR JUPITER STANDARD RAW PRODUCTS)"} +{"id": "JNO-X-MWR-3-RDR-V3.0", "pds_version_id": "PDS3", "data_set_id": "JNO-X-MWR-3-RDR-V3.0", "publication_date": "2020-05-03", "description": "This volume contains documentation and all available Juno MWR telemetry for spacecraft event times (SCET) 2011-08-24 to 2016-06-29. These are calibrated data and are intended for use by the wider community.", "volume_set_name": "JUNO MWR CRUISE STANDARD CALIBRATED PRODUCTS", "volume_id": "JNOMWR_1000", "volume_name": "JUNO MWR CRUISE STANDARD CALIBRATED PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1000", "node": "atm", "targets": [], "title": "ATM Volume jnomwr_1000 (JUNO MWR)"} +{"id": "JNO-J-MWR-3-RDR-V2.1", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-3-RDR-V2.1", "publication_date": "2020-05-10", "description": "This volume contains documentation and all available Juno MWR calibrated science data records from spacecraft event time (SCET) 2016-07-06 to the end of the mission. The single dataset in this volume is an accumulating set of data, and eventually it will contain all calibrated science data from the orbit for the entire mission. These are calibrated data and are intended for use by the wider community.", "volume_set_name": "JUNO MWR JUPITER STANDARD CALIBRATED PRODUCTS", "volume_id": "JNOMWR_1100", "volume_name": "JUNO MWR JUPITER STANDARD CALIBRATED PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_1100 (JUNO MWR JUPITER STANDARD CALIBRATED PRODUCTS)"} +{"id": "JNO-J-MWR-4-ANTENNA-TEMP-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-4-ANTENNA-TEMP-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} +{"id": "JNO-J-MWR-4-SYNCHROTRON-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-4-SYNCHROTRON-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} +{"id": "JNO-J-MWR-5-NH3-DISTRIBUTION-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-5-NH3-DISTRIBUTION-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} +{"id": "JNO-J-MWR-5-H2O-DISTRIBUTION-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-5-H2O-DISTRIBUTION-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} +{"id": "JNO-J-MWR-5-ATM-BRIGHT-TEMP-VS-LAT-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-5-ATM-BRIGHT-TEMP-VS-LAT-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} +{"id": "JNO-J-UVS-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-UVS-2-EDR-V1.0", "publication_date": "2014-10-22", "description": "This volume contains experiment data record (EDR) data acquired by the Juno Ultraviolet Spectrograph.The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "volume_set_name": "JUNO UVS OBSERVATIONS", "volume_id": "JNOUVS_2001", "volume_name": "JUNO UVS EDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnouvs_2001 (JUNO UVS OBSERVATIONS)"} +{"id": "JNO-J-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-UVS-3-RDR-V1.0", "publication_date": "2014-10-22", "description": "This volume contains reduced data record (RDR) data acquired by the Juno Ultraviolet Spectrograph.The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "volume_set_name": "JUNO UVS OBSERVATIONS", "volume_id": "JNOUVS_3001", "volume_name": "JUNO UVS RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_3001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnouvs_3001 (JUNO UVS OBSERVATIONS)"} +{"id": "JNO-J-UVS-5-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-UVS-5-DDR-V1.0", "publication_date": "2023-07-07", "description": "This volume contains derived data record (DDR) data acquired by the Juno Ultraviolet Spectrograph. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "volume_set_name": "JUNO UVS OBSERVATIONS", "volume_id": "JNOUVS_5001", "volume_name": "JUNO UVS DDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_5001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnouvs_5001 (JUNO UVS OBSERVATIONS)"} +{"id": "HST-J-WFPC2-3-SL9-IMPACT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HST-J-WFPC2-3-SL9-IMPACT-V1.0", "publication_date": "1998-06-17", "description": "This volume contains observations of Jupiter during the Comet Shoemaker-Levy 9 impact events by the Hubble Space Telescope in July 1994. These data consist of images by the Wide Field Planetary Camera 2 (WFPC2).", "volume_set_name": "SHOEMAKER-LEVY 9 IMPACT EVENTS - SELECT", "volume_id": "SL9_0006", "volume_name": "VOLUME 6", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0006", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume sl9_0005 , sl9_0006 (Shoemaker-Levy 9 Impact Observations from Hubble Space Telescope WFPC2)"} +{"id": "EAR-J-AAT-3-EDR-SL9-V1.0", "pds_version_id": "PDS3", "data_set_id": "EAR-J-AAT-3-EDR-SL9-V1.0", "publication_date": "1998-03-19", "description": "This volume contains observations of Jupiter during the Comet Shoemaker-Levy 9 fragment W impact events from the Anglo-Australian Observatory.", "volume_set_name": "SHOEMAKER-LEVY 9 IMPACT EVENTS - SELECT", "volume_id": "SL9_0012", "volume_name": "VOLUME 12", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0012", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume sl9_0008 , sl9_0009 , sl9_0010 , sl9_0011 , sl9_0012 (Shoemaker-Levy 9 Impact Observations from the Anglo Australian Observatory)"} +{"id": "VG1/VG2-J-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-J-IRIS-3-RDR-V1.0", "publication_date": "1995-07-26", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS FULL RESOLUTION SPECTRA", "volume_id": "VG_2001", "volume_name": "VOYAGER IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2001 (Voyager IRIS)"} +{"id": "VG1/VG2-S-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-S-IRIS-3-RDR-V1.0", "publication_date": "1995-07-26", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS FULL RESOLUTION SPECTRA", "volume_id": "VG_2001", "volume_name": "VOYAGER IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2001 (Voyager IRIS)"} +{"id": "VG2-U-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-U-IRIS-3-RDR-V1.0", "publication_date": "1995-07-26", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS FULL RESOLUTION SPECTRA", "volume_id": "VG_2001", "volume_name": "VOYAGER IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2001 (Voyager IRIS)"} +{"id": "VG2-N-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-N-IRIS-3-RDR-V1.0", "publication_date": "1995-07-26", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS FULL RESOLUTION SPECTRA", "volume_id": "VG_2001", "volume_name": "VOYAGER IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2001 (Voyager IRIS)"} +{"id": "VG1/VG2-J-UVS-5-BRIGHTNESS-N/S-MAPS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-J-UVS-5-BRIGHTNESS-N/S-MAPS-V1.0", "publication_date": "1995-08-10", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "UVS DERIVED NORTH/SOUTH MAPS", "volume_id": "VG_2101", "volume_name": "VOYAGER UVS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2101", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2101 (Voyager UVS)"} +{"id": "VG1/VG2-S-UVS-5-BRIGHTNESS-N/S-MAPS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-S-UVS-5-BRIGHTNESS-N/S-MAPS-V1.0", "publication_date": "1995-08-10", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "UVS DERIVED NORTH/SOUTH MAPS", "volume_id": "VG_2101", "volume_name": "VOYAGER UVS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2101", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2101 (Voyager UVS)"} +{"id": "VG1/VG2-J-IRIS-5-NS-ATMOS-PARAMS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-J-IRIS-5-NS-ATMOS-PARAMS-V1.0", "publication_date": "1995-08-31", "description": "This volume contains data produced from the Voyager IRIS experiments. Atmospheric parameters derived from IRIS spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS DERIVED ATMOSPHERIC PARAMETERS", "volume_id": "VG_2102", "volume_name": "VOYAGER IRIS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2102 (Voyager IRIS Derived N/S & GRS Parameters)"} +{"id": "VG1/VG2-J-IRIS-5-GRS-ATMOS-PARAMS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-J-IRIS-5-GRS-ATMOS-PARAMS-V1.0", "publication_date": "1995-08-31", "description": "This volume contains data produced from the Voyager IRIS experiments. Atmospheric parameters derived from IRIS spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS DERIVED ATMOSPHERIC PARAMETERS", "volume_id": "VG_2102", "volume_name": "VOYAGER IRIS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2102 (Voyager IRIS Derived N/S & GRS Parameters)"} +{"id": "VG1/VG2-S-IRIS-5-NS-ATMOS-PARAMS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-S-IRIS-5-NS-ATMOS-PARAMS-V1.0", "publication_date": "1995-08-31", "description": "This volume contains data produced from the Voyager IRIS experiments. Atmospheric parameters derived from IRIS spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS DERIVED ATMOSPHERIC PARAMETERS", "volume_id": "VG_2102", "volume_name": "VOYAGER IRIS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2102 (Voyager IRIS Derived N/S & GRS Parameters)"} +{"id": "VG1-J-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1-J-UVS-3-RDR-V1.0", "publication_date": "1997-06-20", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2203", "volume_name": "VOYAGER 1 JUPITER ENCOUNTER:1979-03-07 TO 1979-04-09", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2203", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2201 , vg_2202 , vg_2203 (Voyager 1 UVS)"} +{"id": "VG2-J-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-J-UVS-3-RDR-V1.0", "publication_date": "1997-06-20", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2206", "volume_name": "VOYAGER 2 JUPITER ENCOUNTER:1979-07-12 TO 1979-08-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2206", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2204 , vg_2205 , vg_2206 (Voyager 2 UVS)"} +{"id": "CO-S-CIRS-2/3/4-TSDR-V4.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-CIRS-2/3/4-TSDR-V4.0", "publication_date": "2018-04-01", "description": "This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument", "volume_set_name": "CASSINI INFRARED SPECTRA", "volume_id": "COCIRS_1709", "volume_name": "CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1709", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cocirs_0401 , cocirs_0402 , cocirs_0403 , cocirs_0404 , cocirs_0405 , cocirs_0406 , cocirs_0407 , cocirs_0408 , cocirs_0409 , cocirs_0410 , cocirs_0411 , cocirs_0412 , cocirs_0501 , cocirs_0502 , cocirs_0503 , cocirs_0504 , cocirs_0505 , cocirs_0506 , cocirs_0507 , cocirs_0508 , cocirs_0509 , cocirs_0510 , cocirs_0511 , cocirs_0512 , cocirs_0601 , cocirs_0602 , cocirs_0603 , cocirs_0604 , cocirs_0605 , cocirs_0606 , cocirs_0607 , cocirs_0608 , cocirs_0609 , cocirs_0610 , cocirs_0611 , cocirs_0612 , cocirs_0701 , cocirs_0702 , cocirs_0703 , cocirs_0704 , cocirs_0705 , cocirs_0706 , cocirs_0707 , cocirs_0708 , cocirs_0709 , cocirs_0710 , cocirs_0711 , cocirs_0712 , cocirs_0801 , cocirs_0802 , cocirs_0803 , cocirs_0804 , cocirs_0805 , cocirs_0806 , cocirs_0807 , cocirs_0808 , cocirs_0809 , cocirs_0810 , cocirs_0811 , cocirs_0812 , cocirs_0901 , cocirs_0902 , cocirs_0903 , cocirs_0904 , cocirs_0905 , cocirs_0906 , cocirs_0907 , cocirs_0908 , cocirs_0909 , cocirs_0910 , cocirs_0911 , cocirs_0912 , cocirs_1001 , cocirs_1002 , cocirs_1004 , cocirs_1005 , cocirs_1006 , cocirs_1007 , cocirs_1008 , cocirs_1009 , cocirs_1010 , cocirs_1011 , cocirs_1012 , cocirs_1101 , cocirs_1102 , cocirs_1103 , cocirs_1104 , cocirs_1105 , cocirs_1106 , cocirs_1107 , cocirs_1108 , cocirs_1109 , cocirs_1110 , cocirs_1111 , cocirs_1112 , cocirs_1201 , cocirs_1202 , cocirs_1203 , cocirs_1204 , cocirs_1205 , cocirs_1206 , cocirs_1207 , cocirs_1208 , cocirs_1209 , cocirs_1210 , cocirs_1211 , cocirs_1212 , cocirs_1301 , cocirs_1302 , cocirs_1303 , cocirs_1304 , cocirs_1305 , cocirs_1306 , cocirs_1307 , cocirs_1308 , cocirs_1309 , cocirs_1310 , cocirs_1311 , cocirs_1312 , cocirs_1401 , cocirs_1402 , cocirs_1403 , cocirs_1404 , cocirs_1405 , cocirs_1406 , cocirs_1407 , cocirs_1408 , cocirs_1409 , cocirs_1410 , cocirs_1411 , cocirs_1412 , cocirs_1501 , cocirs_1502 , cocirs_1503 , cocirs_1504 , cocirs_1505 , cocirs_1506 , cocirs_1507 , cocirs_1508 , cocirs_1509 , cocirs_1510 , cocirs_1511 , cocirs_1512 , cocirs_1601 , cocirs_1602 , cocirs_1603 , cocirs_1604 , cocirs_1605 , cocirs_1606 , cocirs_1607 , cocirs_1608 , cocirs_1609 , cocirs_1610 , cocirs_1611 , cocirs_1612 , cocirs_1701 , cocirs_1702 , cocirs_1703 , cocirs_1704 , cocirs_1705 , cocirs_1706 , cocirs_1707 , cocirs_1708 , cocirs_1709 (Cassini Infrared Spectra)"} +{"id": "CO-S-CIRS-5-CUBES-V2.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-CIRS-5-CUBES-V2.0", "publication_date": "2018-04-01", "description": "This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument", "volume_set_name": "CASSINI INFRARED SPECTRA", "volume_id": "COCIRS_1709", "volume_name": "CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1709", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cocirs_0401 , cocirs_0402 , cocirs_0403 , cocirs_0404 , cocirs_0405 , cocirs_0406 , cocirs_0407 , cocirs_0408 , cocirs_0409 , cocirs_0410 , cocirs_0411 , cocirs_0412 , cocirs_0501 , cocirs_0502 , cocirs_0503 , cocirs_0504 , cocirs_0505 , cocirs_0506 , cocirs_0507 , cocirs_0508 , cocirs_0509 , cocirs_0510 , cocirs_0511 , cocirs_0512 , cocirs_0601 , cocirs_0602 , cocirs_0603 , cocirs_0604 , cocirs_0605 , cocirs_0606 , cocirs_0607 , cocirs_0608 , cocirs_0609 , cocirs_0610 , cocirs_0611 , cocirs_0612 , cocirs_0701 , cocirs_0702 , cocirs_0703 , cocirs_0704 , cocirs_0705 , cocirs_0706 , cocirs_0707 , cocirs_0708 , cocirs_0709 , cocirs_0710 , cocirs_0711 , cocirs_0712 , cocirs_0801 , cocirs_0802 , cocirs_0803 , cocirs_0804 , cocirs_0805 , cocirs_0806 , cocirs_0807 , cocirs_0808 , cocirs_0809 , cocirs_0810 , cocirs_0811 , cocirs_0812 , cocirs_0901 , cocirs_0902 , cocirs_0903 , cocirs_0904 , cocirs_0905 , cocirs_0906 , cocirs_0907 , cocirs_0908 , cocirs_0909 , cocirs_0910 , cocirs_0911 , cocirs_0912 , cocirs_1001 , cocirs_1002 , cocirs_1004 , cocirs_1005 , cocirs_1006 , cocirs_1007 , cocirs_1008 , cocirs_1009 , cocirs_1010 , cocirs_1011 , cocirs_1012 , cocirs_1101 , cocirs_1102 , cocirs_1103 , cocirs_1104 , cocirs_1105 , cocirs_1106 , cocirs_1107 , cocirs_1108 , cocirs_1109 , cocirs_1110 , cocirs_1111 , cocirs_1112 , cocirs_1201 , cocirs_1202 , cocirs_1203 , cocirs_1204 , cocirs_1205 , cocirs_1206 , cocirs_1207 , cocirs_1208 , cocirs_1209 , cocirs_1210 , cocirs_1211 , cocirs_1212 , cocirs_1301 , cocirs_1302 , cocirs_1303 , cocirs_1304 , cocirs_1305 , cocirs_1306 , cocirs_1307 , cocirs_1308 , cocirs_1309 , cocirs_1310 , cocirs_1311 , cocirs_1312 , cocirs_1401 , cocirs_1402 , cocirs_1403 , cocirs_1404 , cocirs_1405 , cocirs_1406 , cocirs_1407 , cocirs_1408 , cocirs_1409 , cocirs_1410 , cocirs_1411 , cocirs_1412 , cocirs_1501 , cocirs_1502 , cocirs_1503 , cocirs_1504 , cocirs_1505 , cocirs_1506 , cocirs_1507 , cocirs_1508 , cocirs_1509 , cocirs_1510 , cocirs_1511 , cocirs_1512 , cocirs_1601 , cocirs_1602 , cocirs_1603 , cocirs_1604 , cocirs_1605 , cocirs_1606 , cocirs_1607 , cocirs_1608 , cocirs_1609 , cocirs_1610 , cocirs_1611 , cocirs_1612 , cocirs_1701 , cocirs_1702 , cocirs_1703 , cocirs_1704 , cocirs_1705 , cocirs_1706 , cocirs_1707 , cocirs_1708 , cocirs_1709 (Cassini Infrared Spectra)"} +{"id": "CO-S-RADAR-5-RADIOMETRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RADAR-5-RADIOMETRY-V1.0", "publication_date": "2013-05-01", "description": "This volume contains Saturn global mapping radiometry scans.", "volume_set_name": "CASSINI RADAR THERMAL EMISSION MAPS", "volume_id": "CORADR_5001", "volume_name": "Saturn Cassini RADAR Radiometry", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coradr_5001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume coradr_5001 , (Saturn Cassini RADAR Radiometry)"} +{"id": "CO-X-RSS-1-GWE1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-X-RSS-1-GWE1-V1.0", "publication_date": "2005-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the first Cassini Gravitational Wave Experiment.", "volume_set_name": "CASSINI: RAW RS GWE1 DATA", "volume_id": "CORS_0010", "volume_name": "VOLUME 0010: 2002-01-01 TO 2002-01-05", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0001 , cors_0002 , cors_0003 , cors_0004 , cors_0005 , cors_0006 , cors_0007 , cors_0008 , cors_0009 , cors_0010 (Cassini RSS Raw Data Set - GWE1)"} +{"id": "CO-SS-RSS-1-SCE1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCE1-V1.0", "publication_date": "2005-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the first Cassini Solar Conjunction Experiment.", "volume_set_name": "CASSINI: RAW RS SCE1 DATA", "volume_id": "CORS_0028", "volume_name": "VOLUME 0028: 2002-07-04 TO 2002-07-05", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0028", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0021 , cors_0022 , cors_0023 , cors_0024 , cors_0025 , cors_0026 , cors_0027 , cors_0028 (Cassini RSS Raw Data Set - SCE1)"} +{"id": "CO-X-RSS-1-GWE2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-X-RSS-1-GWE2-V1.0", "publication_date": "2005-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the second Cassini Gravitational Wave Experiment.", "volume_set_name": "CASSINI: RAW RS GWE2 DATA", "volume_id": "CORS_0050", "volume_name": "VOLUME 0050: 2003-01-11 TO 2003-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0050", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0041 , cors_0042 , cors_0043 , cors_0044 , cors_0045 , cors_0046 , cors_0047 , cors_0048 , cors_0049 , cors_0050 (Cassini RSS Raw Data Set - GWE2)"} +{"id": "CO-X-RSS-1-GWE3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-X-RSS-1-GWE3-V1.0", "publication_date": "2005-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the third Cassini Gravitational Wave Experiment.", "volume_set_name": "CASSINI: RAW RS GWE3 DATA", "volume_id": "CORS_0085", "volume_name": "VOLUME 0085: 2003-11-26 TO 2003-11-29", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0085", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0081 , cors_0082 , cors_0083 , cors_0084 , cors_0085 (Cassini RSS Raw Data Set - GWE3)"} +{"id": "CO-SSA-RSS-1-ENGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR1-V1.0", "publication_date": "2006-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Enceladus Gravity Experiment on February 16-17 2005.", "volume_set_name": "CASSINI: RAW RS ENGR1 DATA", "volume_id": "CORS_0101", "volume_name": "VOLUME 0101: 2005-02-16 TO 2005-02-17", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0101", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0101 (Cassini RSS Raw Data Set - ENGR1)"} +{"id": "CO-SSA-RSS-1-TIGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR1-V1.0", "publication_date": "2006-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Titan Gravity Science Enhancement Experiment on March 30 2005.", "volume_set_name": "CASSINI: RAW RS TIGR1 DATA", "volume_id": "CORS_0102", "volume_name": "VOLUME 0102: 2005-03-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0102", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0102 (Cassini RSS Raw Data Set - TIGR1)"} +{"id": "CO-S-RSS-1-SAGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR1-V1.0", "publication_date": "2006-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Saturn Gravity Science Enhancement Experiments on May 2, May 4, June 6, June 9, June 26 and June 27, 2005.", "volume_set_name": "CASSINI: RAW RS SAGR1 DATA", "volume_id": "CORS_0103", "volume_name": "VOLUME 0103: 2005-04-01 TO 2005-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0103", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0103 (Cassini RSS Raw Data Set - SAGR1 V1.0)"} +{"id": "CO-S-RSS-1-SROC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC1-V1.0", "publication_date": "2006-04-01", "description": "This volume contains raw data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on May 3, May 21, June 8, and June 27, 2005.", "volume_set_name": "CASSINI: RAW RS SROC1 DATA", "volume_id": "CORS_0116", "volume_name": "VOLUME 0116: 2005-04-01 TO 2005-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0116", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0104 , cors_0105 , cors_0106 , cors_0107 , cors_0108 , cors_0109 , cors_0110 , cors_0111 , cors_0112 , cors_0113 , cors_0114 , cors_0115 , cors_0116 (Cassini RSS Raw Data Set - SROC1 V1.0)"} +{"id": "CO-S-RSS-1-SROC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC2-V1.0", "publication_date": "2006-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on July 15, August 2, August 20, and September 5, 2005.", "volume_set_name": "CASSINI: RAW RS SROC2 DATA", "volume_id": "CORS_0126", "volume_name": "VOLUME 0126: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0126", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0117 , cors_0118 , cors_0119 , cors_0120 , cors_0121 , cors_0122 , cors_0123 , cors_0124 , cors_0125 , cors_0126 (Cassini RSS Raw Data Set - SROC2)"} +{"id": "CO-S-RSS-1-SAGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR2-V1.0", "publication_date": "2006-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Saturn Gravity Science Enhancement Experiments on July 13, July 15, August 1, August 2, August 20, August 21, August 23, September 5, and September 6, 2005.", "volume_set_name": "CASSINI: RAW RS SAGR2 DATA", "volume_id": "CORS_0127", "volume_name": "VOLUME 0127: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0127", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0127 (Cassini RSS Raw Data Set - SAGR2)"} +{"id": "CO-SSA-RSS-1-HYGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-HYGR1-V1.0", "publication_date": "2006-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Hyperion Gravity Science Experiments on September 25 and September 26, 2005 OBJECT = DATA_PRODUCER INSTITUTION_NAME =", "volume_set_name": "CASSINI: RAW RS HYGR1 DATA", "volume_id": "CORS_0128", "volume_name": "VOLUME 0128: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0128", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0128 (Cassini RSS Raw Data Set - HYGR1)"} +{"id": "CO-SS-RSS-1-SCC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC1-V1.0", "publication_date": "2006-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Solar Corona Characterization Experiment on July 15, July 17, July 21, July 22, July 23, July 24, and July 25, 2005 OBJECT = DATA_PRODUCER INSTITUTION_NAME =", "volume_set_name": "CASSINI: RAW RS SCC1 DATA", "volume_id": "CORS_0129", "volume_name": "VOLUME 0129: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0129", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0129 (Cassini RSS Raw Data Set - SCC1)"} +{"id": "CO-SSA-RSS-1-TIGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR2-V1.0", "publication_date": "2006-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Titan Gravity Science Enhancement Experiments on October 27, October 29, December 25, December 27, and December 28 2005.", "volume_set_name": "CASSINI: RAW RS TIGR2 DATA", "volume_id": "CORS_0130", "volume_name": "VOLUME 0130: 2005-10-01 TO 2005-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0130", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0130 (Cassini RSS Raw Data Set - TIGR2)"} +{"id": "CO-SSA-RSS-1-DIGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR1-V1.0", "publication_date": "2006-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Dione Gravity Science Experiments on October 10, 11, and 12 2005.", "volume_set_name": "CASSINI: RAW RS DIGR1 DATA", "volume_id": "CORS_0131", "volume_name": "VOLUME 0131: 2005-10-01 TO 2005-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0131", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0131 (Cassini RSS Raw Data Set - DIGR1)"} +{"id": "CO-SSA-RSS-1-RHGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-RHGR1-V1.0", "publication_date": "2006-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Rhea Gravity Science Experiments on November 25, 26, and 27 2005.", "volume_set_name": "CASSINI: RAW RS RHGR1 DATA", "volume_id": "CORS_0132", "volume_name": "VOLUME 0132: 2005-10-01 TO 2005-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0132", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0132 (Cassini RSS Raw Data Set - RHGR1)"} +{"id": "CO-SSA-RSS-1-TIGR3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR3-V1.0", "publication_date": "2007-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on February 27, March 1, 18 and 19, 2006.", "volume_set_name": "CASSINI: RAW RS TIGR3 DATA", "volume_id": "CORS_0133", "volume_name": "VOLUME 0133: 2006-01-01 TO 2006-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0133", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0133 (Cassini RSS Raw Data Set - TIGR3)"} +{"id": "CO-SSA-RSS-1-TBOC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC1-V1.0", "publication_date": "2007-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on March 18, and 19, 2006.", "volume_set_name": "CASSINI: RAW RS TBOC1 DATA", "volume_id": "CORS_0140", "volume_name": "VOLUME 0140: 2006-01-01 TO 2006-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0140", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0134 , cors_0135 , cors_0136 , cors_0137 , cors_0138 , cors_0139 , cors_0140 (Cassini RSS Raw Data Set - TBOC1)"} +{"id": "CO-SSA-RSS-1-TIGR4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR4-V1.0", "publication_date": "2007-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on April 29, May 1, 19 and 21, 2006.", "volume_set_name": "CASSINI: RAW RS TIGR4 DATA", "volume_id": "CORS_0141", "volume_name": "VOLUME 0141: 2006-04-01 TO 2006-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0141", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0141 (Cassini RSS Raw Data Set - TIGR4)"} +{"id": "CO-SSA-RSS-1-TBOC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC2-V1.0", "publication_date": "2007-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 20, 2006.", "volume_set_name": "CASSINI: RAW RS TBOC2 DATA", "volume_id": "CORS_0145", "volume_name": "VOLUME 0145: 2006-04-01 TO 2006-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0145", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0142 , cors_0143 , cors_0144 , cors_0145 (Cassini RSS Raw Data Set - TBOC2)"} +{"id": "CO-SSA-RSS-1-TIGR5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR5-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on July 1 and July 2, 2006.", "volume_set_name": "CASSINI: RAW RS TIGR5 DATA", "volume_id": "CORS_0146", "volume_name": "VOLUME 0146: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0146", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0146 (Cassini Rss Raw Data Set - TIGR5)"} +{"id": "CO-S-RSS-1-SAGR3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR3-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on September 8 and 17, 2006 and the Saturn Gravity Field Determination experiment on September 9, 2006.", "volume_set_name": "CASSINI: RAW RS SAGR3 DATA", "volume_id": "CORS_0147", "volume_name": "VOLUME 0147: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0147", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0147 (Cassini Rss Raw Data Set - SAGR3 V1.0)"} +{"id": "CO-SSA-RSS-1-ENOC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENOC1-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Enceladus Occultation experiment on September 15, 2006.", "volume_set_name": "CASSINI: RAW RS ENOC1 DATA", "volume_id": "CORS_0148", "volume_name": "VOLUME 0148: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0148", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0148 (Cassini Rss Raw Data Set - ENOC1)"} +{"id": "CO-S-RSS-1-SROC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC3-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on September 15-17, 2006.", "volume_set_name": "CASSINI: RAW RS SROC3 DATA", "volume_id": "CORS_0163", "volume_name": "VOLUME 0163: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0163", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0149 , cors_0150 , cors_0151 , cors_0152 , cors_0153 , cors_0154 , cors_0155 , cors_0156 , cors_0157 , cors_0158 , cors_0159 , cors_0160 , cors_0161 , cors_0162 , cors_0163 (Cassini Rss Raw Data Set - SROC3)"} +{"id": "CO-SS-RSS-1-SCC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC2-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from July 22 until August 21, 2006.", "volume_set_name": "CASSINI: RAW RS SCC2 DATA", "volume_id": "CORS_0167", "volume_name": "VOLUME 0167: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0167", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0164 , cors_0165 , cors_0166 , cors_0167 (Cassini Rss Raw Data Set - SCC2)"} +{"id": "CO-SSA-RSS-1-TIGR6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR6-V1.0", "publication_date": "2007-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on December 27 and 28, 2006.", "volume_set_name": "CASSINI: RAW RS TIGR6 DATA", "volume_id": "CORS_0168", "volume_name": "VOLUME 0168: 2006-10-01 TO 2006-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0168", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0168 (Cassini Rss Raw Data Set - TIGR6)"} +{"id": "CO-SSA-RSS-1-TIGR7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR7-V1.0", "publication_date": "2008-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on January 28 and 30, and March 25, 26, 2007.", "volume_set_name": "CASSINI: RAW RS TIGR7 DATA", "volume_id": "CORS_0169", "volume_name": "VOLUME 0169: 2007-01-01 TO 2007-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0169", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0169 (Cassini Rss Raw Data Set - TIGR7)"} +{"id": "CO-SSA-RSS-1-TBOC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC3-V1.0", "publication_date": "2008-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on March 25-26, 2007.", "volume_set_name": "CASSINI: RAW RS TBOC3 DATA", "volume_id": "CORS_0175", "volume_name": "VOLUME 0175: 2007-01-01 TO 2007-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0175", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0170 , cors_0171 , cors_0172 , cors_0173 , cors_0174 , cors_0175 (Cassini Rss Raw Data Set - TBOC3)"} +{"id": "CO-SSA-RSS-1-TIGR8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR8-V1.0", "publication_date": "2008-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on May 27, 29 and June 28, 29 and 30, 2007.", "volume_set_name": "CASSINI: RAW RS TIGR8 DATA", "volume_id": "CORS_0176", "volume_name": "VOLUME 0176: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0176", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0176 (CASSINI RSS RAW DATA SET - TIGR8)"} +{"id": "CO-S-RSS-1-SAGR4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR4-V1.0", "publication_date": "2008-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on May 10 and June 12, 2007.", "volume_set_name": "CASSINI: RAW RS SAGR4 DATA", "volume_id": "CORS_0177", "volume_name": "VOLUME 0177: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0177", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0177 (Cassini Rss Raw Data Set - SAGR4)"} +{"id": "CO-S-RSS-1-SROC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC4-V1.0", "publication_date": "2008-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on May 10 and June 11, 2007.", "volume_set_name": "CASSINI: RAW RS SROC3 DATA", "volume_id": "CORS_0182", "volume_name": "VOLUME 0182: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0182", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0178 , cors_0179 , cors_0180 , cors_0181 , cors_0182 (Cassini Rss Raw Data Set - SROC4)"} +{"id": "CO-SSA-RSS-1-TOCC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TOCC1-V1.0", "publication_date": "2008-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Occultation experiment on May 28, 2007.", "volume_set_name": "CASSINI: RAW RS TOCC1 DATA", "volume_id": "CORS_0186", "volume_name": "VOLUME 0186: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0186", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0183 , cors_0184 , cors_0185 , cors_0186 (Cassini RSS Raw Data Set - TOCC1)"} +{"id": "CO-SSA-RSS-1-TIGR9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR9-V1.0", "publication_date": "2008-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on July 17 and July 19, 2007.", "volume_set_name": "CASSINI: RAW RS TIGR9 DATA", "volume_id": "CORS_0187", "volume_name": "VOLUME 0187: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0187", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0187 (Cassini RSS Raw Data Set - TIGR9)"} +{"id": "CO-SSA-RSS-1-IAGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-IAGR1-V1.0", "publication_date": "2008-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Iapetus Gravity Science experiments on September 10, 2007.", "volume_set_name": "CASSINI: RAW RS IAGR1 DATA", "volume_id": "CORS_0188", "volume_name": "VOLUME 0188: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0188", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0188 (Cassini Rss Raw Data Set - IAGR1)"} +{"id": "CO-SSA-RSS-1-TBIS1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS1-V1.0", "publication_date": "2008-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic experiment on July 18, 2007.", "volume_set_name": "CASSINI: RAW RS TOCC1 DATA", "volume_id": "CORS_0195", "volume_name": "VOLUME 0195: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0195", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0189 , cors_0190 , cors_0191 , cors_0192 , cors_0193 , cors_0194 , cors_0195 (Cassini Rss Raw Data Set - TBIS1)"} +{"id": "CO-SS-RSS-1-SCC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC3-V1.0", "publication_date": "2008-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from August 7 until September 4, 2007.", "volume_set_name": "CASSINI: RAW RS SCC3 DATA", "volume_id": "CORS_0199", "volume_name": "VOLUME 0199: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0199", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0196 , cors_0197 , cors_0198 , cors_0199 (Cassini Rss Raw Data Set - SCC3)"} +{"id": "CO-SSA-RSS-1-TIGR10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR10-V1.0", "publication_date": "2008-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on December 4 and December 6, 2007.", "volume_set_name": "CASSINI: RAW RS TIGR10 DATA", "volume_id": "CORS_0200", "volume_name": "VOLUME 0200: 2007-10-01 TO 2007-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0200", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0200 (Cassini Rss Raw Data Set - TIGR10)"} +{"id": "CO-S-RSS-1-SAGR5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR5-V1.0", "publication_date": "2008-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on October 23 and 24, 2007.", "volume_set_name": "CASSINI: RAW RS SAGR3 DATA", "volume_id": "CORS_0201", "volume_name": "VOLUME 0201: 2007-10-01 TO 2007-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0201", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0201 (Cassini Rss Raw Data Set - SAGR5)"} +{"id": "CO-S-RSS-1-SROC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC5-V1.0", "publication_date": "2008-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on October 24, December 3 and 19, 2007.", "volume_set_name": "CASSINI: RAW RS SROC5 DATA", "volume_id": "CORS_0209", "volume_name": "VOLUME 0209: 2007-10-01 TO 2007-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0209", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0202 cors_0203 , cors_0204 , cors_0205 , cors_0206 , cors_0207 , cors_0208 , cors_0209 (Cassini Rss Raw Data Set - SROC5)"} +{"id": "CO-S-RSS-1-SAGR6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR6-V1.0", "publication_date": "2009-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on January 14, February 7, February 9, and March 31, 2008.", "volume_set_name": "CASSINI: RAW RS SAGR6 DATA", "volume_id": "CORS_0210", "volume_name": "VOLUME 0210: 2008-01-01 TO 2008-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0210", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0210 (Cassini RSS Raw Data Set - SAGR6)"} +{"id": "CO-SSA-RSS-1-ENGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR2-V1.0", "publication_date": "2009-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science Enhancement experiments on March 11 and 13, 2008.", "volume_set_name": "CASSINI: RAW RS ENGR2 DATA", "volume_id": "CORS_0211", "volume_name": "VOLUME 0211: 2008-01-01 TO 2008-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0211", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0211 (Cassini RSS Raw Data Set - ENGR2 )"} +{"id": "CO-S-RSS-1-SROC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC6-V1.0", "publication_date": "2009-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on January 15, January 27, February 8, and March 2, 2008.", "volume_set_name": "CASSINI: RAW RS SROC6 DATA", "volume_id": "CORS_0220", "volume_name": "VOLUME 0220: 2008-01-01 TO 2008-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0220", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0212 , cors_0213 , cors_0214 , cors_0215 , cors_0216 , cors_0217 , cors_0218 , cors_0219 , cors_0220 (Cassini RSS Raw Data Set - SROC6)"} +{"id": "CO-S-RSS-1-SAGR7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR7-V1.0", "publication_date": "2009-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Field experiment on May 17, 2008 and the Gravity Science Enhancement experiments on April 2, June 8, 9, 14, 16, 21, and 29, 2008.", "volume_set_name": "CASSINI: RAW RS SAGR7 DATA", "volume_id": "CORS_0221", "volume_name": "VOLUME 0221: 2008-04-01 TO 2008-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0221", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0221 (Cassini RSS Raw Data Set - SAGR7)"} +{"id": "CO-S-RSS-1-SROC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC7-V1.0", "publication_date": "2009-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on April 1, 11, May 9, 17, June 1, 16, and June 23, 2008.", "volume_set_name": "CASSINI: RAW RS SROC7 DATA", "volume_id": "CORS_0236", "volume_name": "VOLUME 0236: 2008-04-01 TO 2008-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0236", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0222 , cors_0223 , cors_0224 , cors_0225 , cors_0226 , cors_0227 , cors_0228 , cors_0229 , cors_0230 , cors_0231 , cors_0232 , cors_0233 , cors_0234 , cors_0235 , cors_0236 (Cassini RSS Raw Data Set - SROC7)"} +{"id": "CO-S-RSS-1-SAGR8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR8-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on July 1, August 17, 19, 24, 27, September 9, 11, 16, 18, 24, 25, 2008.", "volume_set_name": "CASSINI: RAW RS SAGR8 DATA", "volume_id": "CORS_0238", "volume_name": "VOLUME 0238: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0238", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0237 , cors_0238 (CASSINI RSS RAW DATA SET - SAGR8)"} +{"id": "CO-SSA-RSS-1-TIGR11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR11-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Field experiments on July 30, 31, 2008 and the Titan Gravity Science Enhancement experiments on July 29, 31, 2008.", "volume_set_name": "CASSINI: RAW RS TIGR11 DATA", "volume_id": "CORS_0239", "volume_name": "VOLUME 0239: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0239", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0239 (CASSINI RSS RAW DATA SET - TIGR11 V1.0)"} +{"id": "CO-SSA-RSS-1-ENGR3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR3-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science Enhancement experiments on August 10 and 12, 2008 and the Enceladus Gravity Field experiments on August 11 and 12, 2008.", "volume_set_name": "CASSINI: RAW RS ENGR3 DATA", "volume_id": "CORS_0240", "volume_name": "VOLUME 0240: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0240", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0240 (CASSINI RSS RAW DATA SET - ENGR3)"} +{"id": "CO-SS-RSS-1-SCC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC4-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from August 20 until September 15, 2008.", "volume_set_name": "CASSINI: RAW RS SCC4 DATA", "volume_id": "CORS_0243", "volume_name": "VOLUME 0243: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0243", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0241 , cors_0242 , cors_0243 (CASSINI RSS RAW DATA SET - SCC4)"} +{"id": "CO-S-RSS-1-SROC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC8-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on July 7, August 4, 19, 26, and September 10, 2008.", "volume_set_name": "CASSINI: RAW RS SROC8 DATA", "volume_id": "CORS_0252", "volume_name": "VOLUME 0252: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0252", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0244 , cors_0245 , cors_0246 , cors_0247 , cors_0248 , cors_0249 , cors_0250 , cors_0251 , cors_0252 (CASSINI RSS RAW DATA SET - SROC8)"} +{"id": "CO-S-RSS-1-SAGR9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR9-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on October 8, 10, 23, 25, 2008 and the Gravity Field experiment on November 16, 2008.", "volume_set_name": "CASSINI: RAW RS SAGR9 DATA", "volume_id": "CORS_0253", "volume_name": "VOLUME 0253: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0253", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0253 (CASSINI RSS RAW DATA SET - SAGR9)"} +{"id": "CO-SSA-RSS-1-ENGR4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR4-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science Enhancement experiment on November 1, 2008 and the Enceladus Gravity Field experiment on October 31 and November 1, 2008.", "volume_set_name": "CASSINI: RAW RS ENGR4 DATA", "volume_id": "CORS_0254", "volume_name": "VOLUME 0254: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0254", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0254 (CASSINI RSS RAW DATA SET - ENGR4)"} +{"id": "CO-SSA-RSS-1-TIGR12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR12-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science Enhancement experiments on November 2 and 4, 2008.", "volume_set_name": "CASSINI: RAW RS TIGR12 DATA", "volume_id": "CORS_0255", "volume_name": "VOLUME 0255: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0255", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0255 (CASSINI RSS RAW DATA SET - TIGR12)"} +{"id": "CO-SSA-RSS-1-TBOC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC4-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on November 3, 2008.", "volume_set_name": "CASSINI: RAW RS TBOC4 DATA", "volume_id": "CORS_0260", "volume_name": "VOLUME 0260: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0260", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0256 , cors_0257 , cors_0258 , cors_0259 , cors_0260 (CASSINI RSS RAW DATA SET - TBOC4)"} +{"id": "CO-S-RSS-1-SROC9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC9-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring Occultation experiment on October 17, 2008.", "volume_set_name": "CASSINI: RAW RS SROC8 DATA", "volume_id": "CORS_0262", "volume_name": "VOLUME 0262: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0262", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0261 , cors_0262 (CASSINI RSS RAW DATA SET - SROC9)"} +{"id": "CO-SSA-RSS-1-TIGR13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR13-V1.0", "publication_date": "2010-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science Enhancement experiments on March 26 and 28, 2009.", "volume_set_name": "CASSINI: RAW RS TIGR13 DATA", "volume_id": "CORS_0263", "volume_name": "VOLUME 0263: 2009-01-01 TO 2009-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0263", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0263 (CASSINI RSS RAW DATA SET - TIGR13 V1.0)"} +{"id": "CO-SSA-RSS-1-TBIS2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS2-V1.0", "publication_date": "2010-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic experiment on March 27, 2009.", "volume_set_name": "CASSINI: RAW RS TBOC4 DATA", "volume_id": "CORS_0266", "volume_name": "VOLUME 0266: 2009-01-01 TO 2009-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0266", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0264 , cors_0265 , cors_0266 (CASSINI RSS RAW DATA SET - TBIS2 V1.0)"} +{"id": "CO-SSA-RSS-1-TIGR14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR14-V1.0", "publication_date": "2010-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science Enhancement experiments on April 3, 5, June 21 and 23, 2009.", "volume_set_name": "CASSINI: RAW RS TIGR14 DATA", "volume_id": "CORS_0267", "volume_name": "VOLUME 0267: 2009-04-01 TO 2009-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0267", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0267 (Cassini: Raw Rs TIGR14 Data)"} +{"id": "CO-SSA-RSS-1-TBOC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC5-V1.0", "publication_date": "2010-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and occultation experiments conducted on April 4 and June 22, 2009.", "volume_set_name": "CASSINI: RAW RS TBOC5 DATA", "volume_id": "CORS_0278", "volume_name": "VOLUME 0278: 2009-04-01 TO 2009-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0278", "node": "atm", "targets": [], "title": "ATM Volume cors_0268 , cors_0269 , cors_0270 , cors_0271 , cors_0272 , cors_0273 , cors_0274 , cors_0275 , cors_0276 , cors_0277 , cors_0278 (Cassini: Raw RS TBOC5 Data)"} +{"id": "CO-SS-RSS-1-SCC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC5-V1.0", "publication_date": "2010-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from September 2 until September 30, 2009.", "volume_set_name": "CASSINI: RAW RS SCC5 DATA", "volume_id": "CORS_0285", "volume_name": "VOLUME 0285: 2009-07-01 TO 2009-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0285", "node": "atm", "targets": [], "title": "ATM Volume cors_0279 , cors_0280 , cors_0281 , cors_0282 , cors_0283 , cors_0284 , cors_0285 (CASSINI: RAW RS SCC5 DATA)"} +{"id": "CO-SSA-RSS-1-ENGR5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR5-V1.0", "publication_date": "2010-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science Enhancement experiments on November 1, 2, 20 and 21, 2009.", "volume_set_name": "CASSINI: RAW RS ENGR5 DATA", "volume_id": "CORS_0286", "volume_name": "VOLUME 0286: 2009-10-01 TO 2009-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0286", "node": "atm", "targets": [], "title": "ATM Volume cors_0286 (CASSINI: RAW RS ENGR5 DATA)"} +{"id": "CO-S-RSS-1-SROC10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC10-V1.0", "publication_date": "2010-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on November 1, 20, December 9 and 25-26, 2009.", "volume_set_name": "CASSINI: RAW RS SROC10 DATA", "volume_id": "CORS_0305", "volume_name": "VOLUME 0305: 2009-10-01 TO 2009-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0305", "node": "atm", "targets": [], "title": "ATM Volume cors_0287 , cors_0288 , cors_0289 , cors_0290 , cors_0291 , cors_0292 , cors_0293 , cors_0294 , cors_0295 , cors_0296 , cors_0297 , cors_0298 , cors_0299 , cors_0300 , cors_0301 , cors_0302 , cors_0303 , cors_0304 , cors_0305 (CASSINI: RAW RS SROC10 DATA)"} +{"id": "CO-S-RSS-1-SAGR10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR10-V1.0", "publication_date": "2011-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity experiment on January 10-11, 2010 and the Gravity Science Enhancement experiment on January 12, 2010.", "volume_set_name": "CASSINI: RAW RS ENGR5 DATA", "volume_id": "CORS_0306", "volume_name": "VOLUME 0306: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0306", "node": "atm", "targets": [], "title": "ATM Volume cors_0306 (CASSINI: RAW RS ENGR5 DATA)"} +{"id": "CO-SSA-RSS-1-ENOC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENOC2-V1.0", "publication_date": "2011-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Enceladus Occultation experiment on January 26, 2010.", "volume_set_name": "CASSINI: RAW RS ENOC2 DATA", "volume_id": "CORS_0309", "volume_name": "VOLUME 0309: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0309", "node": "atm", "targets": [], "title": "ATM Volume cors_0307 , cors_0308 , cors_0309 (CASSINI: RAW RS ENOC2 DATA)"} +{"id": "CO-S-RSS-1-SROC11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC11-V1.0", "publication_date": "2011-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on January 26-27, 2010.", "volume_set_name": "CASSINI: RAW RS SROC11 DATA", "volume_id": "CORS_0316", "volume_name": "VOLUME 0316: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0316", "node": "atm", "targets": [], "title": "ATM Volume cors_0310 , cors_0311 , cors_0312 , cors_0313 , cors_0314 , cors_0315 , cors_0316 (Cassini: Raw RS SROC11 Data)"} +{"id": "CO-SSA-RSS-1-DIGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR2-V1.0", "publication_date": "2011-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Dione Gravity Science experiments on April 6 and 7, 2010.", "volume_set_name": "CASSINI: RAW RS DIGR2 DATA", "volume_id": "CORS_0317", "volume_name": "VOLUME 0317: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0317", "node": "atm", "targets": [], "title": "ATM Volume cors_0317 (Cassini: Raw RS DIGR2 Data)"} +{"id": "CO-SSA-RSS-1-ENGR6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR6-V1.0", "publication_date": "2011-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science experiments on April 27 and 28, 2010.", "volume_set_name": "CASSINI: RAW RS ENGR6 DATA", "volume_id": "CORS_0319", "volume_name": "VOLUME 0319: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0319", "node": "atm", "targets": [], "title": "ATM Volume cors_0318 , cors_0319 (Cassini: Raw RS ENGR6 Data)"} +{"id": "CO-SSA-RSS-1-TIGR15-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR15-V1.0", "publication_date": "2011-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on May 18, 19 and 20, 2010.", "volume_set_name": "CASSINI: RAW RS TIGR15 DATA", "volume_id": "CORS_0320", "volume_name": "VOLUME 0320: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0320", "node": "atm", "targets": [], "title": "ATM Volume cors_0320 (Cassini: Raw RS TIGR15 Data)"} +{"id": "CO-S-RSS-1-SROC12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC12-V1.0", "publication_date": "2011-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on April 27, 2010 and June 18, 2010.", "volume_set_name": "CASSINI: RAW RS SROC12 DATA", "volume_id": "CORS_0334", "volume_name": "VOLUME 0334: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0334", "node": "atm", "targets": [], "title": "ATM Volume cors_0321 , cors_0322 , cors_0323 , cors_0324 , cors_0325 , cors_0326 , cors_0327 , cors_0328 , cors_0329 , cors_0330 , cors_0331 , cors_0332 , cors_0333 , cors_0334 (Cassini: RAW RS SROC12 Data)"} +{"id": "CO-S-RSS-1-SAGR11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR11-V1.0", "publication_date": "2011-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on July 23 and September 1, 2010.", "volume_set_name": "CASSINI: RAW RS SAGR11 DATA", "volume_id": "CORS_0335", "volume_name": "VOLUME 0335: 2010-07-01 TO 2010-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0335", "node": "atm", "targets": [], "title": "ATM Volume cors_0335 (CASSINI: RAW RS SAGR11 Data)"} +{"id": "CO-S-RSS-1-SROC13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC13-V1.0", "publication_date": "2011-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on July 24 and September 2, 2010.", "volume_set_name": "CASSINI: RAW RS SROC13 DATA", "volume_id": "CORS_0343", "volume_name": "VOLUME 0343: 2010-07-01 TO 2010-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0343", "node": "atm", "targets": [], "title": "ATM Volume cors_0336 , cors_0337 , cors_0338 , cors_0339 , cors_0340 , cors_0341 , cors_0342 , cors_0343 (CASSINI: RAW RS SROC13 Data)"} +{"id": "CO-SS-RSS-1-SCC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC6-V1.0", "publication_date": "2011-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from September 18 until September 30, 2010.", "volume_set_name": "CASSINI: RAW RS SCC6 DATA", "volume_id": "CORS_0345", "volume_name": "VOLUME 0345: 2010-07-01 TO 2010-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0345", "node": "atm", "targets": [], "title": "ATM Volume cors_0344 , cors_0345 (CASSINI: RAW RS SCC6 Data)"} +{"id": "CO-SS-RSS-1-SCC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC7-V1.0", "publication_date": "2011-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from October 1 until October 13, 2010.", "volume_set_name": "CASSINI: RAW RS SCC7 DATA", "volume_id": "CORS_0347", "volume_name": "VOLUME 0347: 2010-10-01 TO 2010-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0347", "node": "atm", "targets": [], "title": "ATM Volume cors_0346 , cors_0347 (CASSINI: RAW RS SCC7 DATA)"} +{"id": "CO-SSA-RSS-1-ENGR7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR7-V1.0", "publication_date": "2011-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science experiments on November 29 and 30, 2010.", "volume_set_name": "CASSINI: RAW RS ENGR7 DATA", "volume_id": "CORS_0348", "volume_name": "VOLUME 0348: 2010-10-01 TO 2010-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0348", "node": "atm", "targets": [], "title": "ATM Volume cors_0348 (CASSINI: RAW RS ENGR7 DATA)"} +{"id": "CO-SSA-RSS-1-TIGR16-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR16-V1.0", "publication_date": "2012-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on February 17, 18 and 19, 2011.", "volume_set_name": "CASSINI: RAW RS TIGR16 DATA", "volume_id": "CORS_0350", "volume_name": "VOLUME 0350: 2011-01-01 TO 2011-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0350", "node": "atm", "targets": [], "title": "ATM Volume cors_0349 cors_0350 (CASSINI: RAW RS TIGR16 DATA)"} +{"id": "CO-S-RSS-1-SAGR12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR12-V1.0", "publication_date": "2012-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on July 31 and August 2, 2011.", "volume_set_name": "CASSINI: RAW RS SAGR12 DATA", "volume_id": "CORS_0351", "volume_name": "VOLUME 0351: 2011-07-01 TO 2011-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0351", "node": "atm", "targets": [], "title": "ATM Volume cors_0351 (CASSINI: RAW RS SAGR12 DATA)"} +{"id": "CO-SS-RSS-1-SCC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC8-V1.0", "publication_date": "2012-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from September 27 until September 30, 2011.", "volume_set_name": "CASSINI: RAW RS SCC8 DATA", "volume_id": "CORS_0352", "volume_name": "VOLUME 0352: 2011-07-01 TO 2011-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0352", "node": "atm", "targets": [], "title": "ATM Volume cors_0352 (CASSINI: RAW RS SCC8 DATA)"} +{"id": "CO-S-RSS-1-SROC14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC14-V1.0", "publication_date": "2012-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Atmospheric Occultation experiment on August 1, 2011.", "volume_set_name": "CASSINI: RAW RS SROC14 DATA", "volume_id": "CORS_0358", "volume_name": "VOLUME 0358: 2011-07-01 TO 2011-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0358", "node": "atm", "targets": [], "title": "ATM Volume cors_0353 cors_0354 cors_0355 cors_0356 cors_0357 cors_0358 (CASSINI: RAW RS SROC14 DATA)"} +{"id": "CO-SSA-RSS-1-DIGR3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR3-V1.0", "publication_date": "2012-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Dione Gravity Science experiments on December 11, and 12, 2012.", "volume_set_name": "CASSINI: RAW RS DIGR3 DATA", "volume_id": "CORS_0359", "volume_name": "VOLUME 0359: 2011-10-01 TO 2011-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0359", "node": "atm", "targets": [], "title": "ATM Volume cors_0359 (CASSINI: RAW RS DIGR3 DATA)"} +{"id": "CO-SS-RSS-1-SCC9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC9-V1.0", "publication_date": "2012-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from October 2 until October 27, 2011.", "volume_set_name": "CASSINI: RAW RS SCC9 DATA", "volume_id": "CORS_0363", "volume_name": "VOLUME 0363: 2011-10-01 TO 2011-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0363", "node": "atm", "targets": [], "title": "ATM Volume cors_0360 cors_0361 cors_0362 cors_0363 (CASSINI: RAW RS SCC9 DATA)"} +{"id": "CO-S-RSS-1-SAGR13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR13-V1.0", "publication_date": "2013-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on June 6, 27 and 29, 2012.", "volume_set_name": "CASSINI: RAW RS SAGR13 DATA", "volume_id": "CORS_0364", "volume_name": "VOLUME 0364: 2012-04-01 TO 2012-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0364", "node": "atm", "targets": [], "title": "ATM Volume cors_0364 (CASSINI: RAW RS SAGR13 DATA)"} +{"id": "CO-SSA-RSS-1-ENGR8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR8-V1.0", "publication_date": "2013-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science experiments on May 1, 2, and 3, 2012.", "volume_set_name": "CASSINI: RAW RS ENGR8 DATA", "volume_id": "CORS_0365", "volume_name": "VOLUME 0365: 2012-04-01 TO 2012-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0365", "node": "atm", "targets": [], "title": "ATM Volume cors_0365 (CASSINI: RAW RS ENGR8 DATA)"} +{"id": "CO-S-RSS-1-SROC15-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC15-V1.0", "publication_date": "2013-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring Occultation experiments on June 4 and 28, 2012.", "volume_set_name": "CASSINI: RAW RS SROC15 DATA", "volume_id": "CORS_0372", "volume_name": "VOLUME 0372: 2012-04-01 TO 2012-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0372", "node": "atm", "targets": [], "title": "ATM Volume cors_0366 cors_0367 cors_0368 cors_0369 cors_0370 cors_0371 cors_0372 (CASSINI: RAW RS SROC15 DATA)"} +{"id": "CO-S-RSS-1-SAGR14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR14-V1.0", "publication_date": "2013-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on July 23, August 12, and September 1, 2012.", "volume_set_name": "CASSINI: RAW RS SAGR14 DATA", "volume_id": "CORS_0373", "volume_name": "VOLUME 0373: 2012-07-01 TO 2012-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0373", "node": "atm", "targets": [], "title": "ATM Volume cors_0373 (CASSINI: RAW RS SAGR14 DATA)"} +{"id": "CO-S-RSS-1-SROC16-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC16-V1.0", "publication_date": "2013-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on July 22, August 12, and September 2, 2012.", "volume_set_name": "CASSINI: RAW RS SROC16 DATA", "volume_id": "CORS_0384", "volume_name": "VOLUME 0384: 2012-07-01 TO 2012-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0384", "node": "atm", "targets": [], "title": "ATM Volume cors_0374 , cors_0375 , cors_0376 , cors_0377 , cors_0378 , cors_0379 , cors_0380 , cors_0381 , cors_0382 , cors_0383 , cors_0384 (CASSINI: RAW RS SROC16 DATA)"} +{"id": "CO-SS-RSS-1-SCC10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC10-V1.0", "publication_date": "2013-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from October 5 until November 14, 2012.", "volume_set_name": "CASSINI: RAW RS SCC10 DATA", "volume_id": "CORS_0388", "volume_name": "VOLUME 0388: 2012-10-01 TO 2012-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0388", "node": "atm", "targets": [], "title": "ATM Volume cors_0385 , cors_0386 , cors_0387 , cors_0388 (CASSINI: RAW RS SCC10 DATA)"} +{"id": "CO-S-RSS-1-SROC17-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC17-V1.0", "publication_date": "2013-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring Occultation experiment on November 10, 2012.", "volume_set_name": "CASSINI: RAW RS SROC17 DATA", "volume_id": "CORS_0391", "volume_name": "VOLUME 0391: 2012-10-01 TO 2012-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0391", "node": "atm", "targets": [], "title": "ATM Volume cors_0389 , cors_0390 , cors_0391 (CASSINI: RAW RS SROC17 DATA)"} +{"id": "CO-S-RSS-1-SAGR15-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR15-V1.0", "publication_date": "2014-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on January 17 and 19, 2013.", "volume_set_name": "CASSINI: RAW RS SAGR15 DATA", "volume_id": "CORS_0392", "volume_name": "VOLUME 0392: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0392", "node": "atm", "targets": [], "title": "ATM Volume cors_0392 , (CASSINI: RAW RS SAGR15 DATA)"} +{"id": "CO-SSA-RSS-1-RHGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-RHGR2-V1.0", "publication_date": "2014-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Rhea Gravity Science experiments on March 8, 9 and 10, 2013.", "volume_set_name": "CASSINI: RAW RS RHGR2 DATA", "volume_id": "CORS_0393", "volume_name": "VOLUME 0393: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0393", "node": "atm", "targets": [], "title": "ATM Volume cors_0393 , (CASSINI: RAW RS RHGR2 DATA)"} +{"id": "CO-SSA-RSS-1-TIGR17-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR17-V1.0", "publication_date": "2014-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on February 15, 16 and 17, 2013.", "volume_set_name": "CASSINI: RAW RS TIGR17 DATA", "volume_id": "CORS_0395", "volume_name": "VOLUME 0395: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0395", "node": "atm", "targets": [], "title": "ATM Volume cors_0394 , cors_0395 (CASSINI: RAW RS TIGR17 DATA)"} +{"id": "CO-S-RSS-1-SROC18-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC18-V1.0", "publication_date": "2014-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on January 5, 8, 31 and February 25, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC18 DATA", "volume_id": "CORS_0413", "volume_name": "VOLUME 0413: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0413", "node": "atm", "targets": [], "title": "ATM Volume cors_0396 , cors_0397 , cors_0398 , cors_0399 , cors_0400 , cors_0401 , cors_0402 , cors_0403 , cors_0404 , cors_0405 , cors_0406 , cors_0407 , cors_0408 , cors_0409 , cors_0410 , cors_0411 , cors_0412 , cors_0413 , (Cassini: Raw RS SROC18 Data)"} +{"id": "CO-S-RSS-1-SAGR16-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR16-V1.0", "publication_date": "2014-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on May 30, 31, June 23 and 24, 2013.", "volume_set_name": "CASSINI: RAW RS SAGR16 DATA", "volume_id": "CORS_0414", "volume_name": "VOLUME 0414: 2013-04-01 TO 2013-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0414", "node": "atm", "targets": [], "title": "ATM Volume cors_0414 (CASSINI: RAW RS SAGR16 DATA)"} +{"id": "CO-S-RSS-1-SROC19-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC19-V1.0", "publication_date": "2014-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on April 12, May 10, 20, 31, June 24, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC19 DATA", "volume_id": "CORS_0455", "volume_name": "VOLUME 0455: 2013-04-01 TO 2013-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0455", "node": "atm", "targets": [], "title": "ATM Volume cors_0415 , cors_0416 , cors_0417 , cors_0418 , cors_0419 , cors_0420 , cors_0421 , cors_0422 , cors_0423 , cors_0424 , cors_0425 , cors_0426 , cors_0427 , cors_0428 , cors_0429 , cors_0430 , cors_0431 , cors_0432 , cors_0433 , cors_0434 , cors_0435 , cors_0436 , cors_0437 , cors_0438 , cors_0439 , cors_0440 , cors_0441 , cors_0442 , cors_0443 , cors_0444 , cors_0445 , cors_0446 , cors_0447 , cors_0448 , cors_0449 , cors_0450 , cors_0451 , cors_0452 , cors_0453 , cors_0454 , cors_0455 (CASSINI: RAW RS SROC19 DATA)"} +{"id": "CO-S-RSS-1-SAGR17-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR17-V1.0", "publication_date": "2014-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiment on July 5, 2013.", "volume_set_name": "CASSINI: RAW RS SAGR17 DATA", "volume_id": "CORS_0456", "volume_name": "VOLUME 0456: 2013-07-01 TO 2013-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0456", "node": "atm", "targets": [], "title": "ATM Volume cors_0456 (CASSINI: RAW RS SAGR17 DATA)"} +{"id": "CO-S-RSS-1-SROC20-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC20-V1.0", "publication_date": "2014-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on July 6, August 8, September 1, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC20 DATA", "volume_id": "CORS_0481", "volume_name": "VOLUME 0481: 2013-07-01 TO 2013-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0481", "node": "atm", "targets": [], "title": "ATM Volume cors_0457 , cors_0458 , cors_0459 , cors_0460 , cors_0461 , cors_0462 , cors_0463 , cors_0464 , cors_0465 , cors_0466 , cors_0467 , cors_0468 , cors_0469 , cors_0470 , cors_0471 , cors_0472 , cors_0473 , cors_0474 , cors_0475 , cors_0476 , cors_0477 , cors_0478 , cors_0479 , cors_0480 , cors_0481 (CASSINI: RAW RS SROC20 DATA)"} +{"id": "CO-SS-RSS-1-SCC11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC11-V1.0", "publication_date": "2014-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from October 24 until November 20, 2013.", "volume_set_name": "CASSINI: RAW RS SCC11 DATA", "volume_id": "CORS_0486", "volume_name": "VOLUME 0486: 2013-10-01 TO 2013-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0486", "node": "atm", "targets": [], "title": "ATM Volume cors_0482 , cors_0483 , cors_0484 , cors_0485 , cors_0486 (CASSINI: RAW RS SCC11 DATA)"} +{"id": "CO-SSA-RSS-1-TIGR18-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR18-V1.0", "publication_date": "2015-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on March 5, 6 and 7, 2014.", "volume_set_name": "CASSINI: RAW RS TIGR18 DATA", "volume_id": "CORS_0488", "volume_name": "VOLUME 0488: 2014-01-01 TO 2014-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0488", "node": "atm", "targets": [], "title": "ATM Volume cors_0487 , cors_0488 (CASSINI: RAW RS TIGR18 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC6-V1.0", "publication_date": "2015-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 17 and June 18, 2014.", "volume_set_name": "CASSINI: RAW RS TBOC6 DATA", "volume_id": "CORS_0507", "volume_name": "VOLUME 0507: 2014-04-01 TO 2014-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0507", "node": "atm", "targets": [], "title": "ATM Volume cors_0489 , cors_0490 , cors_0491 , cors_0492 , cors_0493 , cors_0494 , cors_0495 , cors_0496 , cors_0497 , cors_0498 , cors_0499 , cors_0500 , cors_0501 , cors_0502 , cors_0503 , cors_0504 , cors_0505 , cors_0506 , cors_0507 (CASSINI: RAW RS TBOC6 DATA)"} +{"id": "CO-SS-RSS-1-SCC12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC12-V1.0", "publication_date": "2015-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from November 4 until December 1, 2014.", "volume_set_name": "CASSINI: RAW RS SCC12 DATA", "volume_id": "CORS_0512", "volume_name": "VOLUME 0512: 2014-10-01 TO 2014-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0512", "node": "atm", "targets": [], "title": "ATM Volume cors_0508 , cors_0509 , cors_0510 , cors_0511 , cors_0512 (CASSINI: RAW RS SCC12 DATA)"} +{"id": "CO-SSA-RSS-1-TBIS3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS3-V1.0", "publication_date": "2015-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic experiment on October 23 and 24, 2014.", "volume_set_name": "CASSINI: RAW RS TBIS3 DATA", "volume_id": "CORS_0524", "volume_name": "VOLUME 0524: 2014-10-01 TO 2014-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0524", "node": "atm", "targets": [], "title": "ATM Volume cors_0513 , cors_0514 , cors_0515 , cors_0516 , cors_0517 , cors_0518 , cors_0519 , cors_0520 , cors_0521 , cors_0522 , cors_0523 , cors_0524 (CASSINI: RAW RS TBIS3 DATA)"} +{"id": "CO-SSA-RSS-1-TIGR19-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR19-V1.0", "publication_date": "2016-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science LGA Titan Gravity Science experiment on March 16, 2015.", "volume_set_name": "CASSINI: RAW RS TIGR19 DATA", "volume_id": "CORS_0525", "volume_name": "VOLUME 0525: 2015-01-01 TO 2015-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0525", "node": "atm", "targets": [], "title": "ATM Volume cors_0525 (CASSINI: RAW RS TIGR19 DATA)"} +{"id": "CO-SSA-RSS-1-DIGR4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR4-V1.0", "publication_date": "2016-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Dione Gravity Science experiment on June 15, 16, and 17, 2015.", "volume_set_name": "CASSINI: RAW RS DIGR4 DATA", "volume_id": "CORS_0526", "volume_name": "VOLUME 0526: 2015-04-01 TO 2015-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0526", "node": "atm", "targets": [], "title": "ATM Volume cors_0526 (CASSINI: RAW RS DIGR4 DATA)"} +{"id": "CO-SSA-RSS-1-DIGR5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR5-V1.0", "publication_date": "2016-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Dione Gravity Science experiment on August 16, 17, and 18, 2015.", "volume_set_name": "CASSINI: RAW RS DIGR5 DATA", "volume_id": "CORS_0527", "volume_name": "VOLUME 0527: 2015-07-01 TO 2015-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0527", "node": "atm", "targets": [], "title": "ATM Volume cors_0527 (CASSINI: RAW RS DIGR5 DATA)"} +{"id": "CO-SS-RSS-1-SCC13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC13-V1.0", "publication_date": "2016-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from November 18 until December 14, 2015.", "volume_set_name": "CASSINI: RAW RS SCC13 DATA", "volume_id": "CORS_0531", "volume_name": "VOLUME 0531: 2015-10-01 TO 2015-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0531", "node": "atm", "targets": [], "title": "ATM Volume cors_0528 , cors_0529 , cors_0530 , cors_0531 (CASSINI: RAW RS SCC13 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC7-V1.0", "publication_date": "2017-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on February 16, 2016.", "volume_set_name": "CASSINI: RAW RS TBOC7 DATA", "volume_id": "CORS_0538", "volume_name": "VOLUME 0538: 2016-01-01 TO 2016-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0538", "node": "atm", "targets": [], "title": "ATM Volume cors_0532 , cors_0533 , cors_0534 , cors_0535 , cors_0536 , cors_0537 , cors_0538 (CASSINI: RAW RS TBOC7 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC8-V1.0", "publication_date": "2017-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 6, 2016.", "volume_set_name": "CASSINI: RAW RS TBOC8 DATA", "volume_id": "CORS_0545", "volume_name": "VOLUME 0545: 2016-04-01 TO 2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0545", "node": "atm", "targets": [], "title": "ATM Volume cors_0539 , cors_0540 , cors_0541 , cors_0542 , cors_0543 , cors_0544 , cors_0545 (CASSINI: RAW RS TBOC8 DATA)"} +{"id": "CO-S-RSS-1-SROC21-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC21-V1.0", "publication_date": "2017-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on June 6 and June 30, 2016.", "volume_set_name": "CASSINI: RAW RS SROC21 DATA", "volume_id": "CORS_0562", "volume_name": "VOLUME 0562: 2016-04-01 TO 2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0562", "node": "atm", "targets": [], "title": "ATM Volume cors_0546 , cors_0547 , cors_0548 , cors_0549 , cors_0550 , cors_0551 , cors_0552 , cors_0553 , cors_0554 , cors_0555 , cors_0556 , cors_0557 , cors_0558 , cors_0559 , cors_0560 , cors_0561 , cors_0562 (CASSINI: RAW RS SROC21 DATA)"} +{"id": "CO-S-RSS-1-SROC4B-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC4B-V1.0", "publication_date": "2017-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on June 28, 2007.", "volume_set_name": "CASSINI: RAW RS SROC4B DATA", "volume_id": "CORS_0565", "volume_name": "VOLUME 0565: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0565", "node": "atm", "targets": [], "title": "ATM Volume cors_0563 , cors_0564 , cors_0565 (CASSINI: RAW RS SROC4B DATA)"} +{"id": "CO-SSA-RSS-1-TIGR20-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR20-V1.0", "publication_date": "2017-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on August 9, 10, and 11, 2016.", "volume_set_name": "CASSINI: RAW RS TIGR20 DATA", "volume_id": "CORS_0567", "volume_name": "VOLUME 0567: 2016-07-01 TO 2016-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0567", "node": "atm", "targets": [], "title": "ATM Volume cors_0566 , cors_0567 (CASSINI: RAW RS TIGR20 DATA)"} +{"id": "CO-S-RSS-1-SROC22-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC22-V1.0", "publication_date": "2017-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on July 24, 2016.", "volume_set_name": "CASSINI: RAW RS SROC22 DATA", "volume_id": "CORS_0587", "volume_name": "VOLUME 0587: 2016-07-01 TO 2016-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0587", "node": "atm", "targets": [], "title": "ATM Volume cors_0568 , cors_0569 , cors_0570 , cors_0571 , cors_0572 , cors_0573 , cors_0574 , cors_0575 , cors_0576 , cors_0577 , cors_0578 , cors_0579 , cors_0580 , cors_0581 , cors_0582 , cors_0583 , cors_0584 , cors_0585 , cors_0586 , cors_0587 (CASSINI: RAW RS SROC21 DATA)"} +{"id": "CO-SS-RSS-1-SCC14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC14-V1.0", "publication_date": "2017-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from November 26 until December 25, 2016.", "volume_set_name": "CASSINI: RAW RS SCC14 DATA", "volume_id": "CORS_0594", "volume_name": "VOLUME 0594: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0594", "node": "atm", "targets": [], "title": "ATM Volume cors_0588 , cors_0589 , cors_0590 , cors_0591 , cors_0592 , cors_0593 , cors_0594 (CASSINI: RAW RS SCC14 DATA)"} +{"id": "CO-SSA-RSS-1-TBIS4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS4-V1.0", "publication_date": "2017-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic experiment on November 13 and 14, 2016.", "volume_set_name": "CASSINI: RAW RS TBIS4 DATA", "volume_id": "CORS_0601", "volume_name": "VOLUME 0601: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0601", "node": "atm", "targets": [], "title": "ATM Volume cors_0595 , cors_0596 , cors_0597 , cors_0598 , cors_0599 , cors_0600 , cors_0601 (CASSINI: RAW RS TBIS4 DATA)"} +{"id": "CO-S-RSS-1-SROC23-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC23-V1.0", "publication_date": "2017-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on November 2, 12, 28, and on December 5 and 19, 2016.", "volume_set_name": "CASSINI: RAW RS SROC23 DATA", "volume_id": "CORS_0630", "volume_name": "VOLUME 0630: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0630", "node": "atm", "targets": [], "title": "ATM Volume cors_0602 , cors_0603 , cors_0604 , cors_0605 , cors_0606 , cors_0607 , cors_0608 , cors_0609 , cors_0610 , cors_0611 , cors_0612 , cors_0613 , cors_0614 , cors_0615 , cors_0616 , cors_0617 , cors_0618 , cors_0619 , cors_0620 , cors_0621 , cors_0622 , cors_0623 , cors_0624 , cors_0625 , cors_0626 , cors_0627 , cors_0628 , cors_0629 , cors_0630 (CASSINI: RAW RS SROC23 DATA)"} +{"id": "CO-S-RSS-1-SROC24-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC24-V1.0", "publication_date": "2018-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on January 2, 10, 17, and on March 22, 2017.", "volume_set_name": "CASSINI: RAW RS SROC24 DATA", "volume_id": "CORS_0650", "volume_name": "VOLUME 0650: 2017-01-01 TO 2017-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0650", "node": "atm", "targets": [], "title": "ATM Volume cors_0631 , cors_0632 , cors_0633 , cors_0634 , cors_0635 , cors_0636 , cors_0637 , cors_0638 , cors_0639 , cors_0640 , cors_0641 , cors_0642 , cors_0643 , cors_0644 , cors_0645 , cors_0646 , cors_0647 , cors_0648 , cors_0649 , cors_0650 (CASSINI: RAW RS SROC24 DATA)"} +{"id": "CO-S-RSS-1-SAGR18-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR18-V1.0", "publication_date": "2018-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Gravity and Ring Occultation experiments on May 8, 15, 21, June 9, and 22, 2017.", "volume_set_name": "CASSINI: RAW RS SAGR18 DATA", "volume_id": "CORS_0680", "volume_name": "VOLUME 0680: 2017-04-01 TO 2017-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0680", "node": "atm", "targets": [], "title": "ATM Volume cors_0651 , cors_0652 , cors_0653 , cors_0654 , cors_0655 , cors_0656 , cors_0657 , cors_0658 , cors_0659 , cors_0660 , cors_0661 , cors_0662 , cors_0663 , cors_0664 , cors_0665 , cors_0666 , cors_0667 , cors_0668 , cors_0669 , cors_0670 , cors_0671 , cors_0672 , cors_0673 , cors_0674 , cors_0675 , cors_0676 , cors_0677 , cors_0678 , cors_0679 , cors_0680 (CASSINI: RAW RS SAGR18 DATA)"} +{"id": "CO-S-RSS-1-SROC25-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC25-V1.0", "publication_date": "2018-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on April 6, 20, and May 28, 2017.", "volume_set_name": "CASSINI: RAW RS SROC25 DATA", "volume_id": "CORS_0703", "volume_name": "VOLUME 0703: 2017-04-01 TO 2017-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0703", "node": "atm", "targets": [], "title": "ATM Volume cors_0681 , cors_0682 , cors_0683 , cors_0684 , cors_0685 , cors_0686 , cors_0687 , cors_0688 , cors_0689 , cors_0690 , cors_0691 , cors_0692 , cors_0693 , cors_0694 , cors_0695 , cors_0696 , cors_0697 , cors_0698 , cors_0699 , cors_0700 , cors_0701 , cors_0702 , cors_0703 (CASSINI: RAW RS SROC25 DATA)"} +{"id": "CO-S-RSS-1-SAGR19-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR19-V1.0", "publication_date": "2018-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Gravity and Ring Occultation experiments on July 18 and 19, 2017.", "volume_set_name": "CASSINI: RAW RS SAGR18 DATA", "volume_id": "CORS_0708", "volume_name": "VOLUME 0708: 2017-07-01 TO 2017-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0708", "node": "atm", "targets": [], "title": "ATM Volume cors_0704 , cors_0705 , cors_0706 , cors_0707 , cors_0708 (CASSINI: RAW RS SAGR18 DATA)"} +{"id": "CO-S-RSS-1-SROC26-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC26-V1.0", "publication_date": "2018-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on July 6 and September 15, 2017.", "volume_set_name": "CASSINI: RAW RS SROC26 DATA", "volume_id": "CORS_0726", "volume_name": "VOLUME 0726: 2017-07-01 TO 2017-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0726", "node": "atm", "targets": [], "title": "ATM Volume cors_0709 , cors_0710 , cors_0711 , cors_0712 , cors_0713 , cors_0714 , cors_0715 , cors_0716 , cors_0717 , cors_0718 , cors_0719 , cors_0720 , cors_0721 , cors_0722 , cors_0723 , cors_0724 , cors_0725 , cors_0726 (CASSINI: RAW RS SROC26 DATA)"} +{"id": "CO-S-RSS-1-SROC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on May 3, May 21, June 8, and June 27, 2005.", "volume_set_name": "CASSINI: RAW RS SROC1 DATA", "volume_id": "CORS_0728", "volume_name": "VOLUME 0728: 2005-04-01 TO 2005-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0728", "node": "atm", "targets": [], "title": "ATM Volume cors_0727 , cors_0728 (CASSINI: RAW RS SROC1 DATA)"} +{"id": "CO-S-RSS-1-SROC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC2-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on July 15, August 2, August 20, and September 5, 2005.", "volume_set_name": "CASSINI: RAW RS SROC2 DATA", "volume_id": "CORS_0729", "volume_name": "VOLUME 0729: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0729", "node": "atm", "targets": [], "title": "ATM Volume cors_0729 (CASSINI: RAW RS SROC2 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on March 18, and 19, 2006.", "volume_set_name": "CASSINI: RAW RS TBOC1 DATA", "volume_id": "CORS_0730", "volume_name": "VOLUME 0730: 2006-01-01 TO 2006-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0730", "node": "atm", "targets": [], "title": "ATM Volume cors_0730 (CASSINI: RAW RS TBOC1 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC2-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 20, 2006.", "volume_set_name": "CASSINI: RAW RS TBOC2 DATA", "volume_id": "CORS_0731", "volume_name": "VOLUME 0731: 2006-04-01 TO 2006-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0731", "node": "atm", "targets": [], "title": "ATM Volume cors_0731 (CASSINI: RAW RS TBOC2 DATA)"} +{"id": "CO-SSA-RSS-1-ENOC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENOC1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Enceladus Occultation experiment on September 15, 2006.", "volume_set_name": "CASSINI: RAW RS ENOC1 DATA", "volume_id": "CORS_0732", "volume_name": "VOLUME 0732: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0732", "node": "atm", "targets": [], "title": "ATM Volume cors_0732 (CASSINI: RAW RS ENOC1 DATA)"} +{"id": "CO-S-RSS-1-SROC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC3-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on September 15-17, 2006.", "volume_set_name": "CASSINI: RAW RS SROC3 DATA", "volume_id": "CORS_0734", "volume_name": "VOLUME 0734: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0734", "node": "atm", "targets": [], "title": "ATM Volume cors_0733 , cors_0734 (CASSINI: RAW RS ENOC1 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC3-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on March 25-26, 2007.", "volume_set_name": "CASSINI: RAW RS TBOC3 DATA", "volume_id": "CORS_0735", "volume_name": "VOLUME 0735: 2007-01-01 TO 2007-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0735", "node": "atm", "targets": [], "title": "ATM Volume cors_0735 (CASSINI: RAW RS TBOC3 DATA)"} +{"id": "CO-S-RSS-1-SROC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC4-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on May 10 and June 11, 2007.", "volume_set_name": "CASSINI: RAW RS SROC4 DATA", "volume_id": "CORS_0736", "volume_name": "VOLUME 0736: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0736", "node": "atm", "targets": [], "title": "ATM Volume cors_0736 (CASSINI: RAW RS SROC4 DATA)"} +{"id": "CO-SSA-RSS-1-TOCC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TOCC1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Occultation experiment on May 28, 2007.", "volume_set_name": "CASSINI: RAW RS TOCC1 DATA", "volume_id": "CORS_0737", "volume_name": "VOLUME 0737: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0737", "node": "atm", "targets": [], "title": "ATM Volume cors_0737 (CASSINI: RAW RS TOCC1 DATA)"} +{"id": "CO-S-RSS-1-SROC4B-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC4B-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on June 28, 2007.", "volume_set_name": "CASSINI: RAW RS SROC4B DATA", "volume_id": "CORS_0738", "volume_name": "VOLUME 0738: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0738", "node": "atm", "targets": [], "title": "ATM Volume cors_0738 (CASSINI: RAW RS SROC4B DATA)"} +{"id": "CO-SSA-RSS-1-TBIS1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic experiment on July 18, 2007.", "volume_set_name": "CASSINI: RAW RS TOCC1 DATA", "volume_id": "CORS_0739", "volume_name": "VOLUME 0739: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0739", "node": "atm", "targets": [], "title": "ATM Volume cors_0739 (CASSINI: RAW RS TOCC1 DATA)"} +{"id": "CO-S-RSS-1-SROC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC5-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on October 24, December 3 and 19, 2007.", "volume_set_name": "CASSINI: RAW RS SROC5 DATA", "volume_id": "CORS_0740", "volume_name": "VOLUME 0740: 2007-10-01 TO 2007-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0740", "node": "atm", "targets": [], "title": "ATM Volume cors_0740 (CASSINI: RAW RS SROC5 DATA)"} +{"id": "CO-S-RSS-1-SROC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC6-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on January 15, January 27, February 8, and March 2, 2008.", "volume_set_name": "CASSINI: RAW RS SROC6 DATA", "volume_id": "CORS_0741", "volume_name": "VOLUME 0741: 2008-01-01 TO 2008-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0741", "node": "atm", "targets": [], "title": "ATM Volume cors_0741 (CASSINI: RAW RS SROC6 DATA)"} +{"id": "CO-S-RSS-1-SROC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC7-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on April 1, 11, May 9, 17, June 1, 16, and June 23, 2008.", "volume_set_name": "CASSINI: RAW RS SROC7 DATA", "volume_id": "CORS_0744", "volume_name": "VOLUME 0744: 2008-04-01 TO 2008-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0744", "node": "atm", "targets": [], "title": "ATM Volume cors_0742 , cors_0743 , cors_0744 (CASSINI: RAW RS SROC7 DATA)"} +{"id": "CO-S-RSS-1-SROC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC8-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on July 7, August 4, 19, 26, and September 10, 2008.", "volume_set_name": "CASSINI: RAW RS SROC8 DATA", "volume_id": "CORS_0745", "volume_name": "VOLUME 0745: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0745", "node": "atm", "targets": [], "title": "ATM Volume cors_0745 (CASSINI: RAW RS SROC8 DATA)"} +{"id": "CO-S-RSS-1-SROC9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC9-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring Occultation experiment on October 17, 2008.", "volume_set_name": "CASSINI: RAW RS SROC9 DATA", "volume_id": "CORS_0746", "volume_name": "VOLUME 0746: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0746", "node": "atm", "targets": [], "title": "ATM Volume cors_0746 (CASSINI: RAW RS SROC9 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC4-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on November 3, 2008.", "volume_set_name": "CASSINI: RAW RS TBOC4 DATA", "volume_id": "CORS_0747", "volume_name": "VOLUME 0747: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0747", "node": "atm", "targets": [], "title": "ATM Volume cors_0747 (CASSINI: RAW RS TBOC4 DATA)"} +{"id": "CO-SSA-RSS-1-TBIS2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS2-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic experiment on March 27, 2009.", "volume_set_name": "CASSINI: RAW RS TBIS2 DATA", "volume_id": "CORS_0748", "volume_name": "VOLUME 0748: 2009-01-01 TO 2009-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0748", "node": "atm", "targets": [], "title": "ATM Volume cors_0748 (CASSINI: RAW RS TBIS2 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC5-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and occultation experiments conducted on April 4 and June 22, 2009.", "volume_set_name": "CASSINI: RAW RS TBOC5 DATA", "volume_id": "CORS_0749", "volume_name": "VOLUME 0749: 2009-04-01 TO 2009-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0749", "node": "atm", "targets": [], "title": "ATM Volume cors_0749 (CASSINI: RAW RS TBOC5 DATA)"} +{"id": "CO-S-RSS-1-SROC10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC10-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on November 1, 20, December 9 and 25-26, 2009.", "volume_set_name": "CASSINI: RAW RS SROC10 DATA", "volume_id": "CORS_0751", "volume_name": "VOLUME 0751: 2009-10-01 TO 2009-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0751", "node": "atm", "targets": [], "title": "ATM Volume cors_0750 , cors_0751 (CASSINI: RAW RS SROC10 DATA)"} +{"id": "CO-SSA-RSS-1-ENOC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENOC2-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Enceladus Occultation experiment on January 26, 2010.", "volume_set_name": "CASSINI: RAW RS ENOC2 DATA", "volume_id": "CORS_0752", "volume_name": "VOLUME 0752: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0752", "node": "atm", "targets": [], "title": "ATM Volume cors_0752 (CASSINI: RAW RS ENOC2 DATA)"} +{"id": "CO-S-RSS-1-SROC11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC11-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on January 26-27, 2010.", "volume_set_name": "CASSINI: RAW RS SROC11 DATA", "volume_id": "CORS_0753", "volume_name": "VOLUME 0753: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0753", "node": "atm", "targets": [], "title": "ATM Volume cors_0753 (CASSINI: RAW RS SROC11 DATA)"} +{"id": "CO-S-RSS-1-SROC12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC12-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on April 27, 2010 and June 18, 2010.", "volume_set_name": "CASSINI: RAW RS SROC12 DATA", "volume_id": "CORS_0754", "volume_name": "VOLUME 0754: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0754", "node": "atm", "targets": [], "title": "ATM Volume cors_0754 (CASSINI: RAW RS SROC12 DATA)"} +{"id": "CO-S-RSS-1-SROC13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC13-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on July 24 and September 2, 2010.", "volume_set_name": "CASSINI: RAW RS SROC13 DATA", "volume_id": "CORS_0755", "volume_name": "VOLUME 0755: 2010-07-01 TO 2010-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0755", "node": "atm", "targets": [], "title": "ATM Volume cors_0755 (CASSINI: RAW RS SROC13 DATA)"} +{"id": "CO-S-RSS-1-SROC14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC14-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Atmospheric Occultation experiment on August 1, 2011.", "volume_set_name": "CASSINI: RAW RS SROC14 DATA", "volume_id": "CORS_0756", "volume_name": "VOLUME 0756: 2011-07-01 TO 2011-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0756", "node": "atm", "targets": [], "title": "ATM Volume cors_0756 (CASSINI: RAW RS SROC14 DATA)"} +{"id": "CO-S-RSS-1-SROC15-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC15-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring Occultation experiments on June 4 and 28, 2012.", "volume_set_name": "CASSINI: RAW RS SROC15 DATA", "volume_id": "CORS_0757", "volume_name": "VOLUME 0757: 2012-04-01 TO 2012-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0757", "node": "atm", "targets": [], "title": "ATM Volume cors_0757 (CASSINI: RAW RS SROC15 DATA)"} +{"id": "CO-S-RSS-1-SROC16-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC16-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on July 22, August 12, and September 2, 2012.", "volume_set_name": "CASSINI: RAW RS SROC16 DATA", "volume_id": "CORS_0760", "volume_name": "VOLUME 0760: 2012-07-01 TO 2012-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0760", "node": "atm", "targets": [], "title": "ATM Volume cors_0758 , cors_0759 , cors_0760 (CASSINI: RAW RS SROC16 DATA)"} +{"id": "CO-S-RSS-1-SROC17-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC17-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring Occultation experiment on November 10, 2012.", "volume_set_name": "CASSINI: RAW RS SROC17 DATA", "volume_id": "CORS_0761", "volume_name": "VOLUME 0761: 2012-10-01 TO 2012-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0761", "node": "atm", "targets": [], "title": "ATM Volume cors_0761 (CASSINI: RAW RS SROC17 DATA)"} +{"id": "CO-S-RSS-1-SROC18-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC18-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on January 5, 8, 31 and February 25, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC18 DATA", "volume_id": "CORS_0764", "volume_name": "VOLUME 0764: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0764", "node": "atm", "targets": [], "title": "ATM Volume cors_0762 , cors_0763 , cors_0764 (CASSINI: RAW RS SROC18 DATA)"} +{"id": "CO-S-RSS-1-SROC19-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC19-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on April 12, May 10, 20, 31, June 24, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC19 DATA", "volume_id": "CORS_0769", "volume_name": "VOLUME 0769: 2013-04-01 TO 2013-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0769", "node": "atm", "targets": [], "title": "ATM Volume cors_0765 , cors_0766 , cors_0767 , cors_0768 , cors_0769 (CASSINI: RAW RS SROC19 DATA)"} +{"id": "CO-S-RSS-1-SROC20-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC20-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on July 6, August 8, September 1, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC20 DATA", "volume_id": "CORS_0775", "volume_name": "VOLUME 0775: 2013-07-01 TO 2013-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0775", "node": "atm", "targets": [], "title": "ATM Volume cors_0770 , cors_0771 , cors_0772 , cors_0773 , cors_0774 , cors_0775 (CASSINI: RAW RS SROC20 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC6-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 17 and June 18, 2014.", "volume_set_name": "CASSINI: RAW RS TBOC6 DATA", "volume_id": "CORS_0776", "volume_name": "VOLUME 0776: 2014-04-01 TO 2014-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0776", "node": "atm", "targets": [], "title": "ATM Volume cors_0776 (CASSINI: RAW RS TBOC6 DATA)"} +{"id": "CO-SSA-RSS-1-TBIS3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS3-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic experiment on October 23 and 24, 2014.", "volume_set_name": "CASSINI: RAW RS TBIS3 DATA", "volume_id": "CORS_0777", "volume_name": "VOLUME 0777: 2014-10-01 TO 2014-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0777", "node": "atm", "targets": [], "title": "ATM Volume cors_0777 (CASSINI: RAW RS TBIS3 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC7-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on February 16, 2016.", "volume_set_name": "CASSINI: RAW RS TBOC7 DATA", "volume_id": "CORS_0778", "volume_name": "VOLUME 0778: 2016-01-01 TO 2016-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0778", "node": "atm", "targets": [], "title": "ATM Volume cors_0778 (CASSINI: RAW RS TBOC7 DATA)"} +{"id": "CO-SSA-RSS-1-TBOC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC8-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 6, 2016.", "volume_set_name": "CASSINI: RAW RS TBOC8 DATA", "volume_id": "CORS_0779", "volume_name": "VOLUME 0779: 2016-04-01 TO 2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0779", "node": "atm", "targets": [], "title": "ATM Volume cors_0779 (CASSINI: RAW RS TBOC8 DATA)"} +{"id": "CO-S-RSS-1-SROC21-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC21-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on June 6 and June 30, 2016.", "volume_set_name": "CASSINI: RAW RS SROC21 DATA", "volume_id": "CORS_0783", "volume_name": "VOLUME 0783: 2016-04-01 TO 2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0783", "node": "atm", "targets": [], "title": "ATM Volume cors_0780 , cors_0781 , cors_0782 , cors_0783 (CASSINI: RAW RS TBOC21 DATA)"} +{"id": "CO-S-RSS-1-SROC22-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC22-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on July 24, 2016.", "volume_set_name": "CASSINI: RAW RS SROC22 DATA", "volume_id": "CORS_0785", "volume_name": "VOLUME 0785: 2016-07-01 TO 2016-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0785", "node": "atm", "targets": [], "title": "ATM Volume cors_0784 , cors_0785 (CASSINI: RAW RS SROC22 DATA)"} +{"id": "CO-S-RSS-1-SROC23-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC23-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on November 2, 12, 28, and on December 5 and 19, 2016.", "volume_set_name": "CASSINI: RAW RS SROC23 DATA", "volume_id": "CORS_0795", "volume_name": "VOLUME 0795: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0795", "node": "atm", "targets": [], "title": "ATM Volume cors_0786 , cors_0787 , cors_0788 , cors_0789 , cors_0790 , cors_0791 , cors_0792 , cors_0793 , cors_0794 , cors_0795 (CASSINI: RAW RS SROC23 DATA)"} +{"id": "CO-SSA-RSS-1-TBIS4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS4-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic experiment on November 13 and 14, 2016.", "volume_set_name": "CASSINI: RAW RS TBIS4 DATA", "volume_id": "CORS_0796", "volume_name": "VOLUME 0796: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0796", "node": "atm", "targets": [], "title": "ATM Volume cors_0796 (CASSINI: RAW RS TBIS4 DATA)"} +{"id": "CO-S-RSS-1-SROC24-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC24-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on January 2, 10, 17, and on March 22, 2017.", "volume_set_name": "CASSINI: RAW RS SROC24 DATA", "volume_id": "CORS_0800", "volume_name": "VOLUME 0800: 2017-01-01 TO 2017-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0800", "node": "atm", "targets": [], "title": "ATM Volume cors_0797 , cors_0798 , cors_0799 , cors_0800 (CASSINI: RAW RS SROC24 DATA)"} +{"id": "CO-S-RSS-1-SROC25-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC25-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on April 6, 20, and May 28, 2017.", "volume_set_name": "CASSINI: RAW RS SROC25 DATA", "volume_id": "CORS_0805", "volume_name": "VOLUME 0805: 2017-04-01 TO 2017-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0805", "node": "atm", "targets": [], "title": "ATM Volume cors_0801 , cors_0802 , cors_0803 , cors_0804 , cors_0805 (CASSINI: RAW RS SROC25 DATA)"} +{"id": "CO-S-RSS-1-SROC26-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC26-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on July 6 and September 15, 2017.", "volume_set_name": "CASSINI: RAW RS SROC26 DATA", "volume_id": "CORS_0808", "volume_name": "VOLUME 0808: 2017-07-01 TO 2017-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0808", "node": "atm", "targets": [], "title": "ATM Volume cors_0806 , cors_0807 , cors_0808 (CASSINI: RAW RS SROC26 DATA)"} +{"id": "CO-J-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SSB-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-X-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-X-UVIS-2-SSB-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-J-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SPEC-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-X-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-X-UVIS-2-SPEC-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-X-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-X-UVIS-2-CUBE-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-X-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-X-UVIS-2-WAV-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-WAV-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0004", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0004", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0004", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-WAV-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0004", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-WAV-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0006", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0006", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0006", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0006", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-24", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0007", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0007 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-24", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0007", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0007 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-24", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0007", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0007 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0008", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0008", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0008", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-01-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0008", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0009", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0009", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-01-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0009", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0009", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-001...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0010", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-001...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0010", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-001...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0010", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-001...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0010", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0011", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0011", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0011", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0011", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0012", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0012", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0012", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0012", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0013", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0013", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0013", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0013", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0014", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0014", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0014", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0014", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0015", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0015", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0015", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0015", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0016", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0016", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0016", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0016", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2007-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0017", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2007-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0017", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2007-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0017", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2007-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0017", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-001...2007-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0018", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0018 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-001...2007-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0018", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0018 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-001...2007-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0018", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0018 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-182...2007-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0020", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-182...2007-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0020", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-182...2007-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0020", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-182...2007-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0020", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0021", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0021", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0021", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0021", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-02-22", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-092...2008-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0023", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-02-22", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-092...2008-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0023", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-02-22", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-092...2008-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0023", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-02-22", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-092...2008-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0023", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0024", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0024", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0024", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0024", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0025", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0025", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0025", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0025", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-002...2009-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0026", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0026 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-002...2009-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0026", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0026 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-002...2009-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0026", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0026 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0027", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0027", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0027", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0027", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-07", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-182...2009-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0028", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0028 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-07", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-182...2009-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0028", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0028 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-07", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-182...2009-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0028", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0028 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-06", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0029", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-06", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0029", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-06", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0029", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-06", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0029", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-07-16", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0030", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-07-16", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0030", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-07-16", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0030", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-07-16", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0030", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0031", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0031", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0031", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0031", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-06-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-185...2010-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0032", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0032 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-06-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-185...2010-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0032", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0032 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-06-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-185...2010-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0032", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0032 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0033", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0033", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0033", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0033", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-06-14", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-182...2011-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0036", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-06-14", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-182...2011-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0036", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-06-14", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-182...2011-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0036", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-06-14", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-182...2011-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0036", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-09-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0037", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-09-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0037", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-09-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0037", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-09-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0037", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0038", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0038", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0038", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0038", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2013-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0039", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2013-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0039", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2013-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0039", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2013-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0039", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2013-06-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0040", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2013-06-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0040", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2013-06-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0040", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2013-06-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0040", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2013-09-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0041", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2013-09-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0041", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2013-09-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0041", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2013-09-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0041", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.3", "publication_date": "2013-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0042", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SSB-V1.3", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.3", "publication_date": "2013-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0042", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "CO-S-UVIS-2-SPEC-V1.3", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.3", "publication_date": "2013-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0042", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2014-03-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0043", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0043 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2014-06-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-182...2013-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0044", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0044 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2014-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-274...2014-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0045", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0045 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2014-12-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-001...2014-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0046", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0046 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2015-03-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-091...2014-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0047", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0047 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2015-06-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-182...2014-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0048", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0048 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2015-09-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Oct 1, 2014...Jan 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0049", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0049 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0050", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0050 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Apr 1, 2015...Jul 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0051", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0051 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-182...2015-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0052", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0052 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-274...2016-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0053", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0053 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-001...2016-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0054", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0054 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-092...2016-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0055", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0055 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-183...2016-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0056", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0056 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-275...2017-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0057", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0057 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-001...2017-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0058", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0058 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-091...2017-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0059", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0059 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-182...2017-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0060", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0060 (Cassini Ultraviolet Imaging Spectrograph Data)"} +{"id": "HP-SSA-ACP-3-DESCENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-ACP-3-DESCENT-V1.0", "publication_date": "2006-07-17", "description": "N/A", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPACP_0001", "volume_name": "HUYGENS ACP DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpacp_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpacp_0001 (Huygens ACP Calibrated Engineering & Science Data)"} +{"id": "HP-SSA-DISR-2/3-EDR/RDR-V1.3", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-DISR-2/3-EDR/RDR-V1.3", "publication_date": "2006-07-15", "description": "This volume contains datasets from the Descent Imager and Spectral Radiometer (DISR) instrument taken during the descent of the Huygens probe through Titan's atmosphere and onto its surface on 14 January 2005. The data includes images, spectra, and illumination intensity looking both upward and downward during the probe's descent. The volume also contains documentation and index files to support access and use of the data.", "volume_set_name": "N/A", "volume_id": "HPDISR_0001", "volume_name": "N/A", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdisr_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpdisr_0001 (Huygens Probe DISR Results)"} +{"id": "HP-SSA-DTWG-6-TRAJECTORY-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-DTWG-6-TRAJECTORY-V1.0", "publication_date": "2007-03-07", "description": "N/A", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPDTWG_0001", "volume_name": "HUYGENS TRAJECTORY", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdtwg_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpdtwg_0001 (Huygens Trajectory)"} +{"id": "HP-SSA-DWE-2-3-DESCENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-DWE-2-3-DESCENT-V1.0", "publication_date": "2006-07-17", "description": "N/A", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPDWE_0001", "volume_name": "HUYGENS PROBE TITAN DWE DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdwe_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpdwe_0001 (Huygens Probe DWE Results)"} +{"id": "HP-SSA-GCMS-3-FCO/DESCENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-GCMS-3-FCO/DESCENT-V1.0", "publication_date": "2006-06-20", "description": "N/A", "volume_set_name": "N/A", "volume_id": "HPGCMS_0001", "volume_name": "N/A", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpgcms_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpgcms_0001 (Huygens Titan Gas Chromatograph)"} +{"id": "HP-SSA-HASI-2-3-4-MISSION-V1.1", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-HASI-2-3-4-MISSION-V1.1", "publication_date": "2006-10-12", "description": "N/A", "volume_set_name": "N/A", "volume_id": "HPHASI_0001", "volume_name": "N/A", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphasi_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hphasi_0001 (Huygens HASI Mission Raw and Calibrated Data V1.1)"} +{"id": "HP-SSA-HK-2/3-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-HK-2/3-V1.0", "publication_date": "2006-07-17", "description": "N/A", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPHK_0001", "volume_name": "HUYGENS PROBE TITAN ENGINEERING DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphk_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hphk_0001 (Huygens Engineering Data)"} +{"id": "HP-SSA-SSP-3/4-DESCENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-SSP-3/4-DESCENT-V1.0", "publication_date": "2006-07-14", "description": "This volume contains data from HM Surface Science Package from the Huygens Probe", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPSSP_0001", "volume_name": "HUYGENS PROBE TITAN SURFACE SCIENCE PACKAGE DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpssp_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpssp_0001 (Huygens Entry, Descent and Surface Data)"} +{"id": "VG1-S-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1-S-UVS-3-RDR-V1.0", "publication_date": "1997-06-27", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2210", "volume_name": "VOYAGER 1 SATURN ENCOUNTER:1980-11-13 TO 1980-12-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2210", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume vg_2207 , vg_2208 , vg_2209 , vg_2210 (Voyager 1 UVS)"} +{"id": "VG2-S-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-S-UVS-3-RDR-V1.0", "publication_date": "1997-10-01", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2213", "volume_name": "VOYAGER 2 SATURN ENCOUNTER:1981-07-31 TO 1981-08-25", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2213", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume vg_2211 , vg_2212 , vg_2213 (Voyager 2 UVS)"} +{"id": "VG2-U-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-U-UVS-3-RDR-V1.0", "publication_date": "1997-10-06", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2215", "volume_name": "VOYAGER 2 URANUS ENCOUNTER:1986-01-25 TO 1986-02-15", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2215", "node": "atm", "targets": ["Uranus"], "title": "ATM Volume vg_2214 , vg_2215 (Voyager 2 UVS)"} +{"id": "VG2-N-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-N-UVS-3-RDR-V1.0", "publication_date": "1997-06-10", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2216", "volume_name": "VOYAGER 2 NEPTUNE ENCOUNTER: 1989-08-13 TO 1986-09-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2216", "node": "atm", "targets": ["Neptune"], "title": "ATM Volume vg_2216 (Voyager 2 UVS)"} +{"id": "VG2-NSA-RSS-5-ROCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-NSA-RSS-5-ROCC-V1.0", "publication_date": "1998-04-01", "description": "This volume contains results from Voyager 2 radio occultation measurements at Triton.", "volume_set_name": "VOYAGER RADIO OCCULTATION REDUCED DATA", "volume_id": "VG_2499", "volume_name": "VOLUME 1: VOYAGER 2 TRITON RADIO OCCULTATION", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2499", "node": "atm", "targets": ["Neptune"], "title": "ATM Volume vg_2499 (Voyager 2 Triton Radio Occultations)"} +{"id": "MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0", "publication_date": "2015-10-09", "description": "This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS UNCALIBRATED DATA", "volume_id": "MESSMAS_1001", "volume_name": "MESSENGER MASCS UNCALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_1001"} +{"id": "MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0", "publication_date": "2015-10-09", "description": "This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS UNCALIBRATED DATA", "volume_id": "MESSMAS_1001", "volume_name": "MESSENGER MASCS UNCALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_1001"} +{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} +{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} +{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} +{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} +{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} +{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} +{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} +{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} +{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V2.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} +{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} +{"id": "MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-21", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2201", "volume_name": "VOLUME 01: RAW DATA 1991-10-05 THROUGH 1992-02-21", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2201", "node": "atm", "targets": [], "title": "ATM Volume mg_2201"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-21", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2202", "volume_name": "VOLUME 02: RAW DATA 1992-03-07 THROUGH 1992-03-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2202", "node": "atm", "targets": [], "title": "ATM Volume mg_2202"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-22", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2203", "volume_name": "VOLUME 03: RAW DATA 1992-12-07 THROUGH 06:52:08", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2203", "node": "atm", "targets": [], "title": "ATM Volume mg_2203"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-23", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2204", "volume_name": "VOLUME 04: RAW DATA 1992-12-07 AND 1994-06-24", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2204", "node": "atm", "targets": [], "title": "ATM Volume mg_2204"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-23", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2205", "volume_name": "VOLUME 05: RAW DATA 1994-06-24 TO 1994-07-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2205", "node": "atm", "targets": [], "title": "ATM Volume mg_2205"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-24", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2206", "volume_name": "VOLUME 06: RAW DATA 1994-07-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2206", "node": "atm", "targets": [], "title": "ATM Volume mg_2206"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-24", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2207", "volume_name": "VOLUME 07: RAW DATA 1994-07-30 TO 1994-10-01", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2207", "node": "atm", "targets": [], "title": "ATM Volume mg_2207"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-25", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2208", "volume_name": "VOLUME 08: RAW DATA 1994-10-01", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2208", "node": "atm", "targets": [], "title": "ATM Volume mg_2208"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-28", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2209", "volume_name": "VOLUME 09: RAW DATA 1994-10-01 THROUGH 1994-10-02", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2209", "node": "atm", "targets": [], "title": "ATM Volume mg_2209"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-28", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2210", "volume_name": "VOLUME 10: RAW DATA 1994-10-06 TO 1994-10-08", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2210", "node": "atm", "targets": [], "title": "ATM Volume mg_2210"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-29", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2211", "volume_name": "VOLUME 11: RAW DATA 1994-10-08 TO 1994-10-10", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2211", "node": "atm", "targets": [], "title": "ATM Volume mg_2211"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-29", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2212", "volume_name": "VOLUME 12: RAW DATA 1994-10-10 TO 1994-10-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2212", "node": "atm", "targets": [], "title": "ATM Volume mg_2212"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-30", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2213", "volume_name": "VOLUME 13: RAW DATA 1994-10-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2213", "node": "atm", "targets": [], "title": "ATM Volume mg_2213"} +{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-09-25", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2214", "volume_name": "VOLUME 14: RAW DATA 1994-10-11 TO 1994-10-12", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2214", "node": "atm", "targets": [], "title": "ATM Volume mg_2214"} +{"id": "MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0", "publication_date": "1996-06-27", "description": "This volume contains archival data produced from dual-frequency ingress radio occultation experiments using the Magellan orbiter on three consecutive orbits (#3212 - #3214) on October 5 and 6, 1991. The data sets include vertical profiles of refractivity, temperature, pressure and density in the neutral Venus atmosphere, and vertical profiles of 13-cm and 3.6-cm absorptivity and abundance of sulfuric acid vapor (H2SO4). The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MAGELLAN OCCULTATION PROFILE DATA RECORD", "volume_id": "MG_2401", "volume_name": "MAGELLAN OCCULTATION PROFILE DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2401", "node": "atm", "targets": [], "title": "ATM Volume mg_2401"} +{"id": "PVO-V-OUVS-5-IMIDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PVO-V-OUVS-5-IMIDR-V1.0", "publication_date": "1995-09-08", "description": "This volume contains the Pioneer Venus Orbiter Inbound Monochrome Image Data Record (IMIDR) archive, a set of rectified monochromatic images of Venus acquired by the Pioneer Venus Orbiter Ultraviolet Spectrometer (PVOUVS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "volume_id": "PV01_1001", "volume_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1001", "node": "atm", "targets": [], "title": "ATM Volume pv01_1001"} +{"id": "PVO-V-OUVS-5-IMIDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PVO-V-OUVS-5-IMIDR-V1.0", "publication_date": "1995-09-27", "description": "This volume contains the Pioneer Venus Orbiter Inbound Monochrome Image Data Record (IMIDR) archive, a set of rectified monochromatic images of Venus acquired by the Pioneer Venus Orbiter Ultraviolet Spectrometer (PVOUVS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "volume_id": "PV01_1002", "volume_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1002", "node": "atm", "targets": [], "title": "ATM Volume pv01_1002"} +{"id": "VCO-V-IR1-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_0001", "volume_name": "VENUS CLIMATE ORBITER IR1 RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_0001", "node": "atm", "targets": [], "title": "ATM Volume vcoir1_0001"} +{"id": "VCO-V-IR1-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_1001", "volume_name": "VENUS CLIMATE ORBITER IR1 CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_1001", "node": "atm", "targets": [], "title": "ATM Volume vcoir1_1001"} +{"id": "VCO-V-IR1-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_2001", "volume_name": "VENUS CLIMATE ORBITER IR1 GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_2001", "node": "atm", "targets": [], "title": "ATM Volume vcoir1_2001"} +{"id": "VCO-V-IR2-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_0001", "volume_name": "VENUS CLIMATE ORBITER IR2 RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_0001", "node": "atm", "targets": [], "title": "ATM Volume vcoir2_0001"} +{"id": "VCO-V-IR2-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_1001", "volume_name": "VENUS CLIMATE ORBITER IR2 CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_1001", "node": "atm", "targets": [], "title": "ATM Volume vcoir2_1001"} +{"id": "VCO-V-IR2-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_2001", "volume_name": "VENUS CLIMATE ORBITER IR2 GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_2001", "node": "atm", "targets": [], "title": "ATM Volume vcoir2_2001"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0001", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0001", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0001"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0002", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0002", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0002"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0003", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0003", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0003"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0004", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0004", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0004"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0005", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0005", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0005"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0006", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0006", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0006"} +{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0007", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0007", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0007"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1001", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1001", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1001"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1002", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1002", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1002"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1003", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1003", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1003"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1004", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1004", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1004"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1005", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1005", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1005"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1006", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1006", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1006"} +{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1007", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1007", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1007"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2001", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2001", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2001"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2002", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2002", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2002"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2003", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2003", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2003"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2004", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2004", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2004"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2005", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2005", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2005"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2006", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2006", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2006"} +{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2007", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2007", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2007"} +{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2017-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1001", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1001", "node": "atm", "targets": [], "title": "ATM Volume vcors_1001"} +{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2020-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1002", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1002", "node": "atm", "targets": [], "title": "ATM Volume vcors_1002"} +{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2021-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2019-02-09 to 2020-08-24.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1003", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1003", "node": "atm", "targets": [], "title": "ATM Volume vcors_1003"} +{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2023-06-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1004", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1004", "node": "atm", "targets": [], "title": "ATM Volume vcors_1004"} +{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2017-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2001", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2001", "node": "atm", "targets": [], "title": "ATM Volume vcors_2001"} +{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2020-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2002", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2002", "node": "atm", "targets": [], "title": "ATM Volume vcors_2002"} +{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2021-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2020-02-09 to 2020-08-24.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2003", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2003", "node": "atm", "targets": [], "title": "ATM Volume vcors_2003"} +{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2023-06-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2004", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2004", "node": "atm", "targets": [], "title": "ATM Volume vcors_2004"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0001", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0001", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0001"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0002", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0002", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0002"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0003", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0003", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0003"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0004", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0004", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0004"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0005", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0005", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0005"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0006", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0006", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0006"} +{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0007", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0007", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0007"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1001", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1001", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1001"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1002", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1002", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1002"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1003", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1003", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1003"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1004", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1004", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1004"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1005", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1005", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1005"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1006", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1006", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1006"} +{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1007", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1007", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1007"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2001", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2001", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2001"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2002", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2002", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2002"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2003", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2003", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2003"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2004", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2004", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2004"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2005", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2005", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2005"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2006", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2006", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2006"} +{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2007", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2007", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2007"} +{"id": "VEGA1/VEGA2-V-2/3-VENUS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VEGA1/VEGA2-V-2/3-VENUS-V1.0", "publication_date": "2020-02-01", "description": "This volume contains Vega observations from the balloon and lander at Venus.", "volume_set_name": "VEGA VENUS DATA", "volume_id": "VEGA_5001", "volume_name": "VEGA VENUS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vega_5001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vega_5001"} +{"id": "MEX-M-PFS-2-EDR-NOMINAL-V1.0", "pds_version_id": "PDS3", "data_set_id": "MEX-M-PFS-2-EDR-NOMINAL-V1.0", "publication_date": "2008-07-10", "description": "Data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF- IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA)", "volume_set_name": "MARS EXPRESS PFS DATA", "volume_id": "MEXPFS_1001", "volume_name": "VOLUME 1: MARS EXPRESS PFS DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume mexpfs_1001"} +{"id": "MEX-M-PFS-2-EDR-EXT1-V1.0", "pds_version_id": "PDS3", "data_set_id": "MEX-M-PFS-2-EDR-EXT1-V1.0", "publication_date": "2008-07-23", "description": "Data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF- IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA)", "volume_set_name": "MARS EXPRESS PFS DATA", "volume_id": "MEXPFS_1001", "volume_name": "VOLUME 1: MARS EXPRESS PFS DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1002", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume mexpfs_1002"} +{"id": "MGS-M-MOC-4-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOC-4-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} +{"id": "MGS-M-MOLA-1-AEDR-L0-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-1-AEDR-L0-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} +{"id": "MGS-M-MOLA-3-PEDR-L1A-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-3-PEDR-L1A-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} +{"id": "MGS-M-MOLA-5-PEDR-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-5-PEDR-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} +{"id": "MGS-M-TES-3-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-TES-3-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} +{"id": "MGS-M-TES-5-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-TES-5-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} +{"id": "MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0", "pds_version_id": "PDS3", "data_set_id": "MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} +{"id": "MGS-M-MAG/ER-5-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MAG/ER-5-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} +{"id": "MGS-M-ACCEL-2-EDR-V1.1", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-2-EDR-V1.1", "publication_date": "2002-05-10", "description": "This volume contains raw data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0001", "volume_name": "MGS AEROBRAKING ACCELEROMETER RAW DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0001", "node": "atm", "targets": [], "title": "ATM Volume mgsa_0001"} +{"id": "MGS-M-ACCEL-5-PROFILE-V1.2", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-5-PROFILE-V1.2", "publication_date": "2002-05-10", "description": "This volume contains reduced data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0002", "volume_name": "MGS AEROBRAKING ACCELEROMETER REDUCED DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002", "node": "atm", "targets": [], "title": "ATM Volume mgsa_0002"} +{"id": "MGS-M-ACCEL-5-ALTITUDE-V1.1", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-5-ALTITUDE-V1.1", "publication_date": "2002-05-10", "description": "This volume contains reduced data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0002", "volume_name": "MGS AEROBRAKING ACCELEROMETER REDUCED DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002", "node": "atm", "targets": [], "title": "ATM Volume mgsa_0002"} +{"id": "MODEL-M-AMES-GCM-5-LAT-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} +{"id": "MODEL-M-AMES-GCM-5-LAT-LON-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-LON-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} +{"id": "MODEL-M-AMES-GCM-5-LAT-PRES-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-PRES-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} +{"id": "MODEL-M-AMES-GCM-5-LAT-TIME-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-TIME-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} +{"id": "MODEL-M-AMES-GCM-5-TIME-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-TIME-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} +{"id": "MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} +{"id": "MGS-M-RSS-1-CRU-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-CRU-V1.0", "publication_date": "1999-12-29", "description": "This volume contains raw data, partially processed data, ancillary files, and final documentation from the Mars Global Surveyor Radio Science investigation Cruise Phase.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM CRUISE", "volume_id": "MORS_0156", "volume_name": "VOLUME 0156: 1997-08-30 to 1997-09-01", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0156", "node": "atm", "targets": [], "title": "ATM Volume mors_0156"} +{"id": "MGS-M-RSS-1-MOI-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-MOI-V1.0", "publication_date": "1997-10-02", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM MOI", "volume_id": "MORS_0210", "volume_name": "VOLUME 0210: 1997-09-28 to 1997-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0210", "node": "atm", "targets": [], "title": "ATM Volume mors_0210"} +{"id": "MGS-M-RSS-1-MAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-MAP-V1.0", "publication_date": "1999-04-16", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM MAPPING", "volume_id": "MORS_0410", "volume_name": "VOLUME 0410: 1999-04-14 to 1999-04-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0410", "node": "atm", "targets": [], "title": "ATM Volume mors_0410"} +{"id": "MGS-M-RSS-1-EXT-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-EXT-V1.0", "publication_date": "2001-03-21", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RS DATA FROM EXTENDED MISSION", "volume_id": "MORS_0610", "volume_name": "VOLUME 0610: 2001-03-11 TO 2001-03-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0610", "node": "atm", "targets": [], "title": "ATM Volume mors_0610"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "1999-09-08", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1001", "volume_name": "VOLUME 1001: 1998-01-24 to 1998-04-28", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1001", "node": "atm", "targets": [], "title": "ATM Volume mors_1001"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "1999-12-30", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1002", "volume_name": "VOLUME 1002: 1998-04-29 to 1998-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1002", "node": "atm", "targets": [], "title": "ATM Volume mors_1002"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2000-01-07", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1003", "volume_name": "VOLUME 1003: 1998-10-01 to 1999-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1003", "node": "atm", "targets": [], "title": "ATM Volume mors_1003"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2000-03-09", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1004", "volume_name": "VOLUME 1004: 1999-04-01 to 1999-11-08", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1004", "node": "atm", "targets": [], "title": "ATM Volume mors_1004"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2000-05-26", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1005", "volume_name": "VOLUME 1005: 1999-03-09 to 1999-03-27", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1005", "node": "atm", "targets": [], "title": "ATM Volume mors_1005"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2000-09-28", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1006", "volume_name": "VOLUME 1006: 1999-03-09 to 2000-03-27", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1006", "node": "atm", "targets": [], "title": "ATM Volume mors_1006"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-03-21", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1007", "volume_name": "VOLUME 1007: 1998-12-24 TO 1999-05-29 SPDP", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1007", "node": "atm", "targets": [], "title": "ATM Volume mors_1007"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-03-21", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1008", "volume_name": "VOLUME 1008: 1999-05-06 TO 2000-02-29", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1008", "node": "atm", "targets": [], "title": "ATM Volume mors_1008"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-03-22", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1009", "volume_name": "VOLUME 1009: MGS75E GRAVITY MODEL", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1009", "node": "atm", "targets": [], "title": "ATM Volume mors_1009"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-06-30", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1010", "volume_name": "VOLUME 1010: 1999 EDS, EARLY 2000 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1010", "node": "atm", "targets": [], "title": "ATM Volume mors_1010"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-06-28", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1011", "volume_name": "VOLUME 1011: NOV-DEC 2000 EDS AND TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1011", "node": "atm", "targets": [], "title": "ATM Volume mors_1011"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-10-02", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1012", "volume_name": "VOLUME 1012: 1999-12-19 TO 2000-01-31 SRX", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1012", "node": "atm", "targets": [], "title": "ATM Volume mors_1012"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-10-03", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1013", "volume_name": "VOLUME 1013: 2000 FEB-APR SRX, AUG-OCT TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1013", "node": "atm", "targets": [], "title": "ATM Volume mors_1013"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-10-04", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1014", "volume_name": "VOLUME 1014: 2001-01-01 TO 2001-03-31 SRX", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1014", "node": "atm", "targets": [], "title": "ATM Volume mors_1014"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-03-20", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1015", "volume_name": "VOLUME 1015: GRAVITY THRU SUMMER 2001", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1015", "node": "atm", "targets": [], "title": "ATM Volume mors_1015"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-04-15", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1016", "volume_name": "VOLUME 1016: 1999 SRA AND 2000-01 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1016", "node": "atm", "targets": [], "title": "ATM Volume mors_1016"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-04-20", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1017", "volume_name": "VOLUME 1017: 2000 TPS 1999-2000 SRA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1017", "node": "atm", "targets": [], "title": "ATM Volume mors_1017"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-07-09", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1018", "volume_name": "VOLUME 1018: 2001 02-06 TPS, 01-03 SRA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1018", "node": "atm", "targets": [], "title": "ATM Volume mors_1018"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-11-09", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1019", "volume_name": "VOLUME 1019: TPS EDS and 85H2 SHA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1019", "node": "atm", "targets": [], "title": "ATM Volume mors_1019"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2003-02-06", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1020", "volume_name": "VOLUME 1020: TPS 2000 AND 2002", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1020", "node": "atm", "targets": [], "title": "ATM Volume mors_1020"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2003-11-26", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1021", "volume_name": "VOLUME 1021: MGM1041C AND TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1021", "node": "atm", "targets": [], "title": "ATM Volume mors_1021"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2003-11-26", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1022", "volume_name": "VOLUME 1022: MAY-JULY 2002 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1022", "node": "atm", "targets": [], "title": "ATM Volume mors_1022"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2003-11-27", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1023", "volume_name": "VOLUME 1023: 2000 EDS AND 2002 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1023", "node": "atm", "targets": [], "title": "ATM Volume mors_1023"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-02-25", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1024", "volume_name": "VOLUME 1024: MGS95I, 01 EDS, 02-03 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1024", "node": "atm", "targets": [], "title": "ATM Volume mors_1024"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-03-05", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1025", "volume_name": "VOLUME 1025: MARCH-JUNE 2003 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1025", "node": "atm", "targets": [], "title": "ATM Volume mors_1025"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-04-06", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1026", "volume_name": "VOLUME 1026: JUNE-SEPTEMBER 2003 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1026", "node": "atm", "targets": [], "title": "ATM Volume mors_1026"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-12-08", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1027", "volume_name": "VOLUME 1027: 2002-03 EGR TPS, LATE 02 EDS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1027", "node": "atm", "targets": [], "title": "ATM Volume mors_1027"} +{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-12-08", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1028", "volume_name": "VOLUME 1028: SEP-OCT 03 TPS, JAN- 500 keV for electrons, and \n 10 keV/nucleon to ~3 MeV total energy for ions.\n These data were previously released as a PDS data set \n (MESS-E/V/H/SW-EPPS-3-EPS-CDR-V1.0, https://doi.org/10.17189/1519740).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-03","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/bundle-mess-epps-eps-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:53.743164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-eps-calibrated:calibration::1.0","title":"MESSENGER EPPS EPS Calibrated Calibration Collection","description":"This collection contains documents relevant to the calibration of the \n MESSENGER EPPS EPS Calibrated data bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2004-08-03","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:54.738615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-eps-calibrated:document::1.0","title":"MESSENGER EPPS EPS Calibrated Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS \n Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-03","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:56.241903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-eps-derived::1.1","title":"MESSENGER EPPS EPS DDR Bundle","description":"This bundle contains MESSENGER Energetic Particle and \n Plasma Spectrometer (EPPS) advanced data products, also known \n as DDR/DAPs. This bundle contains data from the Energetic \n Particle Spectrometer (EPS) subsystem. EPS covers the energy range \n of 25 to > 500 keV for electrons, and 10 keV/nucleon to ~3 MeV \n total energy for ions. These data were previously released as a PDS data set \n (MESS-E/V/H/SW-EPPS-3-EPS-DDR-V1.0, https://doi.org/10.17189/1519741).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/bundle-mess-epps-eps-derived-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:57.743949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-eps-derived:document::1.1","title":"MESSENGER EPPS EPS DDR Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS \n DDR Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:32:59.783444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-eps-raw::1.0","title":"MESSENGER EPPS EPS Raw Bundle","description":"This bundle contains the MESSENGER Energetic Particle and\n Plasma Spectrometer (EPPS) EPS uncalibrated observations, also known\n EDR. EPS covers the energy range of 25 to > 500 keV for electrons, and 10 \n keV/nucleon to ~3 MeV/nucleon for ions. These data were previously \n released as a PDS3 data set (MESS-E/V/H/SW-EPPS-2-EPS-RAWDATA-V2.0, \n https://doi.org/10.17189/1519738).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","Mess","EPPS Energetic Particle Spectrometer","Energetic Particle Spectrometer","Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/bundle-mess-epps-eps-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:01.276039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-eps-raw:calibration::1.0","title":"MESSENGER EPPS EPS EDR To CDR Calibration Collection","description":"EPS EDR TO CDR CONVERSION","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2015-12-09","stop_date":"2015-12-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:02.324823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-eps-raw:document::1.1","title":"MESSENGER EPPS EPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS \n Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","Mess","EPPS Energetic Particle Spectrometer","Energetic Particle Spectrometer","Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:03.754709","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-fips-calibrated::1.0","title":"MESSENGER EPPS Calibrated FIPS Data Bundle","description":"This bundle contains MESSENGER Energetic Particle and \n Plasma Spectrometer (EPPS) calibrated observations, also known \n as CDRs. This bundle contains Fast Imaging Plasma Spectrometer (FIPS) \n instrument data. FIPS covers the energy/charge range of less than \n 50 eV/q to 20 keV/q. These data were previously released as a PDS3 data set \n (MESS-E/V/H/SW-EPPS-3-FIPS-CDR-V1.0, https://doi.org/10.17189/1519742).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/bundle-mess-epps-fips-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:05.255632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-fips-calibrated:calibration::1.0","title":"MESSENGER EPPS EPS EDR To CDR Calibration Collection","description":"EPS EDR TO CDR CONVERSION","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Calibration"],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2015-12-09","stop_date":"2015-12-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/calibration/collection_calibration_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:06.314800","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-fips-calibrated:document::1.1","title":"MESSENGER EPPS FIPS CDR Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS FIPS \n CDR Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:07.780720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-fips-raw::1.0","title":"MESSENGER EPPS FIPS Raw Bundle","description":"This bundle contains the the MESSENGER Energetic Particle and \n Plasma Spectrometer (EPPS) Fast Imaging Plasma Spectrometer (FIPS) \n uncalibrated observations, also known as EDRs. FIPS covers the \n energy/charge range of less than 50 eV/q to 20 keV/q. These data were \n previously released as a PDS3 data set \n (MESS-E_V_H_SW-EPPS-2-FIPS-RAWDATA-V2.0, https://doi.org/10.17189/1519739).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","EPPS Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/bundle-mess-epps-fips-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:10.280387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-fips-raw:calibration::1.0","title":"MESSENGER EPPS FIPS Raw Calibration Collection","description":"This collection contains documents related to the calibration of the MESSENGER EPPS FIPS \n Raw Data Collection.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:11.317512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-fips-raw:document::1.0","title":"MESSENGER EPPS FIPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS FIPS \n Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","EPPS Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:12.811346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-raw::1.0","title":"MESSENGER EPPS Engineering Raw Data Bundle","description":"This bundle contains the MESSENGER Energetic Particle and\n Plasma Spectrometer (EPPS) engineering data and the raw data SIS \n document. These data are associated with the MESSENGER EPPS EPS Raw \n Data Bundle, and the MESSENGER EPPS FIPS Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Calibration","Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","EPPS ENERGETIC PARTICLE SPECTROMETER","EPPS FAST IMAGING PLAMSA SPECTROMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/bundle-mess-epps-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:14.385832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-raw:data-long-status::1.0","title":"MESSENGER EPPS Engineering and Long Status Information Data Collection","description":"This collection contains engineering and long status information for the EPPS instrument. \n New FSW5 EDR introduced on 9/6/2007.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Calibration","Mercury"],"instruments":["EPPS ENERGETIC PARTICLE SPECTROMETER","EPPS FAST IMAGING PLAMSA SPECTROMETER"],"instrument_hosts":["MESSENGER"],"data_types":["Data"],"start_date":"2007-09-06","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/data-long-status/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/data-long-status/collection-data-long-status-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:15.281070","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-raw:data-status::1.0","title":"MESSENGER EPPS Engineering and Status Information Data Collection","description":"This collection contains EPPS engineering and status information. \n New FSW6 introduced on 8/18/2008.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Calibration","Earth","Venus"],"instruments":["EPPS ENERGETIC PARTICLE SPECTROMETER","EPPS FAST IMAGING PLAMSA SPECTROMETER"],"instrument_hosts":["MESSENGER"],"data_types":["Data"],"start_date":"2004-08-16","stop_date":"2007-08-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/data-status/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/data-status/collection-data-status-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:16.663692","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-epps-raw:document::1.0","title":"MESSENGER EPPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS \n Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Calibration","Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","EPPS ENERGETIC PARTICLE SPECTROMETER","EPPS FAST IMAGING PLAMSA SPECTROMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:17.295700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-calibrated::1.0","title":"MESSENGER MAG Calibrated Data Bundle","description":"This data set consists of the MESSENGER MAG calibrated\n observations. The MAG experiment is a miniature three-axis ring-core\n fluxgate magnetometer with low-noise electronics. There are five MAG data\n products, which mainly differ in the coordinate system. For each type the\n data are provided at full resolution, and one or more averaging intervals.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-08-12","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/bundle-mess-mag-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:18.788769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-calibrated:document::1.0","title":"MESSENGER MAG Calibrated Document Collection","description":"This collection contains documents relevant to the MESSENGER MAG \n Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-08-12","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:20.297354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-crustal-field-map::1.0","title":"MESSENGER MAG Crustal Field Map","description":"This bundle contains crustal magnetic field maps and equivalent source\n dipole arrays for Mercury based on the MESSENGER magnetic field data.\n \n This work was funded by a 2016 NASA ROSES DDAP proposal. Grant number NNH16ZDA001N-DDAP.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["Mess"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/bundle_mess_mag_crustal_field_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:21.804089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-crustal-field-map:browse::1.0","title":"MESSENGER Magnetic Crustal Field Map Browse Collection","description":"This collection consists of two PDF images of the 40 km altitude map, superposed \n onto a map of Mercury's topography derived from MESSENGER Laser Altimeter data \n (furnished by Greg Neumann).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/browse/collection-browse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:22.842644","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-crustal-field-map:data::1.0","title":"MESSENGER Magnetic Crustal Field Map Data Collection","description":"This collection consists of ASCII files containing derived magnetic field maps and equivalent source dipole arrays \n for the crustal magnetic field of Mercury. Zero values (mainly found along the map edges) indicate no useful\n data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/data/collection-data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:23.819647","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-crustal-field-map:document::1.0","title":"MESSENGER Magnetic Crustal Field Maps Document Collection","description":"This collection contains the documentation associated with the MESSENGER Magnetic Crustal \n Field Map bundle.\n \n The documents included in this collection are open source and publically available except for Further Mapping of Mercury's Crustal Magnetic\n Field Using MESSENGER Magnetometer Data (data-description.txt). That document was originally published in \n Mercury: Current and Future Science of the Innermost Planet, Proceedings of the conference held 1-3 May, 2018 in Columbia, Maryland. \n LPI Contribution No. 2047, 2018, id.6079. The author retains the Copyright \n and it is included in this archive with the author's permission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:24.868392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals::1.0","title":"MESSENGER Magnetometer KT17 Model Residuals Data Bundle","description":"This bundle contains MESSENGER Magnetometer KT17 Model Residual data and associated products.\n \n The research for and preparation of this bundle was funded by NASA’s Planetary Data Archiving, Restoration, and Tools (PDART) program \n under grant NNX16AJ01G issued to Dr. Haje Korth (Principal Investigator) at the Johns Hopkins Applied Physics Laboratory.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Mess","Magnetometer"],"instrument_hosts":["Mess"],"data_types":[],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/bundle-mess-mag-kt17-model-residuals-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:26.323538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:data-sci-mbf::1.0","title":"MESSENGER Magnetometer KT17 Model Mercury Body Fixed (MBF) Residual Data","description":"This data collection contains the DELTA_B RDR data files in the Mercury Body Fixed (MBF) coordinate system.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mbf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mbf/collection-data-sci-mbf-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:27.313076","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:data-sci-mso::1.0","title":"MESSENGER Magnetometer KT17 Model Mercury Solar Orbital (MSO) Residual Data","description":"This data collection contains the DELTA_B RDR files in the Mercury Solar Orbital (MSO) coordinates system.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mso/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mso/collection-data-sci-mso-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:28.331976","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:document::1.0","title":"MESSENGER Magnetometer KT17 Model Residual Data Document Collection","description":"This data collection contains the documentation that is needed to understand and \n analyze the MESSENGER Magnetometer KT17 Model Residual Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:29.319189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-raw::1.0","title":"MESSENGER MAG Raw Data Bundle","description":"This bundle contains the MESSENGER MAG raw observations, also known \n as EDRs. The MAG experiment is a miniature three-axis ring-core fluxgate \n magnetometer with low-noise electronics. There are eight MAG raw data \n products, including standard data, burst-mode data, and status and \n housekeeping data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/bundle-mess-mag-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:30.854620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-mag-raw:document::1.0","title":"MESSENGER MAG Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER MAG \n Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","MAGNETOMETER"],"instrument_hosts":["MESSENGER","Mess"],"data_types":["Document"],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:32.324602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-rs-raw::1.0","title":"MESSENGER RSS Raw Data Bundle","description":"This bundle contains raw radio data that can be used to determine the position\n and velocity of the MESSENGER spacecraft during flybys of Venus and Mercury and\n during orbital operations around Mercury. The bundle also contains measurements\n of occultation times and calibrations for the effects of Earth's ionosphere and\n troposphere, meteorological conditions at stations of the NASA Deep Space\n Network, thruster activity, and changes in spacecraft antenna selection. The\n data were used to determine the gravity field and shape of Mercury and to\n improve solar system ephemerides. The bundle is a migration of data from the\n original PDS3 archive with minor improvements and corrections.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus","Earth","Mess","MESSENGER"],"instruments":["Rss","Media","Mess","DSN Instrumentation","DSN Media Calibration Instrumentation","RSS"],"instrument_hosts":["Mess"],"data_types":[],"start_date":"2004-08-03","stop_date":"2015-05-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/bundle_mess_rss_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:33.874686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-rs-raw:calib::1.0","title":"MESSENGER Radio Science Calibration Data Products Collection","description":"This calibration collection contains data products which support the \n MESSENGER Radio Science Subsystem (RSS) raw data archive.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Dsn","Messenger","NASA Deep Space Network Media Calibration","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Earth"],"instruments":["DSN Media Calibration Instrumentation","RSS"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2006-01-10","stop_date":"2015-05-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/calib/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/calib/collection_mess-rs-raw_calib.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:34.916960","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-rs-raw:data-ddor::1.0","title":"MESSENGER Radio Science Delta Differential One-way Ranging (DDOR) Data Products Collection","description":"DDOR files were generated in the TNF (TRK-2-34) format and contain only TNF data type 10 records. The TNF collection in the MESSENGER archive does not contain data type 10 records.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-12-15","stop_date":"2015-04-26","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-ddor/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-ddor/collection_mess-rs-raw_ddor.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:35.877592","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-rs-raw:data-odf::1.0","title":"MESSENGER Radio Science Orbit Data File (ODF) Product Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired \n during the MESSENGER mission. \n These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio\n Metric Data Conditioning Team for use in determining spacecraft trajectories, \n gravity fields affecting them, and radio propagation conditions.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-06-04","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-odf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-odf/collection_mess-rs-raw_odf.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:36.927702","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-rs-raw:data-rsr::1.0","title":"MESSENGER Radio Science RSR Data Products Collection","description":"This is the collection of Radio Science Receiver (RSR) data products acquired\n during the MESSENGER mission. \n RSR is a computer-controlled open loop receiver that digitally records a\n spacecraft signal through the use of analog to digital converters (ADCs) and\n up to four digital filter sub-channels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2006-10-18","stop_date":"2015-04-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-rsr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-rsr/collection_mess-rs-raw_rsr.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:37.836274","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mess-rs-raw:data-tnf::1.0","title":"MESSENGER Radio Science Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired\n during the MESSENGER mission. \n Data were originally stored as chronological records in DSN format TRK-2-34; \n but they have been sorted according to data type (retaining chronological order \n within each data type) during migration from PDS3 to PDS4.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus"],"instruments":["RSS","DSN Instrumentation"],"instrument_hosts":["Mess"],"data_types":["Data"],"start_date":"2007-06-04","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-tnf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/data-tnf/collection_mess-rs-raw_tnf.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:38.843056","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger:document-rs::1.0","title":"MESSENGER Radio Science Document Collection","description":"This collection contains the documents associated with the MESSENGER \n Radio Science (RS) Raw Data Archive (RDA).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus","Earth","Mess","MESSENGER"],"instruments":["RSS"],"instrument_hosts":["Mess"],"data_types":["Document"],"start_date":"2004-08-03","stop_date":"2015-05-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/document-rs/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/document-rs/collection_messenger_document-rs_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:39.843544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger::1.0","title":"MESSENGER Document Bundle","description":"This bundle contains collections and products that are associated \n with more then one MESSENGER bundle.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Mess","Mess","Mess","Mess","Mess","Mess","Mess","Mess","Mess","Mess","Energetic Particle and Plasma Spectrometer - Energetic Particle Spectrometer","Energetic Particle and Plasma Spectrometer - Fast Imaging Plasma Spectrometer","Magnetometer","Radio Science","Gamma Ray Spectrometer","Mercury Atmospheric and Surface Composition Spectrometer","Mercury Dual Imaging System Narrow Angle Camera","Mercury Dual Imaging System Wide Angle Camera","Mercury Laser Altimeter","X-Ray Spectrometer"],"instrument_hosts":["MESSENGER","Mess"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/bundle-messenger-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:41.351457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger:document-epps::1.0","title":"MESSENGER EPPS Document Collection","description":"This collection contains documents associated with MESSENGER EPPS","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer - Energetic Particle Spectrometer","Energetic Particle and Plasma Spectrometer - Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-epps/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-epps/collection-document-mess-epps-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:42.356429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger:document-mag::1.0","title":"MESSENGER MAG Document Collection","description":"This collection contains documents associated with MESSENGER MAG","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Magnetometer"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-mag/collection-document-mess-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:43.359275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger:document-rs::1.0","title":"MESSENGER Radio Science Document Collection","description":"This collection contains the documents associated with the MESSENGER \n Radio Science (RS) Raw Data Archive (RDA).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-rs/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document-rs/collection_messenger_document-rs_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:44.340903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger:document::1.0","title":"MESSENGER Document Collection","description":"This collection contains documents associated with the MESSENGER bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Messenger","MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer - Energetic Particle Spectrometer","Energetic Particle and Plasma Spectrometer - Fast Imaging Plasma Spectrometer","Magnetometer","Radio Science","Gamma Ray Spectrometer","Mercury Atmospheric and Surface Composition Spectrometer","Mercury Dual Imaging System Narrow Angle Camera","Mercury Dual Imaging System Wide Angle Camera","Mercury Laser Altimeter","X-Ray Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/document/collection-messenger-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:45.385877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT1-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:45.951923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT2-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT2 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT2-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:46.399682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MEX-M-ASPERA3-2-EDR-ELS-EXT3-V1.0","title":"MEX M ASPERA3 2 EDR ELS EXT3 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MEX-M-ASPERA3-2-EDR-ELS-EXT3-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:33:46.966831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -687,43 +266,8 @@ {"id":"MGS-M-MAG-3-PREMAPPING-HIGHRES-V1.0","title":"MGS M MAG 3 PREMAPPING HIGHRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-MAG-3-PREMAPPING-HIGHRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:28.971723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MGS-M-RSS-5-EDS-V1.0","title":"MGS M RSS 5 EDS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-RSS-5-EDS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:29.486573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MGS-M-RSS-5-SDP-V1.0","title":"MGS M RSS 5 SDP V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-M-RSS-5-SDP-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:29.976661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager::1.0","title":"Mars Global Surveyor MAG/ER Bundle","description":"This bundle contains Mars Global Surveyor (MGS) Magentometer\n Electron Reflectometer(MAG/ER) calibrated angular and omnidirectional flux, high \n and low time resolution data collected during the Pre-Mapping and Mapping Phases from\n 1997-09-14T00:42:11.743Z to 2006-11-02T23:24:30.793Z. Also included is the derived field map.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Phobos","Mars"],"instruments":["Er","Mag","Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor","Mgs"],"data_types":[],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/bundle_mgs_mager_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:31.533940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:browse-full-calib::1.0","title":"Mars Global Surveyor Modelled and Observed MAG Sensor Differences Browse Collection","description":"This collection contains Mars Global Surveyor (MGS) browse plots for the\n HGA articulation sequences, the June 5th 2000 model fit to the (differenced) \n data for the Magnetometer sensors.\n This data in this collection use the modelled or observed inboard and outfield fields \n in cartesian payload coordinates (bpl) to remove the ambient field.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Browse"],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-calib/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-calib/collection_browse_full_calib.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:32.502986","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:browse-full-map-pc::1.0","title":"MGS MAG Cal Low Resolution Mapping Planetocentric Browse Collection","description":"This collection contains browse images of the Mars Global Surveyor \n Calibrated MAG low time resolution planetocentric data during \n the Mapping phase for 1999-03-08T00:00:00.000Z to 2006-11-02T59:59:59.999Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Browse"],"start_date":"1999-03-08","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-map-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-map-pc/collection_browse_full_map_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:33.441736","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:browse-full-premap-mars-pc::1.0","title":"MGS MAG Cal Low Resolution Mars Browse Collection","description":"This collection contains browse images of the Mars Global Surveyor \n Calibrated MAG/ER low time resolution during the Pre-Mapping phase \n for 1997-09-14T00:00:00.000Z to 1999-03-08T59:59:59.999Z","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Browse"],"start_date":"1997-09-14","stop_date":"1999-03-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-premap-mars-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/browse-full-premap-mars-pc/collection_browse_full_premap_mars_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:34.475072","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-angular-flux-map::1.0","title":"MGS ER Cal Angular Flux Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, time-ordered \n Electron Reflectometer (ER) channels (116ev, 191ev,314ev and 515eV) angle-resolved \n flux data for 16 look directions during the Mapping mission phase. These data cover \n 1999-04-02T15:13:17.068Z to 2006-11-02T23:24:30.789Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-04-02","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-angular-flux-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-angular-flux-map/collection_data_angular_flux_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:35.447929","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-fieldmap-derived::1.0","title":"MGS MAG/ER Derived Map of Mars Data Collection","description":"This collection contains an ASCII file representing a crustal magnetic field \n map of Mars. This map was constructed from data from the Electron \n Reflectometer (ER) section of the MAG/ER instrument aboard Mars Global \n Surveyor (MGS).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-fieldmap-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-fieldmap-derived/collection_data_er_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:36.464044","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-full-map-pc::1.0","title":"MGS MAG Cal Low Resolution Mapping (Planetocentric) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Planetocentric coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1999-03-08T00:07:32.313Z to 2006-11-02T23:24:30.789Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-08","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-map-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-map-pc/collection_data_full_map_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:37.461383","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-full-map-ss::1.0","title":"MGS MAG Cal Low Resolution Mapping (Sunstate) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Sunstate coordinates. The data are provided at \n the full word instrument downlink resolution which varies by orbit. \n These data cover 1999-03-08T00:07:32.313Z to 2006-11-02T23:24:30.789Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-08","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-map-ss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-map-ss/collection_data_full_map_ss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:38.453565","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-full-premap-mars-pc::1.0","title":"MGS MAG Cal Low Resolution Pre-Mapping Mars (Planetocentric) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Mars Planetocentric coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1997-09-14T00:42:11.743Z to 1999-03-29T00:24:27.161Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"1999-03-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-mars-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-mars-pc/collection_data_full_premap_mars_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:39.474743","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-full-premap-mars-ss::1.0","title":"MGS MAG Cal Low Resolution Pre-Mapping Mars (Sunstate) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Mars Sunstate coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1997-09-14T00:42:11.743Z to 1999-03-29T00:24:27.161Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"1999-03-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-mars-ss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-mars-ss/collection_data_full_premap_mars_ss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:40.464345","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-full-premap-phobos-pc::1.0","title":"MGS MAG Cal Low Resolution Pre-Mapping Phobos (Planetocentric) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Phobos Planetocentric coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1998-05-27T20:50:07.841Z to 1998-09-17T06:56:34.941Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Phobos"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-05-27","stop_date":"1998-09-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-phobos-pc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-phobos-pc/collection_data_full_premap_phobos_pc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:41.493307","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-full-premap-phobos-ss::1.0","title":"MGS MAG Cal Low Resolution Pre-Mapping Phobos (Sunstate) Data Collection","description":"This collection contains magnetometer and spacecraft trajectory \n calibrated data in Phobos Sunstate coordinates. The data are provided \n at the full word instrument downlink resolution which varies by orbit. \n These data cover 1998-05-27T20:50:07.841Z to 1998-09-17T06:56:34.941Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Phobos"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-05-27","stop_date":"1998-09-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-phobos-ss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-full-premap-phobos-ss/collection_data_full_premap_phobos_ss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:42.543402","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-highres-map::1.0","title":"MGS MAG Calibrated High Time Resolution Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, high time resolution \n magnetometer (MAG) Mapping data. These data contain vector magnetic field values and \n instrument gain ranges for 1999-03-09T00:05:50.304Z to 2006-11-02T23:23:46.707Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-04-02","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-highres-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-highres-map/collection_data_highres_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:43.512242","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-highres-premap::1.0","title":"MGS MAG Calibrated High Time Resolution Pre-Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, high time resolution \n magnetometer (MAG) Pre-Mapping data. These data contain vector magnetic field values and \n instrument gain ranges for 1997-09-14T00:42:11.743Z to 1999-03-08T21:14:23.227Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Phobos","Mars"],"instruments":["Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"1999-03-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-highres-premap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-highres-premap/collection_data_highres_premap_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:44.560621","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-omni-flux-map::1.0","title":"MGS ER Cal Omnidirectional Flux Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, single time-ordered \n Electron Reflectometer (ER) data. These data represent the omnidirectional electron \n flux in 19 different energy channgels ranging from 10 eV to 20 keV, collection during\n the Mapping mission phase from 1999-03-08T00:05:57.188Z to 2006-11-02T23:24:30.793Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-08","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-omni-flux-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-omni-flux-map/collection_data_omni_flux_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:45.477450","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:data-omni-flux-premap::1.0","title":"MGS ER Cal Omnidirectional Flux Pre-Mapping Data Collection","description":"This collection contains Mars Global Surveyor (MGS) calibrated, single time-ordered \n Electron Reflectometer (ER) data. These data represent the omnidirectional electron \n flux in 19 different energy channgels ranging from 10 eV to 20 keV, collection during\n the Pre-Mapping mission phase from 1997-09-14T01:01:03.568Z to 1999-03-08T21:15:07.188Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Phobos","Mars"],"instruments":["Electron Reflectometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-14","stop_date":"1999-03-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-omni-flux-premap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/data-omni-flux-premap/collection_data_omni_flux_premap_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:46.508003","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:document::1.0","title":"Mars Global Surveyor MAG/ER Document Collection","description":"This collection contains Mars Global Surveyor (MGS) Electron\n Reflectometer (ER) and Magnetometer (MAG) documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars","Phobos"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Document"],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:47.505205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-mager:geometry::1.0","title":"Mars Global Surveyor MAG/ER Calibrated Orbital Geometry Collection","description":"This file contains orbit summary information for the \n Mars Global Surveyor Low Resolution and Omnidirectional\n Pre-Mapping and Mapping Mission Phases.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars","Phobos"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Geometry"],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/geometry/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/geometry/collection_geometry_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:48.488348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss::1.0","title":"Mars Global Surveyor Derived RSS Bundle","description":"This bundle contains the archival results from radio science\n investigations conducted during the Mars Global Surveyor (MGS) mission.\n Radio measurements were made using the MGS spacecraft and Earth-based\n stations of the NASA Deep Space Network (DSN) these results were derived\n from raw radio tracking data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Rss","Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor","Mgs"],"data_types":[],"start_date":"1997-09-12","stop_date":"2006-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/bundle_mgs_rss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:50.007672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:browse::1.0","title":"Mars Global Surveyor Gravity Anomaly Browse Collection","description":"This collection contains Mars Global Surveyor (MGS) derived\n radio science browse plots for the gravity anomalies in the GGM2,\n MGM0964C18 and MGM1025 gravity field model maps. These data cover\n 1997-09-12T00:00:00Z - 2000-02-29T12:05:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Browse"],"start_date":"1997-09-12","stop_date":"2006-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:51.000640","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-anc::1.0","title":"MGS Derived Radio Science Ancilary Data Collection","description":"This collection contains summary information for each Mars Global\n Surveyor radio occultation data acquisition opportunity for\n 1998-01-24 - 2003-11-06 from the ODR and RSR files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-01-24","stop_date":"2003-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-anc/collection_data_anc_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:51.982252","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-eds::1.0","title":"MGS Derived Electron Density Profiles Data Collection","description":"This file contains Mars Global Surveyor (MGS) ionospheric electron\n density profiles (EDS) derived from the Mars radio occulation data.\n These data cover 1998-12-24T03:47:00Z to 2005-06-09T23:52:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-12-24","stop_date":"2005-06-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-eds/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-eds/collection_data_eds_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:53.042328","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-los::1.0","title":"MGS Derived Line of Sight Acceleration Profiles Data Collection","description":"This collection contains the analysis of derived single arc radio tracking data from the\n Mars Global Surveyor (MGS). Doppler residuals from the spherical harmonic model (JGM75A01) \n are spline-fitted and differentiated analytically to obtain accelerations. These data cover \n 1998-03-28T13:56:56.870 to 1998-09-23T02:35:24.679.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1998-03-28","stop_date":"1998-09-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-los/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-los/collection_data_los_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:54.075518","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-maps::1.0","title":"MGS Derived Digital Map of the Gravity Anomaly Data Collection","description":"This collection contains Mars Global Survery (MGS) Radio Science Digital Map \n files of image representations for gravity anamoly models. These files contain \n gridded representations of gravity anomalies with respect to an evaluation of the \n specified model to certain degrees and orders. The data in this collection cover\n 1997-09-12T00:00:00Z - 2002-05-27T23:59:59Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-12","stop_date":"2002-05-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-maps/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-maps/collection_data_maps_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:55.046273","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-sha::1.0","title":"MGS Derived Spherical Harmonic Model ASCII Data Collection","description":"This collection contains coefficients and related data for a spherical \n harmonic model of the Mars gravity field. Input data are from radio \n tracking of the Mars Global Surveyor spacecraft. Coordinate system is \n IAU 1991, unless specified. The data cover\n 1997-09-12T00:00:00Z to 2004-12-05T14:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1997-09-12","stop_date":"2004-12-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sha/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sha/collection_data_sha_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:56.094315","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-shb::1.0","title":"MGS Derived Spherical Harmonics Gravity Binary Data Collection","description":"This collection contains formal error covariance and related data for the \n MGS75(A-E) and MGS85F Spherical Harmonic Model of the Mars gravity field. \n These data were derived from radio tracking of the Mariner 9, Viking 1 Orbiter, \n Viking 2 Orbiter, and Mars Global Surveyor spacecrafts. These data cover\n 1997-09-12 to 2001-08-14.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor","Mariner 9","Viking Orbiter 1","Viking Orbiter 2"],"data_types":["Data"],"start_date":"1997-09-12","stop_date":"2001-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-shb/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-shb/collection_data_shb_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:57.012424","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-sra::1.0","title":"MGS Derived High Gain Antenna Pointing Data Collection","description":"This collection summarizes high-gain antenna (HGA) pointing for Mars Global Surveyor\n (MGS) bistatic radar (BSR) observations. For highly oblique BSR, the results \n may also apply to the accompanying atmospheric occultation. The HGA unit vector \n and offset angles from the desired pointing direction as a function of time.\n These data cover 1999-05-07T00:42:00Z to 2001-03-31T17:12:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-05-07","stop_date":"2001-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sra/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sra/collection_data_sra_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:58.032439","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-srg::1.0","title":"MGS Surface Reflection Geometry Data Collection","description":"This collection summarizes observing surface refelction geometry for Mars Global \n Surveyor (MGS) bistatic radar (BSR) observations. The results apply to both \n atmospheric occultations and surface scattering, typically at one second intervals.\n The spacecraft-surface-Earth geometry is derived from an SPK (NAIF spacecraft and \n planetary ephemeris) file for 1999-03-09T18:26:35Z - 2001-03-31T17:12:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-09","stop_date":"2001-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-srg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-srg/collection_data_srg_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:34:59.011573","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-sri::1.0","title":"MGS Derived Surface Reflection Image Data Collection","description":"This collection contains a 2-D array in image format showing power vs frequency \n and time near a Mars Global Surveyor radio occultation. A nominal image \n is made from 300 512-point power spectra where the spacing between spectra \n is 0.2048 s and the frequency spanned is 2500 Hz (4.88 Hz resolution). \n Images show the spacecraft carrier emerging from occultation (egress) or \n disappearing as the spacecraft goes behind the limb (ingress). Near the \n occultation time there may be a weak surface echo racing away from the \n carrier to lower frequencies (egress) or coming in from higher frequencies \n to merge with the carrier at occultation (ingress). These data cover\n 1999-03-09T18:26:35Z - 2001-03-31T17:12:00Z","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-09","stop_date":"2001-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sri/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-sri/collection_data_sri_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:00.009816","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:data-srt::1.0","title":"MGS Surface Reflection Tabular Data Collection","description":"This collections contains measurements of surface echoes obtained in \n the course of Mars Global Surveyor (MGS) radio occultation observations\n for 1999-03-09T18:26:35Z - 2001-03-31T17:12:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Data"],"start_date":"1999-03-09","stop_date":"2001-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-srt/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/data-srt/collection_data_srt_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:01.056106","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss:document::1.0","title":"Mars Global Surveyor Derived RSS Document Collection","description":"This collection contains Mars Global Surveyor (MGS) Derived \n Radio Science Subsystem documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":["Document"],"start_date":"1997-09-12","stop_date":"2006-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:02.010280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MGS-SUN-RSS-1-ROCC-V1.0","title":"MGS SUN RSS 1 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MGS-SUN-RSS-1-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:02.566266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MR9-M-RSS-5-ELEDENPROFILES-V1.0","title":"MR9 M RSS 5 ELEDENPROFILES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MR9-M-RSS-5-ELEDENPROFILES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:03.066041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9-rss-derived::1.0","title":"Mariner 9 Radio Occultation Experiment Derived RSS Data Bundle","description":"This bundle contains Mariner 9 Radio Occultation Experiment (ROE) \n Derived Radio Science Ionospheric Electron Density Profiles data\n from the Mars orbits 001-079 and 352-450.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Mr9","Radio Science Subsystem (RSS)"],"instrument_hosts":["Mariner 9","Mr9"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/bundle_mr9_rss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:04.566132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9-rss-derived:data-anc::1.0","title":"MR9 Derived ROE Electron Density Profiles Ancillary Data Collection","description":"This collection contains summary information for the electron \n density profiles for each Mariner-9 (MR9) ingress occulation \n from the Mars orbits 001-079 and 352-450.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mariner 9"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/data-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/data-anc/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:05.532108","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9-rss-derived:data-eds::1.0","title":"MR9 Derived ROE Electron Density Profiles Data Collection","description":"This collection contains derived Mariner-9 radio occulation experiment (ROE) \n electron density profiles as a function of radial distance and altitude \n from the Mars orbits 001-079 and 352-450.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mariner 9"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/data-eds/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/data-eds/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:06.581391","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mr9-rss-derived:document::1.0","title":"Mariner 9 Radio Occultation Experiment (ROE) Document Collection","description":"This collection contains the documents associated with the Mariner 9 \n radio occultation ionospheric electron density profiles derived data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Mariner71","Mariner 9"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mariner 9"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mr9-rss-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:07.526018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MSL-M-RAD-2-EDR-V1.0","title":"MSL M RAD 2 EDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MSL-M-RAD-2-EDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:08.152841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"MSL-M-RAD-3-RDR-V1.0","title":"MSL M RAD 3 RDR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/MSL-M-RAD-3-RDR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:08.527213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"NEAR-A-MAG-2-EDR-CRUISE1-V1.0","title":"NEAR A MAG 2 EDR CRUISE1 V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NEAR-A-MAG-2-EDR-CRUISE1-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:09.105097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -761,23 +305,6 @@ {"id":"NH-X-SWAP-5-DERIVED-SOLARWIND-V1.0","title":"NH X SWAP 5 DERIVED SOLARWIND V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Wind","New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/NH-X-SWAP-5-DERIVED-SOLARWIND-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:25.087731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"ODY-M-MAR-2-REDR-RAW-DATA-V1.0","title":"ODY M MAR 2 REDR RAW DATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ODY-M-MAR-2-REDR-RAW-DATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:25.622950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"ODY-M-MAR-3-RDR-CALIBRATED-DATA-V1.0","title":"ODY M MAR 3 RDR CALIBRATED DATA V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ODY-M-MAR-3-RDR-CALIBRATED-DATA-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:26.124450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-cpi-jup-cal::1.0","title":"Pioneer 10 Charged Particle Instrument Bundle","description":"This bundle contains charged particle data\n taken by the Pioneer 10 fields and particles \n instruments from the solar wind and Jupiter flyby.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["P10","Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1992-09-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/bundle-p10-cpi-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:27.638393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-cpi-jup-cal:data-15min::1.0","title":"Pioneer 10 CPI 15 Minute Count Solar Wind and Jupiter Flyby Data Collection","description":"This collection contains Pioneer 10, \n 15 minute averages of the interplanetary solar \n wind, Jupiter flyby data and heliocentric coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1992-09-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-15min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-15min/collection-data-15min-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:28.600405","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-cpi-jup-cal:data-1day::1.0","title":"Pioneer 10 CPI 1 Day Count Solar Wind and Jupiter Flyby Data Collection","description":"This collection contains Pioneer 10 daily averages\n of the heliocentric coordinates from interplanetary solar \n wind and Jupiter flyby period.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1992-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-1day/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-1day/collection-data-1day-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:29.649869","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-cpi-jup-cal:data-1hr::1.0","title":"Pioneer 10 CPI 1 Hour Count Solar Wind and Jupiter Flyby Data Collection","description":"This collection contains Pioneer 10 hourly-averaged count rates \n computed from 15-min data at NSSDC and cast into 1-year files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1992-09-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/data-1hr/collection-data-1hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:30.580493","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-cpi-jup-cal:document::1.0","title":"Pioneer 10 CPI Document Collection","description":"This collection contains documents for the Pioneer 10 fields and particles \n instruments from the solar wind and Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Charged Particle Instrument (CPI)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-03","stop_date":"1992-09-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-cpi-jup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:31.584196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-crt-cal::1.0","title":"Pioneer 10 Cosmic Ray Telescope Calibrated Bundle","description":"This bundle contains Cosmic-ray telescope (CRT) data from the\n Jupiter encounter period. The Bundle provides both 15.0 minute flux \n averages from 18 electron, proton, heavy ion channels and full \n six-hour average interplanetary cruise count rate and flux data","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["P10","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/bundle-p10-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:33.081043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-crt-cal:data-15min::1.0","title":"Pioneer 10 CRT Calibrated 15 minute Data Collection","description":"This collection contains Pioneer 10 Cosmic-ray telescope (CRT) data from the \n Jupiter encounter period, covering 1973-11-26 to 1973-12-15. The collection \n provides 15.0 minute flux averages from 18 electron, proton, and heavy ion \n channels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1973-11-26","stop_date":"1973-12-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/data-15min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/data-15min/collection-data-15min-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:34.088874","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-crt-cal:data-6hr::1.0","title":"Pioneer 10 CRT Calibrated 6 Hour Data Collection","description":"This collection contains full six-hour average interplanetary cruise count\n rate and flux data in ASCII format from the Pioneer 10 Cosmic Ray Telescope\n (CRT) experiment.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/data-6hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/data-6hr/collection-data-6hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:35.094696","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-crt-cal:document::1.0","title":"Pioneer 10 CRT Calibrated Document Collection","description":"This collection contains documentation for \n Cosmic-ray telescope (CRT) data from the Jupiter encounter \n period and full six-hour average interplanetary cruise count \n rate and flux data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-06","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:36.096161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-hvm-jup-cal::1.0","title":"Pioneer 10 Jupiter Calibrated Helium Vector Magnetometer Bundle","description":"This bundle contains data taken by the Pioneer 10 fields and particles \n instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["P10","Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1973-11-03","stop_date":"1973-12-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/bundle-p10-hvm-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:37.591510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-hvm-jup-cal:data-1min-jg::1.0","title":"Pioneer 10 HVM Calibrated 1 Min JG coords. Data at Jupiter Collection","description":"This collection contains Pioneer 10 HVM 1 minute \n averaged magnetic field data from the Jupiter \n encounter in JG coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1973-12-03","stop_date":"1973-12-04","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-1min-jg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-1min-jg/collection-data-1min-jg-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:38.664673","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-hvm-jup-cal:data-1min-s3::1.0","title":"Pioneer 10 HVM Calibrated 1 Min Sys. 3 coords. Data at Jupiter Collection","description":"This collection contains Pioneer 10 HVM data near Jupiter \n in System III [1965] coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1973-11-03","stop_date":"1973-12-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-1min-s3/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-1min-s3/collection-data-1min-s3-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:39.615832","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-hvm-jup-cal:data-highres::1.0","title":"Pioneer 10 HVM Calibrated Sys. 3 coords. High Res Data at Jupiter Collection","description":"This collection contains Pioneer 10 \n Helium Vector Magnetometer (HVM) high-resolution \n magnetic-field data in the solar wind in System III \n coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1973-11-24","stop_date":"1973-12-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:40.661357","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-hvm-jup-cal:document::1.0","title":"Pioneer 10 Jupiter Calibrated HVM Document Collection","description":"This collection contains data taken by the Pioneer 10 fields and particles \n instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-01-01","stop_date":"1992-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:41.591497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-hvm-pa-crt-cal::1.0","title":"Pioneer 10 HVM PA CRT Calibrated Bundle","description":"This bundle contains merged Pioneer 10 data taken by the Helium \n Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) \n and Cosmic Ray (CRT) instruments from the solar wind and Jupiter \n encounter period.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["P10","P10","P10","Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/bundle-p10-hvm-pa-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:43.109825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-hvm-pa-crt-cal:data-merged-1hour::1.0","title":"Pioneer 10 Calibrated HVM PA CRT 1 Hour Averaged Data Collection","description":"This collection contains Pioneer 10 Helium \n Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) \n and Cosmic Ray (CRT) merged 1 hour averaged data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/data-merged-1hour/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/data-merged-1hour/collection-data-hvm-pa-crt-1hour-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:44.122765","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-hvm-pa-crt-cal:document::1.0","title":"Pioneer 10 Calibrated HVM PA CRT Document Collection","description":"This collection contains the documents associated with \n Pioneer 10 Calibrated HVM PA CRT bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-03","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:45.117812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P10-J-CPI-4-SUMM-15MIN-V1.0","title":"P10 J CPI 4 SUMM 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-CPI-4-SUMM-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:45.667840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P10-J-CPI-4-SUMM-1HR-V1.0","title":"P10 J CPI 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-CPI-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:46.145204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P10-J-CRT-4-SUMM-FLUX-15MIN-V1.0","title":"P10 J CRT 4 SUMM FLUX 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-CRT-4-SUMM-FLUX-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:46.644753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -793,31 +320,6 @@ {"id":"P10-J-POS-6-LIGHT-TIME-V1.0","title":"P10 J POS 6 LIGHT TIME V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-POS-6-LIGHT-TIME-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:51.674824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P10-J-TRD-4-SUMM-1HR-V1.0","title":"P10 J TRD 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-TRD-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:52.196653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P10-J-UV-4-SUMM-1DAY-V1.0","title":"P10 J UV 4 SUMM 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P10-J-UV-4-SUMM-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:52.720741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-pa::1.0","title":"Pioneer 10 Quadraspherical Plasma Analyzer (PA) Calibrated Bundle","description":"This bundle contains Pioneer 10 data taken by the \n Quadraspherical Plasma Analyzer (PA) instrument from the \n solar wind and Jupiter encounter period.\n NSSDCA ID: 72-012A-13L.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["P10","Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-24","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/bundle-p10-pa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:54.126048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-pa:data-avg-1hr::1.0","title":"Pioneer 10 PA 1 Hour Averaged Calibrated Data Collection","description":"This collection contains Pioneer 10 Quadraspherical\n Plasma Analyzer (PA) 1 Hour averaged Calibrated Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-04-18","stop_date":"1995-09-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-avg-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-avg-1hr/collection-data-avg-1hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:55.128547","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-pa:data-highres::1.0","title":"Pioneer 10 PA Highres Calibrated Data Collection","description":"This collection contains Pioneer 10 Quadraspherical\n Plasma Analyzer (PA) Highres Calibrated Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-04-18","stop_date":"1995-09-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:56.132204","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-pa:data-traj::1.0","title":"Pioneer 10 PA Daily Trajectory Data Collection","description":"This collection contains Pioneer 10 quadraspherical\n plasma analyzer (PA) daily trajectory data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-24","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/data-traj/collection-data-traj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:57.126492","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-pa:document::1.0","title":"Pioneer 10 PA Calibrated Document Collection","description":"This collection contains documents associated with \n the Pioneer 10 PA Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-24","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-pa/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:35:58.137141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-trd::1.0","title":"Pioneer 10 Trapped Radiation Detector Bundle","description":"This bundle contains Pioneer 10 TRD thirty minute \n and hourly averaged Interplanetary data \n from solar wind and Jupiter flyby.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["P10","Trapped Radiation Detector (TRD)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1993-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/bundle-p10-trd.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:00.661318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-trd:data-1hr::1.0","title":"Pioneer 10 TRD Hourly Avg. Cruise and Jupiter Flyby Cosmic Ray Data Collection","description":"This collection contains Pioneer 10 TRD hourly \n averaged cruise and Jupiter flyby cosmic ray data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Trapped Radiation Detector (TRD)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1993-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/data-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/data-1hr/collection-data-1hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:01.705134","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-trd:data-30min::1.0","title":"Pioneer 10 TRD 30 Minute Cruise and Jupiter Flyby Data Collection","description":"This collection contains Pioneer 10 TRD 30 minute \n Cruise and Jupiter Flyby Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Trapped Radiation Detector (TRD)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1993-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/data-30min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/data-30min/collection-data-30min-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:02.683701","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-trd:document::1.0","title":"Pioneer 10 Trapped Radiation Detector Document Collection","description":"This collection contains Pioneer 10 TRD documentation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Pioneer 10"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-03","stop_date":"1993-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-trd/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:03.639938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-uv::1.0","title":"Pioneer 10 Ultraviolet Photometer Bundle","description":"This bundle contains data taken by the Pioneer 10 fields and particles\n Ultraviolet Photometer (UV) instrument including Solar Wind and the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["P10","Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 10","P10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1996-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/bundle-p10-uv.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:05.162929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-uv:data-avg-day::1.0","title":"Pioneer 10 UV 1 Day Data Collection","description":"This collection conatins Pioneer 10 daily averages of the spin-averaged short \n and long wavelength channels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 10"],"data_types":["Data"],"start_date":"1972-03-03","stop_date":"1996-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/data-avg-day/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/data-avg-day/collection-data-avg-day-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:06.155378","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p10-uv:document::1.0","title":"Pioneer 10 UV Document Collection","description":"This collection contains documents taken by the Pioneer 10 fields and particles \n instruments from Solar Wind and Jupiter flybys. Documents from the Ultraviolet \n Photometer (UV) instrument are included.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 10"],"data_types":["Document"],"start_date":"1972-03-03","stop_date":"1996-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:07.162002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-jup-cal::1.0","title":"Pioneer 11 Calibrated Helium Vector Magnetometer at Jupiter Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles \n instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["P11","Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1974-11-24","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/bundle-p11-hvm-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:08.652757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-jup-cal:data-1min-jg::1.0","title":"Pioneer 11 HVM Calibrated 1 Min JG coords. Data at Jupiter Collection","description":"This collection contains Pioneer 11 HVM 1 minute \n averaged magnetic field data from the Jupiter \n encounter in JG coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-12-03","stop_date":"1974-12-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-jg/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-jg/collection-data-1min-jg-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:09.652379","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-jup-cal:data-1min-s3::1.0","title":"Pioneer 11 HVM Calibrated 1 Min Sys. 3 coords. Data at Jupiter Collection","description":"This collection contains Pioneer 11 HVM data near Jupiter \n in System III [1965] coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-11-25","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-s3/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-s3/collection-data-1min-s3-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:10.657789","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-jup-cal:data-1min-sj::1.0","title":"Pioneer 11 HVM Calibrated 1 Min SJ coords. Data at Jupiter Collection","description":"This collection contains Pioneer 11 HVM data near Jupiter \n in SJ coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-11-24","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-sj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-1min-sj/collection-data-1min-sj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:11.671251","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-jup-cal:data-highres::1.0","title":"Pioneer 11 HVM Calibrated Sys. 3 coords. High Res Data at Jupiter Collection","description":"This collection contains Pioneer 11 \n Helium Vector Magnetometer (HVM) high-resolution \n magnetic-field data during Jupiter encounter in System III \n coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-11-25","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:12.722581","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-jup-cal:document::1.0","title":"Pioneer 11 Jupiter Calibrated HVM Document Collection","description":"This collection contains data taken by the Pioneer 11 fields and particles \n instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1974-11-24","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:13.693560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-pa-crt-cal::1.0","title":"Pioneer 11 HVM PA CRT Calibrated Bundle","description":"This bundle contains merged Pioneer 11 data taken by the Helium \n Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) \n and Cosmic Ray (CRT) instruments from the solar wind, Jupiter \n and Saturn encounter period.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["P11","P11","P11","Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1973-04-06","stop_date":"1992-08-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/bundle-p11-hvm-pa-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:15.176678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-pa-crt-cal:data-merged-1hour::1.0","title":"Pioneer 11 HVM PA CRT Calibrated 1 Hour Averaged Data Collection","description":"This collection contains Pioneer 11 Helium Vector Magnetometer (HVM), \n Quadraspherical Plasma Analyzer (PA) and Cosmic Ray (CRT) merged 1 Hour Averaged Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1973-04-06","stop_date":"1992-08-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/data-merged-1hour/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/data-merged-1hour/collection-data-hvm-pa-crt-1hour-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:16.169546","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-pa-crt-cal:document::1.0","title":"Pioneer 11 HVM PA CRT Calibrated Document Collection","description":"This collection contains the documents associated with \n Pioneer 11 HVM PA CRT Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1973-04-06","stop_date":"1992-08-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:17.175332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-sat-cal::1.0","title":"Pioneer 11 Calibrated Helium Vector Magnetometer Saturn Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles \n instruments from the Saturn flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["P11","Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1979-08-30","stop_date":"1979-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/bundle-p11-hvm-sat-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:18.685809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-sat-cal:data-1min-pe::1.0","title":"Pioneer 11 HVM Calibrated 1 Min PE coords. Data at Saturn Collection","description":"This collection contains Pioneer 11 HVM 1 minute \n averaged magnetic field data from the Saturn \n encounter in PE coordinates","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1979-08-30","stop_date":"1979-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/data-1min-pe/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/data-1min-pe/collection-data-1min-pe-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:19.671588","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-sat-cal:data-highres::1.0","title":"Pioneer 11 HVM Calibrated Sys. 3 coords. High Res Data at Saturn Collection","description":"This collection contains Pioneer 11 \n Helium Vector Magnetometer (HVM) high-resolution \n magnetic-field data at Saturn in System III \n coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1979-08-30","stop_date":"1979-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:20.682463","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-hvm-sat-cal:document::1.0","title":"Pioneer 11 Saturn Calibrated HVM Document Collection","description":"This collection contains data taken by the Pioneer 11 fields and particles \n instruments from the Saturn flybys.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1973-11-03","stop_date":"1973-12-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:21.675266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-J-CRT-4-SUMM-FLUX-15MIN-V1.0","title":"P11 J CRT 4 SUMM FLUX 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-CRT-4-SUMM-FLUX-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:22.248776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-J-FGM-4-SUMM-36SEC-V1.0","title":"P11 J FGM 4 SUMM 36SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-FGM-4-SUMM-36SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:22.708657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-J-FGM-4-SUMM-5MIN-V1.0","title":"P11 J FGM 4 SUMM 5MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-FGM-4-SUMM-5MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:23.221899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -835,10 +337,6 @@ {"id":"P11-J-SW-PA-6-TRAJ-1HR-V1.0","title":"P11 J SW PA 6 TRAJ 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-SW-PA-6-TRAJ-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:29.215698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-J-SW-UV-4-SUMM-1DAY-V1.0","title":"P11 J SW UV 4 SUMM 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-SW-UV-4-SUMM-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:29.721766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-J-TRD-4-SUMM-1HR-V1.0","title":"P11 J TRD 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-J-TRD-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:30.250812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-pa::1.0","title":"Pioneer 11 Quadraspherical Plasma Analyzer (PA) Bundle","description":"This bundle contains Pioneer 11 trajectory\n and 1 hour averged data taken by the Quadraspherical Plasma \n Analyzer (PA) instrument from the solar wind, Jupiter \n and Saturn encounter period.\n NSSDCA ID: 73-019A-13.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["P11","Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1973-04-21","stop_date":"1998-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/bundle-p11-pa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:31.698844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-pa:data-avg-1hr::1.0","title":"Pioneer 11 PA 1 Hour Averaged Data Collection","description":"This collection contains Pioneer 11 Quadraspherical\n Plasma Analyzer (PA) 1 hour averaged data. Each file contains a\n header followed by data records. Each data record contains the\n spacecraft ID (SCID), year, day of year, and time of day in hours,\n followed by the bulk velocity, number density, temperature, and \n where appropriate, the flow angles. Speeds are given in km/s, \n number densities are given in #/cc, temperatures are given\n in K, and flow angles are given in degrees..","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1973-04-21","stop_date":"1992-05-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/data-avg-1hr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/data-avg-1hr/collection-data-avg-1hr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:32.714791","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-pa:data-traj::1.0","title":"Pioneer 11 PA Trajectory Data Collection","description":"This collection contains Pioneer 11 Quadraspherical\n Plasma Analyzer (PA) trajectory data. Each data record contains \n the spacecraft ID (SCID), year, day of year, and time of day in\n hours, followed by the Cartesian state of the spacecraft in \n ecliptic coordinates where the x-axis is directed towards the\n first point in Ares while the z-axis points north.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1974-01-01","stop_date":"1998-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/data-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/data-traj/collection-data-traj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:33.755382","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-pa:document::1.0","title":"Pioneer 11 PA Document Collection","description":"This collection contains documents associated with \n the Pioneer 11 PA Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Quadraspherical Plasma Analyzer (PA)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1973-04-21","stop_date":"1998-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-pa/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:34.732572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-S-CRT-4-SUMM-FLUX-15MIN-V1.0","title":"P11 S CRT 4 SUMM FLUX 15MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-CRT-4-SUMM-FLUX-15MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:35.283201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-S-FGM-4-SUMM-146SEC-V1.0","title":"P11 S FGM 4 SUMM 146SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-FGM-4-SUMM-146SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:35.785560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-S-FGM-4-SUMM-5MIN-V1.0","title":"P11 S FGM 4 SUMM 5MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-FGM-4-SUMM-5MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:36.239157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -852,83 +350,6 @@ {"id":"P11-S-SW-PA-6-TRAJ-1HR-V1.0","title":"P11 S SW PA 6 TRAJ 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-SW-PA-6-TRAJ-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:40.432666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-S-SW-UV-4-SUMM-1DAY-V1.0","title":"P11 S SW UV 4 SUMM 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-SW-UV-4-SUMM-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:40.755521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"P11-S-TRD-4-SUMM-1HR-V1.0","title":"P11 S TRD 4 SUMM 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/P11-S-TRD-4-SUMM-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:41.227000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-uv::1.0","title":"Pioneer 11 Ultraviolet Photometer Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles\n Ultraviolet Photometer (UV) instrument including Solar Wind, Jupiter\n and Saturn flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Jupiter","Saturn","Solar Wind"],"instruments":["P11","Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 11","P11"],"data_types":[],"start_date":"1973-04-06","stop_date":"1993-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/bundle-p11-uv.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:44.737840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-uv:data-avg-day::1.0","title":"Pioneer 11 UV Daily Averaged Data Collection","description":"This collection contains Pioneer 11 daily averages of the spin-averaged short \n and long wavelength channels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter","Saturn","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 11"],"data_types":["Data"],"start_date":"1973-04-06","stop_date":"1993-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/data-avg-day/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/data-avg-day/collection-data-avg-day-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:45.760724","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:p11-uv:document::1.0","title":"Pioneer 11 UV Document Collection","description":"This collection contains documents taken by the Pioneer 11 fields and particles \n instruments from Solar Wind, Jupiter and Saturn flybys. Documents from the Ultraviolet \n Photometer (UV) instrument are included.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer 11"],"targets":["Jupiter","Saturn","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 11"],"data_types":["Document"],"start_date":"1973-04-06","stop_date":"1993-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:46.818793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle::1.0","title":"Pioneer Venus Orbiter Mission Bundle","description":"This bundle contains the Pioneer Venus Orbiter Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Omag","Oefd","Oetp","Oims","Onms","Orpa","Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)","Orbiter Electron Temperature Probe (OETP)","Orbiter Ion Mass Spectrometer (OIMS)","Orbiter Neutral Mass Spectrometer (ONMS)","Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/bundle-pvo.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:48.296242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle:document-mission::1.0","title":"Pioneer Venus Orbiter Mission Document Collection","description":"This collection contains documents associated with Pioneer Venus\n Orbiter Mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)","Orbiter Electron Temperature Probe (OETP)","Orbiter Ion Mass Spectrometer (OIMS)","Orbiter Neutral Mass Spectrometer (ONMS)","Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-mission/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-mission/collection-document-mission-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:49.250293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle:document-oefd::1.0","title":"Pioneer Venus Orbiter Plasma Wave Analyzer Document Collection","description":"This collection contains documents associated with Pioneer Venus \n Orbiter Plasma Wave Analyzer.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oefd/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oefd/collection-document-oefd-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:50.286264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle:document-oetp::1.0","title":"Pioneer Venus Orbiter Electron Temperature Probe Document Collection","description":"This collection contains documents associated with the \n Electron Temperature Probe for PVO.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electron Temperature Probe (OETP)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oetp/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oetp/collection-document-oetp-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:51.249479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle:document-oims::1.0","title":"Pioneer Venus Orbiter Ion Mass Spectrometer for PVO Document Collection","description":"This collection contains documents associated with the \n PVO Orbiter Ion Mass Spectrometer for PVO.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Ion Mass Spectrometer (OIMS)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oims/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-oims/collection-document-oims-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:52.249140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle:document-omag::1.0","title":"Pioneer Venus Orbiter Fluxgate Magnetometer Document Collection","description":"This collection contains documents associated with Pioneer Venus\n Orbiter Fluxgate Magnetometer.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-omag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-omag/collection-document-omag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:53.255873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle:document-onms::1.0","title":"Pioneer Venus Orbiter Neutral Gas Mass Spectrometer Document Collection","description":"This collection contains documents associated with \n Pioneer Venus Orbiter Neutral Gas Mass Spectrometer.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Neutral Mass Spectrometer (ONMS)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-onms/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-onms/collection-document-onms-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:54.243684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle:document-orpa::1.0","title":"Pioneer Venus Orbiter Retarding Potential Analyzer Document Collection","description":"This collection contains documents associated with Pioneer Venus\n Orbiter Retarding Potential Analyzer.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-orpa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-orpa/collection-document-orpa-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:55.253385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-bundle:document-sedr::1.0","title":"Pioneer Venus Orbiter Supplemental Experimenter Data Records (SEDR) Document Collection","description":"This collection contains documents associated with Pioneer Venus\n Orbiter Supplemental Experimenter data Record (SEDR).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Omag","Oefd","Oetp","Oims","Onms","Orpa","Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)","Orbiter Electron Temperature Probe (OETP)","Orbiter Ion Mass Spectrometer (OIMS)","Orbiter Neutral Mass Spectrometer (ONMS)","Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/document-sedr/collection-document-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:56.261289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-ephem::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Data Bundle","description":"This bundle contains PVO Spacecraft VSO Ephemeris and Spacecraft \n Orientation data. This bundle includes Pioneer Venus Orbiter (PVO) spacecraft\n position and orientation data in Venus Solar Orbital (VSO) coordinates\n\n This data was previously released as PDS3 data in\n \n PVO-V-POS-5--VSOCOORDS-12SEC-V1.0 (https://doi.org/10.17189/1519830).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/bundle-pvo-ephem-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:57.821526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-ephem:data-vso-asc::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation ASCII Data Collection","description":"This collection includes Pioneer Venus Orbiter (PVO) ephemeris, spacecraft position and\n orientation data in Venus Solar Orbital (VSO) coordinates. This collection is\n sampled every 12 seconds near periapsis, and at 1 minute or 10 minute rates\n in the solar wind, the lowest rates near apoapsis. Planetocentric and\n heliocentric position vectors and solar zenith angle (Sun-Venus-PVO) are\n also provided. The VSO parameters are derived from the PVO Supplemental\n Experimenter Data Records (SEDR), other parameters are taken\n directly from the SEDR dataset.\n \n The original data were all binary and contained a non-standard time \n representation. No software was provided to convert these data to ASCII. \n PDS created ASCII versions of these files in response to user concerns \n regarding the ease of use of these data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/data-vso-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/data-vso-asc/collection-data-vso-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:36:59.024029","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-ephem:data-vso-bin::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Original Binary Data Collection","description":"This collection includes Pioneer Venus Orbiter (PVO) ephemeris, spacecraft position and\n orientation data in Venus Solar Orbital (VSO) coordinates. This collection is\n sampled every 12 seconds near periapsis, and at 1 minute or 10 minute rates\n in the solar wind, the lowest rates near apoapsis. Planetocentric and\n heliocentric position vectors and solar zenith angle (Sun-Venus-PVO) are\n also provided. The VSO parameters are derived from the PVO Supplemental\n Experimenter Data Records (SEDR), other parameters are taken\n directly from the SEDR dataset.\n \n The original data files submitted to the PDS are IGPP flatfiles. An IGPP \n flatfile is a collection of 2 files, each of which could be considered \n a table. The data file (.FFD) is a binary table of data values. The header \n file (.FFH) is an ASCII table which describes the data file (.FFD) and is \n used by the UCLA/IGPP Data Flow System (a software package).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/data-vso-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/data-vso-bin/collection-data-vso-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:00.064631","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-ephem:document::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Document Collection","description":"This collection contains the document files associated with the \n PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/document/collection-pvo-ephem-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:01.076003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oefd-cal::1.0","title":"PVO Electric Field Detector (OEFD) Data Bundle","description":"This bundle contains PVO Electric Field Detector (OEFD) data. The \n data provided include wave electric field amplitudes measured at \n four different frequencies by the Electric Field Detector and data \n that was averaged over 24 second intervals on 12 second centers.\n\n This data was previously released as PDS3 data in\n \n PVO-V-OEFD-3--EFIELD-HIRES-V1.0 (https://doi.org/10.17189/1519807),\n PVO-V-OEFD-4--EFIELD-24SEC-V1.0 (https://doi.org/10.17189/1519808).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Oefd","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/bundle-pvo-oefd-cal-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:02.578991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oefd-cal:data-24s-asc::1.0","title":"PVO Electric Field Detector (OEFD) 24 Sec. Avgs. ASCII Data Collection","description":"This data collection contains ASCII files that contain wave electric \n field amplitudes measured at four different frequencies by the Pioneer \n Venus Orbiter Electric Field Detector. The data are averaged over 24 \n second intervals on 12 second centers.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-24s-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-24s-asc/collection-data-24s-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:04.028887","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oefd-cal:data-24s-bin::1.0","title":"PVO Electric Field Detector (OEFD) 24 Sec. Avgs. Original Binary Data Collection","description":"This data collection contains binary files that contain wave electric \n field amplitudes measured at four different frequencies by the Pioneer \n Venus Orbiter Electric Field Detector. The data are averaged over 24 \n second intervals on 12 second centers.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-24s-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-24s-bin/collection-data-24s-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:05.385327","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oefd-cal:data-highres-asc::1.0","title":"PVO Electric Field Detector (OEFD) High-Res. ASCII Data Collection","description":"This data collection contains ASCII files that contain wave electric \n field amplitudes measured at four different frequencies by the Pioneer \n Venus Orbiter Electric Field Detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-highres-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-highres-asc/collection-data-highres-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:06.741682","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oefd-cal:data-highres-bin::1.0","title":"PVO Electric Field Detector (OEFD) High-Res. Original Binary Data Collection","description":"This product collection contains binary data files that contain wave electric \n field amplitudes measured at four different frequencies by the Pioneer Venus \n Orbiter Electric Field Detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-highres-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/data-highres-bin/collection-data-highres-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:07.911879","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oefd-cal:document::1.0","title":"PVO Electric Field Detector Document Collection","description":"This collection contains the document files associated with the PVO Plasmsa Wave \n Analyzer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/document/collection-pvo-oefd-cal-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:08.903893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oetp::1.2","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Data Bundle","description":"This bundle includes PVO Electron Temperature Probe (OETP) collections:\n High-Res., Low-Res., Ionopause, Bow Shock, Solar EUV, and Browse Plot.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Oetp","Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/bundle-pvo-oetp-1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:10.408170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oetp:browse::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Browse Plot Collection","description":"This collection contains PDF/A files that contains plots of PVO electron number \n density data from Venus Orbital Operations.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Browse"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/browse/collection-browse-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:11.466791","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oetp:data-bowshock::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Bow Shock Data Collection","description":"This data collection contains the orbit-by-orbit times and locations of the bow \n shock crossings, which are characterized by distinct changes in Ne. Multiple \n shock crossing are listed if they are sufficiently separated to be resolved \n accurately. (Bow shock crossings will be evident in the High Resolution Ne \n File when they occurred within 30 minutes of periapsis)","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-bowshock/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-bowshock/collection-data-bowshock-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:12.494226","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oetp:data-electron-highres::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) High-Res. Data Collection","description":"This data collection contains derived high resolution number density of electrons (Ne) data, \n from Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) from 1978-12-05 to 1992-10-07. \n High resolution measurements are typically available at 2 to 8 second intervals depending upon the \n telemetry rate available to the OETP at the time.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-electron-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-electron-highres/collection-data-electron-highres-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:14.065055","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oetp:data-electron-lowres::1.2","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Low-Res. Data Collection","description":"This data collection includes the Ne, Te and Vs measurements derived by \n fitting the radial probe voltampere curves taken whenever PVO was within \n the ionosphere (ie., between the inbound and outbound ionopause crossings).\n Data from essentially every orbit in 1979 and 1980 included ionosphere transits.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-electron-lowres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-electron-lowres/collection-data-electron-lowres-1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:15.123434","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oetp:data-ionopause::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Ionopause Data Collection","description":"This data collection contains orbit-by-orbit times and locations of the ionopause crossings, \n which are evident as sharp gradients in Ne at the top of the ionosphere. \n (These crossings always occur within 30 minutes of periapsis, so they may be seen in the \n High Resolution Ne files)","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1985-07-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-ionopause/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-ionopause/collection-data-ionopause-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:16.163488","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oetp:data-solareuv::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Solar EUV Data Collection","description":"This data collection contains a file that gives the magnitude of the \n photoemission current from the radial probe, Ipe, (in units of 10-9 amps) \n for orbits 0001 to 4800.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-01-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-solareuv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/data-solareuv/collection-data-solareuv-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:17.138311","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oetp:document::1.1","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Document Collection","description":"This collection contains the document files associated with the \n Pioneer Venus (PVO) Electron Temperature Probe (OETP) Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/document/collection-pvo-oetp-document-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:18.082528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oims::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Data Bundle","description":"This bundle includes Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer High-Resolution \n and Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Low-Resolution data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Oims","PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/bundle-pvo-oims-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:19.597323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oims:data-12s::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Low-Res Data Collection","description":"This collection contains Pioneer Venus Orbiter low-resolution \n ion number densities data recorded by the Ion Mass Spectrometer \n (OIMS), from PVO Venus.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1987-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-12s/collection-data-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:20.607318","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oims:data-highres::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer High-Res Data Collection","description":"This collection includes derived Pioneer Venus Orbiter high-resolution \n ion density data from the OIMS instrument for PVO. It contains it contains \n sample mass and density data for orbits 1-5055, including data for the \n period periapsis +/- 30 minutes for each orbit. The collection is divided \n into multiple files which contain 1 orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-highres/collection-data-highres-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:22.187616","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-oims:document::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Document Collection","description":"This collection contains the document files associated with the \n Pioneer Venus (PVO) Ion Mass Spectrometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/document/collection-pvo-oims-document-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:23.198053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal::1.0","title":"PVO Magnetomer Data Bundle","description":"This bundle contains PVO magnetometer data. The data are \n provided in high resolution spacecraft coordinates, high resolution spacecraft \n coordinates averaged over 24 seconds on 12 second centers, high resolution spacecraft \n coordinates and high resolution spacecraft coordinates averaged over 24 seconds \n acquired after the multiplexer anomaly that allowed data from only a single sensor \n (P-sensor) to be returned to the ground. It also includes instrument status information.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Omag","Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/bundle-pvo-omag-cal-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:24.693661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-anc-inststat-asc::1.0","title":"PVO OMAG Instrument Status ASCII Data Collection","description":"This data collection contains ASCII Pioneer Venus Orbiter Magnetometer \n instrument status data including including parameters that may \n be used to assess the quality of the magnetic-field data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-anc-inststat-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-anc-inststat-asc/collection-data-anc-inststat-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:25.757496","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-anc-inststat-bin::1.0","title":"PVO OMAG Instrument Status Binary Data Collection","description":"This collection contains binary Pioneer Venus Orbiter Magnetometer instrument \n status data including including parameters that may be used to assess the \n quality of the magnetic-field data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-anc-inststat-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-anc-inststat-bin/collection-data-anc-inststat-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:26.947044","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-psens-24s-asc::1.0","title":"PVO Venus MAG Resampled P-Sensor 24 Sec Avgs ASCII Data Collection","description":"This data collection contains ASCII Pioneer Venus (PVO) magnetometer (OMAG) \n data averages (24 sec) acquired after the multiplexer anomaly that allowed \n data from only a single sensor (P-sensor) to be returned to the ground. The \n data has been calibrated to account for gains only. The data are given in \n units of nanoTesla. These data have been averaged over two spin period \n intervals on one spin period centers. The time tag given to each record is \n the project assigned time value for the spin period (UADS time tag).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1988-10-16","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-24s-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-24s-asc/collection-data-psens-24s-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:27.942873","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-psens-24s-bin::1.0","title":"PVO Venus MAG Resampled P-Sensor 24 Sec Avgs Original Binary Data Collection","description":"This data collection contains binary, Pioneer Venus (PVO) magnetometer (OMAG) data averages \n (24 sec) acquired after the multiplexer anomaly that allowed data from only a single \n sensor (P-sensor) to be returned to the ground. The data has been calibrated to \n account for gains only. The data are given in units of nanoTesla. These data have \n been averaged over two spin period intervals on one spin period centers. The time \n tag given to each record is the project assigned time value for the spin period \n (UADS time tag).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1988-10-16","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-24s-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-24s-bin/collection-data-psens-24s-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:28.941901","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-psens-highres-asc::1.0","title":"PVO MAG Calibrated P-Sensor High-Res. ASCII Data Collection","description":"This collection contains ASCII Pioneer Venus (PVO) magnetometer (OMAG) high resolution \n data acquired after the multiplexer anomaly that allowed data from only a single \n sensor (P-sensor) to be returned to the ground.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1988-10-15","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-highres-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-highres-asc/collection-data-psens-highres-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:29.947326","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-psens-highres-bin::1.0","title":"PVO MAG Calibrated P-Sensor High-Res. Original Binary Data Collection","description":"This collection contains binary, Pioneer Venus (PVO) magnetometer (OMAG) high resolution \n data acquired after the multiplexer anomaly that allowed data from only a \n single sensor (P-sensor) to be returned to the ground.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1988-10-15","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-highres-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-psens-highres-bin/collection-data-psens-highres-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:30.985595","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-sc-24s-asc::1.0","title":"PVO Magnetic-Field VSO and Spacecraft Coords. 24 Sec. Avgs. ASCII Data Collection","description":"This collection includes ASCII files containing vectors collected\n by the Pioneer Venus Orbiter (previously Pioneer 12) Magnetometer which have\n been averaged over 24 seconds on 12 second centers.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-24s-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-24s-asc/collection-data-sc-24s-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:32.088280","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-sc-24s-bin::1.0","title":"PVO Magnetic-Field VSO and Spacecraft Coords. 24 Sec. Avgs. Original Binary Data Collection","description":"This collection includes binary files of Pioneer Venus Orbiter magnetic-field data in \n Venus Solar Orbital (VSO) and PVO inertial spacecraft (PVO_ISC) coordinates, \n from PVO Venus orbit OMAG. The data has been averaged over 24 seconds on 12 second centers.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-24s-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-24s-bin/collection-data-sc-24s-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:33.193499","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-sc-highres-asc::1.0","title":"PVO Magnetic-Field VSO and Spacecraft Coords. High-Res. ASCII Data Collection","description":"This data collection includes ASCII files that contain Pioneer Venus Orbiter high-resolution \n magnetic-field data in Venus Solar Orbital (VSO) and PVO inertial spacecraft (PVO_ISC) \n coordinates, from the PVO OMAG instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-highres-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-highres-asc/collection-data-sc-highres-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:34.347737","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:data-sc-highres-bin::1.0","title":"PVO Magnetic-Field VSO and Spacecraft Coords. High-Res. Binary Data Collection","description":"This product collection contains binary files of Pioneer Venus Orbiter high-resolution \n magnetic-field data in Venus Solar Orbital (VSO) and PVO inertial spacecraft (PVO_ISC) \n coordinates, from the OMAG instrument.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-highres-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/data-sc-highres-bin/collection-data-sc-highres-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:35.342361","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-cal:document::1.0","title":"PVO OMAG Data Document Collection","description":"This collection contains the document files associated with the \n Pionner Venus Orbiter Magnetometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbite (PVO)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/document/collection-pvo-omag-cal-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:36.345626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-oefd-anc::1.0","title":"Pioneer Venus Orbiter Magnetometer and Electric Field Detector Ancillary Data Bundle","description":"This bundle contains information pertaining to the Pioneer Venus Orbiter \n Magnetometer and Electric Field Detector Ancillary Data. This bundle includes\n Engineering and Phaseoffset data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Omag","Oefd","Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/bundle-pvo-omag-oefd-anc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:37.858030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-oefd-anc:data-eng-asc::1.0","title":"PVO OMAG/OEFD Engineering ASCII Data Collection","description":"This product collection contains ASCII files containing\n spacecraft and engineering data, including magnetometer\n mode and temperature information, and spacecraft sample\n rate spin period infomation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-eng-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-eng-asc/collection-data-eng-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:39.250758","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-oefd-anc:data-eng-bin::1.0","title":"PVO OMAG/OEFD Engineering Original Binary Data Collection","description":"This product collection includes files that contain original binary \n spacecraft and engineering data, including magnetometer mode and temperature\n information, and spacecraft sample rate spin period infomation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-eng-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-eng-bin/collection-data-eng-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:40.441221","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-oefd-anc:data-phaseoff-asc::1.0","title":"PVO OMAG/OEFD Phase and Offset ASCII Data Collection","description":"This collection contains ASCII files that contain phase and offset data such as \n modulation phase and amplitude measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-phaseoff-asc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-phaseoff-asc/collection-data-phaseoff-asc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:41.492652","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-oefd-anc:data-phaseoff-bin::1.0","title":"PVO OMAG/OEFD Phase and Offset Binary Data Collection","description":"This collection contains binary phase and offset data such as \n modulation phase and amplitude measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1988-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-phaseoff-bin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/data-phaseoff-bin/collection-data-phaseoff-bin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:42.574741","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-omag-oefd-anc:document::1.0","title":"Pioneer Venus Orbiter Magnetometer and Electric Field Detector Ancillary Document Collection","description":"This collection contains the document files associated with the \n Pioneer Venus Orbiter Magnetometer and Electric Field Detector Ancillary Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/document/collection-pvo-omag-oefd-anc-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:43.577422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms::1.1","title":"Pioneer Venus Orbiter (PVO) Neutral Mass Spectrometer (ONMS) Data Bundle","description":"This bundle includes the following Pioneer Venus Orbiter (PVO) Neutral Mass Spectrometer (ONMS)\n collections: Ion Max Count Rate Data, Neutral Density 12 Sec Data, Neutral Density High-Res. Data, \n Superthermal Ion Location Data, Superthermal Oxygen 12 Second Data, Superthermal Oxygen High-Res. Data, \n and Thermal Ion 12 second Data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Onms","Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-09-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/bundle-pvo-onms-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:45.087329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms:data-ion-count-12s::1.1","title":"PVO ONMS Ion Max Count Rate Data Collection","description":"This data collection contains a file with PVO Neutral Mass \n Spectrometer (ONMS) derived ion max count rate data for all Venus \n orbits(1 1978-12-05T15:06:31.820; 5055 1992-10-07T19:50:28.680).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-ion-count-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-ion-count-12s/collection-data-ion-count-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:46.083815","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms:data-neu-dens-12s::1.1","title":"PVO ONMS Neutral Density 12 Sec Data Collection","description":"This data collection contains a file with PVO Neutral Mass Spectrometer (ONMS) derived\n neutral density 12 sec data for all Venus orbits(3 1978-12-07T14:30:47.000Z; 640 \n 1980-09-05T17:14:34.016Z; 4961 1992-07-06T00:26:53.847Z; 5055 1992-10-07T19:49:39.752Z).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-07","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-neu-dens-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-neu-dens-12s/collection-data-neu-dens-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:47.112203","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms:data-neu-dens-highres::1.1","title":"PVO ONMS Neutral Density High-Res. Data Collection","description":"This collection contains PVO Neutral Mass Spectrometer (ONMS) \n derived neutral density high resolution data for all Venus orbits\n (3 1978-12-07T14:29:47.668Z; 640 1980-09-05T17:15:20.875Z;\n 4961 1992-07-06T00:23:50.044Z; 5055 1992-10-07T19:50:36.144Z).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-07","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-neu-dens-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-neu-dens-highres/collection-data-neu-dens-highres-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:48.145769","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms:data-supthrm-ion-loc::1.1","title":"PVO ONMS Superthermal Ion Location Data Collection","description":"This data collection contains a data file that includes start and stop \n times/locations where superthermal ions were detected by the Neutral Mass \n Spectrometer instrument aboard the Pioneer Venus Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-ion-loc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-ion-loc/collection-data-supthrm-ion-loc-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:49.116923","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms:data-supthrm-oxy-12s::1.1","title":"PVO ONMS Superthermal Oxygen 12 Second Data Collection","description":"This data collection contains a file with PVO neutral mass spectrometer (ONMS) derived \n superthermal oxygen 12 second data for all Venus orbits (1 1978-12-07T15:07:22.817; 4368 \n 1990-11-21T02:01:19.648; 4494 1991-03-27T01:25:54.275; 4975 1992-07-20T00:22:15.544).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-07-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-oxy-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-oxy-12s/collection-data-supthrm-oxy-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:50.168056","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms:data-supthrm-oxy-highres::1.1","title":"PVO ONMS Superthermal Oxygen High-Res. Data Collection","description":"This data collection contains PVO Neutral Mass Spectrometer (ONMS) derived \n superthermal oxygen high res data. The data has one point for each point measured, that went into \n a successful data fitting for that time interval. The individual flux and density values are computed \n by dividing each data value by the value of the fitting function at the corresponding time.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-07-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-oxy-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-supthrm-oxy-highres/collection-data-supthrm-oxy-highres-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:51.087139","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms:data-thrm-ion-12s::1.1","title":"PVO ONMS Thermal Ion 12 Second Data Collection","description":"This data collection contains a data file with PVO Neutral Mass \n Spectrometer (ONMS) derived Thermal Ion 12 second data from \n 1980-03-15T10:26:29.656 to 1992-09-25T23:09:39.859.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1980-03-15","stop_date":"1992-09-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-thrm-ion-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/data-thrm-ion-12s/collection-data-thrm-ion-12s-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:52.135005","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-onms:document::1.1","title":"PVO ONMS Document Collection","description":"This collection contains the document files associated with the\n Pioneer Venus Orbiter (PVO) Neutral Mass Spectrometer (ONMS) \n Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-09-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/document/collection-document-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:53.104905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-orpa::1.0","title":"Pioneer Venus Orbiter (PVO) Retarding Potential Analyzer (ORPA) Data Bundle","description":"This bundle contains PVO Retarding Potential Analyzer (ORPA) Processed Data. \n This bundle includes Pioneer Venus Orbiter (PVO) processed data from the \n retarding potential analyzer (ORPA), including thermal and superthermal \n electrons, ions, and a key parameters collection for all 5055 orbits \n (Dec 5, 1978 - Oct 7, 1992). It also includes an ancillary ion uncertainties\n collection.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orpa","Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter","Pvo"],"data_types":[],"start_date":"1978-12-04","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/bundle-pvo-orpa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:54.603655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-orpa:data-ion-highres::1.0","title":"PVO Retarding Potential Analyzer (ORPA) High-Resolution Ion Data Collection","description":"This product collection contains Pioneer Venus Orbiter (PVO) \n processed data from the retarding potential analyzer (ORPA) including \n high resolution ions.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-ion-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-ion-highres/collection-data-ion-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:56.097414","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-orpa:data-ion-uncertainty::1.0","title":"PVO Retarding Potential Analyzer (ORPA) High-Resolution Ion Uncertainty Data Collection","description":"This collection contains ion uncertainties files. This serves as an ancillary \n component for the Pioneer Venus Orbiter (PVO) retarding potential analyzer (ORPA) \n high resolution ion data. These include the least-squares fit statistical \n uncertainties for some parameters.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-ion-uncertainty/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-ion-uncertainty/collection-data-ion-uncertainty-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:57.158858","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-orpa:data-lowres::1.0","title":"PVO Retarding Potential Analyzer (ORPA) Low-Resolution Data Collection","description":"This collection contains Pioneer Venus Orbiter (PVO) Retarding Potential \n Analyzer (ORPA) low resolution key parameters at 12 second sampling data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-04","stop_date":"1992-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-lowres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-lowres/collection-data-lowres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:58.170996","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-orpa:data-photo-electron::1.0","title":"PVO Retarding Potential Analyzer (ORPA) Photo Electron Data Collection","description":"This product collection contains Pioneer Venus Orbiter (PVO) retarding potential \n analyzer (ORPA) high resolution suprathermal electrons data files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-photo-electron/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-photo-electron/collection-data-photo-electron-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:37:59.483286","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-orpa:data-thermal-electron::1.0","title":"PVO Retarding Potential Analyzer (ORPA) Thermal Electron Data Collection","description":"This product collection contains files containing Pioneer Venus Orbiter (PVO) \n retarding potential analyzer (ORPA) high resolution thermal electrons data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-thermal-electron/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/data-thermal-electron/collection-data-thermal-electron-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:00.981979","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-orpa:document::1.0","title":"PVO Retarding Potential Analyzer (ORPA) Document Collection","description":"This collection contains the document files associated with the\n PVO Retarding Potential Analyzer (ORPA) Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-04","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/document/collection-pvo-orpa-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:01.974856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr::1.0","title":"Pioneer Venus Orbiter (PVO) Supplemental Experimenter Data Records (SEDR) Bundle","description":"This bundle contains PVO Supplemental Experimenter Data Records (SEDR) data. The \n data provided include spacecraft attitude, spacecraft ephemeris, tape label (logistic), \n pulse time, corrected pulse time, spin period, and selected roll reference data files.\n\n This data was previously released as PDS3 data in\n \n PVO-V-POS-6-SEDR-ORBITATTITUDE--V1.0 (https://doi.org/10.17189/1519831).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)","Pvo"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/bundle-pvo-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:03.492699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr:data-att::1.0","title":"PVO SEDR Spacecraft Attitude Data Collection","description":"This collection contains files which consists of records \n of spacecraft attitude dat. Each record consists of a \n time tag and the celestial latitude and longitude of the \n spacecraft.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-att/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-att/collection-data-att-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:04.708358","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr:data-ephem::1.0","title":"PVO SEDR Spacecraft Ephemeris Data Collection","description":"This collection contains spacecraft ephemeris data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-ephem/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-ephem/collection-data-ephem-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:06.294179","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr:data-log::1.0","title":"PVO SEDR Tape Label (Logistic) Data Collection","description":"This collection contains SEDR tape label (logistic) data files,\n 1 file per orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-log/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-log/collection-data-log-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:07.772692","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr:data-pt-corr::1.0","title":"PVO SEDR Corrected Pulse Time Data Collection","description":"This collections contains UCLA corrected pulse time data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"0002-12-31","stop_date":"2055-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-pt-corr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-pt-corr/collection-data-pt-corr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:09.043972","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr:data-pt::1.0","title":"PVO SEDR Pulse Time Data Collection","description":"This collection contains original SEDR pulse time data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-pt/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-pt/collection-data-pt-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:10.423393","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr:data-spin::1.0","title":"PVO SEDR Spin Period Data Collection","description":"This collection contains spacecraft spin period data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-spin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-spin/collection-data-spin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:11.985974","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr:data-srr::1.0","title":"PVO SEDR Selected Roll Reference Data Collection","description":"This collection contains SEDR selected roll reference data files,\n 1 file per orbit. The files are in the original IBM-360\n binary representation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-srr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/data-srr/collection-data-srr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:12.990565","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo-sedr:document::1.0","title":"Pioneer Venus Orbiter (PVO) Supplemental Experimenter Data Records (SEDR) Document Collection","description":"This collection contains the document files associated with the \n Pioneer Venus Orbiter (PVO) Supplemental Experimenter Data \n Records (SEDR) Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus","Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-sedr/document/collection-pvo-sedr-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:13.989153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"PVO-V-OEFD-3--EFIELD-HIRES-V1.0","title":"PVO V OEFD 3 EFIELD HIRES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OEFD-3--EFIELD-HIRES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:14.538584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"PVO-V-OEFD-4--EFIELD-24SEC-V1.0","title":"PVO V OEFD 4 EFIELD 24SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OEFD-4--EFIELD-24SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:15.035808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"PVO-V-OETP-3-HIRESELECTRONS-V1.0","title":"PVO V OETP 3 HIRESELECTRONS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-OETP-3-HIRESELECTRONS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:15.545853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -954,36 +375,6 @@ {"id":"PVO-V-ORSE-1-ODR-OPENLOOP--V1.0","title":"PVO V ORSE 1 ODR OPENLOOP V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-ORSE-1-ODR-OPENLOOP--V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:25.545019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"PVO-V-POS-5--VSOCOORDS-12SEC-V1.0","title":"PVO V POS 5 VSOCOORDS 12SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-POS-5--VSOCOORDS-12SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:26.007242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"PVO-V-POS-6-SEDR-ORBITATTITUDE--V1.0","title":"PVO V POS 6 SEDR ORBITATTITUDE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/PVO-V-POS-6-SEDR-ORBITATTITUDE--V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:26.596141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-aj4co-dps::2.0","title":"Radio JOVE Station AJ4CO DPS Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the AJ4CO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":[],"start_date":"2013-09-26","stop_date":"2022-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/bundle_radiojove_aj4co_dps_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:28.082437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-aj4co-dps:data::2.0","title":"Radio JOVE Station AJ4CO DPS Data Collection","description":"Radio JOVE Station AJ4CO DPS data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station AJ4CO Receiver"],"instrument_hosts":["Aj4Co"],"data_types":["Data"],"start_date":"2013-09-26","stop_date":"2022-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/data/collection_data_aj4co_dps_v2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:29.035126","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-aj4co-dps:document::1.2","title":"Radio JOVE AJ4CO DPS Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE AJ4CO DPS Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":["Document"],"start_date":"2013-09-26","stop_date":"2022-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:30.083465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-aj4co-fs200::2.0","title":"Radio JOVE Station AJ4CO FS200 Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the AJ4CO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":[],"start_date":"2014-01-01","stop_date":"2016-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/bundle_radiojove_aj4co_fs200_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:31.588503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-aj4co-fs200:data::2.0","title":"Radio JOVE Station AJ4CO FS200 Data Collection","description":"Radio JOVE Station AJ4CO FS200 data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station AJ4CO Receiver"],"instrument_hosts":["Aj4Co"],"data_types":["Data"],"start_date":"2014-01-02","stop_date":"2016-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/data/collection_data_aj4co_fs200_v2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:32.542404","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-aj4co-fs200:document::1.2","title":"Radio JOVE AJ4CO FS200 Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE AJ4CO FS200 Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":["Document"],"start_date":"2014-01-01","stop_date":"2016-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:33.526376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-hnrao-fsx2raw::1.11","title":"Radio JOVE Station HNRAO FSX2 Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations \n made at the HNRAO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":[],"start_date":"2016-12-01","stop_date":"2018-01-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/bundle_radiojove_hnrao_fsx2raw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:35.024368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-hnrao-fsx2raw:data::1.1","title":"Radio JOVE Station HNRAO FSX2 Raw Data Collection","description":"Radio JOVE Station HNRAO FSX2 Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station HNRAO Receivers"],"instrument_hosts":["Aj4Co"],"data_types":["Data"],"start_date":"2016-12-01","stop_date":"2018-01-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/data/collection_data_hnrao_fsx2raw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:36.048444","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-hnrao-fsx2raw:document::1.1","title":"Radio JOVE HNRAO FSX2 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE HNRAO FSX2 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Aj4Co"],"data_types":["Document"],"start_date":"2016-12-01","stop_date":"2018-01-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:37.046429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-hnrao-fsx8sraw::1.11","title":"Radio JOVE Station HNRAO FSX8S Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations \n made at the HNRAO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Hnrao"],"data_types":[],"start_date":"2016-01-20","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/bundle_radiojove_hnrao_fsx8sraw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:38.549838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-hnrao-fsx8sraw:data::1.1","title":"Radio JOVE Station HNRAO FSX8S Raw Data Collection","description":"Radio JOVE Station HNRAO FSX8S Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station HNRAO Receivers"],"instrument_hosts":["Hnrao"],"data_types":["Data"],"start_date":"2016-01-20","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/data/collection_data_hnrao_fsx8sraw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:39.535855","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-hnrao-fsx8sraw:document::1.1","title":"Radio JOVE HNRAO FSX8S Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE HNRAO FSX8S Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Hnrao"],"data_types":["Document"],"start_date":"2016-01-20","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:40.591883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw::2.0","title":"Radio JOVE Station K4LED FSX11 Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":[],"start_date":"2018-06-01","stop_date":"2021-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/bundle_radiojove_k4led_fsx11_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:42.073804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw:data::2.0","title":"Radio JOVE Station K4LED FSX11 Raw Data Collection","description":"Radio JOVE Station K4LED FSX11 Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station K4LED Receivers"],"instrument_hosts":["K4Led"],"data_types":["Data"],"start_date":"2018-06-01","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/data/collection_data_k4led_fsx11_raw_v2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:43.123112","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw:document::1.1","title":"Radio JOVE K4LED FSX11 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE K4LED FSX11 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":["Document"],"start_date":"2018-06-01","stop_date":"2021-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:44.061762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-sdrlcp-raw::2.0","title":"Radio JOVE Station K4LED SDRLCP Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":[],"start_date":"2018-06-01","stop_date":"2021-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/bundle_radiojove_k4led_sdrlcp_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:45.564320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-sdrlcp-raw:data::1.1","title":"Radio JOVE Station K4LED SDRLCP Raw Data Collection","description":"Radio JOVE Station K4LED SDRLCP Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station K4LED Receivers"],"instrument_hosts":["K4Led"],"data_types":["Data"],"start_date":"2018-06-01","stop_date":"2018-12-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/data/collection_data_k4led_sdrlcpraw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:46.554605","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-sdrlcp-raw:document::1.1","title":"Radio JOVE K4LED FSX11 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE K4LED FSX11 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":["Document"],"start_date":"2018-06-01","stop_date":"2021-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:47.589524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-sdrrcp-raw::2.0","title":"Radio JOVE Station K4LED SDRRCP Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":[],"start_date":"2018-06-01","stop_date":"2022-09-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/bundle_radiojove_k4led_sdrrcp_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:49.063811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-sdrrcpraw:data::2.0","title":"Radio JOVE Station K4LED SDRRCP Raw Data Collection","description":"Radio JOVE Station K4LED SDRRCP Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station K4LED Receivers"],"instrument_hosts":["K4Led"],"data_types":["Data"],"start_date":"2018-06-01","stop_date":"2021-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/data/collection_data_k4led_sdrrcpraw_v2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:50.234122","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw:document::1.1","title":"Radio JOVE K4LED FSX11 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE K4LED FSX11 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["K4Led"],"data_types":["Document"],"start_date":"2018-06-01","stop_date":"2022-09-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/document/collection_document_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:51.225323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw::1.0","title":"Radio JOVE Station LGM FSX12 Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the LGM Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Lgm"],"data_types":[],"start_date":"2012-11-12","stop_date":"2017-07-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/bundle_radiojove_lgm_fsx12_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:52.725335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw:data::1.0","title":"Radio JOVE Station LGM FSX12 Raw Data Collection","description":"Radio JOVE Station LGM FSX12 Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station LGM Receivers"],"instrument_hosts":["Lgm"],"data_types":["Data"],"start_date":"2012-11-12","stop_date":"2017-07-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/data/collection_data_lgm_fsx12_raw_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:53.721125","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw:document::1.0","title":"Radio JOVE LGM FSX12 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE LGM FSX12 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Lgm"],"data_types":["Document"],"start_date":"2012-11-12","stop_date":"2017-07-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:54.741836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-lgm-fsx1s-raw::1.0","title":"Radio JOVE Station LGM FSX1s Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations \n made at the LGM Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"2017-08-01","stop_date":"2018-06-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/bundle_radiojove_lgm_fsx1s_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:56.307927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-lgm-fsx1s-raw:data::1.0","title":"Radio JOVE Station LGM FSX1S Raw Data Collection","description":"Radio JOVE Station LGM FSX1S Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station LGM Receivers"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2017-08-01","stop_date":"2018-06-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/data/collection_data_lgm_fsx1s_raw_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:57.277963","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw:document::1.0","title":"Radio JOVE LGM FSX12 Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE LGM FSX12 Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"2017-08-01","stop_date":"2018-06-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:58.327219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-mtsu-fsx6sraw::1.11","title":"Radio JOVE MTSU Station FSX6S Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations \n made at the Middle Tennessee State University (MTSU) observatory as part \n of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Mtsu"],"data_types":[],"start_date":"2016-01-01","stop_date":"2019-09-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/bundle_radiojove_mtsu_fsx6sraw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:38:59.755287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-mtsu-fsx6sraw:data::1.1","title":"Radio JOVE MTSU Station FSX6S Raw Data Collection","description":"Radio JOVE MTSU Station FSX6S Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["MTSU Station Receivers"],"instrument_hosts":["Mtsu"],"data_types":["Data"],"start_date":"2016-01-01","stop_date":"2019-09-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/data/collection_data-mtsu_fsx6sraw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:00.755371","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:radiojove-mtsu-fsx6s:document::1.1","title":"Radio JOVE MTSU FSX6S Raw Data Document Collection","description":"This collection contains the documents associated with the Radio JOVE MTSU FSX6S Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radiojove","Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Mtsu"],"data_types":["Document"],"start_date":"2016-01-01","stop_date":"2019-09-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:01.763687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"SUISEI-C-ESP-3-RDR-HALLEY-V1.0","title":"SUISEI C ESP 3 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/SUISEI-C-ESP-3-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:02.310401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"ULY-D-UDDS-5-DUST-V3.1","title":"ULY D UDDS 5 DUST V3.1","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-D-UDDS-5-DUST-V3.1/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:02.784124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"ULY-J-COSPIN-AT-4-FLUX-256SEC-V1.0","title":"ULY J COSPIN AT 4 FLUX 256SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-COSPIN-AT-4-FLUX-256SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:03.261763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -1029,73 +420,6 @@ {"id":"ULY-J-URAP-4-SUMM-WFA-PEAK-B-10MIN-V1.0","title":"ULY J URAP 4 SUMM WFA PEAK B 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-WFA-PEAK-B-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:24.115288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"ULY-J-URAP-4-SUMM-WFA-PEAK-E-10MIN-V1.0","title":"ULY J URAP 4 SUMM WFA PEAK E 10MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-URAP-4-SUMM-WFA-PEAK-E-10MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:24.683138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"ULY-J-VHM_FGM-4-SUMM-JGCOORDS-60S-V1.0","title":"ULY J VHM FGM 4 SUMM JGCOORDS 60S V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ULY-J-VHM_FGM-4-SUMM-JGCOORDS-60S-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:25.169932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle::1.0","title":"Ulysses Mission Bundle","description":"This bundle contains the Ulysses Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Cospin At","Cospin Het","Cospin Hft","Cospin Ket","Cospin Let","Epac","Gas","Grb","Gwe","Hiscale","Sce","Swics","Swoops","Udds","Urap","Vhm Fgm","Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope","EPAC-Energetic Particle Composition Instrument","GAS-Interstellar Neutral Gas Instrument","GRB-Solar X-Ray/Cosmic Gamma Ray Burst Instrument","GWE-Gravitational Wave Experiment Instrument","HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at LW ENER","SCE-Solar Corona Experiment","SWICS-Solar Wind Ion Composition Spectrometer","SWOOPS-Solar Wind Observations Over the Poles of the Sun","UDDS-Ulysses Dust Detection System","URAP-Unified Radio and Plasma Wave Experiment","VHM-FGM Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/bundle-ulysses.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:26.651172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-cospin::1.0","title":"Ulysses Cospin Document Collection","description":"This collection contains documents associated with the Ulysses Cospin Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-cospin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-cospin/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:27.586486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-epac::1.0","title":"Ulysses EPAC Document Collection","description":"This collection contains documents associated with the Ulysses EPAC Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-epac/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-epac/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:28.593023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-gas::1.0","title":"Ulysses GAS Document Collection","description":"This collection contains documents associated with the Ulysses GAS Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-gas/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-gas/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:29.588547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-grb::1.0","title":"Ulysses GRB-Gamma Ray Burst Document Collection","description":"This collection contains documents associated with the Ulysses GRB Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar X-Ray/Cosmic Gamma Ray Burst Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-grb/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-grb/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:30.591067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-hiscale::1.0","title":"Ulysses HISCALE Document Collection","description":"This collection contains documents associated with the Ulysses HISCALE Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at LW ENER"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-hiscale/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-hiscale/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:31.594395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-mag::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometers Document Collection","description":"This collection contains documents associated with the Ulysses MAG Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-mag/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:32.589840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-mission::1.0","title":"Ulysses Mission Document Collection","description":"This collection contains documents associated with the Ulysses bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope","EPAC-Energetic Particle Composition Instrument","HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at LW ENER","SWOOPS-Solar Wind Observations Over the Pools of the Sun","URAP - Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-mission/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-mission/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:33.595040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-sce::1.0","title":"Ulysses SCE Document Collection","description":"This collection contains documents associated with the Ulysses SCE Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar Corona Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-sce/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-sce/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:34.598630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-swoops::1.0","title":"Ulysses SWOOPS Document Collection","description":"This collection contains documents associated with the Ulysses SWOOPS Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["SWOOPS-Solar Wind Observations Over the Pools of the Sun"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-swoops/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-swoops/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:35.643463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-bundle:document-urap::1.0","title":"Ulysses URAP Document Collection","description":"This collection contains documents associated with the Ulysses URAP Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-urap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/document-urap/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:36.675613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-cospin::1.1","title":"Ulysses Jupiter Encounter Cospin Bundle","description":"This bundle contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin At","Cospin Het","Cospin Hft","Cospin Ket","Cospin Let","Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-24","stop_date":"1992-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/bundle-ulysses-cospin-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:38.182069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-cospin:data-at::1.0","title":"Ulysses Jupiter Encounter Cospin Anisotropy Telescope (AT) Flux Data Collection","description":"This collection contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Anisotropy Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-at/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-at/collection_data_at_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:39.106471","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-cospin:data-het::1.1","title":"Ulysses Jupiter Encounter Cospin High Energy Telescope (HET) Flux Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive). All data on this volume \n are from the High Energy Telescope (HET) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-High Energy Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-het/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-het/collection_data_het_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:40.114941","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-cospin:data-hft::1.0","title":"Ulysses Jupiter Encounter Cospin High Flux Telescope (HFT) Flux Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-18 (days 25-48 inclusive). All data on this volume \n are from the High Flux Telescope (HFT) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-High Flux Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-hft/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-hft/collection_data_hft_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:41.101394","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-cospin:data-ket-intensity::1.0","title":"Ulysses Jupiter Encounter Cospin Kiel Electron Telescope (KET) Intensity Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-24 to 1992-02-17 (days 25-48 inclusive). All data on this volume \n are from the Kiel Electron Telescope (KET) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Kiel Electron Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-24","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-ket-intensity/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-ket-intensity/collection_data_ket_intensity_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:42.116629","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-cospin:data-ket-raw::1.0","title":"Ulysses Jupiter Encounter Cospin Kiel Electron Telescope (KET) Raw Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-24 to 1992-02-17 (days 25-48 inclusive). All data on this volume \n are from the Kiel Electron Telescope (KET) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Kiel Electron Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-24","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-ket-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-ket-raw/collection_data_ket_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:43.118707","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-cospin:data-let::1.0","title":"Ulysses Jupiter Encounter Cospin Low Energy Telescope (LET) Flux Data Collection","description":"This file contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive). All data on this volume \n are from the Low Energy Telescope (LET) detector.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Low Energy Telescope"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-let/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/data-let/collection_data_let_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:44.107137","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-cospin:document::1.0","title":"Ulysses Jupiter Encounter Cospin Document Collection","description":"This bundle contains data submitted to the Planetary Data System (PDS) by \n the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive)","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin At","Cospin Het","Cospin Hft","Cospin Ket","Cospin Let","Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope"],"instrument_hosts":["Ulysses","Uly"],"data_types":["Document"],"start_date":"1992-01-24","stop_date":"1992-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/document/collection_document_cospin_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:45.145213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-epac::1.0","title":"Ulysses EPAC Bundle","description":"This bundle contains Ulysses Energetic Particle Composition Experiment (EPAC) \n 1 hour averaged onmi-directional, sectored, electron and proton flux data \n as well as 1 day pulse height analysis data. All data is from the Ulysses Jupiter \n Encounter 1992-Jan-25 to 1992-Feb-29.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Epac","EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/bundle-ulysses-epac-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:46.647874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-epac:data-all-channel::1.0","title":"Ulysses EPAC All Channels Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition Experiment (EPAC) \n 1 hour averaged proton and electron flux data from all data channels submitted \n from the Ulysses Jupiter encounter 1992-Jan-25 to 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-all-channel/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-all-channel/collection_data_all_channel_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:47.697890","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-epac:data-omni-electron-flux::1.0","title":"Ulysses EPAC Omni-Directional Electron Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) 1 hour averaged omni-directional electron \n flux data from the Ulysses Jupiter encounter 1992-Jan-25 to \n 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-omni-electron-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-omni-electron-flux/collection_data_omni_electron_flux_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:48.667933","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-epac:data-omni-proton-flux::1.0","title":"Ulysses EPAC Omni-Directional Proton Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) 1 hour averaged omni-directional proton flux \n data from the Ulysses Jupiter encounter 1992-Jan-25 to \n 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-omni-proton-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-omni-proton-flux/collection_data_omni_proton_flux_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:49.715667","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-epac:data-pha::1.0","title":"Ulysses Jupiter Encounter EPAC Pulse Height 24HR Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) pulse height analysis data in 1 day (24 hr) \n files. These data are provided as ASCII and Binary tables for the time period \n from 1992-Jan-25 to 1992-Feb-29.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-pha/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-pha/collection_data_pha_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:50.633168","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-epac:data-prtl::1.0","title":"Ulysses EPAC PRTL 2-3 Proton Rate Telescope Sectored Proton Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) 1 hour averaged sectored proton flux data \n from the Ulysses Jupiter encounter 1992-Jan-25 to 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-prtl/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-prtl/collection_data_prtl_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:51.625142","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-epac:data-pstl::1.0","title":"Ulysses EPAC Proton Spectral Telescopes 1-4 Sectored Proton Flux Data Collection","description":"This collection contains Ulysses Energetic Particle Composition \n Experiment (EPAC) 1 hour averaged sectored proton flux data \n from the Ulysses Jupiter encounter 1992-Jan-25 to 1992-Feb-28.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-pstl/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/data-pstl/collection_data_pstl_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:52.628179","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-epac:document::1.0","title":"Ulysses Jupiter Encounter EPAC Document Collection","description":"This bundle contains data submitted to the Planetary Data System (PDS) by \n the Ulysses EPAC investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-29.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/document/collection_document_epac_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:53.642024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-gas::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Bundle","description":"This bundle contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Gas","GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1991-07-22","stop_date":"1991-07-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/bundle-ulysses-gas-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:55.151178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-gas:browse-gif::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Browse Collection","description":"This collection contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Browse"],"start_date":"1991-07-22","stop_date":"1992-04-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/browse-gif/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/browse-gif/collection_browse_gif_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:56.178325","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-gas:browse-pdf::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Browse Collection","description":"This collection contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Browse"],"start_date":"1991-07-22","stop_date":"1992-04-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/browse-pdf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/browse-pdf/collection_browse_pdf_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:57.143083","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-gas:data::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Data Collection","description":"This collection contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-07-22","stop_date":"1992-04-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:58.179932","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-gas:document::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Document Collection","description":"This collection contains contains Ulysses interstellar neutral gas (GAS) \n experiment sky maps of the count rates of interstellar helium \n particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1991-07-22","stop_date":"1991-07-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:39:59.235645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-grb::1.0","title":"Ulysses Gamma Ray Burst Bundle","description":"This bundle contains data submitted to the Planetary Data System (PDS) by \n the Ulysses GRB investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Grb","Solar X-Ray/Cosmic Gamma Ray Burst Instrument for Ulysses"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/bundle-ulysses-grb-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:00.725607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-grb:data::1.0","title":"Ulysses Gamma Ray Burst Data Collection","description":"This collection contains data submitted to the Planetary Data System (PDS) by \n the Ulysses GRB investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar X-Ray/Cosmic Gamma Ray Burst Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:01.655617","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-grb:document::1.0","title":"Ulysses Gamma Ray Burst Document Collection","description":"This collection contains data submitted to the Planetary Data System (PDS) by \n the Ulysses GRB investigators, for the Ulysses Jupiter Encounter, \n 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar X-Ray/Cosmic Gamma Ray Burst Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:02.661574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-hiscale::1.0","title":"Ulysses HISCALE Bundle","description":"This bundle consists of Ulysses Jupiter Encounter HISCALE data. These data \n include 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01), and \n 15 minute averaged encounter data (1992-02-02 to 1992-02-16).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Hiscale","HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/bundle-ulysses-hiscale-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:04.153480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-hiscale:data-aperature-counts::1.0","title":"Ulysses HISCALE Composition Aperature Counts Data Collection","description":"This collection contains HISCALE Composition Aperture (WARTD) electron and ion counts \n taken from 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01), and 15 minute \n averaged encounter data (1992-02-02 to 1992-02-16).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energy"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-aperature-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-aperature-counts/collection_data_aperature_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:05.152087","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-hiscale:data-deflected-counts::1.0","title":"Ulysses HISCALE Deflected Electron Counts Data Collection","description":"This collection contains HISCALE Deflected Electron (DE) measurements taken during \n from 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01), and 15 minute \n averaged encounter data (1992-02-02 to 1992-02-16).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-deflected-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-deflected-counts/collection_data_deflected_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:06.155456","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-hiscale:data-lefs-counts::1.0","title":"Ulysses HISCALE Low-Energy Foil Spectrometer (LEFS) Counts Data Collection","description":"This collection contains HISCALE Low-Energy Foil Spectrometer (LEFS) electron and ion counts \n at 60 and 150 degrees from the spacecraft spin axis during the Ulysses Jupiter Encounter 1 hour \n averaged inbound cruise data and 15 minute averaged encounter data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-lefs-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-lefs-counts/collection_data_lefs_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:07.159675","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-hiscale:data-lems-counts::1.0","title":"Ulysses HISCALE Low-Energy Magnetic Spectrometer (LEMS) Counts Data Collection","description":"This collection contains HISCALE Low-Energy Magnetic Spectrometer (LEMS) ion counts \n at 30 degrees from the spacecraft spin axis during the Ulysses Jupiter Encounter 1 hour averaged\n inbound cruise data, and 15 minute averaged encounter data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-lems-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-lems-counts/collection_data_lems_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:08.207671","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-hiscale:data-w-counts::1.0","title":"Ulysses HISCALE W Ion Counts Data Collection","description":"This collection contains HISCALE W ion counts from the spacecraft spin axis \n for 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01) and 15 minute\n averaged encounter data during the Ulysses Jupiter Encounter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-w-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/data-w-counts/collection_data_w_counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:09.192396","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-hiscale:document::1.0","title":"Ulysses HISCALE Document Collection","description":"This document contains Ulysses Jupiter Encounter HISCALE data. These data \n include 1 hour averaged inbound cruise data and 15 minute averaged encounter \n data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/document/collection_document_hiscale_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:10.237114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-mag::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometer Bundle","description":"This bundle consists of Ulysses Jupiter Encounter Magnetometer data. These data\n include 1 minute averages of the magnetic field components and magnitude measured by \n either the VHM (Vector Helium Magnetometer) or the FGM (Fluxgate Magnetometer), for\n 1992-01-25T00:00:30Z to 1992-02-17T23:59:30Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vhm Fgm","Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/bundle-ulysses-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:11.735475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-mag:data::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometer Data Collection","description":"This collection contains the Ulysses Magnetic Field Experiment data. This data contains \n one minute averages of the magnetic field components and magnitude measured by \n the FGM (Fluxgate Magnetometer) or the VHM (Vector Helium Magnetometer).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:12.679562","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-mag:document::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometer Document Collection","description":"This collection contains the Ulysses Magnetic Field Experiment data. This data contains \n one minute averages of the magnetic field components and magnitude measured by \n the FGM (Fluxgate Magnetometer) or the VHM (Vector Helium Magnetometer).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:13.672143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-sce-derived::1.0","title":"Ulysses SCE-Solar Corona Experiment Derived Bundle","description":"This bundle contains the Ulysses Solar Corona Experient derived data. These \n data contain 10 minute averaged ranging data and high resolution doppler \n data from the Ulysses spacecraft occulation by the Io Plasma Torus (IPT) \n on 1992-02-05 and 1992-02-09.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Sce","Solar Corona Experiment"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-02-05","stop_date":"1992-02-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/bundle-ulysses-sce-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:15.187765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-sce-derived:data-all-range::1.0","title":"Ulysses Solar Corona Experiment 10 Minute Average Ranging Data Collection","description":"This collection contains Ulysses Jupiter Encounter Derived Solar Corona Experiment\n 10 minute averaged ranging data from the Ulysses spacecraft occulation \n by the Io Plasma Torus (IPT) during the Jupiter Encounter on 1992-02-05.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Solar Corona Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-02-05","stop_date":"1992-02-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/data-all-range/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/data-all-range/collection_data_all_range_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:16.192918","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-sce-derived:data-rdr-doppler::1.0","title":"Ulysses Solar Corona Experiment Doppler High Resolution Data Collection","description":"This collection contains Ulysses Jupiter Encounter Derived Solar Corona Experiment\n Doppler High Resolution data during the Io PLasma Torus occulation on\n 1992-02-08.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Solar Corona Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-02-08","stop_date":"1992-02-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/data-rdr-doppler/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/data-rdr-doppler/collection_data_rdr_doppler_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:17.185839","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-sce-derived:document::1.0","title":"Ulysses Derived Solar Corona Experiment Document Collection","description":"This collection contains the Ulysses Solar Corona Experient derived data. These \n data contain 10 minute averaged ranging data and high resolution doppler \n data from the Ulysses spacecraft occulation by the Io Plasma Torus (IPT) \n on 1992-02-05 and 1992-02-08.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Solar Corona Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-02-05","stop_date":"1992-02-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:18.190732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-swoops::1.0","title":"Ulysses SWOOPS Bundle","description":"This file contains Solar Wind Observations Over the Poles of the Sun (SWOOPS) \n plasma data submitted to the Planetary Data System (PDS) by the Ulysses SWOOPS\n investigators during the Ulysses Jupiter Encounter, 1992-01-25 to 1992-02-17.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Swoops","SWOOPS-Solar Wind Observations Over the Pools of the Sun"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/bundle-ulysses-swoops-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:19.685827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-swoops:data::1.0","title":"Ulysses SWOOPS Plasma Data Collection","description":"This collection contains Solar Wind Observations Over the Poles of the Sun (SWOOPS) \n plasma data submitted to the Planetary Data System (PDS) by the Ulysses SWOOPS \n investigators during the Ulysses Jupiter Encounter, 1992-01-25 to 1992-02-17.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["SWOOPS-Solar Wind Observations Over the Poles of the Sun"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:20.728960","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-swoops:document::1.0","title":"Ulysses SWOOPS Document Collection","description":"This collection contains Solar Wind Observations Over the Poles of the Sun (SWOOPS) \n plasma data submitted to the Planetary Data System (PDS) by the Ulysses SWOOPS investigators \n during the Ulysses Jupiter Encounter from 1992-01-25 to 1992-02-17.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["SWOOPS-Solar Wind Observations Over the Pools of the Sun"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:21.765908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-traj::1.0","title":"Ulysses Trajectory Bundle","description":"This collection contains two versions of spice trajectory data. The first version contains\n position and attitude data provided by Ulysses MAG team. The second version was generated at the \n PDS/PPI node (UCLA) which includes trajectory data and spacecraft local time.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/bundle-ulysses-traj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:23.269845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-traj:data::1.0","title":"Ulysses Trajectory Data Collection","description":"This collection contains two versions of trajectory data. TRJ25_48.TAB contains position and \n attitude data provided by Ulysses MAG team. The second version, SPK28_45.TAB, was generated at \n the PDS/PPI node (UCLA) which includes trajectory data and spacecraft local time.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:24.192993","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-traj:document::1.0","title":"Ulysses Trajectory Document Collection","description":"This collection contains two versions of trajectory data. The first version contains\n position and attitude data provided by Ulysses MAG team. The second version was generated at the \n PDS/PPI node (UCLA) which includes trajectory data and spacecraft local time.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/document/collection_document_traj_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:25.196245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap::1.0","title":"Ulysses URAP Bundle","description":"This bundle contains Ulysses Jupiter Cruise, Encounter and First Solar \n Orbit electric and magnetic field data. This data is gather in 10 minute periods\n and one 144 second periods all gather from the PFR, RAR and WFA instuments","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Urap","URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses","Uly"],"data_types":[],"start_date":"1991-10-27","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/bundle-ulysses-urap-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:26.711511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:browse::1.0","title":"Ulysses URAP Summary Plot Browse Collection","description":"This collection contains one day Ulysses URAP experiment data plotted \n in the form of dynamic spectra and observed FES evenets for the \n RAR, PFR and WFA instruments from 1991-11-26 to 1992-06-07.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Browse"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:27.713148","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-pfr-avg-e-10min::1.0","title":"Ulysses URAP PRF Averaged E-Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged electric field data over 10 minute periods for the Plasma \n Frequency Receiver (PFR) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-pfr-avg-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-pfr-avg-e-10min/collection_data_pfr_avg_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:28.721378","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-pfr-peak-e-10min::1.0","title":"Ulysses URAP PRF Peak E-Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit peak electric field data over 10 minute periods for the Plasma \n Frequency Receiver (PFR) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-pfr-peak-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-pfr-peak-e-10min/collection_data_pfr_peak_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:29.775609","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-rar-avg-e-10min::1.0","title":"Ulysses URAP RAR Averaged E-Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged electric field data over 10 minute periods for the Radio \n Astronomy Receiver (RAR) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-avg-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-avg-e-10min/collection_data_rar_avg_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:30.740964","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-rar-avg-e-144sec::1.0","title":"Ulysses URAP RAR Averaged E-Field 144 Second Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged electric field data over 144 second periods for the Radio \n Astronomy Receiver (RAR) for 1992-01-01T00:00:00Z to 1992-04-30T23:57:36Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1992-01-01","stop_date":"1992-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-avg-e-144sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-avg-e-144sec/collection_data_rar_avg_e_144sec.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:31.752715","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-rar-peak-e-10min::1.0","title":"Ulysses URAP RAR Peak E-Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit peak electric field data over 10 minute periods for the Radio \n Astronomy Receiver (RAR) for 1991-10-27T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-10-27","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-peak-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-rar-peak-e-10min/collection_data_rar_peak_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:32.790961","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-wfa-avg-b-10min::1.0","title":"Ulysses URAP WFA Averaged Magnetic Field Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged magnetic field data over 10 minute periods for the Waveform \n Analyzer (WFA) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-avg-b-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-avg-b-10min/collection_data_wfa_avg_b_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:33.755682","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-wfa-avg-e-10min::1.0","title":"Ulysses URAP WFA Averaged Electric Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit averaged electric field data over 10 minute periods for the Waveform \n Analyzer (WFA) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-avg-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-avg-e-10min/collection_data_wfa_avg_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:34.804561","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-wfa-peak-b-10min::1.0","title":"Ulysses URAP WFA Peak Magnetic Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit peak magnetic field data over 10 minute periods for the Waveform \n Analyzer (WFA) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-peak-b-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-peak-b-10min/collection_data_wfa_peak_b_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:35.730891","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:data-wfa-peak-e-10min::1.0","title":"Ulysses URAP WFA Peak Electric Field 10 Minute Data Collection","description":"This collection contains Ulysses Jupiter Cruise, Encounter and First Solar\n Orbit peak electric field data over 10 minute periods for the Waveform \n Analyzer (WFA) for 1991-11-26T00:00:00Z to 1992-06-07T23:50:00Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Data"],"start_date":"1991-11-26","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-peak-e-10min/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/data-wfa-peak-e-10min/collection_data_wfa_peak_e_10min.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:36.731255","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-urap:document::1.0","title":"Ulysses URAP Document Collection","description":"This collection consists of the documentation for the Unified Radio and Plasma \n Wave Experiment (URAP) PFR, RAR and WFA instruments during the Earth-Jupiter \n Cruise, Jupiter Encounter and First Solar Orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":["Document"],"start_date":"1991-10-27","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/document/collection_document_urap_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:37.750549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"V15_V16-V-ROE-5-OCC-ELECTRON-DENS-V1.0","title":"V15 V16 V ROE 5 OCC ELECTRON DENS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/V15_V16-V-ROE-5-OCC-ELECTRON-DENS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:38.256426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VEGA1-C-MISCHA-3-RDR-HALLEY-V1.0","title":"VEGA1 C MISCHA 3 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA1-C-MISCHA-3-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:38.748698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VEGA1-C-PM1-2-RDR-HALLEY-V1.0","title":"VEGA1 C PM1 2 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA1-C-PM1-2-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:39.271528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -1104,30 +428,6 @@ {"id":"VEGA1-SW-MISCHA-3-RDR-CRUISE-V1.0","title":"VEGA1 SW MISCHA 3 RDR CRUISE V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA1-SW-MISCHA-3-RDR-CRUISE-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:40.747109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VEGA2-C-PM1-2-RDR-HALLEY-V1.0","title":"VEGA2 C PM1 2 RDR HALLEY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA2-C-PM1-2-RDR-HALLEY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:41.250741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VEGA2-C-SW-MISCHA-3-RDR-ORIGINAL-V1.0","title":"VEGA2 C SW MISCHA 3 RDR ORIGINAL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VEGA2-C-SW-MISCHA-3-RDR-ORIGINAL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:41.784250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:venera-roe-derived::1.0","title":"Venera 15 and 16 ROE Derived Ionospheric Electron Density Profiles Bundle","description":"This bundle contains ionospheric electron density profiles \n derived from the Venera 15 and 16 radio occultation experiment. \n These data cover 1983-10-12 to 1983-11-01 at various \n occultation locations.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venera 15 And 16","Venera 15 and 16"],"targets":["Venus"],"instruments":["Roe","Roe","Radio Occultation Experiment (ROE)"],"instrument_hosts":["Venera 15","Venera 16","V15","V16"],"data_types":[],"start_date":"1983-10-12","stop_date":"1983-11-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/bundle_venera_roe_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:43.272052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:venera-roe-derived:data-eds::1.0","title":"Venera 15 and 16 ROE Derived Electron Density Profiles Data Collection","description":"This collection contains ionospheric electron density profiles \n derived from the Venera 15 and 16 radio occultation experiment \n (ROE). These data cover 1983-10-12 to 1983-11-01 at various \n occultation locations.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venera 15 And 16","Venera 15 and 16"],"targets":["Venus"],"instruments":["Radio Occultation Experiment (ROE)"],"instrument_hosts":["Venera 15","Venera 16"],"data_types":["Data"],"start_date":"1983-10-12","stop_date":"1983-11-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/data-eds/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/data-eds/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:44.318825","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:venera-roe-derived:document::1.0","title":"Venera 15 and 16 ROE Derived Document Collection","description":"This collection contains the documents associated with the \n Venera 15 and 16 radio occultation experiment (ROE) ionospheric \n electron density profiles data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venera 15 And 16","Venera 15 and 16"],"targets":["Venus"],"instruments":["Radio Occultation Experiment (ROE)"],"instrument_hosts":["Venera 15","Venera 16"],"data_types":["Document"],"start_date":"1983-10-12","stop_date":"1983-11-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:45.290106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els-pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Data Bundle","description":"This is the Venus Express Analyzer of Space Plasma and Energetic\n Atoms, 4th edition Electron Spectrometer Pitch Angle Distribution \n Data Bundle. The data and documentation in this bundle were \n produced with funding from NASA Solar System Workings (SSW) 2019,\n grant #80NSSC21K0151.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["Aspera4 Els","ASPERA4-ELS"],"instrument_hosts":["VEX","Vex"],"data_types":[],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/bundle_vex-aspera4-els-pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:46.748069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els-pad:browse_pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Browse Collection","description":"This collection contains the browse pitch angle \n distribution products for the Venus Express ASPERA-4\n Electron Spectrometer PAD Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Browse"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/browse_pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/browse_pad/collection_browse_pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:47.753053","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els-pad:data_pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Data Collection","description":"This collection contains the pitch angle distribution data \n products for the Venus Express ASPERA-4 Electron Spectrometer \n PAD Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Data"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/data_pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/data_pad/collection_data_pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:48.769908","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els-pad:document_pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Document Collection","description":"This collection contains the document pitch angle \n distribution products for the Venus Express ASPERA-4\n Electron Spectrometer PAD Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Document"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/document_pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/document_pad/collection_document_pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:49.744323","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els-pad:miscellaneous_pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Miscellaneous Collection","description":"This collection contains the miscellaneous pitch angle \n distribution products for the Venus Express ASPERA-4\n Electron Spectrometer PAD Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Miscellaneous"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/miscellaneous_pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/miscellaneous_pad/collection_miscellaneous_pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:50.758592","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els::1.0","title":"VEx ASPERA-4 ELS Background Data Bundle","description":"This is the Venus Express Analyzer of Space Plasma and Energetic\n Atoms, 4th edition Electron Spectrometer Background Data Bundle.\n The data and documentation in this bundle were produced with \n funding from NASA Planetary Data Archiving, Restoration and Tools \n (PDART) 2016, grant #NNX17AL04G.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["Aspera4 Els","ASPERA4-ELS"],"instrument_hosts":["VEX","Vex"],"data_types":[],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/bundle_vex-aspera4-els_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:52.261470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els:data_derived::1.0","title":"VEx ASPERA-4 ELS Background Derived Data Collection","description":"This collection contains the derived data products for the Venus Express \n Electron Spectrometer Background Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Data"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_derived/collection_data_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:53.260072","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els:data_eng::1.0","title":"VEx ASPERA-4 ELS Background Engineering Data Collection","description":"This collection contains the engineering data for the Venus Express \n Electron Spectrometer Background Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Data"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_eng/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_eng/collection_data_eng_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:54.270356","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els:data_raw::1.0","title":"VEx ASPERA-4 ELS Background Raw Data Collection","description":"This collection contains the raw data products for the Venus Express \n Electron Spectrometer Background Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Data"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/data_raw/collection_data_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:55.335519","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-aspera4-els:document::1.0","title":"VEx ASPERA-4 ELS Background Data Document Collection","description":"This collection contains the documents associated with the Venus Express \n Electron Spectrometer Background Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express","Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":["Document"],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:56.299780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-mag-high-res-cleaned::1.0","title":"Venus Express Cleaned High-Resolution 128 Hz Magnetic Field Data Bundle","description":"This bundle contains Venus Express cleaned high-resolution (128 Hz) magnetic field data \n acquired by the fluxgate magnetometer gradiometer onboard the Venus Express\n spacecraft. The data are expressed in Venus Solar Orbital (VSO) coordinates\n and Radial-East-North coordinates.\n \n This work was funded by a 2017 NASA ROSES SSW proposal. Grant number NNH17ZDA001N-SSW.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus Express"],"targets":["Venus"],"instruments":["Mag","Magnetometer"],"instrument_hosts":["Vex"],"data_types":[],"start_date":"2006-05-14","stop_date":"2014-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/bundle-vex-cleaned-high-res-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:57.872152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-mag-high-res-cleaned:data::1.0","title":"Venus Express Cleaned High-Resolution 128 Hz Magnetic Field Data Collection","description":"This collection contains Venus Express cleaned high-resolution (128 Hz) magnetic field data\n acquired by the fluxgate magnetometer gradiometer onboard the Venus Express\n spacecraft. The data are expressed in Venus Solar Orbital (VSO) coordinates\n and Radial-East-North coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express"],"targets":["Venus"],"instruments":["Magnetometer"],"instrument_hosts":["Vex"],"data_types":["Data"],"start_date":"2006-05-14","stop_date":"2014-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/data/collection-data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:58.775938","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vex-mag-high-res-cleaned:document::1.0","title":"Venus Express Cleaned High-Resolution 128 Hz Magnetic Field Data Document Collection","description":"This collection contains the documents associated with the Venus Express\n Cleaned High-Resolution 128 Hz Magnetic Field Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Venus Express"],"targets":["Venus"],"instruments":["Magnetometer"],"instrument_hosts":["Vex"],"data_types":["Document"],"start_date":"2006-05-14","stop_date":"2014-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:40:59.969532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux::1.0","title":"Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Bundle","description":"This bundle contains derived data from the Cosmic Ray\n Subsystem (CRS), which was designed for cosmic ray studies. It consists of two high Energy Telescopes (HET), four Low Energy\n Telescopes (LET) and The Electron Telescope (TET). These data were previously \n released as a PDS3 data set (VG1-J-CRS-5-SUMM-FLUX-V1.0, \n https://doi.org/10.17189/1519876).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Crs","Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/bundle-vg1-crs-jup-avg-flux-v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:01.439489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-electrons::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Electrons Collection","description":"This collection contains electron browse plots for the electron data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_electrons/collection-browse-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:02.457366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-ions::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Ions Collection","description":"This collection contains browse plots for the ion data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_ions/collection-browse-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:03.455257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-pulse-height::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Pulse Height Collection","description":"This collection contains browse plots for the pulse height data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle.\n The plot was generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_pulse_height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_pulse_height/collection-browse-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:04.461746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-electrons::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Electron Browse Data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_electrons/collection-data-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:05.502687","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-ions::1.0","title":"Voyager 1 Jupiter CRS Derived Ion Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Ion Browse Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_ions/collection-data-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:06.460062","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-pulse-height::1.0","title":"Voyager 1 Jupiter CRS Derived Pulse Height Ion Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Pulse Height Ion Browse Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_pulse_height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_pulse_height/collection-data-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:07.464692","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:document::1.0","title":"Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Document Collection","description":"This collection contains the document files associated with the Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:08.468707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-J-CRS-5-SUMM-FLUX-V1.0","title":"VG1 J CRS 5 SUMM FLUX V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-CRS-5-SUMM-FLUX-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:09.033742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-J-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG1 J LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:09.512683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-J-LECP-3-RDR-NEAR-ENC-400MSEC-V1.0","title":"VG1 J LECP 3 RDR NEAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J-LECP-3-RDR-NEAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:10.043033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -1157,75 +457,6 @@ {"id":"VG1-J_S_SS-PWS-1-EDR-WFRM-60MS-V1.0","title":"VG1 J S SS PWS 1 EDR WFRM 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J_S_SS-PWS-1-EDR-WFRM-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:22.080952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-J_S_SS-PWS-2-RDR-SAFULL-V1.0","title":"VG1 J S SS PWS 2 RDR SAFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J_S_SS-PWS-2-RDR-SAFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:22.561892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-J_S_SS-PWS-4-SUMM-SA1HOUR-V1.0","title":"VG1 J S SS PWS 4 SUMM SA1HOUR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-J_S_SS-PWS-4-SUMM-SA1HOUR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:23.072781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates Bundle","description":"This bundle consists of Voyager 1 Jupiter encounter ephemeris \n data in Heliographic coordinates. Two versions, both covering the same time \n period, but containing slightly different data, are provided. \n One version was generated by the Voyager MAG team from Voyager \n 1 SEDR, the other by the PDS/PPI node using the VG1_JUP.BSP and \n PCK00003.TPC SPICE kernels. \n These data were previously released as PDS data set PDS3 VG1-J-POS-6-SUMM-HGCOORDS-V1.0,\n https://doi.org/10.17189/1519895","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/bundle-vg1-jup-pos-hgcoords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:24.486492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords:data-sedr::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates SEDR Data Collection","description":"This collection contains Voyager 1 Jupiter encounter ephemeris data in \n Heliographic coordinates covering the period 1979-02-26 to 1979-03-24. The data\n was generated by the Voyager MAG team from \n Voyager 1 SEDR.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/data_sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/data_sedr/collection-data-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:25.499853","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords:data-spice::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates SPICE Data Collection","description":"This collection contains Voyager 1 Jupiter encounter ephemeris data in \n Heliographic coordinates covering the period 1979-02-26 to 1979-03-24.The data was generated\n by the PDS/PPI node using Voyager 1 SPICE.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/data_spice/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/data_spice/collection-data-spice-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:26.495743","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords:document::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates Document Collection","description":"This collection contains the document files associated with the Voyager 1 Jupiter Ephemeris Heliographic Coordinates Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:27.509292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates Bundle","description":"This bundle consists of Voyager 1 Jupiter encounter \n ephemeris data in System III (1965) left handed coordinates \n covering the period 1979-03-03 to 1979-03-16. Two versions, \n both covering the same time period, but containing slightly \n different data, are provided. One version was generated by \n the Voyager MAG team from Voyager 1 SEDR, the other by the \n PDS/PPI node using the VG1_JUP.BSP and PCK00003.TCP SPICE \n kernels. \n These data were previously released as PDS data set PDS3 VG1-J-POS-6-SUMM-S3COORDS-V1.1,\n https://doi.org/10.17189/1519896","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/bundle-vg1-jup-pos-s3coords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:29.008755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords:data-sedr::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates SEDR Data Collection","description":"This collection contains Voyager 1 Jupiter encounter ephemeris in System III \n (1965) left handed coordinates covering the period 1979-03-03 to 1979-03-16. \n The data was generated by the Voyager MAG \n team from Voyager 1 SEDR.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/data_sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/data_sedr/collection-data-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:30.010482","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords:data-spice::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates SPICE Data Collection","description":"This collection contains Voyager 1 Jupiter encounter ephemeris in System III \n (1965) left handed coordinates covering the period 1979-03-03 to 1979-03-16. \n The data was generated by the PDS/PPI node using Voyager 1 \n SPICE.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/data_spice/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/data_spice/collection-data-spice-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:31.021872","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords:document::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates Document Collection","description":"This collection contains the document files associated with the Voyager 1 Jupiter Ephemeris System III Coordinates Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:32.043546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup::1.0","title":"Voyager 1 Magnetometer Jupiter Data Bundle","description":"This bundle contains Voyager 1 Magnetometer Jupiter data in resampled Heliographic (RTN) and System III coordinates \n at 1.92, 9.60 and 48.0 second sample rates.\n This data was previously released as the following PDS3 data sets:\n VG1-J-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519884) \n VG1-J-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519886)\n VG1-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519885)\n VG1-J-MAG-4-SUMM-S3COORDS-1.92SEC-V1.1 (https://doi.org/10.17189/1519887)\n VG1-J-MAG-4-SUMM-S3COORDS-9.60SEC-V1.1 (https://doi.org/10.17189/1519889) \n VG1-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1 (https://doi.org/10.17189/1519888).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Mag","Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/bundle_voyager1_mag_jup_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:35.511467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup:data-hg-1.92s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 1.92 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n Heliographic (RTN) coordinates and have been averaged from the 60 ms \n instrument sample rate to a 1.92 second sample rate. All magnetic \n field measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-1_92sec/collection_data_hg_1.92s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:36.516747","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup:data-hg-48.0s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 48.0 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n Heliographic (RTN) coordinates and have been averaged from the 9.6 \n second summary data to a 48 second sample rate. All magnetic field \n measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-48sec/collection_data_hg_48.0s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:37.517889","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup:data-hg-9.60s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 9.60 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n Heliographic (RTN) coordinates and have been averaged from the 1.92 \n second summary data to a 9.6 second sample rate. All magnetic field \n measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-hgcoords-9_60sec/collection_data_hg_9.60sec_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:38.511813","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup:data-s3-1.92s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled System III Coords 1.92 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n System III (1965) (SYS3) coordinates and have been averaged from the \n 60 ms instrument sample rate to a 1.92 second sample rate. All \n magnetic field measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-1_92sec/collection_data_s3_1.92s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:39.513019","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup:data-s3-48.0s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled System III Coords 48.0 Second Data Collection","description":"This collection contians calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n System III (1965) (SYS3) coordinates and have been averaged from the \n 9.6 second summary data to a 48 second sample rate. All magnetic \n field measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-48sec/collection_data_s3_48.0s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:40.547151","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup:data-s3-9.60s::1.0","title":"Voyager 1 Magnetometer Jupiter Resampled System III Coords 9.60 Second Data Collection","description":"This collection contains calibrated magnetic field data acquired by \n the Voyager 1 Low Field Magnetometer (LFM) during the Jupiter \n encounter. Coverage begins in the solar wind inbound to Jupiter and \n continues past the last outbound bowshock crossing. The data are in \n System III (1965) (SYS3) coordinates and have been averaged from the \n 1.92 second summary data to a 9.6 second sample rate. All magnetic \n field measurements are given in nanoTesla (nT).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-03","stop_date":"1979-03-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-s3coords-9_60sec/collection_data_s3_9.60s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:41.525783","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup:data-sc-field::1.0","title":"Voyager 1 Magnetometer Jupiter Spacecraft Field Data Collection","description":"This collection contains the estimated spacecraft field in payload coordinates for the the Voyager 1 MAG 1.92, 9.6,\n and 48.0 second averaged magnetic field data in heliographic (RTN) and Jovigraphic System III \n (SYS3) coordinates, from the Jupiter encounter period (1979-02-26 to \n 1979-03-24).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-sc-field/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/data-sc-field/collection_data_sc_field_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:42.540094","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-jup:document::1.0","title":"Voyager 1 Magnetometer Jupiter Data Document Collection","description":"This collection contains the document files associated with the Voyager 1 Magnetometer Jupiter Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:43.554135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat::1.0","title":"Voyager 1 Magnetometer Saturn Data Bundle","description":"This bundle contains Voyager 1 Magnetometer Saturn data in resampled Heliographic \n (RTN) and Kronographic (L1) coordinates at 1.92, 9.60 and 48.0 second sample rates.\n These data were previously released in the following PDS3 data sets:\n VG1-S-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519911), \n VG1-S-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519913), \n VG1-S-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519912), \n VG1-S-MAG-4-SUMM-L1COORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519914), \n VG1-S-MAG-4-SUMM-L1COORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519916) and \n VG1-S-MAG-4-SUMM-L1COORDS-48SEC-V1.0 (https://doi.org/10.17189/1519915).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Mag","Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/bundle-voyager1-mag-sat-v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:45.059638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:browse::1.0","title":"Voyager 1 Magnetometer Saturn Browse Collection","description":"This collection contains Voyager 1 Magnetometer Saturn browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/browse/collection-browse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:46.105093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:data-hg-1.92sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Heliographic (RTN) Coords 1.92 Second Data Collection","description":"This collection contains calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer \n (LFM) during the Saturn encounter. Coverage begins in the solar wind \n inbound to Saturn and continues past the last outbound bowshock crossing. \n The data are in Heliographic (RTN) coordinates and have been averaged \n from the 60 ms instrument sample rate to a 1.92 second sample rate. \n All magnetic field measurements are given in nanoTesla (nT). The magnetic \n field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-1_92sec/collection-data-hg-1.92s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:47.045070","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:data-hg-48.0sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Heliographic (RTN) Coords 48.0 Second Data Collection","description":"This collection contains calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer (LFM)\n during the Saturn encounter. Coverage begins in the solar wind inbound to \n Saturn and continues past the last outbound bowshock crossing. The data \n are in Heliographic (RTN) coordinates and have been averaged from the 9.6 \n second summary rate to a 48 second sample rate. All magnetic field \n measurements are given in nanoTesla (nT). The magnetic field data \n are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-48sec/collection-data-48.0s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:48.062036","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:data-hg-9.60sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Heliographic (RTN) Coords 9.60 Second Data Collection","description":"This collection contains calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer \n (LFM) during the Saturn encounter. Coverage begins in the solar wind \n inbound to Saturn and continues past the last outbound bowshock crossing. \n The data are in Heliographic (RTN) coordinates and have been averaged \n from the 1.92 second summary rate to a 9.6 second sample rate. All \n magnetic field measurements are given in nanoTesla (nT). The magnetic \n field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-hgcoords-9_60sec/collection-data-hg-9.60s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:49.044991","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:data-l1-1.92sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Kronographic (L1) Coords 1.92 Second Data Collection","description":"This collection includes calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer (LFM)\n during the Saturn encounter. Coverage begins in the solar wind inbound to \n Saturn and continues past the last outbound bowshock crossing. The data \n are in Kronographic (L1) coordinates and have been averaged from the \n 60 ms instrument sample rate to a 1.92 second sample rate. All magnetic \n field measurements are given in nanoTesla (nT). The magnetic field \n data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-1_92sec/collection-data-l1-1.92s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:50.043642","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:data-l1-48.0sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Kronographic (L1) Coords 48.0 Second Data Collection","description":"This collection includes calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer \n (LFM) during the Saturn encounter. Coverage begins in the solar wind \n inbound to Saturn and continues past the last outbound bowshock crossing. \n The data are in Kronographic (L1) coordinates and have been averaged from \n the 9.6 second summary rate to a 48 second sample rate. All magnetic field\n measurements are given in nanoTesla (nT). The magnetic field data \n are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-48sec/collection-data-l1-48.0s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:51.055668","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:data-l1-9.60sec::1.0","title":"Voyager 1 Magnetometer Saturn Resampled Kronographic (L1) Coords 9.60 Second Data Collection","description":"This collection includes calibrated \n magnetic field data acquired by the Voyager 1 Low Field Magnetometer \n (LFM) during the Saturn encounter. Coverage begins in the solar wind \n inbound to Saturn and continues past the last outbound bowshock crossing. \n The data are in Kronographic (L1) coordinates and have been averaged \n from the 1.92 second summary rate to a 9.6 second sample rate. All \n magnetic field measurements are given in nanoTesla (nT). The magnetic \n field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-l1coords-9_60sec/collection-data-l1-9.60s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:52.055894","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:data-sc-field::1.0","title":"Voyager 1 Magnetometer Saturn Spacecraft Field Data Collection","description":"This collection contains Voyager 1 MAG 48 second averaged spacecraft field data from the Saturn \n Encounter in Payload coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-sc-field/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/data-sc-field/collection-data-sc-field-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:53.068535","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-mag-sat:document::1.0","title":"Voyager 1 Magnetometer Saturn Document Collection","description":"This collection contains the document files associated with","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:54.056762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-jup::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Jupiter Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data recorded \n during the Jupiter encounter.\n \n These data were previously released as the following PDS3 data sets: \n VG1-J-PLS-5-SUMM-ELE-MOM-96.0SEC-V1.1 (https://doi.org/10.17189/1519890), \n VG1-J-PLS-5-SUMM-ION-INBNDSWIND-96S-V1.0 (https://doi.org/10.17189/1519891),\n VG1-J-PLS-5-SUMM-ION-L-MODE-96S-V1.0 (https://doi.org/10.17189/1519892), \n VG1-J-PLS-5-SUMM-ION-M-MODE-96S-V1.0 (https://doi.org/10.17189/1519893) and \n VG1-J-PLS-5-SUMM-ION-MOM-96.0SEC-V1.1 (https://doi.org/10.17189/1519894).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-02-15","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/bundle-voyager1-pls-jup-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:55.633270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-jup:data-ele-mom-96s::1.0","title":"Voyager 1 Plasma Derived Electron Moments 96.0 Second Jupiter Data Collection","description":"This collection contains derived values of the electron density \n and moment temperature at Jupiter during the Voyager 1 \n encounter in the PLS voltage range (10-5950 eV/q). Adjacent \n low and high energy electron measurements are combined to \n form a composite spectra which is used for the moment","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-01","stop_date":"1979-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ele-mom-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ele-mom-96s/collection-data-ele-mom-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:56.592246","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-jup:data-ion-inbndwind-96s::1.0","title":"Voyager 1 Plasma Derived Ion Inbound Solar Wind 96 Second Jupiter Data Collection","description":"This collection contains solar wind plasma data upstream of \n Jupiter before the Voyager 1 encounter. Fit and moment \n parameters are given; the fit parameters assume a convected \n isotropic proton Maxwellian distribution. Use of fit \n parameters is recommended as these are normally more accurate.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-15","stop_date":"1979-03-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-inbndwind-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-inbndwind-96s/collection-data-ion-inbndwind-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:57.640253","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-jup:data-ion-l-mode-96s::1.0","title":"Voyager 1 Plasma Derived Ion In/Out Bound Magnetosheath L-Mode 96 Second Jupiter Data Collection","description":"This collection contains Voyager 1 PLS 96 second inbound and outbound \n magnetosheath L-mode ion data. These data were recorded during the \n Voyager 1 Jupiter encounter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-l-mode-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-l-mode-96s/collection-data-ion-l-mode-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:58.565014","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-jup:data-ion-m-mode-96s::1.0","title":"Voyager 1 Plasma Derived Ion Outbound Magnetosheath M-Mode 96 Second Jupiter Data Collection","description":"This collection contains Voyager 1 PLS 96 second averaged outbound M-mode \n magnetosheath ion data. These data were recorded during the Voyager 1 Jupiter \n encounter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-13","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-m-mode-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-m-mode-96s/collection-data-ion-m-mode-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:41:59.570170","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-jup:data-ion-mom-96s::1.0","title":"Voyager 1 Plasma Derived Ion Moments 96.0 Second Jupiter Data Collection","description":"This collection contains Voyager 1 PLS 96 second averaged ion moment data. \n These data were recorded during the Voyager 1 Jupiter encounter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-03-01","stop_date":"1979-03-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-mom-96s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/data-ion-mom-96s/collection-data-ion-mom-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:00.569823","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-jup:document::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Jupiter Document Collection","description":"This collection contains the documents associated with the Voyager 1 Plasma Science Experiment (PLS) Jupiter Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-02-15","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:01.575815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data recorded \n during the Saturn encounter.\n \n These data were previously released as the following PDS3 data sets:\n VG1-S-PLS-5-SUMM-ELE-FIT-96SEC-V1.0 (https://doi.org/10.17189/1519917) \n VG1-S-PLS-5-SUMM-ELEFBR-96SEC-V1.0 (https://doi.org/10.17189/1519918)\n VG1-S-PLS-5-SUMM-IONFIT-96SEC-V1.0 (https://doi.org/10.17189/1519922) \n VG1-S-PLS-5-SUMM-IONMOM-96SEC-V1.0 (https://doi.org/10.17189/1519923)\n VG1-S-PLS-5-SUMM-ION-SOLARWIND-96S-V1.0 (https://doi.org/10.17189/1519920)\n VG1-S-PLS-5-SUMM-IONFBR-96SEC-V1.0 (https://doi.org/10.17189/1519921) \n VG1-S-PLS-5-SUMM-ION-MAGSHEATH-96S-V1.0 (https://doi.org/10.17189/1519919)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/bundle-voyager1-pls-sat-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:03.073789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:browse-ele-fbr::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Electron Browse Collection","description":"This collection contains the electron browse products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ele-fbr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ele-fbr/collection-browse-ele-fbr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:04.076670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:browse-ele-fit::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Electron Parameters Browse Collection","description":"This collection contains the browse fit data products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle.\n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ele-fit/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ele-fit/collection-browse-ele-fit-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:05.066266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:browse-ion-fbr::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Ion Fits Browse Collection","description":"This collection contains the ion fits browse products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-fbr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-fbr/collection-browse-ion-fbr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:06.105539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:browse-ion-fit::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Ion Fit Browse Collection","description":"This collection contains the ion fit browse products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-fit/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-fit/collection-browse-ion-fit-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:07.154961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:browse-ion-moments::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Ion Moments Browse Collection","description":"This collection contains the ion moment browse products associated with Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-moments/collection-browse-ion-moments-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:08.125555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:browse-ion-solar-wind::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Ion Solar Wind Browse Collection","description":"This collection contains the ion solar wind browse products associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn \n Data Bundle. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-solar-wind/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/browse-ion-solar-wind/collection-browse-ion-solar-wind-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:09.075470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:data-ele-fbr-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Electron Browse 96 Second Data Collection","description":"This collection contains electron browse data from the Plasma experiment (PLS) on Voyager 1 from \n the Saturn encounter. The data includes 96 second averages of the \n electron (10-5950 eV) density and temperature measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ele-fbr-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ele-fbr-96sec/collection-data-ele-fbr-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:10.093568","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:data-ele-fit-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Electron Parameters 96 Second Data Collection","description":"This collection contains electron fit data from the Plasma experiment (PLS) on Voyager 1 from the \n Saturn encounter. The data includes 96 second res. density and \n temperature measurements for various types of electrons (10-5950 eV).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ele-fit-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ele-fit-96sec/collection-data-ele-fit-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:11.080249","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-fbr-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Fits Browse 96 Second Data Collection","description":"This collection contains ion browse data from the Plasma experiment (PLS) on Voyager 1 from the Saturn \n encounter. The data includes 96 second density, temperature, and velocity\n components for proton and heavy ions.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-fbr-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-fbr-96sec/collection-data-ion-fbr-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:12.099614","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-fit-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Fits 96 Second Data Collection","description":"This collection contains ion fit data from the Plasma experiment (PLS) on Voyager 1 in Saturn's \n magnetosphere. The data includes 96 second ion mass, charge, number \n of ion species, density, thermal speed, velocity for the first and second \n ion species.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-fit-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-fit-96sec/collection-data-ion-fit-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:13.111651","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-magsheath-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Magnetosheath 96 Second Data Collection","description":"This collection contains Voyager 1 Plasma (PLS) ion data from the Saturn's magnetosheath. \n The data includes 96 second data of the ion mass, charge, \n density, velocity, and thermal speed for the first and second \n ion species.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-11","stop_date":"1980-11-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-magsheath-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-magsheath-96sec/collection-data-ion-magsheath-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:14.085199","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-moments-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Moments 96 Second Data Collection","description":"This collection contains ion moment data from the Plasma experiment on Voyager 1 in Saturn's \n magnetosphere. The data contains 96 second total ion moment density \n measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-moments-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-moments-96sec/collection-data-ion-moments-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:15.087803","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:data-ion-solar-wind-96sec::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Derived Ion Solar Wind Browse 96 Second Data Collection","description":"This collection contains Voyager 1 Plasma (PLS) ion solar wind browse data from the Saturn encounter. \n The data provides 96 second ion density, velocity, thermal speed, and \n temperature measurements.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-solar-wind-96sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-ion-solar-wind-96sec/collection-data-ion-solar-wind-96s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:16.100764","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:data-pls-cup::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Faraday Cup Data Collection","description":"This collection contains ancillary data describing configuration of the \n Voyager 1 PLS Faraday detector cups.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"1980-11-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-pls-cup/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/data-pls-cup/collection-data-pls-cup-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:17.113753","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-sat:document::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Document Collection","description":"This collection contains the documents associated with the Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:18.167810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-ss::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Solar System Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data of the \n solar wind. One hour averaged data and fine resolution data are included.\n \n These data were previously released as the following PDS3 data sets: \n VG1-SS-PLS-4-SUMM-1HR-AVG-V1.0 (https://doi.org/10.17189/1519931) and \n VG1-SS-PLS-3-RDR-FINE-RES-V1.0 (https://doi.org/10.17189/1519930).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/bundle_vg1_pls_solar_system_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:19.660320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-ss:data-1hour::1.0","title":"Voyager 1 PLS Solar System 1 Hour Averaged Proton Moments Data Collection","description":"This collection contains Voyager 1 hourly average proton moment data \n in RTN coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/data-1hour/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/data-1hour/collection-data-1hour-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:20.615451","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-ss:data-fine-res::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Solar System Fine Resolution Moments Collection","description":"This collection contains Voyager 1 fine resolution proton data \n in RTN coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Solar_System"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/data-fine-res/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/data-fine-res/collection-data-fine-res-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:21.612251","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pls-ss:document::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Solar System Document Collection","description":"This collection contains the document files associated with the Voyager 1 Plasma Science Experiment (PLS) Solar System Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Solar_System"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:22.600210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second Data Bundle","description":"This bundle contains Voyager 1 ephemeris data in Heliographic (RTN) \n coordinates from the Saturn encounter. The data include 96 second \n data generated from SPICE and SEDR.\n\n These data were previously released as the PDS3 data set: \n VG1-S-POS-4-SUMM-HGCOORDS-96SEC-V1.0 (https://doi.org/10.17189/1519924).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/bundle-vg1-sat-pos-hgcoords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:24.139623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec:data-sedr::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second SEDR Data Collection","description":"This collection consists of Voyager 1 Saturn encounter ephemeris data in \n Heliographic coordinates covering the period 1980-11-10T00:00:34.923 to \n 1980-11-20T23:58:59.065. The data was \n generated by the Voyager MAG team from Voyager 1 SEDR. \n \n Due to inaccuracies in Voyager SEDR, as well as changes in the values of \n some key parameters (e.g. Saturn radius) the timing is improved for the \n SPICE generated data, which is also icluded in this bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/data_sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/data_sedr/collection-data-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:25.124277","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec:data-spice::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second SPICE Data Collection","description":"This collection consists of Voyager 1 Saturn encounter ephemeris data in \n Heliographic coordinates covering the period 1980-11-10T00:00:34.923 to \n 1980-11-20T23:58:59.065. The data was generated by the \n PDS/PPI node using the VG1_SAT.TSP and PCK00006.TPC SPICE kernels. \n \n Due to inaccuracies in Voyager SEDR, as well as changes in the values of \n some key parameters (e.g. Saturn radius) the timing is improved for the \n SPICE generated data. However, since much of the original analysis was based \n upon the SEDR generated ephemeris, this data has been included in the bundle as well.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/data_spice/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/data_spice/collection-data-spice-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:26.114225","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec:document::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second Data Document Collection","description":"This collection contains the documents associated with the Voyager 1 Saturn POS Ephemeris Heliographic Coords Browse 96 Second Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:27.116839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse Data Bundle","description":"This bundle contains Voyager 1 \n Saturn encounter ephemeris data in Kronographic (L1) coordinates covering \n the period 1980-11-10 to 1980-11-18. Two versions, both covering the same \n time period, but containing slightly different data, are provided. One \n version was generated by the Voyager MAG team from Voyager SEDR, the other\n by the PDS/PPI node using the VG1_SAT.TSP and PCK00006.TPC SPICE kernels.\n \n Due to inaccuracies in Voyager SEDR, as well as changes in the \n values of some key parameters (e.g. Saturnian radius) the timing \n is improved for the SPICE generated data. However, since much \n of the original analysis was based upon the SEDR generated \n ephemeris, this data has been included as well.\n \n These data were previously released as the following PDS3 data set:\n VG1-S-POS-4-SUMM-L1COORDS-V1.0 (https://doi.org/10.17189/1519925)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/bundle-vg1-sat-pos-l1coords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:28.647567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords:data-sedr::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse SEDR Data Collection","description":"This collection contains Voyager 1 \n Saturn encounter ephemeris data in Kronographic (L1) coordinates covering \n the period 1980-11-10 to 1980-11-18. The data was generated by the Voyager MAG team from Voyager SEDR.\n \n Due to inaccuracies in Voyager SEDR, as well as changes in the \n values of some key parameters (e.g. Saturnian radius) the timing \n is improved for the SPICE generated data, which is also included in this bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/data-sedr/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/data-sedr/collection-data-sedr-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:29.698296","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords:data-spice::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse SPICE Data Collection","description":"This collection contains Voyager 1 \n Saturn encounter ephemeris data in Kronographic (L1) coordinates covering \n the period 1980-11-10 to 1980-11-18. The data was generated by the\n PDS/PPI node using the VG1_SAT.TSP and PCK00006.TPC SPICE kernels.\n \n Due to inaccuracies in Voyager SEDR, as well as changes in the \n values of some key parameters (e.g. Saturnian radius) the timing \n is improved for the SPICE generated data. However, since much \n of the original analysis was based upon the SEDR generated \n ephemeris, this data has been included in the bundle as well.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/data-spice/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/data-spice/collection-data-spice-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:30.664941","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords:document::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse Data Document Collection","description":"This collection contains the documents associated with the Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:31.716036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pra-jup::1.0","title":"Voyager 1 Planetary Radio Astronomy Receiver (PRA) Jupiter Data Bundle","description":"This bundle contains Voyager 1 Planetary Radio Astronomy Receiver (PRA) data recorded during the Jupiter encounter.\n These data were previously released as PDS3 data in VG1-J-PRA-3-RDR-LOWBAND-6SEC-V1.0 (https://doi.org/10.17189/1519898) and VG1-J-PRA-4-SUMM-BROWSE-48SEC-V1.0(https://doi.org/10.17189/1519899).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Pra","Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/bundle-voyager1-pra-jup-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:33.135998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pra-jup:data-avg-48sec::1.0","title":"Voyager 1 PRA Averaged 48 Second Jupiter Data Collection","description":"This collection contains edited browse data derived from an \n original data set obtained from the Voyager 1 Planetary Radio \n Astronomy (PRA) instrument in the vicinity of Jupiter. Data \n are provided for 70 instrument channels covering the range from \n 1.2 kHz to 1326 kHz in uniform 19.2 kHz steps, each 1 kHz wide.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/data-averaged-48sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/data-averaged-48sec/collection-data-avg-48sec-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:34.134565","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pra-jup:data-lowband-6sec::1.0","title":"Voyager 1 PRA Calibrated Hi-Res Low Frequency Receiver Band Jupiter Data Collection","description":"This collection contains high time resolution and low rate receiver band 6 second sweep data from \n the Radio Astronomy instrument on Voyager 1 from the Jupiter encounter. The data are provided for 70 low band channels ranging from 1326.0 to \n 1.2 kHz and spaced 19.2 kHz apart.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/data-lowband-6sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/data-lowband-6sec/collection-data-lowband-6sec-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:35.140391","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pra-jup:document::1.0","title":"Voyager 1 Planetary Radio Astronomy Receiver (PRA) Jupiter Data Document Collection","description":"This collection contains the documentation associated with the Voyager 1 \n Planetary Radio Astronomy Receiver (PRA) Jupiter Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:36.156914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pra-lowband-6sec-sat::1.0","title":"Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Bundle","description":"This bundle contains Voyager 1 Radio Astronomy (PRA) data from the Saturn encounter. The data \n includes 6 second high resolution lowband radio mean power data. The data \n are provided for 70 instrument channels, covering 1326.0 to 1.2 kHz.\n \n These data were previously released as PDS3 data in VG1-S-PRA-3-RDR-LOWBAND-6SEC-V1.0 (https://doi.org/10.17189/1519926).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Pra","Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/bundle-vg1-pra-lowband-6sec-sat-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:37.648386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pra-lowband-6sec-sat:data::1.0","title":"Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Collection","description":"This collection contains Voyager 1 Radio Astronomy (PRA) data from the Saturn encounter. The data \n include 6 second high resolution lowband radio mean power data. The data \n are provided for 70 instrument channels, covering 1326.0 to 1.2 kHz.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-11","stop_date":"1980-11-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/data/collection-data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:38.642186","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-pra-lowband-6sec-sat:document::1.0","title":"Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Document Collection","description":"This collection contains the documents associated with the Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-11","stop_date":"1980-11-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:39.678883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-S-CRS-4-SUMM-D1_D2-192SEC-V1.0","title":"VG1 S CRS 4 SUMM D1 D2 192SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-CRS-4-SUMM-D1_D2-192SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:41.263469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-S-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG1 S LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:41.712451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-S-LECP-3-RDR-STEP-6MIN-V1.0","title":"VG1 S LECP 3 RDR STEP 6MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-LECP-3-RDR-STEP-6MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:42.198501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -1250,24 +481,12 @@ {"id":"VG1-S-PWS-2-RDR-SA-4.0SEC-V1.0","title":"VG1 S PWS 2 RDR SA 4.0SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PWS-2-RDR-SA-4.0SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:51.738184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-S-PWS-4-SUMM-SA-48SEC-V1.0","title":"VG1 S PWS 4 SUMM SA 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-PWS-4-SUMM-SA-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:52.269729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-S-RSS-1-ROCC-V1.0","title":"VG1 S RSS 1 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-S-RSS-1-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:52.731418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec::1.0","title":"Voyager 1 Saturn CRS D1/D2 Averaged 192 Second Counting Rate Data Bundle","description":"This bundle contains the counting rate data from detectors D1 and D2 \n in the Cosmic Ray System (CRS) electron telescope (TET) on Voyager 1 during \n the Saturn encounter. The D1 detector nominally responds to electrons with \n kinetic energies above approximately 1 MeV, and the D2 detector, above \n approximately 2.5 MeV. \n These data were previously released as PDS data set PDS3 VG1-S-CRS-4-SUMM-D1/D2-192SEC-V1.0,\n https://doi.org/10.17189/1519906","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Crs","Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/bundle-vg1-sat-crs-d1-d2-192sec-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:54.262101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec:browse::1.0","title":"Voyager 1 Saturn CRS Averaged D1/D2 192 Second Counting Rate Browse Collection","description":"This collection contains a browse plot for the Cosmic Ray \n data from the Voyager 1 Saturn encounter. The plot was generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Browse"],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/browse/collection-browse-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:55.192696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec:data::1.0","title":"Voyager 1 Saturn CRS Averaged D1/D2 192 Second Counting Rate Data Collection","description":"This collection contains data from the Cosmic Ray instrument on Voyager 1 in the Saturn \n magnetosphere. The data set contains 192.0 second electron counting \n rates from detectors D1 and D2.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/data/collection-data-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:56.190684","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec:document::1.0","title":"Voyager 1 Saturn CRS Averaged D1/D2 192 Second Counting Rate Document Collection","description":"This collection contains the documentation associated with the Voyager 1 Saturn CRS Averaged D1/D2 192 Second Counting Rate Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:57.185599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-SS-PLS-3-RDR-FINE-RES-V1.0","title":"VG1 SS PLS 3 RDR FINE RES V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SS-PLS-3-RDR-FINE-RES-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:57.750939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-SS-PLS-4-SUMM-1HR-AVG-V1.0","title":"VG1 SS PLS 4 SUMM 1HR AVG V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SS-PLS-4-SUMM-1HR-AVG-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:58.208985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-SS-POS-6-1DAY-V1.0","title":"VG1 SS POS 6 1DAY V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SS-POS-6-1DAY-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:58.708422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-SSA-RSS-1-ROCC-V1.0","title":"VG1 SSA RSS 1 ROCC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SSA-RSS-1-ROCC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:59.269888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-SW-MAG-4-SUMM-HGCOORDS-1HR-V1.0","title":"VG1 SW MAG 4 SUMM HGCOORDS 1HR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SW-MAG-4-SUMM-HGCOORDS-1HR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:42:59.721534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG1-SW-MAG-4-SUMM-HGCOORDS-48SEC-V1.0","title":"VG1 SW MAG 4 SUMM HGCOORDS 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 1"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG1-SW-MAG-4-SUMM-HGCOORDS-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:00.191188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux::1.0","title":"Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Averaged Data Bundle","description":"This bundle contains Voyager 2 Cosmic Ray (CRS) data from the Jupiter encounter. The bundle \n includes 15 minute averages of the ion flux for particles between 0.42 and \n 8.3 MeV. Electron fluxes are also provided for particles above 0.5 MeV.\n \n These data were previously released as a PDS3 dataset VG2-J-CRS-5-SUMM-FLUX-V1.0, https://doi.org/10.17189/1519936","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Crs","Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":[],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/bundle-vg2-crs-jup-avg-flux-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:01.702657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:browse-electrons::1.0","title":"Voyager 2 Jupiter CRS Derived Electron Browse Plot Collection","description":"This collection contains electron browse plots for the electron data in the Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Bundle. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Browse"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-electrons/collection-browse-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:02.747397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:browse-ions::1.0","title":"Voyager 2 Jupiter CRS Derived Ion Browse Plot Collection","description":"This collection contains ion browse plots for the ion data in the Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Bundle.\n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Browse"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-ions/collection-browse-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:03.795268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:browse-pulse-height::1.0","title":"Voyager 2 Jupiter CRS Derived Proton Pulse Height Browse Plot Collection","description":"This collection contains pulse height browse plots for the pulse height data in the Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux\n Browse Data Bundle. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Browse"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-pulse-height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/browse-pulse-height/collection-browse-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:04.749069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:data-electrons::1.0","title":"Voyager 2 Jupiter CRS Derived Electron Averaged Data Collection","description":"This collection contains Voyager 2 Jupiter CRS derived electron 15 minute averaged data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-electrons/collection-data-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:05.704938","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:data-ions::1.0","title":"Voyager 2 Jupiter CRS Derived Ion Averaged Data Collection","description":"This collection contains Voyager 2 Jupiter CRS 15 minute averaged ion data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-ions/collection-data-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:06.703410","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:data-pulse-height::1.0","title":"Voyager 2 Jupiter CRS Derived Pulse Height Ion Averaged Data Collection","description":"This collection contains Voyager 2 Jupiter CRS derived pulse height ion one hour averaged data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-pulse-height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/data-pulse-height/collection-data-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:07.733038","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux:document::1.0","title":"Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Averaged Data Document Collection","description":"This collection contains the documentation associated with the Voyager 2 Jupiter CRS derived proton/ion/electron flux averaged data bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Vg2"],"data_types":["Document"],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:08.725326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-J-CRS-5-SUMM-FLUX-V1.0","title":"VG2 J CRS 5 SUMM FLUX V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-CRS-5-SUMM-FLUX-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:12.242228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-J-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG2 J LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:12.780368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-J-LECP-3-RDR-STEP-3MIN-V1.0","title":"VG2 J LECP 3 RDR STEP 3MIN V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J-LECP-3-RDR-STEP-3MIN-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:13.258497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -1295,16 +514,6 @@ {"id":"VG2-J_S_U_N_SS-PWS-1-EDR-WFRM-60MS-V1.0","title":"VG2 J S U N SS PWS 1 EDR WFRM 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J_S_U_N_SS-PWS-1-EDR-WFRM-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:24.281280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-J_S_U_N_SS-PWS-2-RDR-SAFULL-V1.0","title":"VG2 J S U N SS PWS 2 RDR SAFULL V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J_S_U_N_SS-PWS-2-RDR-SAFULL-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:24.804850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-J_S_U_N_SS-PWS-4-SUMM-SA1HOUR-V1.0","title":"VG2 J S U N SS PWS 4 SUMM SA1HOUR V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-J_S_U_N_SS-PWS-4-SUMM-SA1HOUR-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:25.312077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup::1.0","title":"Voyager 2 Magnetometer Jupiter Data Bundle","description":"This bundle contains Voyager 2 Magnetometer Jupiter data in resampled Heliographic (RTN) and System III coordinates \n at 1.92, 9.60 and 48.0 second sample rates.\n \n This data was previously released as PDS3 data in \n \n VG2-J-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519942), \n VG2-J-MAG-4-RDR-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519943),\n VG2-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519946), \n VG2-J-MAG-4-RDR-S3COORDS-1.92SEC-V1.1 (https://doi.org/10.17189/1519944), \n VG2-J-MAG-4-RDR-S3COORDS-9.60SEC-V1.1 (https://doi.org/10.17189/1519945)\n and VG2-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1 (https://doi.org/10.17189/1519947).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Mag","Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":[],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/bundle_vg2_mag_jupiter_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:28.769203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:browse::1.0","title":"Voyager 2 Magnetometer Jupiter Browse Collection","description":"This collection contains Voyager 2 Magnetometer Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Browse"],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/browse/collection_browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:29.759039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:data-hg-1.92s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 1.92 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data given in Heliographic coordinates and \n averaged from the 60 ms instrument sample rate to a 1.92 second resampled rate. All magnetic field observations \n are measured in nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-1_92sec/collection_data_hg_1.92s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:30.758444","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:data-hg-48.0s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 48.0 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data given in Heliographic coordinates and \n averaged from the 60 ms instrument sample rate to a 48 second resampled rate. All magnetic field observations are \n measured in nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-06-20","stop_date":"1979-08-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-48_0sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-48_0sec/collection_data_hg_48.0s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:31.766336","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:data-hg-9.60s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled Heliographic (RTN) Coords 9.60 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data given in Heliographic coordinates and \n averaged from the 60 ms instrument sample rate to a 9.6 second resampled rate. All magnetic field observations are measured in \n nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-hgcoords-9_60sec/collection_data_hg_9.60s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:32.776990","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:data-s3-1.92s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled SYSTEM III (1965) Coords 1.92 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data from the Low Field Magnetometer (LFM) \n resampled at a 1.92 second sample rate from the 60 msec instrument sampling rate. Data coverage begins in the solar wind and continues \n until at least the first magnetopause crossing. The data are given in Jovicentric System III (1965) right handed coordinates.\n All magnetic field observations are measured in nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-05","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-1_92sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-1_92sec/collection_data_s3_1.92s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:33.766202","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:data-s3-48.0s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled SYSTEM III (1965) Coords 48.0 Second Data Collection","description":"This collection contains Voyager 2 Magnetometer data in System III (1965) coordinates from the \n Jupiter encounter. The data provides 48 second averages of the magnetic field data. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-05","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-48_0sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-48_0sec/collection_data_s3_48.0s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:34.769405","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:data-s3-9.60s::1.0","title":"Voyager 2 Magnetometer Jupiter Resampled SYSTEM III (1965) Coords 9.60 Second Data Collection","description":"This collection contains Voyager 2 Jupiter encounter magnetometer data from the Low Field Magnetometer (LFM) \n resampled at a 9.6 second sample rate from the 60 msec instrument sampling rate. Data coverage begins in the solar wind and continues \n until at least the first magnetopause crossing. The data are given inJovicentric System III(1965) right handed coordinates. All magnetic field \n observations are measured in nanoTesla. All of the magnetic field data are calibrated.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-07-05","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-9_60sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-s3coords-9_60sec/collection_data_s3_9.60s_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:35.776876","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:data-sc-field::1.0","title":"Voyager 2 Magnetometer Jupiter Spacecraft Field Data Collection","description":"This collection contains sensor offset values in S/C coordinates from the Magnetometer on Voyager 2 \n from the Jupiter encounter. The data contains 48 second res. offset data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-06-20","stop_date":"1979-08-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-sc-field/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/data-sc-field/collection_data_sc_field_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:36.808593","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-mag-jup:document::1.0","title":"Voyager 2 Magnetometer Jupiter Document Collection","description":"This collection contains the document files associated with the Voyager 2 Magnetometer Jupiter Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Vg2"],"data_types":["Document"],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:37.858827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-N-CRS-3-RDR-D1-6SEC-V1.0","title":"VG2 N CRS 3 RDR D1 6SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-CRS-3-RDR-D1-6SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:38.309183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-N-CRS-4-SUMM-D1-96SEC-V1.0","title":"VG2 N CRS 4 SUMM D1 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-CRS-4-SUMM-D1-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:38.823762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-N-CRS-4-SUMM-D2-96SEC-V1.0","title":"VG2 N CRS 4 SUMM D2 96SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-CRS-4-SUMM-D2-96SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:39.352752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -1333,18 +542,6 @@ {"id":"VG2-N-PWS-1-EDR-WFRM-60MS-V1.0","title":"VG2 N PWS 1 EDR WFRM 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PWS-1-EDR-WFRM-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:50.885726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-N-PWS-2-RDR-SA-4SEC-V1.0","title":"VG2 N PWS 2 RDR SA 4SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PWS-2-RDR-SA-4SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:51.404174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-N-PWS-4-SUMM-SA-48SEC-V1.0","title":"VG2 N PWS 4 SUMM SA 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-N-PWS-4-SUMM-SA-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:51.841431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup::1.1","title":"Voyager 2 Plasma Science Experiment (PLS) Jupiter Data Bundle","description":"This bundle contains Voyager 2 Plasma Science Experiment (PLS) data recorded \n during the Jupiter encounter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Pls","Plasma Science Experiment"],"instrument_hosts":["Voyager 2","Vg2"],"data_types":[],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/bundle_vg2_pls_jupiter_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:55.318182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:browse-ele-moments::1.1","title":"Voyager 2 Plasma Derived Electron Moment 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived electron moment 96.0 second Jupiter browse products.\n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ele-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ele-moments/collection_browse_ele_moments_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:56.315307","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:browse-inbndwind::1.1","title":"Voyager 2 Plasma Derived Ion Inbound Solar Wind 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion inbound solar wind 96.0 second Jupiter\n browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-inbndwind/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-inbndwind/collection_browse_inbndwind_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:57.322122","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-l-mode::1.1","title":"Voyager 2 Plasma Derived Ion In/Out Bound Magnetosheath L-Mode 96 Second Jupiter Browse Collection","description":"This collection Voyager 2 plasma derived ion in/out bound magnetosheath L-mode 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-l-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-l-mode/collection_browse_ion_l_mode_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:58.320678","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-m-mode::1.1","title":"Voyager 2 Plasma Derived Ion Outbound Magnetosheath M-Mode 96 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion in/out bound magnetosheath m-mode 96.0 second Jupiter browse products. \n The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-m-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-m-mode/collection_browse-ion-m-mode_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:43:59.353968","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-moments::1.1","title":"Voyager 2 Plasma Derived Ion Moments 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion moment 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-moments/collection_browse-ion-moments_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:00.404438","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:data-ele-moments::1.1","title":"Voyager 2 Plasma Derived Electron Moments 96.0 Second Jupiter Data Collection","description":"This collection contains derived values \n of the electron density and moment temperature at Jupiter during the \n Voyager 2 encounter in the PLS voltage range (10-5950 eV/q). Adjacent low \n and high energy electron measurements are combined to form a composite \n spectra which is used for the moment calculation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-06","stop_date":"1979-07-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ele-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ele-moments/collection_data_ele_moments_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:01.372108","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:data-inbndwind::1.1","title":"Voyager 2 Plasma Derived Ion Inbound Solar Wind 96 Second Jupiter Data Collection","description":"This collection contains solar wind plasma\n data upstream of Jupiter before the Voyager 2 encounter. Fit and moment \n parameters are given; the fit parameters assume a convected isotropic \n proton Maxwellian distribution. Use of fit parameters is recommended as \n these are normally more accurate. Since only the first 72 or last 72 \n energy/charge channels are telemetered to Earth from each M-mode spectra,\n derived parameters change significantly only every other set of spectra \n so the effective time resolution is 196 s.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-06-25","stop_date":"1979-07-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-inbndwind/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-inbndwind/collection_data_inbndwind_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:02.420391","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-l-mode::1.1","title":"Voyager 2 Plasma Derived Ion In/Out Bound Magnetosheath L-Mode 96 Second Jupiter Data Collection","description":"This collection contains plasma parameters\n from the Voyager 2 inbound magnetosheath and outbound data from the \n magnetotail through the solar wind. Inbound Voyager 2 passed near noon \n local time, so it sampled regions of the magnetosheath where flow is \n generally subsonic. Distribution functions observed were well represented \n by two convected isotropic proton Maxwellians, so this type of \n distribution was used to derive the proton velocity, density and \n temperature. Physically the two populations represent the thermal plasma \n accelerated at the shock (the colder component) and ions reflected once at\n the shock before entering the magnetosheath (the hotter component). The \n PLS experiment could not resolve alpha particles in this region so no \n alpha parameters are provided; the neglect of alpha made cause an \n overestimate of the hot proton component of the plasma. One sigma errors \n are provided for the fit parameters.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-02","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-l-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-l-mode/collection_data_ion_l_mode_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:03.336289","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-m-mode::1.1","title":"Voyager 2 Plasma Derived Ion Outbound Magnetosheath M-Mode 96 Second Jupiter Data Collection","description":"This collection contains plasma parameters\n from Voyager 2 outbound from Jupiter from the magnetotail through the \n solar wind. Fit and moment parameters are given; the fit parameters assume\n a single, isotropic convected proton Maxwellian distribution. Although \n magnetotail data is provided, these data are unreliable; the density can \n be used as an upper limit to the actual density. Solar wind data are also \n provided and are reliable. These M mode data are the best data to use in \n most regions of the magnetosheath. Magnetotail data in this data collection are \n included mainly to put the sheath data in context and show magnetopause.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-23","stop_date":"1979-08-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-m-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-m-mode/collection_data_ion_m_mode_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:04.323029","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-moments::1.1","title":"Voyager 2 Plasma Derived Ion Moments 96.0 Second Jupiter Data Collection","description":"This collection contains Voyager 2 Plasma (PLS) data from the Jupiter encounter. The data includes\n 96 second averages of the ion moment density.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-04","stop_date":"1979-07-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-moments/collection_data_ion_moments_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:05.339919","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg2-pls-jup:document::1.1","title":"Voyager 2 Plasma Science Experiment (PLS) Jupiter Document Collection","description":"This collection contains the document files associated with the Voyager 2 Plasma Science Experiment (PLS) Jupiter Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Document"],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/document/collection_document_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:06.338169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-S-CRS-4-SUMM-D1_D2-192SEC-V1.0","title":"VG2 S CRS 4 SUMM D1 D2 192SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-CRS-4-SUMM-D1_D2-192SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:09.880460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-S-LECP-3-RDR-FAR-ENC-400MSEC-V1.0","title":"VG2 S LECP 3 RDR FAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-LECP-3-RDR-FAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:10.419163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-S-LECP-3-RDR-NEAR-ENC-400MSEC-V1.0","title":"VG2 S LECP 3 RDR NEAR ENC 400MSEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-S-LECP-3-RDR-NEAR-ENC-400MSEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:10.918395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} @@ -1403,19 +600,253 @@ {"id":"VG2-U-PWS-1-EDR-WFRM-60MS-V1.0","title":"VG2 U PWS 1 EDR WFRM 60MS V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PWS-1-EDR-WFRM-60MS-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:39.425881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-U-PWS-2-RDR-SA-4SEC-V1.0","title":"VG2 U PWS 2 RDR SA 4SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PWS-2-RDR-SA-4SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:39.935947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} {"id":"VG2-U-PWS-4-SUMM-SA-48SEC-V1.0","title":"VG2 U PWS 4 SUMM SA 48SEC V1.0","description":null,"node":"ppi","pds_version":"PDS3","type":"volume","missions":["Voyager 2"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/VG2-U-PWS-4-SUMM-SA-48SEC-V1.0/","download_url":null,"label_url":null,"source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:40.436716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1.pws.sa::2.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Data Bundle","description":"This bundle contains the Voyager 1 Plasma Wave Spectrometer spectrum analyzer \ndata from the entire mission in calibrated CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Pws","Plasma Wave Science"],"instrument_hosts":["Vg1"],"data_types":[],"start_date":"1977-09-05","stop_date":"2024-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/bundle_data_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:43.917968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1.pws.sa:browse::2.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Browse Plots","description":"Voyager 1 PWS data in 10-day plot PNG files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2022-05-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/browse/collection_browse_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:45.140037","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1.pws.sa:data::2.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Data Files","description":"Voyager 1 PWS data in daily CDF files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Vg1"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2024-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/data/collection_data_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:46.662507","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1.pws.sa:document::2.0","title":"Voyager 1 Plasma Waves Instrument Low Rate Spectrum Analyzer Document Collection","description":"This collection contains documents related to the Voyager 1 Plasma Waves Instrument\n Low Rate Spectrum Analyzer data, updated to refer to the PDS4 bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Receiver"],"instrument_hosts":["Vg1"],"data_types":["Document"],"start_date":"1977-09-05","stop_date":"2024-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/document/collection_document_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:47.750882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2.pws.sa::2.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Data Bundle","description":"This bundle contains the Voyager 2 Plasma Wave Spectrometer spectrum analyzer \ndata from the entire mission in calibrated CDF files","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn","Uranus","Neptune"],"instruments":["Pws","Plasma Wave Science"],"instrument_hosts":["Vg2"],"data_types":[],"start_date":"1977-08-20","stop_date":"2024-09-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/bundle_data_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:49.259529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2.pws.sa:browse::2.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Browse Plots","description":"Voyager 2 PWS data in 10-day plot PNG files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2022-05-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/browse/collection_browse_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:50.426157","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2.pws.sa:data::2.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Data Files","description":"Voyager 2 PWS data in daily CDF files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Vg2"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2023-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/data/collection_data_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:52.045722","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2.pws.sa:document::1.0","title":"Voyager 2 Plasma Waves Instrument Low Rate Spectrum Analyzer Document Collection","description":"This collection contains documents related to the Voyager 2 Plasma Waves Instrument\n Low Rate Spectrum Analyzer data, updated to refer to the PDS4 bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn","Uranus","Neptune"],"instruments":["Plasma Wave Receiver"],"instrument_hosts":["Vg2"],"data_types":["Document"],"start_date":"1977-08-20","stop_date":"2024-09-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/document/collection_document_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:53.064007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1.pws.wf::1.0","title":"Voyager 1 Plasma Wave Science, Uncalibrated Waveforms, Entire Mission Bundle","description":"This bundle contains Voyager 1 Plasma Wave Spectrometer (PWS) raw\n waveform data and documentation for all available telemetry frames from \n (SCET) 1978-08-21T05:41:36.299Z through 2022-02-05T08:18:07.031Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar Wind","Interstellar Particles","Jupiter","Saturn","Interstellar Medium","INTERSTELLAR PARTICLES"],"instruments":["Pws","Plasma Wave Science"],"instrument_hosts":["Voyager 1","Vg1"],"data_types":[],"start_date":"1978-08-21","stop_date":"2022-02-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/bundle.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:54.560784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1.pws.wf:browse::1.0","title":"Voyager 1 Plasma Wave Science, High Spectral Resolution Plots, Entire Mission Collection","description":"This collection contains Voyager 1 Plasma Wave Science (PWS) PNG\n (Portable Network Graphics) images generated from raw waveform data \n from (SCET) 1979-02-27T00:00:00.000Z through 2025-01-01T00:00:00.000Z. Ancillary sources\n for the plots include the various Voyager 1 Magnetometer PDS3 volumes\n and NAIF SPICE position kernels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager","Voyager 1"],"targets":["Solar Wind","Interstellar Particles","Interstellar Medium","Jupiter","Saturn","INTERSTELLAR PARTICLES"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Browse"],"start_date":"1979-02-27","stop_date":"2025-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/browse/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:55.578498","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1.pws.wf:data::1.0","title":"Voyager 1 PWS Electric Waveforms Data Collection","description":"The Voyager 1 PWS Electric Waveforms Data Collections contains raw full resolution \n waveform data consisting of electric field waveform samples from the Voyager 1 \n Plasma Wave Science waveform receiver obtained during the entire mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager","Voyager 1"],"targets":["Solar Wind","Interstellar Particles","Jupiter","Saturn","Interstellar Particles","INTERSTELLAR PARTICLES","Interstellar Medium"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Data"],"start_date":"1978-08-21","stop_date":"2022-02-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/data/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:56.664579","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1.pws.wf:miscellaneous::1.0","title":"Voyager 1 PWS Waveform Cruise Autoplot Configuration Files Data Collection","description":"The time boundary and file name configuration data used to associate a set of PNG images with the Autoplot configuration file below. In this case it associates the plots in browse/cruise with the file vg1_pws_wf_cruise_v1.0.vap","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Miscellaneous"],"start_date":"1978-08-21","stop_date":"2022-02-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/miscellaneous/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/miscellaneous/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:57.667406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2.pws.wf::1.0","title":"Voyager 2 Plasma Wave Science, Uncalibrated Waveforms, Entire Mission Bundle","description":"This bundle contains Voyager 2 Plasma Wave Spectrometer (PWS) raw\n waveform data and documentation for all available telemetry frames from \n (SCET) 1979-04-28T07:59:16.710Z through 2006-03-07T08:48:04.778Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Solar Wind","Interstellar Particles","Saturn","Uranus","Neptune","INTERSTELLAR PARTICLES"],"instruments":["Pws","Plasma Wave Science"],"instrument_hosts":["Voyager 2","Vg2"],"data_types":[],"start_date":"1979-04-28","stop_date":"2006-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/bundle.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:44:59.192775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2.pws.wf:browse::1.0","title":"Voyager 2 Plasma Wave Science, High Spectral Resolution Plots, Entire Mission Collection","description":"This collection contains Voyager 2 Plasma Wave Science (PWS) PNG\n (Portable Network Graphics) images generated from raw waveform data \n from (SCET) 1979-07-02T00:00:00.000Z through 2010-01-01T00:00:00.000Z. Ancillary sources\n for the plots include the various Voyager 2 Magnetometer PDS3 volumes\n and NAIF SPICE position kernels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager","Voyager 2"],"targets":["Solar Wind","Interstellar Particles","Jupiter","Neptune","Saturn","Uranus","INTERSTELLAR PARTICLES"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-07-02","stop_date":"2010-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/browse/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:45:00.177178","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2.pws.wf:data::1.0","title":"Voyager 2 Plasma Wave Science, Raw Waveforms, Entire Mission Collection","description":"This collection contains Voyager 2 Plasma Wave Spectrometer (PWS) raw\n waveform data and documentation for all available telemetry frames from \n (SCET) 1979-04-28T07:59:16.710Z through 2006-03-07T08:48:04.778Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager","Voyager 2"],"targets":["Jupiter","Solar Wind","Interstellar Particles","Saturn","Uranus","Neptune","INTERSTELLAR PARTICLES"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-04-28","stop_date":"2006-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/data/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:45:01.478104","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2.pws.wf:miscellaneous::1.0","title":"Voyager 2 PWS Waveform Cruise Autoplot Configuration Files Data Collection","description":"The time boundary and file name configuration data used to associate a set of PNG images with the Autoplot configuration file below. In this case it associates the plots in browse/cruise with the file vg1_pws_wf_cruise_v1.0.vap","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar Wind","Jupiter","Neptune","Saturn","Uranus"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Miscellaneous"],"start_date":"1979-04-28","stop_date":"2006-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/miscellaneous/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/miscellaneous/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/","scraped_at":"2026-02-03T21:45:02.484635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.wf::1.0","title":"Voyager 1 Plasma Wave Science, Uncalibrated Waveforms, Entire Mission Bundle","description":"This bundle contains Voyager 1 Plasma Wave Spectrometer (PWS) raw waveform data and documentation for all available telemetry frames from (SCET) 1978-08-21T05:41:36.299Z through 2022-02-05T08:18:07.031Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar Wind","INTERSTELLAR PARTICLES","Jupiter","Saturn","Interstellar Medium"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1978-08-21","stop_date":"2022-02-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/bundle.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/bundle.xml","scraped_at":"2026-02-25T20:02:10.738138Z","keywords":["University of Iowa"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.wf::1.0","title":"Voyager 2 Plasma Wave Science, Uncalibrated Waveforms, Entire Mission Bundle","description":"This bundle contains Voyager 2 Plasma Wave Spectrometer (PWS) raw waveform data and documentation for all available telemetry frames from (SCET) 1979-04-28T07:59:16.710Z through 2006-03-07T08:48:04.778Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Solar Wind","INTERSTELLAR PARTICLES","Saturn","Uranus","Neptune"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":[],"start_date":"1979-04-28","stop_date":"2006-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/bundle.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/bundle.xml","scraped_at":"2026-02-25T20:02:10.738144Z","keywords":["University of Iowa"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Derived Bundle","description":"The uncalibrated data were acquired in a mix of CAPS operating modes beginning with the first instrument checkout in January 1999 and containing throughout the Cassini Tour and through the end of prime mission. The data cover the time period from 1999-004T03:07:47 UT until end of prime mission (July 2008). In addition, it covers data received during extended missions. Sampling rates were variable and depended upon the downlink capabilities and other activities on-board.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Earth","Jupiter","Saturn","Solar Wind"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/bundle_cassini_caps_ddr_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/bundle_cassini_caps_ddr_derived_1.0.xml","scraped_at":"2026-02-25T20:02:10.738149Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-electron_density::1.0","title":"Cassini RPWS Electron Densities from Upper Hybrid and Plasma Wave Frequencies","description":"This bundle provides electron number density values derived from features observed in plasma wave data obtained by the Cassini Radio and Plasma Wave Science (RPWS) instruments, along with observed or derived characteristic frequencies, and useful positional parameters for the spacecraft and related bodies. When present, frequency values of narrowband emissions at the upper hybrid resonance were digitized and combined with measured or model magnetic field to derive electron number density. At other times, features such as the upper cutoff in auroral hiss or electron plasma oscillations were used to determine the plasma frequency and electron density.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Saturn","Enceladus","Jupiter","Earth"],"instruments":["RADIO AND PLASMA WAVE SCIENCE for CO"],"instrument_hosts":["CASSINI ORBITER"],"data_types":[],"start_date":"1999-08-18","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/bundle.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/bundle.xml","scraped_at":"2026-02-25T20:02:10.738156Z","keywords":["Cassini","electron density","plasma wave","Saturn","Jupiter","Earth"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-hfr-qtn::1.0","title":"Quasi Thermal Noise pectroscopy on High Frequency Receiver Data Bundle","description":"This bundle contains RPWS-HFR Quasi Thermal Noise (QTN) spectroscopy supplied CDF and plot files containing a time series of thermal plasma moments (density and temperature). QTN data products are generated only when the QTN analysis is applicable.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["RPWS"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-06-30","stop_date":"2012-04-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/bundle-cassini-rpws-hfr-qtn-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/bundle-cassini-rpws-hfr-qtn-1.0.xml","scraped_at":"2026-02-25T20:02:10.738160Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected::1.0","title":"Galileo EPD Calibrated Corrected Data Bundle","description":"These are reprocessed measurements by the Energetic Particle Detector (EPD) instrument onboard the Galileo spacecraft that orbited Jupiter and measured intensities of ion and electron radiation in the keV and MeV energy range. This set is version 31 of reprocessing and version 1.0 of PDS delivery.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/bundle_galileo-epd-cal-corrected.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/bundle_galileo-epd-cal-corrected.xml","scraped_at":"2026-02-25T20:02:10.738203Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-raw::1.0","title":"Galileo Jupiter Heavy Ion Counter High Resolution Raw Bundle","description":"This bundle provides energetic (MeV) ion fluxes for a variety of different Z values (carbon, oxygen, sulfur) derived from the Heavy Ion Counter (HIC) instrument on the Galileo spacecraft. The data set includes all recorded intervals at Jupiter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbitor"],"data_types":[],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/bundle-galileo-hic-jup-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/bundle-galileo-hic-jup-raw.xml","scraped_at":"2026-02-25T20:02:10.738207Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars::2.8","title":"InSight IFG Mars Bundle","description":"This bundle contains InSight IFG Mars data and associated products","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/bundle_insight_ifg_mars_2.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/bundle_insight_ifg_mars_2.8.xml","scraped_at":"2026-02-25T20:02:10.738211Z","keywords":["mag"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-calibrated::1.0","title":"MESSENGER EPPS Calibrated EPS Calibrated Data Bundle","description":"This bundle contains the MESSENGER Energetic Particle and Plasma Spectrometer (EPPS) calibrated observations, also known as CDRs. The system encompasses 2 instrument subsystems - the Energetic Particle Spectrometer (EPS) and the Fast Imaging Plasma Spectrometer (FIPS). This data set contains only the EPS instrument data. EPS covers the energy range of 25 to > 500 keV for electrons, and 10 keV/nucleon to ~3 MeV total energy for ions. These data were previously released as a PDS data set (MESS-E/V/H/SW-EPPS-3-EPS-CDR-V1.0, https://doi.org/10.17189/1519740).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-08-03","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/bundle-mess-epps-eps-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/bundle-mess-epps-eps-calibrated-1.0.xml","scraped_at":"2026-02-25T20:02:10.738215Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-derived::1.1","title":"MESSENGER EPPS EPS DDR Bundle","description":"This bundle contains MESSENGER Energetic Particle and Plasma Spectrometer (EPPS) advanced data products, also known as DDR/DAPs. This bundle contains data from the Energetic Particle Spectrometer (EPS) subsystem. EPS covers the energy range of 25 to > 500 keV for electrons, and 10 keV/nucleon to ~3 MeV total energy for ions. These data were previously released as a PDS data set (MESS-E/V/H/SW-EPPS-3-EPS-DDR-V1.0, https://doi.org/10.17189/1519741).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/bundle-mess-epps-eps-derived-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/bundle-mess-epps-eps-derived-1.1.xml","scraped_at":"2026-02-25T20:02:10.738220Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-raw::1.0","title":"MESSENGER EPPS EPS Raw Bundle","description":"This bundle contains the MESSENGER Energetic Particle and Plasma Spectrometer (EPPS) EPS uncalibrated observations, also known EDR. EPS covers the energy range of 25 to > 500 keV for electrons, and 10 keV/nucleon to ~3 MeV/nucleon for ions. These data were previously released as a PDS3 data set (MESS-E/V/H/SW-EPPS-2-EPS-RAWDATA-V2.0, https://doi.org/10.17189/1519738).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["EPPS Energetic Particle Spectrometer","Energetic Particle Spectrometer","Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/bundle-mess-epps-eps-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/bundle-mess-epps-eps-raw-1.0.xml","scraped_at":"2026-02-25T20:02:10.738224Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-raw::1.0","title":"MESSENGER EPPS FIPS Raw Bundle","description":"This bundle contains the the MESSENGER Energetic Particle and Plasma Spectrometer (EPPS) Fast Imaging Plasma Spectrometer (FIPS) uncalibrated observations, also known as EDRs. FIPS covers the energy/charge range of less than 50 eV/q to 20 keV/q. These data were previously released as a PDS3 data set (MESS-E_V_H_SW-EPPS-2-FIPS-RAWDATA-V2.0, https://doi.org/10.17189/1519739).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["EPPS Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/bundle-mess-epps-fips-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/bundle-mess-epps-fips-raw-1.0.xml","scraped_at":"2026-02-25T20:02:10.738228Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-raw::1.0","title":"MESSENGER EPPS Engineering Raw Data Bundle","description":"This bundle contains the MESSENGER Energetic Particle and Plasma Spectrometer (EPPS) engineering data and the raw data SIS document. These data are associated with the MESSENGER EPPS EPS Raw Data Bundle, and the MESSENGER EPPS FIPS Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Calibration","Earth","Venus","Mercury","Solar Wind"],"instruments":["EPPS Energetic Particle Spectrometer","EPPS Fast Imaging Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/bundle-mess-epps-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/bundle-mess-epps-raw-1.0.xml","scraped_at":"2026-02-25T20:02:10.738232Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-calibrated::1.0","title":"MESSENGER MAG Calibrated Data Bundle","description":"This data set consists of the MESSENGER MAG calibrated observations. The MAG experiment is a miniature three-axis ring-core fluxgate magnetometer with low-noise electronics. There are five MAG data products, which mainly differ in the coordinate system. For each type the data are provided at full resolution, and one or more averaging intervals.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Magnetometer (MAG)"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-08-12","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/bundle-mess-mag-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/bundle-mess-mag-calibrated-1.0.xml","scraped_at":"2026-02-25T20:02:10.738236Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals::1.0","title":"MESSENGER Magnetometer KT17 Model Residuals Data Bundle","description":"This bundle contains MESSENGER Magnetometer KT17 Model Residual data and associated products. The research for and preparation of this bundle was funded by NASA’s Planetary Data Archiving, Restoration, and Tools (PDART) program under grant NNX16AJ01G issued to Dr. Haje Korth (Principal Investigator) at the Johns Hopkins Applied Physics Laboratory.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/bundle-mess-mag-kt17-model-residuals-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/bundle-mess-mag-kt17-model-residuals-1.0.xml","scraped_at":"2026-02-25T20:02:10.738240Z","keywords":["mag"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-hnrao-fsx8sraw::1.11","title":"Radio JOVE Station HNRAO FSX8S Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations made at the HNRAO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station HNRAO"],"data_types":[],"start_date":"2016-01-20","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/bundle_radiojove_hnrao_fsx8sraw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx8sraw/bundle_radiojove_hnrao_fsx8sraw_1.11.xml","scraped_at":"2026-02-25T20:02:10.738244Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrlcpraw::1.11","title":"Radio JOVE Station K4LED SDRLCP Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station AJ4CO"],"data_types":[],"start_date":"2018-06-01","stop_date":"2018-12-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/bundle_radiojove_k4led_sdrlcpraw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/bundle_radiojove_k4led_sdrlcpraw_1.11.xml","scraped_at":"2026-02-25T20:02:10.738247Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrrcpraw::1.11","title":"Radio JOVE Station K4LED SDRRCP Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station K4LED"],"data_types":[],"start_date":"2018-06-01","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/bundle_radiojove_k4led_sdrrcpraw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/bundle_radiojove_k4led_sdrrcpraw_1.11.xml","scraped_at":"2026-02-25T20:02:10.738251Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux::1.0","title":"Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Bundle","description":"This bundle contains derived data from the Cosmic Ray Subsystem (CRS), which was designed for cosmic ray studies. It consists of two high Energy Telescopes (HET), four Low Energy Telescopes (LET) and The Electron Telescope (TET). These data were previously released as a PDS3 data set (VG1-J-CRS-5-SUMM-FLUX-V1.0, https://doi.org/10.17189/1519876).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1979-02-28","stop_date":"1979-03-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/bundle-vg1-crs-jup-avg-flux-v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/bundle-vg1-crs-jup-avg-flux-v1.0.xml","scraped_at":"2026-02-25T20:02:10.738255Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal::1.0","title":"Galileo Plasma Science Experiment Jupiter Calibrated Bundle","description":"This bundle contains averaged raw data and spin averaged count rates from selected ion and electron channels from the Plasma Science experiment (PLS) onboard the Galileo spacecraft for all Jupiter orbits. These data have been averaged and reformatted into ASCII tables to facilitate data display and analysis.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbitor"],"data_types":[],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/bundle-galileo-pls-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/bundle-galileo-pls-jup-cal.xml","scraped_at":"2026-02-25T20:02:10.738297Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-derived::1.0","title":"Galileo Plasma Science Instrument Jupiter RTS Moments Derived Bundle","description":"This bundle contains data from the Plasma Science instrument (PLS) on the Galileo spacecraft for all Jupiter orbits and Galileo plasma moments.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Io Torus","Solar Wind","Callisto","Europa","Ganymede","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbitor"],"data_types":[],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/bundle-galileo-pls-jup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/bundle-galileo-pls-jup-derived.xml","scraped_at":"2026-02-25T20:02:10.738300Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els-pad::1.0","title":"VEx ASPERA-4 ELS Pitch Angle Distribution Data Bundle","description":"This is the Venus Express Analyzer of Space Plasma and Energetic Atoms, 4th edition Electron Spectrometer Pitch Angle Distribution Data Bundle. The data and documentation in this bundle were produced with funding from NASA Solar System Workings (SSW) 2019, grant #80NSSC21K0151.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":[],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/bundle_vex-aspera4-els-pad.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els-pad/bundle_vex-aspera4-els-pad.xml","scraped_at":"2026-02-25T20:02:10.738992Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-mag-high-res-cleaned::1.0","title":"Venus Express Cleaned High-Resolution 128 Hz Magnetic Field Data Bundle","description":"This bundle contains Venus Express cleaned high-resolution (128 Hz) magnetic field data acquired by the fluxgate magnetometer gradiometer onboard the Venus Express spacecraft. The data are expressed in Venus Solar Orbital (VSO) coordinates and Radial-East-North coordinates. This work was funded by a 2017 NASA ROSES SSW proposal. Grant number NNH17ZDA001N-SSW.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus Express"],"targets":["Venus"],"instruments":["Magnetometer"],"instrument_hosts":["Venus Express"],"data_types":[],"start_date":"2006-05-14","stop_date":"2014-10-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/bundle-vex-cleaned-high-res-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vex-cleaned-high-res-mag/bundle-vex-cleaned-high-res-mag-1.0.xml","scraped_at":"2026-02-25T20:02:10.738997Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-s3coords::1.0","title":"Voyager 1 Jupiter Ephemeris System III Coordinates Bundle","description":"This bundle consists of Voyager 1 Jupiter encounter ephemeris data in System III (1965) left handed coordinates covering the period 1979-03-03 to 1979-03-16. Two versions, both covering the same time period, but containing slightly different data, are provided. One version was generated by the Voyager MAG team from Voyager 1 SEDR, the other by the PDS/PPI node using the VG1_JUP.BSP and PCK00003.TCP SPICE kernels. These data were previously released as PDS data set PDS3 VG1-J-POS-6-SUMM-S3COORDS-V1.1, https://doi.org/10.17189/1519896","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1979-03-03","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/bundle-vg1-jup-pos-s3coords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-s3coords/bundle-vg1-jup-pos-s3coords-1.0.xml","scraped_at":"2026-02-25T20:02:10.739030Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-jup::1.0","title":"Voyager 1 Magnetometer Jupiter Data Bundle","description":"This bundle contains Voyager 1 Magnetometer Jupiter data in resampled Heliographic (RTN) and System III coordinates at 1.92, 9.60 and 48.0 second sample rates. This data was previously released as the following PDS3 data sets: VG1-J-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519884) VG1-J-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519886) VG1-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519885) VG1-J-MAG-4-SUMM-S3COORDS-1.92SEC-V1.1 (https://doi.org/10.17189/1519887) VG1-J-MAG-4-SUMM-S3COORDS-9.60SEC-V1.1 (https://doi.org/10.17189/1519889) VG1-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1 (https://doi.org/10.17189/1519888).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/bundle_voyager1_mag_jup_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-jupiter/bundle_voyager1_mag_jup_v1.0.xml","scraped_at":"2026-02-25T20:02:10.739041Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-mag-sat::1.0","title":"Voyager 1 Magnetometer Saturn Data Bundle","description":"This bundle contains Voyager 1 Magnetometer Saturn data in resampled Heliographic (RTN) and Kronographic (L1) coordinates at 1.92, 9.60 and 48.0 second sample rates. These data were previously released in the following PDS3 data sets: VG1-S-MAG-4-SUMM-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519911), VG1-S-MAG-4-SUMM-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519913), VG1-S-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519912), VG1-S-MAG-4-SUMM-L1COORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519914), VG1-S-MAG-4-SUMM-L1COORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519916) and VG1-S-MAG-4-SUMM-L1COORDS-48SEC-V1.0 (https://doi.org/10.17189/1519915).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Fluxgate Magnetometer"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/bundle-voyager1-mag-sat-v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-mag-saturn/bundle-voyager1-mag-sat-v1.0.xml","scraped_at":"2026-02-25T20:02:10.739046Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-jup::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Jupiter Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data recorded during the Jupiter encounter. These data were previously released as the following PDS3 data sets: VG1-J-PLS-5-SUMM-ELE-MOM-96.0SEC-V1.1 (https://doi.org/10.17189/1519890), VG1-J-PLS-5-SUMM-ION-INBNDSWIND-96S-V1.0 (https://doi.org/10.17189/1519891), VG1-J-PLS-5-SUMM-ION-L-MODE-96S-V1.0 (https://doi.org/10.17189/1519892), VG1-J-PLS-5-SUMM-ION-M-MODE-96S-V1.0 (https://doi.org/10.17189/1519893) and VG1-J-PLS-5-SUMM-ION-MOM-96.0SEC-V1.1 (https://doi.org/10.17189/1519894).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1979-02-15","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/bundle-voyager1-pls-jup-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-jupiter/bundle-voyager1-pls-jup-1.0.xml","scraped_at":"2026-02-25T20:02:10.739049Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-sat::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Saturn Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data recorded during the Saturn encounter. These data were previously released as the following PDS3 data sets: VG1-S-PLS-5-SUMM-ELE-FIT-96SEC-V1.0 (https://doi.org/10.17189/1519917) VG1-S-PLS-5-SUMM-ELEFBR-96SEC-V1.0 (https://doi.org/10.17189/1519918) VG1-S-PLS-5-SUMM-IONFIT-96SEC-V1.0 (https://doi.org/10.17189/1519922) VG1-S-PLS-5-SUMM-IONMOM-96SEC-V1.0 (https://doi.org/10.17189/1519923) VG1-S-PLS-5-SUMM-ION-SOLARWIND-96S-V1.0 (https://doi.org/10.17189/1519920) VG1-S-PLS-5-SUMM-IONFBR-96SEC-V1.0 (https://doi.org/10.17189/1519921) VG1-S-PLS-5-SUMM-ION-MAGSHEATH-96S-V1.0 (https://doi.org/10.17189/1519919)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/bundle-voyager1-pls-sat-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-saturn/bundle-voyager1-pls-sat-1.0.xml","scraped_at":"2026-02-25T20:02:10.739053Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pls-ss::1.0","title":"Voyager 1 Plasma Science Experiment (PLS) Solar System Data Bundle","description":"This bundle contains Voyager 1 Plasma Science Experiment (PLS) data of the solar wind. One hour averaged data and fine resolution data are included. These data were previously released as the following PDS3 data sets: VG1-SS-PLS-4-SUMM-1HR-AVG-V1.0 (https://doi.org/10.17189/1519931) and VG1-SS-PLS-3-RDR-FINE-RES-V1.0 (https://doi.org/10.17189/1519930).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1977-09-07","stop_date":"1980-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/bundle_vg1_pls_solar_system_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pls-solar-system/bundle_vg1_pls_solar_system_1.0.xml","scraped_at":"2026-02-25T20:02:10.739068Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-hgcoords-96sec::1.0","title":"Voyager 1 Saturn POS Ephemeris Heliographic Coordinates 96 Second Data Bundle","description":"This bundle contains Voyager 1 ephemeris data in Heliographic (RTN) coordinates from the Saturn encounter. The data include 96 second data generated from SPICE and SEDR. These data were previously released as the PDS3 data set: VG1-S-POS-4-SUMM-HGCOORDS-96SEC-V1.0 (https://doi.org/10.17189/1519924).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-20","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/bundle-vg1-sat-pos-hgcoords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-hgcoords-saturn/bundle-vg1-sat-pos-hgcoords-1.0.xml","scraped_at":"2026-02-25T20:02:10.739072Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-saturn-pos-l1coords::1.0","title":"Voyager 1 Saturn POS Ephemeris Kronographic (L1) Coords Browse Data Bundle","description":"This bundle contains Voyager 1 Saturn encounter ephemeris data in Kronographic (L1) coordinates covering the period 1980-11-10 to 1980-11-18. Two versions, both covering the same time period, but containing slightly different data, are provided. One version was generated by the Voyager MAG team from Voyager SEDR, the other by the PDS/PPI node using the VG1_SAT.TSP and PCK00006.TPC SPICE kernels. Due to inaccuracies in Voyager SEDR, as well as changes in the values of some key parameters (e.g. Saturnian radius) the timing is improved for the SPICE generated data. However, since much of the original analysis was based upon the SEDR generated ephemeris, this data has been included as well. These data were previously released as the following PDS3 data set: VG1-S-POS-4-SUMM-L1COORDS-V1.0 (https://doi.org/10.17189/1519925)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":[],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1980-11-10","stop_date":"1980-11-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/bundle-vg1-sat-pos-l1coords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pos-l1coords-saturn/bundle-vg1-sat-pos-l1coords-1.0.xml","scraped_at":"2026-02-25T20:02:10.739075Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-jup::1.0","title":"Voyager 1 Planetary Radio Astronomy Receiver (PRA) Jupiter Data Bundle","description":"This bundle contains Voyager 1 Planetary Radio Astronomy Receiver (PRA) data recorded during the Jupiter encounter. These data were previously released as PDS3 data in VG1-J-PRA-3-RDR-LOWBAND-6SEC-V1.0 (https://doi.org/10.17189/1519898) and VG1-J-PRA-4-SUMM-BROWSE-48SEC-V1.0(https://doi.org/10.17189/1519899).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1979-01-06","stop_date":"1979-04-13","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/bundle-voyager1-pra-jup-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-jupiter/bundle-voyager1-pra-jup-1.0.xml","scraped_at":"2026-02-25T20:02:10.739084Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pra-lowband-6sec-sat::1.0","title":"Voyager 1 Saturn PRA Calibrated Hi-Res Low Frequency Receiver Band 6 Second Data Bundle","description":"This bundle contains Voyager 1 Radio Astronomy (PRA) data from the Saturn encounter. The data includes 6 second high resolution lowband radio mean power data. The data are provided for 70 instrument channels, covering 1326.0 to 1.2 kHz. These data were previously released as PDS3 data in VG1-S-PRA-3-RDR-LOWBAND-6SEC-V1.0 (https://doi.org/10.17189/1519926).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Planetary Radio Astronomy Receiver"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/bundle-vg1-pra-lowband-6sec-sat-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pra-lowband-6sec-saturn/bundle-vg1-pra-lowband-6sec-sat-1.0.xml","scraped_at":"2026-02-25T20:02:10.739088Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-sat-crs-d1-d2-192sec::1.0","title":"Voyager 1 Saturn CRS D1/D2 Averaged 192 Second Counting Rate Data Bundle","description":"This bundle contains the counting rate data from detectors D1 and D2 in the Cosmic Ray System (CRS) electron telescope (TET) on Voyager 1 during the Saturn encounter. The D1 detector nominally responds to electrons with kinetic energies above approximately 1 MeV, and the D2 detector, above approximately 2.5 MeV. These data were previously released as PDS data set PDS3 VG1-S-CRS-4-SUMM-D1/D2-192SEC-V1.0, https://doi.org/10.17189/1519906","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Saturn","Titan"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1980-11-11","stop_date":"1980-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/bundle-vg1-sat-crs-d1-d2-192sec-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-sat-crs-d1-d2-192sec/bundle-vg1-sat-crs-d1-d2-192sec-1.0.xml","scraped_at":"2026-02-25T20:02:10.739092Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-crs-jup-avg-flux::1.0","title":"Voyager 2 Jupiter CRS Derived Proton/Ion/Electron Flux Averaged Data Bundle","description":"This bundle contains Voyager 2 Cosmic Ray (CRS) data from the Jupiter encounter. The bundle includes 15 minute averages of the ion flux for particles between 0.42 and 8.3 MeV. Electron fluxes are also provided for particles above 0.5 MeV. These data were previously released as a PDS3 dataset VG2-J-CRS-5-SUMM-FLUX-V1.0, https://doi.org/10.17189/1519936","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 2"],"data_types":[],"start_date":"1979-07-03","stop_date":"1979-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/bundle-vg2-crs-jup-avg-flux-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-crs-jup-avg-flux/bundle-vg2-crs-jup-avg-flux-1.0.xml","scraped_at":"2026-02-25T20:02:10.739095Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-mag-jup::1.0","title":"Voyager 2 Magnetometer Jupiter Data Bundle","description":"This bundle contains Voyager 2 Magnetometer Jupiter data in resampled Heliographic (RTN) and System III coordinates at 1.92, 9.60 and 48.0 second sample rates. This data was previously released as PDS3 data in VG2-J-MAG-4-RDR-HGCOORDS-1.92SEC-V1.0 (https://doi.org/10.17189/1519942), VG2-J-MAG-4-RDR-HGCOORDS-9.60SEC-V1.0 (https://doi.org/10.17189/1519943), VG2-J-MAG-4-SUMM-HGCOORDS-48.0SEC-V1.0 (https://doi.org/10.17189/1519946), VG2-J-MAG-4-RDR-S3COORDS-1.92SEC-V1.1 (https://doi.org/10.17189/1519944), VG2-J-MAG-4-RDR-S3COORDS-9.60SEC-V1.1 (https://doi.org/10.17189/1519945) and VG2-J-MAG-4-SUMM-S3COORDS-48.0SEC-V1.1 (https://doi.org/10.17189/1519947).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Triaxial Fluxgate Magnetometer"],"instrument_hosts":["Voyager 2"],"data_types":[],"start_date":"1979-06-20","stop_date":"1979-08-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/bundle_vg2_mag_jupiter_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-mag-jupiter/bundle_vg2_mag_jupiter_v1.0.xml","scraped_at":"2026-02-25T20:02:10.739099Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup::1.1","title":"Voyager 2 Plasma Science Experiment (PLS) Jupiter Data Bundle","description":"This bundle contains Voyager 2 Plasma Science Experiment (PLS) data recorded during the Jupiter encounter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":[],"start_date":"1979-06-25","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/bundle_vg2_pls_jupiter_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/bundle_vg2_pls_jupiter_v1.1.xml","scraped_at":"2026-02-25T20:02:10.739103Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-prejup-derived::1.0","title":"Galileo Heavy Ion Counter Derived Ion Fluxes October 89 Solar Event Bundle","description":"This bundle includes values for the fluxes of heavy ions associated with an energetic particle event of solar origin. The values are derived from HIC data taken during the Interplanetary Cruise to Jupiter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar Wind"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1989-10-21","stop_date":"1989-10-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/bundle-galileo-hic-prejup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-prejup-derived/bundle-galileo-hic-prejup-derived.xml","scraped_at":"2026-02-25T20:02:10.739198Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-raw::1.0","title":"Cassini Orbiter Cassini Plasma Spectrometer (CAPS) Raw Data Bundle","description":"This bundle contains all of the raw data acquired by Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the Cassini mission.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Earth","Saturn","Jupiter","Solar Wind","Dione","Enceladus","Hyperion","Iapetus","Phoebe","Rhea","Tethys","Titan"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-04","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/bundle_cassini_caps_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-raw/bundle_cassini_caps_raw_1.0.xml","scraped_at":"2026-02-25T20:02:10.739202Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars-newcal::1.0","title":"InSight IFG Mars Bundle","description":"The InSight-ifg-mars-newcal bundle replaces all previous versions of the IFG Mars archive. Data from the entire landed mission have been reprocessed using a new (v07) data processing pipeline.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/bundle_insight_ifg_mars_newcal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars-newcal/bundle_insight_ifg_mars_newcal.xml","scraped_at":"2026-02-25T20:02:10.739239Z","keywords":["mag"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-rs-raw::1.0","title":"MESSENGER RSS Raw Data Bundle","description":"This bundle contains raw radio data that can be used to determine the position and velocity of the MESSENGER spacecraft during flybys of Venus and Mercury and during orbital operations around Mercury. The bundle also contains measurements of occultation times and calibrations for the effects of Earth's ionosphere and troposphere, meteorological conditions at stations of the NASA Deep Space Network, thruster activity, and changes in spacecraft antenna selection. The data were used to determine the gravity field and shape of Mercury and to improve solar system ephemerides. The bundle is a migration of data from the original PDS3 archive with minor improvements and corrections.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MErcury Surface, Space ENvironment, GEochemistry, and Ranging Mission"],"targets":["Mercury","Venus","Earth","MESSENGER"],"instruments":["DSN Instrumentation","DSN Media Calibration Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 35","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65","RSS"],"instrument_hosts":["NASA Deep Space Network","MESSENGER"],"data_types":[],"start_date":"2004-08-03","stop_date":"2015-05-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/bundle_mess_rss_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-rs-raw/bundle_mess_rss_raw_1.0.xml","scraped_at":"2026-02-25T20:02:10.739245Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrlcp-raw::2.0","title":"Radio JOVE Station K4LED SDRLCP Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station AJ4CO"],"data_types":[],"start_date":"2018-06-01","stop_date":"2021-10-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/bundle_radiojove_k4led_sdrlcp_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/bundle_radiojove_k4led_sdrlcp_raw_2.0.xml","scraped_at":"2026-02-25T20:02:10.739249Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-jup::1.0","title":"Galileo Trajectory Jupiter Bundle","description":"This bundle contains Galileo spacecraft trajectory data in three coordinate systems commonly used in the analysis of Jovian magnetospheric data. These include System III (1965.0), Jupiter Solar Equatorial (JSE) and Jupiter Solar Magnetospheric (JSM) coordinates from the Jupiter Orbital Operations phases of the Galileo Mission.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Amalthea","Callisto","Europa","Ganymede"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/bundle-galileo-traj-jup.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-jup/bundle-galileo-traj-jup.xml","scraped_at":"2026-02-25T20:02:10.739252Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-hnrao-fsx2raw::1.11","title":"Radio JOVE Station HNRAO FSX2 Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations made at the HNRAO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station AJ4CO"],"data_types":[],"start_date":"2016-12-01","stop_date":"2018-01-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/bundle_radiojove_hnrao_fsx2raw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-hnrao-fsx2raw/bundle_radiojove_hnrao_fsx2raw_1.11.xml","scraped_at":"2026-02-25T20:02:10.739256Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-prejup-calibrated::1.0","title":"Galileo Magnetometer Pre-Jupiter Calibrated Bundle","description":"This bundle contains calibrated data acquired by the Galileo Orbiter Magnetometer (MAG) prior to Jupiter Orbital Operations, including the Earth, Venus, Gaspra and Ida flybys as well as cruise.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar System","Solar Wind","Venus","Earth","Gaspra","Ida"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1989-12-31","stop_date":"1995-12-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-prejupiter-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-prejupiter-calibrated/bundle-galileo-mag-prejup-calibrated.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-prejupiter-calibrated/bundle-galileo-mag-prejup-calibrated.xml","scraped_at":"2026-02-25T20:02:10.739261Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-traj::1.0","title":"Ulysses Trajectory Bundle","description":"This collection contains two versions of spice trajectory data. The first version contains position and attitude data provided by Ulysses MAG team. The second version was generated at the PDS/PPI node (UCLA) which includes trajectory data and spacecraft local time.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/bundle-ulysses-traj-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-traj/bundle-ulysses-traj-1.0.xml","scraped_at":"2026-02-25T20:02:10.739264Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-raw::1.0","title":"MESSENGER MAG Raw Data Bundle","description":"This bundle contains the MESSENGER MAG raw observations, also known as EDRs. The MAG experiment is a miniature three-axis ring-core fluxgate magnetometer with low-noise electronics. There are eight MAG raw data products, including standard data, burst-mode data, and status and housekeeping data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["MAGNETOMETER"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/bundle-mess-mag-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-raw/bundle-mess-mag-raw-1.0.xml","scraped_at":"2026-02-25T20:02:10.739268Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-gas::1.0","title":"Ulysses Interstellar Neutral Gas Experiment Sky Maps Bundle","description":"This bundle contains Ulysses interstellar neutral gas (GAS) experiment sky maps of the count rates of interstellar helium particles (in the NG-mode) or from celestial UV-intensities (UV-mode).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["GAS Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1991-07-22","stop_date":"1991-07-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/bundle-ulysses-gas-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-gas/bundle-ulysses-gas-1.0.xml","scraped_at":"2026-02-25T20:02:10.739271Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-fsx11raw::2.0","title":"Radio JOVE Station K4LED FSX11 Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station K4LED"],"data_types":[],"start_date":"2018-06-01","stop_date":"2021-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/bundle_radiojove_k4led_fsx11_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-fsx11raw/bundle_radiojove_k4led_fsx11_raw_2.0.xml","scraped_at":"2026-02-25T20:02:10.739274Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-ephem::1.0","title":"PVO Spacecraft VSO Ephemeris and Spacecraft Orientation Data Bundle","description":"This bundle contains PVO Spacecraft VSO Ephemeris and Spacecraft Orientation data. This bundle includes Pioneer Venus Orbiter (PVO) spacecraft position and orientation data in Venus Solar Orbital (VSO) coordinates This data was previously released as PDS3 data in PVO-V-POS-5--VSOCOORDS-12SEC-V1.0 (https://doi.org/10.17189/1519830).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":[],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/bundle-pvo-ephem-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-ephem/bundle-pvo-ephem-1.0.xml","scraped_at":"2026-02-25T20:02:10.739278Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oefd-cal::1.0","title":"PVO Electric Field Detector (OEFD) Data Bundle","description":"This bundle contains PVO Electric Field Detector (OEFD) data. The data provided include wave electric field amplitudes measured at four different frequencies by the Electric Field Detector and data that was averaged over 24 second intervals on 12 second centers. This data was previously released as PDS3 data in PVO-V-OEFD-3--EFIELD-HIRES-V1.0 (https://doi.org/10.17189/1519807), PVO-V-OEFD-4--EFIELD-24SEC-V1.0 (https://doi.org/10.17189/1519808).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/bundle-pvo-oefd-cal-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oefd-cal/bundle-pvo-oefd-cal-1.0.xml","scraped_at":"2026-02-25T20:02:10.739282Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-prejup-cal::1.0","title":"Galileo Plasma Science Experiment Pre-Jupiter Calibrated Bundle","description":"This bundle includes a listing of particle energy spectra from the Galileo Plasma Instrument (PLS) during the Ida, Gaspra, Earth and Venus Encounters. Detector reponses from ion detetors 2P, 4P, and 6P, and from electron detector 4E are available through the PDS as separate files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar Wind","Earth","Venus","Gaspra","Ida"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1990-11-08","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/bundle-galileo-pls-prejup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-prejup-cal/bundle-galileo-pls-prejup-cal.xml","scraped_at":"2026-02-25T20:02:10.739286Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-traj-prejup::1.0","title":"Galileo Trajectory Pre-Jupiter Bundle","description":"This bundle contains the Galileo spacecraft trajectory data during the Pre-Jupiter flyby's. The data have been derived from SPICE kernels at a 1 minute sample rate.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Earth","Venus","Solar Wind","Gaspra","Ida"],"instruments":[],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/bundle-galileo-traj-prejup.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-traj-prejup/bundle-galileo-traj-prejup.xml","scraped_at":"2026-02-25T20:02:10.739290Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-bundle::1.0","title":"Pioneer Venus Orbiter Mission Bundle","description":"This bundle contains the Pioneer Venus Orbiter Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)","Orbiter Electron Temperature Probe (OETP)","Orbiter Ion Mass Spectrometer (OIMS)","Orbiter Neutral Mass Spectrometer (ONMS)","Orbiter Retarding Potential Analyzer (ORPA)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/bundle-pvo.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-bundle/bundle-pvo.xml","scraped_at":"2026-02-25T20:02:10.739295Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-fitted-parameters::1.0","title":"Cassini CAPS Fitted Parameters Bundle","description":"This data set consists of all of the fits (both good and bad) that were found by Dr. Robert J. Wilson during the NASA Cassini Data Analysis Program grant (NNX12AG90G). The Cassini CAPS plasma data used in the forward model plasma parameter calculations given here came from volume CO-E/J/S/SW-CAPS-2-UNCALIBRATED-V1.0 in the Planetary Data System (PDS).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini_Huygens"],"targets":["Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2012-06-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/bundle-cassini-caps-fitted-parameters-v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-fitted-parameters/bundle-cassini-caps-fitted-parameters-v1.0.xml","scraped_at":"2026-02-25T20:02:10.739298Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-calibrated::1.0","title":"Galileo Jupiter Heavy Ion Counter Survey Energetic Ion Count Rate Calibrated Bundle","description":"This bundle provides energetic (MeV) ion count rates and events measured by the Heavy Ion Counter (HIC) instrument on the Galileo spacecraft. The data are derived from the raw real-time science (RTS) data and high time resolution raw data that were recorded to tape and then played back later in the orbit. There are two basic types of data files associated with the full-rate reduced data: Detector Count Rates and Events (Pulse Heights).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/bundle-galileo-hic-jup-calibrated.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-calibrated/bundle-galileo-hic-jup-calibrated.xml","scraped_at":"2026-02-25T20:02:10.739302Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrrcp-raw::2.0","title":"Radio JOVE Station K4LED SDRRCP Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations made at the K4LED Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station K4LED"],"data_types":[],"start_date":"2018-06-01","stop_date":"2022-09-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/bundle_radiojove_k4led_sdrrcp_raw_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/bundle_radiojove_k4led_sdrrcp_raw_2.0.xml","scraped_at":"2026-02-25T20:02:10.739306Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi::1.0","title":"Cassini MIMI Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) mission documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer","MIMI Ion and Neutral Camera","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/bundle_cassini_mimi_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi/bundle_cassini_mimi_1.0.xml","scraped_at":"2026-02-25T20:02:10.739311Z","keywords":["MIMI"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-cal::1.0","title":"Cassini MIMI LEMMS Calibrated Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy Magnetospheric Measurement System (LEMMS) accumulation rates, pulse height analysis and priority accumulation rate data for 2004-01-01T00:00:00.000Z to 2017-09-16T00:00:00.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-03","stop_date":"2017-09-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/bundle_cassini_mimi_lemms_cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-cal/bundle_cassini_mimi_lemms_cal_1.0.xml","scraped_at":"2026-02-25T20:02:10.739317Z","keywords":["LEMMS","MIMI"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ssd-jup-derived::1.0","title":"Galileo Jupiter Star Scanner Derived Bundle","description":"This bundle contains measurements of energetic electron flux derived data from the attitude control system star scanner in the Jovian environment.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io Torus","Io"],"instruments":["Star Scanner"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/bundle-galileo-ssd-jup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ssd-jup-derived/bundle-galileo-ssd-jup-derived.xml","scraped_at":"2026-02-25T20:02:10.739321Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated::1.1","title":"Galileo Orbiter at Jupiter Magnetometer High Resolution Calibrated Bundle","description":"This bundle contains magnetic field vectors acquired by the Galileo magnetometer (MAG). This data was previously released as PDS3 data in the GO-J-MAG-3-RDR-HIGHRES-V1.0 (https://doi.org/10.17189/1519667) and GO-J-MAG-3-RDR-MAGSPHERIC-SURVEY-V1.0 (https://doi.org/10.17189/1519668) data sets.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io","Io Torus","Solar Wind"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/bundle-galileo-mag-jup-calibrated.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/bundle-galileo-mag-jup-calibrated.xml","scraped_at":"2026-02-25T20:02:10.739349Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-sce-derived::1.0","title":"Ulysses SCE-Solar Corona Experiment Derived Bundle","description":"This bundle contains the Ulysses Solar Corona Experient derived data. These data contain 10 minute averaged ranging data and high resolution doppler data from the Ulysses spacecraft occulation by the Io Plasma Torus (IPT) on 1992-02-05 and 1992-02-09.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Solar Corona Experiment for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1992-02-05","stop_date":"1992-02-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/bundle-ulysses-sce-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-sce-derived/bundle-ulysses-sce-1.0.xml","scraped_at":"2026-02-25T20:02:10.739357Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-calibrated::1.0","title":"Lunar Prospector Electron Reflectometer (ER) Calibrated Bundle","description":"This bundle contains the 3-D, low and high resolution electron reflection data provided by the Electron Reflectometer on the Lunar Prospector's Primary and Extended Mission. The data cover the time period from 1998-01-16T00:00:24 to 1999-07-29T18:09:33.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer for LP"],"instrument_hosts":["Lunar Prospector"],"data_types":[],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/bundle-lp-er-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-calibrated/bundle-lp-er-calibrated-1.0.xml","scraped_at":"2026-02-25T20:02:10.739360Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-calibrated::1.0","title":"Lunar Prospector Magnetometer Calibrated Bundle","description":"This bundle contains calibrated magnetometer data that was acquired from the Lunar Magnetic Field in Lunar Prospectors' Primary and Extended Missions. The data covers the time period from 1998-01-16T00:00:02.5 to 1999-07-29T15:31:42.5.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer for LP"],"instrument_hosts":["Lunar Prospector"],"data_types":[],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/bundle-lp-mag-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-calibrated/bundle-lp-mag-calibrated-1.0.xml","scraped_at":"2026-02-25T20:02:10.739364Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-urap::1.0","title":"Ulysses URAP Bundle","description":"This bundle contains Ulysses Jupiter Cruise, Encounter and First Solar Orbit electric and magnetic field data. This data is gather in 10 minute periods and one 144 second periods all gather from the PFR, RAR and WFA instuments","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["URAP-Unified Radio and Plasma Wave Experiment"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1991-10-27","stop_date":"1992-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/bundle-ulysses-urap-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-urap/bundle-ulysses-urap-1.0.xml","scraped_at":"2026-02-25T20:02:10.739368Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-mag::1.0","title":"Ulysses Vector Helium/Fluxgate Magnetometer Bundle","description":"This bundle consists of Ulysses Jupiter Encounter Magnetometer data. These data include 1 minute averages of the magnetic field components and magnitude measured by either the VHM (Vector Helium Magnetometer) or the FGM (Fluxgate Magnetometer), for 1992-01-25T00:00:30Z to 1992-02-17T23:59:30Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Vector Helium/Fluxgate Magnetometers for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/bundle-ulysses-mag-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-mag/bundle-ulysses-mag-1.0.xml","scraped_at":"2026-02-25T20:02:10.739371Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-raw::1.0","title":"Galileo Photopolarimeter Radiometer Pre-Jupiter Raw Bundle","description":"This Bundle includes raw (R_EDR) data for the Galileo Orbiter PPR instrument for the period corresponding to the Galileo Pre-Jupiter observations between December 1989 and August 1993.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar Wind","Ida","Gaspra","Earth","Venus"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1989-12-27","stop_date":"1993-08-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/bundle-galileo-ppr-prejup-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-raw/bundle-galileo-ppr-prejup-raw.xml","scraped_at":"2026-02-25T20:02:10.739376Z","keywords":["Earth","Venus","Moon","Asteroid"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-hiscale::1.0","title":"Ulysses HISCALE Bundle","description":"This bundle consists of Ulysses Jupiter Encounter HISCALE data. These data include 1 hour averaged inbound cruise data (1991-12-31 to 1992-02-01), and 15 minute averaged encounter data (1992-02-02 to 1992-02-16).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at Low Energies"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1991-12-31","stop_date":"1992-02-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/bundle-ulysses-hiscale-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-hiscale/bundle-ulysses-hiscale-1.0.xml","scraped_at":"2026-02-25T20:02:10.739380Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-cruise::1.1","title":"InSight IFG Cruise Bundle","description":"This bundle contains InSight IFG Cruise data and associated products","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["InSight Mars Lander Mission"],"targets":["Solar Wind"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight Mars Lander Spacecraft"],"data_types":[],"start_date":"2018-07-15","stop_date":"2018-08-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/bundle_insight_ifg_cruise_1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/bundle_insight_ifg_cruise_1.1.xml","scraped_at":"2026-02-25T20:02:10.739384Z","keywords":["mag"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-bundle::1.0","title":"Lunar Prospector Mission Bundle","description":"This bundle contains the Lunar Prospector Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Alpha Particle Spectometer for LP","Engineering for LP","Electron Reflectometer for LP","Gamma Ray Spectometer for LP","Magnetometer for LP","Neutron Spectometer for LP","Radio Science Subsystem for LP"],"instrument_hosts":["Lunar Prospector"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/bundle-lp.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lp-bundle/bundle-lp.xml","scraped_at":"2026-02-25T20:02:10.739501Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-raw::1.0","title":"Cassini MIMI CHEMS Raw Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy Mass Spectrometer (CHEMS) accumulation, pulse height analysis and science rate data for 1999-01-03T00:00:00Z to 2017-09-15T23:59:59Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/bundle_cassini_mimi_chems_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-raw/bundle_cassini_mimi_chems_raw_1.0.xml","scraped_at":"2026-02-25T20:02:10.739506Z","keywords":["CHEMS","MIMI"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-er-derived::1.0","title":"Lunar Prospector Electron Reflectometer (ER) Derived Bundle","description":"This bundle contains derived electron reflection data that was acquired from the Electron Reflectometer during the Lunar Prospector's Primary and Extended Mission. The data covers the time period from 1998-06-08T00:27:41 to 1999-06-27T20:59:06.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer for LP"],"instrument_hosts":["Lunar Prospector"],"data_types":[],"start_date":"1998-06-08","stop_date":"1999-06-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/bundle-lp-er-derived-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lp-er-derived/bundle-lp-er-derived-1.0.xml","scraped_at":"2026-02-25T20:02:10.739511Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-raw::1.0","title":"Cassini Magnetometer Raw Bundle","description":"This bundle contains Cassini magnetometer raw magnetic field data for the entire mission. The bundle includes magnetic-field data from the Fluxgate Magnetometer and the Vector Helium Magnetomer in Vector mode. Data are received in science and housekeeping rates. Additional collections, such as spacecraft attitude, analog, command validation, configuration image, error counter, user-defined engineering data, browse plots, and calibration, are also included.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Earth","Venus","Saturn","Solar Wind","Jupiter","Phoebe","Titan","Dione","Enceladus","Hyperion","Iapetus","Rhea","Tethys"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1997-10-28","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/bundle-cassini-mag-raw-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-raw/bundle-cassini-mag-raw-1.0.xml","scraped_at":"2026-02-25T20:02:10.739515Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-raw::1.0","title":"Cassini MIMI INCA Raw Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral Camera (INCA) accumulation, images and pulse height analysis data for 1999-01-03T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/bundle_cassini_mimi_inca_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-raw/bundle_cassini_mimi_inca_raw_1.0.xml","scraped_at":"2026-02-25T20:02:10.739520Z","keywords":["INCA","MIMI"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-cospin::1.0","title":"Ulysses Jupiter Encounter Cospin Bundle","description":"This bundle contains data submitted to the Planetary Data System (PDS) by the Ulysses COSPIN investigators, for the Ulysses Jupiter Encounter, 1992-01-25 to 1992-02-17 (days 25-48 inclusive)","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Cospin-Anisotropy Telescope for ULY","Cospin-High Energy Telescope for ULY","Cospin-High Flux Telescope for ULY","Cospin-Kiel Electron Telescope for ULY","Cospin-Low Energy Telescope for ULY"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1992-01-24","stop_date":"1992-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/bundle-ulysses-cospin-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-cospin/bundle-ulysses-cospin-1.0.xml","scraped_at":"2026-02-25T20:02:10.739529Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-epac::1.0","title":"Ulysses EPAC Bundle","description":"This bundle contains Ulysses Energetic Particle Composition Experiment (EPAC) 1 hour averaged onmi-directional, sectored, electron and proton flux data as well as 1 day pulse height analysis data. All data is from the Ulysses Jupiter Encounter 1992-Jan-25 to 1992-Feb-29.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["EPAC-Energetic Particle Composition Instrument"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/bundle-ulysses-epac-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-epac/bundle-ulysses-epac-1.0.xml","scraped_at":"2026-02-25T20:02:10.739533Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-onms::1.1","title":"Pioneer Venus Orbiter (PVO) Neutral Mass Spectrometer (ONMS) Data Bundle","description":"This bundle includes the following Pioneer Venus Orbiter (PVO) Neutral Mass Spectrometer (ONMS) collections: Ion Max Count Rate Data, Neutral Density 12 Sec Data, Neutral Density High-Res. Data, Superthermal Ion Location Data, Superthermal Oxygen 12 Second Data, Superthermal Oxygen High-Res. Data, and Thermal Ion 12 second Data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Orbiter Neutral Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-09-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/bundle-pvo-onms-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-onms/bundle-pvo-onms-1.1.xml","scraped_at":"2026-02-25T20:02:10.739537Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-aj4co-fs200::2.0","title":"Radio JOVE Station AJ4CO FS200 Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations made at the AJ4CO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station AJ4CO"],"data_types":[],"start_date":"2014-01-01","stop_date":"2016-06-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/bundle_radiojove_aj4co_fs200_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-fs200/bundle_radiojove_aj4co_fs200_2.0.xml","scraped_at":"2026-02-25T20:02:10.739540Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oims::1.1","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Data Bundle","description":"This bundle includes Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer High-Resolution and Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Low-Resolution data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/bundle-pvo-oims-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/bundle-pvo-oims-1.1.xml","scraped_at":"2026-02-25T20:02:10.739544Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-rss-jup-der::1.0","title":"Galileo Jupiter Radio Science Subsystem Derived Bundle","description":"The Galileo Jupiter Radio Science Subsystem Derived Bundle contains a small number of electron density profiles derived from radio occultation data collected while Galileo was in Jupiter orbit. Each profile is an ASCII table giving electron density as a function of radius (and altitude). This bundle contains Jupiter profiles from 1995-1996 and Io profiles from 1997.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Io","Callisto","Europa"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1995-12-08","stop_date":"1997-08-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/bundle-go-rss-jup-der.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-rss-jup-der/bundle-go-rss-jup-der.xml","scraped_at":"2026-02-25T20:02:10.739548Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:juno_waves_electron-density::1.0","title":"Juno Waves Electron Densities from Characteristic Plasma Wave Frequencies","description":"This bundle contains electron density datasets from Waves team members throughout the Juno Mission. Measurements include, but are not limited to, Fpe, Flhr, Fuh, Fce.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["JUPITER","IO","EUROPA","GANYMEDE"],"instruments":["Waves"],"instrument_hosts":["Juno"],"data_types":[],"start_date":"2016-08-27","stop_date":"2024-03-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/juno-waves-electron-density/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/juno-waves-electron-density/bundle_v1.0.lblx","source_url":"https://pds-ppi.igpp.ucla.edu/data/juno-waves-electron-density/bundle_v1.0.lblx","scraped_at":"2026-02-25T20:02:10.739553Z","keywords":["University of Iowa"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-lemms-raw::1.0","title":"Cassini MIMI LEMMS Raw Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Low Energy Magnetospheric Measurement System (LEMMS) accumulation rates, fine accumulation rates and pulse height analysis data for 1999-01-03T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Solar Wind","Earth","Venus","Jupiter","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Low Energy Magnetospheric Measurement Sensor for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-03","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/bundle_cassini_mimi_lemms_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-lemms-raw/bundle_cassini_mimi_lemms_raw_1.0.xml","scraped_at":"2026-02-25T20:02:10.739558Z","keywords":["LEMMS","MIMI"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:venera-roe-derived::1.0","title":"Venera 15 and 16 ROE Derived Ionospheric Electron Density Profiles Bundle","description":"This bundle contains ionospheric electron density profiles derived from the Venera 15 and 16 radio occultation experiment. These data cover 1983-10-12 to 1983-11-01 at various occultation locations.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venera 15 and 16"],"targets":["Venus"],"instruments":["Radio Occultation Experiment (ROE)","Radio Occultation Experiment (ROE)"],"instrument_hosts":["Venera 15","Venera 16"],"data_types":[],"start_date":"1983-10-12","stop_date":"1983-11-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/bundle_venera_roe_derived_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/venera-roe-derived/bundle_venera_roe_derived_1.0.xml","scraped_at":"2026-02-25T20:02:10.739694Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.swea.calibrated::4.3","title":"MAVEN SWEA Calibrated Data Bundle","description":"This bundle contains fully calibrated electron energy/angle (3D) distributions, pitch angle distributions, and omni-directional energy spectra. Tables of sensitivity and energy/angle maps included in files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Solar Wind","Mars"],"instruments":["Solar Wind Electron Analyzer"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-03-19","stop_date":"2024-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swea-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swea-calibrated/bundle_maven_swea_calibrated_4.3.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swea-calibrated/bundle_maven_swea_calibrated_4.3.xml","scraped_at":"2026-02-25T20:02:10.739707Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.insitu.calibrated::37.0","title":"MAVEN Insitu Key Parameters Data Bundle","description":"The insitu.calibrated level 2 science.data bundle contains selected fully calibrated (L2) data from the Particles and Fields package and NGIMS, together with ephemeris information. These data are in physical units and are averaged/sampled at a uniform cadence. In situ instrument data is derived directly from Level 2 data. Ephemeris information is derived using SPICE libraries and kernels provided by MAVEN/NAV team and Lockheed-Martin.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MAVEN"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"2014-03-18","stop_date":"2024-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/bundle_maven_insitu_key_parameter_37.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/bundle_maven_insitu_key_parameter_37.0.xml","scraped_at":"2026-02-25T20:02:10.739711Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw::1.2","title":"MAVEN LPW Bundle","description":"This bundle contains products associates with the PDS MAVEN LPW data archive.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":["Langmuir Probe and Waves Instrument"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw/bundle_maven_lpw_1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw/bundle_maven_lpw_1.2.xml","scraped_at":"2026-02-25T20:02:10.739714Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw.calibrated::8.0","title":"MAVEN LPW Calibrated Data Bundle","description":"This bundle contains fully calibrated, science quality data produced by the LPW instrument. The data include spacecraft potential, electric field waveforms and wave power. The data have been provided by the LPW team in CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Langmuir Probe and Waves Instrument"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-10-11","stop_date":"2024-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-calibrated/bundle_maven_lpw_calibrated_8.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-calibrated/bundle_maven_lpw_calibrated_8.0.xml","scraped_at":"2026-02-25T20:02:10.739717Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw.derived::6.3","title":"MAVEN LPW Derived Data Bundle","description":"This bundle contains data which have been derived from other data products or determined by fits to other data. These are science quality data produced by the LPW instrument. The data include densities, temperatures, and Poynting flux. The data have been provided by the LPW team in CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Langmuir Probe and Waves Instrument"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-10-11","stop_date":"2024-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-derived/bundle_maven_lpw_derived_6.3.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-derived/bundle_maven_lpw_derived_6.3.xml","scraped_at":"2026-02-25T20:02:10.739721Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.static.c::4.22","title":"MAVEN STATIC Calibrated Data Bundle","description":"This bundle contains fully calibrated data in physical units, consisting of Coarse and Fine resolution 3d distributions and energy spectra and moments from onboard computations.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Supra-Thermal and Thermal Ion Composition"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-10-13","stop_date":"2024-11-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-static-c/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-static-c/bundle_maven_static_calibrated_4.22.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-static-c/bundle_maven_static_calibrated_4.22.xml","scraped_at":"2026-02-25T20:02:10.739726Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.swia.calibrated::2.11","title":"MAVEN SWIA Calibrated Data Bundle","description":"This bundle contains fully calibrated MAVEN SWIA data, including ion velocity distributions, energy spectra, and density, temperature, and velocity moments from onboard calculations. Tables of sensitivity and energy/angle maps are included in files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Solar Wind","Mars"],"instruments":["Solar Wind Ion Analyzer"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-03-19","stop_date":"2024-11-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swia-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swia-calibrated/bundle_maven_swia_calibrated_2.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-swia-calibrated/bundle_maven_swia_calibrated_2.11.xml","scraped_at":"2026-02-25T20:02:10.739730Z","keywords":["MAVEN SWIA Calibrated Data"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.sep.calibrated::2.21","title":"MAVEN SEP Calibrated Data Bundle","description":"The maven.sep.calibrated Level 2 Science Data Bundle contains fully calibrated SEP data, as well as the raw count data from which they are derived, and ancillary ephemeris data. The calibrated data are in physical units, and include electron and ion spectra in the 4 look directions (2 look directions for each sensor/file).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Solar Energetic Particle Instrument"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-09-20","stop_date":"2024-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-sep-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-sep-calibrated/bundle_maven_sep_calibrated_2.21.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-sep-calibrated/bundle_maven_sep_calibrated_2.21.xml","scraped_at":"2026-02-25T20:02:10.739734Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.raw::1.31","title":"MAVEN ROSE Raw Data Bundle","description":"This bundle contains raw data concerning the radio signal transmitted from Earth and the radio signal received at Earth, calibration collections containing a prediction for the frequency of the radio signal received at Earth and information on the effects of Earth's ionosphere, troposphere, and weather, and a browse collection contains plots that provide an overview of received data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Radio Science Instrument"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2016-02-19","stop_date":"2024-12-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/bundle_maven_rose_raw_1.31.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/bundle_maven_rose_raw_1.31.xml","scraped_at":"2026-02-25T20:02:10.739737Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.lpw.raw::4.3","title":"MAVEN LPW Raw Data Bundle","description":"This bundle raw contains uncompressed, uncalibrated data from the individual LPW telemetry packets.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Langmuir Probe and Waves Instrument"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-10-11","stop_date":"2024-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-raw/bundle_maven_lpw_raw_4.3.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-lpw-raw/bundle_maven_lpw_raw_4.3.xml","scraped_at":"2026-02-25T20:02:10.739741Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.derived::1.32","title":"MAVEN ROSE Derived Data Bundle","description":"This bundle contains electron density profiles derived from frequency residuals during occultations.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Radio Science Instrument"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2016-07-05","stop_date":"2024-09-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-derived/bundle_maven_rose_derived_1.32.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-derived/bundle_maven_rose_derived_1.32.xml","scraped_at":"2026-02-25T20:02:10.739744Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv.modelled::22.6","title":"MAVEN EUV Modelled Data Bundle","description":"This bundle contains solar irradiance spectra in 1-nm bins from 0-190 nm. The spectra are generated based upon the Flare Irradiance Spectra Model - Mars (FISM-M) using the EUV calibrated band irrandiance and interpolated Earth-based solar indices and measurements as proxies. The data were provided by the MAVEN EUV team in CDF format.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Extreme Ultraviolet Monitor"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-10-19","stop_date":"2024-11-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-modelled/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-modelled/bundle_maven_euv_modelled_22.6.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-modelled/bundle_maven_euv_modelled_22.6.xml","scraped_at":"2026-02-25T20:02:10.739748Z","keywords":["MAVEN EUV Modelled"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv::1.4","title":"MAVEN EUV Bundle","description":"This bundle contains MAVEN EUV Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":["Extreme Ultraviolet Monitor"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv/bundle_maven_euv_1.4.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv/bundle_maven_euv_1.4.xml","scraped_at":"2026-02-25T20:02:10.739752Z","keywords":["MAVEN EUV"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater::1.8","title":"LRO CRaTER Data Bundle","description":"This bundle contains calibrated and derived data obtained from the CRaTER instrument aboard the Lunar Reconnaissance Orbiter spacecraft.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Reconnaissance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["LRO"],"data_types":[],"start_date":"2009-06-29","stop_date":"2024-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/bundle_lro_crater_v1.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/bundle_lro_crater_v1.8.xml","scraped_at":"2026-02-25T20:02:10.739777Z","keywords":["Lunar Reconnaissance Orbiter","LRO","Cosmic Ray Telescope for the Effects of Radiation","CRaTER"],"processing_level":"Raw | Calibrated | Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.mag.calibrated::2.34","title":"MAVEN MAG Calibrated Data Bundle","description":"This bundle contains MAG supplied ASCII files containing a time series of magnetic-field vectors in geophysical units (nanotesla, nT) that have been corrected for instrumental and spacecraft effects (calibrated). In addition, these data have been transformed into physically meaningful coordinate systems. MAG data products are generated for all mission phases.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Magnetometer"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2014-09-21","stop_date":"2025-02-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-mag-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-mag-calibrated/bundle_maven_mag_calibrated_2.34.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-mag-calibrated/bundle_maven_mag_calibrated_2.34.xml","scraped_at":"2026-02-25T20:02:10.739830Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-uv::1.0","title":"Pioneer 10 Ultraviolet Photometer Bundle","description":"This bundle contains data taken by the Pioneer 10 fields and particles Ultraviolet Photometer (UV) instrument including Solar Wind and the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1996-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/bundle-p10-uv.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/p10-uv/bundle-p10-uv.xml","scraped_at":"2026-02-25T20:02:10.739855Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-crt-cal::1.0","title":"Pioneer 10 Cosmic Ray Telescope Calibrated Bundle","description":"This bundle contains Cosmic-ray telescope (CRT) data from the Jupiter encounter period. The Bundle provides both 15.0 minute flux averages from 18 electron, proton, heavy ion channels and full six-hour average interplanetary cruise count rate and flux data","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter","Solar Wind"],"instruments":["Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1994-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/bundle-p10-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/p10-crt-cal/bundle-p10-crt-cal.xml","scraped_at":"2026-02-25T20:02:10.739859Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-jup-cal::1.0","title":"Pioneer 10 Jupiter Calibrated Helium Vector Magnetometer Bundle","description":"This bundle contains data taken by the Pioneer 10 fields and particles instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 10"],"data_types":[],"start_date":"1973-11-03","stop_date":"1973-12-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/bundle-p10-hvm-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-jup-cal/bundle-p10-hvm-jup-cal.xml","scraped_at":"2026-02-25T20:02:10.739863Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p10-hvm-pa-crt-cal::1.0","title":"Pioneer 10 HVM PA CRT Calibrated Bundle","description":"This bundle contains merged Pioneer 10 data taken by the Helium Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) and Cosmic Ray (CRT) instruments from the solar wind and Jupiter encounter period.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 10"],"targets":["Solar Wind","Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 10"],"data_types":[],"start_date":"1972-03-03","stop_date":"1995-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/bundle-p10-hvm-pa-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/p10-hvm-pa-crt-cal/bundle-p10-hvm-pa-crt-cal.xml","scraped_at":"2026-02-25T20:02:10.739866Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-jup-cal::1.0","title":"Pioneer 11 Calibrated Helium Vector Magnetometer at Jupiter Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles instruments from the Jupiter flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Jupiter"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":[],"start_date":"1974-11-24","stop_date":"1974-12-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/bundle-p11-hvm-jup-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-jup-cal/bundle-p11-hvm-jup-cal.xml","scraped_at":"2026-02-25T20:02:10.739870Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-pa-crt-cal::1.0","title":"Pioneer 11 HVM PA CRT Calibrated Bundle","description":"This bundle contains merged Pioneer 11 data taken by the Helium Vector Magnetometer (HVM), Quadraspherical Plasma Analyzer (PA) and Cosmic Ray (CRT) instruments from the solar wind, Jupiter and Saturn encounter period.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Helium Vector Magnetometer (HVM)","Quadraspherical Plasma Analyzer (PA)","Cosmic Ray Telescope (CRT)"],"instrument_hosts":["Pioneer 11"],"data_types":[],"start_date":"1973-04-06","stop_date":"1992-08-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/bundle-p11-hvm-pa-crt-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-pa-crt-cal/bundle-p11-hvm-pa-crt-cal.xml","scraped_at":"2026-02-25T20:02:10.739875Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.sa::2.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Data Bundle","description":"This bundle contains the Voyager 1 Plasma Wave Spectrometer spectrum analyzer data from the entire mission in calibrated CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1977-09-05","stop_date":"2024-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/bundle_data_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-1-pws-sa/bundle_data_voyager-1.xml","scraped_at":"2026-02-25T20:02:10.739878Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.sa::2.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Data Bundle","description":"This bundle contains the Voyager 2 Plasma Wave Spectrometer spectrum analyzer data from the entire mission in calibrated CDF files","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn","Uranus","Neptune"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":[],"start_date":"1977-08-20","stop_date":"2024-09-23","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/bundle_data_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager-2-pws-sa/bundle_data_voyager-2.xml","scraped_at":"2026-02-25T20:02:10.739882Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.anc::2.21","title":"MAVEN Ancillary Bundle","description":"This bundle contains products associated with the PDS MAVEN Ancillary data archive.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Imaging Ultraviolet Spectrograph","Neutral Gas and Ion Mass Spectrometer","Extreme Ultraviolet Monitor","Langmuir Probe and Waves Instrument","Magnetometer","Solar Energetic Particle Instrument","Supra-Thermal and Thermal Ion Composition","Solar Wind Electron Analyzer","Solar Wind Ion Analyzer"],"instrument_hosts":["Mars Atmosphere and Volatile Evolution (MAVEN)"],"data_types":[],"start_date":"2013-11-14","stop_date":"2025-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-anc/bundle_maven_anc_2.21.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-anc/bundle_maven_anc_2.21.xml","scraped_at":"2026-02-25T20:02:10.739891Z","keywords":["DRF"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv.calibrated::25.0","title":"MAVEN EUV Calibrated Data Bundle","description":"This bundle contains fully calibrated MAVEN EUV solar irradiances in three instrument bandpasses. Provided by the EUV team in CDF files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Extreme Ultraviolet Monitor"],"instrument_hosts":["Mars Atmosphere and Volatile Evolution (MAVEN)"],"data_types":[],"start_date":"2014-10-18","stop_date":"2025-02-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-calibrated/bundle_maven_euv_calibrated_25.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-calibrated/bundle_maven_euv_calibrated_25.0.xml","scraped_at":"2026-02-25T20:02:10.739895Z","keywords":["MAVEN EUV Calibrated"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.euv.derived::2.0","title":"MAVEN EUV Derived Data Bundle","description":"This bundle contains derived MAVEN EUV atmospheric number density (in cm-3) and temperature (in K) measured at the tangent point of the MAVEN-Sun line and Mars atmosphere. Provided by the EUV team in csv files.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN"],"targets":["Mars"],"instruments":["Extreme Ultraviolet Monitor"],"instrument_hosts":["Mars Atmosphere and Volatile Evolution (MAVEN)"],"data_types":[],"start_date":"2014-11-17","stop_date":"2025-02-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-derived/bundle_maven_euv_derived_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-euv-derived/bundle_maven_euv_derived_2.0.xml","scraped_at":"2026-02-25T20:02:10.739899Z","keywords":["MAVEN EUV Derived"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mager-derived::1.0","title":"Lunar Prospector MAG/ER Derived Bundle","description":"This bundle contains derived spacecraft trajectory and moon position data acquired from the Lunar Prospector ELectron Reflectometer and Magnetometer during the Primary and Extended Mission. The data covers the time period from 1998-01-16T00:00 to 1999-07-29T23:59.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":[],"start_date":"1998-01-16","stop_date":"1999-07-29","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/bundle-lp-mager-derived-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mager-derived/bundle-lp-mager-derived-1.0.xml","scraped_at":"2026-02-25T20:02:10.740537Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clps_to_2ab_lets::1.2","title":"Linear Energy Transfer Spectrometer (LETS) data bundle","description":"This bundle contains the data associated with the Commercial Lunar Payload System's Peregrine Mission 1 Linear Energy Transfer Spectrometer.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["CLPS Task Order 2AB"],"targets":["Moon"],"instruments":["CLPS Task Order 2AB Linear Energy Transfer Spectrometer (LETS)"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":[],"start_date":"2024-01-08","stop_date":"2024-01-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/bundle_clps_to_2ab_lets.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/clps_to_2ab_lets/bundle_clps_to_2ab_lets.xml","scraped_at":"2026-02-25T20:02:10.740545Z","keywords":["Radiation","Charged Particle Detector","Linear Energy Transfer","Absorbed Dose","Particle Counts","Particle Flux","Cislunar Radiation Environment"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-cal::1.0","title":"PVO Magnetomer Data Bundle","description":"This bundle contains PVO magnetometer data. The data are provided in high resolution spacecraft coordinates, high resolution spacecraft coordinates averaged over 24 seconds on 12 second centers, high resolution spacecraft coordinates and high resolution spacecraft coordinates averaged over 24 seconds acquired after the multiplexer anomaly that allowed data from only a single sensor (P-sensor) to be returned to the ground. It also includes instrument status information.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/bundle-pvo-omag-cal-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-cal/bundle-pvo-omag-cal-1.0.xml","scraped_at":"2026-02-25T20:02:10.740550Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-hvm-sat-cal::1.0","title":"Pioneer 11 Calibrated Helium Vector Magnetometer Saturn Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles instruments from the Saturn flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Saturn"],"instruments":["Helium Vector Magnetometer (HVM)"],"instrument_hosts":["Pioneer 11"],"data_types":[],"start_date":"1979-08-30","stop_date":"1979-09-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/bundle-p11-hvm-sat-cal.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/p11-hvm-sat-cal/bundle-p11-hvm-sat-cal.xml","scraped_at":"2026-02-25T20:02:10.740554Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lunar-crust-magnetic.field-map::1.0","title":"Lunar Crustal Magnetic Field Map","description":"This bundle contains a large-scale map of the lunar crustal magnetic field at 30 km altitude covering latitudes from 65 degrees south to 65 degrees north. This map has been produced using high quality vector magnetometer data from Lunar Prospector and SELENE (Kaguya).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector","Kaguya Mission"],"targets":["Moon"],"instruments":["Magnetometer for LP","Lunar Magnetometer"],"instrument_hosts":["Lunar Prospector","Kaguya Spacecraft"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/lunar_crust_magnetic.field_map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lunar_crust_magnetic.field_map/bundle_lunar_crust_magnetic.field_map_v1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lunar_crust_magnetic.field_map/bundle_lunar_crust_magnetic.field_map_v1.0.xml","scraped_at":"2026-02-25T20:02:10.740558Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-orpa::1.0","title":"Pioneer Venus Orbiter (PVO) Retarding Potential Analyzer (ORPA) Data Bundle","description":"This bundle contains PVO Retarding Potential Analyzer (ORPA) Processed Data. This bundle includes Pioneer Venus Orbiter (PVO) processed data from the retarding potential analyzer (ORPA), including thermal and superthermal electrons, ions, and a key parameters collection for all 5055 orbits (Dec 5, 1978 - Oct 7, 1992). It also includes an ancillary ion uncertainties collection.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Retarding Potential Analyzer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":[],"start_date":"1978-12-04","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/bundle-pvo-orpa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-orpa/bundle-pvo-orpa.xml","scraped_at":"2026-02-25T20:02:10.740562Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.calibrated::1.33","title":"MAVEN ROSE Calibrated Data Bundle","description":"This bundle contains the predicted and residual frequency received at Earth, and transmitted from Earth.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Atmosphere and Volatile EvolutioN Mission"],"targets":["Mars"],"instruments":["Radio Science Instrument"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":"2016-02-19","stop_date":"2025-08-14","browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-calibrated/bundle_maven_rose_calibrated_1.33.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-calibrated/bundle_maven_rose_calibrated_1.33.xml","scraped_at":"2026-02-25T20:02:10.740565Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-mager::1.0","title":"Mars Global Surveyor MAG/ER Bundle","description":"This bundle contains Mars Global Surveyor (MGS) Magentometer Electron Reflectometer(MAG/ER) calibrated angular and omnidirectional flux, high and low time resolution data collected during the Pre-Mapping and Mapping Phases from 1997-09-14T00:42:11.743Z to 2006-11-02T23:24:30.793Z. Also included is the derived field map.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Phobos","Mars"],"instruments":["Electron Reflectometer","Magnetometer"],"instrument_hosts":["Mars Global Surveyor"],"data_types":[],"start_date":"1997-09-14","stop_date":"2006-11-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/bundle_mgs_mager_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-mager/bundle_mgs_mager_1.0.xml","scraped_at":"2026-02-25T20:02:10.740570Z","keywords":["MGS","ER","MAG"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-crustal-field-map::1.0","title":"MESSENGER MAG Crustal Field Map","description":"This bundle contains crustal magnetic field maps and equivalent source dipole arrays for Mercury based on the MESSENGER magnetic field data. This work was funded by a 2016 NASA ROSES DDAP proposal. Grant number NNH16ZDA001N-DDAP.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Mercury"],"instruments":["MAGNETOMETER"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/bundle_mess_mag_crustal_field_map_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-crustal-field-map/bundle_mess_mag_crustal_field_map_1.0.xml","scraped_at":"2026-02-25T20:02:10.740578Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-ppr-prejup-derived::1.1","title":"Galileo Photopolarimeter Radiometer Pre-Jupiter Derived Bundle","description":"This Bundle includes derived data for the Galileo Orbiter PPR instrument for the period corresponding to the Galileo Pre-Jupiter observations between December 1989 and July 1994.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Solar Wind","Ida","Gaspra","Earth","Venus"],"instruments":["Photopolarimeter Radiometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1989-12-27","stop_date":"1994-07-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/bundle-galileo-ppr-prejup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-ppr-prejup-derived/bundle-galileo-ppr-prejup-derived.xml","scraped_at":"2026-02-25T20:02:10.740581Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-uv::1.0","title":"Pioneer 11 Ultraviolet Photometer Bundle","description":"This bundle contains data taken by the Pioneer 11 fields and particles Ultraviolet Photometer (UV) instrument including Solar Wind, Jupiter and Saturn flybys.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Jupiter","Saturn","Solar Wind"],"instruments":["Ultraviolet Photometer (UV)"],"instrument_hosts":["Pioneer 11"],"data_types":[],"start_date":"1973-04-06","stop_date":"1993-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/bundle-p11-uv.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/p11-uv/bundle-p11-uv.xml","scraped_at":"2026-02-25T20:02:10.740586Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:p11-traj::1.0","title":"Pioneer 11 Trajectory Bundle","description":"This bundle contains Pioneer 11 Trajectory data from solar wind, Jupiter and Saturn encounter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer 11"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":[],"instrument_hosts":["Pioneer 11"],"data_types":[],"start_date":"1973-04-06","stop_date":"1992-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/p11-traj/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/p11-traj/bundle-p11-traj.lblx","source_url":"https://pds-ppi.igpp.ucla.edu/data/p11-traj/bundle-p11-traj.lblx","scraped_at":"2026-02-25T20:02:10.740589Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-bundle::1.0","title":"Ulysses Mission Bundle","description":"This bundle contains the Ulysses Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter","Io Torus"],"instruments":["Cospin-Anisotropy Telescope","Cospin-High Energy Telescope","Cospin-High Flux Telescope","Cospin-Kiel Electron Telescope","Cospin-Low Energy Telescope","EPAC-Energetic Particle Composition Instrument","GAS-Interstellar Neutral Gas Instrument","GRB-Solar X-Ray/Cosmic Gamma Ray Burst Instrument","GWE-Gravitational Wave Experiment Instrument","HISCALE-Heliospheric Insta-Spectra,Composition, Anisotrophy at LW ENER","SCE-Solar Corona Experiment","SWICS-Solar Wind Ion Composition Spectrometer","SWOOPS-Solar Wind Observations Over the Poles of the Sun","UDDS-Ulysses Dust Detection System","URAP-Unified Radio and Plasma Wave Experiment","VHM-FGM Vector Helium/Fluxgate Magnetometers"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/bundle-ulysses.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-bundle/bundle-ulysses.xml","scraped_at":"2026-02-25T20:02:10.740595Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-jupiter-pos-hgcoords::1.0","title":"Voyager 1 Jupiter Ephemeris Heliographic Coordinates Bundle","description":"This bundle consists of Voyager 1 Jupiter encounter ephemeris data in Heliographic coordinates. Two versions, both covering the same time period, but containing slightly different data, are provided. One version was generated by the Voyager MAG team from Voyager 1 SEDR, the other by the PDS/PPI node using the VG1_JUP.BSP and PCK00003.TPC SPICE kernels. These data were previously released as PDS data set PDS3 VG1-J-POS-6-SUMM-HGCOORDS-V1.0, https://doi.org/10.17189/1519895","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":[],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1979-02-26","stop_date":"1979-03-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/bundle-vg1-jup-pos-hgcoords-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-jupiter-pos-hgcoords/bundle-vg1-jup-pos-hgcoords-1.0.xml","scraped_at":"2026-02-25T20:02:10.740599Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oetp::1.2","title":"Pioneer Venus Orbiter (PVO) Electron Temperature Probe (OETP) Data Bundle","description":"This bundle includes PVO Electron Temperature Probe (OETP) collections: High-Res., Low-Res., Ionopause, Bow Shock, Solar EUV, and Browse Plot.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["Electron Temperature Probe for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/bundle-pvo-oetp-1.2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oetp/bundle-pvo-oetp-1.2.xml","scraped_at":"2026-02-25T20:02:10.740603Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-lgm-fsx1s-raw::1.0","title":"Radio JOVE Station LGM FSX1s Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations made at the LGM Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station LGM"],"data_types":[],"start_date":"2017-08-01","stop_date":"2018-06-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/bundle_radiojove_lgm_fsx1s_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx1s-raw/bundle_radiojove_lgm_fsx1s_raw_1.0.xml","scraped_at":"2026-02-25T20:02:10.740606Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-chems-cal::1.0","title":"Cassini MIMI CHEMS Calibrated Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Charge Energy Mass Spectrometer (CHEMS) mass per charge, full time resolution intensities and pulse height analysis flux values for 2004-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Charge/Energy Mass Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/bundle_cassini_mimi_chems_cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-chems-cal/bundle_cassini_mimi_chems_cal_1.0.xml","scraped_at":"2026-02-25T20:02:10.740611Z","keywords":["CHEMS","MIMI"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lp-mag-derived::1.0","title":"Lunar Prospector Magnetometer Derived Bundle","description":"This bundle contains derived field map data that was acquired from the Magnetometer during the Lunar Prospector's Primary and Extended Mission. The data covers the time period from 1998-02-01 to 1999-07-02.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Lunar Prospector"],"targets":["Moon"],"instruments":["Magnetometer"],"instrument_hosts":["Lunar Prospector"],"data_types":[],"start_date":"1998-02-01","stop_date":"1999-07-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/bundle-lp-mag-derived-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lp-mag-derived/bundle-lp-mag-derived-1.0.xml","scraped_at":"2026-02-25T20:02:10.740614Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-calibrated::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Calibrated Data Bundle","description":"This bundle consists of all of the calibrated data acquired by Cassini Plasma Spectrometer (CAPS) on-board the Cassini spacecraft during the Cassini mission.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Solar Wind","Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/bundle_cassini_caps_calibrated_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-calibrated/bundle_cassini_caps_calibrated_1.0.xml","scraped_at":"2026-02-25T20:02:10.740619Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:messenger::1.0","title":"MESSENGER Document Bundle","description":"This bundle contains collections and products that are associated with more then one MESSENGER bundle.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer - Energetic Particle Spectrometer","Energetic Particle and Plasma Spectrometer - Fast Imaging Plasma Spectrometer","Magnetometer","Radio Science","Gamma Ray Spectrometer","Mercury Atmospheric and Surface Composition Spectrometer","Mercury Dual Imaging System Narrow Angle Camera","Mercury Dual Imaging System Wide Angle Camera","Mercury Laser Altimeter","X-Ray Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/bundle-messenger-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/messenger-bundle/bundle-messenger-1.0.xml","scraped_at":"2026-02-25T20:02:10.740624Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vex-aspera4-els::1.0","title":"VEx ASPERA-4 ELS Background Data Bundle","description":"This is the Venus Express Analyzer of Space Plasma and Energetic Atoms, 4th edition Electron Spectrometer Background Data Bundle. The data and documentation in this bundle were produced with funding from NASA Planetary Data Archiving, Restoration and Tools (PDART) 2016, grant #NNX17AL04G.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Venus_Express"],"targets":["Venus"],"instruments":["ASPERA4-ELS"],"instrument_hosts":["VEX"],"data_types":[],"start_date":"2005-12-09","stop_date":"2014-11-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/bundle_vex-aspera4-els_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vex-aspera4-els/bundle_vex-aspera4-els_1.0.xml","scraped_at":"2026-02-25T20:02:10.740628Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-raw::1.0","title":"Galileo Jupiter Magnetometer Raw Bundle","description":"This bundle contains raw magnetic field data acquired by the Galileo Orbiter magnetometer (MAG). This data was previously released as PDS3 data in the GO-J-MAG-2-REDR-RAW-DATA-V1.0 (https://doi.org/10.17189/1519667) data sets.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/bundle-galileo-mag-jupiter-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-raw/bundle-galileo-mag-jupiter-raw.xml","scraped_at":"2026-02-25T20:02:10.740632Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-aj4co-dps::2.0","title":"Radio JOVE Station AJ4CO DPS Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations made at the AJ4CO Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station AJ4CO"],"data_types":[],"start_date":"2013-09-26","stop_date":"2022-08-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/bundle_radiojove_aj4co_dps_2.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-aj4co-dps/bundle_radiojove_aj4co_dps_2.0.xml","scraped_at":"2026-02-25T20:02:10.740635Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-lgm-fsx12-raw::1.0","title":"Radio JOVE Station LGM FSX12 Raw Data Bundle","description":"CERTIFIED This bundle contains data in CDF format from radio telescope observations made at the LGM Observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["Station LGM"],"data_types":[],"start_date":"2012-11-12","stop_date":"2017-07-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/bundle_radiojove_lgm_fsx12_raw_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-lgm-fsx12-raw/bundle_radiojove_lgm_fsx12_raw_1.0.xml","scraped_at":"2026-02-25T20:02:10.740638Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-prejup-raw::1.0","title":"Galileo Energetic Particle Detector Pre-Jupiter Raw Bundle","description":"This bundle contains count rate, 5 and 15 minute averaged data for the energetic particle detector obtained from the LEMMS and CMS telescopes during the time of significant activity during the Earth1, Earth2 and Venus encounter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Earth","Venus"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1990-02-10","stop_date":"1992-12-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/bundle-galileo-epd-prejup-raw.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-prejup-raw/bundle-galileo-epd-prejup-raw.xml","scraped_at":"2026-02-25T20:02:10.740643Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-mtsu-fsx6sraw::1.11","title":"Radio JOVE MTSU Station FSX6S Raw Data Bundle","description":"CERTIFIED WITH LIENS This bundle contains data in CDF format from radio telescope observations made at the Middle Tennessee State University (MTSU) observatory as part of the Radio JOVE project.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Radio JOVE"],"targets":["Jupiter"],"instruments":[],"instrument_hosts":["MTSU Station"],"data_types":[],"start_date":"2016-01-01","stop_date":"2019-09-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/bundle_radiojove_mtsu_fsx6sraw_1.11.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-mtsu-fsx6sraw/bundle_radiojove_mtsu_fsx6sraw_1.11.xml","scraped_at":"2026-02-25T20:02:10.740646Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mimi-inca-cal::1.0","title":"Cassini MIMI INCA Calibrated Bundle","description":"This bundle contains Cassini Magnetospheric Imaging Instrument (MIMI) Ion and Neutral Camera (INCA) angle image averages and differential intensities at various modes and resolutions from 2004-01-01T00:00:00.000Z to 2017-09-15T23:59:59.000Z.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Solar Wind","Saturn","Phoebe","Titan","Dione","Enceladus","Tethys","Hyperion","Rhea","Iapetus"],"instruments":["Magnetospheric Imaging Instrument for Cassini Orbiter","MIMI Ion Neutral Camera for Cassini Orbiter"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/bundle_cassini_mimi_inca_cal_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mimi-inca-cal/bundle_cassini_mimi_inca_cal_1.0.xml","scraped_at":"2026-02-25T20:02:10.740651Z","keywords":["INCA","MIMI"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:go-pls-jup-fitted-parameters::1.1","title":"Galileo Orbiter Plasma Science Experiment Jupiter Fitted Parameters Bundle","description":"This bundle consists of all of the fitted parameters (both good and bad) for fitting an ion species to the Galileo Plasma Science Experiment (PLS) that were found during a grant from NASA's Jupiter Data Analysis Program (NNX09AE03G). The 'good' results were used to publish: Bagenal, F., R. J. Wilson, S. Siler, W. R. Paterson, and W. S. Kurth (2016), Survey of Galileo plasma observations in Jupiter's plasma sheet, J. Geophys. Res. Planets, 121, 871-894, doi:10.1002/2016JE005009. Please cite this paper and this PDS bundle if you use this data. Please note: The data in this bundle have been reviewed by the coauthors of Bagenal, et al. 2016 and their method and figures passed the journal's peer review. These data have also completed PDS peer review and are certified.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":["Plasma Science Experiment"],"instrument_hosts":[],"data_types":[],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/bundle-go-pls-jup-fitted-parameters-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/go-pls-jup-fitted-parameters/bundle-go-pls-jup-fitted-parameters-1.1.xml","scraped_at":"2026-02-25T20:02:10.740662Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-mag-cal::1.1","title":"Cassini Magnetometer Calibrated Bundle","description":"This bundle contains Cassini magnetometer calibrated data for the entire mission. The bundle includes 1 minute averaged and 1 second averaged data provided in Kronographic (KRTP, KSO, KSM) coordinates at Saturn, Geographic coordinates (GSE) for the Earth flyby, Jovigraphic coordinates for the Jupiter flyby, and RTN coordinates for the entire mission, and full time resolution data provided in RTN coordinates for cruise, Kronographic (KRTP) coordinates for Saturn Tour, Geographic coordinates (GSE) for the Earth flyby,and IAU_Jupiter (J3) and JMAG XYZ (JMXYZ) for Outer Cruise. A spice metakernel collection for the 1 minute averaged data is provided as well.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Earth","Venus","Saturn","Solar Wind","Jupiter","Phoebe","Titan","Dione","Enceladus","Hyperion","Iapetus","Rhea","Tethys"],"instruments":["Dual Technique Magnetometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1998-12-30","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/bundle-cassini-mag-cal-1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-mag-cal/bundle-cassini-mag-cal-1.1.xml","scraped_at":"2026-02-25T20:02:10.740666Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-omag-oefd-anc::1.0","title":"Pioneer Venus Orbiter Magnetometer and Electric Field Detector Ancillary Data Bundle","description":"This bundle contains information pertaining to the Pioneer Venus Orbiter Magnetometer and Electric Field Detector Ancillary Data. This bundle includes Engineering and Phaseoffset data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus (PV)"],"targets":["Venus","Solar Wind"],"instruments":["Orbiter Fluxgate Magnetometer (OMAG)","Orbiter Electric Field Detector (OEFD)"],"instrument_hosts":["Pioneer Venus Orbiter (PVO)"],"data_types":[],"start_date":"1978-12-05","stop_date":"1992-10-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/bundle-pvo-omag-oefd-anc-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-omag-oefd-anc/bundle-pvo-omag-oefd-anc-1.0.xml","scraped_at":"2026-02-25T20:02:10.740671Z","keywords":["Magnetometer"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-derived::1.0","title":"Galileo Jupiter Heavy Ion Counter Derived Energetic Ion Composition Bundle","description":"This bundle provides energetic (MeV) ion fluxes for a variety of different Z values (carbon, oxygen, sulfur) derived from the Heavy Ion Counter (HIC) instrument on the Galileo spacecraft. The data set includes all recorded intervals at Jupiter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Jupiter","Io","Ganymede","Europa"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1995-12-07","stop_date":"2002-11-06","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/bundle-galileo-hic-jup-derived.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-derived/bundle-galileo-hic-jup-derived.xml","scraped_at":"2026-02-25T20:02:10.740674Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mgs-rss::1.0","title":"Mars Global Surveyor Derived RSS Bundle","description":"This bundle contains the archival results from radio science investigations conducted during the Mars Global Surveyor (MGS) mission. Radio measurements were made using the MGS spacecraft and Earth-based stations of the NASA Deep Space Network (DSN) these results were derived from raw radio tracking data.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem (RSS)"],"instrument_hosts":["Mars Global Surveyor"],"data_types":[],"start_date":"1997-09-12","stop_date":"2006-09-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/bundle_mgs_rss_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mgs-rss/bundle_mgs_rss_1.0.xml","scraped_at":"2026-02-25T20:02:10.740678Z","keywords":["MGS"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-swoops::1.0","title":"Ulysses SWOOPS Bundle","description":"This file contains Solar Wind Observations Over the Poles of the Sun (SWOOPS) plasma data submitted to the Planetary Data System (PDS) by the Ulysses SWOOPS investigators during the Ulysses Jupiter Encounter, 1992-01-25 to 1992-02-17.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["SWOOPS-Solar Wind Observations Over the Pools of the Sun"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/bundle-ulysses-swoops-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-swoops/bundle-ulysses-swoops-1.0.xml","scraped_at":"2026-02-25T20:02:10.740683Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-calibrated::1.0","title":"MESSENGER EPPS Calibrated FIPS Data Bundle","description":"This bundle contains MESSENGER Energetic Particle and Plasma Spectrometer (EPPS) calibrated observations, also known as CDRs. This bundle contains Fast Imaging Plasma Spectrometer (FIPS) instrument data. FIPS covers the energy/charge range of less than 50 eV/q to 20 keV/q. These data were previously released as a PDS3 data set (MESS-E/V/H/SW-EPPS-3-FIPS-CDR-V1.0, https://doi.org/10.17189/1519742).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Earth","Venus","Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-08-16","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/bundle-mess-epps-fips-calibrated-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-calibrated/bundle-mess-epps-fips-calibrated-1.0.xml","scraped_at":"2026-02-25T20:02:10.740686Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-bundle::1.0","title":"Galileo Orbiter Mission Bundle","description":"This bundle contains Galileo Orbiter Mission Documentation.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["Earth","Venus","Jupiter","Solar Wind","Ganymede","Callisto","Io","Io Torus","Europa","Amalthea","243 Ida","951 Gaspra"],"instruments":["Energetic Particle Detector","Heavy Ion Counter","Magnetometer","Plasma Science Experiment","Photopolarimeter Radiometer","Star Scanner","Radio Science Subsystem"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1977-10-01","stop_date":"2003-09-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/bundle-galileo.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-bundle/bundle-galileo.xml","scraped_at":"2026-02-25T20:02:10.740691Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-grb::1.0","title":"Ulysses Gamma Ray Burst Bundle","description":"This bundle contains data submitted to the Planetary Data System (PDS) by the Ulysses GRB investigators, for the Ulysses Jupiter Encounter, 1992-01-25 to 1992-02-17 (days 25-48 inclusive).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Ulysses"],"targets":["Jupiter"],"instruments":["Solar X-Ray/Cosmic Gamma Ray Burst Instrument for Ulysses"],"instrument_hosts":["Ulysses"],"data_types":[],"start_date":"1992-01-25","stop_date":"1992-02-17","browse_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/bundle-ulysses-grb-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/ulysses-grb/bundle-ulysses-grb-1.0.xml","scraped_at":"2026-02-25T20:02:10.741159Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-pws-ele-density::1.0","title":"Voyager 1 Jupiter PWS Electron Density Data Bundle","description":"This bundle contains ASCII formatted plasma wave frequency and electron plasma density measurements as measured by the Plasma Waves Science instrument and calculated from the equations of cold plasma theory. These frequency measurements were taken from Voyager 1 electric field waveform samples from Voyager 1 Plasma Wave Science (PWS) waveform receiver obtained during its Jupiter flyby.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Plasma Wave Spectrometer (PWS)"],"instrument_hosts":["Voyager 1"],"data_types":[],"start_date":"1979-03-01","stop_date":"1979-03-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pws-ele-density/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pws-ele-density/bundle-pws-ele-density.lblx","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-pws-ele-density/bundle-pws-ele-density.lblx","scraped_at":"2026-02-25T20:02:10.741168Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pws-ele-density::1.0","title":"Voyager 2 Jupiter Plasma Wave Spectrometer Electron Density Data Bundle","description":"This bundle contains ASCII formatted plasma wave frequency and electron plasma density measurements as measured by the Plasma Waves Science instrument and calculated from the equations of cold plasma theory. These frequency measurements were taken from Voyager 2 electric field waveform samples from Voyager 2 Plasma Wave Science (PWS) waveform receiver obtained during its Jupiter encounter.","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Wave Receiver"],"instrument_hosts":["Voyager 2"],"data_types":[],"start_date":"1979-07-04","stop_date":"1979-07-11","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pws-ele-density/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pws-ele-density/bundle-vg2-pws-ele-density.lblx","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pws-ele-density/bundle-vg2-pws-ele-density.lblx","scraped_at":"2026-02-25T20:02:10.741175Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-derived::1.2","title":"MESSENGER EPPS FIPS Derived Bundle","description":"This bundle contains the MESSENGER Energetic Particle and Plasma Spectrometer (EPPS) calibrated observations, also known as DDRs. The system encompasses 2 instrument subsystems - the Energetic Particle Spectrometer (EPS) and the Fast Imaging Plasma Spectrometer (FIPS).","node":"ppi","pds_version":"PDS4","type":"bundle","missions":["MESSENGER"],"targets":["Mercury","Solar Wind"],"instruments":["Energetic Particle and Plasma Spectrometer (EPPS)"],"instrument_hosts":["MESSENGER"],"data_types":[],"start_date":"2004-09-13","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-derived/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-derived/bundle-mess-epps-fips-derived-1.2.lblx","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-derived/bundle-mess-epps-fips-derived-1.2.lblx","scraped_at":"2026-02-25T20:02:10.741179Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.wf:browse::1.0","title":"Voyager 1 Plasma Wave Science, High Spectral Resolution Plots, Entire Mission Collection","description":"This collection contains Voyager 1 Plasma Wave Science (PWS) PNG (Portable Network Graphics) images generated from raw waveform data from (SCET) 1979-02-27T00:00:00.000Z through 2025-01-01T00:00:00.000Z. Ancillary sources for the plots include the various Voyager 1 Magnetometer PDS3 volumes and NAIF SPICE position kernels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager 1"],"targets":["Solar Wind","INTERSTELLAR PARTICLES","Interstellar Medium","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Browse"],"start_date":"1979-02-27","stop_date":"2025-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/browse/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/browse/collection.xml","scraped_at":"2026-02-25T20:02:10.753325Z","keywords":["Gurnett","D.A.","University of Iowa"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.wf:data::1.0","title":"Voyager 1 PWS Electric Waveforms Data Collection","description":"The Voyager 1 PWS Electric Waveforms Data Collections contains raw full resolution waveform data consisting of electric field waveform samples from the Voyager 1 Plasma Wave Science waveform receiver obtained during the entire mission.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager 1"],"targets":["Solar Wind","INTERSTELLAR PARTICLES","Jupiter","Saturn","Interstellar Medium"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Data"],"start_date":"1978-08-21","stop_date":"2022-02-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/data/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/data/collection.xml","scraped_at":"2026-02-25T20:02:10.753329Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.wf:miscellaneous::1.0","title":"Voyager 1 PWS Waveform Cruise Autoplot Configuration Files Data Collection","description":"The time boundary and file name configuration data used to associate a set of PNG images with the Autoplot configuration file below. In this case it associates the plots in browse/cruise with the file vg1_pws_wf_cruise_v1.0.vap","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar Wind","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/miscellaneous/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/miscellaneous/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-wf/miscellaneous/collection.xml","scraped_at":"2026-02-25T20:02:10.753333Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.wf:browse::1.0","title":"Voyager 2 Plasma Wave Science, High Spectral Resolution Plots, Entire Mission Collection","description":"This collection contains Voyager 2 Plasma Wave Science (PWS) PNG (Portable Network Graphics) images generated from raw waveform data from (SCET) 1979-07-02T00:00:00.000Z through 2010-01-01T00:00:00.000Z. Ancillary sources for the plots include the various Voyager 2 Magnetometer PDS3 volumes and NAIF SPICE position kernels.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager 2"],"targets":["Solar Wind","INTERSTELLAR PARTICLES","Jupiter","Neptune","Saturn","Uranus"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":"1979-07-02","stop_date":"2010-01-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/browse/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/browse/collection.xml","scraped_at":"2026-02-25T20:02:10.753358Z","keywords":["Gurnett","D.A.","University of Iowa"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.wf:data::1.0","title":"Voyager 2 Plasma Wave Science, Raw Waveforms, Entire Mission Collection","description":"This collection contains Voyager 2 Plasma Wave Spectrometer (PWS) raw waveform data and documentation for all available telemetry frames from (SCET) 1979-04-28T07:59:16.710Z through 2006-03-07T08:48:04.778Z.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager 2"],"targets":["Jupiter","Solar Wind","INTERSTELLAR PARTICLES","Saturn","Uranus","Neptune"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-04-28","stop_date":"2006-03-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/data/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/data/collection.xml","scraped_at":"2026-02-25T20:02:10.753363Z","keywords":["Gurnett","D.A.","University of Iowa"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.wf:miscellaneous::1.0","title":"Voyager 2 PWS Waveform Cruise Autoplot Configuration Files Data Collection","description":"The time boundary and file name configuration data used to associate a set of PNG images with the Autoplot configuration file below. In this case it associates the plots in browse/cruise with the file vg1_pws_wf_cruise_v1.0.vap","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar Wind","Jupiter","Neptune","Saturn","Uranus"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/miscellaneous/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/miscellaneous/collection.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-wf/miscellaneous/collection.xml","scraped_at":"2026-02-25T20:02:10.753367Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.sa:data::1.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Data Files","description":"Voyager 1 PWS data in daily CDF files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2022-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/data/collection_data_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/data/collection_data_voyager-1.xml","scraped_at":"2026-02-25T20:02:10.753371Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.sa:document::1.0","title":"Voyager 1 Plasma Waves Instrument Low Rate Spectrum Analyzer Document Collection","description":"This collection contains documents related to the Voyager 1 Plasma Waves Instrument Low Rate Spectrum Analyzer data, updated to refer to the PDS4 bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":[],"instruments":["Plasma Wave Receiver"],"instrument_hosts":["Voyager 1"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/document/collection_document_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/document/collection_document_voyager-1.xml","scraped_at":"2026-02-25T20:02:10.753375Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1.pws.sa:browse::1.0","title":"Voyager 1 PWS Low Rate (Spectrum Analyzer) Browse Plots","description":"Voyager 1 PWS data in 10-day plot PNG files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 1"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2022-05-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/browse/collection_browse_voyager-1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager1-pws-sa/browse/collection_browse_voyager-1.xml","scraped_at":"2026-02-25T20:02:10.753379Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.sa:data::1.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Data Files","description":"Voyager 2 PWS data in daily CDF files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2022-06-01","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-sa/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-sa/data/collection_data_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-sa/data/collection_data_voyager-2.xml","scraped_at":"2026-02-25T20:02:10.753382Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2.pws.sa:browse::1.0","title":"Voyager 2 PWS Low Rate (Spectrum Analyzer) Browse Plots","description":"Voyager 2 PWS data in 10-day plot PNG files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Solar System","Jupiter","Saturn"],"instruments":["Plasma Wave Science"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-01-01","stop_date":"2022-05-22","browse_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-sa/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-sa/browse/collection_browse_voyager-2.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/voyager2-pws-sa/browse/collection_browse_voyager-2.xml","scraped_at":"2026-02-25T20:02:10.753386Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived:document::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Derived Document Collection","description":"This collection contains the documents associated with the Cassini CAPS Derived Electron Moments Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Earth","Jupiter","Saturn","Solar Wind"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/document/collection-document-1.0.xml","scraped_at":"2026-02-25T20:02:10.753389Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived:data-ele-mom::1.0","title":"Cassini-Huygens Plasma Spectrometer (CAPS) Derived Electron Moments Data Collection","description":"This collection consists of all of the electron moments data generated from the Cassini Plasma Spectrometer (CAPS) electron spectrometer uncalibrated data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-08-17","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ele-mom/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ele-mom/collection_data_caps_ddr_ele_moments_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ele-mom/collection_data_caps_ddr_ele_moments_1.0.xml","scraped_at":"2026-02-25T20:02:10.753393Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived:data-scpot::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Derived Spacecraft Potential Data Collection","description":"CASSINI ORBITER SAT/SW CAPS DERIVED V1.0","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-06-28","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-scpot/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-scpot/collection_data_caps_ddr_sc_scpot_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-scpot/collection_data_caps_ddr_sc_scpot_1.0.xml","scraped_at":"2026-02-25T20:02:10.753397Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-caps-derived:data-ion-moments::1.0","title":"Cassini-Huygens Cassini Plasma Spectrometer (CAPS) Derived Ion Moments Data Collection","description":"CASSINI ORBITER SAT/SW CAPS DERIVED ION MOMENTS V1.0","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Earth","Solar Wind","Jupiter","Saturn"],"instruments":["Cassini Plasma Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-06-28","stop_date":"2012-06-02","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ion-moments/collection_data_caps_ddr_ion_moments_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-caps-derived/data-ion-moments/collection_data_caps_ddr_ion_moments_1.0.xml","scraped_at":"2026-02-25T20:02:10.753400Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-electron_density:data::1.0","title":"Cassini RPWS Electron Densities from Upper Hybrid and Plasma Wave Frequencies","description":"This collection provides electron number density values derived from features observed in plasma wave data obtained by the Cassini Radio and Plasma Wave Science (RPWS) instruments, along with observed or derived characteristic frequencies, and useful positional parameters for the spacecraft and related bodies. When present, frequency values of narrowband emissions at the upper hybrid resonance were digitized and combined with measured or model magnetic field to derive electron number density. At other times, features such as the upper cutoff in auroral hiss or electron plasma oscillations were used to determine the plasma frequency and electron density.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn","Enceladus","Jupiter","Earth"],"instruments":["RADIO AND PLASMA WAVE SCIENCE for CO"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Data"],"start_date":"1999-08-18","stop_date":"2017-09-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/data/collection_data.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-electron_density/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.753407Z","keywords":["Cassini","electron density","plasma wave","Saturn","Jupiter","Earth"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-hfr-qtn:browse::1.0","title":"Quasi Thermal Noise pectroscopy on High Frequency Receiver Data Browse Collection","description":"This collection contains RPWS-HFR Quasi Thermal Noise (QTN) spectroscopy supplied Browse plot files containing a time series of thermal plasma moments (density and temperature). QTN data products are generated only when the QTN analysis is applicable.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["RPWS"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Browse"],"start_date":"2004-06-30","stop_date":"2012-04-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/browse/collection-browse.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/browse/collection-browse.xml","scraped_at":"2026-02-25T20:02:10.753411Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-hfr-qtn:data::1.0","title":"Quasi Thermal Noise pectroscopy on High Frequency Receiver Data Data Collection","description":"This collection contains RPWS-HFR Quasi Thermal Noise (QTN) spectroscopy supplied CDF files containing a time series of thermal plasma moments (density and temperature). QTN data products are generated only when the QTN analysis is applicable.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["RPWS"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-06-30","stop_date":"2012-04-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/data/collection-data.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/data/collection-data.xml","scraped_at":"2026-02-25T20:02:10.753414Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini-rpws-hfr-qtn:document::1.0","title":"Quasi Thermal Noise pectroscopy on High Frequency Receiver Data Data Collection","description":"This collection contains the documents associated tp RPWS-HFR Quasi Thermal Noise (QTN) spectroscopy thermal plasma moments (density and temperature).","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["RPWS"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2004-06-30","stop_date":"2012-04-15","browse_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/cassini-rpws-hfr-qtn/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753418Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-cms-events-tof::1.0","title":"Galileo EPD Calibrated Corrected Time-of-Flight Event Data Collection","description":"These are reprocessed measurements by the Engergetic Particle Detector (EPD) instrument onboard the Galileo spacecraft that orbited Jupiter and measured intensities of ion and electron radiation in the keV and MeV energy range. This set is version 31 of reprocessing and version 1.0 of PDS delivery. The TOFxE and DeltaExE files include event data of ion measurements. Event data are different than the channelized data in the high, medium, and low resolution files. Event data record the full information of a measured particle. Every \"event\" is the measurement of a time of flight (TOF) within the instrument and energy deposited within a detector (TOFxE file), or two energy values deposited within the two detector layers (DeltaExE file). The deposited energy values are generally different from the energy the particle has in the ambient space. Event data provides measured values in the native resolution of the instrument. Because such high resolution increases data volume, event data cannot be taken continuously and downlinked all the time. Only the provided subset of this data was kept. The files are comma separated. Invalid entries will have values of -1.000000E+38. Times are provided in the format Year.DOYHHMMSSM (first column) and fractional year (second column) More information can be found in the User Guide. This file includes measurements by the EPD/CMS/TOFxE instrument. For each counted event, the energy deposited in the one solid state detector (Energy_keV column) and the time of flight (TOF_ns) within the instrument are recorded.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-tof/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-tof/collection-data-cms-events-tof.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-tof/collection-data-cms-events-tof.xml","scraped_at":"2026-02-25T20:02:10.753585Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-epd-channels-med-res::1.0","title":"Galileo EPD Calibrated Corrected Medium Res Data Collection","description":"These are reprocessed measurements by the Engergetic Particle Detector (EPD) instrument onboard the Galileo spacecraft that orbited Jupiter and measured intensities of ion and electron radiation in the keV and MeV energy range. This set is version 31 of reprocessing and version 1.0 of PDS delivery. Data in the medium resolution files include measurements that are binned into channels responding to certain energy and species ranges. The files are comma separated. Invalid entries will have -1.000000E+38 as an entry. The first 4 lines of each data text file provide information on the channels included here: The first line of each file lists the names of the channels included. The second line lists the center energies of these channels in keV. The third line lists the channels again. The forth line lists the mass of the measured particle in AMU. Zero mass refers to electrons. The forth line in the data text file labels the columns that follow in the file. The columns include times, radiation measurements, spacecraft location, instrument look direction, and some supplementary information. Radiation measurements are provided both as best calibrated and cleaned intensities as well as raw, uncorrected count rates. Columns with channel names followed by a \"j\" include calibrated differential intensities of the given channel. If the value is negative, it should be ignored and particularly not included in averages. For the difference between -1.000000E+38 and all other negative values, see the User Guide. Columns ending with \"f\" provide differential intensities based on a combination of various channels. Columns ending with \"i\" include calibrated integral intensities. Columns with plain channel names describe the raw uncorrected count rate. Columns ending with \"bg\" are raw count rates measured behind the calibration shield. Each following line will provide the same data but for different times. More information can be found in the User Guide. This includes a limited set of channels with intermediate time and pitch angle resolution. If columns with plain channel names have -1.000000E+38 values, you might find valid values in the lower resolution files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-med-res/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-med-res/collection-data-epd-channels-med-res.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-med-res/collection-data-epd-channels-med-res.xml","scraped_at":"2026-02-25T20:02:10.753589Z","keywords":[],"processing_level":"Calibrated | Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-cms-events-deltaexe::1.0","title":"Galileo EPD Calibrated Corrected Delta Event Data Collection","description":"These are reprocessed measurements by the Engergetic Particle Detector (EPD) instrument onboard the Galileo spacecraft that orbited Jupiter and measured intensities of ion and electron radiation in the keV and MeV energy range. This set is version 31 of reprocessing and version 1.0 of PDS delivery. The TOFxE and DeltaExE files include event data of ion measurements. Event data are different than the channelized data in the high, medium, and low resolution files. Event data record the full information of a measured particle. Every \"event\" is the measurement of a time of flight (TOF) within the instrument and energy deposited within a detector (TOFxE file), or two energy values deposited within the two detector layers (DeltaExE file). The deposited energy values are generally different from the energy the particle has in the ambient space. Event data provides measured values in the native resolution of the instrument. Because such high resolution increases data volume, event data cannot be taken continuously and downlinked all the time. Only the provided subset of this data was kept. The files are comma separated. Invalid entries will have values of -1.000000E+38. Times are provided in the format Year.DOYHHMMSSM (first column) and fractional year (second column) More information can be found in the User Guide. This file includes measurements by the EPD/CMS/DeltaExE instrument. For each counted event, the energy deposited in the two solid state detector layers (Ej_keV and Ek_keV columns) of the instrument are recorded.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-deltaexe/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-deltaexe/collection-data-cms-events-deltaexe.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-cms-events-deltaexe/collection-data-cms-events-deltaexe.xml","scraped_at":"2026-02-25T20:02:10.753593Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:document::1.0","title":"Galileo EPD Calibrated Data User Guide","description":"These are reprocessed measurements by the Engergetic Particle Detector (EPD) instrument onboard the Galileo spacecraft that orbited Jupiter and measured intensities of ion and electron radiation in the keV and MeV energy range. This set is version 31 of reprocessing and version 1.0 of PDS delivery.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/document/collection_document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753597Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-epd-channels-high-res::1.0","title":"Galileo EPD Calibrated Corrected High Res Data Collection","description":"These are reprocessed measurements by the Engergetic Particle Detector (EPD) instrument onboard the Galileo spacecraft that orbited Jupiter and measured intensities of ion and electron radiation in the keV and MeV energy range. This set is version 31 of reprocessing and version 1.0 of PDS delivery. Data in the high resolution files include measurements that are binned into channels responding to certain energy and species ranges. The files are comma separated. Invalid entries will have -1.000000E+38 as an entry. The first 4 lines of each data text file provide information on the channels included here: The first line of each file lists the names of the channels included. The second line lists the center energies of these channels in keV. The third line lists the channels again. The forth line lists the mass of the measured particle in AMU. Zero mass refers to electrons. The forth line in the data text file labels the columns that follow in the file. The columns include times, radiation measurements, spacecraft location, instrument look direction, and some supplementary information. Radiation measurements are provided both as best calibrated and cleaned intensities as well as raw, uncorrected count rates. Columns with channel names followed by a \"j\" include calibrated differential intensities of the given channel. If the value is negative, it should be ignored and particularly not included in averages. For the difference between -1.000000E+38 and all other negative values, see the User Guide. Columns ending with \"f\" provide differential intensities based on a combination of various channels. Columns ending with \"i\" include calibrated integral intensities. Columns with plain channel names describe the raw uncorrected count rate. Columns ending with \"bg\" are raw count rates measured behind the calibration shield. Each following line will provide the same data but for different times. More information can be found in the User Guide. This file provides data with the highest available time and pitch angle resolution. Only a small set of channels is provided, limiting the energy resolution and coverage. If columns with plain channel names have -1.000000E+38 values, you might find valid values in the lower resolution files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-high-res/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-high-res/collection-data-epd-channels-high-res.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-high-res/collection-data-epd-channels-high-res.xml","scraped_at":"2026-02-25T20:02:10.753601Z","keywords":[],"processing_level":"Calibrated | Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-epd-cal-corrected:data-epd-channels-low-res::1.0","title":"Galileo EPD Calibrated Corrected Low Res Data Collection","description":"These are reprocessed measurements by the Engergetic Particle Detector (EPD) instrument onboard the Galileo spacecraft that orbited Jupiter and measured intensities of ion and electron radiation in the keV and MeV energy range. This set is version 31 of reprocessing and version 1.0 of PDS delivery. Data in the low resolution files include measurements that are binned into channels responding to certain energy and species ranges. The files are comma separated. Invalid entries will have -1.000000E+38 as an entry. The first 4 lines of each data text file provide information on the channels included here: The first line of each file lists the names of the channels included. The second line lists the center energies of these channels in keV. The third line lists the channels again. The forth line lists the mass of the measured particle in AMU. Zero mass refers to electrons. The forth line in the data text file labels the columns that follow in the file. The columns include times, radiation measurements, spacecraft location, instrument look direction, and some supplementary information. Radiation measurements are provided both as best calibrated and cleaned intensities as well as raw, uncorrected count rates. Columns with channel names followed by a \"j\" include calibrated differential intensities of the given channel. If the value is negative, it should be ignored and particularly not included in averages. For the difference between -1.000000E+38 and all other negative values, see the User Guide. Columns ending with \"f\" provide differential intensities based on a combination of various channels. Columns ending with \"i\" include calibrated integral intensities. Columns with plain channel names describe the raw uncorrected count rate. Columns ending with \"bg\" are raw count rates measured behind the calibration shield. Each following line will provide the same data but for different times. More information can be found in the User Guide. This includes the full set of channels covering the full energy and species range of EPD. The time and pitch angle resolution is low. Higher resolution is available for some channels that can be found in the medium and high resolution files.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Energetic Particle Detector"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-07-14","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-low-res/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-low-res/collection-data-epd-channels-low-res.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-epd-cal-corrected/data-epd-channels-low-res/collection-data-epd-channels-low-res.xml","scraped_at":"2026-02-25T20:02:10.753605Z","keywords":[],"processing_level":"Calibrated | Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-raw:data::1.0","title":"Galileo Jupiter HIC High Resolution Raw Data Collection","description":"This collection contains raw energetic (MeV) particle data measured by the Heavy Ion Counter (HIC) instrument on the Galileo spacecraft. This data set contains both real-time and recorded data for all Jupiter orbits.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/data/collection_data_1.0.xml","scraped_at":"2026-02-25T20:02:10.753609Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-hic-jup-raw:document::1.0","title":"Galileo Jupiter HIC High Resolution Raw Document Collection","description":"This collection contains the documents associated with the Galileo Jupiter Heavy Ion Counter High Resolution Raw.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Earth","Venus","Solar Wind","Jupiter","Io","Europa","Ganymede","Callisto","Amalthea"],"instruments":["Heavy Ion Counter"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-hic-jup-raw/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753614Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-magspheric-survey::1.0","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Data Collection","description":"Galileo MAG calibrated optimal averager magnetic field data near Jupiter, and in the solar wind from the Jupiter Approach phase in Despun Spacecraft (IRC) coordinates. The data cover 1995-11-01T00:06 to 1995-12-06T02:09 to 1995-12-06T02:09.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Callisto","Europa","Ganymede","Io","Io Torus","Solar Wind"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-11-01","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-magspheric-survey/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-magspheric-survey/collection-data-magspheric-survey.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-magspheric-survey/collection-data-magspheric-survey.xml","scraped_at":"2026-02-25T20:02:10.753619Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:calibration::1.0","title":"Galileo Jupiter Magnetometer Calibration Collection","description":"GO-J-MAG-3-RDR-HIGHRES-V1.0, GO-J-MAG-3-RDR-MAGSPHERIC-SURVEY-V1.0","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Amalthea","Ganymede","Callisto","Europa","Io Torus","Io","Solar Wind"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Calibration"],"start_date":"1996-06-27","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/calibration/collection_calibration_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/calibration/collection_calibration_1.0.xml","scraped_at":"2026-02-25T20:02:10.753623Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:document::1.0","title":"Galileo MAG Jupiter Calibrated Document Collection","description":"This collection contains the documents associated with the Galileo Heavy Ion Counter Derived Ion Fluxes October 89 Solar Event Calibrated Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Solar System"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1989-10-21","stop_date":"1989-10-28","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/document/collection_document_1.0.xml","scraped_at":"2026-02-25T20:02:10.753627Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres::1.0","title":"Galileo Jupiter Magnetometer High Resolution Browse Data Collection","description":"Galileo Io plasma torus and Io flyby magnetic-field from the Io 0 orbit in Jovicentric System III [1965] coordinates. orbit in Jovicentric System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io","Ganymede","Callisto","Europa","Amalthea"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres/collection_browse-highres_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres/collection_browse-highres_1.0.xml","scraped_at":"2026-02-25T20:02:10.753631Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres-callisto::1.0","title":"Galileo Jupiter MAG High Resolution Callisto Browse Data Collection","description":"Galileo Io plasma torus and Io flyby magnetic-field from the Io 0 orbit in Jovicentric System III [1965] coordinates. orbit in Jovicentric System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-callisto/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-callisto/collection_browse-highres-callisto_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-callisto/collection_browse-highres-callisto_1.0.xml","scraped_at":"2026-02-25T20:02:10.753634Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres-europa::1.0","title":"Galileo Jupiter MAG High Resolution Europa Browse Data Collection","description":"Galileo Io plasma torus and Io flyby magnetic-field from the Io 0 orbit in Jovicentric System III [1965] coordinates. orbit in Jovicentric System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Europa"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-europa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-europa/collection_browse-highres-europa_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-europa/collection_browse-highres-europa_1.0.xml","scraped_at":"2026-02-25T20:02:10.753637Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres-ganymede::1.0","title":"Galileo Orbiter at Jupiter Magnetometer High Resolution Ganymede Browse Data Collection","description":"Galileo Io plasma torus and Io flyby magnetic-field from the Io 0 orbit in Jovicentric System III [1965] coordinates. orbit in Jovicentric System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto","Europa","Ganymede"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-ganymede/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-ganymede/collection_browse-highres-ganymede_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-ganymede/collection_browse-highres-ganymede_1.0.xml","scraped_at":"2026-02-25T20:02:10.753644Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-highres-io::1.0","title":"Galileo Orbiter at Jupiter Magnetometer High Resolution Io Browse Data Collection","description":"Galileo Io plasma torus and Io flyby magnetic-field from the Io 0 orbit in Jovicentric System III [1965] coordinates. orbit in Jovicentric System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2002-11-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-io/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-io/collection_browse-highres-io_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-highres-io/collection_browse-highres-io_1.0.xml","scraped_at":"2026-02-25T20:02:10.753648Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-magspheric-survey::1.0","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Browse Data Collection","description":"Galileo magnetic-field from the Ganymede 1 orbit in System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1996-06-23","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey/collection_browse-magspheric-survey_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey/collection_browse-magspheric-survey_1.0.xml","scraped_at":"2026-02-25T20:02:10.753654Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-magspheric-survey-callisto::1.0","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Callisto Browse Data Collection","description":"Galileo magnetic-field from the Ganymede 1 orbit in System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1996-06-23","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-callisto/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-callisto/collection_browse-magspheric-survey-callisto_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-callisto/collection_browse-magspheric-survey-callisto_1.0.xml","scraped_at":"2026-02-25T20:02:10.753658Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-magspheric-survey-europa::1.0","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Europa Browse Data Collection","description":"Galileo magnetic-field from the Ganymede 1 orbit in System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto","Europa","Ganymede"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1996-06-23","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-europa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-europa/collection_browse-magspheric-survey-europa_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-europa/collection_browse-magspheric-survey-europa_1.0.xml","scraped_at":"2026-02-25T20:02:10.753662Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:browse-magspheric-survey-ganymede::1.0","title":"Galileo Jupiter Magnetometer Magnetospheric Survey Ganymede Browse Data Collection","description":"Galileo magnetic-field from the Ganymede 1 orbit in System III [1965] coordinates.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto","Europa","Ganymede"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1996-06-23","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-ganymede/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-ganymede/collection_browse-magspheric-survey-ganymede_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/browse-magspheric-survey-ganymede/collection_browse-magspheric-survey-ganymede_1.0.xml","scraped_at":"2026-02-25T20:02:10.753665Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-callisto::1.0","title":"Galileo Jupiter Magnetometer Highres Callisto Data Collection","description":"This data collection contains high time resolution magnetic field vectors acquired by the Galileo magnetometer (MAG). It includes satellite flyby Callisto data. These data were acquired in order to characterize various portions of the Jovian magnetosphere at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Callisto"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1996-11-04","stop_date":"2001-05-25","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-callisto/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-callisto/collection-data-highres-callisto.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-callisto/collection-data-highres-callisto.xml","scraped_at":"2026-02-25T20:02:10.753669Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-europa::1.0","title":"Galileo Jupiter Magnetometer Highres Europa Data Collection","description":"This data collection contains high time resolution magnetic field vectors acquired by the Galileo magnetometer (MAG). It includes satellite flyby Europa data. These data were acquired in order to characterize various portions of the Jovian magnetosphere at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Europa"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1996-12-19","stop_date":"2000-01-03","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-europa/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-europa/collection-data-highres-europa.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-europa/collection-data-highres-europa.xml","scraped_at":"2026-02-25T20:02:10.753672Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-ganymede::1.0","title":"Galileo Jupiter Magnetometer Highres Ganymede Data Collection","description":"This data collection contains high time resolution magnetic field vectors acquired by the Galileo magnetometer (MAG). It includes satellite flyby Ganymede data. These data were acquired in order to characterize various portions of the Jovian magnetosphere at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Ganymede"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-11-01","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-ganymede/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-ganymede/collection-data-highres-ganymede.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-ganymede/collection-data-highres-ganymede.xml","scraped_at":"2026-02-25T20:02:10.753676Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-io::1.0","title":"Galileo Jupiter Magnetometer Highres Io Data Collection","description":"This data collection contains high time resolution magnetic field vectors acquired by the Galileo magnetometer (MAG). It includes satellite flyby Io data. These data were acquired in order to characterize various portions of the Jovian magnetosphere at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2001-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-io/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-io/collection-data-highres-io.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-io/collection-data-highres-io.xml","scraped_at":"2026-02-25T20:02:10.753680Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-mag-jup-calibrated:data-highres-magnetosphere::1.0","title":"Galileo Jupiter Magnetometer Highres Magnetosphere Data Collection","description":"This data collection contains high time resolution magnetic field vectors acquired by the Galileo magnetometer (MAG). It includes satellite flyby data. These data were acquired in order to characterize various portions of the Jovian magnetosphere at high time resolution.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus"],"instruments":["Magnetometer"],"instrument_hosts":["Galileo Orbitor"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2001-10-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-magnetosphere/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-magnetosphere/collection-data-highres-magnetosphere.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-mag-jup-calibrated/data-highres-magnetosphere/collection-data-highres-magnetosphere.xml","scraped_at":"2026-02-25T20:02:10.753693Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-cruise:document::1.0","title":"InSight IFG Cruise Document Collection","description":"This collection contains the documentation associated with the InSight IFG Cruise Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["InSight Mars Lander Mission"],"targets":["Solar Wind"],"instruments":["InSight Fluxgate Magenetometer"],"instrument_hosts":["InSight Mars Lander Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-cruise/document/collection_document_1.0.xml","scraped_at":"2026-02-25T20:02:10.753697Z","keywords":["mag"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:browse::4.8","title":"InSight IFG Magnetometer Mars Browse Collection","description":"This collection contains the InSight IFG Mars browse plot products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":["Browse"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/browse/collection_browse_4.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/browse/collection_browse_4.8.xml","scraped_at":"2026-02-25T20:02:10.753723Z","keywords":["mag"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:calibration::1.1","title":"InSight IFG Magnetometer Mars Calibration Data Collection","description":"This collection contains the InSight IFG Mars calibration data products. These data were used in the calibration of the IFG raw data, one file per release.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":["Data"],"start_date":"2018-12-11","stop_date":"2022-06-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/calibration/collection_calibration_1.10.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/calibration/collection_calibration_1.10.xml","scraped_at":"2026-02-25T20:02:10.753728Z","keywords":["mag"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:data-ifg-calibrated::4.8","title":"InSight IFG Magnetometer Mars Calibrated Data Collection","description":"This collection contains the InSight IFG Mars calibrated data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-calibrated/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-calibrated/collection_data-ifg-calibrated_4.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-calibrated/collection_data-ifg-calibrated_4.8.xml","scraped_at":"2026-02-25T20:02:10.753732Z","keywords":["mag"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:data-ifg-partially-processed::4.8","title":"InSight IFG Magnetometer Mars Partially Processed Data Collection","description":"This collection contains the InSight IFG Mars partially processed data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-partially-processed/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-partially-processed/collection_data-ifg-partially-processed_4.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-partially-processed/collection_data-ifg-partially-processed_4.8.xml","scraped_at":"2026-02-25T20:02:10.753737Z","keywords":["mag"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:data-ifg-raw::5.8","title":"InSight IFG Magnetometer Mars Raw Data Collection","description":"This collection contains the InSight IFG Mars raw data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-24","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-raw/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-raw/collection_data-ifg-raw_5.8.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-ifg-raw/collection_data-ifg-raw_5.8.xml","scraped_at":"2026-02-25T20:02:10.753741Z","keywords":["mag"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:data-sc-engineering::1.12","title":"InSight Spacecraft Raw Engineering and Ancillary Data Collection","description":"This collection contains the InSight raw spacecraft engineering and ancillary data products.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-06-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-sc-engineering/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-sc-engineering/collection_data-sc-engineering_1.12.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/data-sc-engineering/collection_data-sc-engineering_1.12.xml","scraped_at":"2026-02-25T20:02:10.753744Z","keywords":["mag"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:insight-ifg-mars:document::1.14","title":"InSight IFG Mars Document Collection","description":"This collection contains the documentation associated with the InSight IFG Mars Data Bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":[],"instruments":["InSight Fluxgate Magnetometer"],"instrument_hosts":["InSight"],"data_types":["Document"],"start_date":"2018-11-30","stop_date":"2022-04-08","browse_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/document/collection_document_1.14.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/insight-ifg-mars/document/collection_document_1.14.xml","scraped_at":"2026-02-25T20:02:10.753749Z","keywords":["mag"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-calibrated:document::1.0","title":"MESSENGER EPPS EPS Calibrated Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753752Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-calibrated:calibration::1.0","title":"MESSENGER EPPS EPS Calibrated Calibration Collection","description":"This collection contains documents relevant to the calibration of the MESSENGER EPPS EPS Calibrated data bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["MESSENGER"],"targets":[],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-calibrated/calibration/collection-calibration-1.0.xml","scraped_at":"2026-02-25T20:02:10.753756Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-derived:document::1.1","title":"MESSENGER EPPS EPS DDR Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS DDR Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-derived/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753759Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-raw:calibration::1.0","title":"MESSENGER EPPS EPS EDR To CDR Calibration Collection","description":"EPS EDR TO CDR CONVERSION","node":"ppi","pds_version":"PDS4","type":"collection","missions":["MESSENGER"],"targets":[],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":"2015-12-09","stop_date":"2015-12-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/calibration/collection-calibration-1.0.xml","scraped_at":"2026-02-25T20:02:10.753762Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-eps-raw:document::1.1","title":"MESSENGER EPPS EPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS EPS Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-epps-eps-raw/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753765Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-derived:document::1.2","title":"MESSENGER EPPS FIPS DDR Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS FIPS DDR Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-derived/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-derived/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753768Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-raw:calibration::1.0","title":"MESSENGER EPPS FIPS Raw Calibration Collection","description":"This collection contains documents related to the calibration of the MESSENGER EPPS FIPS Raw Data Collection.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["MESSENGER"],"targets":[],"instruments":["Energetic Particle and Plasma Spectrometer"],"instrument_hosts":["MESSENGER"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/calibration/collection-calibration-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/calibration/collection-calibration-1.0.xml","scraped_at":"2026-02-25T20:02:10.753771Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-fips-raw:document::1.0","title":"MESSENGER EPPS FIPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS FIPS Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-fips-raw/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753775Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-epps-raw:document::1.0","title":"MESSENGER EPPS Raw Document Collection","description":"This collection contains documents relevant to the MESSENGER EPPS Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-epps-eps-raw/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753778Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-calibrated:document::1.0","title":"MESSENGER MAG Calibrated Document Collection","description":"This collection contains documents relevant to the MESSENGER MAG Calibrated Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/document/collection-document.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-calibrated/document/collection-document.xml","scraped_at":"2026-02-25T20:02:10.753781Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:data-sci-mbf::1.0","title":"MESSENGER Magnetometer KT17 Model Mercury Body Fixed (MBF) Residual Data","description":"This data collection contains the DELTA_B RDR data files in the Mercury Body Fixed (MBF) coordinate system.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["MESSENGER"],"data_types":["Data"],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mbf/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mbf/collection-data-sci-mbf-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mbf/collection-data-sci-mbf-1.0.xml","scraped_at":"2026-02-25T20:02:10.753785Z","keywords":["mag"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:data-sci-mso::1.0","title":"MESSENGER Magnetometer KT17 Model Mercury Solar Orbital (MSO) Residual Data","description":"This data collection contains the DELTA_B RDR files in the Mercury Solar Orbital (MSO) coordinates system.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["MESSENGER"],"data_types":["Data"],"start_date":"2011-03-24","stop_date":"2015-04-30","browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mso/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mso/collection-data-sci-mso-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/data-sci-mso/collection-data-sci-mso-1.0.xml","scraped_at":"2026-02-25T20:02:10.753789Z","keywords":["mag"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:mess-mag-kt17-model-residuals:document::1.0","title":"MESSENGER Magnetometer KT17 Model Residual Data Document Collection","description":"This data collection contains the documentation that is needed to understand and analyze the MESSENGER Magnetometer KT17 Model Residual Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["MESSENGER"],"targets":["Mercury"],"instruments":["Magnetometer"],"instrument_hosts":["MESSENGER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/mess-mag-kt17-model-residuals/document/collection-document-1.0.xml","scraped_at":"2026-02-25T20:02:10.753792Z","keywords":["mag"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-ele-moments::1.0","title":"Voyager 2 Plasma Derived Electron Moment 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived electron moment 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ele-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ele-moments/collection_browse_ele_moments_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ele-moments/collection_browse_ele_moments_1.0.xml","scraped_at":"2026-02-25T20:02:10.753796Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-inbndwind::1.0","title":"Voyager 2 Plasma Derived Ion Inbound Solar Wind 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion inbound solar wind 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-inbndwind/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-inbndwind/collection_browse_inbndwind_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-inbndwind/collection_browse_inbndwind_1.0.xml","scraped_at":"2026-02-25T20:02:10.753800Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-l-mode::1.0","title":"Voyager 2 Plasma Derived Ion In/Out Bound Magnetosheath L-Mode 96 Second Jupiter Browse Collection","description":"This collection Voyager 2 plasma derived ion in/out bound magnetosheath L-mode 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-l-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-l-mode/collection_browse_ion_l_mode_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-l-mode/collection_browse_ion_l_mode_1.0.xml","scraped_at":"2026-02-25T20:02:10.753804Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-m-mode::1.0","title":"Voyager 2 Plasma Derived Ion Outbound Magnetosheath M-Mode 96 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion in/out bound magnetosheath m-mode 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-m-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-m-mode/collection_browse-ion-m-mode_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-m-mode/collection_browse-ion-m-mode_1.0.xml","scraped_at":"2026-02-25T20:02:10.753807Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:browse-ion-moments::1.0","title":"Voyager 2 Plasma Derived Ion Moments 96.0 Second Jupiter Browse Collection","description":"This collection contains Voyager 2 plasma derived ion moment 96.0 second Jupiter browse products. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-moments/collection_browse-ion-moments_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/browse-ion-moments/collection_browse-ion-moments_1.0.xml","scraped_at":"2026-02-25T20:02:10.753811Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-ele-moments::1.0","title":"Voyager 2 Plasma Derived Electron Moments 96.0 Second Jupiter Data Collection","description":"This collection contains derived values of the electron density and moment temperature at Jupiter during the Voyager 2 encounter in the PLS voltage range (10-5950 eV/q). Adjacent low and high energy electron measurements are combined to form a composite spectra which is used for the moment calculation.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-06","stop_date":"1979-07-09","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ele-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ele-moments/collection_data_ele_moments_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ele-moments/collection_data_ele_moments_1.0.xml","scraped_at":"2026-02-25T20:02:10.753814Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-inbndwind::1.0","title":"Voyager 2 Plasma Derived Ion Inbound Solar Wind 96 Second Jupiter Data Collection","description":"This collection contains solar wind plasma data upstream of Jupiter before the Voyager 2 encounter. Fit and moment parameters are given; the fit parameters assume a convected isotropic proton Maxwellian distribution. Use of fit parameters is recommended as these are normally more accurate. Since only the first 72 or last 72 energy/charge channels are telemetered to Earth from each M-mode spectra, derived parameters change significantly only every other set of spectra so the effective time resolution is 196 s.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-06-25","stop_date":"1979-07-05","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-inbndwind/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-inbndwind/collection_data_inbndwind_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-inbndwind/collection_data_inbndwind_1.0.xml","scraped_at":"2026-02-25T20:02:10.753818Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-l-mode::1.0","title":"Voyager 2 Plasma Derived Ion In/Out Bound Magnetosheath L-Mode 96 Second Jupiter Data Collection","description":"This collection contains plasma parameters from the Voyager 2 inbound magnetosheath and outbound data from the magnetotail through the solar wind. Inbound Voyager 2 passed near noon local time, so it sampled regions of the magnetosheath where flow is generally subsonic. Distribution functions observed were well represented by two convected isotropic proton Maxwellians, so this type of distribution was used to derive the proton velocity, density and temperature. Physically the two populations represent the thermal plasma accelerated at the shock (the colder component) and ions reflected once at the shock before entering the magnetosheath (the hotter component). The PLS experiment could not resolve alpha particles in this region so no alpha parameters are provided; the neglect of alpha made cause an overestimate of the hot proton component of the plasma. One sigma errors are provided for the fit parameters.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-02","stop_date":"1979-08-12","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-l-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-l-mode/collection_data_ion_l_mode_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-l-mode/collection_data_ion_l_mode_1.0.xml","scraped_at":"2026-02-25T20:02:10.753821Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-m-mode::1.0","title":"Voyager 2 Plasma Derived Ion Outbound Magnetosheath M-Mode 96 Second Jupiter Data Collection","description":"This collection contains plasma parameters from Voyager 2 outbound from Jupiter from the magnetotail through the solar wind. Fit and moment parameters are given; the fit parameters assume a single, isotropic convected proton Maxwellian distribution. Although magnetotail data is provided, these data are unreliable; the density can be used as an upper limit to the actual density. Solar wind data are also provided and are reliable. These M mode data are the best data to use in most regions of the magnetosheath. Magnetotail data in this data collection are included mainly to put the sheath data in context and show magnetopause.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-23","stop_date":"1979-08-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-m-mode/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-m-mode/collection_data_ion_m_mode_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-m-mode/collection_data_ion_m_mode_1.0.xml","scraped_at":"2026-02-25T20:02:10.753825Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:data-ion-moments::1.0","title":"Voyager 2 Plasma Derived Ion Moments 96.0 Second Jupiter Data Collection","description":"This collection contains Voyager 2 Plasma (PLS) data from the Jupiter encounter. The data includes 96 second averages of the ion moment density.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Data"],"start_date":"1979-07-04","stop_date":"1979-07-10","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-moments/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-moments/collection_data_ion_moments_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/data-ion-moments/collection_data_ion_moments_1.0.xml","scraped_at":"2026-02-25T20:02:10.753828Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg2-pls-jup:document::1.0","title":"Voyager 2 Plasma Science Experiment (PLS) Jupiter Document Collection","description":"This collection contains the document files associated with the Voyager 2 Plasma Science Experiment (PLS) Jupiter Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Ganymede"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Voyager 2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg2-pls-jupiter/document/collection_document_1.0.xml","scraped_at":"2026-02-25T20:02:10.753832Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrlcpraw:data::1.1","title":"Radio JOVE Station K4LED SDRLCP Raw Data Collection","description":"Radio JOVE Station K4LED SDRLCP Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station K4LED Receivers"],"instrument_hosts":["Station K4LED"],"data_types":["Data"],"start_date":"2018-06-01","stop_date":"2018-12-27","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/data/collection_data_k4led_sdrlcpraw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrlcpraw/data/collection_data_k4led_sdrlcpraw_v1.1.xml","scraped_at":"2026-02-25T20:02:10.753836Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:radiojove-k4led-sdrrcpraw:data::1.1","title":"Radio JOVE Station K4LED SDRRCP Raw Data Collection","description":"Radio JOVE Station K4LED SDRRCP Raw data from radio astronomy observations","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Radio JOVE"],"targets":["Jupiter","Sun"],"instruments":["Station K4LED Receivers"],"instrument_hosts":["Station K4LED"],"data_types":["Data"],"start_date":"2018-06-01","stop_date":"2018-12-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/data/collection_data_k4led_sdrrcpraw_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/radiojove-k4led-sdrrcpraw/data/collection_data_k4led_sdrrcpraw_v1.1.xml","scraped_at":"2026-02-25T20:02:10.753841Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-electrons::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Electrons Collection","description":"This collection contains electron browse plots for the electron data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_electrons/collection-browse-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_electrons/collection-browse-electrons-1.0.xml","scraped_at":"2026-02-25T20:02:10.753844Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-ions::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Ions Collection","description":"This collection contains browse plots for the ion data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle. The plots were generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_ions/collection-browse-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_ions/collection-browse-ions-1.0.xml","scraped_at":"2026-02-25T20:02:10.753847Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:browse-pulse-height::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data - Browse Pulse Height Collection","description":"This collection contains browse plots for the pulse height data in the Voyager 1 Jupiter CRS Derived Electron Browse Data Bundle. The plot was generated at PDS-PPI.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_pulse_height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_pulse_height/collection-browse-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/browse_pulse_height/collection-browse-pulse-height-1.0.xml","scraped_at":"2026-02-25T20:02:10.753851Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-electrons::1.0","title":"Voyager 1 Jupiter CRS Derived Electron Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Electron Browse Data.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_electrons/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_electrons/collection-data-electrons-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_electrons/collection-data-electrons-1.0.xml","scraped_at":"2026-02-25T20:02:10.753854Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-ions::1.0","title":"Voyager 1 Jupiter CRS Derived Ion Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Ion Browse Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_ions/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_ions/collection-data-ions-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_ions/collection-data-ions-1.0.xml","scraped_at":"2026-02-25T20:02:10.753858Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:data-pulse-height::1.0","title":"Voyager 1 Jupiter CRS Derived Pulse Height Ion Browse Data Collection","description":"This collection contains Voyager 1 Jupiter CRS Derived Pulse Height Ion Browse Data","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":["Data"],"start_date":"1979-02-28","stop_date":"1979-03-16","browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_pulse_height/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_pulse_height/collection-data-pulse-height-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/data_pulse_height/collection-data-pulse-height-1.0.xml","scraped_at":"2026-02-25T20:02:10.753862Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:vg1-crs-jup-avg-flux:document::1.0","title":"Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data Document Collection","description":"This collection contains the document files associated with the Voyager 1 Jupiter CRS Derived Proton/Ion/Electron Flux Browse Data bundle","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Voyager"],"targets":["Jupiter","Io"],"instruments":["Cosmic Ray Subsystem"],"instrument_hosts":["Voyager 1"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/document/collection-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/vg1-crs-jup-avg-flux/document/collection-document-1.0.xml","scraped_at":"2026-02-25T20:02:10.753865Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-cal-pri::1.1","title":"LRO CRaTER Lunar Calibrated Energy Data Primary Science Collection","description":"Calibrated (Level 1) primary science data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaisance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2023-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-pri/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-pri/collection_data_crater_calibrated_primary_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-cal-pri/collection_data_crater_calibrated_primary_v1.1.xml","scraped_at":"2026-02-25T20:02:10.754025Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-der-hk::1.1","title":"LRO CRaTER Lunar Derived Energy Housekeeping Data Collection","description":"Derived (Level 2) housekeeping data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaisance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2023-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-hk/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-hk/collection_data_crater_derived_housekeeping_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-hk/collection_data_crater_derived_housekeeping_v1.1.xml","scraped_at":"2026-02-25T20:02:10.754029Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-der-pri::1.1","title":"LRO CRaTER Lunar Derived Energy Data Primary Science Data Collection","description":"Derived (Level 2) primary science data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaisance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2023-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-pri/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-pri/collection_data_crater_derived_primary_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-pri/collection_data_crater_derived_primary_v1.1.xml","scraped_at":"2026-02-25T20:02:10.754032Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lro-crater:data-der-sec::1.1","title":"LRO CRaTER Lunar Derived Energy Data Secondary Science Data Collection","description":"Derived (Level 2) secondary science and engineering data from the CRaTER instrument aboard Lunar Reconnaissance Orbiter.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Lunar Reconnaisance Orbiter"],"targets":["Moon"],"instruments":["CRaTER"],"instrument_hosts":["Lunar Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2009-06-29","stop_date":"2023-03-31","browse_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-sec/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-sec/collection_data_crater_derived_secondary_v1.1.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/lro-crater/data-der-sec/collection_data_crater_derived_secondary_v1.1.xml","scraped_at":"2026-02-25T20:02:10.754324Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:data-avg-browse::1.0","title":"Galileo PLS Jupiter Averaged Browse Calibrated Data Collection","description":"This collection contains data from the Plasma Science instrument (PLS) on the Galileo spacecraft for all Jupiter orbits. These data have been reformatted into ASCII tables to facilitate data processing and analysis.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-browse/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-browse/collection_data-avg-browse_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-browse/collection_data-avg-browse_1.0.xml","scraped_at":"2026-02-25T20:02:10.754328Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:data-avg-counts::1.0","title":"Galileo PLS Jupiter Averaged Plasma Counts Calibrated Collection","description":"This collection contains averaged raw data from the Plasma Science instrument(PLS) on the Galileo spacecraft for all Jupiter orbits. These data have been averaged and reformatted into ASCII tables to facilitate data display and analysis.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-counts/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-counts/collection_data-avg-counts_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-avg-counts/collection_data-avg-counts_1.0.xml","scraped_at":"2026-02-25T20:02:10.754332Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:document::1.0","title":"Galileo PLS Jupiter Calibrated Document Collection","description":"This collection contains the documents associated with the Galileo PLS Jupiter Calibrated Document","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1995-11-06","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/document/collection_document_1.0.xml","scraped_at":"2026-02-25T20:02:10.754336Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:calibration::1.0","title":"Galileo PLS Jupiter Calibrated Calibration Collection","description":"This collection contains the calibration data associated with the Galileo PLS Jupiter Calibrated bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Calibration"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/calibration/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/calibration/collection_calibration_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/calibration/collection_calibration_1.0.xml","scraped_at":"2026-02-25T20:02:10.754340Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:data-fullres::1.0","title":"Galileo PLS Jupiter Full Resolution Data Collection","description":"This collection contains data from the Plasma Science instrument (PLS) on the Galileo spacecraft for all Jupiter orbits. These data have been reformatted into ASCII tables to facilitate data processing and analysis.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-fullres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-fullres/collection_data-fullres_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/data-fullres/collection_data-fullres_1.0.xml","scraped_at":"2026-02-25T20:02:10.754343Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-cal:browse-fullres::1.0","title":"Galileo PLS Jupiter Full Resolution Calibrated Browse Collection","description":"This collection contains plots of Galileo Plasma Science Experiment data in PDF/A format. Each plot consists of one day of full resolution data taken during the particular spacecraft orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Io","Callisto","Europa","Ganymede","Amalthea","Solar Wind"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Browse"],"start_date":"1995-12-07","stop_date":"2003-09-21","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/browse-fullres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/browse-fullres/collection_browse-fullres_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-cal/browse-fullres/collection_browse-fullres_1.0.xml","scraped_at":"2026-02-25T20:02:10.754347Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-derived:data::1.0","title":"Galileo PLS Jupiter RTS Moments Derived Data Collection","description":"This collection contains data from the Plasma Science instrument (PLS) on the Galileo spacecraft for all Jupiter orbits and Galileo plasma moments. These data have been reformatted into ASCII tables to facilitate data processing and analysis.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter","Io Torus","Solar Wind","Callisto","Europa","Ganymede","Io"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/data/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/data/collection_data_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/data/collection_data_1.0.xml","scraped_at":"2026-02-25T20:02:10.754351Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-pls-jup-derived:document::1.0","title":"Galileo PLS Jupiter RTS Moments Derived Document Collection","description":"This collection contains the documents associated with the Galileo PLS Jupiter RTS Moments Document","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Jupiter"],"instruments":["Plasma Science Experiment"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1996-06-25","stop_date":"2002-01-19","browse_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/document/collection_document_1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/galileo-pls-jup-derived/document/collection_document_1.0.xml","scraped_at":"2026-02-25T20:02:10.754355Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oims:document::1.0","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Document Collection","description":"This collection contains the document files associated with the Pioneer Venus (PVO) Ion Mass Spectrometer Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/document/collection-pvo-oims-document-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/document/collection-pvo-oims-document-1.0.xml","scraped_at":"2026-02-25T20:02:10.754359Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oims:data-12s::1.0","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer Low-Res Data Collection","description":"This collection contains Pioneer Venus Orbiter low-resolution ion number densities data recorded by the Ion Mass Spectrometer (OIMS), from PVO Venus.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1987-02-18","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-12s/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-12s/collection-data-12s-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-12s/collection-data-12s-1.0.xml","scraped_at":"2026-02-25T20:02:10.754363Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:pvo-oims:data-highres::1.0","title":"Pioneer Venus Orbiter (PVO) Ion Mass Spectrometer High-Res Data Collection","description":"This collection includes derived Pioneer Venus Orbiter high-resolution ion density data from the OIMS instrument for PVO. It contains it contains sample mass and density data for orbits 1-5055, including data for the period periapsis +/- 30 minutes for each orbit. The collection is divided into multiple files which contain 1 orbit.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus","Solar Wind"],"instruments":["PVO Orbiter Ion Mass Spectrometer for PVO"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1992-10-07","browse_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-highres/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-highres/collection-data-highres-1.0.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/pvo-oims/data-highres/collection-data-highres-1.0.xml","scraped_at":"2026-02-25T20:02:10.754367Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.insitu.calibrated:document::1.4","title":"MAVEN Insitu Key Parameters Document Collection","description":"This collection contains the documents associated with the MAVEN Insitu Key Parameters Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/document/collection_document_1.4.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-insitu-calibrated/document/collection_document_1.4.xml","scraped_at":"2026-02-25T20:02:10.754370Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:maven.rose.raw:document::1.10","title":"MAVEN ROSE Raw Document Collection","description":"This collection contains the documents associated with the MAVEN ROSE Raw Data Bundle.","node":"ppi","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":["Radio Science Instruments"],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/document/","download_url":null,"label_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/document/collection_maven_rose_raw_document_1.10.xml","source_url":"https://pds-ppi.igpp.ucla.edu/data/maven-rose-raw/document/collection_maven_rose_raw_document_1.10.xml","scraped_at":"2026-02-25T20:02:10.754424Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl index 5c7c0fd..d74cb56 100644 --- a/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl @@ -1,53 +1,1050 @@ -{"id":"rms:astrom_xxxx_go_to_this_directory_in_viewmaster:a00016f2","title":"ASTROM_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/ASTROM_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:cocirs_0xxx_go_to_this_directory_in_viewmaster:59759fb8","title":"COCIRS_0xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Composite Infrared Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2000-01-01","stop_date":"2009-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COCIRS_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:3_0:ff414dcd","title":"3.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/3.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:2_0:a750b779","title":"2.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/2.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918709","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:cocirs_1xxx_go_to_this_directory_in_viewmaster:3efd222f","title":"COCIRS_1xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Composite Infrared Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2010-01-01","stop_date":"2017-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COCIRS_1xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:cocirs_5xxx_go_to_this_directory_in_viewmaster:261300c8","title":"COCIRS_5xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Composite Infrared Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2010-01-01","stop_date":"2010-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COCIRS_5xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:cocirs_6xxx_go_to_this_directory_in_viewmaster:af4823ca","title":"COCIRS_6xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Composite Infrared Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2010-01-01","stop_date":"2010-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COCIRS_6xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:coiss_0xxx_go_to_this_directory_in_viewmaster:d42baa0e","title":"COISS_0xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COISS_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:4_2:2fd689ed","title":"4.2 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/4.2/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:4_1:6fc453ab","title":"4.1 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/4.1/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:4_0:041bac24","title":"4.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/4.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:1_0:92bd77e2","title":"1.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/1.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:coiss_1xxx_go_to_this_directory_in_viewmaster:aa56d4a7","title":"COISS_1xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COISS_1xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:coiss_2xxx_go_to_this_directory_in_viewmaster:75d7ab71","title":"COISS_2xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COISS_2xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:coiss_3xxx_go_to_this_directory_in_viewmaster:c4970e91","title":"COISS_3xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COISS_3xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:corss_8xxx_go_to_this_directory_in_viewmaster:6fec246a","title":"CORSS_8xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Radio Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2005-01-01","stop_date":"2010-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/CORSS_8xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:0_2:d113b90e","title":"0.2 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/0.2/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:cosp_xxxx_go_to_this_directory_in_viewmaster:fc997888","title":"COSP_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COSP_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:couvis_0xxx_go_to_this_directory_in_viewmaster:7727ec9e","title":"COUVIS_0xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Ultraviolet Imaging Spectrograph"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COUVIS_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:couvis_8xxx_go_to_this_directory_in_viewmaster:b4b67f92","title":"COUVIS_8xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Ultraviolet Imaging Spectrograph"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2005-01-01","stop_date":"2017-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COUVIS_8xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:2_1:04989ead","title":"2.1 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/2.1/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:0_3:662de4fa","title":"0.3 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/0.3/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.918992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:covims_0xxx_go_to_this_directory_in_viewmaster:be64493a","title":"COVIMS_0xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Visual and Infrared Mapping Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COVIMS_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:covims_8xxx_go_to_this_directory_in_viewmaster:194a8558","title":"COVIMS_8xxx Go to this directory in Viewmaster - Cassini Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Cassini"],"targets":[],"instruments":["Visual and Infrared Mapping Spectrometer"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"2005-01-01","stop_date":"2017-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/COVIMS_8xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:ebrocc_xxxx_go_to_this_directory_in_viewmaster:3b2bd084","title":"EBROCC_xxxx Go to this directory in Viewmaster - Earth-Based Ring Occultation Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Earth-Based Ring Occultation"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/EBROCC_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:go_0xxx_go_to_this_directory_in_viewmaster:7303c184","title":"GO_0xxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/GO_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:hstix_xxxx_go_to_this_directory_in_viewmaster:0b0e15b3","title":"HSTIx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTIx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:1_1:fb890428","title":"1.1 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/1.1/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:hstjx_xxxx_go_to_this_directory_in_viewmaster:5f2bfbfc","title":"HSTJx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTJx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:1_2:59c7461c","title":"1.2 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/1.2/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:hstnx_xxxx_go_to_this_directory_in_viewmaster:de9b3ce7","title":"HSTNx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTNx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:hstox_xxxx_go_to_this_directory_in_viewmaster:b93ba4f7","title":"HSTOx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTOx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:hstux_xxxx_go_to_this_directory_in_viewmaster:e8a11cb0","title":"HSTUx_xxxx Go to this directory in Viewmaster - Hubble Space Telescope Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Hubble Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/HSTUx_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:jnojir_xxxx_go_to_this_directory_in_viewmaster:2c937291","title":"JNOJIR_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/JNOJIR_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:jnojnc_0xxx_go_to_this_directory_in_viewmaster:9304a2f7","title":"JNOJNC_0xxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/JNOJNC_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:jnosp_xxxx_go_to_this_directory_in_viewmaster:6160ac64","title":"JNOSP_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/JNOSP_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:jnosru_xxxx_go_to_this_directory_in_viewmaster:3f44ee5a","title":"JNOSRU_xxxx Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/JNOSRU_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:nhsp_xxxx_go_to_this_directory_in_viewmaster:5150497f","title":"NHSP_xxxx Go to this directory in Viewmaster - New Horizons Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/NHSP_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:nhxxlo_xxxx_go_to_this_directory_in_viewmaster:f0c51bed","title":"NHxxLO_xxxx Go to this directory in Viewmaster - New Horizons Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/NHxxLO_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:5_0:068a82a7","title":"5.0 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/5.0/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:nhxxmv_xxxx_go_to_this_directory_in_viewmaster:686fbf85","title":"NHxxMV_xxxx Go to this directory in Viewmaster - New Horizons Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/NHxxMV_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:res_xxxx_prelim_go_to_this_directory_in_viewmaster:2b8c5d69","title":"RES_xxxx_prelim Go to this directory in Viewmaster - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/RES_xxxx_prelim","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:rpx_xxxx_go_to_this_directory_in_viewmaster:bd3132c8","title":"RPX_xxxx Go to this directory in Viewmaster - Ring Plane Crossing Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Ring Plane Crossing"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":"1995-01-01","stop_date":"1995-12-31","browse_url":"https://pds-rings.seti.org/viewmaster/volumes/RPX_xxxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vgiris_xxxx_peer_review_go_to_this_directory_in_viewmaster:8e5eeab2","title":"VGIRIS_xxxx_peer_review Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGIRIS_xxxx_peer_review","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vgiss_5xxx_go_to_this_directory_in_viewmaster:d0be8a5f","title":"VGISS_5xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGISS_5xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vgiss_6xxx_go_to_this_directory_in_viewmaster:91ce1097","title":"VGISS_6xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGISS_6xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vgiss_7xxx_go_to_this_directory_in_viewmaster:718f3571","title":"VGISS_7xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGISS_7xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vgiss_8xxx_go_to_this_directory_in_viewmaster:3dd83687","title":"VGISS_8xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":["Imaging Science Subsystem"],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGISS_8xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vg_0xxx_go_to_this_directory_in_viewmaster:6269b704","title":"VG_0xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VG_0xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vg_20xx_go_to_this_directory_in_viewmaster:384c4f55","title":"VG_20xx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VG_20xx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vg_28xx_go_to_this_directory_in_viewmaster:8a8a96b7","title":"VG_28xx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VG_28xx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:0_9:551cb3de","title":"0.9 - Unknown Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/0.9/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"rms:vgx_9xxx_go_to_this_directory_in_viewmaster:27f77e47","title":"VGx_9xxx Go to this directory in Viewmaster - Voyager Data","description":null,"node":"rms","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Ring System","Satellite"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/viewmaster/volumes/VGx_9xxx","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/viewmaster/volumes/","scraped_at":"2026-02-03T20:49:03.919481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-4-ASTROM2002-V1.0","title":"VOLUME 1: SATURN SATELLITE ASTROMETRY WITH WFPC2 1994-2002","description":"This volume contains ASCII table files giving the positions of various Saturnian satellites in HST images taken during the period 1994-2002.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/ASTROM_xxxx/ASTROM_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:51:48.815041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S/SA-WFPC2-4-ASTROM2005-V1.0","title":"SATURN SATELLITE ASTROMETRY WITH WFPC2 1996-2005","description":"This volume contains ASCII table files giving the positions of various Saturnian satellites in HST images taken during the period 1996-2005.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/ASTROM_xxxx/ASTROM_0101/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:51:49.801767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-J-CIRS-2/3/4-TSDR-V2.0","title":"CASSINI CIRS JUPITER RAW AND CALIBRATED DATA ARCHIVE","description":"This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx/COCIRS_0010/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:51:51.804182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-CIRS-2/3/4-TSDR-V4.0\",","title":"CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE","description":"This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx/COCIRS_0401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:52:08.859259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-CIRS-2/3/4-TSDR-V2.0","title":"CASSINI CIRS SATURN RAW AND CALIBRATED DATA ARCHIVE","description":"This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx_v2/COCIRS_0401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:53:22.036268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-CIRS-2/3/4-TSDR-V3.2\",","title":"CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE","description":"This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx_v3/COCIRS_0401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:54:35.241944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-CIRS-2/3/4-TSDR-V3.1","title":"CASSINI CIRS SATURN RAW AND CALIBRATED DATA ARCHIVE","description":"This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_1xxx_v2/COCIRS_1007/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:57:38.636245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-CIRS-2/3/4-REFORMATTED-V1.0","title":"CASSINI CIRS SATURN REFORMATTED DATA ARCHIVE","description":"This volume contains infrared interferograms and metadata from the Cassini CIRS Instrument at Saturn. Files have been re-formatted from the original team release for easier access.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_5xxx/COCIRS_5401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:59:13.841646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-CIRS-2/3/4-REFORMATTED-V1.1","title":"CASSINI CIRS SATURN REFORMATTED DATA ARCHIVE","description":"This volume contains infrared interferograms and metadata from the Cassini CIRS Instrument at Saturn. Files have been re-formatted from the original team release for easier access.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_5xxx/COCIRS_5502/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:59:26.844988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V1.0","title":"CASSINI ISS CALIBRATION FILES Volume 1 of 11","description":"This volume contains a subset of the raw ground calibration images taken by the flight model of the CASSINI Wide-Angle Camera (WACFM) and of the CASSINI Narrow-Angle Camera (NACFM).","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx/COISS_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:34.178292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.3","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:44.201660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V2.0","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data files and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Instrument Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v2/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:48.226236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.1","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4.1/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:52.301678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.2","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4.2/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:54.301133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.0","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:56.233078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E/V/J-ISSNA/ISSWA-2-EDR-V1.0","title":"VOLUME 1: CASSINI ISS IMAGES 1294561143 - 1351738471","description":"This volume contains data collected by Cassini's Instrument Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_1xxx/COISS_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:58.241218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-ISSNA/ISSWA-2-EDR-V1.0","title":"VOLUME 1: CASSINI ISS IMAGES 1454725799 - 1460960370","description":"This volume contains data collected by Cassini's Instrument Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_2xxx/COISS_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:01:08.265540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S-ISSNA/ISSWA-5-MIDR-V1.0","title":"VOLUME 1: CASSINI ISS CARTOGRAPHIC MAP OF PHOEBE","description":"This volume contains a cartographic map of the Saturn moon PHOEBE. It was generated using data collected by Cassini's Instrument Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_3xxx/COISS_3001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:05.534330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-RSS-4/5-OCC-V2.0","title":"VOL 1: CASSINI SATURN RSS RING RADIO OCC 2005-2010","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini RSS radio occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth. Details concerning the production of these profiles can be found in Marouf et al., 1986.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/CORSS_8xxx/CORSS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:23.576233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-RSS-4/5-OCC-V0.2","title":"VOL 1: CASSINI SATURN RSS RING RADIO OCCULTS 2005-2008","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini RSS radio occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth. Details concerning the production of these profiles can be found in Marouf et al., 1986.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/CORSS_8xxx_v1/CORSS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:25.568537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-S/J/E/V-SPICE-6-V1.0","title":"CASSINI SPICE FILES","description":"This volume contains navigation and ancillary data in the form of SPICE System kernel files for the Cassini spacecraft and instruments. The data on this volume are released at intervals and may not be complete. Consult the release.cat file for information concerning release dates.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COSP_xxxx/COSP_1000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:27.570487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-J-UVIS-2-SSB-V1.2\",","title":"CASSINI UVIS JUPITER RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:29.590419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-J-UVIS-2-CUBE-V1.2\",","title":"CASSINI UVIS JUPITER RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0002/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:30.652943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-UVIS-2-SPEC-V1.2\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0004/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:32.638217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-UVIS-2-SSB-V1.2\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0005/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:33.685928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-UVIS-2-CUBE-V1.2\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0006/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:34.608099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-UVIS-2-SPEC-V1.5\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0007/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:35.611892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-UVIS-2-CUBE-V1.5\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0009/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:37.613079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-UVIS-2-CALIB-V1.2\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0013/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:41.641181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CO-S-UVIS-2-CUBE-V1.3\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0042/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:04:10.684927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"(\"CO-S-UVIS-2-CUBE-V1.3\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0043/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:04:11.688193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"(\"CO-S-UVIS-2-CUBE-V1.4\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0050/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:04:18.772113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-UVIS-HSP-2/4-OCC-V3.0","title":"VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx/COUVIS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:14.985571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-UVIS-HSP-2/4-OCC-V0.3","title":"VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2008","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v1/COUVIS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:16.968927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-UVIS-2/4-OCC-V2.0","title":"VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v2.0/COUVIS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:18.909964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-UVIS-2/4-OCC-V2.1","title":"VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v2.1/COUVIS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:20.908856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-E/V/J/S-VIMS-2-QUBE-V1.0","title":"SAMPLE: CASSINI VIMS IMAGE/SPECTRAL CUBES","description":"This DVD contains Cassini Visual and Infrared Mapping Spectrometer (VIMS) raw cube data, documentation, for all available files with start times (SCET) 1999-01-10T05:40:00.157 through 2000-09-18T13:26:42.517.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COVIMS_0xxx/COVIMS_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:22.913030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-VIMS-4/5-OCC-V2.1","title":"VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx/COVIMS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:06:58.157314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-VIMS-4/5-OCC-V0.2","title":"VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2009","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx_v1/COVIMS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:00.134108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CO-SR-VIMS-4/5-OCC-V2.0","title":"VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx_v2.0/COVIMS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:02.148398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{ \"ESO1M-SR-APPH-4-OCC-V1.0\",","title":"VOLUME 1: 1989 28 SGR SATURN RING OCCULTATION PROFILES.","description":"This volume contains ring occultation data from the 1989 occultation of 28 Sagittarii (28 Sgr) by the rings of Saturn. Included in this volume are six data sets corresponding to observations by six Earth-based telescopes at five observatories: two at the European Southern Observatory, and one each at Mauna Kea, Lick, McDonald and Palomar. The data files are ASCII tables of fully processed and resampled occultation profiles given in ten kilometer increments. The volume also includes ancillary geometry files, browse files in the form of plots, provided in both PDF and PS formats, of both the occultation profiles and geometry files, as well as documentation. Neither raw nor calibration files are available for archiving","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/EBROCC_xxxx/EBROCC_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:04.127483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-CAL-SSI-6-V1.1","title":"GALILEO CALIBRATION FILES","description":"This volume, titled Galileo SSI Calibration Files (GO_0001), is a part of the Galileo Solid State Imaging Raw EDR data set which resides on volumes GO_0002 thru GO_0023. Included are all calibration files required to properly decalibration the images obtained from the Galileo SSI Camera system. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== the following types of calibration files: Calibration Slope Files, Dark Current files, Shutter Offset file and Blemish files.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:06.151107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-V/E-SSI-2-REDR-V1.1","title":"Galileo:Solid State Imaging REDR Data","description":"This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 'N/A' LAST_IMAGE_TIME = 1990-11-30T22:05:39.077Z FIRST_IMAGE_NUMBER = 00030611.00 LAST_IMAGE_NUMBER = 00598912.00 FIRST_IMAGE_ID = 'N/A' LAST_IMAGE_ID = E1N0900 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0002/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:07.168741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A/E-SSI-2-REDR-V1.1","title":"Galileo:Solid State Imaging REDR Data","description":"This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 1991-09-06T20:22:12.638Z LAST_IMAGE_TIME = 1992-12-03T15:17:23.512Z FIRST_IMAGE_NUMBER = 00997579.45 LAST_IMAGE_NUMBER = 01643854.00 FIRST_IMAGE_ID = EGG0001 LAST_IMAGE_ID = E2H0466 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0007/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:12.161470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-A/C-SSI-2-REDR-V1.1","title":"Galileo:Solid State Imaging REDR Data","description":"This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 1993-07-22T22:35:34.497Z LAST_IMAGE_TIME = 1994-07-22T07:47:02.706Z FIRST_IMAGE_NUMBER = 01973272.00 LAST_IMAGE_NUMBER = 02492218.00 FIRST_IMAGE_ID = EJI0002 LAST_IMAGE_ID = EJZ3063 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0016/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:21.229079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J/JSA-SSI-2-REDR-V1.1","title":"GALILEO IMAGES FROM JUPITER ORBITS 1-3","description":"This volume, titled Galileo Images From Jupiter Orbits 1-3 (GO_0017), is a part of the Galileo Jupiter Orbital Operations Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0019. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during the first three orbits of the Jupiter Orbital Operations Phase of the mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== Jupiter Pre-Orbit 1 (Jupiter 0) ------------------------------- SCLK range: 346405900 - 349193900 (Optical Navigation-OPNAV) ERT range: 96/155:17:47:18.857 - 96/175:07:41:11.980 Jupiter Orbit 1 (Ganymede 1) ---------------------------- SCLK ranges: 349542152 - 350029800 356000600 - 359198400 (OPNAV) ERT ranges: 96/183-07:38:25.928 - 96/231-13:43:20.690 96/223:02:39:43.300 - 96/237:10:55:15.282 (OPNAV) Jupiter Orbit 2 (Ganymede 2) ---------------------------- SCLK ranges: 359251000 - 359322300 (OPNAV) 359402445 - 360361200 ERT ranges: 96/245:22:26:14.566 - 96/246:10:31:10.512 (OPNAV) 96/255-14:03:53.827 - 96/301-02:37:09.523 Orbit 3 (Callisto 3) -------------------- SCLK ranges: 368211900 - 368992339 372343200 - 374037400 (OPNAV) ERT ranges: 96/316-05:27:12.172 - 96/348-02:11:05.236 96/337:20:50:32.231 - 96/349:18:46:37.142 (OPNAV)","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0017/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:22.170307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"GO-J/JSA-SSI-2-REDR-V1.1\",","title":"GALILEO IMAGES FROM JUPITER ORBITS 11 - 17","description":"This volume, titled Galileo Images From Jupiter Orbits 11 - 17 (GO_0020), is a part of the Galileo Jupiter Orbital Operations and Galileo Europa Mission Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0020. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during three of the Jupiter Orbital Operations phases of the mission and extended Galileo Europa Mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== JUPITER ORBIT 11 EUROPA ======================= SCLK ranges: 420361400 - 420900345 ERT ranges: 97/313-18:06:10 - 97/348-15:22:08 JUPITER ORBIT 12 EUROPA ======================= SCLK ranges: 426117300 - 426273839 ERT ranges: 97/352-08:19:59 - 98/082-02:15:37 JUPITER ORBIT 12 EUROPA TIRE_TRACK ================================== SCLK ranges: 426272849 - 426272856 ERT ranges: 98/026:14:59:26 - 98/080:10:39:12 JUPITER ORBIT 14 EUROPA ======================= SCLK ranges: 440873539 - 441026827 ERT ranges: 98/090-03:50:04 - 98/148-20:59:05 JUPITER ORBIT 15 EUROPA ======================= SCLK ranges: 449841900 - 450111001 ERT ranges: 98/152-22:55:06 - 98/267-09:24:19 JUPITER ORBIT 17 EUROPA ======================= SCLK ranges: 466580845 - 466684900 ERT ranges: 98/270-08:58:01 - 99/026-06:09:21","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0020/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:25.179708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"GO-CAL-SSI-6-V1.0\"}","title":"GALILEO CALIBRATION FILES","description":"This volume, titled Galileo SSI Calibration Files,(GO_0001), is a part of the Galileo Solid State Imaging Raw EDR data set which resides on volumes GO_0002 thru GO_0023. Included are all calibration files required to properly decalibration the images obtained from the Galileo SSI Camera system. Contents of this volume include: =============================== the following types of calibration files: Calibration Slope Files, Dark Current files, Shutter Offset file and Blemish files.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:30.243484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J/JSA-SSI-2-REDR-V1.0","title":"GALILEO IMAGES FROM JUPITER ORBITS 1-3","description":"This volume, titled Galileo Images From Jupiter Orbits 1-3 (GO_0017), is a part of the Galileo Jupiter Orbital Operations Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0019. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during the first three orbits of the Jupiter Orbital Operations Phase of the mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== Jupiter Pre-Orbit 1 (Jupiter 0) ------------------------------- SCLK range: 346405900 - 349193900 (Optical Navigation-OPNAV) ERT range: 96/155:17:47:18.857 - 96/175:07:41:11.980 Jupiter Orbit 1 (Ganymede 1) ---------------------------- SCLK ranges: 349542152 - 350029800 356000600 - 359198400 (OPNAV) ERT ranges: 96/183-07:38:25.928 - 96/231-13:43:20.690 96/223:02:39:43.300 - 96/237:10:55:15.282 (OPNAV) Jupiter Orbit 2 (Ganymede 2) ---------------------------- SCLK ranges: 359251000 - 359322300 (OPNAV) 359402445 - 360361200 ERT ranges: 96/245:22:26:14.566 - 96/246:10:31:10.512 (OPNAV) 96/255-14:03:53.827 - 96/301-02:37:09.523 Orbit 3 (Callisto 3) -------------------- SCLK ranges: 368211900 - 368992339 372343200 - 374037400 (OPNAV) ERT ranges: 96/316-05:27:12.172 - 96/348-02:11:05.236 96/337:20:50:32.231 - 96/349:18:46:37.142 (OPNAV)","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0017/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:38.718539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"GO-J/JSA-SSI-2-REDR-V1.0\",","title":"GALILEO IMAGES FROM JUPITER ORBITS 11 - 17","description":"This volume, titled Galileo Images From Jupiter Orbits 11 - 17 (GO_0020), is a part of the Galileo Jupiter Orbital Operations and Galileo Europa Mission Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0020. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during three of the Jupiter Orbital Operations phases of the mission and extended Galileo Europa Mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== JUPITER ORBIT 11 EUROPA ======================= SCLK ranges: 420361400 - 420900345 ERT ranges: 97/313-18:06:10 - 97/348-15:22:08 JUPITER ORBIT 12 EUROPA ======================= SCLK ranges: 426117300 - 426273839 ERT ranges: 97/352-08:19:59 - 98/082-02:15:37 JUPITER ORBIT 12 EUROPA TIRE_TRACK ================================== SCLK ranges: 426272849 - 426272856 ERT ranges: 98/026:14:59:26 - 98/080:10:39:12 JUPITER ORBIT 14 EUROPA ======================= SCLK ranges: 440873539 - 441026827 ERT ranges: 98/090-03:50:04 - 98/148-20:59:05 JUPITER ORBIT 15 EUROPA ======================= SCLK ranges: 449841900 - 450111001 ERT ranges: 98/152-22:55:06 - 98/267-09:24:19 JUPITER ORBIT 17 EUROPA ======================= SCLK ranges: 466580845 - 466684900 ERT ranges: 98/270-08:58:01 - 99/026-06:09:21","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0020/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:41.763643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID11556-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11556","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11556. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1556/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:46.748086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID11559-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1559/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:47.746029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID11573-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11573","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11573. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1573/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:48.738082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFC3-5-ID11630-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1630/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:49.741674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID11656-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11656","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11656. Principal Investigator: M.R. Showalter Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1656/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:50.741220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID12003-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2003/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:51.749360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID12045-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12045","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12045. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2045/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:52.776857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID12119-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12119","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12119. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:53.829268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID12237-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12237","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12237. Principal Investigator: W.M. Grundy Target list: 174567-Varda, 2005EF298.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2237/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:54.780148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID12245-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12245","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12245. Principal Investigator: M.R. Showalter Target list: CUPID, MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2245/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:55.830368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID12436-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12436","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12436. Principal Investigator: M.R. Showalter Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2436/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:56.767769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID12463-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12463","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12463. Principal Investigator: H.B. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2463/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:57.769394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID12665-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12665","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12665. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2665/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:58.759212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID12675-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12675","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12675. Principal Investigator: K.S. Noll Target list: NECKLACE-NEBULA, NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2675/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:59.755472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID12725-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12725","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12725. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:00.755838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID12801-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12801","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12801. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2801/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:01.766317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID12894-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:02.768805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID12897-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12897","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12897. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2897/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:03.790094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID12980-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12980","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12980. Principal Investigator: K. Tsumura Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2980/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:04.846467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID13055-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13055","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13055. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3055/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:05.788160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID13067-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13067","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13067. Principal Investigator: G. Schneider Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3067/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:06.838238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID13315-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13315","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13315. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3315/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:07.779906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13404-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13404","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13404. Principal Investigator: W.M. Grundy Target list: 119979, 182933|2000CQ114|2003QW111|2003TJ58|80806.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3404/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:08.811931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID13414-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13414","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13414. Principal Investigator: M.R. Showalter Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3414/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:09.789468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID13620-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13620","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13620. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3620/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:10.798822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID13631-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13631","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13631. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3631/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:11.796074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13663-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13663","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13663. Principal Investigator: S.D. Benecchi Target list: KBO-G1.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3663/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:12.787583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13664-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13664","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13664. Principal Investigator: S.D. Benecchi Target list: 118378, 119070|1999HG12|2000QN251|2002VV130|2004VE131|2005SE278|2005SF278.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3664/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:13.797096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID13667-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13667","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13667. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3667/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:14.804676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13668-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13668","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13668. Principal Investigator: M.W. Buie Target list: ERIS, MAKEMAKE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3668/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:15.839966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13692-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13692","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13692. Principal Investigator: W.M. Grundy Target list: 1999-RT214, 2000-CQ114|2001-FL185|60458-2000-CM114.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3692/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:16.809602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID13712-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13712","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13712. Principal Investigator: K.M. Sayanagi Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3712/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:17.849758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13713-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13713","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13713. Principal Investigator: B. Sicardy Target list: CHARIKLORING.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3713/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:18.898109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13716-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13716","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13716. Principal Investigator: D.E. Trilling Target list: 2000-FC8, 2000-OB51|2000-PM30|2000-PN30|2011-JX31.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3716/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:19.806473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID13829-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:20.809887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13873-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13873","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13873. Principal Investigator: D. Ragozzine Target list: HAUMEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3873/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:21.813325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J/U/N-WFC3-5-ID13937-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13937","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13937. Principal Investigator: A. Simon Target list: JUPITER, NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3937/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:22.817928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID14042-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14042","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14042. Principal Investigator: Z. Levay Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4042/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:23.816925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID14044-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14044","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14044. Principal Investigator: I. de Pater Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4044/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:24.834907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID14045-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14045","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14045. Principal Investigator: I. de Pater Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4045/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:25.821431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID14053-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14053","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14053. Principal Investigator: J.R. Spencer Target list: 2014MU69, 2014PN70.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4053/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:26.860221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFC3-5-ID14064-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14064","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14064. Principal Investigator: A. Sanchez-Lavega Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4064/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:27.917920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID14113-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14113","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14113. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4113/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:28.858336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID14217-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14217","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14217. Principal Investigator: M.R. Showalter Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4217/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:29.908153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J/U-WFC3-5-ID14334-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4334/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:30.841987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID14492-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14492","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14492. Principal Investigator: M.H. Wong Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4492/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:31.832708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-WFC3-5-ID14499-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14499","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14499. Principal Investigator: Z. Levay Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4499/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:32.853564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J/U/N-WFC3-5-ID14756-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14756","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14756. Principal Investigator: A. Simon Target list: JUPITER, NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4756/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:33.859683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID14839-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14839","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14839. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4839/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:34.842578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID15262-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15262","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15262. Principal Investigator: A. Simon Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_5262/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:35.846755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID11556-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11556","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11556. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1556/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:37.876827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID11559-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1559/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:38.923160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID11573-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11573","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11573. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1573/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:39.970482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID11630-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1630/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:40.915046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID11656-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11656","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11656. Principal Investigator: M.R. Showalter Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1656/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:41.967265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID12003-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2003/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:42.886229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID12045-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12045","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12045. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2045/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:43.903054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID12119-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12119","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12119. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:44.894783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID12237-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12237","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12237. Principal Investigator: W.M. Grundy Target list: 174567-Varda, 2005EF298.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2237/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:45.892492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID12245-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12245","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12245. Principal Investigator: M.R. Showalter Target list: CUPID, MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2245/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:46.890268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID12436-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12436","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12436. Principal Investigator: M.R. Showalter Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2436/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:47.900273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID12463-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12463","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12463. Principal Investigator: H.B. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2463/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:48.900654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID12665-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12665","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12665. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2665/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:49.951729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID12675-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12675","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12675. Principal Investigator: K.S. Noll Target list: NECKLACE-NEBULA, NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2675/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:50.978527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID12801-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12801","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12801. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2801/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:51.929685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID12894-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:52.973999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID13055-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13055","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13055. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3055/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:53.926971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID13067-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13067","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13067. Principal Investigator: G. Schneider Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3067/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:54.909114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13663-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13663","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13663. Principal Investigator: S.D. Benecchi Target list: KBO-G1.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3663/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:55.923992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13664-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13664","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13664. Principal Investigator: S.D. Benecchi Target list: 118378, 119070|1999HG12|2000QN251|2002VV130|2004VE131|2005SE278|2005SF278.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3664/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:56.913982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFC3-5-ID13667-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13667","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13667. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3667/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:57.917531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13668-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13668","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13668. Principal Investigator: M.W. Buie Target list: ERIS, MAKEMAKE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3668/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:58.930016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13692-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13692","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13692. Principal Investigator: W.M. Grundy Target list: 1999-RT214, 2000-CQ114|2001-FL185|60458-2000-CM114.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3692/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:59.924536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID13712-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13712","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13712. Principal Investigator: K.M. Sayanagi Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3712/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:00.940871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13713-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13713","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13713. Principal Investigator: B. Sicardy Target list: CHARIKLORING.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3713/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:01.992168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13716-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13716","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13716. Principal Investigator: D.E. Trilling Target list: 2000-FC8, 2000-OB51|2000-PM30|2000-PN30|2011-JX31.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3716/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:02.935498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID13829-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:03.987725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID13873-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13873","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13873. Principal Investigator: D. Ragozzine Target list: HAUMEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3873/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:05.035046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID14042-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14042","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14042. Principal Investigator: Z. Levay Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4042/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:05.951240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFC3-5-ID14053-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14053","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14053. Principal Investigator: J.R. Spencer Target list: 2014MU69, 2014PN70.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4053/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:06.937015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFC3-5-ID14064-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14064","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14064. Principal Investigator: A. Sanchez-Lavega Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4064/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:07.946367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID14334-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4334/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:08.953836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID14492-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14492","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14492. Principal Investigator: M.H. Wong Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4492/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:09.946891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-WFC3-5-ID14499-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14499","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14499. Principal Investigator: Z. Levay Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4499/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:10.956369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID15262-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15262","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15262. Principal Investigator: A. Simon Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_5262/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:11.955697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFC3-5-ID11559-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_1559/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:14.044517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFC3-5-ID11630-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_1630/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:14.997043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFC3-5-ID14334-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_4334/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:16.044347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID9296-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9296","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9296. Principal Investigator: H. Ford Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9296/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:18.245288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID9354-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:19.288292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-ACS-5-ID9384-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9384","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9384. Principal Investigator: P. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9384/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:20.241907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID9385-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9385/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:21.287333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-ACS-5-ID9391-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9391","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9391. Principal Investigator: M. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9391/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:22.236834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID9426-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9426","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9426. Principal Investigator: M. Showalter Target list: ADRASTEA, J RINGS|METIS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9426/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:23.245678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID9440-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:24.262018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID9725-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:25.252477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID9745-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9745","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9745. Principal Investigator: M.T. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9745/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:26.261109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID9823-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9823","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9823. Principal Investigator: M.R. Showalter Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9823/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:27.264721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-ACS-5-ID9975-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9975","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9975. Principal Investigator: P.B. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9975/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:28.254423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10102-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10102","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10102. Principal Investigator: M.R. Showalter Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0102/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:29.263284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10140-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10140","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10140. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0140/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:30.305449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID10156-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10156","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10156. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0156/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:31.346336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10192-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10192","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10192. Principal Investigator: E. Karkoschka Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0192/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:32.298167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-ACS-5-ID10398-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10398","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10398. Principal Investigator: M.R. Showalter Target list: N RINGS, NAIAD|NEPTUNE|THALASSA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0398/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:33.347440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-ACS-5-ID10422-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10422","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10422. Principal Investigator: J.M. Bauer Target list: TRITON.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0422/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:34.262134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-ACS-5-ID10423-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10423","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10423. Principal Investigator: H.B. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0423/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:35.276761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-ACS-5-ID10427-V1.3","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:36.274311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10473-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10473","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10473. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0473/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:37.277170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10502-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10502","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10502. Principal Investigator: J.T. Clarke Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0502/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:38.291153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID10506-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10506","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10506. Principal Investigator: J.M. Gerard Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0506/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:39.291662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10507-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0507/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:40.287992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-ACS-5-ID10534-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0534/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:41.308970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-ACS-5-ID10774-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10774","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10774. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0774/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:42.359764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10782-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:43.307173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10783-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10783","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10783. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0783/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:44.355801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10805-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10805","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10805. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:45.286292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-ACS-5-ID10860-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10860","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10860. Principal Investigator: M.E. Brown Target list: 2002UX25, 2003UB313|90482ORCUS|MAKEMAKE|SEDNA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0860/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:46.290635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J/S-ACS-5-ID10862-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: JUPITER, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0862/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:47.303133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10870-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0870/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:48.308832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10871-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:49.308449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID11055-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11055","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11055. Principal Investigator: C.R. Proffitt Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1055/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:50.316087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID11085-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1085/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:51.299356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID11566-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11566","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11566. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1566/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:52.332554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID11970-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11970","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11970. Principal Investigator: J.T. Clarke Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1970/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:53.368283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID11984-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11984","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11984. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1984/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:54.320156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID12003-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2003/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:55.367566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID12176-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12176","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12176. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2176/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:56.318269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID12395-V1.3","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2395/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:57.320137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID12601-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2601/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:58.319384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID12660-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12660","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12660. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2660/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:59.329406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID13012-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:00.328629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID13051-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13051","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13051. Principal Investigator: J.D. Nichols Target list: CALIBRATION, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_3051/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:01.329560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID9296-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9296","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9296. Principal Investigator: H. Ford Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9296/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:03.340020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID9354-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:04.386650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-ACS-5-ID9384-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9384","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9384. Principal Investigator: P. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9384/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:05.421903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID9385-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9385/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:06.376275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-ACS-5-ID9391-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9391","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9391. Principal Investigator: M. Buie Target list: CALIBRATION, PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9391/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:07.424942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID9426-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9426","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9426. Principal Investigator: M. Showalter Target list: ADRASTEA, J RINGS|METIS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9426/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:08.342990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID9440-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:09.352964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID9725-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:10.347797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID9745-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9745","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9745. Principal Investigator: M.T. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9745/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:11.356728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID9823-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9823","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9823. Principal Investigator: M.R. Showalter Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9823/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:12.351128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-ACS-5-ID9975-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9975","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9975. Principal Investigator: P.B. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9975/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:13.354470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10102-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10102","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10102. Principal Investigator: M.R. Showalter Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0102/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:14.362870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10140-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10140","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10140. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0140/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:15.384467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID10156-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10156","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10156. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0156/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:16.439365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10192-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10192","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10192. Principal Investigator: E. Karkoschka Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0192/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:17.387933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-ACS-5-ID10398-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10398","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10398. Principal Investigator: M.R. Showalter Target list: N RINGS, NAIAD|NEPTUNE|THALASSA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0398/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:18.435135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-ACS-5-ID10422-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10422","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10422. Principal Investigator: J.M. Bauer Target list: TRITON.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0422/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:19.375297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-ACS-5-ID10423-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10423","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10423. Principal Investigator: H.B. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0423/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:20.375279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-ACS-5-ID10427-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:21.379809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10473-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10473","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10473. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0473/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:22.378837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10502-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10502","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10502. Principal Investigator: J.T. Clarke Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0502/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:23.384251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID10506-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10506","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10506. Principal Investigator: J.M. Gerard Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0506/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:24.378317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10507-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0507/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:25.402975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-ACS-5-ID10534-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0534/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:26.396155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-ACS-5-ID10774-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10774","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10774. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0774/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:27.446427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10782-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:28.397552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10783-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10783","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10783. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0783/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:29.444533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10805-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10805","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10805. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:30.494636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID10870-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0870/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:31.400450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10871-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:32.407681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID11055-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11055","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11055. Principal Investigator: C.R. Proffitt Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1055/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:33.410137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID11085-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1085/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:34.405930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID11566-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11566","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11566. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1566/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:35.422026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID11970-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11970","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11970. Principal Investigator: J.T. Clarke Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1970/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:36.418244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID11984-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11984","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11984. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1984/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:37.422513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID12003-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2003/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:38.455782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID12176-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12176","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12176. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2176/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:39.506394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID12395-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2395/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:40.455042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID12601-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2601/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:41.501773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID12660-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12660","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12660. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2660/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:42.425693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-ACS-5-ID13012-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:43.424989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-ACS-5-ID10427-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_0427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:45.439067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-ACS-5-ID10507-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_0507/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:46.431454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID12395-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_2395/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:47.436179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-ACS-5-ID10427-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.2/HSTJ1_0427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:49.476677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-ACS-5-ID12395-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.2/HSTJ1_2395/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:50.518505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-NICMOS-5-ID7176-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7176","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7176. Principal Investigator: B.A. SMITH Target list: CALIBRATION, MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7176/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:52.608109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-NICMOS-5-ID7178-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7178","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7178. Principal Investigator: B.A. SMITH Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7178/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:53.664988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-NICMOS-5-ID7179-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7179","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7179. Principal Investigator: B.A. SMITH Target list: CALIBRATION, ENCELADUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7179/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:54.613707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-NICMOS-5-ID7180-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7180","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7180. Principal Investigator: B.A. Smith Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7180/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:55.659158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-NICMOS-5-ID7181-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7181","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7181. Principal Investigator: B.A. SMITH Target list: U RINGS, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7181/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:56.711982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-NICMOS-5-ID7182-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7182","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7182. Principal Investigator: B.A. SMITH Target list: NEPTUNE, PROTEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7182/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:57.634743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-NICMOS-5-ID7183-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7183","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7183. Principal Investigator: B.A. SMITH Target list: PUCK, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7183/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:58.629399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-NICMOS-5-ID7223-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7223","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7223. Principal Investigator: R. TERRILE Target list: CHARON.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7223/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:59.627497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-NICMOS-5-ID7241-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7241","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7241. Principal Investigator: B.A. SMITH Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7241/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:00.639302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-NICMOS-5-ID7242-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7242","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7242. Principal Investigator: B.A. SMITH Target list: CALIBRATION, NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7242/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:01.630772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-NICMOS-5-ID7243-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7243","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7243. Principal Investigator: R. Terrile Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7243/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:02.637255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-NICMOS-5-ID7244-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7244","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7244. Principal Investigator: R. Terrile Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7244/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:03.643511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-NICMOS-5-ID7319-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7319","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7319. Principal Investigator: J. Goguen Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7319/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:04.672450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-NICMOS-5-ID7324-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7324/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:05.723781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-NICMOS-5-ID7429-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7429/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:06.668384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-NICMOS-5-ID7445-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7445","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7445. Principal Investigator: R. BEEBE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7445/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:08.025419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-NICMOS-5-ID7818-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7818","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7818. Principal Investigator: M. BUIE Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7818/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:08.650498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-NICMOS-5-ID7823-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7823","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7823. Principal Investigator: M. Tomasko Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7823/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:09.660843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-NICMOS-5-ID7885-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7885","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7885. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7885/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:10.664438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-NICMOS-5-ID9354-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:11.659720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-NICMOS-5-ID9355-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9355","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9355. Principal Investigator: E. Karkoschka Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9355/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:12.670409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-NICMOS-5-ID9904-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9904","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9904. Principal Investigator: W.B. Sparks Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9904/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:13.666220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-NICMOS-5-ID10161-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10161","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10161. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_0161/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:14.655637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-NICMOS-5-ID10786-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10786","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10786. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_0786/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:15.685429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-NICMOS-5-ID11118-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1118/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:16.736939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-NICMOS-5-ID11190-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11190","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11190. Principal Investigator: L.M. Trafton Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1190/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:17.678680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-NICMOS-5-ID11498-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1498/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:18.728884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID6854-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_6854/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:20.674509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7308-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:21.679922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7309-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7309/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:22.686903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID7316-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7316/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:23.682277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7317-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7317/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:24.688831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID7439-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7439/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:25.688040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7444-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7444/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:26.698412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7583-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7583/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:27.748612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-L/J/S-STIS-5-ID7717-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON, S RINGS, SATURN, TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7717/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:28.694171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7769-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7769/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:29.735006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7939-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7939/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:30.790284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8108-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8108/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:31.710288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID8117-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8117","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8117. Principal Investigator: J. Trauger Target list: SATURN, TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8117/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:32.700621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID8158-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8158/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:33.708670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8169-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:34.723623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8171-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8171/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:35.716066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8224-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8224/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:36.709347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8657-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8657","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8657. Principal Investigator: J. Clarke Target list: CALIBRATION, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8657/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:37.713643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J/S/U/N-STIS-5-ID8661-V1.3","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8661/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:38.752076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID9035-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9035/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:39.794844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID9112-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9112","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9112. Principal Investigator: D. Cruikshank Target list: DIONE, FLATFIELD|S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9112/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:40.747373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9119-V1.3","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:41.797499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-STIS-5-ID9330-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9330","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9330. Principal Investigator: E. Karkoschka Target list: CALIBRATION, FLATFIELD|NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9330/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:42.722316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9440-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:43.731023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9685-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9685/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:44.731531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID10083-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_0083/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:45.739404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID11649-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11649","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11649. Principal Investigator: J.M. Gerard Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_1649/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:46.729623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID12041-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12041","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12041. Principal Investigator: J.C. Green Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2041/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:47.737543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID12235-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12235","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12235. Principal Investigator: J.M. Gerard Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2235/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:48.742504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID12239-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2239/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:49.762229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID12244-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12244","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12244. Principal Investigator: J. Saur Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2244/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:50.818685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID12478-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2478/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:51.756611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID12601-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2601/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:52.807225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID12883-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2883/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:53.753939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID12894-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:54.752366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID12900-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12900","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12900. Principal Investigator: E. Young Target list: FLATFIELD, TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2900/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:55.762607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID13012-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:56.768741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13035-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13035","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13035. Principal Investigator: S.V. Badman Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3035/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:57.770449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13040-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13040","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13040. Principal Investigator: J. Saur Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3040/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:58.766963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13328-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13328","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13328. Principal Investigator: J.D. Nichols Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3328/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:59.767110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13336-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13336","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13336. Principal Investigator: L. Roth Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3336/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:00.784608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID13396-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13396","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13396. Principal Investigator: S.V. Badman Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3396/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:01.827387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13619-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13619","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13619. Principal Investigator: L. Roth Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3619/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:02.782290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13620-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13620","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13620. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3620/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:03.816298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13679-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3679/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:04.866836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID13694-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3694/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:05.778557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-STIS-5-ID13736-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3736/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:06.781313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13805-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:07.801825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13829-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:08.797824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID14036-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14036","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14036. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4036/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:09.791215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID14105-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14105","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14105. Principal Investigator: J.D. Nichols Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4105/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:10.806483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID14112-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14112","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14112. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4112/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:11.794956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID14113-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14113","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14113. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4113/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:12.829741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID14267-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14267","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14267. Principal Investigator: L. Lamy Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4267/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:13.880927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID14795-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14795","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14795. Principal Investigator: F. Crary Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4795/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:14.824970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID14891-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14891","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14891. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4891/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:15.876505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID14903-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14903","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14903. Principal Investigator: L. Roth Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4903/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:16.813464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID14930-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14930","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14930. Principal Investigator: W.B. Sparks Target list: CALIBRATION, EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4930/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:17.797960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID14931-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14931","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14931. Principal Investigator: L.B. Jaffel Target list: SATURN, TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4931/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:18.804497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID15371-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15371","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15371. Principal Investigator: J.W. MacKenty Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_5371/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:19.807598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-STIS-5-ID15380-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15380","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15380. Principal Investigator: L. Lamy Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_5380/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:20.812433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID6854-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_6854/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:22.812585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7308-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:23.834783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7309-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7309/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:24.889441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID7316-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7316/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:25.836021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7317-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7317/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:26.885029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID7439-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7439/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:27.824546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7444-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7444/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:28.839066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7583-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7583/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:29.839365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7769-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7769/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:30.836530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7939-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7939/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:31.848750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8108-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8108/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:32.839948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID8158-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8158/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:33.835281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8169-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:34.858520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8171-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8171/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:35.894096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8224-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8224/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:36.849142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8661-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8661/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:37.898173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID9035-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9035/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:38.945817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9119-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:39.852402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9440-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:40.877835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9685-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9685/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:41.859944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID10083-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_0083/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:42.866445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID12239-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2239/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:43.868093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID12478-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2478/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:44.872250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID12883-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2883/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:45.875758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID12894-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:46.906732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID13012-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:47.957972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13679-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3679/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:48.904639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID13694-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3694/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:49.955829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-STIS-5-ID13736-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3736/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:50.883954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13805-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:51.891814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13829-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:52.898905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID6854-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_6854/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:54.896995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7308-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:55.898382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7309-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7309/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:56.904630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID7316-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7316/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:57.918716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7317-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7317/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:58.969818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID7439-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7439/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:59.914541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7444-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7444/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:00.964049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7583-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7583/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:01.910960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7769-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7769/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:02.910502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID7939-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7939/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:03.916147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8108-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8108/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:04.919408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID8158-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8158/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:05.929841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8169-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:06.926647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8171-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8171/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:07.922250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8224-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8224/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:08.928886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8661-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8661/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:09.985732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID9035-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9035/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:10.928680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9119-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:11.973665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9440-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:13.024875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9685-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9685/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:13.947520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID10083-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_0083/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:14.948747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID12239-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2239/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:15.956446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID12478-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2478/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:16.947097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID12883-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2883/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:17.955755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID12894-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:18.944704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-STIS-5-ID13012-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:19.947747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13679-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3679/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:20.987429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-STIS-5-ID13694-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3694/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:22.030080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-STIS-5-ID13736-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3736/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:22.982489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13805-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:24.034044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID13829-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:24.956104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID8661-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.2/HSTO0_8661/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:26.985343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-STIS-5-ID9119-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.2/HSTO0_9119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:27.976127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5167-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5167","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5167. Principal Investigator: T. LAURENCE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5167/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:29.967187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5216-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5216","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5216. Principal Investigator: J.T. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5216/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:30.973798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5217-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5217","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5217. Principal Investigator: J.T. Trauger Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5217/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:31.996143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5218-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5218","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5218. Principal Investigator: J.T. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5218/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:33.042842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5219-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5219","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5219. Principal Investigator: J.T. Trauger Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5219/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:33.992303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID5220-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5220","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5220. Principal Investigator: J.T. Trauger Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5220/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:35.043930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID5221-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5221","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5221. Principal Investigator: J.T. Trauger Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5221/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:35.980552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5313-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5313","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5313. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5313/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:36.992942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID5321-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5321","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5321. Principal Investigator: K. Seidelmann Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5321/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:37.989106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5392-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5392","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5392. Principal Investigator: J.R. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5392/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:38.988788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5508-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5508","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5508. Principal Investigator: P.H. Smith Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5508/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:39.997068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5640-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5640","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5640. Principal Investigator: H.A. Weaver Target list: JUPITER, SHOEMAKER LEVY 9.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5640/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:40.996062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5642-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5642","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5642. Principal Investigator: A. Storrs Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5642/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:42.002540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5776-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5776","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5776. Principal Investigator: R. Beebe Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5776/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:43.010211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5782-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5782","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5782. Principal Investigator: B. Amanda Target list: S RINGS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:44.066000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5824-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5824","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5824. Principal Investigator: A.S. Bosh Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5824/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:45.004791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5828-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5828","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5828. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5828/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:46.050544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID5831-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5831","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5831. Principal Investigator: H. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5831/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:47.007173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5836-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5836","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5836. Principal Investigator: P. Nicholson Target list: S RINGS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5836/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:48.009598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5837-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5837","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5837. Principal Investigator: K.S. Noll Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5837/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:49.014275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6009-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6009","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6009. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6009/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:50.022641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6025-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6025","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6025. Principal Investigator: M. MCGRATH Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6025/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:51.022394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6028-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6028","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6028. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6028/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:52.024248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6029-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6029","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6029. Principal Investigator: J. Spencer Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6029/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:53.020998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S/U-WFPC2-5-ID6030-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6030","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6030. Principal Investigator: M. Tomasko Target list: S RINGS, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6030/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:54.033998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6141-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6141","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6141. Principal Investigator: R. Yelle Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6141/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:55.071739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6145-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6145","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6145. Principal Investigator: P. Feldman Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6145/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:56.114664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6215-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6215","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6215. Principal Investigator: J. Trauger Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6215/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:57.063687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6216-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6216","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6216. Principal Investigator: J. Trauger Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6216/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:58.111926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6218-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6218","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6218. Principal Investigator: J. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6218/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:59.045883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID6219-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6219","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6219. Principal Investigator: J. Trauger Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6219/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:00.037118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6295-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6295","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6295. Principal Investigator: J. Caldwell Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6295/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:01.044559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6315-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6315","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6315. Principal Investigator: R. Yelle Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6315/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:02.051598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6328-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6328","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6328. Principal Investigator: J. Caldwell Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6328/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:03.051460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6452-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6452","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6452. Principal Investigator: R. BEEBE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6452/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:04.050496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6509-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6509","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6509. Principal Investigator: K. RAGES Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6509/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:05.050803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6648-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6648","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6648. Principal Investigator: J.C.M. GERARD Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6648/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:06.070610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID6650-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6650","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6650. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6650/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:07.123952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6662-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6662","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6662. Principal Investigator: J.C.M. GERARD Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6662/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:08.071766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6733-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6733","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6733. Principal Investigator: E. YOUNG Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6733/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:09.122549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6743-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6743","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6743. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6743/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:10.064439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6752-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6752","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6752. Principal Investigator: J. Goguen Target list: CALLISTO, EUROPA|GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6752/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:11.068512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID6753-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6753","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6753. Principal Investigator: P.K. Seidelmann Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6753/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:12.067783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6774-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6774","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6774. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6774/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:13.066254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6803-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6803","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6803. Principal Investigator: T. Denk Target list: IAPETUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6803/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:14.068798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6806-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6806","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6806. Principal Investigator: R.G. FRENCH Target list: PROMETHEUS, S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6806/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:15.071734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID6818-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6818","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6818. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6818/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:16.073384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6842-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6842","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6842. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6842/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:17.087002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID6846-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6846","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6846. Principal Investigator: H. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6846/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:18.129546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6853-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6853","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6853. Principal Investigator: J. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6853/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:19.083873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID7308-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:20.129981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID7321-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7321","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7321. Principal Investigator: M.T. LEMMON Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7321/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:21.177746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID7324-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7324/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:22.096783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID7427-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7427","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7427. Principal Investigator: R.G. French Target list: PROMETHEUS, S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:23.095337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID7429-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7429/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:24.095410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID7430-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7430","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7430. Principal Investigator: R.A. WEST Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7430/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:25.097117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID7589-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7589","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7589. Principal Investigator: J. CALDWELL Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7589/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:26.107302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID7616-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7616","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7616. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7616/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:27.113475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-L/J/S-WFPC2-5-ID7717-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7717/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:28.103147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID8148-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8148","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8148. Principal Investigator: G. Orton Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8148/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:29.141412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID8169-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:30.194745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID8398-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8398","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8398. Principal Investigator: R. French Target list: PROMETHEUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8398/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:31.139053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID8405-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8405","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8405. Principal Investigator: K. Noll Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8405/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:32.192145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-WFPC2-5-ID8577-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8577","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8577. Principal Investigator: P. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8577/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:33.118146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-WFPC2-5-ID8579-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8579","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8579. Principal Investigator: M. Showalter Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8579/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:34.119350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID8580-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8580","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8580. Principal Investigator: E. Young Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8580/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:35.117901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFPC2-5-ID8634-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8634","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8634. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8634/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:36.122408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID8660-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8660","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8660. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8660/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:37.126544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID8680-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8680","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8680. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8680/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:38.127702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID8802-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8802","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8802. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8802/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:39.127288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID8871-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8871","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8871. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:40.157174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID9235-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9235","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9235. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9235/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:41.202555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9256-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9256","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9256. Principal Investigator: J. Biretta Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9256/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:42.151474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9341-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9341","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9341. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9341/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:43.201329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID9344-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9344","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9344. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9344/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:44.133233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9354-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:45.141626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9385-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9385/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:46.137151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID9393-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9393","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9393. Principal Investigator: L. Sromovsky Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9393/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:47.151747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID9725-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:48.163468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9809-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9809","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9809. Principal Investigator: R.G. French Target list: PROMETHEUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9809/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:49.151473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFPC2-5-ID10170-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10170","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10170. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0170/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:50.154331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID10357-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10357","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10357. Principal Investigator: A.J. Verbiscer Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0357/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:51.158704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID10468-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10468","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10468. Principal Investigator: E. Karkoschka Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0468/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:52.216222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFPC2-5-ID10534-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0534/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:53.163796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID10782-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:54.211874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-P-WFPC2-5-ID10786-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10786","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10786. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0786/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:55.258205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-X-WFPC2-5-ID10860-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10860","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10860. Principal Investigator: M.E. Brown Target list: HAUMEA, QUAOAR.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0860/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:56.164216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID10862-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0862/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:57.174548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID10870-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0870/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:58.177453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID10871-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:59.169108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11085-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1085/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:00.176556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11096-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11096","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11096. Principal Investigator: K. Noll Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1096/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:01.199932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11102-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11102","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11102. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1102/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:02.177067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID11118-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1118/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:03.232769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFPC2-5-ID11156-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11156","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11156. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1156/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:04.271196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID11292-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11292","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11292. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1292/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:05.219777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11310-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11310","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11310. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1310/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:06.267814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11498-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1498/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:07.192375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID11956-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11956","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11956. Principal Investigator: K.S. Noll Target list: TITAN, UNK.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1956/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:08.209827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5167-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5167","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5167. Principal Investigator: T. LAURENCE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5167/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:10.344573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5216-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5216","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5216. Principal Investigator: J.T. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5216/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:11.326710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5217-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5217","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5217. Principal Investigator: J.T. Trauger Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5217/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:12.348258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5218-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5218","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5218. Principal Investigator: J.T. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5218/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:13.347227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5219-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5219","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5219. Principal Investigator: J.T. Trauger Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5219/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:14.339594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID5220-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5220","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5220. Principal Investigator: J.T. Trauger Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5220/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:15.347308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID5221-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5221","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5221. Principal Investigator: J.T. Trauger Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5221/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:16.349979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5313-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5313","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5313. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5313/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:17.381797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID5321-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5321","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5321. Principal Investigator: K. Seidelmann Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5321/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:18.440702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5392-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5392","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5392. Principal Investigator: J.R. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5392/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:19.376029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5508-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5508","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5508. Principal Investigator: P.H. Smith Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5508/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:20.426449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5640-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5640","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5640. Principal Investigator: H.A. Weaver Target list: JUPITER, SHOEMAKER LEVY 9.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5640/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:21.370838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5642-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5642","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5642. Principal Investigator: A. Storrs Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5642/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:22.370516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5776-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5776","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5776. Principal Investigator: R. Beebe Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5776/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:23.367843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5782-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5782","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5782. Principal Investigator: B. Amanda Target list: S RINGS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:24.375887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5824-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5824","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5824. Principal Investigator: A.S. Bosh Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5824/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:25.388053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5828-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5828","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5828. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5828/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:26.380399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID5831-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5831","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5831. Principal Investigator: H. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5831/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:27.390947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID5836-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5836","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5836. Principal Investigator: P. Nicholson Target list: S RINGS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5836/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:28.410543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID5837-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5837","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5837. Principal Investigator: K.S. Noll Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5837/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:29.448476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6009-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6009","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6009. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6009/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:30.504372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6025-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6025","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6025. Principal Investigator: M. MCGRATH Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6025/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:31.434219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6028-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6028","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6028. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6028/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:32.484397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6029-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6029","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6029. Principal Investigator: J. Spencer Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6029/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:33.420200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S/U-WFPC2-5-ID6030-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6030","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6030. Principal Investigator: M. Tomasko Target list: S RINGS, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6030/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:34.414249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6141-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6141","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6141. Principal Investigator: R. Yelle Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6141/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:35.413472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6145-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6145","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6145. Principal Investigator: P. Feldman Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6145/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:36.418869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6215-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6215","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6215. Principal Investigator: J. Trauger Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6215/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:37.425563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6216-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6216","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6216. Principal Investigator: J. Trauger Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6216/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:38.438170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6218-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6218","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6218. Principal Investigator: J. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6218/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:39.428876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID6219-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6219","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6219. Principal Investigator: J. Trauger Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6219/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:40.455218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6295-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6295","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6295. Principal Investigator: J. Caldwell Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6295/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:41.501287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6315-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6315","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6315. Principal Investigator: R. Yelle Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6315/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:42.446117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6328-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6328","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6328. Principal Investigator: J. Caldwell Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6328/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:43.492906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6452-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6452","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6452. Principal Investigator: R. BEEBE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6452/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:44.446290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6509-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6509","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6509. Principal Investigator: K. RAGES Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6509/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:45.448688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6648-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6648","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6648. Principal Investigator: J.C.M. GERARD Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6648/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:46.451982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID6650-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6650","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6650. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6650/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:47.457581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6662-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6662","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6662. Principal Investigator: J.C.M. GERARD Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6662/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:48.463005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6733-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6733","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6733. Principal Investigator: E. YOUNG Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6733/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:49.467434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6743-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6743","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6743. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6743/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:50.465160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6752-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6752","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6752. Principal Investigator: J. Goguen Target list: CALLISTO, EUROPA|GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6752/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:51.471617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID6753-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6753","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6753. Principal Investigator: P.K. Seidelmann Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6753/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:52.511329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6774-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6774","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6774. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6774/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:53.552189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6803-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6803","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6803. Principal Investigator: T. Denk Target list: IAPETUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6803/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:54.502535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID6806-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6806","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6806. Principal Investigator: R.G. FRENCH Target list: PROMETHEUS, S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6806/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:55.551834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID6818-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6818","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6818. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6818/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:56.485277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6842-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6842","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6842. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6842/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:57.498088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID6846-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6846","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6846. Principal Investigator: H. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6846/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:58.502429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID6853-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6853","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6853. Principal Investigator: J. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6853/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:59.501765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID7308-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:00.502237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID7321-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7321","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7321. Principal Investigator: M.T. LEMMON Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7321/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:01.508211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID7324-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7324/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:02.511708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID7427-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7427","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7427. Principal Investigator: R.G. French Target list: PROMETHEUS, S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:03.517930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID7429-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7429/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:04.577871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID7430-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7430","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7430. Principal Investigator: R.A. WEST Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7430/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:05.531317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID7589-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7589","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7589. Principal Investigator: J. CALDWELL Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7589/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:06.562715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID7616-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7616","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7616. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7616/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:07.613713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-L/J/S-WFPC2-5-ID7717-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7717/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:08.540693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID8148-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8148","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8148. Principal Investigator: G. Orton Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8148/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:09.550639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID8169-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:10.554854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID8398-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8398","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8398. Principal Investigator: R. French Target list: PROMETHEUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8398/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:11.538330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID8405-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8405","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8405. Principal Investigator: K. Noll Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8405/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:12.548174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-WFPC2-5-ID8577-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8577","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8577. Principal Investigator: P. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8577/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:13.548679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-M-WFPC2-5-ID8579-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8579","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8579. Principal Investigator: M. Showalter Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8579/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:14.563086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID8580-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8580","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8580. Principal Investigator: E. Young Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8580/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:15.577735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFPC2-5-ID8634-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8634","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8634. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8634/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:16.628760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID8660-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8660","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8660. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8660/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:17.571691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID8680-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8680","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8680. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8680/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:18.620405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID8802-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8802","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8802. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8802/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:19.667106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID8871-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8871","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8871. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:20.593655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID9235-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9235","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9235. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9235/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:21.578609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9256-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9256","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9256. Principal Investigator: J. Biretta Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9256/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:22.591864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9341-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9341","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9341. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9341/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:23.590530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID9344-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9344","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9344. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9344/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:24.602643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9354-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:25.602482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9385-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9385/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:26.614150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-N-WFPC2-5-ID9393-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9393","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9393. Principal Investigator: L. Sromovsky Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9393/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:27.646107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID9725-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:28.683277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID9809-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9809","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9809. Principal Investigator: R.G. French Target list: PROMETHEUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9809/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:29.629937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFPC2-5-ID10170-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10170","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10170. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0170/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:30.681027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID10357-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10357","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10357. Principal Investigator: A.J. Verbiscer Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0357/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:31.625555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID10468-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10468","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10468. Principal Investigator: E. Karkoschka Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0468/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:32.624690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFPC2-5-ID10534-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0534/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:33.632995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID10782-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:34.632040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID10862-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0862/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:35.642374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID10870-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0870/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:36.654988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID10871-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:37.645845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11085-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1085/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:38.648457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11096-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11096","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11096. Principal Investigator: K. Noll Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1096/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:39.699159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11102-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11102","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11102. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1102/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:40.742986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID11118-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1118/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:41.689576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U/N-WFPC2-5-ID11156-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11156","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11156. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1156/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:42.738970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-U-WFPC2-5-ID11292-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11292","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11292. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1292/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:43.671526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11310-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11310","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11310. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1310/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:44.672601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-5-ID11498-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1498/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:45.681100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-5-ID11956-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11956","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11956. Principal Investigator: K.S. Noll Target list: TITAN, UNK.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1956/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:46.674456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-L-JIRAM-2-EDR-V3.0","title":"JUNO JIRAM EDR OBSERVATIONS","description":"This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_1000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:52.806908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J-JIRAM-2-EDR-V1.0","title":"JUNO JIRAM EDR OBSERVATIONS","description":"This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:53.850961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-L-JIRAM-3-RDR-V3.0","title":"JUNO JIRAM RDR OBSERVATIONS","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2013-10-09.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_2000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:18:01.574812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J-JIRAM-3-RDR-V1.0","title":"JUNO JIRAM RDR OBSERVATIONS","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2016-07-10 to 2016-07-20.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:18:02.571324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"JUNO-J-JUNOCAM-2-EDR-L0-V1.0\",","title":"NULL","description":"This volume contains Juno JunoCam data in their original, compressed format (EDR) and decompressed, processed format (RDR). In addition, mosaics of one or more individual JunoCam images are combined to create global and regional map products. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJNC_0xxx/JNOJNC_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:11.433544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"JNO-J/E/SS-SPICE-6-V1.0","title":"JUNO SPICE FILES","description":"This volume contains navigation and ancillary data in the form of SPICE System kernel files for the JUNO spacecraft and instruments. The data on this volume are released at intervals and may not be complete. Consult the ``catalog/release.cat'' file for information concerning release dates.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOSP_xxxx/JNOSP_1000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:44.664881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"JNO-J-SRU-EDR-2-L0-V1.0\",","title":"NULL","description":"This volume contains Juno Stellar Reference Unit data in their original, uncompressed format (EDR) and tables of derived count rates. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOSRU_xxxx/JNOSRU_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:46.603985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J/P/SS-SPICE-6-V1.0","title":"NEW HORIZONS SPICE FILES","description":"This volume contains navigation and ancillary data in the form of SPICE System kernel files for the New Horizons spacecraft and its instruments.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHSP_xxxx/NHSP_1000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:48.612607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-2-JUPITER-V3.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHJULO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:52.629034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-3-JUPITER-V3.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHJULO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:53.682569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM2-V1.0","title":"NEW HORIZONS LORRI KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHK2LO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:54.628363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM2-V1.0","title":"NEW HORIZONS LORRI KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHK2LO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:55.675295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS LORRI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKCLO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:56.627511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKCLO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:57.646405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V6.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:58.640157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V6.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:59.641992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-LAUNCH-V3.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHLALO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:00.640615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-LAUNCH-V3.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHLALO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:01.633227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS LORRI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPCLO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:02.644771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPCLO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:03.663994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-2-PLUTO-V3.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:04.686693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-3-PLUTO-V3.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:05.733005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-2-JUPITER-V1.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHJULO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:07.734240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-3-JUPITER-V1.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHJULO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:08.688211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS LORRI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKCLO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:09.688911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKCLO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:10.694302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V1.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:11.692119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V1.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:12.700703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-LAUNCH-V1.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHLALO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:13.703226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-LAUNCH-V1.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHLALO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:14.702069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LORRI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPCLO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:15.705269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPCLO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:16.750337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-2-PLUTO-V1.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:17.805001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-3-PLUTO-V1.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:18.743699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-2-JUPITER-V1.1","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHJULO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:20.737992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-3-JUPITER-V1.1","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHJULO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:21.737683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V2.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:22.743093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V2.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:23.739529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-LAUNCH-V1.1","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHLALO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:24.745075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-LAUNCH-V1.1","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHLALO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:25.746824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-2-PLUTO-V2.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHPELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:26.754178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-3-PLUTO-V2.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHPELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:27.761543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-2-JUPITER-V2.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHJULO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:29.771941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-3-JUPITER-V2.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHJULO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:30.804135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V3.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:31.849797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V3.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:32.784149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-LAUNCH-V2.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHLALO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:33.791938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-LAUNCH-V2.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHLALO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:34.794703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V4.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v4/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:36.804426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V4.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v4/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:37.798310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V5.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v5/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:39.812795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V5.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v5/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:40.867720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-MVIC-2-JUPITER-V2.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHJUMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:42.864824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-MVIC-3-JUPITER-V2.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHJUMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:43.911000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS MVIC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKCMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:44.825696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKCMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:45.827661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V6.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:46.827526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V6.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:47.833163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-LAUNCH-V2.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHLAMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:48.841661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-LAUNCH-V2.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHLAMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:49.838683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS MVIC PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPCMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:50.849885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS MVIC PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPCMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:51.881832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-2-PLUTO-V3.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:52.927589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-3-PLUTO-V3.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:53.870101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-MVIC-2-JUPITER-V1.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHJUMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:55.877330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-MVIC-3-JUPITER-V1.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHJUMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:56.871819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS MVIC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKCMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:57.872124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKCMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:58.885887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V1.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:59.885391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V1.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:00.890871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-LAUNCH-V1.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHLAMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:01.889067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-LAUNCH-V1.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHLAMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:02.902737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-2-PLUTO-V1.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHPEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:03.938207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-3-PLUTO-V1.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHPEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:04.995868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V2.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:06.978097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V2.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:07.918550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-2-PLUTO-V2.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHPEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:08.924821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-3-PLUTO-V2.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHPEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:09.927683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V3.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v3/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:11.936164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V3.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v3/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:12.941495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V4.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v4/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:14.949342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V4.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v4/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:15.998223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V5.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v5/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:17.985264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V5.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v5/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:19.037548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-3-RPX-V1.1","title":"VOLUME 1: IMAGES OCTOBER 1994 TO MAY 1995","description":"This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Wide Field and Planetary Camera 2 aboard the Hubble Space Telescope. The images were acquired during the period October 1994 through November 1995, spanning the period of the ring plane crossings of 1995. (No images were obtained during the last crossing event in February 1996). Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, and documentation. This version eliminates the use of the Zip files that were found in the original volumes, and expands all file names to match those found in the HST archive.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:22.478926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"WHT-S-API/ISIS-1/3-RPX-V1.0","title":"VOLUME 1: IMAGES AND SPECTRA FROM AUGUST 1995","description":"This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Intermediate Dispersion Spectrograph and Imaging System (ISIS) and the camera on the Auxiliary Port Imager (API) of the William Herschel Telescope. The images were acquired during the period August 1 - 3, 1995. Included in this volume are data files at a variety of levels of processing, plus calibration files, and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0101/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:27.539588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IRTF-S-NSFCAM-1/3-RPX-V1.0","title":"VOLUME 1: IMAGES FROM AUGUST 1995","description":"This volume contains images of the Saturnian system, including the main rings, multiple filter observations of the E ring, and eclipses of the satellites Janus, Pandora, Prometheus, Epimetheus, and Enceladus. These images were acquired by the NSFCam at the NASA Infrared Telescope Facility over the period August 6-8, 1995. Included on this volume are raw data and calibration files obtained in August, additional calibration files obtained in May 1995, a few observations of Jupiter, and supporting documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0201/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:28.567614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CFHT-S-QUIRC-1/3-RPX-V1.0","title":"VOLUME 1: IMAGES FROM AUGUST 1995","description":"This volume contains images of the Saturnian system, including the satellites; Titan, Tethys, and Dionne. These images were acquired by Quick infrared Camera at Canada-France-Hawaii Corporation at Mauna Kea over the period August 9 - 12, 1995. Included on this volume are raw, processed, and calibration data files as well as supporting documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0301/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:29.522811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"WIYN-S-WI-2-RPX-V1.0","title":"VOLUME 1: IMAGES FROM NOVEMBER 1995","description":"This volume contains images acquired by WIYN Imager(WI) at the WIYN Observatory at Kitt Peak of Saturn, its rings, and inner satellites. The images were acquired during the period November 19-23, 1995. Included in this volume are the raw images from these observations, calibration files, and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:30.571034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-S-WFPC2-3-RPX-V1.0","title":"VOLUME 1: IMAGES OCTOBER 1994 TO MAY 1995","description":"This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Wide Field and Planetary Camera 2 aboard the Hubble Space Telescope. The images were acquired during the period October 1994 through November 1995, spanning the period of the ring plane crossings of 1995. (No images were obtained during the last crossing event in February 1996). Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx_v1/RPX_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:32.512976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1/VG2-J/S-IRIS-3-RDR-EXPANDED-V1.0","title":"VOYAGER IRIS OBSERVATIONS AT JUPITER - EXPANDED","description":"This volume contains all the data produced by the Voyager IRIS experiments at Jupiter. It includes the full-resolution (RDR) spectra, plus ancillary geometry and calibration information.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGIRIS_xxxx_peer_review/VGIRIS_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:38.541747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1/VG2-J-ISS-2/3/4/6-PROCESSED-V1.0","title":"PROCESSED VOYAGER 1 JUPITER IMAGES 13854.55 -- 14999.59","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGISS_5xxx/VGISS_5101/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:41.581446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1/VG2-S-ISS-2/3/4/6-PROCESSED-V1.1","title":"PROCESSED VOYAGER 1 SATURN IMAGES 27830.18-32799.59","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGISS_6xxx/VGISS_6101/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:22:16.707120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-U-ISS-2/3/4/6-PROCESSED-V1.0","title":"PROCESSED URANUS IMAGES FROM VG_0001","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGISS_7xxx/VGISS_7201/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:22:53.935028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-N-ISS-2/3/4/6-PROCESSED-V1.0","title":"PROCESSED VOYAGER 2 NEPTUNE IMAGES 8966.31 -- 9499.00","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGISS_8xxx/VGISS_8201/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:01.901678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"VG1/VG2-J-IRIS-3-RDR-V1.0\",","title":"VOYAGER IRIS OBSERVATIONS","description":"This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_20xx/VG_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:32.999953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-SR/UR/NR-PPS-2/4-OCC-V1.0","title":"VOLUME 1: VOYAGER PPS RING OCCULTATION DATA","description":"This volume contains ring occultation data from the Voyager 2 Photopolarimeter at Saturn, Uranus and Neptune. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, software and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2801/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:35.024587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1/VG2-SR/UR/NR-UVS-2/4-OCC-V1.0","title":"VOLUME 2: VOYAGER UVS RING OCCULTATION DATA","description":"This volume contains ring occultation data from the Voyager Ultraviolet Spectrometer at Saturn, Uranus and Neptune. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, software and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2802/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:36.005249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1/VG2-SR/UR-RSS-4-OCC-V1.0","title":"VOLUME 3: VOYAGER RSS RING OCCULTATION DATA","description":"This volume contains processed ring occultation data from the Voyager Radio Science experiments at Saturn and Uranus. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry and calibration, software and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2803/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:37.025642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1/VG2-SR-ISS-4-PROFILES-V1.0","title":"SATURN RING PROFILES FROM VOYAGER IMAGES","description":"This volume contains calibrated and geometrically accurate intensity (I/F) profiles of Saturn's rings, as derived from the Voyager images. Documentation and the image files used in the analysis are also provided","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2810/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:38.065624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1/VG2-SR/UR-RSS-4-OCC-V0.9","title":"VOLUME 3: VOYAGER RSS RING OCCULTATION DATA","description":"This volume contains processed ring occultation data from the Voyager Radio Science experiments at Saturn and Uranus. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry and calibration, software and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx_v0.9/VG_2803/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:40.069233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-S-RSS-1-ROCC-V1.0","title":"VG1 at Saturn: VG1-S-RSS-1-ROCC-V1.0","description":"CERTIFIED This volume contains data and supporting documentation from the Voyager 1 Saturn Encounter for the VG1-S-RSS-1-ROCC-V1.0 data set from 1980-11-13T00:00:00 to 1980-11-13T23:59:59.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG1_9050/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:42.028980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG1-SSA-RSS-1-ROCC-V1.0","title":"VG1 from Titan: VG1-SSA-RSS-1-ROCC-V1.0","description":"CERTIFIED This volume contains raw data collected during the Titan radio occultation of Voyager 1 in November 1980 plus ancillary files that might be useful in analysis of those data from the VG1-SSA-RSS-1-ROCC-V1.0 data set.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG1_9056/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:43.043542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-S-RSS-1-ROCC-V1.0","title":"VG2 at Saturn: VG2-S-RSS-1-ROCC-V1.0","description":"CERTIFIED This volume contains raw data, partially processed data, and ancillary files from the Voyager 2 Saturn Radio Science investigation for the VG2-S-RSS-1-ROCC-V1.0DATASET ID data set from 1981-08-25 to 1981-08-26.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG2_9065/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:44.050032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_saturn::1.0","title":"ISS Observations from the Cassini Tour of the Saturn System","description":"This bundle contains Cassini ISS images, metadata, and associated documentation for the Saturn tour--January 2004 through end of mission in September 2017.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["(134340) Pluto","26 Tauri","3 Centauri","78 Tauri","Aegaeon","Albiorix","Aldebaran","Algol","Alpha Arae","Alpha Centauri","Alpha Crucis","Alpha Eridani","Alpha Sextantis","Alpha Trianguli Australis","Antares","Anthe","Arcturus","Atlas","Bebhionn","Bergelmir","Bestla","Beta Canis Majoris","Beta Centauri","Beta Crucis","Beta Librae","Beta Lupi","Beta Orionis","Beta Sagittarii","Betelgeuse","CW Leonis","Cal Lamps","Calypso","Canopus","Capella","Chi Centauri","Daphnis","Delta Aquarii","Delta Centauri","Delta Lupi","Delta Persei","Delta Virginis","Dione","Earth","Enceladus","Epimetheus","Epsilon Cassiopeiae","Epsilon Centauri","Epsilon Lupi","Epsilon Orionis","Epsilon Piscis Austrini","Erriapus","Eta Carinae","Eta Lupi","Eta Ursae Majoris","Fomalhaut","Fornjot","Gamma Arae","Gamma Cassiopeiae","Gamma Columbae","Gamma Crucis","Gamma Gruis","Gamma Lupi","Gamma Pegasi","Greip","HD 71334","HR 996","Hati","Helene","Hyperion","Hyrrokkin","Iapetus","Ijiraq","Iota Centauri","Janus","Jarnsaxa","Jupiter","Kappa Centauri","Kappa Orionis","Kari","Kiviuq","Lambda Ceti","Lambda Scorpii","Loge","Methone","Mimas","Mu Piscis Austrini","Mundilfari","Narvi","Nu Centauri","Omicron Ceti","Paaliaq","Pallene","Pan","Pandora","Phoebe","Polydeuces","Probe","Procyon","Prometheus","Psi Centauri","R Cassiopeiae","R Hydrae","R Leo","Regulus","Rhea","S/2004 S 12","S/2004 S 13","Saturn Rings","Saturn","Scat Light","Siarnaq","Sirius","Skathi","Skoll","Sky","Spica","Star","Sun","Surtur","Suttungr","Tarqeq","Tarvos","Telesto","Tethys","Theta Arae","Theta Hydrae","Thrymr","Titan","Unknown","Vega","W Hydrae","Ymir","Zeta Canis Majoris","Zeta Centauri","Zeta Ophiuchi","Zeta Orionis","Zeta Persei"],"instruments":["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera","Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//bundle.xml","scraped_at":"2026-02-25T20:02:10.736892Z","keywords":["cassini iss","cassini images","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_cruise::1.0","title":"ISS Observations from the Cassini Cruise to Saturn","description":"This bundle contains Cassini ISS images, metadata, and associated documentation from the cruise to Saturn--October 1997 through December 2003.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["78 Tauri","Aldebaran","Alpha Centauri","Antares","Arcturus","Beta Gruis","Betelgeuse","CW Leonis","Cal Lamps","Callisto","Capella","Checkout","Dark Sky","Dark","Dust","Eta Carinae","Europa","Fomalhaut","Gamma Crucis","Ganymede","HD 339479","Himalia","Io","Jupiter","Jupiter Rings","Masursky","Moon","NML Tauri","Omicron Ceti","Pallene","Phoebe","Pleiades","R Doradus","R Hydrae","R Leo","Saturn","Scat Light","Sirius","Sky","Spica","Star","Sun","Test Image","Titan","Unknown","Vega","Venus","W Hydrae"],"instruments":["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera","Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//bundle.xml","scraped_at":"2026-02-25T20:02:10.737540Z","keywords":["cassini iss","cassini images","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_cruise::1.0","title":"VIMS Observations from the Cassini Cruise to Saturn","description":"This bundle contains Cassini VIMS data, metadata, and associated documentation from the cruise to Saturn--October 1997 through December 2003.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Aldebaran","Alpha Centauri","Antares","Arcturus","Beta Gruis","Betelgeuse","Callisto","Capella","Dark Sky","Europa","Fomalhaut","Gamma Crucis","Ganymede","Himalia","Io","Jupiter","Jupiter Rings","Masursky","Pleiades","R Hydrae","R Leo","Saturn","Scat Light","Sirius","Sky","Spica","Sun","Test Image","Unknown","Venus","W Hydrae"],"instruments":["Cassini Orbiter Visual And Infrared Mapping Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-10","stop_date":"2003-12-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//bundle.xml","scraped_at":"2026-02-25T20:02:10.737549Z","keywords":["cassini vims","cassini spectra","jupiter","jupiter satellites","jupiter rings","jupiter system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_saturn::1.0","title":"VIMS Observations from the Cassini Tour of the Saturn System","description":"This bundle contains Cassini VIMS data, metadata, and associated documentation for the Saturn tour--January 2004 through end of mission in September 2017.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["2 Centauri","30 Herculis","30 Piscium","56 Leonis","Aegaeon","Albiorix","Aldebaran","Alpha Centauri","Alpha Ceti","Alpha Herculis","Alpha Hydrae","Alpha Trianguli Australis","Antares","Anthe","Arcturus","Atlas","Bebhionn","Bestla","Beta Andromedae","Beta Gruis","Beta Orionis","Beta Pegasi","Beta Ursae Minoris","Betelgeuse","CW Leonis","Calypso","Capella","Chi Aquarii","Chi Cygni","Daphnis","Delta Ophiuchi","Delta Virginis","Dione","Dust","Earth","Enceladus","Epimetheus","Epsilon Muscae","Epsilon Orionis","Erriapus","Eta Sagittarii","Fomalhaut","Gamma Andromedae","Gamma Crucis","Gamma Eridani","Greip","HR 996","Hati","Helene","Hyperion","Iapetus","Ijiraq","Janus","Jarnsaxa","Jupiter","Kiviuq","Lambda Aquarii","Lambda Velorum","Methone","Mimas","Mu Cephei","Mu Geminorum","Mundilfari","Nu Virginis","Omega Virginis","Omicron Ceti","Paaliaq","Pallene","Pan","Pandora","Phoebe","Pi1 Gruis","Pleiades","Polydeuces","Procyon","Prometheus","R Aquarii","R Cassiopeiae","R Hydrae","R Leo","R Lyrae","RW Leonis Minoris","RX Leporis","Rhea","Rho Persei","S Leporis","Saturn Rings","Saturn","Siarnaq","Sirius","Skathi","Sky","Spica","Star","Sun","Surtur","T Cephei","TX Camelopardalis","Tarqeq","Tarvos","Telesto","Tethys","Thrymr","Titan","Unknown","V Hydrae","VX Sagittarii","W Aquilae","W Hydrae","X Ophiuchi","Ymir","Zeta Orionis"],"instruments":["Cassini Orbiter Visual And Infrared Mapping Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//bundle.xml","scraped_at":"2026-02-25T20:02:10.737561Z","keywords":["cassini vims","cassini spectra","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm::1.0","title":"Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u0201 (UCAC2 27214859) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"2002-07-29","stop_date":"2002-07-29","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737570Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm::1.0","title":"Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u0 (Hipparcos 71567) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["0.91m Telescope","Generic Visual High Speed Photometer"],"instrument_hosts":["Kuiper Airborne Observatory"],"data_types":[],"start_date":"1977-03-10","stop_date":"1977-03-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737580Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm::1.0","title":"Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u102a (UCAC2 22794648) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1992-07-08","stop_date":"1992-07-08","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737591Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm::1.0","title":"Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u102b (UCAC2 22794648) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1992-07-08","stop_date":"1992-07-08","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737601Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm::1.0","title":"Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["ESO-La Silla 2.2m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1992-07-11","stop_date":"1992-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737608Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm::1.0","title":"Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"1992-07-11","stop_date":"1992-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737615Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm::1.0","title":"Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u1052 (UCAC2 22296665) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1988-05-12","stop_date":"1988-05-12","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737622Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm::1.0","title":"Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u11 (UCAC2 24610234) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1980-03-20","stop_date":"1980-03-20","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737630Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm::1.0","title":"Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1980-08-15","stop_date":"1980-08-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737639Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm::1.0","title":"Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["ESO-La Silla 1.04m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737650Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm::1.0","title":"Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["ESO-La Silla 3.6m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737661Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm::1.0","title":"Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737668Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm::1.0","title":"Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u134 (UCAC2 23509999) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":[],"start_date":"1995-09-09","stop_date":"1995-09-09","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737678Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos::1.0","title":"Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This bundle contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Wide Field Camera 3"],"instrument_hosts":["Hubble Space Telescope"],"data_types":[],"start_date":"1996-03-16","stop_date":"1996-03-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/bundle.xml","scraped_at":"2026-02-25T20:02:10.737689Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm::1.0","title":"Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1996-03-16","stop_date":"1996-03-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737699Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos::1.0","title":"Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This bundle contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Wide Field Camera 3"],"instrument_hosts":["Hubble Space Telescope"],"data_types":[],"start_date":"1996-04-10","stop_date":"1996-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/bundle.xml","scraped_at":"2026-02-25T20:02:10.737706Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm::1.0","title":"Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"1996-04-10","stop_date":"1996-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737716Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm::1.0","title":"Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u13 (Hipparcos 77434) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["3.9m Anglo-Australian Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":[],"start_date":"1981-04-26","stop_date":"1981-04-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737725Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm::1.0","title":"Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["1.23m Telescope","Generic NICMOS IR Camera"],"instrument_hosts":["Centro Astronomico Hispano-Aleman"],"data_types":[],"start_date":"1997-09-30","stop_date":"1997-09-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737733Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm::1.0","title":"Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":[],"start_date":"1997-09-30","stop_date":"1997-09-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737741Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm::1.0","title":"Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1998-11-06","stop_date":"1998-11-06","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737750Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm::1.0","title":"Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Perkins 1.8m Telescope","Generic CCD Camera"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"1998-11-06","stop_date":"1998-11-06","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737760Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["SMARTS 1.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737770Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737779Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["ESO-La Silla 1.04m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737786Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Swope 1.0m Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737796Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737806Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["1.06m Telescope","Generic GaAs High Speed Photometer"],"instrument_hosts":["Pic du Midi de Bigorre"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737813Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Bernard Lyot 2.0m","Generic InSb High Speed Photometer"],"instrument_hosts":["Pic du Midi de Bigorre"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737820Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737830Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm::1.0","title":"Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u15 (UCAC2 23648038) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["1.9m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Mount Stromlo Observatory"],"data_types":[],"start_date":"1982-05-01","stop_date":"1982-05-01","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737841Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm::1.0","title":"Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u16 (UCAC2 23892052) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"1982-06-04","stop_date":"1982-06-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737850Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm::1.0","title":"Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u17b (Hipparcos 80841) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":[],"start_date":"1983-03-24","stop_date":"1983-03-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737860Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm::1.0","title":"Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Harlan J. Smith 2.7m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["McDonald Observatory"],"data_types":[],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737867Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm::1.0","title":"Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":[],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737875Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm::1.0","title":"Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737882Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm::1.0","title":"Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Harlan J. Smith 2.7m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["McDonald Observatory"],"data_types":[],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737890Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm::1.0","title":"Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737897Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm::1.0","title":"Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u28 (UCAC2 22517254) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1986-04-26","stop_date":"1986-04-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737908Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm::1.0","title":"Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u2 (UCAC3 148-144064) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":[],"start_date":"1977-12-23","stop_date":"1977-12-23","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737916Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm::1.0","title":"Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u34 (UCAC2 22289038) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1987-02-26","stop_date":"1987-02-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737926Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737936Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1987-03-30","stop_date":"1987-03-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737943Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["United Kingdom Infrared Telescope 3.8m","Generic InSb High Speed Photometer"],"instrument_hosts":["Maunakea Observatory"],"data_types":[],"start_date":"1987-03-30","stop_date":"1987-03-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737951Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Australian National University 2.3m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":[],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737958Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["3.9m Anglo-Australian Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":[],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737965Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm::1.0","title":"Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u5 (UCAC2 25775788) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1978-04-10","stop_date":"1978-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737972Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm::1.0","title":"Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u65 (UCAC3 133-382807) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1990-06-21","stop_date":"1990-06-21","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737979Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm::1.0","title":"Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u83 (UCAC2 22564036) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1991-06-25","stop_date":"1991-06-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737987Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm::1.0","title":"Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u84 (UCAC2 22563790) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1991-06-28","stop_date":"1991-06-28","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737994Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm::1.0","title":"Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u9539 (UCAC2 23016546) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1993-06-30","stop_date":"1993-06-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.738004Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm::1.0","title":"Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u9 (UCAC2 25547691) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1979-06-10","stop_date":"1979-06-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.738012Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_support::1.0","title":"Uranus Occultation Support Bundle","description":"The support bundle for the highly derived, Uranus system, Earth-Based occultation bundles. Contains the global Uranus ring system model, support materials, and documentation used to produce the individual occultation profiles in the supported bundles.","node":"rms","pds_version":"PDS4","type":"bundle","missions":[],"targets":["Uranus","Uranian Ring System"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/bundle.xml","scraped_at":"2026-02-25T20:02:10.738275Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings global model","uranus rings model","uranus occultation user guide"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023::1.1","title":"Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This bundle contains derived time series data products from multiple solar occultations by the rings of Saturn.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Saturn Rings"],"instruments":["Cassini Orbiter Ultraviolet Imaging Spectrograph"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-06-08","stop_date":"2017-06-18","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//bundle.xml","scraped_at":"2026-02-25T20:02:10.738445Z","keywords":["Saturn Rings","Solar Occultation","CDAP 2018"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm::1.0","title":"Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.738453Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw::1.0","title":"Voyager 1 Jupiter Radio Occultation - Raw Data Bundle","description":"The bundle contains raw radio science data from the Voyager 1 radio occultation at Jupiter. Data include sampled output from S- and X-band receivers at the 64-m antenna of the NASA Deep Space Network near Madrid, Spain. Also included are receiver tuning data, files containing reconstructed pointing of the spacecraft high-gain antenna, a trajectory reconstruction, and documentation.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","DSS 63 64-m Antenna","Voyager 1 Radio Science Instrumentation","Voyager 1 Spacecraft Sensors"],"instrument_hosts":["NASA Deep Space Network","Voyager 1"],"data_types":[],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//bundle_voyager1_rss_jupiter_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//bundle_voyager1_rss_jupiter_raw.xml","scraped_at":"2026-02-25T20:02:10.738467Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw::1.0","title":"Voyager 2 Jupiter Radio Occultation - Raw Data Bundle","description":"The bundle contains raw radio science data from the Voyager 2 radio occultation at Jupiter. Data include sampled output from S- and X-band receivers at the 64-m antenna of the NASA Deep Space Network near Madrid, Spain. Also included are receiver tuning data, files containing reconstructed pointing of the spacecraft high-gain antenna, a trajectory reconstruction, and documentation.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","DSS 14 64-m Antenna","Voyager 2 Radio Science Instrumentation","Voyager 2 Spacecraft Sensors"],"instrument_hosts":["NASA Deep Space Network","Voyager 2"],"data_types":[],"start_date":"1979-07-10","stop_date":"1979-07-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//bundle_voyager2_rss_jupiter_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//bundle_voyager2_rss_jupiter_raw.xml","scraped_at":"2026-02-25T20:02:10.738471Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_saturn:browse_raw::1.0","title":"Browse Collection for the Raw Cassini ISS Observations from the Saturn Tour","description":"This is the collection of browse products associated with the raw ISS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/collection_browse_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.750188Z","keywords":["cassini iss","browse products","preview products"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_saturn:xml_schema::1.0","title":"XML Schema Collection for the Cassini ISS Observations from the Saturn Tour","description":"This is the collection of XML schema used by the archive bundle of Cassini ISS data from the tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.750209Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_saturn:context::1.0","title":"Context Collection for the Cassini ISS Observations of the Saturn System","description":"This is the collection of context products relevant to the ISS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.750212Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_saturn:data_raw::1.0","title":"Raw Data Collection for the Cassini ISS Observations from the Saturn Tour","description":"This is the collection of raw ISS images and associated metadata from the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["(134340) Pluto","26 Tauri","3 Centauri","78 Tauri","Aegaeon","Albiorix","Aldebaran","Algol","Alpha Arae","Alpha Centauri","Alpha Crucis","Alpha Eridani","Alpha Sextantis","Alpha Trianguli Australis","Antares","Anthe","Arcturus","Atlas","Bebhionn","Bergelmir","Bestla","Beta Canis Majoris","Beta Centauri","Beta Crucis","Beta Librae","Beta Lupi","Beta Orionis","Beta Sagittarii","Betelgeuse","CW Leonis","Cal Lamps","Calypso","Canopus","Capella","Chi Centauri","Daphnis","Delta Aquarii","Delta Centauri","Delta Lupi","Delta Persei","Delta Virginis","Dione","Earth","Enceladus","Epimetheus","Epsilon Cassiopeiae","Epsilon Centauri","Epsilon Lupi","Epsilon Orionis","Epsilon Piscis Austrini","Erriapus","Eta Carinae","Eta Lupi","Eta Ursae Majoris","Fomalhaut","Fornjot","Gamma Arae","Gamma Cassiopeiae","Gamma Columbae","Gamma Crucis","Gamma Gruis","Gamma Lupi","Gamma Pegasi","Greip","HD 71334","HR 996","Hati","Helene","Hyperion","Hyrrokkin","Iapetus","Ijiraq","Iota Centauri","Janus","Jarnsaxa","Jupiter","Kappa Centauri","Kappa Orionis","Kari","Kiviuq","Lambda Ceti","Lambda Scorpii","Loge","Methone","Mimas","Mu Piscis Austrini","Mundilfari","Narvi","Nu Centauri","Omicron Ceti","Paaliaq","Pallene","Pan","Pandora","Phoebe","Polydeuces","Probe","Procyon","Prometheus","Psi Centauri","R Cassiopeiae","R Hydrae","R Leo","Regulus","Rhea","S/2004 S 12","S/2004 S 13","Saturn Rings","Saturn","Scat Light","Siarnaq","Sirius","Skathi","Skoll","Sky","Spica","Star","Sun","Surtur","Suttungr","Tarqeq","Tarvos","Telesto","Tethys","Theta Arae","Theta Hydrae","Thrymr","Titan","Unknown","Vega","W Hydrae","Ymir","Zeta Canis Majoris","Zeta Centauri","Zeta Ophiuchi","Zeta Orionis","Zeta Persei"],"instruments":["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera","Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/collection_data_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.750226Z","keywords":["cassini iss","cassini raw images","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_saturn:document::1.0","title":"Document Collection for the Cassini ISS Observations from the Saturn Tour","description":"This is the collection of documents relevant to the ISS observations obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.750231Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_cruise:xml_schema::1.0","title":"XML Schema Collection for the Cassini ISS Observations from the Cruise to Saturn","description":"This is the collection of XML schema used by the archive bundle of Cassini ISS data from the cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751599Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_cruise:browse_raw::1.0","title":"Browse Collection for the Raw Cassini ISS Observations from the Cruise to Saturn","description":"This is the collection of browse products associated with the raw ISS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/collection_browse_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.751604Z","keywords":["cassini iss","browse products","preview products"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_cruise:context::1.0","title":"Context Collection for the Cassini ISS Observations of the Saturn System","description":"This is the collection of context products relevant to the ISS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751607Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_cruise:document::1.0","title":"Document Collection for the Cassini ISS Observations from the Cruise to Saturn","description":"This is the collection of documents relevant to the ISS observations obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751610Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_iss_cruise:data_raw::1.0","title":"Raw Data Collection for the Cassini ISS Observations from the Cruise to Saturn","description":"This is the collection of raw ISS images and associated metadata from the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["78 Tauri","Aldebaran","Alpha Centauri","Antares","Arcturus","Beta Gruis","Betelgeuse","CW Leonis","Cal Lamps","Callisto","Capella","Checkout","Dark Sky","Dark","Dust","Eta Carinae","Europa","Fomalhaut","Gamma Crucis","Ganymede","HD 339479","Himalia","Io","Jupiter","Jupiter Rings","Masursky","Moon","NML Tauri","Omicron Ceti","Pallene","Phoebe","Pleiades","R Doradus","R Hydrae","R Leo","Saturn","Scat Light","Sirius","Sky","Spica","Star","Sun","Test Image","Titan","Unknown","Vega","Venus","W Hydrae"],"instruments":["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera","Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-09","stop_date":"2003-12-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/collection_data_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.751619Z","keywords":["cassini iss","cassini raw images","jupiter","jupiter satellites","jupiter rings","jupiter system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_cruise:xml_schema::1.0","title":"XML Schema Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of XML schema used by the archive bundle of Cassini VIMS data from the cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751624Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_cruise:calibration::1.0","title":"Calibration Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of calibration products relevant to the VIMS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/collection_calibration.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.751627Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_cruise:browse_raw::1.0","title":"Browse Collection for the Raw Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of browse products associated with the raw VIMS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/collection_browse_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.751632Z","keywords":["cassini vims","cassini spectra","browse products","preview products"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_cruise:context::1.0","title":"Context Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of context products relevant to the VIMS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751635Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_cruise:data_raw::1.0","title":"Raw Data Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of raw VIMS data products and associated metadata from the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Aldebaran","Alpha Centauri","Antares","Arcturus","Beta Gruis","Betelgeuse","Callisto","Capella","Dark Sky","Europa","Fomalhaut","Gamma Crucis","Ganymede","Himalia","Io","Jupiter","Jupiter Rings","Masursky","Pleiades","R Hydrae","R Leo","Saturn","Scat Light","Sirius","Sky","Spica","Sun","Test Image","Unknown","Venus","W Hydrae"],"instruments":["Cassini Orbiter Visual And Infrared Mapping Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-10","stop_date":"2003-12-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/collection_data_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.751642Z","keywords":["cassini vims","cassini spectra","jupiter","jupiter satellites","jupiter rings","jupiter system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_cruise:document::1.0","title":"Document Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of documents relevant to the VIMS observations obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751646Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_saturn:document::1.0","title":"Document Collection for the Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of documents relevant to the VIMS observations obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751649Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_saturn:data_raw::1.0","title":"Raw Data Collection for the Cassini VIMS Observations from from the Saturn Tour","description":"This is the collection of raw VIMS data products and associated metadata from the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["2 Centauri","30 Herculis","30 Piscium","56 Leonis","Aegaeon","Albiorix","Aldebaran","Alpha Centauri","Alpha Ceti","Alpha Herculis","Alpha Hydrae","Alpha Trianguli Australis","Antares","Anthe","Arcturus","Atlas","Bebhionn","Bestla","Beta Andromedae","Beta Gruis","Beta Orionis","Beta Pegasi","Beta Ursae Minoris","Betelgeuse","CW Leonis","Calypso","Capella","Chi Aquarii","Chi Cygni","Daphnis","Delta Ophiuchi","Delta Virginis","Dione","Dust","Earth","Enceladus","Epimetheus","Epsilon Muscae","Epsilon Orionis","Erriapus","Eta Sagittarii","Fomalhaut","Gamma Andromedae","Gamma Crucis","Gamma Eridani","Greip","HR 996","Hati","Helene","Hyperion","Iapetus","Ijiraq","Janus","Jarnsaxa","Jupiter","Kiviuq","Lambda Aquarii","Lambda Velorum","Methone","Mimas","Mu Cephei","Mu Geminorum","Mundilfari","Nu Virginis","Omega Virginis","Omicron Ceti","Paaliaq","Pallene","Pan","Pandora","Phoebe","Pi1 Gruis","Pleiades","Polydeuces","Procyon","Prometheus","R Aquarii","R Cassiopeiae","R Hydrae","R Leo","R Lyrae","RW Leonis Minoris","RX Leporis","Rhea","Rho Persei","S Leporis","Saturn Rings","Saturn","Siarnaq","Sirius","Skathi","Sky","Spica","Star","Sun","Surtur","T Cephei","TX Camelopardalis","Tarqeq","Tarvos","Telesto","Tethys","Thrymr","Titan","Unknown","V Hydrae","VX Sagittarii","W Aquilae","W Hydrae","X Ophiuchi","Ymir","Zeta Orionis"],"instruments":["Cassini Orbiter Visual And Infrared Mapping Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/collection_data_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.751662Z","keywords":["cassini vims","cassini spectra","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_saturn:context::1.0","title":"Context Collection for the Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of context products relevant to the VIMS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751667Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_saturn:browse_raw::1.0","title":"Browse Collection for the Raw Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of browse products associated with the raw VIMS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/collection_browse_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.751672Z","keywords":["cassini vims","cassini spectra","browse products","preview products"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_saturn:xml_schema::1.0","title":"XML Schema Collection for the Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of XML schema used by the archive bundle of Cassini VIMS data from the tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751674Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_vims_saturn:calibration::1.0","title":"Calibration Collection for the Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of calibration products relevant to the VIMS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/collection_calibration.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.751677Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u0201 (UCAC2 27214859) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"2002-07-29","stop_date":"2002-07-29","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751684Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751687Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751689Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751695Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751699Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u0 (Hipparcos 71567) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["0.91m Telescope","Generic Visual High Speed Photometer"],"instrument_hosts":["Kuiper Airborne Observatory"],"data_types":["Data"],"start_date":"1977-03-10","stop_date":"1977-03-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751708Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751716Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751719Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751722Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751724Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751727Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u102a (UCAC2 22794648) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1992-07-08","stop_date":"1992-07-08","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751736Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751745Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751748Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751751Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u102b (UCAC2 22794648) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1992-07-08","stop_date":"1992-07-08","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751760Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751763Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751765Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751768Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751776Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751780Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["ESO-La Silla 2.2m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1992-07-11","stop_date":"1992-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751786Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751791Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751794Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751797Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751802Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"1992-07-11","stop_date":"1992-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751810Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751813Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751816Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751819Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751822Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u1052 (UCAC2 22296665) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1988-05-12","stop_date":"1988-05-12","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751828Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751854Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751860Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751863Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751866Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751870Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u11 (UCAC2 24610234) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1980-03-20","stop_date":"1980-03-20","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751876Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751879Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751885Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751888Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751891Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751893Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1980-08-15","stop_date":"1980-08-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751902Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751913Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751922Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751925Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751928Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["ESO-La Silla 1.04m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751937Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751940Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751948Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751950Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751954Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["ESO-La Silla 3.6m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751963Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751966Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751968Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751971Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751978Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751983Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751986Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u134 (UCAC2 23509999) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":["Data"],"start_date":"1995-09-09","stop_date":"1995-09-09","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751996Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752004Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752007Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752010Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752013Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:document::1.0","title":"Document Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752016Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752018Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:data::1.0","title":"Data Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS.","description":"This collection contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Wide Field Camera 3"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Data"],"start_date":"1996-03-16","stop_date":"1996-03-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752027Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:context::1.0","title":"Context Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752031Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752039Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752042Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752050Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1996-03-16","stop_date":"1996-03-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752058Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752061Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752064Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:context::1.0","title":"Context Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752067Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:document::1.0","title":"Document Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752070Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752073Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:data::1.0","title":"Data Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Wide Field Camera 3"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Data"],"start_date":"1996-04-10","stop_date":"1996-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752079Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752085Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752088Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752091Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752098Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752101Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"1996-04-10","stop_date":"1996-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752111Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752114Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752116Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752124Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u13 (Hipparcos 77434) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["3.9m Anglo-Australian Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":["Data"],"start_date":"1981-04-26","stop_date":"1981-04-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752133Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752136Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752139Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752142Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["1.23m Telescope","Generic NICMOS IR Camera"],"instrument_hosts":["Centro Astronomico Hispano-Aleman"],"data_types":["Data"],"start_date":"1997-09-30","stop_date":"1997-09-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752149Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752153Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752158Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752161Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752163Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752169Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752172Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":["Data"],"start_date":"1997-09-30","stop_date":"1997-09-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752178Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752187Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752189Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752192Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1998-11-06","stop_date":"1998-11-06","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752201Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752204Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Perkins 1.8m Telescope","Generic CCD Camera"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"1998-11-06","stop_date":"1998-11-06","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752212Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752215Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752218Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752221Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752229Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752255Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752259Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752262Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["SMARTS 1.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752271Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752279Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752286Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752290Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752294Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752303Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752306Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752309Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752314Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752317Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["ESO-La Silla 1.04m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752323Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752326Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Swope 1.0m Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752336Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752339Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752347Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752350Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752353Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752355Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752364Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752373Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752376Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752379Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752382Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["1.06m Telescope","Generic GaAs High Speed Photometer"],"instrument_hosts":["Pic du Midi de Bigorre"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752388Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752394Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752397Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752400Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Bernard Lyot 2.0m","Generic InSb High Speed Photometer"],"instrument_hosts":["Pic du Midi de Bigorre"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752407Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752410Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752413Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752416Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752421Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752424Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752426Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752435Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752442Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752450Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752453Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752461Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752464Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752467Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u15 (UCAC2 23648038) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["1.9m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Mount Stromlo Observatory"],"data_types":["Data"],"start_date":"1982-05-01","stop_date":"1982-05-01","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752475Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752479Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u16 (UCAC2 23892052) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"1982-06-04","stop_date":"1982-06-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752489Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752497Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752500Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752503Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752506Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752513Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752516Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u17b (Hipparcos 80841) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":["Data"],"start_date":"1983-03-24","stop_date":"1983-03-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752525Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752529Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752532Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752537Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752540Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752543Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Harlan J. Smith 2.7m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752549Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752552Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":["Data"],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752559Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752563Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752568Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752571Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752576Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752579Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752582Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752588Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752591Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752597Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752600Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752603Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Harlan J. Smith 2.7m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752609Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752612Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752615Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752620Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752626Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752650Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752653Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752657Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752660Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752667Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u28 (UCAC2 22517254) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1986-04-26","stop_date":"1986-04-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752676Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752680Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752682Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752686Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u2 (UCAC3 148-144064) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":["Data"],"start_date":"1977-12-23","stop_date":"1977-12-23","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752692Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752698Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752701Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u34 (UCAC2 22289038) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1987-02-26","stop_date":"1987-02-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752710Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752713Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752715Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752718Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752727Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752730Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752733Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752741Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752749Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752752Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1987-03-30","stop_date":"1987-03-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752758Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752764Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752768Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752771Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752774Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752777Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752782Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752785Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["United Kingdom Infrared Telescope 3.8m","Generic InSb High Speed Photometer"],"instrument_hosts":["Maunakea Observatory"],"data_types":["Data"],"start_date":"1987-03-30","stop_date":"1987-03-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752792Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752794Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Australian National University 2.3m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":["Data"],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752802Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752807Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752810Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752813Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752816Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752819Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752822Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752827Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["3.9m Anglo-Australian Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":["Data"],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752834Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752837Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752840Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752843Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u5 (UCAC2 25775788) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1978-04-10","stop_date":"1978-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752849Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752853Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752858Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752861Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752865Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752870Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u65 (UCAC3 133-382807) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1990-06-21","stop_date":"1990-06-21","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752876Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752879Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752882Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752885Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752890Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752893Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u83 (UCAC2 22564036) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1991-06-25","stop_date":"1991-06-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752900Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752903Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752905Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u84 (UCAC2 22563790) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1991-06-28","stop_date":"1991-06-28","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752911Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752914Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752920Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u9539 (UCAC2 23016546) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1993-06-30","stop_date":"1993-06-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752928Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752931Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752938Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752940Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752948Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u9 (UCAC2 25547691) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1979-06-10","stop_date":"1979-06-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752955Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752959Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752964Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752967Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752970Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_support:context::1.0","title":"Context Collection for the Uranus Occultation Support Bundle","description":"This collection identifies the context products of the Uranus occultation support bundle.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.753931Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_support:spice_kernels::1.0","title":"Uranus Occultations SPICE Kernel collection","description":"This collection contains the SPICE SPK kernel which supports Earth-based stellar occultations by the Uranus system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":["Uranus Rings","Uranus"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE Kernel"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/collection_spice_kernels.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/collection_spice_kernels.xml","scraped_at":"2026-02-25T20:02:10.753935Z","keywords":["Observation Geometry"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_support:document::1.0","title":"Document Collection for the Uranus Occultation Support Bundle.","description":"This collection contains documentation associated with the data bundles of Uranus Earth-based occultations.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753940Z","keywords":["uranus occultation documents","uranus occultation users guide"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_support:data::1.0","title":"Data Collection for the Uranus Occultation Support Bundle.","description":"This collection contains the global occultation ring orbit fits of the rings of Uranus and the associated input files.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":["Uranus Rings"],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.753946Z","keywords":["uranus atmosphere stellar occultation time series","uranus rings","uranus rings model"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_support:xml_schema::1.0","title":"XML Schema Collection for the Uranus System stellar occultations support bundle.","description":"This collection identifies the XML schema products of the archive bundle which supports data bundles of earth-based stellar occultations.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.753949Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:data::2.0","title":"Data Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the data products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn Rings"],"instruments":["Cassini Orbiter Ultraviolet Imaging Spectrograph"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2005-06-08","stop_date":"2017-06-18","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.754901Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.754917Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.754922Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.754929Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754932Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.754935Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:data::1.0","title":"Voyager 1 Jupiter Radio Occultation - Raw Open Loop Data Collection","description":"This collection contains raw open loop radio science data from the Voyager 1 Jupiter occultation. Each product includes an original binary data file that contains S- and X-band samples from an open loop receiver along with housekeeping data, an ASCII file containing the housekeeping data extracted from the binary, and a pair of ASCII files containing S- and X-band samples also extracted from the binary. Most files contain 200 seconds of data.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 1 Radio Science Instrumentation","DSS 63 64-m Antenna"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.754980Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:geometry::1.0","title":"Voyager 1 Jupiter Radio Occultation - Geometry Data Collection","description":"This collection contains non-SPICE trajectory and high-gain antenna pointing reconstructions for the radio occultation observations during the Voyager 1 Jupiter encounter.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["Voyager 1 Spacecraft Sensors"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-03-04","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/collection_geometry.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/collection_geometry.xml","scraped_at":"2026-02-25T20:02:10.754985Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:document::1.0","title":"Voyager 1 Jupiter Radio Occultation - Document Collection","description":"This collection contains an archive Software Interface Specification, a mission description, and high-gain antenna reconstruction documentation for the Voyager 1 Jupiter encounter. It also includes, as secondary members, documents describing the format of the binary data files and procedures for extraction of values.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","DSS 63 64-m Antenna","Voyager 1 Radio Science Instrumentation","Voyager 1 Spacecraft Sensors"],"instrument_hosts":["NASA Deep Space Network","Voyager 1"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.754990Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:calib_freq::1.0","title":"Voyager 1 Jupiter Radio Occultation - Frequency Calibration Collection","description":"This collection contains estimates of USO frequency for both Voyager 1 and Voyager 2.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 1 Radio Science Instrumentation","DSS 63 64-m Antenna"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Document"],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/collection_calib_freq.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/collection_calib_freq.xml","scraped_at":"2026-02-25T20:02:10.754994Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:context::1.0","title":"Voyager 1 Radio Science Raw Data Context Collection","description":"This collection contains the context products associated with the Voyager 1 Radio Science raw data bundle. Each product is a secondary member of the collection since it is maintained at the PDS Engineering Node.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 1 Radio Science Instrumentation","DSS 63 64-m Antenna"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Context"],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.754997Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:browse::1.0","title":"Voyager 1 Jupiter Radio Occultation - Browse Data Collection","description":"This collection contains tables and quick look plots from radio occultation observations during the Voyager 1 Jupiter encounter.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 1 Radio Science Instrumentation","DSS 63 64-m Antenna"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.755022Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:browse::1.0","title":"Voyager 2 Jupiter Radio Occultation - Browse Data Collection","description":"This collection contains tables and quick look plots from radio occultation observations during the Voyager 2 Jupiter encounter.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 2 Radio Science Instrumentation","DSS 14 64-m Antenna"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-07-10","stop_date":"1979-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.755026Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:context::1.0","title":"Voyager 2 Radio Science Raw Data Context Collection","description":"This collection contains the context products associated with the Voyager 2 Radio Science raw data bundle. Each product is a secondary member of the collection since it is maintained at the PDS Engineering Node.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 2 Radio Science Instrumentation","DSS 14 64-m Antenna"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Context"],"start_date":"1979-07-10","stop_date":"1979-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.755030Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:calib_freq::1.0","title":"Voyager 2 Jupiter Radio Occultation - Frequency Calibration Collection","description":"This collection contains estimates of USO frequency for both Voyager 1 and Voyager 2.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 2 Radio Science Instrumentation","DSS 14 64-m Antenna"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Document"],"start_date":"1979-07-10","stop_date":"1979-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/collection_calib_freq.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/collection_calib_freq.xml","scraped_at":"2026-02-25T20:02:10.755034Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:data::1.0","title":"Voyager 2 Jupiter Radio Occultation - Raw Open Loop Data Collection","description":"This collection contains raw open loop radio science data from the Voyager 2 Jupiter occultation. Each product includes an original data record (ODR) that contains S- and X-band samples from an open loop receiver along with housekeeping data, an ASCII file containing the housekeeping data extracted from the ODR, and a pair of ASCII files containing S- and X-band samples also extracted from the ODR. Most files contain 400 seconds of data.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 2 Radio Science Instrumentation","DSS 14 64-m Antenna"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-07-10","stop_date":"1979-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.755039Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:document::1.0","title":"Voyager 2 Jupiter Radio Occultation - Document Collection","description":"This collection contains an archive Software Interface Specification and a mission description for the Voyager 2 Jupiter encounter. It also includes, as secondary members, documents describing the format of the binary data files and procedures for extraction of values.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","DSS 14 64-m Antenna","Voyager 2 Radio Science Instrumentation","Voyager 2 Spacecraft Sensors"],"instrument_hosts":["NASA Deep Space Network","Voyager 2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.755043Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:geometry::1.0","title":"Voyager 2 Jupiter Radio Occultation - Geometry Data Collection","description":"This collection contains non-SPICE trajectory and high-gain antenna pointing reconstructions for the radio occultation observations during the Voyager 2 Jupiter encounter.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["Voyager 2 Spacecraft Sensors"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-03-04","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/collection_geometry.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/collection_geometry.xml","scraped_at":"2026-02-25T20:02:10.755047Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:context::1.0","title":"Context Collection for the Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the context products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.755050Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:browse::1.0","title":"Browse Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the browse products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.755053Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:xml_schema::1.0","title":"XML Schema Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the XML schema products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755057Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:document::1.0","title":"Document Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the document products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.755060Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl index 7ae7a22..b7287b2 100644 --- a/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl @@ -1,1542 +1,5493 @@ -{"id":"sbn:bopps_infrared_camera_birc:62d6d574","title":"BOPPS INFRARED CAMERA (BIRC)","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014-v1.0/document/inbrief/birc.txt","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:bopps2014::1.0","title":"Balloon Observation Platform for Planetary Science (BOPPS) 2014 Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614580","keywords":["urn:nasa:pds:bopps2014::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:bopps2014:biassub::1.0","title":"BOPPS 2014 Observations: BIRC Bias-Subtracted Images","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:biassub-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614598","keywords":["urn:nasa:pds:bopps2014:biassub::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:bopps2014:calibrated::1.0","title":"BOPPS 2014 Observations: BIRC Calibrated Images","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614609","keywords":["urn:nasa:pds:bopps2014:calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:bopps2014:document::1.0","title":"BOPPS 2014 Observations: Documentation","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614628","keywords":["urn:nasa:pds:bopps2014:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:bopps2014:groundcalibration::1.0","title":"BOPPS 2014 Observations: BIRC Ground Calibrations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:groundcalibration-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614639","keywords":["urn:nasa:pds:bopps2014:groundcalibration::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:bopps2014:raw::1.0","title":"BOPPS 2014 Observations: BIRC Raw Images","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614647","keywords":["urn:nasa:pds:bopps2014:raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:bopps2014:scoadded::1.0","title":"BOPPS 2014 Observations: BIRC Shifted and Co-Added Images","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:scoadded-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614655","keywords":["urn:nasa:pds:bopps2014:scoadded::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:bopps2014:status::1.0","title":"BOPPS 2014 Observations: BIRC Status Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["BOPPS"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-bopps2014:status-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/bopps/index.shtml","scraped_at":"2026-02-02T22:12:59.614662","keywords":["urn:nasa:pds:bopps2014:status::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:brrison_infrared_camera_birc:deb1e4d3","title":"BRRISON INFRARED CAMERA (BIRC)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["BRRISON"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/catalog/birc_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/brrison/index.shtml","scraped_at":"2026-02-02T22:12:59.822692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ultraviolet_and_visible_imaging_camera_uvvis:150038eb","title":"ULTRAVIOLET AND VISIBLE IMAGING CAMERA (UVVis)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["BRRISON"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/catalog/uvvis_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/brrison/index.shtml","scraped_at":"2026-02-02T22:12:59.822712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:brrison_birc_ground_calibration_raw_data:e48afdfa","title":"BRRISON BIRC Ground Calibration Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["BRRISON"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/brrison/index.shtml","scraped_at":"2026-02-02T22:12:59.822724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_remote_imaging_spectrograph_imager_crispimag:e9331516","title":"CONTOUR Remote Imaging Spectrograph - Imager (CRISPIMAG)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/cri_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.220983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_remote_imaging_spectrograph_spectrometer_crispec:bcc53b87","title":"CONTOUR Remote Imaging Spectrograph - Spectrometer (CRISPEC)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/crs_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_forward_imager_cfi:9c6055e5","title":"CONTOUR Forward Imager (CFI)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/cfiinst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_interstellar_dust_analyzer_cida:fd31cb04","title":"CONTOUR Interstellar Dust Analyzer (CIDA)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/cidainst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_neutral_gas_and_ion_mass_spectrometer_ngims:30871f1d","title":"CONTOUR Neutral Gas and Ion Mass Spectrometer (NGIMS)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/ngiminst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_telemetry_tlm:509a98b9","title":"CONTOUR Telemetry (TLM)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/catalog/tlm_inst.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_mission_and_data_documentation:284386ca","title":"CONTOUR Mission and Data Documentation","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_forward_imager_ground_calibration_data:faed47b2","title":"CONTOUR Forward Imager Ground Calibration Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-cfi-1-edr-ground-ocf-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_remote_imaging_spectrograph_imaging_ground_calibration_data:c889cec8","title":"CONTOUR Remote Imaging Spectrograph Imaging Ground Calibration Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispimag-1-edr-ground-ocf-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_remote_imaging_spectrograph_spectrometer_ground_calibration_data:b976db24","title":"CONTOUR Remote Imaging Spectrograph Spectrometer Ground Calibration Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispspec-1-edr-ground-ocf-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:contour_telemetry_ground_calibration_data:76dd312c","title":"CONTOUR Telemetry Ground Calibration Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["CONTOUR"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-tlm-1-edr-ground-gse-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/contour/index.shtml","scraped_at":"2026-02-02T22:13:00.221099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_dracoraw::3.0","title":"DART Raw Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument v3.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Didymos","Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481331","keywords":["urn:nasa:pds:dart:data_dracoraw::3.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_dracocal::3.0","title":"DART Calibrated Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument v3.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Didymos","Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481352","keywords":["urn:nasa:pds:dart:data_dracocal::3.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:document_draco::3.0","title":"DART Documentation for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument v3.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Didymos","Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481366","keywords":["urn:nasa:pds:dart:document_draco::3.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_dracoddp::1.0","title":"DART Calibrated Images with Geometric Backplanes for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Didymos","Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481377","keywords":["urn:nasa:pds:dart:data_dracoddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_maf::1.0","title":"DART Maneuver Acceleration Files (MAF) Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481386","keywords":["urn:nasa:pds:dart:data_maf::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_trk223::1.0","title":"DSN Media Calibration (TRK-2-23) Files for DART Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481394","keywords":["urn:nasa:pds:dart:data_trk223::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_trk234::1.0","title":"DART Radio Science Tracking and Navigation Files (TRK-2-34) Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481401","keywords":["urn:nasa:pds:dart:data_trk234::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:document_rs::1.0","title":"DART Radio Science Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481408","keywords":["urn:nasa:pds:dart:document_rs::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:liciacube:document::1.0","title":"Light Italian Cubesat for Imaging of Asteroids (LICIACube) Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481416","keywords":["urn:nasa:pds:liciacube:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:liciacube:leia_raw::1.0","title":"Liciacube Explorer Imaging for Asteroid (LEIA) Light Italian Cubesat for Imaging of Asteroids (LICIACube) Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:leia_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481425","keywords":["urn:nasa:pds:liciacube:leia_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:liciacube:leia_calibrated::1.0","title":"LICIACube Explorer Imaging for Asteroid (LEIA) Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:leia_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481433","keywords":["urn:nasa:pds:liciacube:leia_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:liciacube:luke_raw::1.0","title":"Liciacube Unit Key Explorer (LUKE) Light Italian Cubesat for Imaging of Asteroids (LICIACube) Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":["Asteroid"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:luke_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481442","keywords":["urn:nasa:pds:liciacube:luke_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:liciacube:luke_calibrated::1.0","title":"LICIACube Unit Key Explorer (LUKE) Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:luke_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481448","keywords":["urn:nasa:pds:liciacube:luke_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:liciacube:data_tnf::1.0","title":"LICIACube Radio Science Tracking and Navigation Files (TRK-2-34) Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube:data_tnf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481455","keywords":["urn:nasa:pds:liciacube:data_tnf::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:document_lco::1.0","title":"DART Las Campanas Observatory Telescopic Observations Documentation Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:document_lco-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481462","keywords":["urn:nasa:pds:dart_teleobs:document_lco::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcoimacsraw::1.0","title":"DART Las Campanas Observatory IMACS Magellan Baade 6.5m Telescope Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoimacsraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481470","keywords":["urn:nasa:pds:dart_teleobs:data_lcoimacsraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcoimacscal::1.0","title":"DART Las Campanas Observatory IMACS Magellan Baade 6.5m Telescope Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoimacscal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481477","keywords":["urn:nasa:pds:dart_teleobs:data_lcoimacscal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcoimacsddp::1.0","title":"DART Las Campanas Observatory IMACS Magellan Baade 6.5m Telescope Photometry Derived Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoimacsddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481484","keywords":["urn:nasa:pds:dart_teleobs:data_lcoimacsddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcoswoperaw::1.0","title":"DART Las Campanas Observatory Swope 1m Telescope Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoswoperaw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481491","keywords":["urn:nasa:pds:dart_teleobs:data_lcoswoperaw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcoswopecal::1.0","title":"DART Las Campanas Observatory Swope 1m Telescope Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoswopecal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481498","keywords":["urn:nasa:pds:dart_teleobs:data_lcoswopecal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcoswopeddp::1.0","title":"DART Las Campanas Observatory Swope 1m Telescope Photometry Derived Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcoswopeddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481504","keywords":["urn:nasa:pds:dart_teleobs:data_lcoswopeddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:document_lcogt::1.0","title":"DART Las Cumbres Observatory 1.0m Telescope Documentation Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:document_lcogt-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481511","keywords":["urn:nasa:pds:dart_teleobs:document_lcogt::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcogt_fliraw::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Finger Lakes Instrumentation (FLI) Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogt_fliraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481519","keywords":["urn:nasa:pds:dart_teleobs:data_lcogt_fliraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcogt_flical::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Finger Lakes Instrumentation (FLI) Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogt_flical-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481530","keywords":["urn:nasa:pds:dart_teleobs:data_lcogt_flical::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcogt_fliddp::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Finger Lakes Instrumentation (FLI) Derived Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogt_fliddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481538","keywords":["urn:nasa:pds:dart_teleobs:data_lcogt_fliddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcogtraw::1.0","title":"DART Las Cumbres Observatory Sinistro Imager Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogtraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481547","keywords":["urn:nasa:pds:dart_teleobs:data_lcogtraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcogtcal::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Sinistro Imager Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogtcal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481554","keywords":["urn:nasa:pds:dart_teleobs:data_lcogtcal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_lcogtddp::1.0","title":"DART Las Cumbres Observatory Network (LCOGT) Sinistro Imager Derived Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_lcogtddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481561","keywords":["urn:nasa:pds:dart_teleobs:data_lcogtddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtraw::2.0","title":"DART Lowell Discovery Telescope (LDT) Raw Data Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_ldtraw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481568","keywords":["urn:nasa:pds:dart_teleobs:data_ldtraw::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtcal::2.0","title":"DART Lowell Discovery Telescope (LDT) Calibrated Data Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_ldtcal-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481574","keywords":["urn:nasa:pds:dart_teleobs:data_ldtcal::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtddp::2.0","title":"DART Lowell Discovery Telescope (LDT) Derived Data Product Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_ldtddp-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481581","keywords":["urn:nasa:pds:dart_teleobs:data_ldtddp::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:document_ldt::2.0","title":"DART Lowell Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:document_ldt-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481587","keywords":["urn:nasa:pds:dart_teleobs:document_ldt::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:document_mro::1.0","title":"DART Magdalena Ridge Observatory 2.4m Telescope Documentation Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:document_mro-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481594","keywords":["urn:nasa:pds:dart_teleobs:document_mro::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_mroraw::1.0","title":"DART Magdalena Ridge Observatory 2.4m Telescope Raw Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_mroraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481655","keywords":["urn:nasa:pds:dart_teleobs:data_mroraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_mrocal::1.0","title":"DART Magdalena Ridge Observatory 2.4m Telescope Calibrated Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_mrocal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481662","keywords":["urn:nasa:pds:dart_teleobs:data_mrocal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_mroddp::1.0","title":"DART Magdalena Ridge Observatory 2.4m Telescope Derived Data Product Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs:data_mroddp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481670","keywords":["urn:nasa:pds:dart_teleobs:data_mroddp::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel::1.0","title":"DART Shapemodel Archive Bundle","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DART"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/dart/index.shtml","scraped_at":"2026-02-02T22:13:00.481676","keywords":["urn:nasa:pds:dart_shapemodel::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:thermal_vacuum_1_hri_ir_spectral_data:a7de9dbe","title":"Thermal-Vacuum 1: HRI-IR Spectral Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-ground-tv1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:thermal_vacuum_2_hri_ir_spectral_amp_hri_vis_image_data:87b37162","title":"Thermal-Vacuum 2: HRI-IR Spectral & HRI-VIS Image Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv-2-ground-tv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:thermal_vacuum_3_its_vis_image_data:aceba8fb","title":"Thermal-Vacuum 3: ITS-VIS Image Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-ground-tv3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:thermal_vacuum_4_hri_ir_spectral_hri_vis_amp_mri_vis_image_data:2bbcf436","title":"Thermal-Vacuum 4: HRI-IR Spectral, HRI-VIS & MRI-VIS Image Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-2-ground-tv4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_raw_calibration_spectra_from_cruise:ccb33ebc","title":"HRI-IR Raw Calibration Spectra from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_raw_calibration_images_from_cruise:66c19c4c","title":"HRI-VIS Raw Calibration Images from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_hri_vis_raw_calibration_images_from_cruise:3f4285b5","title":"Navigation HRI-VIS Raw Calibration Images from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-nav-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_raw_calibration_images_from_cruise:f7847cd8","title":"MRI-VIS Raw Calibration Images from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_mri_vis_raw_calibration_images_from_cruise_v1_1:26f2a673","title":"Navigation MRI-VIS Raw Calibration Images from Cruise v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-nav-9p-cruise-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:its_vis_raw_calibration_images_from_cruise:d4e2f38e","title":"ITS-VIS Raw Calibration Images from Cruise","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-9p-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_its_vis_raw_calibration_images_from_cruise_v1_1:761800fe","title":"Navigation ITS-VIS Raw Calibration Images from Cruise v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-nav-9p-cruise-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_raw_spectra_and_calibrations_from_encounter:b2312323","title":"HRI-IR Raw Spectra and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_9p_tempel_1_encounter_reduced_spectra_v3_0:f725de1a","title":"HRI-IR 9P/Tempel 1 Encounter Reduced Spectra v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_raw_images_and_calibrations_from_encounter:4082ce67","title":"HRI-VIS Raw Images and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_9p_tempel_1_encounter_calibrated_images_v3_0:fbcf84d5","title":"HRI-VIS 9P/Tempel 1 Encounter Calibrated Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-9p-encounter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_hri_vis_raw_images_and_calibrations_from_encounter:8a2aa353","title":"Navigation HRI-VIS Raw Images and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-nav-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_hri_vis_calibrated_images_from_encounter:44e9b49b","title":"Navigation HRI-VIS Calibrated Images from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3-nav-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_raw_images_and_calibrations_from_encounter:e85270a3","title":"MRI-VIS Raw Images and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_9p_tempel_1_encounter_calibrated_images_v3_0:c2947f36","title":"MRI-VIS 9P/Tempel 1 Encounter Calibrated Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-9p-encounter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_mri_vis_raw_images_and_calibrations_from_encounter_v1_1:028a06b3","title":"Navigation MRI-VIS Raw Images and Calibrations from Encounter v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-nav-9p-encounter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_mri_vis_calibrated_images_from_encounter_v1_1:17da12c6","title":"Navigation MRI-VIS Calibrated Images from Encounter v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3-nav-9p-encounter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:its_vis_raw_images_and_calibrations_from_encounter:9db2a535","title":"ITS-VIS Raw Images and Calibrations from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:its_vis_9p_tempel_1_encounter_calibrated_images_v3_0:39c2c8c1","title":"ITS-VIS 9P/Tempel 1 Encounter Calibrated Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3_4-9p-encounter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_its_vis_raw_images_and_calibrations_from_encounter_v1_1:67437e39","title":"Navigation ITS-VIS Raw Images and Calibrations from Encounter v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-nav-9p-encounter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_its_vis_calibrated_images_from_encounter:b0cbfde5","title":"Navigation ITS-VIS Calibrated Images from Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3-nav-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_science_data_from_the_9p_tempel_nbsp_1_encounter:7d87003c","title":"Radio Science Data from the 9P/Tempel 1 Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-rss-1-9p-encounter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:impact_flyby_spacecraft_instrument_temperatures_from_flight:1c10f100","title":"Impact Flyby Spacecraft Instrument Temperatures from Flight","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii_hriv_mri-6-temps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:deep_impact_amp_epoxi_documentation_set_v4_0:af6dc0f4","title":"Deep Impact & EPOXI Documentation Set v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:deep_impact_stardust_next_derived_shape_model_of_9p_tempel_1_v2_0:fbbbf1f1","title":"Deep Impact/Stardust-NExT Derived Shape Model of 9P/Tempel 1 v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_its_mri-5-tempel1-shape-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometry_of_9p_tempel_nbsp_1_from_deep_impact_mri_vis_observations:ea7f83bd","title":"Photometry of 9P/Tempel 1 from Deep Impact/MRI-VIS Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-5-tempel1-photometry-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:derived_surface_temperature_maps_of_9p_tempel_nbsp_1:5ee96b64","title":"Derived Surface Temperature Maps of 9P/Tempel 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-5-tempel1-surf-temp-maps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:movies_of_9p_tempel_nbsp_1_during_approach_and_encounter:64a8090e","title":"Movies of 9P/Tempel 1 during Approach and Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hriv_its_mri-5-movie-coll-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:iras_images_of_9p_tempel_nbsp_1_from_1983:25545a6b","title":"IRAS Images of 9P/Tempel 1 from 1983","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-images-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:iras_photometry_of_9p_tempel_nbsp_1_from_1983:32622bbb","title":"IRAS Photometry of 9P/Tempel 1 from 1983","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-irtf:mirsi-9p::1.0","title":"IRTF Mid-IR Imaging of Comet 9P/Tempel 1","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf:mirsi-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821473","keywords":["urn:nasa:pds:gbo-irtf:mirsi-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-irtf:nirimg-9p::1.0","title":"IRTF Near-IR Images of 9P/Tempel 1 during Deep Impact Encounter","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf:nirimg-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821483","keywords":["urn:nasa:pds:gbo-irtf:nirimg-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:irtf_spex_near_ir_spectra_of_9p_tempel_nbsp_1_during_deep_impact_encounter:301a2fb1","title":"IRTF/SpeX Near-IR Spectra of 9P/Tempel 1 during Deep Impact Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0046-2-irtf-nirspec-tmpl1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:keck_i_lws_mid_ir_images_and_photometry_of_9p_tempel_nbsp_1_from_2000:6e8cd801","title":"Keck I LWS Mid-IR Images and Photometry of 9P/Tempel 1 from 2000","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-keck1lws-3-9p-images-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:nirimage-9p::1.0","title":"KPNO Near-Infrared Images of Comet 9P/Tempel 1 during Deep Impact Encounter","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno:nirimage-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821513","keywords":["urn:nasa:pds:gbo-kpno:nirimage-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:lowell_72_inch_visual_images_and_photometry_of_9p_tempel_nbsp_1_from_2000_2001:a34501a9","title":"Lowell 72-inch Visual Images and Photometry of 9P/Tempel 1 from 2000-2001","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lo72ccd-3-9p-images-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:lcs-9p::1.0","title":"McDonald Observatory 9P/Tempel 1 Spectral Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald:lcs-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821534","keywords":["urn:nasa:pds:gbo-mcdonald:lcs-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mt_bigelow_61_inch_kuiper_telescope_visual_images_of_9p_tempel_nbsp_1_from_1994:aa616367","title":"Mt. Bigelow 61-inch Kuiper Telescope Visual Images of 9P/Tempel 1 from 1994","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lplccd-3-mtbg61-tmpl1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:san_pedro_martir_1_5m_visual_images_of_9p_tempel_nbsp_1_during_deep_impact_encounter:ab4202f5","title":"San Pedro Martir 1.5m Visual Images of 9P/Tempel 1 during Deep Impact Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0276-2_3-martir15m-tmpl1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:uh_2_2m_visual_images_and_astrometry_of_9p_tempel_nbsp_1_from_1997_2000:96d80cb4","title":"UH 2.2m Visual Images and Astrometry of 9P/Tempel 1 from 1997-2000","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0034-3-uh22m-tmpl1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:image-9p::1.0","title":"KPNO Images of Comet 9P/Tempel 1 from February to June 2005","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno:image-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821580","keywords":["urn:nasa:pds:gbo-kpno:image-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:mosaic-9p::1.0","title":"KPNO MOSAIC Images of 9P/Tempel 1 from 2005 Around the DI Encounter","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Impact"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno:mosaic-9p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepimpact/index.shtml","scraped_at":"2026-02-02T22:13:00.821588","keywords":["urn:nasa:pds:gbo-kpno:mosaic-9p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ion_propulsion_system_diagnostic_system:e6fbed94","title":"Ion Propulsion System Diagnostic System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-ids-3-rdr-borrelly-v1.0/catalog/ids.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:miniature_integrated_camera_spectrometer:4b659019","title":"Miniature Integrated Camera Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-2-edr-visccd-borrelly-v1.0/catalog/micas.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:plasma_experiment_for_planetary_exploration:25b56559","title":"Plasma Experiment for Planetary Exploration","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-pepe-2-edr-borrelly-v1.0/catalog/pepe.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ids_plasma_wave_spectrometer_data_19p_borrelly_1_fly_by:eb1c66d0","title":"IDS (Plasma Wave Spectrometer) Data, 19P/Borrelly 1 Fly-by","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-ids-3-rdr-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:micas_calibrated_visccd_images_of_19p_borrelly_1:db7eb917","title":"MICAS Calibrated VISCCD Images of 19P/Borrelly 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-3-rdr-visccd-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:micas_uncalibrated_visccd_images_of_19p_borrelly_1:b318a4f5","title":"MICAS Uncalibrated VISCCD Images of 19P/Borrelly 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-2-edr-visccd-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:micas_digital_elevation_maps_of_19p_borrelly_1:67bb6f8b","title":"MICAS Digital Elevation Maps of 19P/Borrelly 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-5-borrelly-dem-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:pepe_uncalibrated_data_from_the_19p_borrelly_1_encounter:7a47766f","title":"PEPE Uncalibrated Data from the 19P/Borrelly 1 Encounter","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-pepe-2-edr-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-ctio:cfccd-19p::1.0","title":"CTIO Images of 19P/Borrelly 1 with Photometry","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio:cfccd-19p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025135","keywords":["urn:nasa:pds:gbo-ctio:cfccd-19p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mcdonald_observatory_column_density_observations_of_19p_borrelly_1:ca8fd255","title":"McDonald Observatory Column Density Observations of 19P/Borrelly 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ids_lcs-3-rdr-borrelly-mcdnld-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:igi-19p::1.0","title":"McDonald Observatory Images of Comet 19P/Borrelly","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Space 1"],"targets":["Comet","Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald:igi-19p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025156","keywords":["urn:nasa:pds:gbo-mcdonald:igi-19p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ccd_images_of_19p_borrelly_1_1987_2002:4df2f2c5","title":"CCD Images of 19P/Borrelly 1, 1987-2002","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Deep Space 1"],"targets":["Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccdimgr-3-meech-19p-borrelly-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:image-19p::1.0","title":"KPNO Images of Comet 19P/Borrelly from 21-23 Sep 2001","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Deep Space 1"],"targets":["Comet","Comet Borrelly"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno:image-19p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/deepspace1/index.shtml","scraped_at":"2026-02-02T22:13:01.025175","keywords":["urn:nasa:pds:gbo-kpno:image-19p::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_in_flight_calibration_spectra_v2_0_raw:383b2349","title":"HRI-IR In-flight Calibration Spectra v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-epoxi-calibrations-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_in_flight_calibration_images_v2_0_raw:eb6e25d4","title":"HRI-VIS In-flight Calibration Images v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-epoxi-calibrations-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_in_flight_calibration_images_v2_0_raw:0b2c0055","title":"MRI-VIS In-flight Calibration Images v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-epoxi-calibrations-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_epoch_earth_spectra_raw:1d5eed57","title":"HRI-IR EPOCh Earth Spectra - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-2-epoxi-earth-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_epoch_earth_calibrated_spectra_v2_0:13a23194","title":"HRI-IR EPOCh Earth Calibrated Spectra v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-3_4-epoxi-earth-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_epoch_mars_spectra_raw:aaf873cc","title":"HRI-IR EPOCh Mars Spectra - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-2-epoxi-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_epoch_mars_calibrated_spectra:37ad316e","title":"HRI-IR EPOCh Mars Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-3_4-epoxi-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_in_flight_lunar_calibrated_spectra:b854555f","title":"HRI-IR In-flight Lunar Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-l-hrii-3_4-epoxi-lunar-cals-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_epoch_exoplanet_transit_images_raw:40b18e22","title":"HRI-VIS EPOCh Exoplanet Transit Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-2-epoxi-exoplanets-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_epoch_exoplanet_transit_images_calibrated:19f164d6","title":"HRI-VIS EPOCh Exoplanet Transit Images - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-3-epoxi-exoplanets-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_epoch_exoplanet_transit_photometry:d0db76f5","title":"HRI-VIS EPOCh Exoplanet Transit Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-5-epoxi-exoplanets-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_epoch_earth_images_raw:691b79c8","title":"HRI-VIS EPOCh Earth Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-2-epoxi-earth-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_epoch_earth_images_calibrated_v2_0:1d270fb0","title":"HRI-VIS EPOCh Earth Images - Calibrated v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-3_4-epoxi-earth-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_epoch_mars_images_raw:44c6f60c","title":"HRI-VIS EPOCh Mars Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-2-epoxi-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_epoch_mars_images_calibrated_v2_0:298b8774","title":"HRI-VIS EPOCh Mars Images - Calibrated v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-3_4-epoxi-mars-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_epoch_earth_context_images_raw:8de01d91","title":"MRI-VIS EPOCh Earth Context Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-2-epoxi-earth-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_epoch_earth_context_images_calibrated_v2_0:82d464f2","title":"MRI-VIS EPOCh Earth Context Images - Calibrated v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-3_4-epoxi-earth-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_epoch_mars_context_images_raw:0ce00905","title":"MRI-VIS EPOCh Mars Context Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-2-epoxi-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_epoch_mars_context_images_calibrated_v2_0:8fe3927d","title":"MRI-VIS EPOCh Mars Context Images - Calibrated v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-3_4-epoxi-mars-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_hartley_2_raw:adc2a458","title":"HRI-IR Hartley 2 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_103p_hartley_2_calibrated_spectra_v3_0:aab55e55","title":"HRI-IR 103P/Hartley 2 Calibrated Spectra v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_hartley_2_raw:a76ff170","title":"HRI-VIS Hartley 2 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_hartley_2_calibrated:74a76c01","title":"HRI-VIS Hartley 2 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_hartley_2_deconvolved_images_of_the_nucleus:e626a49e","title":"HRI-VIS Hartley 2 - Deconvolved Images of the Nucleus","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-5-epoxi-hartley2-deconv-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_hartley_2_raw:ca5d79f4","title":"MRI-VIS Hartley 2 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_hartley_2_calibrated:8a3b8d82","title":"MRI-VIS Hartley 2 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-hartley2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:epoxi_mri:hartley2_photometry::1.0","title":"EPOXI MRI-VIS 103P/Hartley 2 Encounter Photometry Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri:hartley2_photometry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227490","keywords":["urn:nasa:pds:epoxi_mri:hartley2_photometry::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_hri_ir_c_garradd_2009_p1_raw_spectra:e94f3245","title":"EPOXI HRI-IR C/Garradd (2009 P1) Raw Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_hri_ir_c_garradd_2009_p1_calibrated_spectra:31919ff2","title":"EPOXI HRI-IR C/Garradd (2009 P1) Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_c_ison_2012_s1_raw_spectra:31f06548","title":"HRI-IR C/ISON (2012 S1) Raw Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_ir_c_ison_2012_s1_calibrated_spectra:1fa9bcb7","title":"HRI-IR C/ISON (2012 S1) Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_hri_vis_c_garradd_2009_p1_raw_images:c1b3600d","title":"EPOXI HRI-VIS C/Garradd (2009 P1) Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_hri_vis_c_garradd_2009_p1_calibrated_images:20675fdb","title":"EPOXI HRI-VIS C/Garradd (2009 P1) Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_mri_vis_c_garradd_2009_p1_raw_images:56337d9d","title":"EPOXI MRI-VIS C/Garradd (2009 P1) Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_mri_vis_c_garradd_2009_p1_calibrated_images:c770fc30","title":"EPOXI MRI-VIS C/Garradd (2009 P1) Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-garradd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_c_ison_2012_s1_raw_images:6648690b","title":"MRI-VIS C/ISON (2012 S1) Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:mri_vis_c_ison_2012_s1_calibrated_images:a40c7f86","title":"MRI-VIS C/ISON (2012 S1) Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hri_vis_stellar_psfs:5068ae4f","title":"HRI-VIS Stellar PSFs","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-6-epoxi-stellar-psfs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_spacecraft_instrument_temperatures_v3_0:c33c9d7e","title":"EPOXI Spacecraft Instrument Temperatures v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:derived_shape_model_of_103p_hartley_2:f786774f","title":"Derived Shape Model of 103P/Hartley 2","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["EPOXI"],"targets":["Comet Hartley 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_mri-5-hartley2-shape-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/epoxi/index.shtml","scraped_at":"2026-02-02T22:13:01.227595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:near_infrared_mapping_spectrometer:d9322239","title":"Near-Infrared Mapping Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/catalog/gonimsin.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photopolarimeter_radiometer:47945429","title":"Photopolarimeter-Radiometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/catalog/gopprins.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solid_state_imaging_system:77b45072","title":"Solid State Imaging System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/catalog/gossiins.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ultraviolet_spectrometer:6122f1aa","title":"Ultraviolet Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-2-edr-sl9-v1.0/catalog/gouvsins.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:galileo_near_infrared_mapping_spectrometer_observations_of_d_shoemaker_levy_9:3ecd5e0d","title":"Galileo Near-Infrared Mapping Spectrometer Observations of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:galileo_photopolarimeter_radiometer_observations_of_d_shoemaker_levy_9:302fb51d","title":"Galileo Photopolarimeter Radiometer Observations of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:galileo_solid_state_imaging_system_images_of_d_shoemaker_levy_9:c4f5b582","title":"Galileo Solid State Imaging System Images of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:galileo_uv_spectrometer_observations_of_d_shoemaker_levy_9:e52167ef","title":"Galileo UV Spectrometer Observations of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-2-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:galileo_uv_spectrometer_observations_of_fragment_g_of_d_shoemaker_levy_9:7cd72ac6","title":"Galileo UV Spectrometer Observations of Fragment G of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Galileo"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-3-rdr-sl9-g-fragment-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/galileo/index.shtml","scraped_at":"2026-02-02T22:13:01.490796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_detector_system:f7bab579","title":"Dust Impact Detector System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/catalog/did.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:energetic_particle_analyzer:00930d50","title":"Energetic Particle Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-epa-3-rdr-grigg-skjell-v1.0/catalog/epa.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_science_experiment:8fc8f147","title":"Radio Science Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-grigg-skjell-v1.0/catalog/gre.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:halley_multicolour_camera:65ce3f8c","title":"Halley Multicolour Camera","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/catalog/hmc.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ion_mass_spectrometer:2dd193c2","title":"Ion Mass Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-grigg-skjell-v1.0/catalog/ims.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:johnstone_plasma_analyzer:b3c1392d","title":"Johnstone Plasma Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa_mag-4-rdr-grigg-skjell-v1.0/catalog/jpa.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:magnetometer:b0a235a8","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-grigg-skjell-v1.0/catalog/mag.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:optical_probe_experiment:39786ed4","title":"Optical Probe Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-grigg-skjell-v1.0/catalog/ope.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:particle_impact_analyzer:80c18448","title":"Particle Impact Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/catalog/pia.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:neutral_mass_spectrometer:2b6b5dab","title":"Neutral Mass Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-nms-4-halley-v1.0/catalog/instrument.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_dust_impact_detector_observations_near_comet_halley:24b6a7dc","title":"Giotto Dust Impact Detector Observations near Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_radio_science_experiment_observations_of_comet_halley:288163e1","title":"Giotto Radio Science Experiment Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_radio_science_experiment_additional_observations_of_comet_halley:4efffa66","title":"Giotto Radio Science Experiment - Additional Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-1-edr-halley-addenda-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_halley_multi_colour_camera_observations_of_comet_halley:eed9d5f9","title":"Giotto Halley Multi-Colour Camera Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_ion_mass_spectrometer_high_energy_range_spectrometer_observations_of_comet_halley:d8ea02b3","title":"Giotto Ion Mass Spectrometer, High Energy Range Spectrometer Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-hers-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_ion_mass_spectrometer_high_intensity_spectrometer_observations_of_comet_halley:dac06871","title":"Giotto Ion Mass Spectrometer, High Intensity Spectrometer Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_johnstone_plasma_analyzer_merged_results_for_comet_halley:2b01b277","title":"Giotto Johnstone Plasma Analyzer Merged Results for Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-4-ddr-halley-merge-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_magnetometer_8_second_observations_of_comet_halley:d6682bd0","title":"Giotto Magnetometer 8-second Observations of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-halley-8sec-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_optical_probe_experiment_photopolarimetry_of_comet_halley:e9f25631","title":"Giotto Optical Probe Experiment Photopolarimetry of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_particulate_impact_analyzer_observations_near_comet_halley:fdb87277","title":"Giotto Particulate Impact Analyzer Observations near Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_neutral_mass_spectrometer_density_profiles_of_comet_halley:c12b2b26","title":"Giotto Neutral Mass Spectrometer Density Profiles of Comet Halley","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-nms-4-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/giotto/index.shtml","scraped_at":"2026-02-02T22:13:01.626541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:halley_multimeter_camera:65ce3f8c","title":"Halley Multimeter Camera","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/catalog/hmc.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_dust_impact_detector_observations_of_comet_26p_grigg_skjellerup:5701a105","title":"Giotto Dust Impact Detector Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_energetic_particle_experiment_observations_of_comet_26p_grigg_skjellerup:2e3018d8","title":"Giotto Energetic Particle Experiment Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-epa-3-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_radio_science_experiment_observations_of_comet_26p_grigg_skjellerup:0413da0d","title":"Giotto Radio Science Experiment Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_ion_mass_spectrometer_high_intensity_spectrometer_observations_of_comet_26p_grigg_skjellerup:f622b9c6","title":"Giotto Ion Mass Spectrometer, High-Intensity Spectrometer Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_combined_particle_analyzer_magnetometer_observations_of_comet_26p_grigg_skjellerup:c4ecdb8b","title":"Giotto Combined Particle Analyzer/Magnetometer Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa_mag-4-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_johnstone_particle_analyzer_observations_of_comet_26p_grigg_skjellerup:60ad5150","title":"Giotto Johnstone Particle Analyzer Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-3-rdr-iis-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_fluxgate_magnetometer_observations_of_comet_26p_grigg_skjellerup:0b783f92","title":"Giotto Fluxgate Magnetometer Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:giotto_optical_probe_experiment_observations_of_comet_26p_grigg_skjellerup:d33f7c90","title":"Giotto Optical Probe Experiment Observations of Comet 26P/Grigg-Skjellerup","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Giotto"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-grigg-skjell-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/gem/index.shtml","scraped_at":"2026-02-02T22:13:01.825764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_didymos_raw::2.0","title":"Lucy L'LORRI Didymos Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Didymos"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638285","keywords":["urn:nasa:pds:lucy.llorri:data_didymos_raw::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::2.0","title":"Lucy L'LORRI Didymos Partially Processed Data v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Didymos"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638306","keywords":["urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_dinkinesh_raw::1.0","title":"Lucy L'LORRI Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638316","keywords":["urn:nasa:pds:lucy.llorri:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_dinkinesh_partially_processed::1.0","title":"Lucy L'LORRI Dinkinesh Partially Processed Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_dinkinesh_partially_processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638326","keywords":["urn:nasa:pds:lucy.llorri:data_dinkinesh_partially_processed::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.leisa:data_dinkinesh_raw::1.0","title":"Lucy LEISA Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638334","keywords":["urn:nasa:pds:lucy.leisa:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.leisa:data_dinkinesh_calibrated::1.0","title":"Lucy LEISA Dinkinesh Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:data_dinkinesh_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638347","keywords":["urn:nasa:pds:lucy.leisa:data_dinkinesh_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mvic:data_dinkinesh_raw::1.0","title":"Lucy MVIC Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638355","keywords":["urn:nasa:pds:lucy.mvic:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mvic:data_dinkinesh_calibrated::1.0","title":"Lucy MVIC Dinkinesh Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:data_dinkinesh_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638363","keywords":["urn:nasa:pds:lucy.mvic:data_dinkinesh_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:data_dinkinesh_ion::1.0","title":"Lucy Radio Science Subsystem Dinkinesh Mission Dependent Ionosphere Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_dinkinesh_ion-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638372","keywords":["urn:nasa:pds:lucy.rss:data_dinkinesh_ion::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:data_dinkinesh_sff::1.0","title":"Lucy Radio Science Subsystem Dinkinesh Small Forces File Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_dinkinesh_sff-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638380","keywords":["urn:nasa:pds:lucy.rss:data_dinkinesh_sff::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:data_dinkinesh_skyfreq::1.0","title":"Lucy Radio Science Subsystem Dinkinesh Sky Frequency Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_dinkinesh_skyfreq-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638388","keywords":["urn:nasa:pds:lucy.rss:data_dinkinesh_skyfreq::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:data_dinkinesh_trk234::1.0","title":"Lucy Radio Science Subsystem Dinkinesh Tracking Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_dinkinesh_trk234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638396","keywords":["urn:nasa:pds:lucy.rss:data_dinkinesh_trk234::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ltes:data_dinkinesh_raw::1.0","title":"Lucy L'TES Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638403","keywords":["urn:nasa:pds:lucy.ltes:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ltes:data_dinkinesh_hkraw::1.0","title":"Lucy L'TES Dinkinesh Raw Housekeeping Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_dinkinesh_hkraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638411","keywords":["urn:nasa:pds:lucy.ltes:data_dinkinesh_hkraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ltes:data_dinkinesh_calibrated::1.0","title":"Lucy L'TES Dinkinesh Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_dinkinesh_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638419","keywords":["urn:nasa:pds:lucy.ltes:data_dinkinesh_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ttcam:data_dinkinesh_raw::1.0","title":"Lucy TTCam Dinkinesh Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:data_dinkinesh_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638426","keywords":["urn:nasa:pds:lucy.ttcam:data_dinkinesh_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ttcam:data_dinkinesh_calibrated::1.0","title":"Lucy TTCam Dinkinesh Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Dinkinesh"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:data_dinkinesh_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638437","keywords":["urn:nasa:pds:lucy.ttcam:data_dinkinesh_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:donaldjohanson_coordinate_system_description:bb5cfa18","title":"Donaldjohanson Coordinate System Description","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mission:document-v2.0/Donaldjohanson_Coordinate_System_Description_v1.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_donaldjohanson_raw::1.0","title":"Lucy L'LORRI Donaldjohanson Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638465","keywords":["urn:nasa:pds:lucy.llorri:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_donaldjohanson_partially_processed::1.0","title":"Lucy L'LORRI Donaldjohanson Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:data_donaldjohanson_partially_processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638473","keywords":["urn:nasa:pds:lucy.llorri:data_donaldjohanson_partially_processed::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.leisa:data_donaldjohanson_raw::1.0","title":"Lucy L'Ralph LEISA Donaldjohanson Raw Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638481","keywords":["urn:nasa:pds:lucy.leisa:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.leisa:data_donaldjohanson_calibrated::1.0","title":"Lucy L'Ralph LEISA Donaldjohanson Calibrated Data Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:data_donaldjohanson_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638495","keywords":["urn:nasa:pds:lucy.leisa:data_donaldjohanson_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mvic:data_donaldjohanson_raw::1.0","title":"Lucy L'Ralph MVIC Donaldjohanson Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638503","keywords":["urn:nasa:pds:lucy.mvic:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mvic:data_donaldjohanson_calibrated::1.0","title":"Lucy L'Ralph MVIC Donaldjohanson Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:data_donaldjohanson_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638511","keywords":["urn:nasa:pds:lucy.mvic:data_donaldjohanson_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:data_donaldjohanson_ion::1.0","title":"Lucy Donaldjohanson Encounter Ionosphere Radio Science Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_donaldjohanson_ion-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638519","keywords":["urn:nasa:pds:lucy.rss:data_donaldjohanson_ion::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:data_donaldjohanson_sff::1.0","title":"Lucy Donaldjohanson Encounter Radio Science Small Forces Files","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_donaldjohanson_sff-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638527","keywords":["urn:nasa:pds:lucy.rss:data_donaldjohanson_sff::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:data_donaldjohanson_skyfreq::1.0","title":"Lucy Donaldjohanson Encounter Calibrated Sky Frequency Radio Science Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_donaldjohanson_skyfreq-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638536","keywords":["urn:nasa:pds:lucy.rss:data_donaldjohanson_skyfreq::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:data_donaldjohanson_trk234::1.0","title":"Lucy Donaldjohanson Encounter TRK-2-34 Radio Science Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:data_donaldjohanson_trk234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638544","keywords":["urn:nasa:pds:lucy.rss:data_donaldjohanson_trk234::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ltes:data_donaldjohanson_raw::1.0","title":"Lucy L'TES Donaldjohanson Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638552","keywords":["urn:nasa:pds:lucy.ltes:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ltes:data_donaldjohanson_hkraw::1.0","title":"Lucy L'TES Donaldjohanson Raw Housekeeping Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_donaldjohanson_hkraw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638559","keywords":["urn:nasa:pds:lucy.ltes:data_donaldjohanson_hkraw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ltes:data_donaldjohanson_calibrated::1.0","title":"Lucy L'TES Donaldjohanson Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:data_donaldjohanson_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638567","keywords":["urn:nasa:pds:lucy.ltes:data_donaldjohanson_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ttcam:data_donaldjohanson_raw::1.0","title":"Lucy TTCam Donaldjohanson Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:data_donaldjohanson_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638575","keywords":["urn:nasa:pds:lucy.ttcam:data_donaldjohanson_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ttcam:data_donaldjohanson_calibrated::1.0","title":"Lucy TTCam Donaldjohanson Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":["Donaldjohanson"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:data_donaldjohanson_calibrated-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638582","keywords":["urn:nasa:pds:lucy.ttcam:data_donaldjohanson_calibrated::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:calibration::3.0","title":"Lucy L'LORRI Calibration Collection v3.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638591","keywords":["urn:nasa:pds:lucy.llorri:calibration::3.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:document::2.0","title":"Lucy L'LORRI Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri:document-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638599","keywords":["urn:nasa:pds:lucy.llorri:document::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.leisa:calibration::2.0","title":"Lucy L'Ralph LEISA Calibration Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:calibration-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638606","keywords":["urn:nasa:pds:lucy.leisa:calibration::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.leisa:document::2.0","title":"Lucy L'Ralph LEISA Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa:document-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638615","keywords":["urn:nasa:pds:lucy.leisa:document::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mvic:calibration::2.0","title":"Lucy L'Ralph MVIC Calibration Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:calibration-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638623","keywords":["urn:nasa:pds:lucy.mvic:calibration::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mvic:document::2.0","title":"Lucy L'Ralph MVIC Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic:document-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638630","keywords":["urn:nasa:pds:lucy.mvic:document::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss:document::1.0","title":"Lucy Radio Science Subsystem Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638638","keywords":["urn:nasa:pds:lucy.rss:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ltes:document::1.0","title":"Lucy L'TES Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638645","keywords":["urn:nasa:pds:lucy.ltes:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ttcam:calibration::1.0","title":"Lucy TTCam Calibration Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:calibration-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638652","keywords":["urn:nasa:pds:lucy.ttcam:calibration::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ttcam:document::1.0","title":"Lucy TTCam Document Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam:document-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638658","keywords":["urn:nasa:pds:lucy.ttcam:document::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mission:document::2.0","title":"Lucy Mission Document Collection v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mission:document-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/lucy/index.shtml","scraped_at":"2026-02-02T22:13:02.638665","keywords":["urn:nasa:pds:lucy.mission:document::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:alice_ultraviolet_imaging_spectrograph:a6f13105","title":"ALICE Ultraviolet Imaging Spectrograph","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/documents/alice_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:linear_etalon_imaging_spectral_array:cb719533","title":"Linear Etalon Imaging Spectral Array","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/documents/leisa_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:long_range_reconnaissance_imager:0b2a690f","title":"Long Range Reconnaissance Imager","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:lorri-v1.0/documents/lorri_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:multispectral_visible_imaging_camera:9f9075a5","title":"Multispectral Visible Imaging Camera","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/documents/mvic_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:pluto_energetic_particle_spectrometer_science_investigation:b26e2c2d","title":"Pluto Energetic Particle Spectrometer Science Investigation","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/documents/pepssi_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_science_experiment:8389a00a","title":"Radio Science Experiment","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/documents/rex_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:student_dust_counter:9c3fc9b6","title":"Student Dust Counter","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/documents/sdc_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solar_wind_around_pluto:653ee81d","title":"Solar Wind Around Pluto","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/documents/swap_inst_overview.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_alice_post_launch_checkout_v2_0_raw:0b399dfc","title":"New Horizons ALICE Post-Launch Checkout v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_alice_post_launch_checkout_v2_0_calibrated:345e5a4a","title":"New Horizons ALICE Post-Launch Checkout v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_post_launch_checkout_v1_1_raw:e43d4b87","title":"New Horizons LEISA Post-Launch Checkout v1.1 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-launch-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_post_launch_checkout_v1_1_calibrated:76b7ca9d","title":"New Horizons LEISA Post-Launch Checkout v1.1 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-launch-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_post_launch_checkout_raw_data_v3_0:0747ec76","title":"New Horizons LORRI Post-Launch Checkout Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_post_launch_checkout_calibrated_data_v3_0:1c7b2bf0","title":"New Horizons LORRI Post-Launch Checkout Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_mvic_post_launch_checkout_v2_0_raw:238ea25f","title":"New Horizons MVIC Post-Launch Checkout v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_mvic_post_launch_checkout_v2_0_calibrated:d48b0be1","title":"New Horizons MVIC Post-Launch Checkout v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_post_launch_checkout_v1_1_raw:1da6ecbb","title":"New Horizons PEPSSI Post-Launch Checkout v1.1 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-launch-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_post_launch_checkout_v1_1_calibrated:6a13a707","title":"New Horizons PEPSSI Post-Launch Checkout v1.1 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-launch-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_post_launch_checkout_raw_data_v2_0:b4a85904","title":"New Horizons REX Post-Launch Checkout Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_post_launch_checkout_calibrated_data:7dd5395e","title":"New Horizons REX Post-Launch Checkout Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-launch-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_post_launch_checkout_raw_data_v4_0:4d4f30e9","title":"New Horizons SDC Post-Launch Checkout Raw Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_post_launch_checkout_calibrated_data_v4_0:36fb3637","title":"New Horizons SDC Post-Launch Checkout Calibrated Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_post_launch_checkout_v2_0_raw:e6acab43","title":"New Horizons SWAP Post-Launch Checkout v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_post_launch_checkout_v2_0_calibrated:ea25d920","title":"New Horizons SWAP Post-Launch Checkout v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-launch-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_alice_jupiter_encounter_v2_0_raw:55b2d416","title":"New Horizons ALICE Jupiter Encounter v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-2-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_alice_jupiter_encounter_v2_0_calibrated:cfe97d0d","title":"New Horizons ALICE Jupiter Encounter v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-3-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_jupiter_encounter_v1_1_raw:db0c5290","title":"New Horizons LEISA Jupiter Encounter v1.1 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-2-jupiter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_jupiter_encounter_v1_1_calibrated:c6429895","title":"New Horizons LEISA Jupiter Encounter v1.1 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-3-jupiter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_jupiter_encounter_raw_data_v3_0:bf7ea9a4","title":"New Horizons LORRI Jupiter Encounter Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_jupiter_encounter_calibrated_data_v3_0:c7594450","title":"New Horizons LORRI Jupiter Encounter Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_mvic_jupiter_encounter_v2_0_raw:046521e4","title":"New Horizons MVIC Jupiter Encounter v2.0 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-2-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_mvic_jupiter_encounter_v2_0_calibrated:e20bf13a","title":"New Horizons MVIC Jupiter Encounter v2.0 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-3-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_jupiter_encounter_v1_1_raw:203c28c7","title":"New Horizons PEPSSI Jupiter Encounter v1.1 - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-2-jupiter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_jupiter_encounter_v1_1_calibrated:c187e7a6","title":"New Horizons PEPSSI Jupiter Encounter v1.1 - Calibrated","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-3-jupiter-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_jupiter_encounter_raw_data_v2_0:e4e1190a","title":"New Horizons REX Jupiter Encounter Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-2-jupiter-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_jupiter_encounter_calibrated_data:325e37f6","title":"New Horizons REX Jupiter Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-3-jupiter-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_jupiter_encounter_raw_data_v4_0:a3fd1d04","title":"New Horizons SDC Jupiter Encounter Raw Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.435998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_jupiter_encounter_calibrated_data_v4_0:efc8a0d2","title":"New Horizons SDC Jupiter Encounter Calibrated Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_jupiter_encounter_raw_data_v4_0:21f65969","title":"New Horizons SWAP Jupiter Encounter Raw Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_jupiter_encounter_calibrated_data_v4_0:82ed67f6","title":"New Horizons SWAP Jupiter Encounter Calibrated Data v4.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v4.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_alice_pluto_cruise_raw_data_v2_0:d8806ee5","title":"New Horizons ALICE Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_alice_pluto_cruise_calibrated_data_v2_0:d4db8bce","title":"New Horizons ALICE Pluto Cruise Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_pluto_cruise_raw_data:7fea5c30","title":"New Horizons LEISA Pluto Cruise Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_pluto_cruise_calibrated_data:62922407","title":"New Horizons LEISA Pluto Cruise Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_pluto_cruise_raw_data_v2_0:0cca6dd5","title":"New Horizons LORRI Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_pluto_cruise_calibrated_data_v2_0:97568bc7","title":"New Horizons LORRI Pluto Cruise Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_mvic_pluto_cruise_raw_data:ae6998d4","title":"New Horizons MVIC Pluto Cruise Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436092","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_mvic_pluto_cruise_calibrated_data:297d3208","title":"New Horizons MVIC Pluto Cruise Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_pluto_cruise_raw_data_v2_0:fdc4d0c5","title":"New Horizons PEPSSI Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_pluto_cruise_calibrated_data_v2_0:602e821f","title":"New Horizons PEPSSI Pluto Cruise Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_pluto_cruise_raw_data_v2_0:08084556","title":"New Horizons REX Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_pluto_cruise_calibrated_data:01729d43","title":"New Horizons REX Pluto Cruise Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-plutocruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_pluto_cruise_raw_data_v2_0:947471c0","title":"New Horizons SDC Pluto Cruise Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_pluto_cruise_calibrated_data_v2_0:0a11d108","title":"New Horizons SDC Pluto Cruise Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-plutocruise-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_pluto_cruise_raw_data_v3_0:d8473780","title":"New Horizons SWAP Pluto Cruise Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_pluto_cruise_calibrated_data_v3_0:65369f64","title":"New Horizons SWAP Pluto Cruise Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:pluto_raw::1.0","title":"New Horizons Alice Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436193","keywords":["urn:nasa:pds:nh_alice:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:pluto_cal::1.0","title":"New Horizons Alice Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436202","keywords":["urn:nasa:pds:nh_alice:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:pluto_raw::1.0","title":"New Horizons LEISA Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436210","keywords":["urn:nasa:pds:nh_leisa:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:pluto_cal::1.0","title":"New Horizons LEISA Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436218","keywords":["urn:nasa:pds:nh_leisa:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:pluto_raw::1.0","title":"New Horizons LORRI Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436226","keywords":["urn:nasa:pds:nh_lorri:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:pluto_cal::1.0","title":"New Horizons LORRI Pluto Encounter Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436234","keywords":["urn:nasa:pds:nh_lorri:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:pluto_raw::1.0","title":"New Horizons MVIC Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436243","keywords":["urn:nasa:pds:nh_mvic:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:pluto_cal::1.0","title":"New Horizons MVIC Pluto Encounter Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436251","keywords":["urn:nasa:pds:nh_mvic:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:pluto_raw::1.0","title":"New Horizons PEPSSI Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436263","keywords":["urn:nasa:pds:nh_pepssi:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:pluto_cal::1.0","title":"New Horizons PEPSSI Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436272","keywords":["urn:nasa:pds:nh_pepssi:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0","title":"New Horizons Encounter with the Pluto System: Time-Averaged Solar Winds Particle and Ion Fluxes from PEPSSI Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436282","keywords":["urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:pluto_raw::1.0","title":"New Horizons SDC Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436291","keywords":["urn:nasa:pds:nh_sdc:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:pluto_cal::1.0","title":"New Horizons SDC Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436300","keywords":["urn:nasa:pds:nh_sdc:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:pluto_raw::1.0","title":"New Horizons SWAP Pluto Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436309","keywords":["urn:nasa:pds:nh_swap:pluto_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:pluto_cal::1.0","title":"New Horizons SWAP Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436318","keywords":["urn:nasa:pds:nh_swap:pluto_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:pluto_data_summary_plots::1.0","title":"New Horizons SWAP Pluto Encounter Data Summary Plots","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436327","keywords":["urn:nasa:pds:nh_swap:pluto_data_summary_plots::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_solar_wind::1.0","title":"New Horizons Encounter with the Pluto System: Solar Wind Parameters from SWAP Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436337","keywords":["urn:nasa:pds:nh_derived:plutosystem_solar_wind::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_pluto_encounter_raw_data_v2_0:cf0ea9b7","title":"New Horizons REX Pluto Encounter Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-2-pluto-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_pluto_encounter_calibrated_data:2141d458","title":"New Horizons REX Pluto Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-3-pluto-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_composition::1.0","title":"New Horizons Encounter with the Pluto System: Global Color Maps, Image Cubes, and Absorption Band Maps from the LEISA and MVIC Instruments","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436367","keywords":["urn:nasa:pds:nh_derived:plutosystem_composition::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_atmospherics::1.0","title":"New Horizons Encounter with the Pluto System: Atmospheric Opacities and Composition, Temperature, Pressure, and Haze Profiles from the LORRI, Alice, and REX Instruments","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436378","keywords":["urn:nasa:pds:nh_derived:plutosystem_atmospherics::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0","title":"New Horizons Encounter with the Pluto System: Mosaics, Topographic Maps, and Bond Albedo Maps for Pluto and Charon from LORRI and MVIC Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto","Charon"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436390","keywords":["urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:ipm_solar_wind::1.0","title":"New Horizons Primary and Extended Missions: Solar Wind Parameters","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436400","keywords":["urn:nasa:pds:nh_derived:ipm_solar_wind::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents::4.3","title":"New Horizons Mission Instrument-Specific and Mission-Wide Documents v4.3","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.3/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436409","keywords":["urn:nasa:pds:nh_documents::4.3"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:calibration_files::1.0","title":"New Horizons Alice Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436418","keywords":["urn:nasa:pds:nh_alice:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:calibration_files::1.0","title":"New Horizons LORRI Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436425","keywords":["urn:nasa:pds:nh_lorri:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:calibration_files::1.0","title":"New Horizons LEISA Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436433","keywords":["urn:nasa:pds:nh_leisa:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:calibration_files::1.0","title":"New Horizons MVIC Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436442","keywords":["urn:nasa:pds:nh_mvic:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:calibration_files::2.0","title":"New Horizons PEPSSI Reference Files Used in Calibrating Data v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436494","keywords":["urn:nasa:pds:nh_pepssi:calibration_files::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:calibration_files::1.0","title":"New Horizons SDC Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436505","keywords":["urn:nasa:pds:nh_sdc:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:calibration_files::1.0","title":"New Horizons SWAP Reference Files Used in Calibrating Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436513","keywords":["urn:nasa:pds:nh_swap:calibration_files::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:trajectory::2.0","title":"New Horizons Spacecraft Trajectory v2.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436522","keywords":["urn:nasa:pds:nh_swap:trajectory::2.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_secondary::1.0","title":"Secondary Collections to Support New Horizons Research Results","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436531","keywords":["urn:nasa:pds:nh_secondary::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:lorri_cob::1.0","title":"New Horizons Cosmic Optical Background Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436540","keywords":["urn:nasa:pds:nh_derived:lorri_cob::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:pluto_albedo::1.0","title":"Bolometric Hemispherical Albedo Map of Pluto from New Horizons Observations","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Pluto"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/newhorizons/index.shtml","scraped_at":"2026-02-02T22:13:03.436549","keywords":["urn:nasa:pds:nh_derived:pluto_albedo::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_alice_kem_cruise_1_raw_data_v2_0:a3d64f6a","title":"New Horizons ALICE KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_alice_kem_cruise_1_calibrated_data_v2_0:cf75db73","title":"New Horizons ALICE KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_kem_cruise_1_raw_data_v2_0:580de60f","title":"New Horizons LEISA KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_kem_cruise_1_calibrated_data_v2_0:a8534fc9","title":"New Horizons LEISA KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_kem_cruise_1_raw_data_v2_0:83271cb4","title":"New Horizons LORRI KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_kem_cruise_1_calibrated_data_v2_0:8635cdf3","title":"New Horizons LORRI KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_mvic_kem_cruise_1_raw_data_v2_0:690464f8","title":"New Horizons MVIC KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_mvic_kem_cruise_1_calibrated_data_v2_0:0354829e","title":"New Horizons MVIC KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_kem_cruise_1_raw_data_v2_0:e9b52c25","title":"New Horizons PEPSSI KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_kem_cruise_1_calibrated_data_v2_0:29952994","title":"New Horizons PEPSSI KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_kem_cruise_1_raw_data_v2_0:2c23d36c","title":"New Horizons REX KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_rex_kem_cruise_1_calibrated_data_v2_0:8c1668ba","title":"New Horizons REX KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_kem_cruise_1_raw_data_v2_0:62a4eb40","title":"New Horizons SDC KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_kem_cruise_1_calibrated_data_v2_0:d8e6baf1","title":"New Horizons SDC KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_kem_cruise_1_raw_data_v2_0:72b850c4","title":"New Horizons SWAP KEM Cruise 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_kem_cruise_1_calibrated_data_v2_0:bcd831ab","title":"New Horizons SWAP KEM Cruise 1 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-kemcruise1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:kem1_raw::1.0","title":"New Horizons Alice KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634725","keywords":["urn:nasa:pds:nh_alice:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:kem1_cal::1.0","title":"New Horizons Alice KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634734","keywords":["urn:nasa:pds:nh_alice:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:kem1_raw::1.0","title":"New Horizons LEISA KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634741","keywords":["urn:nasa:pds:nh_leisa:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:kem1_cal::1.0","title":"New Horizons LEISA KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634748","keywords":["urn:nasa:pds:nh_leisa:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:kem1_raw::1.0","title":"New Horizons LORRI KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634755","keywords":["urn:nasa:pds:nh_lorri:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:kem1_cal::1.0","title":"New Horizons LORRI KEM1 Encounter Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634763","keywords":["urn:nasa:pds:nh_lorri:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:kem1_raw::1.0","title":"New Horizons MVIC KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634771","keywords":["urn:nasa:pds:nh_mvic:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:kem1_cal::1.0","title":"New Horizons MVIC KEM1 Encounter Partially Processed Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634778","keywords":["urn:nasa:pds:nh_mvic:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:kem1_raw::1.0","title":"New Horizons PEPSSI KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634788","keywords":["urn:nasa:pds:nh_pepssi:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:kem1_cal::1.0","title":"New Horizons PEPSSI KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634796","keywords":["urn:nasa:pds:nh_pepssi:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_rex:kem1_raw::1.0","title":"New Horizons REX KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634804","keywords":["urn:nasa:pds:nh_rex:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_rex:kem1_cal::1.0","title":"New Horizons REX KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634811","keywords":["urn:nasa:pds:nh_rex:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_rex:kem1_tnf::1.0","title":"New Horizons REX KEM1 Encounter Tracking and Navigation Files","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634820","keywords":["urn:nasa:pds:nh_rex:kem1_tnf::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:kem1_raw::1.0","title":"New Horizons SDC KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634827","keywords":["urn:nasa:pds:nh_sdc:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:kem1_cal::1.0","title":"New Horizons SDC KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634834","keywords":["urn:nasa:pds:nh_sdc:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:kem1_raw::1.0","title":"New Horizons SWAP KEM1 Encounter Raw Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634841","keywords":["urn:nasa:pds:nh_swap:kem1_raw::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:kem1_cal::1.0","title":"New Horizons SWAP KEM1 Encounter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634848","keywords":["urn:nasa:pds:nh_swap:kem1_cal::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:kem1_data_summary_plots::1.0","title":"New Horizons SWAP KEM1 Encounter Data Summary Plots","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634856","keywords":["urn:nasa:pds:nh_swap:kem1_data_summary_plots::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:arrokoth_composition::1.0","title":"New Horizons Arrokoth Encounter Surface Composition Maps","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Arrokoth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634866","keywords":["urn:nasa:pds:nh_derived:arrokoth_composition::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0","title":"New Horizons Encounter with (486958) Arrokoth: Derived Shape Models and Surface Maps","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Arrokoth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634875","keywords":["urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0","title":"New Horizons Porter (2024) Arrokoth Shape Model Collection","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Arrokoth"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634885","keywords":["urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_kem2_raw_data:56c45d7c","title":"New Horizons LEISA KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_leisa_kem2_calibrated_data:419ef0e5","title":"New Horizons LEISA KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_kem2_raw_data:0f7bdbf8","title":"New Horizons LORRI KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_lorri_kem2_calibrated_data:c3b54ba4","title":"New Horizons LORRI KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_kem2_raw_data:50b675e6","title":"New Horizons PEPSSI KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_pepssi_kem2_calibrated_data:ed031ec4","title":"New Horizons PEPSSI KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_kem2_raw_data:fe4bc8e7","title":"New Horizons SDC KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_sdc_kem2_calibrated_data:b1ddaa12","title":"New Horizons SDC KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_kem2_raw_data:ca980c2b","title":"New Horizons SWAP KEM2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:new_horizons_swap_kem2_calibrated_data:08dadfb2","title":"New Horizons SWAP KEM2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0","title":"New Horizons Kuiper Belt Extended Mission: Alice Ultraviolet Imaging Spectrograph Scans of Lyman-alpha Emission from the Interplanetary Medium","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634976","keywords":["urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:oss_plasma_fluxes::1.0","title":"New Horizons Primary and Extended Mission in the Outer Solar System: Averaged Energetic Particle Flux Rates and Counts-per-Second from PEPSSI Observations, 2012-2020","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/nh-kem/index.shtml","scraped_at":"2026-02-02T22:13:03.634986","keywords":["urn:nasa:pds:nh_derived:oss_plasma_fluxes::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:krfm_combined_radiometer_spectrophotometer_for_mars:260b94ca","title":"KRFM Combined Radiometer Spectrophotometer For Mars","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-krfm-3-photometry-v1.0/catalog/krfm.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:termoskan_optical_scanning_radiometer:caf8a51c","title":"TermoSkan Optical Scanning Radiometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-edited-thrm_vis-img-edr-v1.0/catalog/ts.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vsk_fregat_ccd_camera:b45fa577","title":"VSK-FREGAT CCD Camera","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-vsk-2-edr-v1.0/catalog/vsk.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:phobos_2_mars_krfm_photometry:d9074ed1","title":"Phobos 2 Mars KRFM Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-krfm-3-photometry-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:phobos_2_mars_termoskan_thermal_visible_flux_images:857407ed","title":"Phobos 2 Mars Termoskan Thermal/Visible Flux Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-therm_vis-imgedr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:phobos_2_mars_termoskan_edited_thermal_visible_ir_images:3255e96d","title":"Phobos 2 Mars Termoskan Edited Thermal/Visible IR Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-edited-thrm_vis-img-edr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:phobos_2_mars_phobos_jupiter_vsk_fregat_images:46ef2ba0","title":"Phobos 2 Mars/Phobos/Jupiter VSK-Fregat Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Phobos"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-vsk-2-edr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/phobos2/index.shtml","scraped_at":"2026-02-02T22:13:04.113587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_laboratory_ground_benchmark_raw_data:f5a135f0","title":"Rosetta-Orbiter/Lander CONSERT Laboratory Ground Benchmark Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grndbench-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_flight_and_qualification_ground_edited_raw_data:ea3686b7","title":"Rosetta-Orbiter/Lander CONSERT Flight and Qualification Ground Edited Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grnd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_flight_and_qualification_ground_calibrated_data_v1_1:f5fd0d1a","title":"Rosetta-Orbiter/Lander CONSERT Flight and Qualification Ground Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-grnd-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_flight_and_qualification_ground_resampled_data:7e08d91d","title":"Rosetta-Orbiter/Lander CONSERT Flight and Qualification Ground Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-grnd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_2008_ground_reference_calibrated_data:ddc52ddd","title":"Rosetta-Orbiter MIDAS 2008 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2008-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_2009_ground_reference_calibrated_data:1d766b09","title":"Rosetta-Orbiter MIDAS 2009 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2009-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_2010_ground_reference_calibrated_data:1202ab9c","title":"Rosetta-Orbiter MIDAS 2010 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2010-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_2011_ground_reference_calibrated_data:9d89c4fe","title":"Rosetta-Orbiter MIDAS 2011 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2011-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_2013_ground_reference_calibrated_data:b556d4c9","title":"Rosetta-Orbiter MIDAS 2013 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2013-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_2014_ground_reference_calibrated_data:a8d2ea9d","title":"Rosetta-Orbiter MIDAS 2014 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2014-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_2015_ground_reference_calibrated_data:3575619a","title":"Rosetta-Orbiter MIDAS 2015 Ground Reference Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2015-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_ground_thermal_vacuum_raw_data:d4cd0641","title":"Rosetta-Orbiter MIRO Ground Thermal Vacuum Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-miro-2-grnd-thermal-vac-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sd2_ground_test_model_calibrated_data:dfb42fb4","title":"Rosetta-Lander SD2 Ground Test Model Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-grnd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_commissioning_1_amp_comet_c_2002_t7_linear_raw_data:5f1c3c89","title":"Rosetta-Orbiter ALICE Commissioning 1 & Comet C/2002 T7 (LINEAR) Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cvp1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_commissioning_1_amp_comet_c_2002_t7_linear_calibrated_data:10f4c4d3","title":"Rosetta-Orbiter ALICE Commissioning 1 & Comet C/2002 T7 (LINEAR) Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cvp1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_commissioning_2_raw_data:ad17cfcb","title":"Rosetta-Orbiter ALICE Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-cvp2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_commissioning_2_calibrated_data:2228d7bb","title":"Rosetta-Orbiter ALICE Commissioning 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-3-cvp2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_cruise_1_raw_data:b01a1620","title":"Rosetta-Orbiter ALICE Cruise 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-2-cr1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_cruise_1_calibrated_data:8884c325","title":"Rosetta-Orbiter ALICE Cruise 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-3-cr1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_commissioning_1_raw_data:986a0576","title":"Rosetta-Orbiter/Lander CONSERT Commissioning 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_commissioning_2_raw_data:e60c7d2e","title":"Rosetta-Orbiter/Lander CONSERT Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_commissioning_1_raw_data:327303d5","title":"Rosetta-Orbiter GIADA Commissioning 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp1-commissioning1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_commissioning_2_raw_data:8420de7e","title":"Rosetta-Orbiter GIADA Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp2-commissioning2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_commissioning_calibrated_data_v3_0:bbd9234a","title":"Rosetta-Orbiter MIDAS Commissioning Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-cvp-full-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_commissioning_raw_data:a976c84c","title":"Rosetta-Orbiter MIRO Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-2-cvp-commissioning-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_commissioning_calibrated_data_v1_1:bd15edae","title":"Rosetta-Orbiter MIRO Commissioning Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-3-cvp-commissioning-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_commissioning_2_raw_data_v1_1:377ec18c","title":"Rosetta-Orbiter NAVCAM Commissioning 2 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cvp2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_cruise_1_earth_raw_data_v1_1:fb6741e3","title":"Rosetta-Orbiter NAVCAM Cruise 1 & Earth Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_x-navcam-2-cr1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_commissioning_engineering_raw_data:1e7f786e","title":"Rosetta-Orbiter ROSINA Commissioning Engineering Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rosina-2-eng-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_commissioning_raw_data_v3_0:125207c8","title":"Rosetta-Orbiter RPCICA Commissioning Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_commissioning_calibrated_data:54d6c90f","title":"Rosetta-Orbiter RPCICA Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-3-cvp-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_commissioning_resampled_corrected_data:35c6d129","title":"Rosetta-Orbiter RPCICA Commissioning Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_commissioning_resampled_corrected_in_counts_data:3f68bbd8","title":"Rosetta-Orbiter RPCICA Commissioning Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_commissioning_raw_data:4924cce1","title":"Rosetta-Orbiter RPCIES Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcies-2-cvp-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_commissioning_1_raw_data:94205065","title":"Rosetta-Orbiter RPCLAP Commissioning 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_commissioning_1_calibrated_data:77241260","title":"Rosetta-Orbiter RPCLAP Commissioning 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_commissioning_2_raw_data:207f3bbb","title":"Rosetta-Orbiter RPCLAP Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_commissioning_2_calibrated_data:061d5bf1","title":"Rosetta-Orbiter RPCLAP Commissioning 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_commissioning_raw_data_v9_0:999d60b6","title":"Rosetta-Orbiter RPCMAG Commissioning Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cvp-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_commissioning_calibrated_data_v9_0:e744e045","title":"Rosetta-Orbiter RPCMAG Commissioning Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cvp-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_commissioning_resampled_data_v9_0:2d515209","title":"Rosetta-Orbiter RPCMAG Commissioning Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cvp-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_commissioning_1_calibrated_data:fddf6319","title":"Rosetta-Orbiter RPCMIP Commissioning 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_commissioning_2_calibrated_data:59101878","title":"Rosetta-Orbiter RPCMIP Commissioning 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_commissioning_1_raw_data:615be0f5","title":"Rosetta-Orbiter SREM Commissioning 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_commissioning_1_derived_data:14a490a9","title":"Rosetta-Orbiter SREM Commissioning 1 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_commissioning_2_raw_data:3d53acbb","title":"Rosetta-Orbiter SREM Commissioning 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_commissioning_2_derived_data:069efab6","title":"Rosetta-Orbiter SREM Commissioning 2 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_1_raw_data:dd74a25e","title":"Rosetta-Orbiter SREM Cruise 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_1_derived_data:2fdc80a9","title":"Rosetta-Orbiter SREM Cruise 1 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_commissioning_raw_data:c6a41828","title":"Rosetta-Lander ROMAP-MAG Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_commissioning_raw_data:04fd9bc9","title":"Rosetta-Lander ROMAP-SPM Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_earth_swing_by_1_raw_data:a43446f9","title":"Rosetta-Orbiter ALICE Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-ear1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_earth_swing_by_1_calibrated_data:be5e3490","title":"Rosetta-Orbiter ALICE Earth Swing-by 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-ear1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_1_raw_data_v2_0:6a1872eb","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 1 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_earth_swing_by_1_raw_data:ae999bc3","title":"Rosetta-Orbiter GIADA Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear1-earthswingby1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_earth_swing_by_1_calibrated_data_v3_0:85a109e3","title":"Rosetta-Orbiter MIDAS Earth Swing-by 1 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear1-pc0-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_earth_swing_by_1_raw_data:465a1104","title":"Rosetta-Orbiter MIRO Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear1-earth1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_earth_swing_by_1_calibrated_data_v1_1:206e669e","title":"Rosetta-Orbiter MIRO Earth Swing-by 1 Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear1-earth1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_earth_swing_by_1_raw_data_v1_1:b0a18d21","title":"Rosetta-Orbiter NAVCAM Earth Swing-by 1 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-navcam-2-ear1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_1_raw_data_v3_0:3848c771","title":"Rosetta-Orbiter RPCICA Earth Swing-by 1 Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_1_calibrated_data:054edd58","title":"Rosetta-Orbiter RPCICA Earth Swing-by 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear1-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_1_resampled_corrected_data:6b528d15","title":"Rosetta-Orbiter RPCICA Earth Swing-by 1 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_1_resampled_corrected_in_counts_data:c126d350","title":"Rosetta-Orbiter RPCICA Earth Swing-by 1 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_earth_swing_by_1_raw_data:a41ecf1a","title":"Rosetta-Orbiter RPCIES Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_1_raw_data:f4a0f841","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_1_calibrated_data:903adcf8","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_1_raw_data_v9_0:8df9aa82","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 1 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_1_calibrated_data_v9_0:74cd89a7","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 1 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_1_resampled_data_v9_0:196b853c","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 1 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_earth_swing_by_1_calibrated_data:b8adc0ab","title":"Rosetta-Orbiter RPCMIP Earth Swing-by 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_1_raw_data:a81b36a8","title":"Rosetta-Orbiter SREM Earth Swing-by 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_1_derived_data:26a2f72d","title":"Rosetta-Orbiter SREM Earth Swing-by 1 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_1_raw_data:c2b97daa","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475860","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_1_calibrated_data:2eb0d924","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_1_raw_data:9aa73fe2","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_1_calibrated_data:fdaba15a","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_cruise_2_amp_9p_tempel_1_raw_data:bf81a04f","title":"Rosetta-Orbiter ALICE Cruise 2 & 9P/Tempel 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_cruise_2_amp_9p_tempel_1_calibrated_data:3da40e57","title":"Rosetta-Orbiter ALICE Cruise 2 & 9P/Tempel 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_2_raw_data_v2_0:e8408cc9","title":"Rosetta-Orbiter/Lander CONSERT Cruise 2 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_2_calibrated_data_v2_0:32dbc594","title":"Rosetta-Orbiter/Lander CONSERT Cruise 2 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_2_resampled_data:512bf745","title":"Rosetta-Orbiter/Lander CONSERT Cruise 2 Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_cruise_2_raw_data:403832a4","title":"Rosetta-Orbiter GIADA Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cr2-cruise2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_cruise_2_calibrated_data_v3_0:f16c0e11","title":"Rosetta-Orbiter MIDAS Cruise 2 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr2-pc1-2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_cruise_2_amp_9p_tempel_1_raw_data:18b3aa67","title":"Rosetta-Orbiter MIRO Cruise 2 & 9P/Tempel 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-cr2-9p-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_cruise_2_amp_9p_tempel_1_calibrated_data_v1_1:4ad76da7","title":"Rosetta-Orbiter MIRO Cruise 2 & 9P/Tempel 1 Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-cr2-9p-tempel1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.475993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_cruise_2_9p_temple_1_raw_data_v1_1:f84922ee","title":"Rosetta-Orbiter NAVCAM Cruise 2 & 9P/Temple 1 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_x-navcam-2-cr2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_cruise_2_raw_data_v3_0:06d84ff8","title":"Rosetta-Orbiter RPCICA Cruise 2 Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_cruise_2_calibrated_data:e72b6794","title":"Rosetta-Orbiter RPCICA Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_cruise_2_resampled_corrected_data:2d98543c","title":"Rosetta-Orbiter RPCICA Cruise 2 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_cruise_2_resampled_corrected_in_counts_data:977abaa1","title":"Rosetta-Orbiter RPCICA Cruise 2 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_cruise_2_raw_data:30de76bc","title":"Rosetta-Orbiter RPCIES Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_cruise_2_raw_data:7a95f824","title":"Rosetta-Orbiter RPCLAP Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_cruise_2_calibrated_data:0034bfcd","title":"Rosetta-Orbiter RPCLAP Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_2_raw_data_v9_0:48ad3659","title":"Rosetta-Orbiter RPCMAG Cruise 2 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-cr2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_2_calibrated_data_v9_0:fc5cee75","title":"Rosetta-Orbiter RPCMAG Cruise 2 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-cr2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_2_resampled_data_v9_0:e79fef61","title":"Rosetta-Orbiter RPCMAG Cruise 2 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-cr2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_cruise_2_calibrated_data:20500036","title":"Rosetta-Orbiter RPCMIP Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_2_raw_data:ca9e0b0f","title":"Rosetta-Orbiter SREM Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_2_derived_data:46e61f76","title":"Rosetta-Orbiter SREM Cruise 2 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_cruise_2_raw_data:d2076b6c","title":"Rosetta-Lander ROMAP-MAG Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_cruise_2_calibrated_data:e819df73","title":"Rosetta-Lander ROMAP-MAG Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_cruise_2_raw_data:d09d49e8","title":"Rosetta-Lander ROMAP-SPM Cruise 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_cruise_2_calibrated_data:4cdd3f26","title":"Rosetta-Lander ROMAP-SPM Cruise 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_mars_swing_by_amp_jupiter_raw_data:bd215df8","title":"Rosetta-Orbiter ALICE Mars Swing-by & Jupiter Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-2-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_mars_swing_by_amp_jupiter_calibrated_data:503c05e1","title":"Rosetta-Orbiter ALICE Mars Swing-by & Jupiter Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-3-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_mars_swing_by_raw_data_v2_0:7dd3d2b4","title":"Rosetta-Orbiter/Lander CONSERT Mars Swing-by Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-mars-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_mars_swing_by_calibrated_data_v2_0:f22c9a40","title":"Rosetta-Orbiter/Lander CONSERT Mars Swing-by Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-mars-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_mars_swing_by_resampled_data:b8ba6b30","title":"Rosetta-Orbiter/Lander CONSERT Mars Swing-by Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_mars_swing_by_raw_data:2bb57155","title":"Rosetta-Orbiter GIADA Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-mars-marsswingby-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_mars_swing_by_calibrated_data_v3_0:f5dd3d00","title":"Rosetta-Orbiter MIDAS Mars Swing-by Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-mars-pc3-5-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_mars_swing_by_raw_data_v1_1:dc3f761b","title":"Rosetta-Orbiter NAVCAM Mars Swing-by Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m_cal-navcam-2-mars-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_mars_swing_by_raw_data_v3_0:820a550a","title":"Rosetta-Orbiter RPCICA Mars Swing-by Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_mars_swing_by_calibrated_data:b90dd18f","title":"Rosetta-Orbiter RPCICA Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-3-mars-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_mars_swing_by_resampled_corrected_data:61654205","title":"Rosetta-Orbiter RPCICA Mars Swing-by Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_mars_swing_by_resampled_corrected_in_counts_data:ee73fe51","title":"Rosetta-Orbiter RPCICA Mars Swing-by Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_mars_swing_by_raw_data:a0c77a5c","title":"Rosetta-Orbiter RPCLAP Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-2-mars-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_mars_swing_by_calibrated_data:79444846","title":"Rosetta-Orbiter RPCLAP Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-3-mars-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_mars_swing_by_raw_data_v9_0:05b94825","title":"Rosetta-Orbiter RPCMAG Mars Swing-by Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-2-mars-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_mars_swing_by_calibrated_data_v9_0:91a429ef","title":"Rosetta-Orbiter RPCMAG Mars Swing-by Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-3-mars-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_mars_swing_by_resampled_data_v9_0:944f4457","title":"Rosetta-Orbiter RPCMAG Mars Swing-by Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-4-mars-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_mars_swing_by_calibrated_data:2656dcef","title":"Rosetta-Orbiter RPCMIP Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmip-3-mars-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_mars_swing_by_raw_data:999b0ee5","title":"Rosetta-Orbiter SREM Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-mars-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_mars_swing_by_derived_data:eb373a98","title":"Rosetta-Orbiter SREM Mars Swing-by Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-mars-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_mars_swing_by_raw_data:e221b707","title":"Rosetta-Lander ROMAP-MAG Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_mars_swing_by_calibrated_data:802020f4","title":"Rosetta-Lander ROMAP-MAG Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_mars_swing_by_raw_data:603a7069","title":"Rosetta-Lander ROMAP-SPM Mars Swing-by Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_mars_swing_by_calibrated_data:9a28ca0e","title":"Rosetta-Lander ROMAP-SPM Mars Swing-by Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_3_raw_data:d4b080ba","title":"Rosetta-Orbiter SREM Cruise 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr3-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_3_derived_data:8f819148","title":"Rosetta-Orbiter SREM Cruise 3 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr3-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_earth_swing_by_2_raw_data:d437cd9c","title":"Rosetta-Orbiter ALICE Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-2-ear2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_earth_swing_by_2_calibrated_data:505dc214","title":"Rosetta-Orbiter ALICE Earth Swing-by 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-3-ear2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_2_raw_data_v2_0:3cdda7a7","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 2 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_2_calibrated_data_v2_0:8cf2a1a0","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 2 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_2_resampled_data:673b592b","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 2 Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_earth_swing_by_2_raw_data:5ad3998a","title":"Rosetta-Orbiter GIADA Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear2-earthswingby2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_earth_swing_by_2_calibrated_data_v3_0:8232abf7","title":"Rosetta-Orbiter MIDAS Earth Swing-by 2 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear2-pc6-7-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_earth_swing_by_2_raw_data:05ec1e22","title":"Rosetta-Orbiter MIRO Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear2-earth2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_earth_swing_by_2_calibrated_data:6eed24b9","title":"Rosetta-Orbiter MIRO Earth Swing-by 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear2-earth2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_earth_swing_by_2_raw_data_v1_1:963dfa6b","title":"Rosetta-Orbiter NAVCAM Earth Swing-by 2 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_2_raw_data_v3_0:edcdbc9e","title":"Rosetta-Orbiter RPCICA Earth Swing-by 2 Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_2_calibrated_data:ece24040","title":"Rosetta-Orbiter RPCICA Earth Swing-by 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_2_resampled_corrected_data:afd26891","title":"Rosetta-Orbiter RPCICA Earth Swing-by 2 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_2_resampled_corrected_in_counts_data:0d0c6b12","title":"Rosetta-Orbiter RPCICA Earth Swing-by 2 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476458","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_2_raw_data:7b81d475","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_2_calibrated_data:587841aa","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_2_raw_data_v9_0:039ff297","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 2 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_2_calibrated_data_v9_0:5bb7b3b8","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 2 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_2_resampled_data_v9_0:d437a395","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 2 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_earth_swing_by_2_calibrated_data_v2_0:2b3aaa34","title":"Rosetta-Orbiter RPCMIP Earth Swing-by 2 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_2_raw_data:d64809b8","title":"Rosetta-Orbiter SREM Earth Swing-by 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_2_derived_data:dcc498bd","title":"Rosetta-Orbiter SREM Earth Swing-by 2 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_2_raw_data:8fdafe3d","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_2_calibrated_data:e84f01a6","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_2_raw_data:607c2648","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 2 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_2_calibrated_data:aaef2ee0","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 2 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_cruise_4a_raw_data:eb45fe69","title":"Rosetta-Orbiter ALICE Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_cruise_4a_calibrated_data:3cde4655","title":"Rosetta-Orbiter ALICE Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_cruise_4a_resampled_data:093d6abc","title":"Rosetta-Orbiter ALICE Cruise 4A Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-4-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_4a_raw_data_v2_0:db3f9f7d","title":"Rosetta-Orbiter/Lander CONSERT Cruise 4A Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4a-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_4a_calibrated_data_v2_0:18fbf810","title":"Rosetta-Orbiter/Lander CONSERT Cruise 4A Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr4a-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_4a_resampled_data:698e7d90","title":"Rosetta-Orbiter/Lander CONSERT Cruise 4A Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_cruise_4a_calibrated_data_v3_0:12f992cf","title":"Rosetta-Orbiter MIDAS Cruise 4A Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4a-pc8-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_cruise_4a_raw_data:294b43b2","title":"Rosetta-Orbiter RPCLAP Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4a-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_cruise_4a_calibrated_data:bec9413a","title":"Rosetta-Orbiter RPCLAP Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4a-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4a_raw_data_v9_0:6ab1a50c","title":"Rosetta-Orbiter RPCMAG Cruise 4A Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4a-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4a_calibrated_data_v9_0:36aa4227","title":"Rosetta-Orbiter RPCMAG Cruise 4A Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4a-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4a_resampled_data_v9_0:f5116022","title":"Rosetta-Orbiter RPCMAG Cruise 4A Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4a-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_cruise_4a_calibrated_data:bcccce80","title":"Rosetta-Orbiter RPCMIP Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4a-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_4a_raw_data:8fe1faf0","title":"Rosetta-Orbiter SREM Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4a-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_4a_derived_data:b6b47c4b","title":"Rosetta-Orbiter SREM Cruise 4A Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4a-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_cruise_4a_raw_data:c22fbe7a","title":"Rosetta-Lander ROMAP-MAG Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_cruise_4a_calibrated_data:1869c7ac","title":"Rosetta-Lander ROMAP-MAG Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_cruise_4a_raw_data:da714cb5","title":"Rosetta-Lander ROMAP-SPM Cruise 4A Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_cruise_4a_calibrated_data:15743f7d","title":"Rosetta-Lander ROMAP-SPM Cruise 4A Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_shape_model_of_asteroid_steins:a13cd9ae","title":"Rosetta Shape Model of Asteroid Steins","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Asteroid","Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-steins-shape-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_steins_raw_data:b8c5bfaa","title":"Rosetta-Orbiter ALICE Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_steins_calibrated_data:d18eb1d1","title":"Rosetta-Orbiter ALICE Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_steins_resampled_data:2a754d56","title":"Rosetta-Orbiter ALICE Steins Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_steins_raw_data:16239c46","title":"Rosetta-Orbiter MIRO Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast1-steins-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_steins_calibrated_data:de8a683b","title":"Rosetta-Orbiter MIRO Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast1-steins-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_steins_raw_data_v1_1:983eff7a","title":"Rosetta-Orbiter NAVCAM Steins Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-navcam-2-ast1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_steins_raw_data:2030978c","title":"Rosetta-Orbiter ROSINA Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rosina-2-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_steins_edited_raw_data:0e785f5d","title":"Rosetta-Orbiter RPCIES Steins Edited Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_steins_raw_data:7231b0b9","title":"Rosetta-Orbiter RPCLAP Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_steins_calibrated_data:a99f739d","title":"Rosetta-Orbiter RPCLAP Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_steins_raw_data_v9_0:4cd6137e","title":"Rosetta-Orbiter RPCMAG Steins Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_steins_calibrated_data_v9_0:b191722c","title":"Rosetta-Orbiter RPCMAG Steins Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_steins_resampled_data_v9_0:5f59e978","title":"Rosetta-Orbiter RPCMAG Steins Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_steins_calibrated_data_v2_0:e83bb03d","title":"Rosetta-Orbiter RPCMIP Steins Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_steins_raw_data:81a6b0d4","title":"Rosetta-Orbiter SREM Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_steins_derived_data:7bf47404","title":"Rosetta-Orbiter SREM Steins Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_steins_raw_data:5a28fbf7","title":"Rosetta-Lander ROMAP-MAG Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_steins_calibrated_data:ffad4440","title":"Rosetta-Lander ROMAP-MAG Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_steins_raw_data:2eb298a5","title":"Rosetta-Lander ROMAP-SPM Steins Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_steins_calibrated_data:ced2076c","title":"Rosetta-Lander ROMAP-SPM Steins Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Steins"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_4b_raw_data_v2_0:1a19c0cf","title":"Rosetta-Orbiter/Lander CONSERT Cruise 4B Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4b-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_cruise_4b_calibrated_data_v3_0:a97ed7fc","title":"Rosetta-Orbiter MIDAS Cruise 4B Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4b-pc9-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_cruise_4b_raw_data_v1_1:069d15ad","title":"Rosetta-Orbiter NAVCAM Cruise 4B Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cr4b-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_cruise_4_raw_data_v3_0:ea78a753","title":"Rosetta-Orbiter RPCICA Cruise 4 Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_cruise_4_calibrated_data:7a85668a","title":"Rosetta-Orbiter RPCICA Cruise 4 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr4-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_cruise_4_resampled_corrected_data:04e69159","title":"Rosetta-Orbiter RPCICA Cruise 4 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_cruise_4_resampled_corrected_in_counts_data:eb97b95f","title":"Rosetta-Orbiter RPCICA Cruise 4 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_cruise_4b_raw_data:c049e2c7","title":"Rosetta-Orbiter RPCLAP Cruise 4B Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4b-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_cruise_4b_calibrated_data:b407460f","title":"Rosetta-Orbiter RPCLAP Cruise 4B Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4b-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4b_raw_data_v9_0:72d04a9e","title":"Rosetta-Orbiter RPCMAG Cruise 4B Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4b-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4b_calibrated_data_v9_0:0b37b9ce","title":"Rosetta-Orbiter RPCMAG Cruise 4B Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4b-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_4b_resampled_data_v9_0:e89dd8c9","title":"Rosetta-Orbiter RPCMAG Cruise 4B Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4b-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_cruise_4b_calibrated_data:ccd6b262","title":"Rosetta-Orbiter RPCMIP Cruise 4B Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4b-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_4b_raw_data:825fa807","title":"Rosetta-Orbiter SREM Cruise 4B Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4b-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_4b_derived_data:ad825e70","title":"Rosetta-Orbiter SREM Cruise 4B Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4b-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_cruise_4b_raw_data:c802ceb8","title":"Rosetta-Lander ROMAP-MAG Cruise 4B Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.476998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_cruise_4b_calibrated_data:e063c89a","title":"Rosetta-Lander ROMAP-MAG Cruise 4B Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_cruise_4b_raw_data:436c41d8","title":"Rosetta-Lander ROMAP-SPM Cruise 4B Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_cruise_4b_calibrated_data:b2b4a36f","title":"Rosetta-Lander ROMAP-SPM Cruise 4B Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_3_raw_data_v2_0:55206b88","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 3 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_3_calibrated_data_v2_0:8c7bf696","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 3 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_earth_swing_by_3_resampled_data:a72b3b4d","title":"Rosetta-Orbiter/Lander CONSERT Earth Swing-by 3 Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_earth_swing_by_3_calibrated_data_v3_0:070e364b","title":"Rosetta-Orbiter MIDAS Earth Swing-by 3 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear3-pc10-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_earth_swing_by_3_raw_data_v1_1:b9e0a0d9","title":"Rosetta-Orbiter NAVCAM Earth Swing-by 3 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear3-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_3_raw_data_v2_0:eb6c56a1","title":"Rosetta-Orbiter RPCICA Earth Swing-by 3 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear3-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_3_calibrated_data:a2e3a6b0","title":"Rosetta-Orbiter RPCICA Earth Swing-by 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear3-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_3_resampled_corrected_data:12b2f1a2","title":"Rosetta-Orbiter RPCICA Earth Swing-by 3 Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_earth_swing_by_3_resampled_corrected_in_counts_data:d2fe8018","title":"Rosetta-Orbiter RPCICA Earth Swing-by 3 Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_earth_swing_by_3_raw_data:37dabceb","title":"Rosetta-Orbiter RPCIES Earth Swing-by 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_3_raw_data:3c00352c","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear3-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_earth_swing_by_3_calibrated_data:2940f3e8","title":"Rosetta-Orbiter RPCLAP Earth Swing-by 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear3-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_3_raw_data_v9_0:c7b3db01","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 3 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear3-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_3_calibrated_data_v9_0:63ebac09","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 3 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear3-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_earth_swing_by_3_resampled_data_v9_0:4cd1c8e8","title":"Rosetta-Orbiter RPCMAG Earth Swing-by 3 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear3-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_earth_swing_by_3_calibrated_data:ac98ce90","title":"Rosetta-Orbiter RPCMIP Earth Swing-by 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_3_raw_data:47895f22","title":"Rosetta-Orbiter SREM Earth Swing-by 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear3-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_earth_swing_by_3_derived_data:41838569","title":"Rosetta-Orbiter SREM Earth Swing-by 3 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear3-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_3_raw_data:4030a5a3","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_earth_flyby_3_calibrated_data:be663dda","title":"Rosetta-Lander ROMAP-MAG Earth Flyby 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_3_raw_data:4b379564","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 3 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_earth_flyby_3_calibrated_data:b48288c1","title":"Rosetta-Lander ROMAP-SPM Earth Flyby 3 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_5_raw_data_v2_0:17b911f5","title":"Rosetta-Orbiter/Lander CONSERT Cruise 5 Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr5-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_5_calibrated_data_v2_0:4d06a961","title":"Rosetta-Orbiter/Lander CONSERT Cruise 5 Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr5-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_cruise_5_resampled_data:efec18c5","title":"Rosetta-Orbiter/Lander CONSERT Cruise 5 Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr5-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_cruise_5_calibrated_data_v3_0:35e9a2e5","title":"Rosetta-Orbiter MIDAS Cruise 5 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr5-pc12-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_cruise_5_solar_wind_raw_data:4eb26151","title":"Rosetta-Orbiter RPCIES Cruise 5 Solar Wind Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr5-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_cruise_5_raw_data:61f3ba07","title":"Rosetta-Orbiter RPCLAP Cruise 5 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr5-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_cruise_5_calibrated_data:3cda817f","title":"Rosetta-Orbiter RPCLAP Cruise 5 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr5-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_5_raw_data_v9_0:b37147c7","title":"Rosetta-Orbiter RPCMAG Cruise 5 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr5-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_5_calibrated_data_v9_0:22ee46b8","title":"Rosetta-Orbiter RPCMAG Cruise 5 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr5-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_cruise_5_resampled_data_v9_0:54ac105a","title":"Rosetta-Orbiter RPCMAG Cruise 5 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr5-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_cruise_5_calibrated_data:673b8ad2","title":"Rosetta-Orbiter RPCMIP Cruise 5 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr5-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_5_raw_data:b5d3dd3a","title":"Rosetta-Orbiter SREM Cruise 5 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr5-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_cruise_5_derived_data:0e8c091f","title":"Rosetta-Orbiter SREM Cruise 5 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr5-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_cruise_5_raw_data:1f413b32","title":"Rosetta-Lander ROMAP-MAG Cruise 5 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_cruise_5_calibrated_data:55287b41","title":"Rosetta-Lander ROMAP-MAG Cruise 5 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_cruise_5_raw_data:7d49ab92","title":"Rosetta-Lander ROMAP-SPM Cruise 5 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_cruise_5_calibrated_data:7ba70eb2","title":"Rosetta-Lander ROMAP-SPM Cruise 5 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_shape_model_of_asteroid_lutetia:141195b7","title":"Rosetta Shape Model of Asteroid Lutetia","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Asteroid","Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-lutetia-shape-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_lutetia_raw_data:8ae88478","title":"Rosetta-Orbiter ALICE Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_lutetia_calibrated_data:9625c150","title":"Rosetta-Orbiter ALICE Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_lutetia_resampled_data:53dd085a","title":"Rosetta-Orbiter ALICE Lutetia Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_lutetia_raw_data:24745d7a","title":"Rosetta-Orbiter/Lander CONSERT Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-a-consert-2-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_lutetia_calibrated_data_v3_0:58525be1","title":"Rosetta-Orbiter MIDAS Lutetia Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-midas-3-ast2-lute-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_lutetia_raw_data:0f6f3a2c","title":"Rosetta-Orbiter MIRO Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast2-lutetia-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_lutetia_calibrated_data:4eb2f4b9","title":"Rosetta-Orbiter MIRO Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast2-lutetia-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_lutetia_raw_data_v1_1:c4ee5484","title":"Rosetta-Orbiter NAVCAM Lutetia Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-navcam-2-ast2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_lutetia_raw_data_v2_0:6fb6cc4e","title":"Rosetta-Orbiter RPCICA Lutetia Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-2-ast2-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_lutetia_calibrated_data:34ca3beb","title":"Rosetta-Orbiter RPCICA Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-3-ast2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_lutetia_resampled_corrected_data:c7b7fbd4","title":"Rosetta-Orbiter RPCICA Lutetia Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_lutetia_resampled_corrected_in_counts_data:3b7f4804","title":"Rosetta-Orbiter RPCICA Lutetia Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_lutetia_edited_raw_data:7c9ac1fd","title":"Rosetta-Orbiter RPCIES Lutetia Edited Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_lutetia_raw_data_v2_0:cdd3e216","title":"Rosetta-Orbiter RPCLAP Lutetia Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_lutetia_calibrated_data_v2_0:8f071eb5","title":"Rosetta-Orbiter RPCLAP Lutetia Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_lutetia_raw_data_v9_0:c893dac6","title":"Rosetta-Orbiter RPCMAG Lutetia Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_lutetia_calibrated_data_v9_0:5c9cd6ac","title":"Rosetta-Orbiter RPCMAG Lutetia Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_lutetia_resampled_data_v9_0:1220dd0c","title":"Rosetta-Orbiter RPCMAG Lutetia Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_lutetia_calibrated_data:c1111cff","title":"Rosetta-Orbiter RPCMIP Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_lutetia_raw_data:2cbda846","title":"Rosetta-Orbiter SREM Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_lutetia_derived_data:3b97222f","title":"Rosetta-Orbiter SREM Lutetia Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast2-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_lutetia_raw_data:4f56e56f","title":"Rosetta-Lander ROMAP-MAG Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_lutetia_calibrated_data:a04342b6","title":"Rosetta-Lander ROMAP-MAG Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_lutetia_raw_data:7942ef8f","title":"Rosetta-Lander ROMAP-SPM Lutetia Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_lutetia_calibrated_data:22bcb229","title":"Rosetta-Lander ROMAP-SPM Lutetia Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Lutetia"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_rendezvous_manoeuvre_1_raw_data:cc0c37f4","title":"Rosetta-Orbiter ALICE Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-rvm1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_rendezvous_manoeuvre_1_raw_data:df72db57","title":"Rosetta-Orbiter/Lander CONSERT Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-rvm1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_rendezvous_manoeuvre_1_raw_data:1c49056c","title":"Rosetta-Orbiter GIADA Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-rvm1-rendezmanoeuvre1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_rendezvous_manoeuvre_1_calibrated_data_v3_0:b50ac2a1","title":"Rosetta-Orbiter MIDAS Rendezvous Manoeuvre 1 Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-rvm1-pc13-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_rendezvous_manoeuvre_1_raw_data_v1_1:ef58a4ea","title":"Rosetta-Orbiter NAVCAM Rendezvous Manoeuvre 1 Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-rvm1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_rendezvous_manoeuvre_1_solar_wind_raw_data:c76be62c","title":"Rosetta-Orbiter RPCIES Rendezvous Manoeuvre 1 Solar Wind Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-rvm1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_rendezvous_manoeuvre_1_raw_data:f0e96fcf","title":"Rosetta-Orbiter RPCLAP Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-rvm1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_rendezvous_manoeuvre_1_calibrated_data:d21f3900","title":"Rosetta-Orbiter RPCLAP Rendezvous Manoeuvre 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-rvm1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_rendezvous_manoeuvre_1_raw_data_v9_0:a3f34aa5","title":"Rosetta-Orbiter RPCMAG Rendezvous Manoeuvre 1 Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-rvm1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_rendezvous_manoeuvre_1_calibrated_data_v9_0:64b4888a","title":"Rosetta-Orbiter RPCMAG Rendezvous Manoeuvre 1 Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-rvm1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_rendezvous_manoeuvre_1_resampled_data_v9_0:12c745a8","title":"Rosetta-Orbiter RPCMAG Rendezvous Manoeuvre 1 Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-rvm1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rendezvous_manoeuvre_1_calibrated_data:96a82402","title":"Rosetta-Orbiter RPCMIP Rendezvous Manoeuvre 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-rvm1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_rendezvous_manoeuvre_1_raw_data:efea3f59","title":"Rosetta-Orbiter SREM Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-rvm1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_rendezvous_manoeuvre_1_derived_data:ffcfac50","title":"Rosetta-Orbiter SREM Rendezvous Manoeuvre 1 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-rvm1-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_rendezvous_manoeuvre_1_raw_data:96de63c0","title":"Rosetta-Lander ROMAP-MAG Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_rendezvous_manoeuvre_1_calibrated_data:a322d04e","title":"Rosetta-Lander ROMAP-MAG Rendezvous Manoeuvre 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_rendezvous_manoeuvre_1_raw_data:e8d02841","title":"Rosetta-Lander ROMAP-SPM Rendezvous Manoeuvre 1 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_rendezvous_manoeuvre_1_calibrated_data:93a045c6","title":"Rosetta-Lander ROMAP-SPM Rendezvous Manoeuvre 1 Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_prelanding_67p_raw_data_v3_0:256a354c","title":"Rosetta-Orbiter ALICE Prelanding 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_prelanding_67p_calibrated_data_v3_0:d8e89e00","title":"Rosetta-Orbiter ALICE Prelanding 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_prelanding_67p_resampled_data_v3_0:18ef31e3","title":"Rosetta-Orbiter ALICE Prelanding 67P Resampled Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_prelanding_67p_raw_calibrated_data_v1_1:11fcf15b","title":"Rosetta-Orbiter GIADA Prelanding 67P Raw/Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-prl-prelanding-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_67p_prelanding_samples_calibrated_data_v3_0:76867055","title":"Rosetta-Orbiter MIDAS 67P Prelanding Samples Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_prelanding_67p_raw_data:e36520b1","title":"Rosetta-Orbiter MIRO Prelanding 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-prl-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_prelanding_67p_calibrated_data_v3_0:4f3555a8","title":"Rosetta-Orbiter MIRO Prelanding 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_prelanding_67p_resampled_data_v2_0:c2410aba","title":"Rosetta-Orbiter MIRO Prelanding 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-prl-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_commissioning_checkout_raw_data_v1_1:f6531d1a","title":"Rosetta-Orbiter NAVCAM Prelanding Commissioning Checkout Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-2-prl-com-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_commissioning_calibrated_data:224fe7bf","title":"Rosetta-Orbiter NAVCAM Prelanding Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-3-prl-com-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp003_67p_raw_data_v1_1:7ae1d58b","title":"Rosetta-Orbiter NAVCAM Prelanding MTP003 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp003-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp003_67p_calibrated_data:0d7c6b3f","title":"Rosetta-Orbiter NAVCAM Prelanding MTP003 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp003-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp004_67p_raw_data_v1_1:b8646a84","title":"Rosetta-Orbiter NAVCAM Prelanding MTP004 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp004-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp004_67p_calibrated_data:8a90e4c0","title":"Rosetta-Orbiter NAVCAM Prelanding MTP004 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp004-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp005_67p_raw_data_v1_1:8dd23013","title":"Rosetta-Orbiter NAVCAM Prelanding MTP005 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp005-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp005_67p_calibrated_data:f1ccf851","title":"Rosetta-Orbiter NAVCAM Prelanding MTP005 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp005-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp006_67p_raw_data_v1_1:09f9d0e0","title":"Rosetta-Orbiter NAVCAM Prelanding MTP006 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp006-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp006_67p_calibrated_data:7e79d82b","title":"Rosetta-Orbiter NAVCAM Prelanding MTP006 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp006-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp007_67p_raw_data_v1_1:e1111dec","title":"Rosetta-Orbiter NAVCAM Prelanding MTP007 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp007-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp007_67p_calibrated_data:2d723a9a","title":"Rosetta-Orbiter NAVCAM Prelanding MTP007 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp007-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp008_67p_raw_data_v1_1:f8a0d883","title":"Rosetta-Orbiter NAVCAM Prelanding MTP008 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp008-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.477942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp008_67p_calibrated_data:c3e93ef4","title":"Rosetta-Orbiter NAVCAM Prelanding MTP008 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp008-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp009_67p_raw_data_v1_1:c48ef8b1","title":"Rosetta-Orbiter NAVCAM Prelanding MTP009 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp009-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_prelanding_mtp009_67p_calibrated_data:6f9a4774","title":"Rosetta-Orbiter NAVCAM Prelanding MTP009 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp009-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_prelanding_67p_raw_data_v2_0:0899f003","title":"Rosetta-Orbiter ROSINA Prelanding 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_prelanding_67p_calibrated_data_v2_0:5a25120f","title":"Rosetta-Orbiter ROSINA Prelanding 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_prelanding_67p_resampled_data_v2_0:e35030b5","title":"Rosetta-Orbiter ROSINA Prelanding 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_prelanding_67p_derived_data_v2_0:1b3765ea","title":"Rosetta-Orbiter ROSINA Prelanding 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_prelanding_67p_derived_data:13770811","title":"Rosetta-Orbiter RPCIES Prelanding 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-prl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_raw_data_v3_0:d2ac9db9","title":"Rosetta-Orbiter RPCICA Prelanding 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_calibrated_data:296bc4fa","title":"Rosetta-Orbiter RPCICA Prelanding 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-prl-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_resampled_corrected_data:0de6fe06","title":"Rosetta-Orbiter RPCICA Prelanding 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_resampled_corrected_in_counts_data:e2970c34","title":"Rosetta-Orbiter RPCICA Prelanding 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_resampled_physical_mass_data:78218b73","title":"Rosetta-Orbiter RPCICA Prelanding 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_prelanding_67p_derived_moment_data:53f946c0","title":"Rosetta-Orbiter RPCICA Prelanding 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-prl-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_prelanding_67p_raw_data_v2_0:504c7b33","title":"Rosetta-Orbiter RPCIES Prelanding 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_prelanding_67p_calibrated_data_v2_0:db4ced96","title":"Rosetta-Orbiter RPCIES Prelanding 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-prl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_prelanding_67p_raw_data_v3_0:66d5de16","title":"Rosetta-Orbiter RPCLAP Prelanding 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_prelanding_67p_calibrated_data_v2_0:ef8c7a19","title":"Rosetta-Orbiter RPCLAP Prelanding 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-prl-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_prelanding_67p_derived_physical_units_data:a5d6f0b8","title":"Rosetta-Orbiter RPCLAP Prelanding 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_prelanding_67p_derived_plasma_density_at_higher_time_resolution_data:b7fa88d3","title":"Rosetta-Orbiter RPCLAP Prelanding 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_prelanding_67p_raw_data_v9_0:90296d6e","title":"Rosetta-Orbiter RPCMAG Prelanding 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_prelanding_67p_calibrated_data_v9_0:0d58dc9a","title":"Rosetta-Orbiter RPCMAG Prelanding 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-prl-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_prelanding_67p_resampled_data_v9_0:4559adab","title":"Rosetta-Orbiter RPCMAG Prelanding 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_prelanding_1_67p_calibrated_data_v3_0:fb84b7b3","title":"Rosetta-Orbiter RPCMIP Prelanding 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_prelanding_2_67p_calibrated_data_v3_0:6f5576a4","title":"Rosetta-Orbiter RPCMIP Prelanding 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_prelanding_3_67p_calibrated_data_v3_0:af430115","title":"Rosetta-Orbiter RPCMIP Prelanding 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_prelanding_67p_derived_data:26a60890","title":"Rosetta-Orbiter RPCMIP Prelanding 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-prl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_prelanding_67p_cross_calibrated_derived_data:7f820df0","title":"Rosetta-Orbiter RPCMIP/RPCLAP Prelanding 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-prl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_commissioning_raw_data:08a94d84","title":"Rosetta-Orbiter SREM Prelanding Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-com-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_commissioning_derived_data:d8dedfe0","title":"Rosetta-Orbiter SREM Prelanding Commissioning Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-com-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp003_raw_data:3812ed26","title":"Rosetta-Orbiter SREM Prelanding MTP003 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp003-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp003_derived_data:8295e538","title":"Rosetta-Orbiter SREM Prelanding MTP003 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp003-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp004_raw_data:f74fd40a","title":"Rosetta-Orbiter SREM Prelanding MTP004 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp004-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp004_derived_data:73c53efa","title":"Rosetta-Orbiter SREM Prelanding MTP004 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp004-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp005_raw_data:53480e91","title":"Rosetta-Orbiter SREM Prelanding MTP005 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp005-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp005_derived_data:71f19c28","title":"Rosetta-Orbiter SREM Prelanding MTP005 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp005-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp006_raw_data:b041abe8","title":"Rosetta-Orbiter SREM Prelanding MTP006 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp006-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp006_derived_data:ff8e2ac0","title":"Rosetta-Orbiter SREM Prelanding MTP006 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp006-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp007_raw_data:28410648","title":"Rosetta-Orbiter SREM Prelanding MTP007 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp007-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp007_derived_data:cdca529a","title":"Rosetta-Orbiter SREM Prelanding MTP007 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp007-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp008_raw_data:5d600be2","title":"Rosetta-Orbiter SREM Prelanding MTP008 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp008-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp008_derived_data:0e3e0356","title":"Rosetta-Orbiter SREM Prelanding MTP008 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp008-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp009_raw_data:e86ebc4e","title":"Rosetta-Orbiter SREM Prelanding MTP009 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp009-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_prelanding_mtp009_derived_data:75213680","title":"Rosetta-Orbiter SREM Prelanding MTP009 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp009-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_commissioning_67p_raw_data:2f4bb4fe","title":"Rosetta-Orbiter VIRTIS Prelanding Commissioning 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-com-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp004_67p_raw_data_v2_0:e71e5e57","title":"Rosetta-Orbiter VIRTIS Prelanding MTP004 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp004-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp005_67p_raw_data_v2_0:54ecd09c","title":"Rosetta-Orbiter VIRTIS Prelanding MTP005 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp005-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp006_67p_raw_data_v2_0:02848113","title":"Rosetta-Orbiter VIRTIS Prelanding MTP006 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp006-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp007_67p_raw_data_v2_0:6c86466d","title":"Rosetta-Orbiter VIRTIS Prelanding MTP007 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp007-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp008_67p_raw_data_v2_0:24709bf7","title":"Rosetta-Orbiter VIRTIS Prelanding MTP008 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp008-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp009_67p_raw_data_v2_0:685933bd","title":"Rosetta-Orbiter VIRTIS Prelanding MTP009 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp009-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp004_67p_calibrated_data_v2_0:e75dc882","title":"Rosetta-Orbiter VIRTIS Prelanding MTP004 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp004-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp005_67p_calibrated_data_v2_0:4e642ca9","title":"Rosetta-Orbiter VIRTIS Prelanding MTP005 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp005-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp006_67p_calibrated_data_v2_0:ab1845cb","title":"Rosetta-Orbiter VIRTIS Prelanding MTP006 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp006-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp007_67p_calibrated_data_v2_0:b84c3df1","title":"Rosetta-Orbiter VIRTIS Prelanding MTP007 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp007-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp008_67p_calibrated_data_v2_0:7ad6b487","title":"Rosetta-Orbiter VIRTIS Prelanding MTP008 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp008-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_prelanding_mtp009_67p_calibrated_data_v2_0:67b56c69","title":"Rosetta-Orbiter VIRTIS Prelanding MTP009 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp009-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_apxs_post_hibernation_commissioning_raw_data:58cb4b86","title":"Rosetta-Lander APXS Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-apxs-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_post_hibernation_commissioning_raw_data_v2_0:7fba112d","title":"Rosetta-Orbiter/Lander CONSERT Post Hibernation Commissioning Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-phc-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_post_hibernation_commissioning_calibrated_data_v2_0:fee21101","title":"Rosetta-Orbiter/Lander CONSERT Post Hibernation Commissioning Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-phc-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_post_hibernation_commissioning_resampled_data:bedf088c","title":"Rosetta-Orbiter/Lander CONSERT Post Hibernation Commissioning Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_cosac_post_hibernation_commissioning_raw_data:32090d89","title":"Rosetta-Lander COSAC Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_cosac_post_hibernation_commissioning_calibrated_data:e00f1e48","title":"Rosetta-Lander COSAC Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_post_hibernation_commissioning_raw_data:29ab2387","title":"Rosetta-Lander PTOLEMY Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_post_hibernation_commissioning_calibrated_data:5b4d35cb","title":"Rosetta-Lander PTOLEMY Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_mupus_post_hibernation_commissioning_raw_data:7860e7e7","title":"Rosetta-Lander MUPUS Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_mupus_post_hibernation_commissioning_calibrated_data:7e8614a0","title":"Rosetta-Lander MUPUS Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_rolis_post_hibernation_commissioning_raw_data:776e8ab4","title":"Rosetta-Lander ROLIS Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-rolis-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_post_hibernation_commissioning_edited_data:e53e977c","title":"Rosetta-Lander ROMAP-MAG Post Hibernation Commissioning Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_post_hibernation_commissioning_calibrated_data:ee0b138b","title":"Rosetta-Lander ROMAP-MAG Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_post_hibernation_commissioning_derived_data:7ec75102","title":"Rosetta-Lander ROMAP-MAG Post Hibernation Commissioning Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-phc-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_post_hibernation_commissioning_edited_data:2cb2d4ec","title":"Rosetta-Lander ROMAP-SPM Post Hibernation Commissioning Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_post_hibernation_commissioning_calibrated_data:cc5e4daa","title":"Rosetta-Lander ROMAP-SPM Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sd2_post_hibernation_commissioning_data:d08dd737","title":"Rosetta-Lander SD2 Post Hibernation Commissioning Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sesame_post_hibernation_commissioning_raw_data:4a2aff9a","title":"Rosetta-Lander SESAME Post Hibernation Commissioning Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sesame_post_hibernation_commissioning_calibrated_data:fdfba19d","title":"Rosetta-Lander SESAME Post Hibernation Commissioning Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-phc-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_pre_delivery_calib_science_raw_data_v2_0:daeae0f2","title":"Rosetta-Orbiter/Lander CONSERT Pre Delivery Calib Science Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-pdcs-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_pre_delivery_calib_science_calibrated_data_v1_1:9cc45e31","title":"Rosetta-Orbiter/Lander CONSERT Pre Delivery Calib Science Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-pdcs-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_pre_delivery_calib_science_resampled_data:c7a10763","title":"Rosetta-Orbiter/Lander CONSERT Pre Delivery Calib Science Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_cosac_pre_delivery_calib_science_raw_data:e3a3499a","title":"Rosetta-Lander COSAC Pre Delivery Calib Science Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_cosac_pre_delivery_calib_science_calibrated_data:7420b18a","title":"Rosetta-Lander COSAC Pre Delivery Calib Science Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_pre_delivery_calib_science_raw_data:030f0b35","title":"Rosetta-Lander PTOLEMY Pre Delivery Calib Science Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_pre_delivery_calib_science_calibrated_data:93d1b72f","title":"Rosetta-Lander PTOLEMY Pre Delivery Calib Science Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_pre_delivery_calib_science_edited_data:aa21d7be","title":"Rosetta-Lander ROMAP-MAG Pre Delivery Calib Science Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-pdcs-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_pre_delivery_calib_science_calibrated_data:d5377159","title":"Rosetta-Lander ROMAP-MAG Pre Delivery Calib Science Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-pdcs-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.478994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_pre_delivery_calib_science_derived_data:32ae9166","title":"Rosetta-Lander ROMAP-MAG Pre Delivery Calib Science Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-pdcs-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sd2_pre_delivery_calib_science_data:d39e2373","title":"Rosetta-Lander SD2 Pre Delivery Calib Science Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sesame_pre_delivery_calib_science_raw_data:62481b47","title":"Rosetta-Lander SESAME Pre Delivery Calib Science Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sesame_pre_delivery_calib_science_calibrated_data:97f2230d","title":"Rosetta-Lander SESAME Pre Delivery Calib Science Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-pdcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_separation_descent_landing_67p_raw_data_v2_0:8292bac3","title":"Rosetta-Orbiter/Lander CONSERT Separation Descent Landing 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-sdl-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_separation_descent_landing_67p_calibrated_data_v1_1:716cfde6","title":"Rosetta-Orbiter/Lander CONSERT Separation Descent Landing 67P Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-sdl-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_separation_descent_landing_67p_resampled_data:cb2538b5","title":"Rosetta-Orbiter/Lander CONSERT Separation Descent Landing 67P Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_mupus_separation_descent_landing_67p_raw_data:4843c069","title":"Rosetta-Lander MUPUS Separation Descent Landing 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_mupus_separation_descent_landing_67p_calibrated_data:9a0107de","title":"Rosetta-Lander MUPUS Separation Descent Landing 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_rolis_separation_descent_landing_67p_raw_data:b18114a8","title":"Rosetta-Lander ROLIS Separation Descent Landing 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_rolis_separation_descent_landing_67p_calibrated_data:881266fd","title":"Rosetta-Lander ROLIS Separation Descent Landing 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-3-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_separation_descent_landing_67p_edited_data:6b713ad6","title":"Rosetta-Lander ROMAP-MAG Separation Descent Landing 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-sdl-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_separation_descent_landing_67p_calibrated_data:25022739","title":"Rosetta-Lander ROMAP-MAG Separation Descent Landing 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-sdl-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_separation_descent_landing_67p_derived_data:75bd6901","title":"Rosetta-Lander ROMAP-MAG Separation Descent Landing 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-sdl-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sesame_separation_descent_landing_67p_raw_data:c54dd99c","title":"Rosetta-Lander SESAME Separation Descent Landing 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sesame_separation_descent_landing_67p_calibrated_data:476244c8","title":"Rosetta-Lander SESAME Separation Descent Landing 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-sdl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_cosac_rebounds_67p_raw_data:1a6b14dd","title":"Rosetta-Lander COSAC Rebounds 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_cosac_rebounds_67p_calibrated_data:e597d8f3","title":"Rosetta-Lander COSAC Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_rebounds_67p_raw_data:90625ff2","title":"Rosetta-Lander PTOLEMY Rebounds 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_rebounds_67p_calibrated_data:a18de6b2","title":"Rosetta-Lander PTOLEMY Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_mupus_rebounds_67p_raw_data:d9bc030e","title":"Rosetta-Lander MUPUS Rebounds 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_mupus_rebounds_67p_calibrated_data:c6772ae3","title":"Rosetta-Lander MUPUS Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-rbd-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_rebounds_67p_edited_data:534e1771","title":"Rosetta-Lander ROMAP-MAG Rebounds 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_rebounds_67p_calibrated_data:45a650b4","title":"Rosetta-Lander ROMAP-MAG Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_rebounds_67p_derived_data:4e749500","title":"Rosetta-Lander ROMAP-MAG Rebounds 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-rbd-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_rebounds_67p_edited_data:f9b32952","title":"Rosetta-Lander ROMAP-SPM Rebounds 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_rebounds_67p_calibrated_data:01f23fb8","title":"Rosetta-Lander ROMAP-SPM Rebounds 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_first_science_sequence_67p_raw_data_v2_0:ff80b78c","title":"Rosetta-Orbiter/Lander CONSERT First Science Sequence 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-fss-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_first_science_sequence_67p_calibrated_data_v1_1:1d895160","title":"Rosetta-Orbiter/Lander CONSERT First Science Sequence 67P Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-fss-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_first_science_sequence_67p_resampled_data:8886cd76","title":"Rosetta-Orbiter/Lander CONSERT First Science Sequence 67P Resampled Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_cosac_first_science_sequence_67p_raw_data:2efea832","title":"Rosetta-Lander COSAC First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_cosac_first_science_sequence_67p_calibrated_data:5b0afbe3","title":"Rosetta-Lander COSAC First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_first_science_sequence_67p_raw_data:b4702338","title":"Rosetta-Lander PTOLEMY First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_first_science_sequence_67p_calibrated_data:edcc9248","title":"Rosetta-Lander PTOLEMY First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ptolemy_first_science_sequence_67p_derived_data:9415e994","title":"Rosetta-Lander PTOLEMY First Science Sequence 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-5-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_mupus_first_science_sequence_67p_raw_data:4e7c7f65","title":"Rosetta-Lander MUPUS First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_mupus_first_science_sequence_67p_calibrated_data:6aed1006","title":"Rosetta-Lander MUPUS First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_rolis_first_science_sequence_67p_raw_data:ea0d1df0","title":"Rosetta-Lander ROLIS First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_first_science_sequence_67p_edited_data:720ff7ed","title":"Rosetta-Lander ROMAP-MAG First Science Sequence 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_first_science_sequence_67p_calibrated_data:59e5408b","title":"Rosetta-Lander ROMAP-MAG First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_mag_first_science_sequence_67p_derived_data:27cf2907","title":"Rosetta-Lander ROMAP-MAG First Science Sequence 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-fss-mag-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_first_science_sequence_67p_edited_data:04907c62","title":"Rosetta-Lander ROMAP-SPM First Science Sequence 67P Edited Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_romap_spm_first_science_sequence_67p_calibrated_data:4519c8df","title":"Rosetta-Lander ROMAP-SPM First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-spm-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479383","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sd2_first_science_sequence_67p_data:968827cf","title":"Rosetta-Lander SD2 First Science Sequence 67P Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sd2-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sesame_first_science_sequence_67p_raw_data:37a873ee","title":"Rosetta-Lander SESAME First Science Sequence 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_sesame_first_science_sequence_67p_calibrated_data:acdda203","title":"Rosetta-Lander SESAME First Science Sequence 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-fss-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_lander_consert_long_term_science_67p_raw_data:f2cca639","title":"Rosetta-Orbiter/Lander CONSERT Long Term Science 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-lts-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_1_67p_raw_data_v3_0:4cf67a14","title":"Rosetta-Orbiter ALICE Escort 1 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_1_67p_calibrated_data_v3_0:8099eb95","title":"Rosetta-Orbiter ALICE Escort 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_1_67p_resampled_data_v3_0:2aeb46bd","title":"Rosetta-Orbiter ALICE Escort 1 67P Resampled Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_escort_1_67p_raw_calibrated_data_v1_1:684c7f7d","title":"Rosetta-Orbiter GIADA Escort 1 67P Raw/Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc1-comet-escort-1-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_escort_1_67p_calibrated_data_v3_0:ce0a8284","title":"Rosetta-Orbiter MIDAS Escort 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_1_67p_raw_data:9b7ea130","title":"Rosetta-Orbiter MIRO Escort 1 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc1-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_1_67p_calibrated_data_v3_0:2ef14d44","title":"Rosetta-Orbiter MIRO Escort 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_1_67p_resampled_data_v2_0:3e445c98","title":"Rosetta-Orbiter MIRO Escort 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc1-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp010_67p_raw_data_v1_1:bad75a2d","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP010 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp010-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp010_67p_calibrated_data:ec250c28","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP010 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp010-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp011_67p_raw_data_v1_1:cf5c9b73","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP011 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp011-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp011_67p_calibrated_data:2b31dcbf","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP011 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp011-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp012_67p_raw_data_v1_1:77b73868","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP012 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp012-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp012_67p_calibrated_data:c1643383","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP012 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp012-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp013_67p_raw_data_v1_1:da0b42d6","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP013 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp013-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_1_mtp013_67p_calibrated_data:f5d589b0","title":"Rosetta-Orbiter NAVCAM Escort 1 MTP013 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp013-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_1_67p_raw_data_v2_0:fde5323a","title":"Rosetta-Orbiter ROSINA Escort 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_1_67p_calibrated_data_v2_0:d9b1838e","title":"Rosetta-Orbiter ROSINA Escort 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_1_67p_resampled_data_v2_0:a5bba21a","title":"Rosetta-Orbiter ROSINA Escort 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_1_67p_derived_data_v2_0:854e1f98","title":"Rosetta-Orbiter ROSINA Escort 1 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_raw_data_v3_0:76fc1936","title":"Rosetta-Orbiter RPCICA Escort 1 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_calibrated_data:e9fc4d05","title":"Rosetta-Orbiter RPCICA Escort 1 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc1-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_resampled_corrected_data:017fd222","title":"Rosetta-Orbiter RPCICA Escort 1 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_resampled_corrected_in_counts_data:d7a5e89d","title":"Rosetta-Orbiter RPCICA Escort 1 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_resampled_physical_mass_data:6285a7c0","title":"Rosetta-Orbiter RPCICA Escort 1 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_1_67p_derived_moment_data:f3f6edec","title":"Rosetta-Orbiter RPCICA Escort 1 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc1-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_1_67p_raw_data_v2_0:72db1075","title":"Rosetta-Orbiter RPCIES Escort 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_1_67p_calibrated_data_v2_0:72263c23","title":"Rosetta-Orbiter RPCIES Escort 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_1_67p_derived_data:de8e2c08","title":"Rosetta-Orbiter RPCIES Escort 1 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_1_67p_raw_data_v3_0:0d274b3e","title":"Rosetta-Orbiter RPCLAP Escort 1 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_1_67p_calibrated_data_v2_0:43f297b2","title":"Rosetta-Orbiter RPCLAP Escort 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_1_67p_derived_physical_units_data:e8d8253d","title":"Rosetta-Orbiter RPCLAP Escort 1 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_1_67p_derived_plasma_density_at_higher_time_resolution_data:46e0b8aa","title":"Rosetta-Orbiter RPCLAP Escort 1 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_1_67p_raw_data_v9_0:e8720729","title":"Rosetta-Orbiter RPCMAG Escort 1 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_1_67p_calibrated_data_v9_0:8f54c3f0","title":"Rosetta-Orbiter RPCMAG Escort 1 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_1_67p_resampled_data_v9_0:e3dec7e5","title":"Rosetta-Orbiter RPCMAG Escort 1 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_escort_1_67p_calibrated_data_v3_0:8fd3b623","title":"Rosetta-Orbiter RPCMIP Escort 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_escort_1_67p_derived_data:c9bb9523","title":"Rosetta-Orbiter RPCMIP Escort 1 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_escort_1_67p_cross_calibrated_derived_data:e9661f0d","title":"Rosetta-Orbiter RPCMIP/RPCLAP Escort 1 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp010_raw_data:b00f1a60","title":"Rosetta-Orbiter SREM Escort 1 MTP010 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp010-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp010_derived_data:8ef85fdc","title":"Rosetta-Orbiter SREM Escort 1 MTP010 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp010-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp011_raw_data:7071047b","title":"Rosetta-Orbiter SREM Escort 1 MTP011 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp011-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp011_derived_data:31bcc038","title":"Rosetta-Orbiter SREM Escort 1 MTP011 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp011-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp012_raw_data:9ff00b0b","title":"Rosetta-Orbiter SREM Escort 1 MTP012 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp012-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp012_derived_data:de6f8a58","title":"Rosetta-Orbiter SREM Escort 1 MTP012 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp012-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp013_raw_data:2b91ab59","title":"Rosetta-Orbiter SREM Escort 1 MTP013 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp013-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_1_mtp013_derived_data:ddcc09a9","title":"Rosetta-Orbiter SREM Escort 1 MTP013 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp013-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp010_67p_raw_data_v2_0:2a109d13","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP010 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp010-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp010_67p_calibrated_data_v2_0:2ae83aaa","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP010 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp010-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp011_67p_raw_data_v2_0:26b5b08f","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP011 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp011-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp011_67p_calibrated_data_v2_0:60296a28","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP011 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp011-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp012_67p_raw_data_v2_0:4e60c9a3","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP012 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp012-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp012_67p_calibrated_data_v2_0:64775032","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP012 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp012-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp013_67p_raw_data_v2_0:6da06af0","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP013 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp013-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_1_mtp013_67p_calibrated_data_v2_0:d8e93fa2","title":"Rosetta-Orbiter VIRTIS Escort 1 MTP013 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp013-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_2_67p_raw_data_v2_0:5b4e074f","title":"Rosetta-Orbiter ALICE Escort 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_2_67p_calibrated_data_v2_0:42915cb0","title":"Rosetta-Orbiter ALICE Escort 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_2_67p_resampled_data_v2_0:6bfe2dce","title":"Rosetta-Orbiter ALICE Escort 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_escort_2_67p_raw_calibrated_data_v1_1:3779d24e","title":"Rosetta-Orbiter GIADA Escort 2 67P Raw/Calibrated Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc2-comet-escort-2-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_escort_2_67p_calibrated_data_v3_0:f0ce1cee","title":"Rosetta-Orbiter MIDAS Escort 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_2_67p_raw_data:42d14915","title":"Rosetta-Orbiter MIRO Escort 2 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc2-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_2_67p_calibrated_data_v3_0:e2c9dfe4","title":"Rosetta-Orbiter MIRO Escort 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc2-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_2_67p_resampled_data_v2_0:18855ca4","title":"Rosetta-Orbiter MIRO Escort 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc2-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp014_67p_raw_data_v1_1:6c1ad44a","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP014 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp014-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp014_67p_calibrated_data:ea9ef595","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP014 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp014-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp015_67p_raw_data_v1_1:e1fd6754","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP015 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp015-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp015_67p_calibrated_data:e3dc940d","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP015 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp015-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp016_67p_raw_data_v1_1:4e708a2a","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP016 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp016-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp016_67p_calibrated_data:284af300","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP016 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp016-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp017_67p_raw_data_v1_1:ebf9ce0b","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP017 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp017-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_2_mtp017_67p_calibrated_data:d63de26f","title":"Rosetta-Orbiter NAVCAM Escort 2 MTP017 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp017-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_2_67p_raw_data_v2_0:968bc98a","title":"Rosetta-Orbiter ROSINA Escort 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_2_67p_calibrated_data_v2_0:993b2141","title":"Rosetta-Orbiter ROSINA Escort 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_2_67p_resampled_data_v2_0:7d530ccd","title":"Rosetta-Orbiter ROSINA Escort 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_2_67p_derived_data_v2_0:2290f5c9","title":"Rosetta-Orbiter ROSINA Escort 2 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_raw_data_v3_0:31eeb8c2","title":"Rosetta-Orbiter RPCICA Escort 2 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.479997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_calibrated_data:83314196","title":"Rosetta-Orbiter RPCICA Escort 2 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_resampled_corrected_data:7060fe06","title":"Rosetta-Orbiter RPCICA Escort 2 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_resampled_corrected_in_counts_data:5805392b","title":"Rosetta-Orbiter RPCICA Escort 2 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_resampled_physical_mass_data:80f1b017","title":"Rosetta-Orbiter RPCICA Escort 2 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_2_67p_derived_moment_data:4bb1e694","title":"Rosetta-Orbiter RPCICA Escort 2 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc2-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_2_67p_raw_data_v2_0:8645555c","title":"Rosetta-Orbiter RPCIES Escort 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_2_67p_calibrated_data_v2_0:30c51ce6","title":"Rosetta-Orbiter RPCIES Escort 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_2_67p_derived_data:cf2cd51c","title":"Rosetta-Orbiter RPCIES Escort 2 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_2_67p_raw_data_v3_0:e805f733","title":"Rosetta-Orbiter RPCLAP Escort 2 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_2_67p_calibrated_data:70fdd0ee","title":"Rosetta-Orbiter RPCLAP Escort 2 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480071","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_2_67p_derived_physical_units_data:cec28094","title":"Rosetta-Orbiter RPCLAP Escort 2 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_2_67p_derived_plasma_density_at_higher_time_resolution_data:6810389f","title":"Rosetta-Orbiter RPCLAP Escort 2 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_2_67p_raw_data_v9_0:b1e21fc5","title":"Rosetta-Orbiter RPCMAG Escort 2 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_2_67p_calibrated_data_v9_0:b790ada3","title":"Rosetta-Orbiter RPCMAG Escort 2 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_2_67p_resampled_data_v9_0:25160b96","title":"Rosetta-Orbiter RPCMAG Escort 2 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_escort_2_67p_calibrated_data_v3_0:5afd82b7","title":"Rosetta-Orbiter RPCMIP Escort 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_escort_2_67p_derived_data:23c56d04","title":"Rosetta-Orbiter RPCMIP Escort 2 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_escort_2_67p_cross_calibrated_derived_data:90f3e7b4","title":"Rosetta-Orbiter RPCMIP/RPCLAP Escort 2 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp014_raw_data:91138f77","title":"Rosetta-Orbiter SREM Escort 2 MTP014 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp014-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp014_derived_data:b125fc76","title":"Rosetta-Orbiter SREM Escort 2 MTP014 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp014-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp015_raw_data:69ff1174","title":"Rosetta-Orbiter SREM Escort 2 MTP015 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp015-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp015_derived_data:9aba8589","title":"Rosetta-Orbiter SREM Escort 2 MTP015 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp015-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp016_raw_data:261103af","title":"Rosetta-Orbiter SREM Escort 2 MTP016 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp016-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp016_derived_data:acdb88e2","title":"Rosetta-Orbiter SREM Escort 2 MTP016 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp016-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp017_raw_data:8fec3896","title":"Rosetta-Orbiter SREM Escort 2 MTP017 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp017-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_2_mtp017_derived_data:870af941","title":"Rosetta-Orbiter SREM Escort 2 MTP017 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp017-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp014_67p_raw_data_v2_0:faa39932","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP014 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp014-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp014_67p_calibrated_data_v2_0:3b316fa1","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP014 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp014-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp015_67p_raw_data_v2_0:0f8930a3","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP015 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp015-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp015_67p_calibrated_data_v2_0:7aa29d93","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP015 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp015-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp016_67p_raw_data_v2_0:c5e9f132","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP016 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp016-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp016_67p_calibrated_data_v2_0:56548acd","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP016 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp016-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp017_67p_raw_data_v2_0:4354daab","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP017 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp017-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_2_mtp017_67p_calibrated_data_v2_0:c47a835d","title":"Rosetta-Orbiter VIRTIS Escort 2 MTP017 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp017-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_3_67p_raw_data_v2_0:b57d683a","title":"Rosetta-Orbiter ALICE Escort 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_3_67p_calibrated_data_v2_0:30127c4a","title":"Rosetta-Orbiter ALICE Escort 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_3_67p_resampled_data_v2_0:1d1be62e","title":"Rosetta-Orbiter ALICE Escort 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_escort_3_67p_raw_calibrated_data:0b7464d1","title":"Rosetta-Orbiter GIADA Escort 3 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc3-comet-escort-3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_escort_3_67p_calibrated_data_v3_0:24a84cdf","title":"Rosetta-Orbiter MIDAS Escort 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_3_67p_raw_data:67944a5c","title":"Rosetta-Orbiter MIRO Escort 3 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc3-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_3_67p_calibrated_data_v3_0:3d5a24f9","title":"Rosetta-Orbiter MIRO Escort 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc3-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_3_67p_resampled_data_v2_0:f740f8f8","title":"Rosetta-Orbiter MIRO Escort 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc3-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp018_67p_raw_data_v1_1:0aa860c0","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP018 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp018-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp018_67p_calibrated_data:1de890b4","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP018 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp018-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp019_67p_raw_data_v1_1:a71a9170","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP019 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp019-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp019_67p_calibrated_data:a6bbaf3a","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP019 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp019-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp020_67p_raw_data_v1_1:5986d4ca","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP020 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp020-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp020_67p_calibrated_data:105df545","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP020 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp020-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp021_67p_raw_data_v1_1:8d7f78cd","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP021 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp021-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_3_mtp021_67p_calibrated_data:83668a7d","title":"Rosetta-Orbiter NAVCAM Escort 3 MTP021 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp021-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_3_67p_raw_data_v2_0:b27150a1","title":"Rosetta-Orbiter ROSINA Escort 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_3_67p_calibrated_data_v2_0:8bf7ea55","title":"Rosetta-Orbiter ROSINA Escort 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_3_67p_resampled_data_v2_0:57216459","title":"Rosetta-Orbiter ROSINA Escort 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_3_67p_derived_data_v2_0:c58d83c7","title":"Rosetta-Orbiter ROSINA Escort 3 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_raw_data_v3_0:3da5c6e8","title":"Rosetta-Orbiter RPCICA Escort 3 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v3.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_calibrated_data:834cdcc7","title":"Rosetta-Orbiter RPCICA Escort 3 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc3-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_resampled_corrected_data:adba85df","title":"Rosetta-Orbiter RPCICA Escort 3 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_resampled_corrected_in_counts_data:b850cdd3","title":"Rosetta-Orbiter RPCICA Escort 3 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_resampled_physical_mass_data:0515dc54","title":"Rosetta-Orbiter RPCICA Escort 3 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_3_67p_derived_moment_data:4691f493","title":"Rosetta-Orbiter RPCICA Escort 3 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc3-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_3_67p_raw_data_v2_0:4c5d49fd","title":"Rosetta-Orbiter RPCIES Escort 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_3_67p_calibrated_data_v2_0:cf2504d9","title":"Rosetta-Orbiter RPCIES Escort 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_3_67p_derived_data:fd1bb1f5","title":"Rosetta-Orbiter RPCIES Escort 3 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_3_67p_raw_data_v3_0:62769920","title":"Rosetta-Orbiter RPCLAP Escort 3 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_3_67p_calibrated_data:a5eaa1c4","title":"Rosetta-Orbiter RPCLAP Escort 3 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc3-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_3_67p_derived_physical_units_data:65924955","title":"Rosetta-Orbiter RPCLAP Escort 3 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_3_67p_derived_plasma_density_at_higher_time_resolution_data:5bb91b89","title":"Rosetta-Orbiter RPCLAP Escort 3 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_3_67p_raw_data_v9_0:e946466e","title":"Rosetta-Orbiter RPCMAG Escort 3 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc3-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_3_67p_calibrated_data_v9_0:026b5741","title":"Rosetta-Orbiter RPCMAG Escort 3 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc3-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_3_67p_resampled_data_v9_0:72658e6a","title":"Rosetta-Orbiter RPCMAG Escort 3 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc3-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_escort_3_67p_calibrated_data_v2_0:c84d03a5","title":"Rosetta-Orbiter RPCMIP Escort 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_escort_3_67p_derived_data:4ef7d4d6","title":"Rosetta-Orbiter RPCMIP Escort 3 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_escort_3_67p_cross_calibrated_derived_data:1bf59001","title":"Rosetta-Orbiter RPCMIP/RPCLAP Escort 3 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp018_raw_data:253c9c44","title":"Rosetta-Orbiter SREM Escort 3 MTP018 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp018-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp018_derived_data:afbdd633","title":"Rosetta-Orbiter SREM Escort 3 MTP018 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp018-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp019_raw_data:9c083c0e","title":"Rosetta-Orbiter SREM Escort 3 MTP019 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp019-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp019_derived_data:07fb9960","title":"Rosetta-Orbiter SREM Escort 3 MTP019 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp019-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp020_raw_data:9d0d5743","title":"Rosetta-Orbiter SREM Escort 3 MTP020 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp020-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp020_derived_data:2dbfcdf8","title":"Rosetta-Orbiter SREM Escort 3 MTP020 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp020-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp021_raw_data:97baba5b","title":"Rosetta-Orbiter SREM Escort 3 MTP021 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp021-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_3_mtp021_derived_data:7c6bbb77","title":"Rosetta-Orbiter SREM Escort 3 MTP021 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp021-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp018_67p_raw_data_v2_0:968e0764","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP018 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp018-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp018_67p_calibrated_data_v2_0:f4ece4df","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP018 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp018-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp019_67p_raw_data_v2_0:bfc9c848","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP019 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp019-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp019_67p_calibrated_data_v2_0:d6fe1f94","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP019 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp019-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp020_67p_raw_data_v2_0:487dd706","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP020 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp020-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp020_67p_calibrated_data_v2_0:7a199b60","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP020 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp020-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp021_67p_raw_data_v2_0:0ff436b8","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP021 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp021-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_3_mtp021_67p_calibrated_data_v2_0:ce6c4277","title":"Rosetta-Orbiter VIRTIS Escort 3 MTP021 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp021-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_4_67p_raw_data_v2_0:7e6cb7d2","title":"Rosetta-Orbiter ALICE Escort 4 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_4_67p_calibrated_data_v2_0:fa56e39a","title":"Rosetta-Orbiter ALICE Escort 4 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_escort_4_67p_resampled_data_v2_0:0c59bc86","title":"Rosetta-Orbiter ALICE Escort 4 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_escort_4_67p_raw_calibrated_data:ff9ea503","title":"Rosetta-Orbiter GIADA Escort 4 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc4-comet-escort-4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_escort_4_67p_calibrated_data_v3_0:9c2f71ea","title":"Rosetta-Orbiter MIDAS Escort 4 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_4_67p_raw_data:bcce220b","title":"Rosetta-Orbiter MIRO Escort 4 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc4-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_4_67p_calibrated_data_v3_0:d339e0f0","title":"Rosetta-Orbiter MIRO Escort 4 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc4-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_escort_4_67p_resampled_data_v2_0:30b949a2","title":"Rosetta-Orbiter MIRO Escort 4 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc4-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp022_67p_raw_data_v1_1:43ef7031","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP022 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp022-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp022_67p_calibrated_data:35279928","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP022 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp022-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp023_67p_raw_data_v1_1:45ac8349","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP023 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp023-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp023_67p_calibrated_data:1a80590c","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP023 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp023-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp024_67p_raw_data_v1_1:b67a5c7b","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP024 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp024-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_escort_4_mtp024_67p_calibrated_data:c2b7bec4","title":"Rosetta-Orbiter NAVCAM Escort 4 MTP024 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp024-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_4_67p_raw_data_v2_0:4a74de0d","title":"Rosetta-Orbiter ROSINA Escort 4 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_4_67p_calibrated_data_v2_0:a0deb2dd","title":"Rosetta-Orbiter ROSINA Escort 4 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_4_67p_resampled_data_v2_0:0a82924d","title":"Rosetta-Orbiter ROSINA Escort 4 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_escort_4_67p_derived_data_v2_0:a5216bd0","title":"Rosetta-Orbiter ROSINA Escort 4 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_raw_data_v2_0:faef93e2","title":"Rosetta-Orbiter RPCICA Escort 4 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc4-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_calibrated_data:d59f8240","title":"Rosetta-Orbiter RPCICA Escort 4 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc4-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_resampled_corrected_data:eacd1a42","title":"Rosetta-Orbiter RPCICA Escort 4 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_resampled_corrected_in_counts_data:a34702f7","title":"Rosetta-Orbiter RPCICA Escort 4 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_resampled_physical_mass_data:6f04aa26","title":"Rosetta-Orbiter RPCICA Escort 4 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_escort_4_67p_derived_moment_data:05d86e2b","title":"Rosetta-Orbiter RPCICA Escort 4 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc4-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_4_67p_raw_data:14216e98","title":"Rosetta-Orbiter RPCIES Escort 4 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_4_67p_calibrated_data_v2_0:4efa6a39","title":"Rosetta-Orbiter RPCIES Escort 4 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_escort_4_67p_derived_data:d10b5773","title":"Rosetta-Orbiter RPCIES Escort 4 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_4_67p_raw_data_v3_0:f4e38d12","title":"Rosetta-Orbiter RPCLAP Escort 4 67P Raw Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_4_67p_calibrated_data:668cde5a","title":"Rosetta-Orbiter RPCLAP Escort 4 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc4-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_4_67p_derived_physical_units_data:834b85bc","title":"Rosetta-Orbiter RPCLAP Escort 4 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_escort_4_67p_derived_plasma_density_at_higher_time_resolution_data:78005175","title":"Rosetta-Orbiter RPCLAP Escort 4 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_4_67p_raw_data_v9_0:575e265e","title":"Rosetta-Orbiter RPCMAG Escort 4 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc4-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_4_67p_calibrated_data_v9_0:81b89ed1","title":"Rosetta-Orbiter RPCMAG Escort 4 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc4-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_escort_4_67p_resampled_data_v9_0:f2b62aa9","title":"Rosetta-Orbiter RPCMAG Escort 4 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc4-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_escort_4_67p_calibrated_data_v2_0:73b5e3d9","title":"Rosetta-Orbiter RPCMIP Escort 4 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc4-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_escort_4_67p_derived_data:f98a4994","title":"Rosetta-Orbiter RPCMIP Escort 4 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_escort_4_67p_cross_calibrated_derived_data:9938a944","title":"Rosetta-Orbiter RPCMIP/RPCLAP Escort 4 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc4-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp022_raw_data:b986f2db","title":"Rosetta-Orbiter SREM Escort 4 MTP022 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp022-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp022_derived_data:da86bd3a","title":"Rosetta-Orbiter SREM Escort 4 MTP022 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp022-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp023_raw_data:36e535a8","title":"Rosetta-Orbiter SREM Escort 4 MTP023 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp023-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp023_derived_data:eb6076aa","title":"Rosetta-Orbiter SREM Escort 4 MTP023 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp023-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp024_raw_data:c7646622","title":"Rosetta-Orbiter SREM Escort 4 MTP024 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp024-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_escort_4_mtp024_derived_data:c07594ff","title":"Rosetta-Orbiter SREM Escort 4 MTP024 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp024-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp022_67p_raw_data_v2_0:772aa007","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP022 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp022-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp022_67p_calibrated_data_v2_0:ba9995ee","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP022 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp022-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp023_67p_raw_data_v2_0:3304dc69","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP023 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp023-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp023_67p_calibrated_data_v2_0:0a68ff7d","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP023 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp023-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp024_67p_raw_data_v2_0:934fb975","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP024 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp024-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_escort_4_mtp024_67p_calibrated_data_v2_0:4a0d38a4","title":"Rosetta-Orbiter VIRTIS Escort 4 MTP024 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp024-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_1_67p_raw_data_v2_0:69300824","title":"Rosetta-Orbiter ALICE Extension 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.480999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_1_67p_calibrated_data_v2_0:40c48602","title":"Rosetta-Orbiter ALICE Extension 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_1_67p_resampled_data_v2_0:963871d5","title":"Rosetta-Orbiter ALICE Extension 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_extension_1_67p_raw_calibrated_data:29425706","title":"Rosetta-Orbiter GIADA Extension 1 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext1-extension-1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_extension_1_67p_calibrated_data_v3_0:4c5ffc71","title":"Rosetta-Orbiter MIDAS Extension 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_1_67p_raw_data:6634a259","title":"Rosetta-Orbiter MIRO Extension 1 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext1-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_1_67p_calibrated_data_v3_0:e691d4b6","title":"Rosetta-Orbiter MIRO Extension 1 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext1-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_1_67p_resampled_data_v2_0:14ad2f8e","title":"Rosetta-Orbiter MIRO Extension 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext1-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp025_67p_raw_data_v1_1:085fefe5","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP025 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp025-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp025_67p_calibrated_data:491b9b66","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP025 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp025-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp026_67p_raw_data_v1_1:3f203d27","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP026 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp026-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp026_67p_calibrated_data:18b07946","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP026 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp026-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp027_67p_raw_data_v1_1:b8e5de59","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP027 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp027-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_1_mtp027_67p_calibrated_data:bf33fede","title":"Rosetta-Orbiter NAVCAM Extension 1 MTP027 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp027-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_1_67p_raw_data_v2_0:3a26e28d","title":"Rosetta-Orbiter ROSINA Extension 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_1_67p_calibrated_data_v2_0:fe20e0d2","title":"Rosetta-Orbiter ROSINA Extension 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_1_67p_resampled_data_v2_0:ef672b5f","title":"Rosetta-Orbiter ROSINA Extension 1 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_1_67p_derived_data_v2_0:0d6adec7","title":"Rosetta-Orbiter ROSINA Extension 1 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_raw_data_v2_0:736b3d15","title":"Rosetta-Orbiter RPCICA Extension 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext1-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_calibrated_data:0f08fd69","title":"Rosetta-Orbiter RPCICA Extension 1 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext1-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_resampled_corrected_data:736248c7","title":"Rosetta-Orbiter RPCICA Extension 1 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_resampled_corrected_in_counts_data:26b42ac3","title":"Rosetta-Orbiter RPCICA Extension 1 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_resampled_physical_mass_data:2fd7a093","title":"Rosetta-Orbiter RPCICA Extension 1 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_1_67p_derived_moment_data:1ad9f8e1","title":"Rosetta-Orbiter RPCICA Extension 1 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext1-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_1_67p_raw_data:617438f5","title":"Rosetta-Orbiter RPCIES Extension 1 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_1_67p_calibrated_data_v2_0:0722a222","title":"Rosetta-Orbiter RPCIES Extension 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_1_67p_derived_data:9ca4b62c","title":"Rosetta-Orbiter RPCIES Extension 1 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_1_67p_raw_data_v2_0:2998d708","title":"Rosetta-Orbiter RPCLAP Extension 1 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_1_67p_calibrated_data:43b6f793","title":"Rosetta-Orbiter RPCLAP Extension 1 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext1-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_1_67p_derived_physical_units_data:6c75b8c4","title":"Rosetta-Orbiter RPCLAP Extension 1 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_1_67p_derived_plasma_density_at_higher_time_resolution_data:2396749d","title":"Rosetta-Orbiter RPCLAP Extension 1 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_1_67p_raw_data_v9_0:fa9d91e3","title":"Rosetta-Orbiter RPCMAG Extension 1 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext1-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_1_67p_calibrated_data_v9_0:c114df47","title":"Rosetta-Orbiter RPCMAG Extension 1 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext1-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_1_67p_resampled_data_v9_0:bafd7900","title":"Rosetta-Orbiter RPCMAG Extension 1 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext1-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_extension_1_67p_calibrated_data_v2_0:fbac7091","title":"Rosetta-Orbiter RPCMIP Extension 1 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext1-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_extension_1_67p_derived_data:5b87ff7b","title":"Rosetta-Orbiter RPCMIP Extension 1 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_extension_1_67p_cross_calibrated_derived_data:e4d5509f","title":"Rosetta-Orbiter RPCMIP/RPCLAP Extension 1 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp025_raw_data:f65e76db","title":"Rosetta-Orbiter SREM Extension 1 MTP025 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp025-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp025_derived_data:2160bb0a","title":"Rosetta-Orbiter SREM Extension 1 MTP025 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp025-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp026_raw_data:3163343f","title":"Rosetta-Orbiter SREM Extension 1 MTP026 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp026-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp026_derived_data:4c00abc6","title":"Rosetta-Orbiter SREM Extension 1 MTP026 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp026-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp027_raw_data:39131e19","title":"Rosetta-Orbiter SREM Extension 1 MTP027 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp027-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_1_mtp027_derived_data:aa294c56","title":"Rosetta-Orbiter SREM Extension 1 MTP027 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp027-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp025_67p_raw_data_v2_0:24238c0f","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP025 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp025-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp025_67p_calibrated_data_v2_0:746b891b","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP025 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp025-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp026_67p_raw_data_v2_0:7ec7a533","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP026 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp026-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp026_67p_calibrated_data_v2_0:73793763","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP026 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp026-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp027_67p_raw_data_v2_0:9bc1f3e4","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP027 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp027-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_1_mtp027_67p_calibrated_data_v2_0:69eb0e78","title":"Rosetta-Orbiter VIRTIS Extension 1 MTP027 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp027-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_2_67p_raw_data_v2_0:3550c789","title":"Rosetta-Orbiter ALICE Extension 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_2_67p_calibrated_data_v2_0:5560ac4e","title":"Rosetta-Orbiter ALICE Extension 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_2_67p_resampled_data_v2_0:380bac26","title":"Rosetta-Orbiter ALICE Extension 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_extension_2_67p_raw_calibrated_data:45f9ba9a","title":"Rosetta-Orbiter GIADA Extension 2 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext2-extension-2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_extension_2_67p_calibrated_data_v3_0:c1196cbf","title":"Rosetta-Orbiter MIDAS Extension 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_2_67p_raw_data:ceea12b3","title":"Rosetta-Orbiter MIRO Extension 2 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext2-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_2_67p_calibrated_data_v3_0:7fa50322","title":"Rosetta-Orbiter MIRO Extension 2 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext2-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_2_67p_resampled_data_v2_0:3e2c8bf7","title":"Rosetta-Orbiter MIRO Extension 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext2-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp028_67p_raw_data_v1_1:fe37e8d8","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP028 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp028-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp028_67p_calibrated_data:1cd14701","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP028 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp028-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp029_67p_raw_data_v1_1:354fdcc7","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP029 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp029-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp029_67p_calibrated_data:646cc63a","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP029 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp029-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp030_67p_raw_data_v1_1:8fe0242f","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP030 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp030-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_2_mtp030_67p_calibrated_data:8ec8d92e","title":"Rosetta-Orbiter NAVCAM Extension 2 MTP030 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp030-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_2_67p_raw_data_v2_0:51aa96da","title":"Rosetta-Orbiter ROSINA Extension 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_2_67p_calibrated_data_v2_0:aedc20c4","title":"Rosetta-Orbiter ROSINA Extension 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_2_67p_resampled_data_v2_0:788b1b60","title":"Rosetta-Orbiter ROSINA Extension 2 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_2_67p_derived_data_v2_0:84f3d6dd","title":"Rosetta-Orbiter ROSINA Extension 2 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_raw_data_v2_0:9cf1604d","title":"Rosetta-Orbiter RPCICA Extension 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext2-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_calibrated_data:1650968f","title":"Rosetta-Orbiter RPCICA Extension 2 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext2-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_resampled_corrected_data:b7867f05","title":"Rosetta-Orbiter RPCICA Extension 2 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_resampled_corrected_in_counts_data:2f589a76","title":"Rosetta-Orbiter RPCICA Extension 2 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_resampled_physical_mass_data:6b119ffc","title":"Rosetta-Orbiter RPCICA Extension 2 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_2_67p_derived_moment_data:697f1297","title":"Rosetta-Orbiter RPCICA Extension 2 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext2-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_2_67p_raw_data:1d79007e","title":"Rosetta-Orbiter RPCIES Extension 2 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_2_67p_calibrated_data_v2_0:b5f4c11b","title":"Rosetta-Orbiter RPCIES Extension 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_2_67p_derived_data:3731ec9d","title":"Rosetta-Orbiter RPCIES Extension 2 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_2_67p_raw_data_v2_0:90fc8dbd","title":"Rosetta-Orbiter RPCLAP Extension 2 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_2_67p_calibrated_data:cc27cd0b","title":"Rosetta-Orbiter RPCLAP Extension 2 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext2-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_2_67p_derived_physical_units_data:18c6b912","title":"Rosetta-Orbiter RPCLAP Extension 2 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_2_67p_derived_plasma_density_at_higher_time_resolution_data:6407b5fd","title":"Rosetta-Orbiter RPCLAP Extension 2 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_2_67p_raw_data_v9_0:e095e440","title":"Rosetta-Orbiter RPCMAG Extension 2 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext2-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_2_67p_calibrated_data_v9_0:f0010c34","title":"Rosetta-Orbiter RPCMAG Extension 2 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext2-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_2_67p_resampled_data_v9_0:982d6deb","title":"Rosetta-Orbiter RPCMAG Extension 2 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext2-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_extension_2_67p_calibrated_data_v2_0:7d4496bc","title":"Rosetta-Orbiter RPCMIP Extension 2 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext2-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_extension_2_67p_derived_data:1f51721f","title":"Rosetta-Orbiter RPCMIP Extension 2 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_extension_2_67p_cross_calibrated_derived_data:2df2c6ea","title":"Rosetta-Orbiter RPCMIP/RPCLAP Extension 2 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp028_raw_data:81a3e932","title":"Rosetta-Orbiter SREM Extension 2 MTP028 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp028-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp028_derived_data:2d5b9c78","title":"Rosetta-Orbiter SREM Extension 2 MTP028 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp028-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp029_raw_data:06d1b123","title":"Rosetta-Orbiter SREM Extension 2 MTP029 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp029-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp029_derived_data:bb2e4b81","title":"Rosetta-Orbiter SREM Extension 2 MTP029 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp029-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp030_raw_data:53616ab8","title":"Rosetta-Orbiter SREM Extension 2 MTP030 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp030-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_2_mtp030_derived_data:36f8be64","title":"Rosetta-Orbiter SREM Extension 2 MTP030 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp030-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp028_67p_raw_data_v2_0:0d1edeb2","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP028 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp028-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp028_67p_calibrated_data_v2_0:3e37f313","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP028 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp028-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp029_67p_raw_data_v2_0:e991e694","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP029 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp029-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp029_67p_calibrated_data_v2_0:6d23ff42","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP029 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp029-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp030_67p_raw_data_v2_0:8843dabd","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP030 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp030-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_2_mtp030_67p_calibrated_data_v2_0:e3fac573","title":"Rosetta-Orbiter VIRTIS Extension 2 MTP030 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp030-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_3_67p_raw_data_v2_0:0d4be192","title":"Rosetta-Orbiter ALICE Extension 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_3_67p_calibrated_data_v2_0:b6c8ebf0","title":"Rosetta-Orbiter ALICE Extension 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_extension_3_67p_resampled_data_v2_0:2a63c844","title":"Rosetta-Orbiter ALICE Extension 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_extension_3_67p_raw_calibrated_data:10f1650f","title":"Rosetta-Orbiter GIADA Extension 3 67P Raw/Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext3-extension-3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_extension_3_67p_calibrated_data_v3_0:c1d43ae9","title":"Rosetta-Orbiter MIDAS Extension 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_3_67p_raw_data:6e523708","title":"Rosetta-Orbiter MIRO Extension 3 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext3-67p-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_3_67p_calibrated_data_v3_0:a7534182","title":"Rosetta-Orbiter MIRO Extension 3 67P Calibrated Data v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext3-67p-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_miro_extension_3_67p_resampled_data_v2_0:26eacedf","title":"Rosetta-Orbiter MIRO Extension 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext3-67p-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.481996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp031_67p_raw_data_v1_1:3d373df8","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP031 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp031-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp031_67p_calibrated_data:e3b72ae5","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP031 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp031-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp032_67p_raw_data_v1_1:2d21f35d","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP032 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp032-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp032_67p_calibrated_data:307f4e85","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP032 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp032-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp033_67p_raw_data_v1_1:df1118c8","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP033 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp033-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp033_67p_calibrated_data:e6154054","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP033 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp033-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp034_67p_raw_data_v1_1:5effeeab","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP034 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp034-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp034_67p_calibrated_data:6fb5e6e6","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP034 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp034-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp035_67p_raw_data_v1_1:f970d30b","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP035 67P Raw Data v1.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp035-v1.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_navcam_extension_3_mtp035_67p_calibrated_data:54a08562","title":"Rosetta-Orbiter NAVCAM Extension 3 MTP035 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp035-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_3_67p_raw_data_v2_0:4a960186","title":"Rosetta-Orbiter ROSINA Extension 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_3_67p_calibrated_data_v2_0:1ed63fee","title":"Rosetta-Orbiter ROSINA Extension 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_3_67p_resampled_data_v2_0:4d63ce33","title":"Rosetta-Orbiter ROSINA Extension 3 67P Resampled Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rosina_extension_3_67p_derived_data_v2_0:2f24cc95","title":"Rosetta-Orbiter ROSINA Extension 3 67P Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_raw_data_v2_0:e8bcc563","title":"Rosetta-Orbiter RPCICA Extension 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext3-raw-v2.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_calibrated_data:563b9c17","title":"Rosetta-Orbiter RPCICA Extension 3 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext3-calib-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_resampled_corrected_data:d2cdfeca","title":"Rosetta-Orbiter RPCICA Extension 3 67P Resampled Corrected Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_resampled_corrected_in_counts_data:9835e51b","title":"Rosetta-Orbiter RPCICA Extension 3 67P Resampled Corrected in Counts Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-cts-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_resampled_physical_mass_data:84168c88","title":"Rosetta-Orbiter RPCICA Extension 3 67P Resampled Physical Mass Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-phys-mass-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcica_extension_3_67p_derived_moment_data:04b027a7","title":"Rosetta-Orbiter RPCICA Extension 3 67P Derived Moment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext3-moment-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_3_67p_raw_data:2dd9ce55","title":"Rosetta-Orbiter RPCIES Extension 3 67P Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_3_67p_calibrated_data_v2_0:785027e8","title":"Rosetta-Orbiter RPCIES Extension 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcies_extension_3_67p_derived_data:9adc7e84","title":"Rosetta-Orbiter RPCIES Extension 3 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_3_67p_raw_data_v2_0:d40cc852","title":"Rosetta-Orbiter RPCLAP Extension 3 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-edited2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_3_67p_calibrated_data:fed0e564","title":"Rosetta-Orbiter RPCLAP Extension 3 67P Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext3-calib2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_3_67p_derived_physical_units_data:0b4517b1","title":"Rosetta-Orbiter RPCLAP Extension 3 67P Derived (Physical Units) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-deriv2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpclap_extension_3_67p_derived_plasma_density_at_higher_time_resolution_data:b6f99d5d","title":"Rosetta-Orbiter RPCLAP Extension 3 67P Derived (Plasma Density at Higher Time Resolution) Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-nel-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_3_67p_raw_data_v9_0:93007007","title":"Rosetta-Orbiter RPCMAG Extension 3 67P Raw Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext3-raw-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_3_67p_calibrated_data_v9_0:e699ac80","title":"Rosetta-Orbiter RPCMAG Extension 3 67P Calibrated Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext3-calibrated-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmag_extension_3_67p_resampled_data_v9_0:accf12c1","title":"Rosetta-Orbiter RPCMAG Extension 3 67P Resampled Data v9.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext3-resampled-v9.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_extension_3_67p_calibrated_data_v2_0:4e36920e","title":"Rosetta-Orbiter RPCMIP Extension 3 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_extension_3_67p_derived_data:3f9f88b5","title":"Rosetta-Orbiter RPCMIP Extension 3 67P Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_rpcmip_rpclap_extension_3_67p_cross_calibrated_derived_data:a355da61","title":"Rosetta-Orbiter RPCMIP/RPCLAP Extension 3 67P Cross-Calibrated Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext3-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp031_raw_data:ab6cc29b","title":"Rosetta-Orbiter SREM Extension 3 MTP031 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp031-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp031_derived_data:05f27c9f","title":"Rosetta-Orbiter SREM Extension 3 MTP031 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp031-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp032_raw_data:3eb627fd","title":"Rosetta-Orbiter SREM Extension 3 MTP032 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp032-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp032_derived_data:1fd1ed60","title":"Rosetta-Orbiter SREM Extension 3 MTP032 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp032-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp033_raw_data:caf5067f","title":"Rosetta-Orbiter SREM Extension 3 MTP033 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp033-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp033_derived_data:145b2c3f","title":"Rosetta-Orbiter SREM Extension 3 MTP033 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp033-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp034_raw_data:5c6bda39","title":"Rosetta-Orbiter SREM Extension 3 MTP034 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp034-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp034_derived_data:30b1e61d","title":"Rosetta-Orbiter SREM Extension 3 MTP034 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp034-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp035_raw_data:f64d4738","title":"Rosetta-Orbiter SREM Extension 3 MTP035 Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp035-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_srem_extension_3_mtp035_derived_data:e553c1dd","title":"Rosetta-Orbiter SREM Extension 3 MTP035 Derived Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp035-v1.0/dataset.html","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp031_67p_raw_data_v2_0:17b92d5d","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP031 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp031-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp031_67p_calibrated_data_v2_0:682a8790","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP031 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp031-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp032_67p_raw_data_v2_0:c5148252","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP032 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp032-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp032_67p_calibrated_data_v2_0:5e084577","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP032 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp032-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp033_67p_raw_data_v2_0:9ba5ebbb","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP033 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp033-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp033_67p_calibrated_data_v2_0:11bcf1cb","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP033 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp033-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp034_67p_raw_data_v2_0:fe97b675","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP034 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp034-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp034_67p_calibrated_data_v2_0:eff20978","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP034 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp034-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp035_67p_raw_data_v2_0:2704ae47","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP035 67P Raw Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp035-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_extension_3_mtp035_67p_calibrated_data_v2_0:4ad908ef","title":"Rosetta-Orbiter VIRTIS Extension 3 MTP035 67P Calibrated Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp035-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_cosima_in_flight_and_67p_raw_and_calibrated_data:fcf87cbb","title":"Rosetta-Orbiter COSIMA In-Flight and 67P Raw and Calibrated Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v6.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_rf_antenna_engineering_data:c650d71e","title":"Rosetta Spacecraft RF Antenna Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-antennastatus-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_attitude_amp_orbit_control_system_data:857f0985","title":"Rosetta Spacecraft Attitude & Orbit Control System Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-aocgen-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_radiation_data_correction_data:13c40163","title":"Rosetta Spacecraft Radiation Data Correction Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-edac-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_high_gain_antenna_engineering_data:6e204e15","title":"Rosetta Spacecraft High Gain Antenna Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-hgaapm-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_inertial_measurement_package_data:46ea4b60","title":"Rosetta Spacecraft Inertial Measurement Package Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-imp-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_navigation_camera_engineering_data:872db2b4","title":"Rosetta Spacecraft Navigation Camera Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-navcam-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_orbit_control_manoeuvre_data:33349e75","title":"Rosetta Spacecraft Orbit Control Manoeuvre Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-ocmrcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_reaction_wheel_engineering_data:23dcd533","title":"Rosetta Spacecraft Reaction Wheel Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-rwl-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_solar_array_amp_power_engineering_data:bb9c901f","title":"Rosetta Spacecraft Solar Array & Power Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-solararray-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_startracker_engineering_data:dfea0060","title":"Rosetta Spacecraft Startracker Engineering Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-startracker-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_spacecraft_thermal_control_system_data:c80e2e38","title":"Rosetta Spacecraft Thermal Control System Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-tcs-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:67p_c_g_reference_frames_and_mapping_scheme:73f46eef","title":"67P/C-G Reference Frames and Mapping Scheme","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v1.0/document/cheops_ref_frame_v1.pdf","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_shape_models_of_comet_67p_c_g_v2_0:28952592","title":"Rosetta Shape Models of Comet 67P/C-G v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_lander_ancillary_67p_data_v2_0:311a66d4","title":"Rosetta-Lander Ancillary 67P data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-multi-5-ancdr-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_midas_67p_cometary_particles_derived_data_v2_0:1b0a8f42","title":"Rosetta-Orbiter MIDAS 67P Cometary Particles Derived Data v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet","Comet 67P/Churyumov-Gerasimenko","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-5-prl-to-ext3-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_alice_supplementary_documents_and_data:07cc3932","title":"Rosetta-Orbiter ALICE Supplementary Documents and Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-6-supplementary-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_giada_67p_dust_maps:134da826","title":"Rosetta-Orbiter GIADA 67P Dust Maps","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-5-67p-dust-maps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:rosetta_orbiter_virtis_derived_67p_maps:a93c0514","title":"Rosetta-Orbiter VIRTIS Derived 67P Maps","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Rosetta"],"targets":["Comet 67P/Churyumov-Gerasimenko"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-5-67p-maps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ro_derived:dfms_ts_abundance::1.0","title":"Rosetta ROSINA DFMS Time Series Abundances","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Rosetta"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived:dfms_ts_abundance-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/rosetta/index.shtml","scraped_at":"2026-02-02T22:13:04.482592","keywords":["urn:nasa:pds:ro_derived:dfms_ts_abundance::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:magnetometer:d9657da5","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Sakigake"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-imf-3-rdr-halley-v1.0/catalog/imf.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sakigake/index.shtml","scraped_at":"2026-02-02T22:13:04.675424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solar_wind_experiment:3f96bf52","title":"Solar Wind Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Sakigake"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-sow-3-rdr-halley-v1.0/catalog/sow.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sakigake/index.shtml","scraped_at":"2026-02-02T22:13:04.675444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:interplanetary_magnetic_field_experiment_data:8a377bdc","title":"Interplanetary Magnetic Field Experiment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Sakigake"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-imf-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sakigake/index.shtml","scraped_at":"2026-02-02T22:13:04.675456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solar_wind_instrument_data:15155274","title":"Solar Wind Instrument Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Sakigake"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-sow-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sakigake/index.shtml","scraped_at":"2026-02-02T22:13:04.675466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:cometary_and_interstellar_dust:20e38ad6","title":"Cometary and Interstellar Dust","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-6-geometry-v1.0/catalog/src.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:cometary_and_interstellar_dust_analyzer:900f2c5f","title":"Cometary and Interstellar Dust Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-1-edf_hk-v1.0/catalog/cida.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:navigation_camera:4a884083","title":"Navigation Camera","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v2.0/catalog/navcam.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_flux_monitor:5105dc39","title":"Dust Flux Monitor","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dfmi-2-edr-wild2-v1.0/catalog/dfmi.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dynamic_science_experiment:b799425b","title":"Dynamic Science Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dynsci-2-wild2-v1.0/catalog/dynsci.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_pre_flight_navigation_camera_calibration_images_v2_0:a81be43e","title":"Stardust Pre-flight Navigation Camera Calibration Images v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-cal-nc-2-preflight-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_navcam_early_cruise_images_raw:f75915b4","title":"Stardust NAVCAM Early Cruise Images - Raw","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-nc-2-edr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_dfmi_early_cruise_dust_flux_data:502d2b3a","title":"Stardust DFMI Early Cruise Dust Flux Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-dfmi-2-edr-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_navcam_annefrank_raw_images_v3_0:6b6707bc","title":"Stardust NAVCAM Annefrank Raw Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Annefrank"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_navcam_annefrank_calibrated_images:e5d1133a","title":"Stardust NAVCAM Annefrank Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Annefrank"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-3-rdr-annefrank-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_navcam_81p_wild_2_raw_images_v3_0:09e90aa6","title":"Stardust NAVCAM 81P/Wild 2 Raw Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_navcam_81p_wild_2_calibrated_images_v3_0:a98c249c","title":"Stardust NAVCAM 81P/Wild 2 Calibrated Images v3.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v3.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_dfmi_81p_wild_2_dust_flux_data:49bab8a0","title":"Stardust DFMI 81P/Wild 2 Dust Flux Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dfmi-2-edr-wild2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_cida_cruise_and_81p_wild_2_dust_mass_spectra:abccaed7","title":"Stardust CIDA Cruise and 81P/Wild 2 Dust Mass Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-1-edf_hk-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_dse_81p_wild_2_dynamic_science_data:944a6774","title":"Stardust DSE 81P/Wild 2 Dynamic Science Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dynsci-2-wild2-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_collector_temperature_sensor_readings:a78cd21d","title":"Stardust Collector Temperature Sensor Readings","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-2-temps-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_collector_plate_geometry:197561c0","title":"Stardust Collector Plate Geometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-6-geometry-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_navcam_81p_wild_2_shape_model_v2_1:7b06743a","title":"Stardust NAVCAM 81P/Wild 2 Shape Model v2.1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v2.1/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:keck_ii_esi_images_of_81p_wild_2:4764a220","title":"Keck II ESI Images of 81P/Wild 2","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Wild 2"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0039-2-sbn0007_keckiiesi-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardust/index.shtml","scraped_at":"2026-02-02T22:13:04.843396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_next_navcam_raw_images_of_9p_tempel_1:b3c5d3e2","title":"Stardust/NExT NAVCAM Raw Images of 9P/Tempel 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-2-next-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardustnext/index.shtml","scraped_at":"2026-02-02T22:13:05.040978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_next_navcam_calibrated_images_of_9p_tempel_1:10a70883","title":"Stardust/NExT NAVCAM Calibrated Images of 9P/Tempel 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-3-next-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardustnext/index.shtml","scraped_at":"2026-02-02T22:13:05.041000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_next_dfmi_9p_tempel_1_dust_flux_data:2d61596d","title":"Stardust/NExT DFMI 9P/Tempel 1 Dust Flux Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-dfmi-2_3-next-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardustnext/index.shtml","scraped_at":"2026-02-02T22:13:05.041023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:stardust_next_cida_9p_tempel_1_dust_mass_spectra:a37906c0","title":"Stardust/NExT CIDA 9P/Tempel 1 Dust Mass Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Stardust"],"targets":["Comet Tempel 1","Ida"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-2_3-next-tempel1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/stardustnext/index.shtml","scraped_at":"2026-02-02T22:13:05.041033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:suisei_solar_wind_experiment_data:9cd1219d","title":"Suisei Solar Wind Experiment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Suisei"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/suisei-c-esp-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/suisei/index.shtml","scraped_at":"2026-02-02T22:13:05.241660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:television_system:0d9adcee","title":"Television System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/catalog/tvs.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_spectrometer:47deb17d","title":"Infrared Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/catalog/iks.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_particle_counter_and_mass_analyzer:e936e994","title":"Dust-Particle Counter and Mass Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/catalog/ducma.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_particle_impact_plasma_detector_1:89d97106","title":"Dust-Particle Impact Plasma Detector 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/catalog/sp1.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_particle_impact_detector_2:bb342adf","title":"Dust-Particle Impact Detector 2","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/catalog/sp2.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_mass_spectrometer:9f00fc84","title":"Dust Mass Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/catalog/puma.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:plasma_energy_analyzer:69683287","title":"Plasma Energy Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/catalog/pm1.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:energetic_particle_analyzer:82b1dcbe","title":"Energetic Particle Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tnm-2-rdr-halley-v1.0/catalog/tnm.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:magnetometer:4acedfd2","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/catalog/mischa.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_television_system_raw_images:10441ce7","title":"Vega 1 Television System, Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_television_system_processed_images:7a31ef62","title":"Vega 1 Television System, Processed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_infrared_spectrometer_raw_data:7d34a25e","title":"Vega 1 Infrared Spectrometer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_infrared_spectrometer_processed_data:eb2ddd05","title":"Vega 1 Infrared Spectrometer, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_dust_particle_counter_and_mass_analyzer_results:49ec64b0","title":"Vega 1 Dust Particle Counter and Mass Analyzer Results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_dust_impact_plasma_detector_electrode_collector_data:b4a8ca5c","title":"Vega 1 Dust Impact Plasma Detector, Electrode Collector Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_dust_impact_plasma_detector_acoustic_sensor_data:8a37b9a1","title":"Vega 1 Dust Impact Plasma Detector, Acoustic Sensor Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_dust_impact_mass_analyzer_raw_data:e4a18fde","title":"Vega 1 Dust Impact Mass Analyzer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_dust_impact_mass_analyser_processed_data:9849b182","title":"Vega 1 Dust Impact Mass Analyser, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_plasma_energy_analyzer_observations:270aef79","title":"Vega 1 Plasma Energy Analyzer Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:tunde_m_energetic_particle_analyser_data:40ad63bb","title":"Tunde-M Energetic Particle Analyser Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tnm-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_fluxgate_magnetometer_original_data_for_comet_halley_and_solar_wind:8060844d","title":"Vega 1 Fluxgate Magnetometer Original Data for Comet Halley and Solar Wind","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c_sw-mischa-3-rdr-original-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_fluxgate_magnetometer_comet_observations:00564234","title":"Vega 1 Fluxgate Magnetometer Comet Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_1_fluxgate_magnetometer_observations_of_solar_wind:30fd9d98","title":"Vega 1 Fluxgate Magnetometer Observations of Solar Wind","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-sw-mischa-3-rdr-cruise-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega1/index.shtml","scraped_at":"2026-02-02T22:13:05.448555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:television_system:6c03f611","title":"Television System","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/catalog/tvs.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_particle_counter_and_mass_analyzer:af7d3202","title":"Dust-Particle Counter and Mass Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/catalog/ducma.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_particle_impact_plasma_detector_1:185aafac","title":"Dust-Particle Impact Plasma Detector 1","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/catalog/sp1.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_particle_acoustical_impact_detector_2:6c9b6642","title":"Dust-Particle Acoustical Impact Detector 2","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/catalog/sp2.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_mass_spectrometer:d881c73c","title":"Dust Mass Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/catalog/puma.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:plasma_energy_analyzer:7249c695","title":"Plasma Energy Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/catalog/pm1.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:magnetometer:c0f89fbb","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/catalog/mischa.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_television_system_raw_images:e542845e","title":"Vega 2 Television System, Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_television_system_processed_images:fdd6520f","title":"Vega 2 Television System, Processed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_television_system_transformed_images:12344b41","title":"Vega 2 Television System, Transformed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-5-rdr-halley-transform-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_dust_particle_counter_and_mass_analyzer_results:9819ff1c","title":"Vega 2 Dust Particle Counter and Mass Analyzer Results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.724995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_dust_impact_plasma_detector_electrode_collector_data:d9baaa2d","title":"Vega 2 Dust Impact Plasma Detector, Electrode Collector Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_dust_impact_plasma_detector_acoustic_sensor_data:b16d103b","title":"Vega 2 Dust Impact Plasma Detector, Acoustic Sensor Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_dust_impact_mass_analyzer_raw_data:ed74a2c3","title":"Vega 2 Dust Impact Mass Analyzer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_dust_impact_mass_analyzer_processed_data:96e1990f","title":"Vega 2 Dust Impact Mass Analyzer, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_plasma_energy_analyzer_data:28bcc558","title":"Vega 2 Plasma Energy Analyzer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vega_2_fluxgate_magnetometer_original_data_for_comet_halley_and_solar_wind:8020efa1","title":"Vega 2 Fluxgate Magnetometer Original Data for Comet Halley and Solar Wind","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Vega"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/vega2/index.shtml","scraped_at":"2026-02-02T22:13:05.725050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:voyager_2_uv_spectrometer_attempted_observations_of_d_shoemaker_levy_9_null_results:95a52610","title":"Voyager 2 UV Spectrometer Attempted Observations of D/Shoemaker-Levy 9 (Null Results)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Voyager"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vg2-j-uvs-0--sl9-null-results-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/voyager/index.shtml","scraped_at":"2026-02-02T22:13:06.046158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:hubble_space_telescope_wide_field_planetary_camera_2_images_of_d_shoemaker_levy_9_impact_and_aftermath:d10a8a1f","title":"Hubble Space Telescope Wide Field Planetary Camera 2 Images of D/Shoemaker-Levy 9 Impact and Aftermath","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["HST"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/hst-j-wfpc2-3-sl9-impact-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/hst/index.shtml","scraped_at":"2026-02-02T22:13:06.247191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:images_of_comet_9p_tempel_nbsp_1_from_1983:25545a6b","title":"Images of Comet 9P/Tempel 1 from 1983","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IRAS"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-images-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iras/index.shtml","scraped_at":"2026-02-02T22:13:06.456027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometry_of_comet_9p_tempel_nbsp_1_from_1983:32622bbb","title":"Photometry of Comet 9P/Tempel 1 from 1983","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IRAS"],"targets":["Comet","Comet Tempel 1"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-phot-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iras/index.shtml","scraped_at":"2026-02-02T22:13:06.456052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:long_wavelength_prime:40d56746","title":"Long-Wavelength Prime","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwp-3-edr-iuecdb-v1.0/catalog/lwp.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.731957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:long_wavelength_redundant:f9994f1c","title":"Long-Wavelength Redundant","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwr-3-edr-iuecdb-v1.0/catalog/lwr.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.731979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:short_wavelength_prime:7146b0db","title":"Short-Wavelength Prime","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-swp-3-edr-iuecdb-v1.0/catalog/swp.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.731991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:comet_database_lwp_spectrograph_observations_surveys:cb39378d","title":"Comet Database - LWP Spectrograph Observations - (Surveys)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwp-3-edr-iuecdb-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:comet_database_lwr_spectrograph_observations_surveys:4695861e","title":"Comet Database - LWR Spectrograph Observations - (Surveys)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwr-3-edr-iuecdb-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:comet_database_swp_spectrograph_observations_surveys:17e6634e","title":"Comet Database - SWP Spectrograph Observations - (Surveys)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-swp-3-edr-iuecdb-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:international_ultraviolet_explorer_long_wavelength_prime_spectra_of_d_shoemaker_levy_9:eeb72752","title":"International Ultraviolet Explorer Long Wavelength Prime Spectra of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-lwp-3-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:international_ultraviolet_explorer_short_wavelength_prime_spectra_of_d_shoemaker_levy_9:7751c935","title":"International Ultraviolet Explorer Short Wavelength Prime Spectra of D/Shoemaker-Levy 9","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["IUE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-swp-3-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/iue/index.shtml","scraped_at":"2026-02-02T22:13:06.732047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:large_angle_spectrometric_coronagraph_lasco:47323169","title":"Large Angle Spectrometric Coronagraph (LASCO)","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho:document-v1.1/overview/lasco.txt","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solar_wind_anisotropies_swan:0f8c9938","title":"Solar Wind ANisotropies (SWAN)","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho:document-v1.1/overview/swan.txt","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:soho_comet_images:3191fbca","title":"SOHO Comet Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SOHO"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-4-cometimages-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:soho_photometry_of_kreutz_family_comets:a9e2447b","title":"SOHO Photometry of Kreutz Family Comets","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SOHO"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-5-kreutzphotom-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:soho:document::v1.1","title":"SOHO Documentation Collection v1.1","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho:document-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056294","keywords":["urn:nasa:pds:soho:document::v1.1"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:soho:swan_derived::v4.0","title":"SOHO SWAN Derived Cometary Water Production Rates Collection v4.0","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/soho/index.shtml","scraped_at":"2026-02-02T22:13:07.056303","keywords":["urn:nasa:pds:soho:swan_derived::v4.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:spitzer:spitzer-spec-comet::1.0","title":"Spitzer Space Telescope Spectroscopy of Comets","description":null,"node":"sbn","pds_version":"PDS4","type":"collection","missions":["Spitzer"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer:spitzer-spec-comet-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/spitzer/index.shtml","scraped_at":"2026-02-02T22:13:07.294321","keywords":["urn:nasa:pds:spitzer:spitzer-spec-comet::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:energetic_particle_anisotropy_spectrometer:0d3231aa","title":"Energetic Particle Anisotropy Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/catalog/epas.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ion_composition_instrument:6dc53596","title":"Ion Composition Instrument","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/catalog/ici.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:vector_helium_magnetometer:2dcc30b5","title":"Vector Helium Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/catalog/mag.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:plasma_wave_spectrum_analyzer:4c5e3e4c","title":"Plasma Wave Spectrum Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/catalog/plawav.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_mapping_of_solar_wind_disturbances:b1aef50e","title":"Radio Mapping of Solar Wind Disturbances","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/catalog/radwav.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solar_wind_plasma:749989c5","title":"Solar Wind Plasma","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/catalog/swp.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ultralow_energy_charge_analyzer:bf119438","title":"Ultralow-energy charge analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/catalog/uleca.cat","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ice_energetic_particle_anisotropy_spectrometer:93a33f8a","title":"ICE Energetic Particle Anisotropy Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ice_ion_composition_instrument:750413b8","title":"ICE Ion Composition Instrument","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ice_magnetometer:ec0a24bc","title":"ICE Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ice_plasma_wave_experiment_electronic_field_measurement:9ea6acea","title":"ICE Plasma Wave Experiment - Electronic Field Measurement","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ice_plasma_wave_experiment_magnetic_field_measurement:7a555373","title":"ICE Plasma Wave Experiment - Magnetic Field Measurement","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-msp-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ice_radio_wave_detector:dad6e9d2","title":"ICE Radio Wave Detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ice_solar_wind_plasma_experiment:3d524472","title":"ICE Solar Wind Plasma Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ice_ultra_low_energy_charge_analyzer:a5ad7811","title":"ICE Ultra-Low Energy Charge Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["ICE/ISEE"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ice/index.shtml","scraped_at":"2026-02-02T22:13:07.657580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_hri_ir_c_ison_2012_s1_raw_spectra:31f06548","title":"EPOXI HRI-IR C/ISON (2012 S1) Raw Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Comet ISON Observing Campaign"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_hri_ir_c_ison_2012_s1_calibrated_spectra:1fa9bcb7","title":"EPOXI HRI-IR C/ISON (2012 S1) Calibrated Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Comet ISON Observing Campaign"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_mri_vis_c_ison_2012_s1_raw_images:6648690b","title":"EPOXI MRI-VIS C/ISON (2012 S1) Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Comet ISON Observing Campaign"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:epoxi_mri_vis_c_ison_2012_s1_calibrated_images:a40c7f86","title":"EPOXI MRI-VIS C/ISON (2012 S1) Calibrated Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["Comet ISON Observing Campaign"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-ison-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison::1.0","title":"Comet C/ISON (2012 S1) Ground-Based Observations Bundle","description":null,"node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Comet ISON Observing Campaign"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/cioc/index.shtml","scraped_at":"2026-02-02T22:13:07.859633","keywords":["urn:nasa:pds:gbo-c2012_s1_ison::1.0"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:visual_magnitude_estimate:0286209f","title":"Visual Magnitude Estimate","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:astrometric_observations:e20c737a","title":"Astrometric Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_filter_parameters:4cea1659","title":"Infrared Filter Parameters","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_photometry:9bf0e42a","title":"Infrared Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:large_scale_images:a2fc8ebb","title":"Large-Scale Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempts_at_large_scale_imaging_that_failed:5fc947ef","title":"Attempts at large-scale imaging that failed","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:near_nucleus_imaged:136ba92a","title":"Near-Nucleus Imaged","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometric_fluxes:4bb5f59a","title":"Photometric Fluxes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometric_magnitudes:aff5916b","title":"Photometric Magnitudes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:polarimetry:cd1522bc","title":"Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_science_continuum_measurements:c0babbfd","title":"Radio Science Continuum Measurements","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_radio_continuum_measurements_that_returned_no_data:0591e106","title":"Attempted Radio Continuum Measurements that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_oh_observations:f604516a","title":"Radio OH Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_radio_oh_observations_that_returned_no_data:a2d7213c","title":"Attempted radio OH observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-n-ndr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_radio_spectral_line_observations_that_returned_no_data:2ed9acb2","title":"Attempted radio spectral line observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:raw_2_d_spectra:16ae8176","title":"Raw 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:reduced_2_d_spectra:4f178d40","title":"Reduced 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:1_d_spectra:45146bb4","title":"1-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-crommelin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:drawings:13d9d3f7","title":"Drawings.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdraw-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:visual_magnitude_estimates:a5a08b40","title":"Visual Magnitude Estimates","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:analog_photography:fb131833","title":"Analog Photography.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amphot-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:astrometry:c1040628","title":"Astrometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_filter_parameters:e4ea98cb","title":"Infrared Filter Parameters","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_images:b185b01e","title":"Infrared Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_ir_imaging_that_returned_no_data:1dedf50b","title":"Attempted IR Imaging that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_photometry:b9ababec","title":"Infrared Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_polarimetry:f0151cc7","title":"Infrared Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-2-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_spectra:0b23d93c","title":"Infrared Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:large_scale_images:15019919","title":"Large-Scale Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempts_at_large_scale_imaging_that_returned_no_data:249dca45","title":"Attempts at large-scale imaging that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:near_nucleus_images:12d5f4f1","title":"Near-Nucleus Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometric_fluxes:f23fcee1","title":"Photometric Fluxes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometric_magnitudes:96dea91b","title":"Photometric Magnitudes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:polarimetry:51a0a6f5","title":"Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_radio_continuum_observations_that_returned_no_data:b6254566","title":"Attempted radio continuum observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_occultation_observations:dd92ac22","title":"Radio Occultation Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_oh_observations:289e55d8","title":"Radio OH Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_radio_spectral_line_observations_that_returned_no_data:f97ee94c","title":"Attempted radio spectral line observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:1_d_spectra:fc70e5f7","title":"1-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:raw_2_d_spectra:6ad8de90","title":"Raw 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:reduced_2_d_spectra:956ac1f2","title":"Reduced 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-gz-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:energetic_particle_anisotropy_spectrometer:93a33f8a","title":"Energetic Particle Anisotropy Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ion_composition_instrument:750413b8","title":"Ion Composition Instrument","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:magnetometer:ec0a24bc","title":"Magnetometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:plasma_wave_experiment_electronic_field_measurement:9ea6acea","title":"Plasma Wave Experiment - Electronic Field Measurement","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:plasma_wave_experiment_magnetic_field_measurement:7a555373","title":"Plasma Wave Experiment - Magnetic Field Measurement","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-msp-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_wave_detector:dad6e9d2","title":"Radio Wave Detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solar_wind_plasma_experiment:3d524472","title":"Solar Wind Plasma Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ultra_low_energy_charge_analyzer:a5ad7811","title":"Ultra-Low Energy Charge Analyzer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:drawings:334fcb8f","title":"Drawings.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdr-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:analog_photography:43287d06","title":"Analog Photography.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ampg-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:spectra:8b37191d","title":"Spectra.","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amsp-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:visual_magnitude_estimates:703a7eb2","title":"Visual Magnitude Estimates","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:astrometry:bd2495f8","title":"Astrometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:b0838ae4","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ir_filter_response_curves:8753a6a8","title":"IR Filter Response Curves","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:f36ae929","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ir_filter_parameter_tables:4066be08","title":"IR Filter Parameter Tables","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:2f535755","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_images:3da65d49","title":"Infrared Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:d7e0452a","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062949","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_photometry:20ebac46","title":"Infrared Photometry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:554d7ba5","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_photometry_additional_data:06479dda","title":"Infrared Photometry - Additional Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-irphot-2-rdr-halley-addenda-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_polarimetry:08ca4c15","title":"Infrared Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:ddd76426","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.062993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_spectra:192af9c9","title":"Infrared Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:0f3bd782","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_ir_spectral_observations_that_resulted_in_no_data:d7d3b31a","title":"Attempted IR Spectral Observations that resulted in no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:large_scale_images:0b076b12","title":"Large-Scale Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:39bf2e63","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_large_scale_imaging_that_returned_no_results:b5eb6aef","title":"Attempted large-scale imaging that returned no results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:eta_aquarids_radar_meteor_counts:f096b0c1","title":"Eta Aquarids - Radar Meteor Counts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-eta-aquar-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:eta_aquarids_visual_meteor_counts:d41e0931","title":"Eta Aquarids - Visual Meteor Counts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-eta-aquar-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:orionids_radar_meteor_counts:80815f74","title":"Orionids - Radar Meteor Counts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-orionid-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:orionids_visual_meteor_counts:0059f85a","title":"Orionids - Visual Meteor Counts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-orionid-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:international_halley_watch_near_nucleus_images_of_comet_halley_v2_0:f1883287","title":"International Halley Watch Near Nucleus Images of Comet Halley v2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometric_fluxes:772cbf85","title":"Photometric Fluxes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:85491733","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometric_magnitudes:24292d88","title":"Photometric Magnitudes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:07f98147","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:polarimetry:ba088d73","title":"Polarimetry","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:d573edda","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:polarimetry_stokes_parameters:2ee43ce1","title":"Polarimetry - Stokes Parameters","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:version_2_0:a5bdac1d","title":"Version 2.0","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v2.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_continuum_measurements:c703777f","title":"Radio Continuum Measurements","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_radio_continuum_measurements_that_produced_no_results:f47f72dd","title":"Attempted radio continuum measurements that produced no results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_occultation_observations:d9a0dda6","title":"Radio Occultation Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:oh_observations:2949452c","title":"OH Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:arecibo_radar_observations:a829b09a","title":"Arecibo Radar Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsrdr-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_spectral_line_observations:bbe4b71f","title":"Radio Spectral Line Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:attempted_radio_spectral_line_observations_that_returned_no_data:d759133f","title":"Attempted radio spectral line observations that returned no data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:u_v_observations:bbdb44c6","title":"U-V Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsuv-2-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:raw_2_d_spectra:82f8285d","title":"Raw 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:calibrate_2_d_spectra:f769a95b","title":"Calibrate 2-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-didr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:calibrated_1_d_spectra:5aefdfe7","title":"Calibrated 1-D Spectra","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_detector:24b6a7dc","title":"Dust Impact Detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_science_experiment:288163e1","title":"Radio Science Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:radio_science_experiment_additional_observations:4efffa66","title":"Radio Science Experiment - Additional Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-1-edr-halley-addenda-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:halley_multi_colour_camera_images:eed9d5f9","title":"Halley Multi-Colour Camera Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ion_mass_spectrometer_high_energy_range_observations:d8ea02b3","title":"Ion Mass Spectrometer, High Energy Range Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-hers-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:ion_mass_spectrometer_high_intensity_spectrometer_observations:dac06871","title":"Ion Mass Spectrometer, High Intensity Spectrometer Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:johnstone_3_dimensional_particle_analyzer_data_merged_with_magnetometer_data:2b01b277","title":"Johnstone 3-Dimensional Particle Analyzer Data Merged with Magnetometer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-4-ddr-halley-merge-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:magnetometer_data:d6682bd0","title":"Magnetometer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-halley-8sec-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photopolarimetry_from_the_optical_probe_experiment:e9f25631","title":"Photopolarimetry from the Optical Probe Experiment","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:particle_impact_analyzer_data:fdb87277","title":"Particle Impact Analyzer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solar_wind_experiment_data:9cd1219d","title":"Solar Wind Experiment Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/suisei-c-esp-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_particle_counter_and_mass_analyzer_results:49ec64b0","title":"Dust Particle Counter and Mass Analyzer Results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_spectrometer_raw_data:7d34a25e","title":"Infrared Spectrometer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_spectrometer_processed_data:eb2ddd05","title":"Infrared Spectrometer, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:fluxgate_magnetometer_comet_observations:00564234","title":"Fluxgate Magnetometer Comet Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet","Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:fluxgate_magnetometer_comet_and_solar_wind_data_in_its_original_form:8060844d","title":"Fluxgate Magnetometer Comet and Solar Wind Data, in its original form","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c_sw-mischa-3-rdr-original-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:plasma_energy_analyzer_observations:270aef79","title":"Plasma Energy Analyzer Observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_mass_analyzer_raw_data:e4a18fde","title":"Dust Impact Mass Analyzer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_mass_analyser_processed_data:9849b182","title":"Dust Impact Mass Analyser, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_plasma_detector_electrode_collector_data:b4a8ca5c","title":"Dust Impact Plasma Detector, Electrode Collector Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_plasma_detector_acoustic_sensor_data:8a37b9a1","title":"Dust Impact Plasma Detector, Acoustic Sensor Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:television_system_raw_images:10441ce7","title":"Television System, Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:television_system_processed_images:7a31ef62","title":"Television System, Processed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:fluxgate_magnetometer_comet_and_solar_wind_data_in_its_original_form:8020efa1","title":"Fluxgate Magnetometer Comet and Solar Wind Data, in its original form","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_particle_counter_and_mass_analyzer_results:9819ff1c","title":"Dust Particle Counter and Mass Analyzer Results","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:plasma_energy_analyzer_data:28bcc558","title":"Plasma Energy Analyzer Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_mass_analyzer_raw_data:ed74a2c3","title":"Dust Impact Mass Analyzer, Raw Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_mass_analyzer_processed_data:96e1990f","title":"Dust Impact Mass Analyzer, Processed Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_plasma_detector_electrode_collector_data:d9baaa2d","title":"Dust Impact Plasma Detector, Electrode Collector Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:dust_impact_plasma_detector_acoustic_sensor_data:b16d103b","title":"Dust Impact Plasma Detector, Acoustic Sensor Data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:television_system_raw_images:e542845e","title":"Television System, Raw Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:television_system_processed_images:fdd6520f","title":"Television System, Processed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-3-rdr-halley-processed-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:television_system_transformed_images:12344b41","title":"Television System, Transformed Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-5-rdr-halley-transform-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:halley_outburst_images:e5c782f1","title":"Halley Outburst Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-ct-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:halley_outburst_images:10f4095e","title":"Halley Outburst Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-eso-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:halley_outburst_images:3bb86a02","title":"Halley Outburst Images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["International Halley Watch"],"targets":["Comet Halley"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-uh-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/ihw/index.shtml","scraped_at":"2026-02-02T22:13:08.063581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:global_imaging_campaign:b4678aa7","title":"Global Imaging Campaign","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-j_c-hsccd-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photometry_of_io_and_europa_during_sl9_flashes:c221fd3d","title":"Photometry of Io and Europa During SL9 Flashes","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-j_sa-hsotp-2-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:eso_multi_mode_instrument_emmi:06ec7c98","title":"ESO Multi-Mode Instrument (EMMI)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-c-emmi-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_spectrometer:5370c5d7","title":"Infrared Spectrometer","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-j-irspec-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:superb_seeing_imager_susi:5cae7f22","title":"Superb Seeing Imager (SUSI)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-j-susi-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:images_of_the_fragments_prior_to_impact_and_of_the_jovian_rings_post_impact:43c7611c","title":"images of the fragments prior to impact and of the Jovian rings post-impact","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/irtf-j_c-nsfcam-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:images_of_the_impacts:edf908ef","title":"images of the impacts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:observations_of_standard_stars:fb442625","title":"observations of standard stars","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-stds-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:infrared_images_obtained_with_the_okayama_astrophysical_system_for_infrared_imaging_and_spectroscopy_oasis:2493e093","title":"infrared images obtained with the Okayama Astrophysical System for Infrared Imaging and Spectroscopy (OASIS)","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/oao-j-oasis-3-rdr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:images_of_jupiter_during_the_shoemaker_levy_9_fragment_impacts:d10a8a1f","title":"images of Jupiter during the Shoemaker-Levy 9 fragment impacts","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/hst-j-wfpc2-3-sl9-impact-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:long_wavelength_prime_detector:eeb72752","title":"Long-Wavelength Prime detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-lwp-3-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:short_wavelength_prime_detector:7751c935","title":"Short-Wavelength Prime detector","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-swp-3-edr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:near_infrared_mapping_spectrometer_data_tables:3ecd5e0d","title":"Near Infrared Mapping Spectrometer data tables","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:photopolarimeter_radiometer_time_series_data:302fb51d","title":"Photopolarimeter Radiometer time series data","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:solid_state_imaging_camera_raw_images:c4f5b582","title":"Solid State Imaging camera (raw) images","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:reduced:7cd72ac6","title":"Reduced","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-3-rdr-sl9-g-fragment-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"sbn:voyager_2_attempted_ultraviolet_spectrometer_observations:95a52610","title":"Voyager 2 attempted Ultraviolet Spectrometer observations","description":null,"node":"sbn","pds_version":"PDS3","type":"volume","missions":["SL9 Jupiter Impact"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vg2-j-uvs-0--sl9-null-results-v1.0/dataset.shtml","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/data_sb/missions/sl9/index.shtml","scraped_at":"2026-02-02T22:13:08.345750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet::4.0","title":"Comet Data Compilations from Published Sources","description":"The collections in this archive contain results that have been reported in the literature,\n or in some cases made available by private communication, for various comet properties.\n Individual collections focus on one or several closely related properties or targets of\n high interest.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:13.599287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:halebopp::1.0","title":"Hale-Bopp Visual Lightcurve","description":"This dataset contains visual magnitudes of comet C/1995 O1 (Hale-Bopp) that were\nobtained from the International Comet Quarterly and processed to provide a secular\nlightcurve from -7 au (pre-perihelion) to +8 au (post-perihelion). The original\napparent magnitudes from 17 observers were corrected for geocentric distance and\nphase angle, and then combined in a systematic way that yielded a self-consistent\nconsensus fit. In analyzing visual data from multiple observers, the questions\ninevitably arise of which data to reject, and under what justification, and whether\ncombining data from observers, each with their own systematic errors, leads to a\nbiased result. Without instrumental calibration, there is no certain answer to these\nquestions, and such calibration is not available for the observations discussed here.\nWe estimated the shifts with a self-consistent statistical approach, leading to a\nsharper light curve and improving the precision of the measured slopes. The dataset\nincludes the original apparent magnitudes, those corrected for geocentric distance\nand phase angle, and the final shifted and weighted values. The final secular\nlightcurve is the best produced to date for comet Hale-Bopp.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/1995 O1 (HALE-BOPP)"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1995-07-24","stop_date":"1999-09-23","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:14.077446","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:lightcurves::1.0","title":"Survey of Comet Lightcurves (PDS4 Format)","description":"This is a dataset that compiles reported observations of brightness\n\t\t\t\tchanges in comets from various papers to produce lightcurves.\n\t\t\t\tSpecifically, the data were based on references in Samarasinha et al.\n\t\t\t\t(2004), i.e. they are those lightcurves which were used to find the\n\t\t\t\trotational properties of comet nuclei (periods, rotation vector\n\t\t\t\tcoordinates, spin mode, etc.) reported by Samarasinha et al. (2004).\n\t\t\t\t\n\t\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\t\tEAR-C-COMPIL-5-LIGHTCURVES-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1957-07-28","stop_date":"1957-07-28","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:14.403688","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:nuc_properties::1.0","title":"Properties of Comet Nuclei (PDS4 Format)","description":"This collection contains size, shape, albedo and color data for\n\t\t\t\tvarious comets collected from the literature.\n\t\t\t\t\n\t\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\t\tEAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0, Properties of Comet Nuclei.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2010-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:14.805140","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:nuc_rotation::1.0","title":"Rotation of Comet Nuclei: Table 1 (PDS4 Format)","description":"This collection presents Table 1 of Samarasinha, et al. (2004):\n\t\t\t\t'Information on spin states of specific comets', as published\n\t\t\t\tin 'Comets II' (Festou, Keller and Weaver, eds.).\n\t\t\t\t\n\t\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\t\tand EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0, Rotation of Comet\n\t\t\t\tNuclei: Table 1.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:15.207340","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:phys_char::1.0","title":"Physical Charecteristics of Comets (PDS4 Format)","description":"This dataset is a compilation of observational measurements on comet\n morphology and magnitude covering just over a thousand apparitions of\n various comets from -466 to 1975.\n\t\t\t\t\n\t\t\t\tThese data were migrated from the PDS3 dataset EAR-C-5-DDR-PCC-V1.0.\n\t\t\t\tFor migration, the data files were left untouched and the information\n\t\t\t\tin the PDS3 labels was translated into PDS4 format and augmented with\n\t\t\t\tadditional metadata; the reference list file was converted to a\n\t\t\t\tdocument product; and the PDS3 data set catalog file was edited and\n\t\t\t\tupdated to create the description document.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:15.682162","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:polarimetry::1.0","title":"Compilation of Comet Polarimetry from Published and Unpublished Sources","description":"This collection presents comet polarimetry results collected and\n tabulated from both published literature and unpublished sources.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1881-06-29","stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:16.018803","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:unid-emis::1.0","title":"Catalog of Unidentified Cometary Emission Lines","description":"This data set contains tables of unidentified spectral emission lines and\n other ancillary information in a variety of comet observations. All these\n originally unidentified lines have been taken from the reference papers\n without adding or removing lines or using selection criteria.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1943-02-24","stop_date":"2004-04-24","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:16.418836","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart::1.0","title":"DART Spacecraft Archive Bundle","description":"The DART Spacecraft Bundle contains raw and calibrated data products\n taken from the DRACO imager on board the DART spacecraft.\n The bundle also includes documentation that describes the data products for\n each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Draco","DRACO"],"instrument_hosts":["DART","Dart"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/bundle_dart_spacecraft.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:18.311396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_dracocal::1.0","title":"Calibrated Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This data collection contains calibrated images from the Didymos \n Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown \n aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART) mission. \n These images have been calibrated to either radiance or reflectance, depending on \n the mission phase, and have been put into a simple 2D fits format. Ancillary files \n used in the calibration process are included in the data set as either 2D fits \n format or ASCII fixed-width table format. The DART mission was a planetary defense mission\n designed to test and measure the deflection caused by a kinetic impactor \n (the spacecraft) on the orbit of Dimorphos asteroid around its primary, (65803) Didymos.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":[],"start_date":"2021-01-01","stop_date":"2022-04-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/data_dracocal/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/data_dracocal/collection_data_dracocal.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:18.623945","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_dracoraw::1.0","title":"Raw Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This data collection contains the raw images returned by the Didymos\n Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown\n aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART)\n mission. These images have been put into a simple 2D FITS format ready for calibration\n and analysis. The DART mission was a planetary defense mission designed to test and\n measure the deflection caused by a kinetic impactor (the spacecraft) on the orbit of\n Dimorphos asteroid around its primary, (65803) Didymos.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":[],"start_date":"2021-12-02","stop_date":"2022-04-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/data_dracoraw/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart-v1.0/data_dracoraw/collection_data_dracoraw.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:19.035763","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel:data_derived_didymos_model_v003::1.0","title":"Derived data products for DART shapemodel: didymos_model_v003","description":"This data collection contains a set of digital\n terrain maps and ancillary information (slope, magnitude of gravity, etc) for\n didymos_model_v003. It is the final model of Didymos produced by the DART project using\n both LICIACube and DART images. It has an accuracy uncertainty of ~14 m in x, y, and z,\n with ~ 3.3% volume uncertainty. See SIS for details on ancillary information\n provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_didymos_model_v003/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_didymos_model_v003/collection_data_derived_didymos_model_v003.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:27.898955","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v003::1.0","title":"Derived data products for DART shapemodel: dimorphos_model_v003","description":"This data collection contains a set of digital terrain maps and\n ancillary information (slope, magnitude of gravity, etc) for dimorphos_model_v003.\n To learn about the model including its quality, see 'Daly et al., 2023.\n \"Successful Kinetic Impact into an Asteroid for Planetary Defense.\" Nature 1–3.\n https://doi.org/10.1038/s41586-023-05810-5.\" See SIS for details on ancillary\n information provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["Dimorphos","(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_dimorphos_model_v003/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_dimorphos_model_v003/collection_data_derived_dimorphos_model_v003.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:28.280316","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v004::1.0","title":"Derived data products for DART shapemodel: dimorphos_model_v004","description":"This data collection contains a set of digital terrain maps and ancillary\n information (slope, magnitude of gravity, etc) for dimorphos_model_v004. This is the\n final pre-impact model of the asteroid Dimorphos produced by the DART project. It has an\n accuracy uncertainty of 1 m in x, 4 m in y, and 1 m in z, with ~ 5% volume uncertainty\n and shows significant improvement relative to the earlier dimorphos_model_v003. See SIS\n for details on ancillary information provided, including references on how the ancillary\n information is calculated.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["Dimorphos","(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_dimorphos_model_v004/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/data_derived_dimorphos_model_v004/collection_data_derived_dimorphos_model_v004.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:28.752496","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs::1.0","title":"DART Telescopic Observation Archive","description":"The DART Telescopic Observation Bundle contains raw, calibrated,\n and derived data products taken from several ground observations in support\n of the DART mission. The bundle also includes documentation organized\n by ground observatory that describes the observatory data collections.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:29.885378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtcal::1.0","title":"DART Lowell Discovery Telescope (LDT) Calibrated Data Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration\n images with the Lowell Discovery Telescope (LDT) through a VR filter. These \n images were taken in order to determine the orbit period of Dimorphos, the \n satellite of Didymos. This collection consists of the Lowell calibrated images,\n the supporting calibration images: master bias frame images, and master flat field images,\n and the reference star PNGs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:30.382877","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtddp::1.0","title":"DART Lowell Discovery Telescope (LDT) Derived Data Product Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration\n images with the Lowell Discovery Telescope (LDT) through a VR filter. These \n images were taken in order to determine the orbit period of Dimorphos, the \n satellite of Didymos. This collection consists of the photometry summary tables,\n which are a PDS4 derived product.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:30.691596","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtraw::1.0","title":"DART Lowell Discovery Telescope (LDT) Raw Data Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration\n images with the Lowell Discovery Telescope (LDT) through a VR filter. These \n images were taken in order to determine the orbit period of Dimorphos, the \n satellite of Didymos. This collection consists of the Lowell Raw Images.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:31.101088","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:epoxi_mri::1.0","title":"EPOXI MRI Observations Bundle","description":"This bundle contains observations collected with the MRI instrument on the Deep Impact Flyby Spacecraft during the EPOXI mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Epoxi","EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:44.528530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbl-classe::1.0","title":"Laboratory Experiments at the Center for Laboratory Astrophysics and Space Science Experiments (CLASSE)","description":"This bundle contains collections of data from instrument suites at the\n Southwest Research Institute (SwRI) Center for Laboratory Astrophysics and Space\n Science Experiments (CLASSE).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":["CLASSE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:45.528629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbl-classe:charon_exosphere::1.0","title":"Center for Laboratory Astrophysics and Space Science Experiments (CLASSE) Charon\n Exospheric Simulation Data","description":"This dataset includes exospheric simulations and laboratory data relevant to the\n Charon red polar region. The dataset provides predictions for methane accretion\n relative to Lyman-Alpha flux at Charon's winter polar region and the photolytic\n production of higher order hydrocarbons. We also provide infrared spectra of\n photolyzed films under conditions found at Charon's polar (high phi) and\n mid-latitude (low phi) regions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Charon Laboratory Analog"],"instruments":["Mordor (Ultra-high Vacuum) UHV System"],"instrument_hosts":["CLASSE"],"data_types":[],"start_date":"2022-02-15","stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/charon_exosphere/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/charon_exosphere/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:45.874230","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:feb2013_hfosc_fosc::1.0","title":"Comet ISON February 2013 HFOSC and FOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken in February 2013.\n\t\t\tImaging data were acquired on February 19, 21 and 22 in R and I\n\t\t\tBessel bands using the Himalayan Faint Object Spectrograph and Camera\n\t\t\t(HFOSC) mounted on 2-m Himalayan Chandra Telescope (HCT), Indian\n\t\t\tAstrophysical Observatory (IAO), Hanle, Leh, of the Indian Institute\n\t\t\tof Astrophysics (IIA). Spectroscopic data were taken on February 09\n\t\t\tusing the Faint Object Spectrograph and Camera (FOSC) mounted on the\n\t\t\t40-inch telescope (T40) of the Wise Observatory of the Tel-Aviv\n\t\t\tUniversity, Israel. Spectroscopic data provides coverage from 380 to\n\t\t\t730 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)","Faint Object Spectrographic Camera"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:46.882505","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:hfosc_solar-analog::1.0","title":"Comet ISON 2014 Solar Analog Spectroscopy Collection","description":"This dataset contains raw, processed and derived spectroscopic data of the solar analog star HD195034 taken on May 31, 2014, using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectroscopic data provides coverage from 380 to 830 nm. The manual of the HFOSC instrument is included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["HD 195034"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:47.282037","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:jan2013_hfosc::1.0","title":"Comet ISON January 2013 HFOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken on January 22,\n\t\t\t2013, using the Himalayan Faint Object Spectrograph and Camera\n\t\t\t(HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian\n\t\t\tAstrophysical Observatory (IAO) of the Indian Institute of\n\t\t\tAstrophysics (IIA), located at 4500 m above sea level, Hanle, Leh,\n\t\t\tLadakh. Photometric data were taken in V, R and I Bessel bands, and\n\t\t\timages were aligned. Spectroscopic data provides coverage from 380\n\t\t\tto 830 nm. The manual of the HFOSC instrument is included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:47.683693","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:may2013_hfosc_omr::1.0","title":"Comet ISON May 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken in May 2013.\n\t\t\tPhotometric data was obtained on May 01 and 04 in V and R Bessel\n\t\t\tbands using the Himalayan Faint Object Spectrograph and Camera\n\t\t\t(HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical\n\t\t\tObservatory (IAO) of the Indian Institute of Astrophysics (IIA),\n\t\t\tlocated at 4500 m above sea level, Hanle, Leh, Ladakh. Spectra were\n\t\t\ttaken using the HFOSC instrument on May 01 and 15; and on May 02\n\t\t\tusing the medium-resolution spectrograph from Optomechanics Research\n\t\t\t(OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu\n\t\t\tBappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu,\n\t\t\tIndia. Spectroscopic data provides coverage from 380 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)","OMR Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:48.151731","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:nov2013_hfosc_omr::1.0","title":"Comet ISON November 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON), taken in November\n\t\t\t2013. Two images of the comet were obtained on November 10 in R\n\t\t\tBessel band using the Himalayan Faint Object Spectrograph and Camera\n\t\t\t(HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical\n\t\t\tObservatory (IAO) of the Indian Institute of Astrophysics (IIA),\n\t\t\tlocated at 4500 m above sea level, Hanle, Leh, Ladakh. Comet spectra\n\t\t\twere taken on five dates: November 08, 09, 11, 12 and 13, using the\n\t\t\tmedium-resolution spectrograph from Optomechanics Research (OMR)\n\t\t\tmounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu\n\t\t\tObservatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India.\n\t\t\tSpectroscopic data provides coverage from 400 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)","OMR Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:48.481007","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:oct2013_hfosc_omr::1.0","title":"Comet ISON October 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken in October 2013.\n\t\t\tPhotometric data was obtained on October 01 in B and R Bessel bands\n\t\t\tusing the Himalayan Faint Object Spectrograph and Camera (HFOSC)\n\t\t\tmounted on the 2.0-m HCT of the Indian Astrophysical Observatory\n\t\t\t(IAO) of the Indian Institute of Astrophysics (IIA), located at\n\t\t\t4500 m above sea level, Hanle, Leh, Ladakh. Spectra were taken on\n\t\t\tOctober 01 using the HFOSC instrument; and on October 17 using the\n\t\t\tmedium-resolution spectrograph from Optomechanics Research (OMR)\n\t\t\tmounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu\n\t\t\tObservatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India.\n\t\t\tSpectroscopic data provides coverage from 380 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)","OMR Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:48.889511","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:sept2013_hfosc::1.0","title":"Comet ISON September 2013 HFOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and\n\t\t\tspectroscopic data of comet C/2012 S1 (ISON) taken in September 2013\n\t\t\tusing the Himalayan Faint Object Spectrograph and Camera (HFOSC)\n\t\t\tmounted on the 2.0-m HCT of the Indian Astrophysical Observatory\n\t\t\t(IAO) of the Indian Institute of Astrophysics (IIA), located at 4500\n\t\t\tm above sea level, Hanle, Leh, Ladakh, India. Photometric data was\n\t\t\tobtained on September 08 in I Bessel band. Spectroscopic data was\n\t\t\tobtained on September 29 and provides coverage from 380 to 730 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C2012 S1 Ison","C/ISON (2012 S1)"],"instruments":["Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:49.288038","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-ctio::1.0","title":"Groundbased Observations at Cerro Tololo Inter-American Observatory","description":"This bundle collects data taken at Cerro Tololo Inter-American Observatory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["19P Borrelly","19P/1904 Y2 (Borrelly 1)"],"instruments":["Cfccd","Cassegrain Focus Direct Image CCD Camera"],"instrument_hosts":[],"data_types":[],"start_date":"2000-07-28","stop_date":"2000-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:51.114792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-irtf::2.0","title":"Groundbased Observations at the NASA Infrared Telescope Facility (IRTF)","description":"This bundle collects data taken at IRTF and\n\t\t\tassociated document files.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":["9P Tempel 1","9P/1867 G1 (Tempel 1)"],"instruments":["Irtf3M0","Mirsi","SpeX","Mid-Infrared Spectrometer and Imager"],"instrument_hosts":[],"data_types":[],"start_date":"2005-06-24","stop_date":"2005-07-18","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:52.111489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno::4.0","title":"Groundbased Observations at Kitt Peak National Observatory (KPNO)","description":"This bundle collects data taken at Kitt Peak National\n\t\t\tObservatory and associated document files.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":["C1996 B2 Hyakutake","9P Tempel 1","19P Borrelly","C/1996 B2 (Hyakutake)","9P/1867 G1 (Tempel 1)","19P/1904 Y2 (Borrelly 1)"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1996-03-26","stop_date":"2005-07-09","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:53.720605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:hyakutake_spectra::1.0","title":"Spectra of C/1996 B2 (Hyakutake) for Multiple Offsets from Photocenter","description":"High resolution spectra of comet Hyakutake obtained at Kitt \n\t\t\t\tPeak National Observatory on the day of closest approach, \n\t\t\t\t26 March 1996, with the echelle spectrograph on the 4m Mayall \n\t\t\t\tTelescope. There are spectra for offsets of 0, 2, 7, and 10 \n\t\t\t\tarcsec sunward from the photocenter. The wavelength ranges \n\t\t\t\tfrom 3040-4500 Angstroms.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":["C/1996 B2 (Hyakutake)"],"instruments":["Echelle Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":"1996-03-26","stop_date":"1996-03-26","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:54.120156","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald::3.0","title":"Groundbased Observations at McDonald Observatory","description":"This bundle collects data taken at McDonald Observatory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None","No Specific Investigation"],"targets":["9P Tempel 1","19P Borrelly","Multiple Comets","9P/1867 G1 (Tempel 1)","19P/1904 Y2 (Borrelly 1)"],"instruments":["Image Dissector Scanner","Large Cassegrain Spectrograph","Imaging Grism Instrument"],"instrument_hosts":[],"data_types":[],"start_date":"1981-01-03","stop_date":"1995-10-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:57.330030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:19p_col_density::1.0","title":"McDonald Observatory Column Density Observations of 19P/Borrelly (PDS4 Format)","description":"This data set includes the raw column densities of several gas\n\t\t\tspecies observed in the spectra of comet Borrelly, as a function\n\t\t\tof position in the coma. All measurements were made with the\n\t\t\t2.7-m Harlan J Smith Telescope at McDonald Observatory. During\n\t\t\tthe 1981 and 1987-1988 apparitions, the data were obtained with\n\t\t\tthe Intensified Dissector Scanner (IDS), and during the 1994\n\t\t\tapparition, the data were obtained with the Large Cassegrain\n\t\t\tSpectrograph (LCS).\n\t\t\t\n\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\tEAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["19P Borrelly","19P/1904 Y2 (Borrelly 1)"],"instruments":["Image Dissector Scanner","Large Cassegrain Spectrograph"],"instrument_hosts":[],"data_types":[],"start_date":"1981-01-03","stop_date":"1994-12-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:57.736755","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:devico_atlas::1.0","title":"High Spectral Resolution Atlas of Comet 122P/deVico (PDS4 Format)","description":"This collection presents an atlas of 12,219 identified and 4,055\n\t\t\tunidentified spectral lines from high resolution spectra of comet\n\t\t\t122P/deVico. The spectra were obtained at the McDonald\n\t\t\tObservatory using the 2D Coude cross-dispersed echelle spectrograph\n\t\t\t(CS2) at the Coude f/32.5 focus of the 2.7m Harlan J. Smith telescope.\n\t\t\t\n\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\tEAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["122P/1846 D1 (de Vico 1)"],"instruments":["Image Dissector Scanner","Large Cassegrain Spectrograph","Imaging Grism Instrument"],"instrument_hosts":[],"data_types":[],"start_date":"1995-10-03","stop_date":"1995-10-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:58.165252","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:faint_comet_survey::1.0","title":"McDonald Observatory Faint Comet Spectro-Photometric Survey (PDS4 Format)","description":"This study presents spectral data from 152 observations\n\t\t\tof 17 comets obtained using an Intensified Dissector Scanner\n\t\t\tspectrograph at the McDonald Observatory.\n\t\t\t\n\t\t\tA full description of these data and the reduction process, along\n\t\t\twith Haser model production rates can be found in Cochran et al. (1992).\n\t\t\t\n\t\t\tThese data were migrated from the PDS3 dataset\n\t\t\tEAR-C-MCDIDS-3-RDR-MCDNLD-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":["Image Dissector Scanner"],"instrument_hosts":[],"data_types":[],"start_date":"1981-08-25","stop_date":"1989-05-08","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:13:58.635160","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:liciacube::1.0","title":"Light Italian Cubesat for Imaging of Asteroids (LICIACube) Spacecraft Archive Bundle","description":"Light Italian Cubesat for Imaging of Asteroids (LICIACube) Spacecraft \n Bundle. This bundle contains all the operational products generated by both the\n Liciacube Explorer Imaging for Asteroid (LEIA) and Liciacube Unit Key Explorer (LUKE) instruments\n together with Radio Science. The bundle also includes documentation that describes the \n data products for each data collection. The LICIACube Science Operations Center located at the Space Science\n Data Center of the Italians Space Agency (SSDC-ASI) produced these data products in support of the DART mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["Dimorphos","(65803) Didymos I (Dimorphos)"],"instruments":["Leia","Luke","LEIA","LUKE"],"instrument_hosts":["LICIACube","Liciacube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-liciacube-v1.0/bundle_liciacube_spacecraft.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:00.890245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.leisa::1.0","title":"Lucy L'Ralph LEISA Bundle","description":"This bundle collects all the operational data products produced by the Lucy Ralph instrument's Linear Etalon Imaging Spectral Array.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Leisa","Lucy Ralph Linear Etalon Imaging Spectral Array (LEISA)"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"2020-02-04","stop_date":"2024-05-29","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:04.749294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.leisa:calibration::1.0","title":"Lucy L'Ralph LEISA Calibration Collection","description":"This collection contains products used in the calibration of data from Lucy's L'Ralph LEISA instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":["Lucy Ralph Linear Etalon Imaging Spectral Array (LEISA)"],"instrument_hosts":["Lucy Spacecraft"],"data_types":[],"start_date":"2020-02-04","stop_date":"2024-05-29","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa-v1.0/calibration/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.leisa-v1.0/calibration/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:05.141261","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri::1.0","title":"Lucy Mission L'LORRI Instrument Bundle","description":"This bundle collects all the operational data products produced by the Lucy LOng Range Reconnaissance Imager.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy","Lucy Mission"],"targets":["65803 Didymos","(65803) Didymos"],"instruments":["Llorri","Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy","Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:10.366679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:calibration::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Calibration Data","description":"Calibration data for the Lucy LOng Range Reconnaissance Imager\n (L'LORRI) data archive. The calibrations include bias, flat\n field, and time corrections.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy","Lucy Mission"],"targets":["65803 Didymos","(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/calibration/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/calibration/collection_calibration_v1.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:10.779982","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Partially Processed Data for the Didymos Observation Data\n Archive","description":"This data collection contains partially processed images for the\n Lucy LOng Range Reconnaissance Imager (L'LORRI) Didymos/Double\n Asteroid Redirection Test (DART) data archive. The Lucy team\n found that the Lucy spacecraft and the L'LORRI instrument would\n be able to image the DART impact experiment on the Didymos\n system. The Lucy spacecraft observed the DART mission impact on\n 2022 September 26 with the L'LORRI instrument for about 36 hours\n surrounding the time of impact, resulting in 1549 observational\n products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy","Lucy Mission"],"targets":["65803 Didymos","(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/data_didymos_partially_processed/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/data_didymos_partially_processed/collection_data_didymos_partially_processed_v1.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:11.271353","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_didymos_raw::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Raw Data for the Didymos Observation Data Archive","description":"This data collection contains raw images for the Lucy LOng Range\n Reconnaissance Imager (L'LORRI) Didymos/Double Asteroid\n Redirection Test (DART) data archive. The Lucy team found that\n the Lucy spacecraft and the L'LORRI instrument would be able to\n image the DART impact experiment on the Didymos system. The Lucy\n spacecraft observed the DART mission impact on 2022 September 26\n with the L'LORRI instrument for about 36 hours surrounding the\n time of impact, resulting in 1549 observational products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy","Lucy Mission"],"targets":["65803 Didymos","(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/data_didymos_raw/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/data_didymos_raw/collection_data_didymos_raw_v1.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:11.579488","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ltes::1.0","title":"Lucy L'TES Bundle","description":"This bundle collects all the operational data products produced by the Lucy Thermal Emission Spectrometer.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Ltes","Lucy Thermal Emission Spectrometer (L'TES)"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"2023-10-29","stop_date":"2023-11-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ltes-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:20.431276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mission::1.0","title":"Lucy Mission Bundle","description":"This bundle collects products relevant to the Lucy mission that are not specific to any given instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":[],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mission-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mission-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:26.287350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mvic::1.0","title":"Lucy L'Ralph MVIC Bundle","description":"This bundle collects all the operational data products produced by the Lucy Ralph instrument's Multispectral Visible Imaging Camera.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Mvic","Lucy Ralph Multispectral Visible Imaging Camera (MVIC)"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"2023-11-01","stop_date":"2023-11-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:27.520630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.mvic:calibration::1.0","title":"Lucy L'Ralph MVIC Calibration Collection","description":"This collection contains products used in the calibration of data from Lucy's L'Ralph MVIC instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy"],"targets":[],"instruments":["Lucy Ralph Multispectral Visible Imaging Camera (MVIC)"],"instrument_hosts":["Lucy Spacecraft"],"data_types":[],"start_date":"2023-11-01","stop_date":"2023-11-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic-v1.0/calibration/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.mvic-v1.0/calibration/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:27.897687","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.rss::1.0","title":"Lucy Radio Science Bundle","description":"This bundle collects products relating to and produced by the Radio Science Subsystem on the Lucy spacecraft.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Rss","Lucy Radio Science"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.rss-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:33.108036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.ttcam::1.0","title":"Lucy TTCam Bundle","description":"This bundle collects all the operational data products produced by the Lucy Terminal Tracking Camera(s).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy"],"targets":[],"instruments":["Ttcam","Lucy Terminal Tracking Cameras (TTCam)"],"instrument_hosts":["Lucy Spacecraft","Lucy"],"data_types":[],"start_date":"1970-01-01","stop_date":"2023-11-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-lucy.ttcam-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:40.627401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived::1.0","title":"New Horizons Derived Data Bundle","description":"This bundle contains collections of products derived from\n\t\tarchival New Horizons data that are separate from deliveries by the New\n\t\tHorizons team.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kem1","New Horizons Kuiper Belt Extended Mission (kem1)"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:14:47.447904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ro_derived::1.0","title":"Rosetta Derived Data Bundle","description":"This bundle contains collections of products derived from\n\t\tarchival Rosetta data that are separate from deliveries by the Rosetta team.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["International Rosetta Mission","INTERNATIONAL ROSETTA MISSION"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:15:07.493243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:soho::1.0","title":"Comet Data from the Solar and Heliospheric Observatory (SOHO)","description":"This archive bundle contains collections of comet observations and derived results \n from the SOHO data archives, with related documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Solar And Heliospheric Observatory","SOHO"],"targets":[],"instruments":[],"instrument_hosts":["Soho"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:15:08.499868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:soho:swan_derived::1.0","title":"SOHO SWAN Derived Cometary Water Production Rates Collection","description":"This data collection contains derived water production\n\t\trates for numerous comets observed by the SOHO SWAN\n\t\tinstrument from 1996 to 2012. Multiple measurements\n\t\twere made for each comet through a single perihelion\n\t\tpassage and some comets were observed over multiple\n\t\tepochs. The production rates were derived by modeling\n\t\tthe observed distribution of atomic hydrogen in the\n\t\tcomae of the comets.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Soho","SOHO"],"targets":["Multiple Comets"],"instruments":["SWAN"],"instrument_hosts":["Soho"],"data_types":[],"start_date":"1996-01-22","stop_date":"2013-11-24","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho-v1.0/swan_derived/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-soho-v1.0/swan_derived/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:15:08.942454","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:spitzer::1.0","title":"Data from the Spitzer Space Telescope","description":"This archive bundle contains collections of observations and derived results \n from the Spitzer Heritage Archive, with related documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Spitzer","Spitzer Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":["Spitzer"],"data_types":[],"start_date":"2003-11-23","stop_date":"2009-04-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-02T22:15:12.919977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"BRRISON-CAL-BIRC-2-GROUND-CAL-V1.0","title":"COMET NUCLEI PROPERTIES DELIVERY VOLUME","description":"This volume contains the data for the Balloon Rapid Response for Comet ISON (BRRISON) BIRC instrument.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:00.269760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CON-CAL-ALL-6-DOC-SET-V1.0","title":"CONTOUR MISSION ARCHIVE - DOCUMENTATION","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:01.283093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CON-CAL-CFI-1-EDR-GROUND-OCF-V1.0","title":"CONTOUR MISSION ARCHIVE - CFI DATA","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in their entirety the original volumes CON_1001-CON_1016, submitted for safing after mission end.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-cfi-1-edr-ground-ocf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:02.276700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{\"CON-CAL-CRISPIMAG-1-EDR-GROUND-OCF-V1.0\"}","title":"CONTOUR MISSION ARCHIVE","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in the entirety the original volumes CON_2001-CON_2009, submitted for safing after mission end.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispimag-1-edr-ground-ocf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:03.285912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CON-CAL-CRISPSPEC-1-EDR-GROUND-OCF-V1.0","title":"CONTOUR MISSION ARCHIVE","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispspec-1-edr-ground-ocf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:04.287431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CON-CAL-TLM-1-EDR-GROUND-GSE-V1.0","title":"CONTOUR MISSION ARCHIVE","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in their entirety the original volumes CON_4001-CON_4022, submitted for safing after the mission end.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-tlm-1-edr-ground-gse-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:05.288076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ITS-6-DOC-SET-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains documentation for the Deep Impact Mission archive. It specifically includes documentation for the raw and reduced cruise and 9P/Tempel 1 encounter data sets (for science and navigation) as well as the laboratory thermal-vacuum data sets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:06.334104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ITS-6-DOC-SET-V2.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., M.F. A'Hearn, D. Deming, K.P. Klaasen, D. Wellnitz, B. Carcich, and T. Hewagama, DEEP IMPACT/EPOXI DOCUMENTATION SET V2.0, DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V2.0, NASA Planetary Data System, 2009.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:07.344418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ITS-6-DOC-SET-V3.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., M.F. A'Hearn, D. Deming, K.P. Klaasen, B. Carcich, D. Wellnitz, and T. Hewagama, DEEP IMPACT/EPOXI DOCUMENTATION SET V3.0, DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V3.0, NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:08.374887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V4.0","title":"DEEP IMPACT/EPOXI DOCUMENT COLLECTION V4.0","description":"Deep Impact prime mission and the EPOXI mission. It includes revisions to documentation relating to data from Deep Impact and EPOXI mission that were recalibrated and archived from mid-2012 through early 2014: Calibrated HRII EPOXI/DIXI Hartley 2 V2.0 and V3.0, Calibrated HRII/HRIV/MRI EPOXI/EPOCh Earth V2.0, Calibrated HRIV/MRI EPOXI/EPOCh Mars V2.0, Calibrated HRII EPOXI/EPOCh Mars V1.0 and Calibrated HRII/HRIV/MRI/ITS Deep Impact Tempel 1 V3.0. It also includes documentation for datasets that are new to the EPOXI archive as of early 2014: Raw and Calibrated HRII/HRIV/MRI Comet Garradd V1.0, Raw and Calibrated HRII/MRI Comet ISON V1.0, Calibrated HRII Lunar Spectra V1.0, and EPOXI Instrument Thermal Telem V3.0 (for entire EPOXI mission).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:09.384103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI-C-HRIV/ITS/MRI-5-MOVIE-COLL-V1.0","title":"DEEP IMPACT MOVIE COLLECTION","description":"This volume contains a collection of movies of comet 9P/Tempel 1 created from observations made by instrument aboard the Deep Impact flyby and impactor spacecraft.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hriv_its_mri-5-movie-coll-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:10.392354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-2-9P-ENCOUNTER-V1.0","title":"DEEP IMPACT ENCOUNTER RAW HRII SPECTRAL IMAGES","description":"This volume contains raw 9P/Tempel 1 spectra and science calibrations acquired by the Deep Impact High Resolution Instrument's Infrared Spectrometer (HRII) during the encounter phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:11.305105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-2-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - HRII RAW SPECTRA","description":"This dataset contains raw, 1.05- to 4.8-micron spectral images of comet C/Garradd (2009 P1) acquired by the High Resolution Infrared Spectrometer on 26 March and 02-03 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:12.306727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-2-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRII RAW SPECTRA","description":"This dataset contains raw, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer (HRII) from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:13.308825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-2-EPOXI-ISON-V1.0","title":"EPOXI C/ISON (2012 S1) - HRII RAW SPECTRA","description":"This dataset contains raw, 1.05- to 4.8-micron spectral images of comet C/ISON (2012 S1) acquired by the High Resolution Infrared Spectrometer on 16-17 February 2013 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:14.314883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"4-9P-ENCOUNTER-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S. A., B. Carcich, T. McCarthy, M. Desnoyer, and K.P. Klaasen, DEEP IMPACT 9P/TEMPEL ENCOUNTER - REDUCED HRII SPECTRA V1.0, DIF-C-HRII-3/4-9P-ENCOUNTER-V1.0, NASA Planetary Data System, 2005.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:15.365925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"4-9P-ENCOUNTER-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains version 2.0 of calibrated spectral images of comet 9P/Tempel 1 acquired by the Deep Impact High Resolution Instrument Infrared Spectrometer during the encounter phase of the mission. Version 2.0 includes uncleaned and cleaned radiance data with improved calibration and geometry. The data were collected from 20 June through 6 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:16.380118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-3/4-9P-ENCOUNTER-V3.0","title":"DIHI9P_3201: Data from 2005-06-20 to 07-06, V3.0","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 9P/Tempel 1 the acquired by the High Resolution Infrared Spectrometer (HRII) from 20 June through 06 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and corrects observation times with a maximum difference of about 40 milliseconds, corrects an error in the IR absolute calibration that previously inflated all spectra by a factor of 2, and upgrades the ALTFF line-dependent integration time. Version 3.0 also includes a new flat-field file derived from EPOXI lunar calibrations, improved quadrant-averaged linearity coefficients, and a refinement in the absolute spectral calibration curve.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:17.318347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-3/4-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet C/Garradd (2009 P1) acquired by the High Resolution Infrared Spectrometer on 26 March and 02-03 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:18.321655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"4-EPOXI-HARTLEY2-V1.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:19.409571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"4-EPOXI-HARTLEY2-V2.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Version 2.0 includes the application of new per-pixel linearity and calibration files such flats, darks, and absolute calibration curves that were derived using the new linearization.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:20.433172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-3/4-EPOXI-HARTLEY2-V3.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer (HRII) from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Version 3.0 includes the application of scaled master dark subtraction for DOY 307 and in scene dark subtraction for DOY 311-313, as well as the use of an average per scan optical bench temperature in the pipeline processing. Version 3 also includes the calibration enhancements implemented in Version 2 of this dataset: a new per-pixel linearity correction treatment and its propagation through the calibration steps (i.e., bad-pixel maps, flat-field file update, revised spectral calibration curve), new mode-dependent master darks, an optimized scaling factor for the master dark, and a refinement in the absolute spectral calibration curve.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:21.404272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-3/4-EPOXI-ISON-V1.0","title":"EPOXI C/ISON (2012 S1) - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet C/ISON (2012 S1) acquired by the High Resolution Infrared Spectrometer on 16-17 February 2013 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:22.330101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII-5-TEMPEL1-SURF-TEMP-MAPS-V1.0","title":"DEEP IMPACT 9P/TEMPEL 1 SURFACE TEMPERATURE MAPS","description":"This volume contains two-dimensional infrared thermal maps of the surface of comet 9P/Tempel 1. The maps were derived from three spatially resolved scans of the nucleus acquired by the Deep Impact High Resolution Infrared Spectrometer (HRII) about 19, 12, and 5 minutes before the impact on 4 July 2005. A high-resolution, 120-m/pixel, thermal composite map is also included. Surface temperatures were derived from 1.0- to 4.0-micron data and ranged from 272K to 336K +/- 7K. This data set also includes the incidence and emission angle maps (mu0 and mu) associated with each thermal map and a table of temperatures assigned to plates in the Tempel 1 shape model that were illuminated and visible near the time of impact.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-5-tempel1-surf-temp-maps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:23.328991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRII/HRIV/MRI-6-TEMPS-V1.0","title":"DEEP IMPACT HRII/HRIV/MRI INSTRUMENT TEMPERATURES","description":"This data set provides resampled (raw, averaged) temperature measurements from 27 sensors located in the HRII, HRIV, and MRI instruments and on the HRI and MRI telescopes, instrument platform, and solar wings of the Deep Impact flyby spacecraft. The data begin on 15 January 2005, three days after launch, and continue through 9 July 2005, five days after the encounter with comet 9P/Tempel 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii_hriv_mri-6-temps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:24.330310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-2-9P-ENCOUNTER-V1.0","title":"DEEP IMPACT ENCOUNTER RAW HRIV IMAGES","description":"This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact High Resolution Instrument's Visible CCD during the encounter phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:25.333850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-2-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - HRIV RAW IMAGES","description":"This dataset contains raw clear-filter images of comet C/Garradd (2009 P1) acquired by the High Resolution Visible CCD (HRIV) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:26.342455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-2-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV RAW IMAGES","description":"This dataset contains raw clear-filter images of comet 103/P Hartley 2 acquired by the High Resolution Visible CCD (HRIV) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Four color-filter sets (350-950 nm) were acquired during the hour about closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:27.341490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-2-NAV-9P-ENCOUNTER-V1.0","title":"DIHVNV_2001: Images from 2005-06-03 to 07-04","description":"This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact High Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 3 June to 4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:28.346454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-3-NAV-9P-ENCOUNTER-V1.0","title":"DIHVNV_3001: Images from 2005-07-03 to 07-04","description":"This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact High Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected on 3-4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:29.346430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-3/4-9P-ENCOUNTER-V3.0","title":"DIHV9P_3201: Data from 2005-05-01 to 07-04, V3.0","description":"This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the High Resolution Instrument Visible CCD (HRIV) from 01 May through 04 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F, and the application of a horizontal destriping process.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-9p-encounter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:32.417498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-3/4-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - HRIV CALIBRATED IMAGES","description":"This dataset contains calibrated clear-filter images of comet C/Garradd (2009 P1) acquired by the High Resolution Visible CCD (HRIV) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:33.347798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-3/4-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV CALIBRATED IMAGES","description":"This dataset contains calibrated clear-filter images of comet 103/P Hartley 2 acquired by the High Resolution Visible CCD (HRIV) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Four color-filter sets (350-950 nm) were acquired during the hour about closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:34.358401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV-5-EPOXI-HARTLEY2-DECONV-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV DECONVOLVED IMAGES","description":"This dataset contains deconvolved High Resolution Visible CCD (HRIV) images of the nucleus of comet 103/P Hartley 2. Clear and color filter (350-950 nm) images, which were acquired within +/- one hour of closest approach on 04 November 2010 at 13:59:47 UTC during the EPOXI mission, have been restored to retrieve much of the resolution that was lost due to the defocus of the HRI telescope. Image scales range from 1.4 to 85.5 m/pixel.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-5-epoxi-hartley2-deconv-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:35.360986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRI-5-TEMPEL1-SHAPE-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Farnham, T.L. and Thomas, P.C, SHAPE MODEL OF COMET TEMPEL 1, DIF-C-HRIV/ITS/MRI-5-TEMPEL1-SHAPE-MODEL-V1.0, NASA Planetary Data System, 2006.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_its_mri-5-tempel1-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:36.425107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV/ITS/MRI-5-TEMPEL1-SHAPE-V2.0","title":"DIMODL_0001: 9P/TEMPEL 1 SHAPE MODELS","description":"This delivery volume holds the data set containing the detailed plate shape model of comet 9P/Tempel 1, as derived from images of the comet that were obtained by the Deep Impact spacecraft and by the Stardust spacecraft around the times of their respective closest approaches.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_its_mri-5-tempel1-shape-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:37.366777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-HRIV/MRI-5-HARTLEY2-SHAPE-V1.0","title":"EPXH2_2000: 103P/HARTLEY 2 SHAPE MODELS","description":"This delivery volume holds the data set containing the detailed plate shape model of comet 103P/Hartley 2, as derived from images of the comet that were obtained by the Deep Impact spacecraft around the times of closest approach for the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_mri-5-hartley2-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:38.367662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-2-9P-ENCOUNTER-V1.0","title":"DEEP IMPACT ENCOUNTER RAW MRI IMAGES","description":"This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact Medium Resolution Instrument's Visible CCD during the encounter phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:39.369867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-2-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - MRI RAW IMAGES","description":"This dataset contains raw clear-filter, C2, CN, OH and dust continuum images of comet C/Garradd (2009 P1) acquired by the Medium Resolution Visible CCD (MRI) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:40.365788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-2-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - MRI RAW IMAGES","description":"This dataset contains raw images of comet 103/P Hartley 2 acquired by the Medium Resolution Visible CCD (MRI) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Clear-filter and CN images of the comet were acquired throughout this phase; OH, C2, and dust continuum images were only acquired for several days spanning closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:41.372295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-2-EPOXI-ISON-V1.0","title":"EPOXI C/ISON (2012 S1) - MRI RAW IMAGES","description":"This dataset contains raw clear-filter, CN, OH and dust continuum images of comet C/ISON (2012 S1) acquired by the Medium Resolution Visible CCD (MRI) from 17 January through 06 March 2013 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:42.413471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-2-NAV-9P-ENCOUNTER-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 1 May to 4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:43.520459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-2-NAV-9P-ENCOUNTER-V1.1","title":"DIMVNV_200X: Images from 2005-05-01 to 07-04","description":"This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 1 May to 4 July 2005. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-nav-9p-encounter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:44.471508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-3-NAV-9P-ENCOUNTER-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation of the flyby spacecraft as well as for scientific investigations. These data were collected from 15 May to 4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:45.524575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-3-NAV-9P-ENCOUNTER-V1.1","title":"DIMVNV_300X: Images from 2005-05-15 to 07-04","description":"This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 15 May to 4 July 2005. In this version (1.1) of the data set, the modified Julian date values, found in the PDS data labels of version 1.0, were replaced with full Julian dates. This data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3-nav-9p-encounter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:46.382600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-3/4-9P-ENCOUNTER-V3.0","title":"DIMV9P_3201: Data from 2005-05-01 to 07-06, V3.0","description":"This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the Medium Resolution Instrument Visible CCD (MRI) from 01 May through 06 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F, and the application of a horizontal destriping process and improved absolute radiometric calibration constants.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-9p-encounter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:49.390415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-3/4-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated clear-filter, C2, CN, OH and dust continuum images of comet C/Garradd (2009 P1) acquired by the Medium Resolution Visible CCD (MRI) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:50.388671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-3/4-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated images of comet 103/P Hartley 2 acquired by the Medium Resolution Visible CCD (MRI) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Clear-filter and CN images of the comet were acquired throughout this phase; OH, C2, and dust continuum images were only acquired for several days spanning closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:51.400895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-3/4-EPOXI-ISON-V1.0","title":"EPOXI C/ISON (2012 S1) - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated clear-filter, CN, OH and dust continuum images of comet C/ISON (2012 S1) acquired by the Medium Resolution Visible CCD (MRI) from 17 January through 06 March 2013 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:52.392573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-5-EPOXI-HARTLEY2-PHOTOM-V1.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains clear-filter, CN, OH, C2, and dust-continuum photometric measurements of comet 103/P Hartley 2 derived from calibrated images acquired by the Medium Resolution Visible CCD (MRI) from 01 October through 26 November 2010, during the Hartley 2 encounter phase of the EPOXI mission. Two different methods were used: simple circular aperture photometry and azimuthal averaged aperture photometry, which removed stars. The results and uncertainties for both procedures are included in this dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-5-epoxi-hartley2-photom-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:53.475193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-MRI-5-TEMPEL1-PHOTOMETRY-V1.0","title":"DEEP IMPACT 9P/TEMPEL 1 MRI PHOTOMETRY","description":"This data set contains photometric measurements of comet 9P/Tempel 1 from images taken with the Medium Resolution CCD Instrument during the approach phase of the Deep Impact mission (from 1 May 2005 to 4 July 2005). These data, based on circular apertures ranging from 5 to 30 pixels in diameter, were derived from both science and navigation images taken through clear filters.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-5-tempel1-photometry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:54.474157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-C-RSS-1-9P-ENCOUNTER-V1.0","title":"VOLUME 1","description":"This volume contains raw Radio Science data for the Deep Impact flyby spacecraft, collected from June 27 through July 11, 2005, during the encounter with comet 9P/Tempel 1. There was no comet gravity signal detected in the tracking data and hence no gravity science. In addition, there was no evidence in the spacecraft tracking data for dust or gas drag near the time of closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-rss-1-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:55.482467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRII-2-9P-CRUISE-V1.0","title":"DEEP IMPACT CRUISE RAW HRII CALIB SPECTRAL IMAGES","description":"This volume contains raw spectra for science calibrations acquired by the Deep Impact High Resolution Instrument Infrared Spectrometer (HRII) during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain spectra of the comet.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:56.405669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - HRII RAW SPECTRA V1.0, DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-epoxi-calibrations-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:57.459217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V2.0","title":"EPOXI INFLIGHT CALIBRATIONS - HRII RAW SPECTRA","description":"This dataset contains version 2.0 of raw calibration spectra acquired by the High Resolution Infrared Spectrometer (HRII) from 04 October 2007 through 07 February 2011 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration data only through May 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-epoxi-calibrations-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:58.407103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRII-2-GROUND-TV1-V1.0","title":"DEEP IMPACT THERMAL-VACUUM 1 DATA, HRII INSTRUMENT","description":"This volume contains spectral image data acquired by the High Resolution Imager's Infrared Spectrometer (HRII) during the first preflight thermal-vacuum test (TV1) of the Deep Impact instruments, from 2002-06-27 through 2002-07-02. Data in the volume supports the calibration of the HRII instrument.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-ground-tv1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:59.413172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRII/HRIV-2-GROUND-TV2-V1.0","title":"DEEP IMPACT THERMAL-VACUUM 2 DATA, HRII/HRIV INSTRUMENTS","description":"This volume contains image data acquired by the High Resolution Instrument's IR Spectrometer (HRII) and Visual CCD (HRIV) during the second preflight thermal-vacuum test (TV2) of the Deep Impact instruments, from 2002-08-15 through 2002-09-03. These data support the calibration of the HRII and HRIV instruments.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv-2-ground-tv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:00.416067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRII/HRIV/MRI-2-GROUND-TV3-V1.0","title":"DEEP IMPACT THERMAL-VACUUM 4 DATA, HRII/HRIV/MRI INSTRUMENTS","description":"This volume contains image data acquired by the High Resolution Instrument's IR Spectrometer (HRII) and Visual CCD (HRIV) and the Medium Resolution Instrument's Visual CCD (MRI) during the fourth preflight thermal-vacuum test (TV4) of the Deep Impact instruments from 2003-002-23 through 2003-03-12. These data support the calibration of the HRII, HRIV, and MRI instruments.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-2-ground-tv4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:01.411122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRI-6-EPOXI-TEMPS-V1.0","title":"Menu: Skip within this page","description":"Abstract: Raw temperature measurements from telemetry for the EPOXI mission from 27 sensors located in the HRII, HRIV, and MRI instruments and on the HRI and MRI telescopes, instrument platform, and solar wings of the Deep Impact flyby spacecraft. The data were collected from 17 December 2007 through 31 December 2008, during the first cruise and EPOCh phases of the mission as well as the early part of the second cruise phase. Future versions of this data set will include thermal data from the remaining part of the second cruise phase and the 103P/Hartley 2 encounter phase (DIXI) of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:02.476764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRI-6-EPOXI-TEMPS-V2.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission, from 04 October 2007 through 06 February 2011. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:03.482369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MRI-6-EPOXI-TEMPS-V2.1","title":"Menu: Skip within this page","description":"Abstract: This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission, from 04 October 2007 through 06 February 2011. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft. Version 2.1 corrects a typo in a column description in 5 data labels.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v2.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:04.493467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRII/HRIV/MRI-6-EPOXI-TEMPS-V3.0","title":"EPOXI HRII/HRIV/MRI INSTRUMENT TEMPERATURES","description":"This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission from 04 October 2007 to 08 August 2013. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft. For Version 3.0, thermal data from 06 February 2011 to 08 August 2013 were added.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:05.481775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRIV-2-9P-CRUISE-V1.0","title":"DEEP IMPACT CRUISE RAW HRIV CALIB IMAGES","description":"This volume contains raw images for science calibrations acquired by the Deep Impact High Resolution Instrument Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:06.493156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - HRIV RAW IMAGES V1.0, DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-epoxi-calibrations-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:07.541288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V2.0","title":"EPOXI INFLIGHT CALIBRATIONS - HRIV RAW IMAGES","description":"This dataset contains version 2.0 of raw calibration images acquired by the High Resolution Visible CCD (HRIV) from 04 October 2007 through 28 November 2010 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration only through February 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-epoxi-calibrations-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:08.430246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRIV-2-NAV-9P-CRUISE-V1.0","title":"DIHVNV_1001: Images from 2005-01-14 to 04-25","description":"This data set contains raw calibration and test images acquired by the Deep Impact High Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-nav-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:09.446502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-HRIV-6-EPOXI-STELLAR-PSFS-V1.0","title":"EPOXI INFLIGHT CALIBRATIONS - HRIV STELLAR PSFS","description":"This data set contains a clear-filtered High Resolution Visible CCD (HRIV) point spread function (PSF) for exoplanet transit targets GJ 436, HAT-P-4, HAT-P-7, TrES-2, TrES-3, XO-2, and XO-3 and at least one filtered HRIV PSF for stellar calibrator targets for the EPOXI mission. The PSFs were produced by applying a drizzle method to sets of HRIV images of the targets acquired during 2008. A PSF for transit target WASP-3 was not produced due to a crowded star field.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-6-epoxi-stellar-psfs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:10.428596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-MRI-2-9P-CRUISE-V1.0","title":"DEEP IMPACT CRUISE RAW MRI CALIB IMAGES","description":"This volume contains raw images for science calibrations acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:11.435987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - MRI RAW IMAGES V1.0, DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-epoxi-calibrations-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:12.496987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V2.0","title":"EPOXI INFLIGHT CALIBRATIONS - MRI RAW IMAGES","description":"This dataset contains version 2.0 of raw calibration images acquired by the Medium Resolution Visible CCD (MRI) from 04 October 2007 through 28 November 2010 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration only through July 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-epoxi-calibrations-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:13.447222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-MRI-2-NAV-9P-CRUISE-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains raw calibration and test images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-nav-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:14.513333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-CAL-MRI-2-NAV-9P-CRUISE-V1.1","title":"DIMVNV_1001: Images from 2005-01-14 to 04-25","description":"This data set contains raw calibration and test images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-nav-9p-cruise-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:15.448372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-E-HRII-2-EPOXI-EARTH-V1.0","title":"EPOXI EARTH OBSERVATIONS - HRII RAW SPECTRA","description":"This data set contains raw, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice per hour. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-2-epoxi-earth-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:16.499104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"4-EPOXI-EARTH-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains calibrated, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice per hour. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-3_4-epoxi-earth-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:17.590292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-E-HRII-3/4-EPOXI-EARTH-V2.0","title":"EPOXI EARTH OBSERVATIONS - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice every 2 hours. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009. Version 2 corrects an error in the IR absolute calibration that previously inflated all spectra by a factor of 2.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-3_4-epoxi-earth-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:18.452135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-E-HRIV-2-EPOXI-EARTH-V1.0","title":"EPOXI EARTH OBSERVATIONS - HRIV RAW IMAGES","description":"This data set contains raw, narrow band filter images (350-950 nm) of Earth acquired by the Deep Impact High Resolution Visible CCD (HRIV) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. On 27 September 2009 during the first attempt of an Earth south polar observation, only seven HRIV frames were acquired before fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-2-epoxi-earth-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:19.455389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-E-HRIV-3/4-EPOXI-EARTH-V2.0","title":"EPOXI EARTH OBSERVATIONS - HRIV CALIBRATED IMAGES","description":"This dataset contains calibrated, narrow band filter images (350-950 nm) of Earth acquired by the Deep Impact High Resolution Visible CCD (HRIV) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. On 27 September 2009 during the first attempt of an Earth south polar observation, only seven HRIV frames were acquired before fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009. Version 2.0 includes the application of a horizontal destriping process and revised electronic crosstalk calibration files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-3_4-epoxi-earth-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:21.462776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-E-MRI-2-EPOXI-EARTH-V1.0","title":"EPOXI EARTH OBSERVATIONS - MRI RAW IMAGES","description":"This data set contains raw, 750-nm filter images of Earth acquired by the Deep Impact Medium Resolution Visible CCD (MRI) during the EPOCh and Cruise 2 phases of the EPOXI mission. The MRI instrument was only used during the first Earth observing period on 18-19 March 2008 and the last two on 27-28 March and 04-05 October 2009. Each observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to serve as context spectra. On 27-28 September 2009 during the first attempt at Earth south polar observations, a full set of MRI context images was acquired although the HRII and HRIV instruments were turned off by fault protection shortly after the sequence started.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-2-epoxi-earth-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:22.465275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-E-MRI-3/4-EPOXI-EARTH-V2.0","title":"EPOXI EARTH OBSERVATIONS - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated, 750-nm filter images of Earth acquired by the Deep Impact Medium Resolution Visible CCD (MRI) during the EPOCh and Cruise 2 phases of the EPOXI mission. The MRI instrument was only used during the first Earth observing period on 18-19 March 2008 and the last two on 27-28 March and 04-05 October 2009. Each observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to serve as context spectra. On 27-28 September 2009 during the first attempt at Earth south polar observations, a full set of MRI context images was acquired although the HRII and HRIV instruments were turned off by fault protection shortly after the sequence started. Version 2.0 includes the application of a horizontal destriping process, new absolute calibration constants for filters, and revised electronic crosstalk calibration files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-3_4-epoxi-earth-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:24.468739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-L-HRII-3/4-EPOXI-LUNAR-CALS-V1.0","title":"EPOXI INFLIGHT LUNAR CALS - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of the Moon acquired the High Resolution Infrared Spectrometer (HRII) from 29 December 2007 through 18 December 2009 during several in-flight instrument calibrations for the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-l-hrii-3_4-epoxi-lunar-cals-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:25.468070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-M-HRII-2-EPOXI-MARS-V1.0","title":"EPOXI MARS OBSERVATIONS - HRII RAW SPECTRA","description":"This data set contains raw, 1.05- to 4.8-micron spectra of Mars acquired by the High Resolution Infrared Spectrometer (HRII) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, spectra were acquired twice per hour.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-2-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:26.472526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-M-HRII-3/4-EPOXI-MARS-V1.0","title":"EPOXI MARS OBSERVATIONS - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectra of Mars acquired by the High Resolution Infrared Spectrometer (HRII) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and spectra were acquired twice every two hours.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-3_4-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:27.505366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-M-HRIV-2-EPOXI-MARS-V1.0","title":"EPOXI MARS OBSERVATIONS - HRIV RAW IMAGES","description":"This data set contains raw narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-2-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:28.550815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"4-EPOXI-MARS-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains calibrated narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-3_4-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:29.607435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-M-HRIV-3/4-EPOXI-MARS-V2.0","title":"EPOXI MARS OBSERVATIONS - HRIV CALIBRATED IMAGES","description":"This dataset contains calibrated narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. Version 2.0 includes the application of a horizontal destriping process and revised electronic crosstalk calibration files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-3_4-epoxi-mars-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:30.482635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-M-MRI-2-EPOXI-MARS-V1.0","title":"EPOXI MARS OBSERVATIONS - MRI RAW IMAGES","description":"This data set contains raw 750-nm filter images of Mars acquired by the Deep Impact Medium Resolution Visible CCD (MRI) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to provide context for the spectral scans.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-2-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:31.477791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-M-MRI-3/4-EPOXI-MARS-V2.0","title":"EPOXI MARS OBSERVATIONS - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated 750-nm filter images of Mars acquired by the Deep Impact Medium Resolution Visible CCD (MRI) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to provide context for the spectral scans. Version 2.0 includes the application of a horizontal destriping process, new absolute calibration constants for filters, and revised electronic crosstalk calibration files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-3_4-epoxi-mars-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:33.489183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-X-HRIV-2-EPOXI-EXOPLANETS-V1.0","title":"EPOXI EXOPLANET TRANSIT OBS - HRIV RAW IMAGES","description":"This data set set contains raw images of eight known transiting extrasolar planetary systems (hot Jupiters) acquired by the Deep Impact High Resolution Visible CCD during the EPOCh phase of the EPOXI mission. From 22 January through 31 August 2008 the HRIV CCD collected over 172,000 usable, photometric-quality visible light images of these transiting planet systems: HAT-P-4, HAT-P-7, GJ 436, TrES-2, TrES-3, XO-2, XO-3, and WASP-3. Time series of continuous 50-second integrations were used with the clear filter (#6) to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses. An exception was XO-3 which was only observed briefly due to the spacecraft entering safe mode. The transiting planet systems were observed in the integrated light of the planet and star; no spatially resolved image of the planet was possible. This data set also contains a time series of raw clear filter (#1) images of known exoplanet transit microlensing target MOA-2009-BLG-266 acquired by HRIV on 5-8 October 2009 for EPOCh.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-2-epoxi-exoplanets-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:34.492977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-X-HRIV-3-EPOXI-EXOPLANETS-V1.0","title":"EPOXI EXOPLANET TRANSIT OBS - HRIV CALIBRATED IMAGES","description":"This data set set contains calibrated images of eight known transiting extrasolar planetary systems (hot Jupiters) acquired by the Deep Impact High Resolution Visible CCD during the EPOCh phase of the EPOXI mission. From 22 January through 31 August 2008 the HRIV CCD collected over 172,000 usable, photometric-quality visible light images of these transiting planet systems: HAT-P-4, HAT-P-7, GJ 436, TrES-2, TrES-3, XO-2, XO-3, and WASP-3. Time series of continuous 50-second integrations were used with the clear filter (#6) to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses. An exception was XO-3 which was only observed briefly due to the spacecraft entering safe mode. The transiting planet systems were observed in the integrated light of the planet and star; no spatially resolved image of the planet was possible. This data set also contains a time series of raw clear filter (#1) images of known exoplanet transit microlensing target MOA-2009-BLG-266 acquired by HRIV on 5-8 October 2009 for EPOCh.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-3-epoxi-exoplanets-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:35.493667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DIF-X-HRIV-5-EPOXI-EXOPLANETS-PHOT-V1.0","title":"EPOXI EXOPLANET TRANSIT OBS - HRIV STELLAR PHOTOMETRY","description":"This data set contains aperture photometry of known transiting planet systems GJ 436, HAT-P-4, HAT-P-7, TrES-2, TrES-3, and WASP-3 derived from radiance calibrated, clear #6 filtered images acquired by the Deep Impact High Resolution Visible CCD from 22 January through 31 August 2008 during the EPOCh phase of the EPOXI mission. The photometry data were derived from time series of continuous 50-second integrations used to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-5-epoxi-exoplanets-phot-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:36.506034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-C-ITS-2-9P-ENCOUNTER-V1.0","title":"DEEP IMPACT ENCOUNTER RAW ITS IMAGES","description":"This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact Impactor Targeting Sensor's Visible CCD during the encounter phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:37.498053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-C-ITS-2-NAV-9P-ENCOUNTER-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains raw comet 9P/Tempel 1 and calibration images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected from 6 May to 4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:38.569833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-C-ITS-2-NAV-9P-ENCOUNTER-V1.1","title":"DIIVNV_2001: Images from 2005-05-06 to 07-04","description":"This data set contains raw comet 9P/Tempel 1 and calibration images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected from 6 May to 4 July 2005. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-nav-9p-encounter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:39.565212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-C-ITS-3-NAV-9P-ENCOUNTER-V1.0","title":"DIIVNV_3001: Images from 2005-07-03 TO 07-04","description":"This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected on 3-4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:40.669384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-C-ITS-3/4-9P-ENCOUNTER-V3.0","title":"DIIV9P_3201: Data from 2005-07-03 to 07-04, V3.0","description":"This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the Impactor Targeting Sensor Visible CCD (ITS) after the impactor was released from the flyby spacecraft on 03 July 2005 during the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, and the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3_4-9p-encounter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:43.508245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-CAL-ITS-2-9P-CRUISE-V1.0","title":"DEEP IMPACT CRUISE RAW ITS CALIB IMAGES","description":"This volume contains raw images for science calibrations acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:44.512232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-CAL-ITS-2-GROUND-TV3-V1.0","title":"DEEP IMPACT THERMAL-VACUUM 3 DATA, HRII INSTRUMENT","description":"This volume contains image data acquired by the Impactor Targeting Sensor's Visual CCD (ITS) during the third preflight thermal-vacuum test (TV3) of the Deep Impact instruments, from 2003-01-16 through 2003-01-30. Data in the volume supports the calibration of the ITS instrument.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-ground-tv3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:45.511713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-CAL-ITS-2-NAV-9P-CRUISE-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains raw calibration and test images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft. These data were collected from 7 April to 30 April 2005. The comet was not imaged during cruise.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-nav-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:46.583901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DII-CAL-ITS-2-NAV-9P-CRUISE-V1.1","title":"DIIVNV_1001: Images from 2005-04-07 to 04-30","description":"This data set contains raw calibration and test images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft. These data were collected from 7 April to 30 April 2005. The comet was not imaged during cruise. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-nav-9p-cruise-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:47.516560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-I0034-3-UH22M-TMPL1-V1.0","title":"DI UH22M RDR TMPL1 IMAGES/PHOT 1997-XXXX","description":"This volume set currently contains the data from 1997 through Feb 2000 for the UH2.2M Reduced 9P/Tempel 1 Images/Astrometry V1.0 data set, DI/EAR-C-I0034-3-UH22M-TMPL1-V1.0, in support of the Deep Impact mission. This data set is an ongoing, cumulative archive.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0034-3-uh22m-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:48.514409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0","title":"IRTF NEAR-IR IMAGES OF COMET 9P","description":"This volume contains the data for the IRTF Near-IR Imaging of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0046-2-irtf-nirimg-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:49.525731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-I0046-2-IRTF-NIRSPEC-TMPL1-V1.0","title":"IRTF NEAR-IR SPECTRA OF COMET 9P","description":"This volume contains the data for the IRTF Near-IR Spectroscopy of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0046-2-IRTF-NIRSPEC-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0046-2-irtf-nirspec-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:50.571758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0","title":"IRTF MID-IR IMAGES OF COMET 9P","description":"This volume contains the data for the IRTF Mid-IR Imaging of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0071-2-irtf-mir-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:51.580859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-I0276-2/3-MARTIR15M-TMPL1-V1.0","title":"SBN 2008 SUPPORT ARCHIVES DELIVERY VOLUME","description":"This volume contains the data for the San Pedro Martir Optical Imaging of 9P/Tempel 1 V1.0 data set, ID: DI/EAR-C-I0276-2/3-MARTIR15M-TMPL1-V1.0. The data set was submitted by Kevin Walsh. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0276-2_3-martir15m-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:52.528464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-KECK1LWS-3-9P-IMAGES-PHOT-V1.0","title":"KECK I LWS IMAGES AND PHOTOMETRY OF COMET 9P","description":"This volume contains raw and reduced mid-infrared images and photometry of comet 9P/Tempel 1, the target of the Deep Impact mission. Images were acquired on the night of 21 August 2000, about 7.5 months after perihelion, by Y. Fernandez, C. Lisse, M. A'Hearn and M. Belton using the Long Wavelength Spectrometer instrument at the Keck I telescope. Data in this volume supports analysis of the size and albedo of the nucleus of 9P/Tempel 1 in support of the Deep Impact mission. Version 2 of this volume corrects some minor file naming problems and omissions in the catalog/ directory.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-keck1lws-3-9p-images-phot-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:53.536127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-LO72CCD-3-9P-IMAGES-PHOT-V1.0","title":"LOWELL 72-IN IMAGES AND PHOTOMETRY OF COMET 9P","description":"This volume contains broadband R images and derived photometry of comet 9P/Tempel 1, the target of the Deep Impact mission. The data were acquired by M. Buie at the Perkins 72-inch telescope of the Lowell Observatory during 11 nights of observing from 28 September 2000 through 14 January 2001, about 8.5 to 12.5 months after the comet passed through perihelion on 2 January 2000. The data in this volume support the analysis of the rotation period and dust environment of comet 9P/Tempel 1 for the Deep Impact mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lo72ccd-3-9p-images-phot-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:54.537553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-LPLCCD-3-MTBG61-TMPL1-V1.0","title":"MT BIGELOW 61-INCH IMAGES OF TEMPEL 1 - DATA SAFE","description":"Observations of 9P/Tempel 1 made with the 61-inch Kuiper telescope on Mt. Bigelow by Uwe Fink in 1994: six images taken over five nights. Insufficient documentation to bring the data to review.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lplccd-3-mtbg61-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:55.526765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0","title":"RAW KPNO/SQIID IMAGES OF 9P/TEMPEL 1","description":"This volume contains the data for the Near-infrared images of comet 9P/Tempel 1 V1.0 data set, ID: DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0. The data set was submitted by Matthew Knight. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-sqiid-3-9pnirimages-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:56.539574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{ \"DI/IRAS-C-FPA-5-9P-IMAGES-V1.0\" }","title":"IRAS IMAGES OF COMET 9P","description":"This volume contains images of comet 9P/Tempel, from its 1983 apparition, as derived from 12-, 25-, 60-, and 100-micron observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS): - Radiance images, noise maps, and effective resolution tables derived from reprocessed IRAS Additional (Pointed) Observations. - Radiance images and noise maps derived from reprocessed IRAS Sky Survey Atlas (ISSA) Scans. - JPEG-rendered images of the dust trail based on data in the ISSA Reject Set. These images are provided as documentation for future reference. These data support the analysis of the dust environment of Tempel 1 for the NASA Deep Impact Mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-images-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:57.543390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"{ \"DI/IRAS-C-FPA-5-9P-PHOT-V1.0\" }","title":"PHOTOMETRY OF IRAS IMAGES OF COMET 9P","description":"This volume contains 12-, 25-, 60-, and 100-micron photometry of the dust coma of comet 9P/Tempel 1 during its 1983 apparition. The photometry was derived from reconstructed observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS). The types of observations were Sky Survey Atlas (ISSA) scans and Additional (Pointed) Observations. A comprehensive discussion of these data was provided by Carey Lisse and included as documentation. The reconstructed images used for this photometric analysis are available in the PDS data set DI/IRAS-C-FPA-5-9P-IMAGES-V1.0. These data support the analysis of the dust environment of Tempel 1 for the NASA Deep Impact Mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-phot-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:58.548948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DS1-C-IDS-3-RDR-BORRELLY-V1.0","title":"DS1 BORRELLY ENCOUNTER IDS DATA","description":"This volume has reduced data from the IDS plasma wave spectrometer (burst and instantaneous) during the Borrelly encounter on Sept 22, 2001.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-ids-3-rdr-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:59.550142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DS1-C-MICAS-2-EDR-VISCCD-BORRELLY-V1.0","title":"DS1 BORRELLY ENCOUNTER MICAS DATA - FITS FILES","description":"This volume contains data produced by the MICAS instrument during the Deep Space 1 mission and converted to FITS files by SBN personnel. Attempts to get sufficient documentation to make the data archivable have, to date, failed. The scientific quality of the data is unclear. The data are being saved in the hopes that additional information may be forthcoming.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-2-edr-visccd-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:00.550766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DS1-C-MICAS-3-RDR-VISCCD-BORRELLY-V1.0","title":"DS1 BORRELLY ENCOUNTER MICAS DATA - WEB SITE","description":"Web site of the original MICAS data site, downloaded for preservation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-3-rdr-visccd-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:01.578132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DS1-C-MICAS-5-BORRELLY-DEM-V1.0","title":"SBN DELIVERY VOLUME 2, 2005","description":"This volume is a delivery vehicle for the digital elevation models generated from MICAS data take during the Deep Space 1 flyby of comet 19P/Borrelly. Version 2 of this volume includes minor corrections to the 'reference.cat' file in the catalog/ subdirectory.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-5-borrelly-dem-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:02.625894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"DS1-C-PEPE-2-EDR-BORRELLY-V1.0","title":"DS1 BORRELLY ENCOUNTER PEPE DATA","description":"This volume contains the raw data archive associated with the PEPE instrument during the DS1 Borrelly flyby. Version 2 of this volume includes minor format corrections to the 'reference.cat' and 'pepe.cat' files in the catalog/ subdirectory.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-pepe-2-edr-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:03.643537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-5-DDR-PCC-V1.0","title":"PHYSICAL CHARACTERISTICS OF COMETS DELIVERY VOLUME","description":"This volume contains the data for the Physical Characteristics of Comets data set, ID: EAR-C-5-DDR-PCC-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-5-ddr-pcc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:04.559114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-CCD-3-EDR-HALLEY-OUTBURST-CT-V1.0","title":"CTIO CFCCD IMAGES OF COMET 1P/HALLEY OUTBURST","description":"Data extracted from the HAL_1001&2 volumes, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-ct-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:05.560118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-CCD-3-EDR-HALLEY-OUTBURST-ESO-V1.0","title":"ESO CCD IMAGES OF COMET 1P/HALLEY OUTBURST","description":"Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-eso-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:06.562804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-CCD-3-EDR-HALLEY-OUTBURST-UH-V1.0","title":"UH CCD IMAGES OF COMET 1P/HALLEY OUTBURST","description":"Data extracted from the HAL_1001&2 volumes, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-uh-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:07.567225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-CCD-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - IMAGES","description":"Ground-based images obtained to support the Giotto encounter (July 10, 1992) with Comet Grigg-Skjellerup plus utilities to manipulate the files. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different data sets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:08.563662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-CCDIMGR-3-MEECH-19P-BORRELLY-V1.0","title":"IMAGES OF 19P/BORRELLY 1 BY K. MEECH","description":"This volume contains FITS images of comet 19P/Borrelly 1 (1904 Y2) obtained by K. Meech on 20 nights over the period 1987-08-21 to 2002-02-03, with photometry calculated for 3 of those nights. Insufficien support was provided by the observer to prepare these data for review or archiving. The images are being saved in the hopes this situation may change at some time in the future.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccdimgr-3-meech-19p-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:09.566272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-CFCCD-5-RDR-CTIO-BORR-PHOTOM-V1.0","title":"CTIO OBSERVATIONS OF P/BORRELLY 1, VOL 1","description":"This volume is a delivery vehicle for photometric observations of comet 19P/Borrelly made at the Cerro Tololo Inter-American Observatory during the period 2000-07-28 to 2000-08-01.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-cfccd-5-rdr-ctio-borr-photom-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:10.569437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V1.0","title":"COMET NUCLEI PROPERTIES DELIVERY VOLUME","description":"This volume contains the data for the Properties of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-properties-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:11.570548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0","title":"COMET NUCLEI PROPERTIES DELIVERY VOLUME","description":"This volume contains the data for the Properties of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node. Version 2.0 of this data set was created due to an addition of more recent data since version 1.0 was released in 2005 and to correct typographical errors in comet names, discovery IDs, and references used in several data products.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-properties-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:12.591715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0","title":"COMET2_ROT DELIVERY VOLUME","description":"This volume contains the data for the Rotation of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-rotation-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:13.642343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-COMPIL-5-DB-COMET-POLARIMETRY-V1.0","title":"DATABASE OF COMET POLARIMETRY DELIVERY VOLUME","description":"This volume contains the data for the Database of Comet Polarimetry data set, ID: EAR-C-COMPIL-5-DB-COMET-POLARIMETRY-V1.0. The data set was submitted by Nikolai Kiselev.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-db-comet-polarimetry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:14.650368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-COMPIL-5-LIGHTCURVES-V1.0","title":"LIGHTCURVES DELIVERY VOLUME","description":"This volume contains the data for the Survey of Comet Lightcurves V1.0 data set, ID: EAR-C-COMPIL-5-LIGHTCURVES-V1.0. The data set was submitted by Kenneth Melville. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-lightcurves-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:15.579017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0","title":"HI-RES ATLAS OF 122P/DEVICO DELIVERY VOLUME","description":"This volume contains the data for the High Spectral Resolution Atlas of Comet 122P?DeVico, ID: EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-cs2-5-rdr-devico-atlas-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:16.582427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-I0039-2-SBN0007/KECKIIESI-V1.0","title":"SBN DELIVERY VOLUME 6, 2005","description":"This is the delivery volume for the data set identified above.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0039-2-sbn0007_keckiiesi-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:17.584491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0","title":"IMGBORRELLYKPNO DELIVERY VOLUME","description":"This volume contains the data for the Images of comet 19P/Borrelly from 9/21-23, 2001 V1.0 data set, ID: EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0065-2-imgborrellykpno-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:18.582510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0","title":"IMGTEMPEL1KPNO DELIVERY VOLUME","description":"This volume contains the data for the Images of comet 9P/Tempel 1 from February to June 2005 V1.0 data set, ID: EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0065_i1084-3-imgtempel1kpno-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:19.585964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-I0655-2/3-MOSAICTEMPEL1-V1.0","title":"MOSAICTEMPEL1 DELIVERY VOLUME","description":"This volume contains the data for the Images of 9P/Tempel 1 from 2005 around the DI Encounter V1.0 data set, ID: EAR-C-I0655-3-MOSAICTEMPEL1-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0655-2_3-mosaictempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:20.593508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0","title":"MCD OBS COLUMN DENSITY OBS OF BORRELLY DELIVERY VOLUME","description":"This volume contains the data for the McDOnald Observatory Column Density Observations of 19P/Borrelly data set, ID: EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ids_lcs-3-rdr-borrelly-mcdnld-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:21.595158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-IGI-3-EDR-BORRELLY-V1.0","title":"SBN DELIVERY VOLUME 4, 2005","description":"This is VERSION 2 of the SA0504_0001 delivery volume. It should completely supersede VERSION 1, which was discovered (after delivery) to contain corrupted data files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-igi-3-edr-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:22.594157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-IRPHOT-2-RDR-HALLEY-ADDENDA-V1.0","title":"IR PHOTOMERY OF COMET 1P/HALLEY BY GEHRZ & NEY","description":"Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-irphot-2-rdr-halley-addenda-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:23.597481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0","title":"9PTMPL1 DELIVERY VOLUME","description":"This volume contains the data for the McDonald Observatory 9P/Tempel 1 Data V1.0 data set, ID: EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0. The data set was submitted by Anne Raugh. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-lcs-5-9ptmpl1-spectra-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:24.649395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-MCDIDS-3-RDR-MCDNLD-V1.0","title":"SBN DELIVERY VOLUME 3, 2005","description":"This is the delivery volume for the data set identified above.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-mcdids-3-rdr-mcdnld-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:25.661551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-PHOT-3-RDR-LOWELL-COMET-DB-V1.0","title":"LOWELL COMETARY DATA BASE DELIVERY VOLUME","description":"This volume contains the data for the Lowell Observatory Cometary Data Base data set, ID: EAR-C-PHOT-3-RDR-LOWELL-COMET-DB-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-phot-3-rdr-lowell-comet-db-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:26.602027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-C-PHOT-5-RDR-LOWELL-COMET-DB-PR-V1.0","title":"LOWELL COMET DB - PRODUCTION RATES DELIVERY VOLUME","description":"This volume contains the data for the Lowell Observatory Cometary Data Base - Production Rates data set, ID: EAR-C-PHOT-5-RDR-LOWELL-COMET-DB-PR-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-phot-5-rdr-lowell-comet-db-pr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:27.608207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-J/C-HSCCD-3-RDR-SL9-V1.0","title":"VOLUME 1017","description":"This volume contains University of Maryland photometer data and high speed CCD images obtained at 5 remote locations by a Lowell Observatory led consortium.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-j_c-hsccd-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:28.603173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-J/SA-HSOTP-2-EDR-SL9-V1.0","title":"VOLUME 1018","description":"This volume contains University of Maryland photometer data and high speed CCD images obtained at 5 remote locations by a Lowell Observatory led consortium.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-j_sa-hsotp-2-edr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:29.612651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"EAR-X-I2041-5-CH3DICESPEC-V1.0","title":"CH3DICESPEC DELIVERY VOLUME","description":"This volume contains the data for the CH3D ice absorption coefficients V1.0 data set, ID: EAR-X-I2041-5-CH3DICESPEC-V1.0. The data set was submitted by Will Grundy. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-x-i2041-5-ch3dicespec-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:30.614227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ESO-C-EMMI-3-RDR-SL9-V1.0","title":"VOLUME 1013","description":"This volume contains images taken with the EMMI instrument at the New Technology Telescope (NTT) on La Silla.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-c-emmi-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:31.617061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ESO-J-IRSPEC-3-RDR-SL9-V1.0","title":"VOLUME 1014","description":"This volume contains images taken with the IRSPEC instrument at the New Technology Telescope (NTT) on La Silla.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-j-irspec-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:32.620639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ESO-J-SUSI-3-RDR-SL9-V1.0","title":"VOLUME 1015","description":"This volume contains images taken with the SUSI instrument at the New Technology Telescope (NTT) on La Silla.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-j-susi-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:33.620160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-DID-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - DID","description":"Data from the GIOTTO Dust Impact Detector instrument taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:34.622895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-DID-3-RDR-HALLEY-V1.0","title":"GIOTTO'S DID DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:35.661912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-EPA-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - EPA","description":"Data from the GIOTTO Energetic Particle Analyzer taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-epa-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:36.706550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-GRE-1-EDR-HALLEY-ADDENDA-V1.0","title":"GIOTTO RAW GRE (RADIO) DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-1-edr-halley-addenda-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:37.624898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-GRE-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - GRE","description":"Data from the GIOTTO Radioscience Experiment taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:38.627115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-GRE-3-RDR-HALLEY-V1.0","title":"GIOTTO RADIOSCIENCE DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:39.628494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-HMC-3-RDR-HALLEY-V1.0","title":"GIOTTO HALLEY MULTICOLOUR CAMERA DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:40.631174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-IMS-3-RDR-HERS-HALLEY-V1.0","title":"GIOTTO IMS/HERS DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-hers-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:41.639159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-IMS-3-RDR-HIS-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - IMS","description":"Data from the GIOTTO Ion Mass Spectrometer (IMS) High-Intensity SPectrometer (HIS) taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:42.643171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-IMS-3-RDR-HIS-HALLEY-V1.0","title":"GIOTTO IMS/HIS DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:43.643808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-JPA-3-RDR-IIS-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - JPA IIS","description":"Results from the GIOTTO Johnstone Particle Analyser (JPA) Implanted Ion Sensor (IIS) experiment taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-3-rdr-iis-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:44.644701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-JPA-4-DDR-HALLEY-MERGE-V1.0","title":"GIOTTO PARTICLE ANALYZER MERGED DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-4-ddr-halley-merge-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:45.646350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-JPA/MAG-4-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - JPA/MAG","description":"Combined results from the GIOTTO particle analyser (JPA) and magnetometer (MAG) experiments taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa_mag-4-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:46.669957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-MAG-4-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - MAG","description":"Results from the GIOTTO Triaxial Fluxgate magnetometer (MAG) experiment, taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:47.716373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-MAG-4-RDR-HALLEY-8SEC-V1.0","title":"GIOTTO MAGNETOMETER DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-halley-8sec-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:48.729612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-NMS-4-HALLEY-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET HALLEY - NMS","description":"This volume contains a dataset of Neutral Mass Spectra records, from the GIOTTO spacecraft mission for Comet Halley. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-nms-4-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:49.652186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-OPE-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - OPE","description":"Results from the GIOTTO Optical Probe Experiment (OPE), taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:50.660020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-OPE-3-RDR-HALLEY-V1.0","title":"GIOTTO OPTICAL PROBE DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:51.660801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GIO-C-PIA-3-RDR-HALLEY-V1.0","title":"GIOTTO PARTICLE IMPACT ANALYZER DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:52.661770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-NIMS-4-ADR-SL9IMPACT-V1.0","title":"VOLUME 1001","description":"This volume contains the data for the GO NIMS Tabular Data from the SL9 Impact with Jupiter v1.0 data set, ID: GO-J-NIMS-4-ADR-SL9IMPACT-V1.0. The NIMS data is presented as both derived reflectance and raw EDR data of Jupiter during the Comet Shoemaker-Levy 9 impact events in July 1994.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:53.666341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-PPR-3-EDR-SL9-G/H/L/Q1-V1.0","title":"VOLUME 1002","description":"This volume contains the data for the GO JUPITER/SHOEMAKER-LEVY 9 PPR CALIB FRAG G/H/L/Q1 V1.0 data set, ID: GO-J-PPR-3-EDR-SL9-G/H/L/Q1-V1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:54.667726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-SSI-2-REDR-SL9-V1.0","title":"VOLUME 1003","description":"This volume contains the data for the Galileo Orbital Operations Solid State Imaging 2 Raw EDR V1 data set, ID: GO-J-SSI-2-REDR-SL9-V1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:55.670544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-UVS-2-EDR-SL9-V1.0","title":"VOLUME 1004","description":"This volume contains the data for the GO UVS Tabular Data from the SL9 Impact with Jupiter v1.0 data set, ID: GO-J-UVS-2-EDR-SL9-V1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-2-edr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:56.671852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"GO-J-UVS-3-RDR-SL9-G-FRAGMENT-V1.0","title":"VOLUME 1005","description":"This volume contains the data for the GO UVS Tabular Data from the SL9-G Impact with Jupiter v1.0 data set, ID: GO-J-UVS-3-RDR-SL9-G-FRAGMENT-V1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-3-rdr-sl9-g-fragment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:57.688630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"HST-J-WFPC2-3-SL9-IMPACT-V1.0","title":"VOLUME 1016","description":"This volume contains observations of Jupiter during the Comet Shoemaker-Levy 9 impact events by the Hubble Space Telescope in July 1994. These data consist of images by the Wide Field Planetary Camera 2 (WFPC2).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/hst-j-wfpc2-3-sl9-impact-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:58.732296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-EPAS-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE EPAS DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:59.747398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-ICI-3-RDR-GIACOBINI-ZIN-V1.0","title":"ICE ICI DIGITIZED DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:00.679126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-MAG-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE MAGNETOMETER DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:01.682454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-PLAWAV-3-RDR-ESP-GIACOBIN-ZIN-V1.0","title":"ICE PLASMA WAVE E-FIELD DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:02.682870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-PLAWAV-3-RDR-MSP-GIACOBIN-ZIN-V1.0","title":"ICE PLASMA WAVE B-FIELD DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-msp-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:03.688753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-RADWAV-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE RADIO WAVE DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:04.685710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-SWPLAS-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE SOLAR WIND PLASMA DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:05.692106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ICE-C-ULECA-3-RDR-GIACOBINI-ZIN-V1.0","title":"ICE ULECA DIGITIZED DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:06.698429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-AMDR-N-NDR-HALLEY-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL DRAWINGS OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdr-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:07.694234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-AMDRAW-N-NDR-GZ-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL DRAWINGS OF COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdraw-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:08.699017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-AMPG-N-NDR-HALLEY-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL PHOTOGRAPHY OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ampg-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:09.738401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-AMPHOT-N-NDR-GZ-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL PHOTOGRAPHS OF COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amphot-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:10.786186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-AMSP-N-NDR-HALLEY-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL SPECTROGRAMS OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amsp-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:11.700223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-AMVIS-2-RDR-CROMMELIN-V1.0","title":"AMATEUR OBS. NET VISUAL MAG. ESTIMATES OF COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:12.704927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-AMVIS-2-RDR-GZ-V1.0","title":"AMATEUR OBS. VISUAL MAG. ESTIMATES OF COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:13.709248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-AMVIS-2-RDR-HALLEY-V1.0","title":"AMATEUR OBS. NET VISUAL OBSERVATIONS OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:14.710023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-ASTR-2-EDR-CROMMELIN-V1.0","title":"ASTROMETRY NET ASTROMETRIC DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:15.712329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-ASTR-2-EDR-GZ-V1.0","title":"ASTROMETRY NET ASTROMETRIC DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:16.710586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-ASTR-2-EDR-HALLEY-V1.0","title":"ASTROMETRY NET DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:17.718894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-ASTR-2-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the data collected by the IHW Astrometry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:18.719460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRFCURV-3-EDR-HALLEY-V1.0","title":"IR STUDIES NET FILTER CURVES FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:19.721546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRFCURV-3-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the filter curves and filter set parameters for the infrared filters used in the International Halley Watch Infrared Studies Network data archive.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:20.748020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRFTAB-2-RDR-CROMMELIN-V1.0","title":"IR STUDIES NET FILTER CHARACTERISTICS FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:21.893691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRFTAB-2-RDR-GZ-V1.0","title":"IR STUDIES NET FILTER CHARACTERISTICS FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:22.807946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRFTAB-3-RDR-HALLEY-V1.0","title":"IR STUDIES NET FILTER TABLES FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:23.738917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRFTAB-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains filter set parameters for the infrared filters used in the International Halley Watch Infrared Studies Network data archive.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:24.734552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRIMAG-3-EDR-GZ-V1.0","title":"IR STUDIES NET IMAGE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:25.736561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRIMAG-3-EDR-HALLEY-V1.0","title":"IR STUDIES NET IMAGE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:26.736885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRIMAG-3-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the infrared image data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:27.744668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRIMAG-N-NDR-GZ-V1.0","title":"IR STUDIES NET NULL IMAGE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:28.739767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRPHOT-2-RDR-CROMMELIN-V1.0","title":"IR STUDIES NET PHOTOMETRIC DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:29.743505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRPHOT-2-RDR-GZ-V1.0","title":"IR STUDIES NET PHOTOMETRIC DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:30.738808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRPHOT-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the infrared image data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:32.804037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRPOL-2-RDR-GZ-V1.0","title":"IR STUDIES NET POLARIMETRIC DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-2-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:33.818880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRPOL-3-RDR-HALLEY-V1.0","title":"IR STUDIES NET IR POLARIMETRY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:34.756862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRPOL-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the infrared polarimetry data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:35.753005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRSPEC-3-EDR-GZ-V1.0","title":"IR STUDIES NET SPECTROSCOPIC DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:36.757750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRSPEC-3-EDR-HALLEY-V1.0","title":"IR STUDIES NET IR SPECTRA DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:37.760442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRSPEC-3-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the infrared spectroscopy data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:38.761778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-IRSPEC-N-NDR-HALLEY-V1.0","title":"IR STUDIES NET IR SPECTRA NULL RESULTS FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:39.770443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-LSPN-2-DIDR-CROMMELIN-V1.0","title":"LARGE-SCALE PHEN. NET IMAGE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:40.765634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-LSPN-2-DIDR-GZ-V1.0","title":"LARGE-SCALE PHEN. NET IMAGE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:41.773657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-LSPN-2-DIDR-HALLEY-V1.0","title":"LARGE-SCALE PHENOMENA NET IMAGE DATA FOR HALLEY","description":"Data extracted from the CDROM volumes HAL_0001-HAL_0018, reorganized into a single data set volume but otherwise untouched. Summary information from the final volume is included here, as are improved ephemeris files and the complete LSPN submission table included in the HAL_0023. The DATA_PRODUCER listed below prepared the reorganized volume. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:42.774768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-LSPN-2-DIDR-HALLEY-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains restored images from the International Halley Watch (IHW) Large Scale Phenomena Network (LSPN). The original LSPN data were saved in a compressed for on the IHW CD collection. For this data set they have been decompressed and stored at full resolution, and been provided with PDS PDS labels and catalog files that meet the current archiving standards. Version 2.0 of this data set contains uncompressed versions of the image data in FITS format.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:43.868626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-LSPN-N-NDR-CROMMELIN-V1.0","title":"LARGE-SCALE PHEN. NET NULL DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:44.865750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-LSPN-N-NDR-GZ-V1.0","title":"LARGE-SCALE PHEN. NET NULL DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:45.775593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-LSPN-N-NDR-HALLEY-V1.0","title":"LARGE-SCALE PHENOMENA NET NULL DATA FOR HALLEY","description":"Data extracted from the CDROM volumes HAL_0019-HAL_0023, reorganized into a single data set volume but otherwise untouched. Summary information from the final volume is included here, as are improved ephemeris files and the complete LSPN submission table included in the HAL_0023. The DATA_PRODUCER listed below prepared the reorganized volume. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:46.780361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-MSNRDR-3-RDR-HALLEY-ETA-AQUAR-V1.0","title":"IHW METEOR STUDIES NET ETA AQUA. RADAR DATA","description":"Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-eta-aquar-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:47.784872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-MSNRDR-3-RDR-HALLEY-ORIONID-V1.0","title":"IHW METEOR STUDIES NET ORIONID RADAR DATA","description":"Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-orionid-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:48.785550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-MSNVIS-3-RDR-HALLEY-ETA-AQUAR-V1.0","title":"IHW METEOR STUDIES NET ETA AQUA. VISUAL DATA","description":"Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-eta-aquar-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:49.792432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-MSNVIS-3-RDR-HALLEY-ORIONID-V1.0","title":"IHW METEOR STUDIES NET ORIONID VISUAL DATA","description":"Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-orionid-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:50.803000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-NNSN-3-EDR-CROMMELIN-V1.0","title":"NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:51.791832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-NNSN-3-EDR-GZ-V1.0","title":"NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:52.798455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-NNSN-3-EDR-HALLEY-ADDENDA-V1.0","title":"IHW NNSN CORRECTED IMAGES OF COMET 1P/HALLEY","description":"Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-addenda-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:53.800739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-NNSN-3-EDR-HALLEY-V1.0","title":"NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:54.825756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-NNSN-3-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the images collected by the IHW Near-Nucleus Studies Network, formatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:55.875188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPFLX-3-RDR-CROMMELIN-V1.0","title":"PHOTOM. & POLAR. NET FLUX DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:56.886208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPFLX-3-RDR-GZ-V1.0","title":"PHOTOM. & POLAR. NET FLUX DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:57.803445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPFLX-3-RDR-HALLEY-V1.0","title":"PHOT. & POL. NET PHOTOMETRIC FLUX DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:58.804690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPFLX-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the photometric flux data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:59.811888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPMAG-3-RDR-CROMMELIN-V1.0","title":"PHOTOM. & POLAR. NET MAGNITUDE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:00.821470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPMAG-3-RDR-GZ-V1.0","title":"PHOTOM. & POLAR. NET MAGNITUDE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:01.815852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPMAG-3-RDR-HALLEY-V1.0","title":"PHOT. & POL. NET MAGNITUDE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:02.816395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPMAG-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the photometric magnitude data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:03.817068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPOL-3-RDR-CROMMELIN-V1.0","title":"PHOTOM. & POLAR. NET POLARIMETRY DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:04.820005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPOL-3-RDR-GZ-V1.0","title":"PHOTOM. & POLAR. NET POLARIMETRY DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:05.837139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPOL-3-RDR-HALLEY-V1.0","title":"PHOT. & POL. NET POLARIMETRY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:06.888017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPOL-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the polarimetric data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:07.895973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPSTOKE-3-RDR-HALLEY-V1.0","title":"PHOT. & POL. NET STOKES PARAMETERS DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:08.833189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-PPSTOKE-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the polarimetric data reported as Stokes parameters to the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:09.833303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSCN-3-EDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET CONTINUUM DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:10.831446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSCN-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET CONTINUUM ARRAY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:11.835378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSCN-N-NDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET NULL CONTINUUM DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:12.847214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSCN-N-NDR-GZ-V1.0","title":"RADIO STUDIES NET NULL CONTINUUM DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:13.843486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSCN-N-NDR-HALLEY-V1.0","title":"RADIO STUDIES NET CONTINUUM SUMMARY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:14.845904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSOC-3-EDR-GZ-V1.0","title":"RADIO STUDIES NET OCCULTATION DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:15.846090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSOC-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET OCCULTATION GRIDDED DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:16.851597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSOH-3-EDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET OH SPECTRAL LINE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:17.894077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSOH-3-EDR-GZ-V1.0","title":"RADIO STUDIES NET OH SPECTRAL LINE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:18.946579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSOH-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET OH SPECTRAL LINE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:19.860583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSOH-N-NDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET NULL OH LINE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-n-ndr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:20.851031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSRDR-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET RADAR DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsrdr-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:21.859000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSSL-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET SPECTRAL LINE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:22.866992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSSL-N-NDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET NULL SPEC. LINE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:23.860409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSSL-N-NDR-GZ-V1.0","title":"RADIO STUDIES NET NULL SPECTRAL LINE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:24.877737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSSL-N-NDR-HALLEY-V1.0","title":"RADIO STUDIES NET SPECTRAL LINE NULL RESULTS FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:25.873105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-RSUV-2-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET U-V VISIBILITY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsuv-2-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:26.868894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-2-DIDR-CROMMELIN-V1.0","title":"SPEC. NET DIGITIZED 2-D SPECTRA (NULL) FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:27.879593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-2-DIDR-GZ-V1.0","title":"SPEC. NET DIGITIZED 2-D SPECTRA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:28.903271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-2-EDR-CROMMELIN-V1.0","title":"SPEC. NET UNCALIBRATED IUE SPECTRUM OF COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:29.955831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-2-EDR-GZ-V1.0","title":"SPEC. NET UNCALIBRATED 1-D SPECTRA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:30.963348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-2-EDR-HALLEY-V1.0","title":"SPECTROSCOPY/SPECTROPHOT. NET UNREDUCED SPECTRA OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:31.878962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-3-DIDR-HALLEY-V1.0","title":"SPECTROSCOPY/SPECTROPHOT. NET DIGITIZED SPECTRA OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-didr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:32.889076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-3-EDR-CROMMELIN-V1.0","title":"SPEC. NET CALIBRATED SPECTRA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:33.888736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-3-EDR-GZ-V1.0","title":"SPEC. NET CALIBRATED 1-D SPECTRA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:34.890410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IHW-C-SPEC-3-EDR-HALLEY-V1.0","title":"SPECTROSCOPY/SPECTROPHOT. NET REDUCED SPECTRA OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:35.899330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IRTF-J/C-NSFCAM-3-RDR-SL9-V1.0","title":"VOLUME 1010","description":"This volume contains samples of IRTF data, namely the NSFCAM collection.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/irtf-j_c-nsfcam-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:36.895624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IUE-C-LWP-3-EDR-IUECDB-V1.0","title":"VOLUME 1","description":"Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer LWP mode are presented. Version 2 of this volume contains minor format corrections to the target catalog files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwp-3-edr-iuecdb-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:37.900206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IUE-C-LWR-3-EDR-IUECDB-V1.0","title":"VOLUME 2","description":"Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer LWR mode is presented.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwr-3-edr-iuecdb-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:38.899411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IUE-C-SWP-3-EDR-IUECDB-V1.0","title":"VOLUME 3","description":"Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer SWP mode is presented. Version 2 of this volume contains minor format corrections to the target catalog files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-swp-3-edr-iuecdb-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:39.917583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IUE-J-LWP-3-EDR-SL9-V1.0","title":"VOLUME 1006","description":"This volume contains SL9 data from July 1993 through August 1994 for the International Ultraviolet Explorer LWP instruments; the data are high dispersion but low dispersion data for double exposures are included","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-lwp-3-edr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:40.962193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IUE-J-SWP-3-EDR-SL9-V1.0","title":"VOLUME 1007","description":"This volume contains SL9 data from July 1993 through August 1994 for the International Ultraviolet Explorer SWP instruments; the data are high dispersion but low dispersion data for double exposures are included","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-swp-3-edr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:41.974558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSSSO-J-CASPIR-3-RDR-SL9-STDS-V1.0","title":"VOLUME 1012","description":"This volume contains CASPIR Near-IR images from July 17-22, 1994 of stars used as calibration objects.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-stds-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:42.909822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MSSSO-J-CASPIR-3-RDR-SL9-V1.0","title":"VOLUME 1011","description":"This volume contains CASPIR Near-IR images from July 17-22, 1994","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:43.918801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-2-KEM1-V1.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-09-30T17:08:02.058 and 2018-12-31T06:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:44.917195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-2-KEM1-V2.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-30T17:08:02.058 and 2019-01-01T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:45.920415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-2-KEM1-V3.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-30T17:08:02.058 and 2019-03-03T23:08:02.208 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:46.915399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-2-KEM1-V4.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-30T17:20:50.000 and 2019-08-31T22:46:10.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:47.926504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-2-KEM1-V5.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-30T17:20:50.000 and 2020-04-27T22:55:26.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:48.923094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-2-KEM1-V6.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-09-30T17:20:50.058 and 2021-09-30T01:51:40.136 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:49.937839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-3-KEM1-V1.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-09-30T17:08:02.058 and 2018-12-31T06:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:50.932223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-3-KEM1-V2.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-30T17:08:02.058 and 2019-01-01T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:51.969910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-3-KEM1-V3.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-30T17:08:02.058 and 2019-03-03T23:08:02.208 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:52.985430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-3-KEM1-V4.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-30T17:20:50.000 and 2019-08-31T22:46:10.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:53.939303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-3-KEM1-V5.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-30T17:20:50.000 and 2020-04-27T22:55:26.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:54.941996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-ALICE-3-KEM1-V6.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-09-30T17:20:50.058 and 2021-09-30T01:51:40.136 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:55.935393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-2-KEM1-V1.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-20T18:08:02.017 and 2018-12-31T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:56.941693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-2-KEM1-V2.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:57.946515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-2-KEM1-V3.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:58.948489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-2-KEM1-V4.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:59.945713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-2-KEM1-V5.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:00.956564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-2-KEM1-V6.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-20T19:00:01.017 and 2019-09-05T12:09:15.393 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:01.947907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-2-KEM2-V1.0","title":"NEW HORIZONS LEISA KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-31T18:36:03.148 and 2018-12-31T20:33:52.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:03.082156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-3-KEM1-V1.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-20T18:08:02.017 and 2018-12-31T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:04.039318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-3-KEM1-V2.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:05.046645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-3-KEM1-V3.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:05.981251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-3-KEM1-V4.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:06.973559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-3-KEM1-V5.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:07.979028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-3-KEM1-V6.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-20T19:00:01.017 and 2019-09-05T12:09:15.393 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:08.984214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA-3-KEM2-V1.0","title":"NEW HORIZONS LEISA KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-31T18:36:03.148 and 2018-12-31T20:33:52.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:09.987782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LEISA/MVIC-5-COMP-V1.0","title":"NEW HORIZONS ARROKOTH ENCOUNTER COMPOSITION DATA","description":"This volume contains the New Horizons Arrokoth Encounter composition science theme team derived composition quantities based on analysis of color and spectral data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa_mvic-5-comp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:10.986172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V1.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:11.994113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V2.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:13.004664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V3.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:14.004230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V4.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:15.045083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V5.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:16.088222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM1-V6.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:17.101959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-2-KEM2-V1.0","title":"NEW HORIZONS LORRI KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:18.022065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V1.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:19.024920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V2.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:20.028604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V3.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:21.033793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V4.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:22.040840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V5.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:23.044790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM1-V6.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:24.049661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI-3-KEM2-V1.0","title":"NEW HORIZONS LORRI KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:25.060088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-LORRI/MVIC-5-GEOPHYS-V1.0","title":"NEW HORIZONS ARROKOTH ENCOUNTER GEOPHYSICAL DATA","description":"This volume contains the New Horizons Arrokoth Encounter geology and geophysics science theme team derived shape models and maps of albedo, elevation, and modeled surface temperature.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri_mvic-5-geophys-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:26.052286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V1.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:27.103638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V2.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:28.150939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V3.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:29.066852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V4.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:30.074950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V5.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:31.065966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-2-KEM1-V6.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:32.073468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V1.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:33.076713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V2.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:34.083516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V3.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:35.084937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V4.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:36.087918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V5.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:37.095243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-MVIC-3-KEM1-V6.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:38.110382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-2-KEM1-V1.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T15:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:39.172028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-2-KEM1-V2.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T00:08:02.176 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:40.172787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-2-KEM1-V3.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T00:08:02.354 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:41.106644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-2-KEM1-V4.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:50:13.000 and 2020-04-28T23:57:07.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:42.113110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-2-KEM1-V5.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:50:13.000 and 2021-02-28T23:54:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:43.119086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-2-KEM1-V6.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-13T23:59:59.011 and 2022-04-10T23:59:59.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:44.125183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-2-KEM2-V1.0","title":"NEW HORIZONS PEPSSI KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-27T23:59:59.145 and 2023-04-23T23:59:59.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:45.125628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-3-KEM1-V1.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T15:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:46.125180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-3-KEM1-V2.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T00:08:02.176 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:47.139840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-3-KEM1-V3.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T00:08:02.354 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:48.129467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-3-KEM1-V4.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:50:13.000 and 2020-04-28T23:57:07.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:49.143988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-3-KEM1-V5.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:50:13.000 and 2021-02-28T23:54:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:50.171639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-3-KEM1-V6.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-13T23:59:59.011 and 2022-04-10T23:59:59.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:51.224242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-PEPSSI-3-KEM2-V1.0","title":"NEW HORIZONS PEPSSI KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-27T23:59:59.145 and 2023-04-23T23:59:59.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:52.230962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-2-KEM1-V1.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 VERSION 1.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 1.0 mission phase are 2018-09-08T23:25:00.000 and 2019-01-02T05:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:53.155615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-2-KEM1-V2.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-09T09:08:02.037 and 2019-07-10T17:08:02.335 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:54.161691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-2-KEM1-V3.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-09T09:42:43.000 and 2020-02-11T20:56:39.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:55.156582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-2-KEM1-V4.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-09T09:42:43.037 and 2021-02-15T13:53:07.720 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:56.166196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-2-KEM1-V5.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-09T09:42:43.037 and 2022-02-18T17:17:34.294 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:57.175567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-3-KEM1-V1.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 VERSION 1.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 1.0 mission phase are 2018-09-08T23:25:00.000 and 2019-01-02T05:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:58.177258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-3-KEM1-V2.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-09T09:08:02.037 and 2019-07-10T17:08:02.335 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:59.182849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-3-KEM1-V3.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-09T09:42:43.000 and 2020-02-11T20:56:39.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:00.186626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-3-KEM1-V4.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-09T09:42:43.000 and 2021-02-15T13:53:06.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:01.190151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-REX-3-KEM1-V5.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-09T09:42:43.037 and 2022-01-13T03:49:42.409 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:02.231422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-2-KEM1-V1.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T21:08:02.011 and 2018-12-01T16:08:02.119 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:03.273430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-2-KEM1-V2.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T21:08:02.011 and 2019-01-20T23:08:02.167 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:04.290484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-2-KEM1-V3.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T21:08:02.011 and 2019-07-28T01:08:02.352 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:05.206289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-2-KEM1-V4.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T21:08:56.000 and 2020-03-29T12:10:30.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:06.206226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-2-KEM1-V5.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T21:08:56.000 and 2021-02-06T21:47:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:07.211305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-2-KEM1-V6.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T21:08:56.011 and 2022-04-09T19:49:11.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:08.219839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-2-KEM2-V1.0","title":"NEW HORIZONS SDC KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-09T20:36:38.318 and 2023-04-02T00:04:55.660 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:09.224509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-3-KEM1-V1.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T21:08:02.011 and 2018-12-01T16:08:02.119 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:10.233965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-3-KEM1-V2.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T21:08:02.011 and 2019-01-20T23:08:02.167 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:11.225940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-3-KEM1-V3.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T21:08:02.011 and 2019-07-28T01:08:02.352 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:12.234760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-3-KEM1-V4.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T21:08:56.000 and 2020-03-29T12:10:30.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:13.239782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-3-KEM1-V5.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T21:08:56.000 and 2021-02-06T21:47:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:14.293154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-3-KEM1-V6.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T21:08:56.011 and 2022-04-09T19:49:11.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:15.300711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SDC-3-KEM2-V1.0","title":"NEW HORIZONS SDC KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-09T20:36:38.318 and 2023-04-02T00:04:55.660 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:16.246474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-2-KEM1-V1.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T18:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:17.246565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-2-KEM1-V2.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T18:08:02.177 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:18.258052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-2-KEM1-V3.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T18:08:02.355 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:19.262784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-2-KEM1-V4.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T18:08:02.000 and 2020-04-29T18:08:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:20.265892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-2-KEM1-V5.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:48:34.000 and 2021-03-01T18:08:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:21.267716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-2-KEM1-V6.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T18:08:02.011 and 2022-04-30T18:08:02.337 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:22.277850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-2-KEM2-V1.0","title":"NEW HORIZONS SWAP KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-24T18:08:03.332 and 2023-04-24T18:08:02.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:23.276179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-3-KEM1-V1.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T18:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:24.286631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-3-KEM1-V2.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T18:08:02.177 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:25.308250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-3-KEM1-V3.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-29T19:08:02.353 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:26.347840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-3-KEM1-V4.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:43:46.000 and 2020-03-01T12:49:05.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:27.359516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-3-KEM1-V5.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:48:34.000 and 2021-02-25T06:03:45.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:28.300312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-3-KEM1-V6.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T20:43:46.011 and 2022-04-24T18:09:38.332 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:29.302151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-3-KEM2-V1.0","title":"NEW HORIZONS SWAP KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-24T18:08:03.332 and 2023-04-24T18:08:02.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:30.301849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-ALICE-2-JUPITER-V1.0","title":"NEW HORIZONS ALICE JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:31.302380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-ALICE-2-JUPITER-V2.0","title":"NEW HORIZONS ALICE JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:32.316477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-ALICE-3-JUPITER-V1.0","title":"NEW HORIZONS ALICE JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:33.321684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-ALICE-3-JUPITER-V2.0","title":"NEW HORIZONS ALICE JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:34.326440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LEISA-2-JUPITER-V1.0","title":"NEW HORIZONS LEISA JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:35.323674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LEISA-2-JUPITER-V1.1","title":"NEW HORIZONS LEISA JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-2-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:36.331483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LEISA-3-JUPITER-V1.0","title":"NEW HORIZONS LEISA JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:37.357062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LEISA-3-JUPITER-V1.1","title":"NEW HORIZONS LEISA JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-3-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:38.407319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-2-JUPITER-V1.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:39.416298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-2-JUPITER-V1.1","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:40.345467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-2-JUPITER-V2.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:41.350661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-2-JUPITER-V3.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:42.344267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-3-JUPITER-V1.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:43.356442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-3-JUPITER-V1.1","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:44.476105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-3-JUPITER-V2.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:45.365048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-LORRI-3-JUPITER-V3.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:46.370926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-MVIC-2-JUPITER-V1.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:47.367238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-MVIC-2-JUPITER-V2.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:48.372236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-MVIC-3-JUPITER-V1.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:49.412259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-MVIC-3-JUPITER-V2.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:50.462809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-PEPSSI-2-JUPITER-V1.0","title":"NEW HORIZONS PEPSSI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:51.379398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-PEPSSI-2-JUPITER-V1.1","title":"NEW HORIZONS PEPSSI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-2-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:52.395335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-PEPSSI-3-JUPITER-V1.0","title":"NEW HORIZONS PEPSSI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:53.392101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-PEPSSI-3-JUPITER-V1.1","title":"NEW HORIZONS PEPSSI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-3-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:54.392276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-REX-2-JUPITER-V1.0","title":"NEW HORIZONS REX JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:55.401555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-REX-2-JUPITER-V2.0","title":"NEW HORIZONS REX JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:56.409127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-REX-3-JUPITER-V1.0","title":"NEW HORIZONS REX JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:57.410889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SDC-2-JUPITER-V1.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:58.410506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SDC-2-JUPITER-V2.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:59.419513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SDC-2-JUPITER-V3.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:00.426891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SDC-2-JUPITER-V4.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:01.475886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SDC-3-JUPITER-V1.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:02.486226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SDC-3-JUPITER-V2.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:03.433008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SDC-3-JUPITER-V3.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:04.435695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SDC-3-JUPITER-V4.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:05.439619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-2-JUPITER-V1.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:06.448658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-2-JUPITER-V2.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:07.450531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-2-JUPITER-V3.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:08.451916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-2-JUPITER-V4.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:09.458346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-3-JUPITER-V1.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:10.462629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-3-JUPITER-V2.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:11.465685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-3-JUPITER-V3.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:12.484584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-J-SWAP-3-JUPITER-V4.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:13.530423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-ALICE-2-PLUTO-V1.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:14.544561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-ALICE-2-PLUTO-V2.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:15.469026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-ALICE-2-PLUTO-V3.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:16.478328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-ALICE-3-PLUTO-V1.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:17.483010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-ALICE-3-PLUTO-V2.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:18.484444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-ALICE-3-PLUTO-V3.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:19.496119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LEISA-2-PLUTO-V1.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:20.498862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LEISA-2-PLUTO-V2.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:21.505964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LEISA-2-PLUTO-V3.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:22.504641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LEISA-3-PLUTO-V1.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:23.513368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LEISA-3-PLUTO-V2.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:24.542614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LEISA-3-PLUTO-V3.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:25.591280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-2-PLUTO-V1.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:26.604009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-2-PLUTO-V2.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:27.551887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-2-PLUTO-V3.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:28.520864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-3-PLUTO-V1.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:29.528410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-3-PLUTO-V2.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:30.531010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-LORRI-3-PLUTO-V3.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:31.530423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-2-PLUTO-V1.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:32.534069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-2-PLUTO-V2.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:33.541396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-2-PLUTO-V3.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:34.546813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-3-PLUTO-V1.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:35.557863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-3-PLUTO-V2.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:36.603532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-MVIC-3-PLUTO-V3.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:37.611920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-2-PLUTO-V1.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:38.555486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-2-PLUTO-V2.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:39.568550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-2-PLUTO-V3.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:40.587329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-3-PLUTO-V1.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:41.571368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-3-PLUTO-V2.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:42.577856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-3-PLUTO-V3.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:43.578105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-PEPSSI-4-PLASMA-V1.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER DERIVED DATA","description":"This volume contains derived data taken by the New Horizons PEPSSI instrument during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-4-plasma-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:44.584446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-REX-2-PLUTO-V1.0","title":"NEW HORIZONS REX PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:45.588233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-REX-2-PLUTO-V2.0","title":"NEW HORIZONS REX PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:46.590258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-REX-3-PLUTO-V1.0","title":"NEW HORIZONS REX PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:47.612700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SDC-2-PLUTO-V1.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:48.663431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SDC-2-PLUTO-V2.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:49.671091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SDC-2-PLUTO-V3.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:50.605620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SDC-3-PLUTO-V1.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:51.611510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SDC-3-PLUTO-V2.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:52.615419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SDC-3-PLUTO-V3.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:53.618449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-2-PLUTO-V1.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:54.622478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-2-PLUTO-V2.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:55.638330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-2-PLUTO-V3.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:56.634287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-3-PLUTO-V1.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:57.639761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-3-PLUTO-V2.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:58.638810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-3-PLUTO-V3.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:59.668106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P-SWAP-5-DERIVED-SOLARWIND-V1.0","title":"NEW HORIZONS SWAP SOLAR WIND DATA AT PLUTO","description":"This volume contains solar wind data taken by the New Horizons SWAP instrument at Pluto encounter. NH_HELIOCENTRIC_SW_2015-07-14.CSV: The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind during the time frame of the Pluto Encounter. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft). Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems. NH_PLUTOCENTRIC_SW_2015-07-14.CSV: The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind during the time frame of the Pluto Encounter. The position of the spacecraft is given in two Pluto-centered coordinate systems, calculated at the mid-point of the observation. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP) instrument on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Pluto J2000 and Pluto IAU, calculated at the mid-point of the associated start and stop UTCs (in fields 1 and 2). These are standard Pluto centered coordinate systems.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-5-derived-solarwind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:00.721665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P/PSA-LEISA/MVIC-5-COMP-V1.0","title":"NEW HORIZONS PLUTO ENCOUNTER DERIVED COMPOSITION DATA","description":"This volume contains derived data products of the New Horizons Surface and Composition Science Theme Team including global color maps of Pluto and Charon, color image cubes and spectrum cubes, and absorption band maps from data taken during the Pluto Encounter mission phase. This volume also contains - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-leisa_mvic-5-comp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:01.730744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P/PSA-LORRI/ALICE/REX-5-ATMOS-V1.0","title":"NEW HORIZONS PLUTO ENCOUNTER DERIVED ATMOSPHERE DATA","description":"This volume contains atmospheric data obtained during the New Horizons fly-by of Pluto. The data includes solar atmospheric occultation count rates and opacities, unocculted solar count rates, atmospheric composition profiles for the species N2, CH4, C2H2, C2H4, and C2H6, lower atmospheric temperature and pressure profiles, and vertical I/F haze profiles.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_alice_rex-5-atmos-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:02.653167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P/PSA-LORRI/ALICE/REX-5-ATMOS-V2.0","title":"NEW HORIZONS PLUTO ENCOUNTER DERIVED ATMOSPHERE DATA","description":"This volume contains atmospheric data obtained during the New Horizons fly-by of Pluto. The data includes solar and stellar atmospheric occultation count rates and opacities, unocculted solar and stellar count rates, atmospheric composition profiles for the species N2, CH4, C2H2, C2H4, and C2H6, lower atmospheric temperature and pressure profiles, and vertical I/F haze profiles.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_alice_rex-5-atmos-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:03.667246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-P/PSA-LORRI/MVIC-5-GEOPHYS-V1.0","title":"NEW HORIZONS PLUTO ENCOUNTER DERIVED GEOPHYSICAL DATA","description":"This volume contains the New Horizons Pluto Encounter Geology and Geophysics Science Theme Team derived mosaics, topographic and bond albedo maps for Pluto and Charon. This volume also contains - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_mvic-5-geophys-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:04.660855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS ALICE KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:05.669470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS ALICE KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-11T09:08:01.430 and 2018-08-11T00:08:02.007 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:06.676287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-2-LAUNCH-V1.0","title":"NEW HORIZONS ALICE POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:07.677822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-2-LAUNCH-V2.0","title":"NEW HORIZONS ALICE POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:08.679804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS ALICE PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:09.690008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS ALICE PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:10.693010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS ALICE KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:11.727363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS ALICE KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-11T09:08:01.430 and 2018-08-11T00:08:02.007 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:12.775674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-3-LAUNCH-V1.0","title":"NEW HORIZONS ALICE POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:13.789485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-3-LAUNCH-V2.0","title":"NEW HORIZONS ALICE POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:14.716429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS ALICE PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:15.733481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS ALICE PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:16.714321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-ALICE-5-IPM-V1.0","title":"NEW HORIZONS ALICE INTERPLANETARY MEDIUM DERIVED DATA","description":"This volume contains derived data taken by the New Horizons Alice Ultraviolet Imaging Spectrograph to map Lyman-alpha emission from neutral hydrogen in the interplanetary medium. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-5-ipm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:17.714775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS LEISA KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:18.716367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS LEISA KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T21:08:01.686 and 2017-11-03T17:08:01.728 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:19.725460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-2-LAUNCH-V1.0","title":"NEW HORIZONS LEISA POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:20.723422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-2-LAUNCH-V1.1","title":"NEW HORIZONS LEISA POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:21.728229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LEISA PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:22.739517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS LEISA KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:23.786149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS LEISA KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T21:08:01.686 and 2017-11-03T17:08:01.728 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:24.799354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-3-LAUNCH-V1.0","title":"NEW HORIZONS LEISA POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:25.891447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-3-LAUNCH-V1.1","title":"NEW HORIZONS LEISA POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:26.747645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LEISA-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LEISA PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:27.759180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS LORRI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:28.756594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS LORRI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:29.761120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-LAUNCH-V1.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:30.763362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-LAUNCH-V1.1","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:31.769184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-LAUNCH-V2.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:32.777138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-LAUNCH-V3.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:33.778733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LORRI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:34.797252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS LORRI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:35.845106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:36.858843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:37.788453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-LAUNCH-V1.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:38.794310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-LAUNCH-V1.1","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:39.798947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-LAUNCH-V2.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:40.807999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-LAUNCH-V3.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:41.804621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:42.812861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-LORRI-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:43.806377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS MVIC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:44.818003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS MVIC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:45.827710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-LAUNCH-V1.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:46.850108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-LAUNCH-V2.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:47.900548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS MVIC PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:48.914138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:49.839251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:50.844831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-LAUNCH-V1.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:51.848809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-LAUNCH-V2.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:52.849778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-MVIC-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS MVIC PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:53.853051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS PEPSSI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:54.862004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS PEPSSI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2018-08-13T00:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:55.864757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-2-LAUNCH-V1.0","title":"NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:56.865864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-2-LAUNCH-V1.1","title":"NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:57.868618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS PEPSSI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:58.915692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS PEPSSI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:59.927280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS PEPSSI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:00.879885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS PEPSSI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2018-08-13T00:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:01.878222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-3-LAUNCH-V1.0","title":"NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:02.885125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-3-LAUNCH-V1.1","title":"NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:03.885989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS PEPSSI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:04.893995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS PEPSSI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:05.897107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-PEPSSI-4-PLASMA-V1.0","title":"NEW HORIZONS PEPSSI DERIVED DATA","description":"This volume contains higher level averaged flux data taken by the New Horizons PEPSSI instrument. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-4-plasma-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:06.899016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS REX KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:07.905062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS REX KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-03T00:08:01.422 and 2018-08-01T14:08:01.997 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:08.905594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-2-LAUNCH-V1.0","title":"NEW HORIZONS REX POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:09.926733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-2-LAUNCH-V2.0","title":"NEW HORIZONS REX POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:10.973711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS REX PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:11.986321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS REX PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:12.929327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS REX KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:13.934288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS REX KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-03T00:08:01.422 and 2018-08-01T14:08:01.997 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:14.934008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-3-LAUNCH-V1.0","title":"NEW HORIZONS REX POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:15.935738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-REX-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS REX PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:16.942583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS SDC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:17.944289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS SDC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2018-08-14T22:08:02.011 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:18.946292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-2-LAUNCH-V1.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:19.954139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-2-LAUNCH-V2.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:20.959327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-2-LAUNCH-V3.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:21.982363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-2-LAUNCH-V4.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:23.030359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS SDC PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:24.044636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS SDC PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:24.973884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS SDC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:25.976492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS SDC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2018-08-14T22:08:02.011 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:26.981372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-3-LAUNCH-V1.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:27.980414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-3-LAUNCH-V2.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:28.990495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-3-LAUNCH-V3.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:29.990555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-3-LAUNCH-V4.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:30.995189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS SDC PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:31.996830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SDC-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS SDC PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:32.994740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS SWAP KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:34.044501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS SWAP KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2018-08-13T02:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:35.087755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-LAUNCH-V1.0","title":"NEW HORIZONS SWAP POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:36.097683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-LAUNCH-V2.0","title":"NEW HORIZONS SWAP POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:37.010615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS SWAP PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2013-07-13T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:38.019793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS SWAP PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:39.025901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-2-PLUTOCRUISE-V3.0","title":"NEW HORIZONS SWAP PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:40.026470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS SWAP KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:41.032023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS SWAP KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2018-08-13T02:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:42.038950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-LAUNCH-V1.0","title":"NEW HORIZONS SWAP POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:43.041255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-LAUNCH-V2.0","title":"NEW HORIZONS SWAP POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:44.034050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2013-07-13T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:45.048062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:46.101162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-3-PLUTOCRUISE-V3.0","title":"NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:47.112993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-5-DERIVED-SOLARWIND-V1.0","title":"NEW HORIZONS SWAP SOLAR WIND DERIVED DATA","description":"This volume contains solar wind data taken by the New Horizons SWAP instrument. The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-5-derived-solarwind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:48.062068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-X-SWAP-5-DERIVED-SOLARWIND-V2.0","title":"NEW HORIZONS SWAP SOLAR WIND DERIVED DATA","description":"This volume contains solar wind and interstellar pick up ion data taken by the New Horizons SWAP instrument. Solar Wind ---------- The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems. Interstellar Pickup Ion ----------------------- The Comma-Separated Values (CSV) file provides the interstellar pickup ion density, temperature, and pressure.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-5-derived-solarwind-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:49.063971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"OAO-J-OASIS-3-RDR-SL9-V1.0","title":"VOLUME 1008","description":"This volume contains the data for the OAO/OASIS Jupiter Observation of SL9 Fragment K V1.0 data set, ID: OAO-J-OASIS-3-RDR-SL9-V1.0. For comparison with the Galileo fragment K results, the ground-based measurements in the near IR reported by the Okayama Astrophysical Observatory (OASIS) have been included in both FITS and PDS form.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/oao-j-oasis-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:50.064636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_ALICE-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:17:45.585318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_ALICE-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:17:47.089051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DERIVED-V3.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:17:58.117963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DERIVED-V4.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:17:59.636838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ARROKOTH_COMPOSITION-V1.0","title":"Menu: Skip within this page","description":"Abstract: This dataset presents surface composition maps of the trans-Neptunian object (486958) Arrokoth, encountered by the New Horizons spacecraft on its first extended mission to the Kuiper Belt. The dataset includes calibrated spectral cubes derived from observations made by the LEISA and MVIC spectral imagers.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:01.188274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ARROKOTH_GEOPHYSICS-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Encounter with (486958) Arrokoth: Derived Shape Models and Surface Maps, Version 1.0, J. Redfern, O. Umurhan, R. Beyer, J.D. Hofgartner, S. Porter, K.N. Singer, B. Enke, B. Keeney, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:02.717567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ARROKOTH_SHAPEMODEL_PORTER2024-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Porter, S., New Horizons Porter (2024) Arrokoth Shape Model Collection, C. Gobat, B. Enke, M.K. Crombie, B. Keeney, J.Wm. Parker, and K.N. Singer (eds.), urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0, NASA Planetary Data System, 2024.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:04.133101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"IPM_LYMAN_ALPHA-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Kuiper Belt Extended Mission: Alice Ultraviolet Imaging Spectrograph Scans of Lyman-alpha Emission from the Interplanetary Medium, Version 1.0, R. Gladstone, J. Redfern, B. Enke, K.N. Singer, B. Keeney, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:05.650034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"OSS_PLASMA_FLUXES-V1.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains one-hour averaged energetic particle flux rate values and counts-per-second generated by the New Horizons Particles and Plasma science team from data taken by the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument. The data covers a time range from early 2012 through late 2020. Flux rates and sums are presented for each of the six instrument look directions.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:09.666725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"REX-5-ATMOS-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains derived atmospheric data from the New Horizons mission during the Pluto Encounter mission phase, based on data from the Alice UV imaging spectrograph instrument, the Radio EXperiment instrument, and the LOng Range Reconnaissance Imager instrument. The data set includes a solar spectrum of Pluto and Charon; atmospheric composition on Pluto for N2, CH4, C2H2, C2H4, C2H6, and haze, and the haze brightness profiles; Pluto lower atmospheric temperature and pressure profiles; stellar occultation and appulse data of Pluto; and temperatures of the diametric and winter pole thermscans of Pluto.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:11.166780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PLUTOSYSTEM_COMPOSITION-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains global color maps, image cubes, and absorption band maps created from calibrated data taken during the PLUTO mission phase by the Linear Etalon Imaging Spectral Array (LEISA) instrument and the Multispectral Visible Imaging Camera (MVIC) instrument on the New Horizons spacecraft. Image cubes are provided per instrument and target body, covering the surfaces of Pluto, Charon, Nix, Hydra, and Kerberos. Color maps and absorption band maps for N2, CO, CH4, and H2O are provided for both Pluto and Charon.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:12.725022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PLUTOSYSTEM_GEOPHYSICS-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Encounter with the Pluto System: Mosaics, Topographic Maps, and Bond Albedo Maps for Pluto and Charon from LORRI and MVIC Observations, Version 1.0, T. Finley, A. Egan, J. Mukherjee, J. Salmon, B. Enke, R. Beyer, B. Buratti, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:14.249572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PLUTOSYSTEM_PLASMA_FLUXES-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"McNutt, R.L. Jr., New Horizons Encounter with the Pluto System: Time-Averaged Solar Winds Particle and Ion Fluxes from PEPSSI Observations, Version 1.0, T. Finley, L. Brown, M. Hill, P. Kollmann, A. Egan, B. Enke, J. Mukerjee, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:15.683430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PLUTOSYSTEM_SOLAR_WIND-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument during the Pluto encounter. This archive contains two data products. Each product compiles the CODMAC level 2 source data used, the solar wind speed, proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, spacecraft position and speed. The two product files differ in that one is in Heliographic Inertial (HGI) coordinates and the other is in Pluto centric J2000 and IAU J2000 coordinates.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:17.189803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DOCUMENTS-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:19.704105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DOCUMENTS-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:21.212231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DOCUMENTS-V3.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:22.717892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DOCUMENTS-V4.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:24.252500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DOCUMENTS-V4.1","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:25.779224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DOCUMENTS-V4.2","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:27.315239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_DOCUMENTS-V4.3","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.3/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:28.738153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"LORRI-V2.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains documents applicable to the LORRI instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:33.245529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"MISSION-V2.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Hirsch, B., T.F. Barnes IV, J. Redfern (eds.), New Horizons Mission Documents, Version 2.0, urn:nasa:pds:nh_documents:mission::2.0, NASA Planetary Data System, 2024.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:36.304991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PEPSSI-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Gicquel, A., and J. Redfern (eds.), New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument, urn:nasa:pds:nh_documents:pepssi::1.0, NASA Planetary Data System, 2024.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:37.842753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PEPSSI-V2.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Gicquel, A., B. Sharkey, J. Redfern, T. Finley, and B.T. Carcich (eds.), New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument, Version 2.0, urn:nasa:pds:nh_documents:pepssi::2.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:39.278662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RALPH-V2.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains documents applicable to the Ralph instrument package (housing both the MVIC and LEISA instruments) onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:42.288381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"REX-V1.0","title":"Menu: Skip within this page","description":"Abstract: This collection presents documentation and ancillary data tables specific to the Radio Science Experiment (REX) on the New Horizons Spacecraft. It covers both the primary New Horizons mission, as well as the first extended mission to the Kuiper Belt referred to as \"KEM1\".","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:43.806828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDC-V1.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains documents applicable to the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft. There are several tables that list the times when the instrument power was turned on and off.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:sdc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:45.307821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDC-V2.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Gicquel, A., J. Redfern, T. Finley, and B. Carcich (eds.), New Horizons Documents for the Student Dust Counter (SDC) Instrument, Version 2.0, urn:nasa:pds:nh_documents:sdc::2.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:46.802296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_LEISA-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:49.857246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_LEISA-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:51.312241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CALIBRATION_FILES-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Sharkey, B., A. Gicquel, and J. Redfern, Reference Files Used in Calibrating Data from the New Horizons Linear Etalon Imaging Spectral Array (LEISA), urn:nasa:pds:nh_leisa:calibration_files::1.0, NASA Planetary Data System, 2024.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:52.817776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_LORRI-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:00.421905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_LORRI-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:01.916669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_MVIC-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:10.922703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_MVIC-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:12.447252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_PEPSSI-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:21.436591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_PEPSSI-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:23.093233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"CALIBRATION_FILES-V2.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Sharkey, B., A. Gicquel, J. Redfern, B.T. Carcich, and T. Finley (eds.), New Horizons Calibrations for the PEPSSI Instrument, Version 2.0, urn:nasa:pds:nh_pepssi:calibration_files::2.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:26.791714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_REX-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Radio Science Experiment (REX) instrument onboard the New Horizons spacecraft, as well related Tracking and Navigation Files (TNF) used by the project.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:34.424094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_SDC-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:40.384174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_SDC-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:41.903106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_SECONDARY-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle provides a place to create collections containing only secondary members to support lists of product IDs related to derived data sets and analytical references in publications. The collection labels will indicate the relevant data sets or publications.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:50.926687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ALICEOCC_CHARON_SOURCES-V1.0","title":"Menu: Skip within this page","description":"Abstract: This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Charon provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:52.434499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"ALICEOCC_PLUTO_SOURCES-V1.0","title":"Menu: Skip within this page","description":"Abstract: This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Pluto provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:53.932436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_SWAP-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:55.487585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_SWAP-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:57.006494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PDS4-NH_SWAP-V2.1","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v2.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:58.541686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"KEM1_DATA_SUMMARY_PLOTS-V1.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the first Kuiper Belt Extended Mission KEM1 Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:02.977685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-3-PLUTO-V3.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:05.978338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PLUTO_DATA_SUMMARY_PLOTS-V1.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the Pluto Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Pluto. A gain test was also performed. The Pluto flyby was on the 14th of July 2015. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:07.542318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"NH-A-SWAP-2-PLUTO-V3.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:09.064027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHB2-M-KRFM-3-PHOTOMETRY-V1.0","title":"PHOBOS 2 KRFM PHOTOMETRY","description":"This volume contains a photometry table produced by the KRFM instrument aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-krfm-3-photometry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:27.006186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHB2-M-TS-2-EDITED-THRM/VIS-IMG-EDR-V1.0","title":"PHOBOS 2 TERMOSKAN EDITED IMAGES","description":"This volume contains edited visual and thermal IR images from the termoskan instrument flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-edited-thrm_vis-img-edr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:28.007584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHB2-M-TS-2-THERM/VIS-IMGEDR-V1.0","title":"PHOBOS 2 TERMOSKAN RAW IMAGES","description":"This volume contains raw visual and thermal images from the termoskan instrument flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-therm_vis-imgedr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:29.012905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"PHB2-M-VSK-2-EDR-V1.0","title":"PHOBOS 2 VSK-FREGAT IMAGES","description":"This volume contains images obtained by the three-channel TV imager VSK-FREGAT, flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-vsk-2-edr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:30.035075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-A-ROMAP-2-AST1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE STEINS FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Steins fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:31.079482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-A-ROMAP-2-AST1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE STEINS FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta STEINS fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:32.091483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-A-ROMAP-2-AST2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE LUTETIA FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Lutetia fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:33.025504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-A-ROMAP-2-AST2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE LUTETIA FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta LUTETIA fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:34.031579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-A-ROMAP-3-AST1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE STEINS FLY-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Steins fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:35.030866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-A-ROMAP-3-AST1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE STEINS FLY-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Steins fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:36.042297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-A-ROMAP-3-AST2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE LUTETIA FLY-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Lutetia fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:37.042863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-A-ROMAP-3-AST2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE LUTETIA FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Lutetia fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:38.048087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-COSAC-2-FSS-V1.0","title":"COSAC RAW DATA FOR THE FSS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:39.048662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-COSAC-2-RBD-V1.0","title":"COSAC RAW DATA FOR THE RBD COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:40.050197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-COSAC-3-FSS-V1.0","title":"COSAC CALIBRATED DATA FOR THE FSS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:41.057211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-COSAC-3-RBD-V1.0","title":"COSAC CALIBRATED DATA FOR THE RBD COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:42.090308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-MULTI-5-ANCDR-V1.0","title":"ROSETTA LANDER ANCILLARY DATA","description":"This archive contains the navigation and ancillary data for the Rosetta Lander during comet phases SDL (Separation Descent and Landing), RBD (Rebounds on comet surface) and FSS (First Science Sequence).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-multi-5-ancdr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:43.138839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-MULTI-5-ANCDR-V2.0","title":"ROSETTA LANDER ANCILLARY DATA","description":"This archive contains the navigation and ancillary data for the Rosetta Lander during comet phases SDL (Separation Descent and Landing), RBD (Rebounds on comet surface) and FSS (First Science Sequence).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-multi-5-ancdr-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:44.150301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-MUPUS-2-FSS-V1.0","title":"MUPUS CALIBRATED DATA FOR THE FSS MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:45.068314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-MUPUS-2-RBD-V1.0","title":"MUPUS EDITED DATA FOR THE RBD MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:46.074071","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-MUPUS-2-SDL-V1.0","title":"MUPUS CALIBRATED DATA FOR THE SDL MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:47.080874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-MUPUS-3-FSS-V1.0","title":"MUPUS EDITED DATA FOR THE FSS MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:48.079907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-MUPUS-3-RBD-V1.0","title":"MUPUS CALIBRATED DATA FOR THE RBD MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:49.087977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-MUPUS-3-SDL-V1.0","title":"MUPUS CALIBRATED DATA FOR THE SDL MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:50.092974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-PTOLEMY-2-FSS-V1.0","title":"PTOLEMY EDITED DATA FOR THE FSS PHASE","description":"This volume contains edited data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:51.098444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-PTOLEMY-2-RBD-V1.0","title":"PTOLEMY EDITED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBDS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:52.108677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-PTOLEMY-3-FSS-V1.0","title":"PTOLEMY CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains calibrated data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:53.106672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-PTOLEMY-3-RBD-V1.0","title":"PTOLEMY CALIBRATED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:54.151184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-PTOLEMY-5-FSS-V1.0","title":"PTOLEMY DERIVED DATA FOR THE FSS PHASE","description":"This volume contains derived data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-5-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:55.199240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROLIS-2-FSS-V1.0","title":"ROLIS EDITED DATA FOR THE FSS PHASE","description":"This volume contains ROLIS level 2 data products and supporting documentation from the FSS phase of Rosetta mission","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:56.205846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROLIS-2-SDL-V1.0","title":"ROLIS EDITED DATA FOR THE SDL PHASE","description":"This volume contains ROLIS level 2 data products and supporting documentation from the SDL phase of Rosetta mission","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:57.118327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROLIS-3-SDL-V1.0","title":"ROLIS CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains ROLIS level 3 data products and supporting documentation from the SDL phase of Rosetta mission","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-3-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:58.118159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-2-FSS-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:59.118217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-2-FSS-SPM-V1.0","title":"ROMAP SPM EDITED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:00.124962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-2-RBD-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:01.120379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-2-RBD-SPM-V1.0","title":"ROMAP SPM EDITED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:02.127775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-2-SDL-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-sdl-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:03.141514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-3-FSS-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:04.143188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-3-FSS-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:05.251417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-3-RBD-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:06.206933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-3-RBD-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:07.218287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-3-SDL-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-sdl-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:08.155649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-5-FSS-MAG-V1.0","title":"ROMAP MAG DERIVED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-fss-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:09.163177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-5-RBD-MAG-V1.0","title":"ROMAP MAG DERIVED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-rbd-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:10.158869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-ROMAP-5-SDL-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-sdl-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:11.167821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-SD2-3-FSS-V1.0","title":"SD2 CALIBRATED DATA FOR THE FSS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta comete mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sd2-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:12.171183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-SESAME-2-FSS-V1.0","title":"SESAME EDITED DATA FOR THE FSS PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:13.175604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-SESAME-2-SDL-V1.0","title":"SESAME EDITED DATA FOR THE SDL PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:14.180894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-SESAME-3-FSS-V1.0","title":"SESAME CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:15.189231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-C-SESAME-3-SDL-V1.0","title":"SESAME CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:16.182073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-APXS-2-PHC-V1.0","title":"APXS RAW DATA FOR THE PHC COMET PHASE","description":"This volume contains Rosetta APXS level 2 data products and supporting documentation from the PHC Comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-apxs-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:17.217542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-COSAC-2-PDCS-V1.0","title":"COSAC RAW DATA FOR THE PDCS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:18.264046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-COSAC-2-PHC-V1.0","title":"COSAC RAW DATA FOR THE PHC COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:19.277331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-COSAC-3-PDCS-V1.0","title":"COSAC CALIBRATED DATA FOR THE PDCS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:20.199421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-COSAC-3-PHC-V1.0","title":"COSAC CALIBRATED DATA FOR THE PHC COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:21.198851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-MUPUS-2-PHC-V1.0","title":"MUPUS CALIBRATED DATA FOR THE PHC MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:22.204116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-MUPUS-3-PHC-V1.0","title":"MUPUS CALIBRATED DATA FOR THE PHC MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:23.210941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-PTOLEMY-2-PDCS-V1.0","title":"PTOLEMY EDITED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:24.219344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-PTOLEMY-2-PHC-V1.0","title":"PTOLEMY EDITED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:25.222093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-PTOLEMY-3-PDCS-V1.0","title":"PTOLEMY CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:26.220853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-PTOLEMY-3-PHC-V1.0","title":"PTOLEMY CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:27.230589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROLIS-2-PHC-V1.0","title":"ROLIS EDITED DATA FOR THE PHC PHASE","description":"This volume contains ROLIS level 2 data products and supporting documentation from the PHC phase of Rosetta mission","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-rolis-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:28.230467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CR2-MAG-V1.0","title":"ROMAP MAG RAW DATA FOR THE CR2 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:29.276223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CR2-SPM-V1.0","title":"ROMAP SPM RAW DATA FOR THE CR2 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:30.327813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CR4A-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:31.241060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CR4A-SPM-V1.0","title":"ROMAP SPM RAW DATA FOR THE MARS SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR4 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:32.246605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CR4B-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR4B PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:33.248644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CR4B-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR4B","description":"This volume contains data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:34.253278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CR5-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:35.258431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CR5-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:36.265184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CVP-MAG-V1.0","title":"ROMAP MAG RAW DATA FOR THE COMMISSIONING PHASE","description":"This volume contains raw data (level 2)and supporting documentation from the Rosetta commissioning mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:37.256816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-CVP-SPM-V1.0","title":"ROMAP SPM RAW DATA FOR COMMISSIONING PHASE","description":"This volume contains raw data (level 2) and supporting documentation from the Rosetta Commissioning mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:38.268894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-PDCS-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-pdcs-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:39.280796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-PHC-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:40.281256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-PHC-SPM-V1.0","title":"ROMAP SPM EDITED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:41.334433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-RVM1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE RVM1 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:42.345865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-2-RVM1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE RVM1 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:43.295596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-CR2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR2 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:44.293394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-CR2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR2 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:45.298467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-CR4A-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:46.301455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-CR4A-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:47.304287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-CR4B-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR4B PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:48.310099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-CR4B-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR4B PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:49.311422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-CR5-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:50.318429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-CR5-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:51.319492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-PDCS-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-pdcs-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:52.341020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-PHC-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:53.390811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-PHC-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:54.404885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-RVM1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE RVM1 PHASE","description":"This volume contains data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:55.333447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-3-RVM1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE RVM1 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:56.336165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-5-PDCS-MAG-V1.0","title":"ROMAP MAG DERIVED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-pdcs-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:57.336384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-ROMAP-5-PHC-MAG-V1.0","title":"ROMAP MAG DERIVED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-phc-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:58.346031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-SD2-3-GRND-V1.0","title":"SD2 CALIBRATED DATA FROM THE GROUND REFERENCE MODEL TESTS","description":"This volume contains data and supporting documentation from the Rosetta Ground Reference Model tests during the First Science Sequence mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-grnd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:59.349527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-SD2-3-PDCS-V1.0","title":"SD2 CALIBRATED DATA FOR THE PDCS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase (Pre Delivery Calib Science","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:00.349155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-SD2-3-PHC-V1.0","title":"SD2 CALIBRATED DATA FOR THE PHC COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta comete mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:01.354610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-SESAME-2-PDCS-V1.0","title":"SESAME EDITED DATA FOR THE PDCS PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:02.361321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-SESAME-2-PHC-V1.0","title":"SESAME RAW DATA FOR THE PHC PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:03.365785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-SESAME-3-PDCS-V1.0","title":"SESAME CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:04.402568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-CAL-SESAME-3-PHC-V1.0","title":"SESAME RAW DATA FOR THE PHC PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:05.457260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-2-EAR1-MAG-V1.0","title":"ROMAP MAG RAW DATA FOR THE EARTH FLY-BY","description":"This volume contains calibated data (level 2) and supporting documentation from the Rosetta Earth fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:06.459919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-2-EAR1-SPM-V1.0","title":"ROMAP SPM RAW DATA FOR THE EARTH SWING-BY","description":"This volume contains raw data (level 2) and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:07.378893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-2-EAR2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:08.384114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-2-EAR2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:09.390204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-2-EAR3-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:10.387465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-2-EAR3-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:11.393467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-3-EAR1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains calibrated data (level 3) and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:12.402051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-3-EAR1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:13.405323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-3-EAR2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:14.404628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-3-EAR2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:15.411447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-3-EAR3-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:16.460409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-E-ROMAP-3-EAR3-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:17.473012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-M-ROMAP-2-MARS-MAG-V1.0","title":"ROMAP MAG RAW DATA FOR THE MARS SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Mars swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:18.415417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-M-ROMAP-2-MARS-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE MARS SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Mars swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:19.422013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-M-ROMAP-3-MARS-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE MARS SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Mars swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:20.431085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RL-M-ROMAP-3-MARS-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE MARS SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Mars swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:21.432670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-MIDAS-3-AST2-LUTE-V1.0","title":"MIDAS SCIENCE DATA FOR THE LUTETIA FLY-BY PHASE","description":"Lutetia Fly-by Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-midas-3-ast2-lute-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:22.441587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-MIDAS-3-AST2-LUTE-V3.0","title":"MIDAS SCIENCE DATA FOR THE LUTETIA FLY-BY PHASE","description":"Lutetia Fly-by Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-midas-3-ast2-lute-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:23.443378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-MIRO-2-AST1-STEINS-V1.0","title":"RAW MIRO DATA FOR THE STEINS FLY-BY PHASE","description":"This volume is the tenth containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Steins Flyby Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast1-steins-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:24.447913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-MIRO-2-AST2-LUTETIA-V1.0","title":"RAW MIRO DATA FOR THE LUTETIA FLY-BY PHASE","description":"This volume is the 14th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Lutetia Flyby Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast2-lutetia-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:25.453169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-MIRO-3-AST1-STEINS-V1.0","title":"RAW MIRO DATA FOR THE STEINS FLY-BY PHASE","description":"This volume is the 11th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Steins Fly-by Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast1-steins-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:26.454300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-MIRO-3-AST2-LUTETIA-V1.0","title":"RAW MIRO DATA FOR THE LUTETIA FLY-BY PHASE","description":"This volume is the 15th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Lutetia Fly-by Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast2-lutetia-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:27.467550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-NAVCAM-2-AST1-V1.0","title":"NAVCAM RAW DATA FOR STEINS FLYBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the STEINS flyby, September 2008 (closest approach on 5 September)","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-navcam-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:28.522276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-NAVCAM-2-AST1-V1.1","title":"NAVCAM RAW DATA FOR STEINS FLYBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the STEINS flyby, September 2008 (closest approach on 5 September)","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-navcam-2-ast1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:29.532025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-2-AST1-STEINSFLYBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSINAC-2-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast1-steinsflyby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:30.581933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-2-AST1-STEINSFLYBY-V2.0","title":"RAW OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast1-steinsflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:31.471183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast2-lutetiaflyby-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:32.525000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V2.0","title":"RAW OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast2-lutetiaflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:33.477570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-3-AST1-STEINSFLYBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSINAC-3-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast1-steinsflyby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:34.537123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-3-AST1-STEINSFLYBY-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast1-steinsflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:35.490293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast2-lutetiaflyby-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:36.555327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast2-lutetiaflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:37.487523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-4-AST1-STEINS-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:38.500767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-4-AST1-STEINS-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:39.531686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-4-AST1-STEINS-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:40.576848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-4-AST1-STEINSFLYBY-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steinsflyby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:41.588903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-4-AST2-LUTETIA-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:42.512497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-4-AST2-LUTETIA-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:43.513756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-4-AST2-LUTETIA-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:44.520945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC-4-AST2-LUTETIAFLYBY-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetiaflyby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:45.522837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC/OSIWAC-5-LUTETIA-SHAPE-V1.0","title":"ROOSI_9002: 21 LUTETIA SHAPE MODEL","description":"This delivery volume holds the data set containing the detailed plate shape model of asteroid 21 Lutetia, as derived from the images that were obtained by the Rosetta spacecraft around the time of its closest approach to the asteroid.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-lutetia-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:46.637117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSINAC/OSIWAC-5-STEINS-SHAPE-V1.0","title":"ROOSI_9001: 2867 STEINS SHAPE MODEL","description":"This delivery volume holds the data set containing the detailed plate shape model of asteroid 2867 Steins, as derived from the images that were obtained by the Rosetta spacecraft around the time of its closest approach to the asteroid.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-steins-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:47.531354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-2-AST1-STEINSFLYBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSIWAC-2-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast1-steinsflyby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:48.591907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-2-AST1-STEINSFLYBY-V2.0","title":"RAW OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast1-steinsflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:49.534218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast2-lutetiaflyby-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:50.602711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V2.0","title":"RAW OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast2-lutetiaflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:51.585760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-3-AST1-STEINSFLYBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSIWAC-3-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast1-steinsflyby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:52.692656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-3-AST1-STEINSFLYBY-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast1-steinsflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:53.645413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast2-lutetiaflyby-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:54.602676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast2-lutetiaflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:55.563001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-4-AST1-STEINS-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:56.568565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-4-AST1-STEINS-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:57.573757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-4-AST1-STEINS-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:58.572496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-4-AST1-STEINSFLYBY-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steinsflyby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:59.581603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-4-AST2-LUTETIA-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:00.584678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-4-AST2-LUTETIA-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:01.591051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-4-AST2-LUTETIA-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:02.598750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-OSIWAC-4-AST2-LUTETIAFLYBY-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetiaflyby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:03.645312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-ROSINA-2-AST1-V1.0","title":"RO-A-ROSINA-2-AST1-V1.0","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Steins Flyby. The dataset includes data from COPS and DFMS. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rosina-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:04.660258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCICA-2-AST2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-2-ast2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:05.608162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCICA-2-AST2-RAW-V2.0","title":"ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 EDITED","description":"ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-2-ast2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:06.608793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCICA-3-AST2-CALIB-V1.0","title":"ROSETTA-ORBITER LUTETIA RPCICA 3 AST2 CALIBRATED","description":"ROSETTA-ORBITER LUTETIA RPCICA 3 AST2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-3-ast2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:07.610953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCICA-4-AST2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR_CTS","description":"ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:08.613570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCICA-4-AST2-CORR-V1.0","title":"ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR","description":"ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:09.625458","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCIES-2-AST1-V1.0","title":"RPCIES RAW DATA FOR THE STEINS FLYBY","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:10.631786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCIES-2-AST2-V1.0","title":"RPCIES RAW DATA FOR THE LUTETIA FLYBY","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the LUTETIA flyby in July 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:11.630823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCLAP-2-AST1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR AST1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the STEINS FLY-BY phase in 2008 where the primary target was the asteroid 2867 STEINS. This particular data set contains data for the time period 2008-08-04T00:00:00.000 -- 2008-10-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:12.629495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCLAP-2-AST2-EDITED-V1.0","title":"RPCLAP EDITED RAW DATA FOR LUTETIA FLY-BY","description":"Rosetta edited LAP data from the Rosetta flyby of asteroid 21 Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast2-edited-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:13.638905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCLAP-2-AST2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR AST2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the LUTETIA FLY-BY phase in 2010 where the primary target was the asteroid 21 LUTETIA. This particular data set contains data for the time period 2010-05-17T00:00:00.000 -- 2010-09-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:14.657701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCLAP-3-AST1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR AST1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the STEINS FLY-BY phase in 2008 where the primary target was the asteroid 2867 STEINS. This particular data set contains data for the time period 2008-08-04T00:00:00.000 -- 2008-10-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:15.703065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCLAP-3-AST2-CALIB-V1.0","title":"RPCLAP EDITED RAW DATA FOR LUTETIA FLY-BY","description":"Rosetta edited LAP data from the Rosetta flyby of asteroid 21 Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:16.717501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCLAP-3-AST2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR AST2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the LUTETIA FLY-BY phase in 2010 where the primary target was the asteroid 21 LUTETIA. This particular data set contains data for the time period 2010-05-17T00:00:00.000 -- 2010-09-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:17.655122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-2-AST1-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE STEINS FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:18.651313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-2-AST1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE STEINS FLYBY (AST1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:19.661576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-2-AST2-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE LUTETIA FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:20.668349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-2-AST2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE LUTETIA FLYBY (AST2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:21.671882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-3-AST1-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE STEINS FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast1-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:22.674591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-3-AST1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: STEINS FLYBY (AST1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:23.677452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-3-AST2-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE LUTETIA FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast2-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:24.683393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-3-AST2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: LUTETIA FLYBY (AST2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:25.689612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-4-AST1-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE STEINS FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast1-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:26.717569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-4-AST1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: STEINS FLYBY (AST1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:27.763996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-4-AST2-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE LUTETIA FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast2-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:28.773025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMAG-4-AST2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: LUTETIA FLYBY (AST2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:29.699182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMIP-3-AST1-V1.0","title":"RPCMIP CALIBRATED DATA FOR THE STEINS PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the STEINS phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:30.699823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMIP-3-AST1-V2.0","title":"RPCMIP STEINS FLY-BY L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:31.701182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A-RPCMIP-3-AST2-V1.0","title":"RPCMIP LUTETIA FLY-BY L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:32.704064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A/CAL-ALICE-2-AST1-V1.0","title":"ROSETTA ALICE IN AST 1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:33.707727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A/CAL-ALICE-2-AST2-V1.0","title":"ROSETTA ALICE IN AST2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:34.705273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A/CAL-ALICE-3-AST1-V1.0","title":"ROSETTA ALICE IN AST 1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:35.713168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A/CAL-ALICE-3-AST2-V1.0","title":"ROSETTA ALICE IN AST 2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:36.717133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A/CAL-ALICE-4-AST1-V1.0","title":"ROSETTA ALICE IN AST 1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:37.725887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A/CAL-ALICE-4-AST2-V1.0","title":"ROSETTA ALICE IN AST2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:38.774674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A/CAL-NAVCAM-2-AST2-V1.0","title":"NAVCAM RAW DATA FOR LUTETIA FLYBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the LUTETIA flyby, July 2010 (closest approach at 15:45 on 10 July)","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-navcam-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:39.786735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-A/CAL-NAVCAM-2-AST2-V1.1","title":"NAVCAM RAW DATA FOR LUTETIA FLYBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the LUTETIA flyby, July 2010 (closest approach at 15:45 on 10 July) in its journey to comet CG/CP67.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-navcam-2-ast2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:40.722649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-COSIMA-3-V1.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:41.723057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-COSIMA-3-V2.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:42.726370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-COSIMA-3-V3.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:43.723272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-COSIMA-3-V4.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO ESCORT PHASE 3","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:44.729175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-COSIMA-3-V5.0","title":"ROSETTA COSIMA DATA UPTO ESCORT PHASE 4","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:45.735437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-COSIMA-3-V6.0","title":"ROSETTA COSIMA DATA","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:46.733031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-ESC1-COMET-ESCORT-1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 1' phase, from the November 21, 2014 until March 10, 2015 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc1-comet-escort-1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:47.738401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-ESC1-COMET-ESCORT-1-V1.1","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 1' phase, from the November 21, 2014 until March 10, 2015 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc1-comet-escort-1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:48.738011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-ESC2-COMET-ESCORT-2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 2' phase, from the March 11, 2015 until June 30, 2015 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc2-comet-escort-2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:49.781927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-ESC2-COMET-ESCORT-2-V1.1","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 2' phase, from the March 11, 2015 until June 30, 2015 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc2-comet-escort-2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:50.831671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-ESC3-COMET-ESCORT-3-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 3 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 3' phase, from the July 1, 2015 until October 20, 2015. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc3-comet-escort-3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:51.747791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-ESC4-COMET-ESCORT-4-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 4 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 4' phase, from the October 21, 2015 until January 12, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc4-comet-escort-4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:52.752888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-EXT1-EXTENSION-1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 1' phase, from the January 13, 2016 until April 5, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext1-extension-1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:53.751118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-EXT2-EXTENSION-2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 2' phase, from the April 6, 2016 until June 30, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext2-extension-2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:54.753222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-EXT3-EXTENSION-3-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 3 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 3' phase, from the July 1, 2016 until September 30, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext3-extension-3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:55.759435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-PRL-PRELANDING-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING PRELANDING PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Prelanding' phase, from the January 21, 2014 until November 20, 2014 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-prl-prelanding-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:56.765822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-3-PRL-PRELANDING-V1.1","title":"ROSETTA GIADA EXPERIMENT DATA DURING PRELANDING PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Prelanding' phase, from the January 21, 2014 until November 20, 2014 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-prl-prelanding-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:57.763517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-GIA-5-67P-DUST-MAPS-V1.0","title":"ROSETTA GIADA EXPERIMENT DUST MAPS","description":"This volume contains HIGH level products produced by GIADA TEAM using the data of the scientific phase of the ROSETTA mission from the July 6, 2014 until September 30, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-5-67p-dust-maps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:58.760842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC1-SAMPLES-V1.0","title":"RAW MIDAS DATA FOR THE COMET ESCORT 1 PHASE","description":"Comet Escort Phase 1","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:59.764009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC1-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 1 PHASE","description":"Comet Escort Phase 1","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:00.798212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC1-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 1 PHASE","description":"Escort Phase 1 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:01.842433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC2-SAMPLES-V1.0","title":"RAW MIDAS DATA FOR THE COMET ESCORT 2 PHASE","description":"Comet Escort Phase 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:02.853171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC2-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 2 PHASE","description":"Comet Escort Phase 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:03.775049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC2-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 2 PHASE","description":"Escort Phase 2 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:04.780590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC3-SAMPLES-V1.0","title":"RAW MIDAS DATA FOR THE COMET ESCORT 3 PHASE","description":"Comet Escort Phase 3","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:05.780125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC3-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 3 PHASE","description":"Comet Escort Phase 3","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:06.785567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC3-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 3 PHASE","description":"Escort Phase 3 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:07.780918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC4-SAMPLES-V1.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE","description":"Comet Escort Phase 4","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:08.784902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC4-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE","description":"Comet Escort Phase 4","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:09.788937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-ESC4-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE","description":"Escort Phase 4 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:10.788960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT1-SAMPLES-V1.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"Extended Mission Phase 1","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:11.806029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT1-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"Extended Mission Phase 1","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:12.847846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT1-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"Extension Phase 1 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:13.865272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT2-SAMPLES-V1.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"Extended Mission Phase 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:14.802096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT2-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"Extended Mission Phase 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:15.806842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT2-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"Extension Phase 2 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:16.808316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT3-SAMPLES-V1.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"Extended Mission Phase 3","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:17.806225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT3-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"Extended Mission Phase 3","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:18.804172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-3-EXT3-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"Extension Phase 3 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:19.810842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-5-PRL-TO-EXT3-V1.0","title":"MIDAS DUST PARTICLE CATALOG FOR THE COMET ESCORT PHASES","description":"MIDAS Dust Particle Catalog","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-5-prl-to-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:20.814067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIDAS-5-PRL-TO-EXT3-V2.0","title":"MIDAS DUST PARTICLE CATALOG FOR THE COMET ESCORT PHASES","description":"MIDAS Dust Particle Catalog","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-5-prl-to-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:21.815632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-CR2-9P-TEMPEL1-V1.0","title":"RAW MIRO DATA FOR THE CRUISE-2 PHASE","description":"This volume is the fourth containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the second Cruise mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-cr2-9p-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:22.819247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-ESC1-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 1 PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the COMET ESCORT 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:23.865555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-ESC2-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 2 PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains raw data obtained during the COMET ESCORT 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:24.876651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-ESC3-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 3 PHASE","description":"This volume contains data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the COMET ESCORT 3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:25.919882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-ESC4-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the COMET ESCORT 4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc4-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:26.825887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-EXT1-67P-V1.0","title":"RAW MIRO DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:28.067030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-EXT2-67P-V1.0","title":"RAW MIRO DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:28.831578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-EXT3-67P-V1.0","title":"RAW MIRO DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:29.829669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-2-PRL-67P-V1.0","title":"RAW MIRO DATA FOR THE PRELANDING PHASE","description":"This volume is the 16th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Prelanding Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-prl-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:30.838038","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-CR2-9P-TEMPEL1-V1.0","title":"CALIBRATED MIRO DATA FOR THE CRUISE-2 PHASE","description":"This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the second Cruise mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-cr2-9p-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:31.838432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-CR2-9P-TEMPEL1-V1.1","title":"CALIBRATED MIRO DATA FOR THE CRUISE-2 PHASE","description":"This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the second Cruise mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-cr2-9p-tempel1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:32.837492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC1-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 1 PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the COMET ESCORT 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:33.836666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC1-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:34.872681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC1-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:35.923906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC2-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE COMET ESCORT 2 PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains calibrated data obtained during the COMET ESCORT 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:36.933907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC2-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc2-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:37.852277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC3-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE COMET ESCORT 3 PHASE","description":"This volume contains data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the COMET ESCORT 3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:38.852661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC3-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc3-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:39.855127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC4-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE COMET ESCORT 4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the COMET ESCORT 4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc4-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:40.860797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-ESC4-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc4-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:41.862156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-EXT1-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:42.860093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-EXT1-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXT1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext1-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:43.864295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-EXT2-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:44.870840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-EXT2-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXT2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext2-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:45.881519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-EXT3-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:46.934912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-EXT3-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXT3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext3-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:47.941666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-PRL-67P-V1.0","title":"RAW MIRO DATA FOR THE PRELANDING PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Prelanding Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:49.094205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-PRL-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET PRL Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:50.139355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-3-PRL-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET PRL Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:51.092354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-ESC1-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:51.880285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-ESC1-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc1-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:52.900053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-ESC2-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:53.881282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-ESC2-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc2-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:54.889390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-ESC3-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:55.892544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-ESC3-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc3-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:56.891769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-ESC4-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc4-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:57.937067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-ESC4-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc4-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:58.957358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-EXT1-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:59.895547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-EXT1-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext1-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:00.895722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-EXT2-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:01.900298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-EXT2-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext2-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:02.901499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-EXT3-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:03.911663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-EXT3-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext3-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:04.911426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-PRL-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA PRL Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-prl-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:05.919357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MIRO-4-PRL-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA PRL Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-prl-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:06.918894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MULTI-5-67P-SHAPE-V1.0","title":"ROSETTA 67P/CHURYUMOV-GERASIMENKO SHAPE MODELS","description":"This delivery volume holds the data set containing shape models of Comet 67P/Churyumov-Gerasimenko (1969 R1) produced by the Rosetta mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:07.917772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-MULTI-5-67P-SHAPE-V2.0","title":"ROSETTA 67P/CHURYUMOV-GERASIMENKO SHAPE MODELS","description":"This delivery volume holds the data set containing shape models of Comet 67P/Churyumov-Gerasimenko (1969 R1) produced by the Rosetta mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:08.952147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC1-MTP010-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Nov 2014 to Dec 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:10.004957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC1-MTP010-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Nov 2014 to Dec 2014 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp010-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:10.917688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC1-MTP011-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Dec 2014 to Jan 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:11.926139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC1-MTP011-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Dec 2014 to Jan 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp011-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:12.924175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC1-MTP012-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Jan 2015 to Feb 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:13.932951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC1-MTP012-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Jan 2015 to Feb 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp012-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:14.936541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC1-MTP013-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Feb 2015 to Mar 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:15.939400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC1-MTP013-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Feb 2015 to Mar 2015 when at the vicinity of comet 67P/C-G","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp013-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:16.942335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC2-MTP014-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Mar 2015 to Apr 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:17.942604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC2-MTP014-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Mar 2015 to Apr 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp014-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:18.946663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC2-MTP015-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Apr 2015 to May 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:19.965300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC2-MTP015-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Apr 2015 to May 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp015-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:21.013973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC2-MTP016-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 5, Ma 2015 to 2 Jun 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:22.023937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC2-MTP016-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 5, Ma 2015 to 2 Jun 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp016-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:22.949729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC2-MTP017-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, JUN 2015 to 30 Jun 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:23.955135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC2-MTP017-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, JUN 2015 to 30 Jun 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp017-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:24.959888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC3-MTP018-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 30 Jun 2015 to 28 Jul 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:25.953569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC3-MTP018-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 30 Jun 2015 to 28 Jul 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp018-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:26.964152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC3-MTP019-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 28 Jul 2015 to 25 Aug 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:27.964747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC3-MTP019-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 28 Jul 2015 to 25 Aug 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp019-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:28.963700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC3-MTP020-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 25th Aug 2015 to 22nd Sep 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:29.967869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC3-MTP020-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 25th Aug 2015 to 22nd Sep 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp020-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:30.980055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC3-MTP021-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 22nd Sep 2015 to 20th Oct 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:32.024695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC3-MTP021-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 22nd Sep 2015 to 20th Oct 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp021-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:33.034808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC4-MTP022-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 20, Oct 2015 to 17 Nov 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:33.979629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC4-MTP022-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 20, Oct 2015 to 17 Nov 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp022-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:34.981705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC4-MTP023-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 11, Nov 2015 to 15 Dec 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:35.980399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC4-MTP023-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 11, Nov 2015 to 15 Dec 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp023-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:36.984689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC4-MTP024-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 15 Dec 2015 to 12 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:37.983965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-ESC4-MTP024-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 15 Dec 2015 to 12 Jan 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp024-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:38.986914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT1-MTP025-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1, 12 Jan 2016 to 9 Feb 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:39.986045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT1-MTP025-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1, 12 Jan 2016 to 9 Feb 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp025-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:41.002114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT1-MTP026-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 9 Feb 2016 to 8 Mar 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:41.992962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT1-MTP026-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 9 Feb 2016 to 8 Mar 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp026-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:43.031681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT1-MTP027-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT1 8, Mar 2016 to 5 Apr 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:44.079795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT1-MTP027-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT1 8, Mar 2016 to 5 Apr 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp027-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:45.092997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT2-MTP028-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, 5th Apr 2016 to 3rd May 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:45.999440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT2-MTP028-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, 5th Apr 2016 to 3rd May 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp028-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:47.006720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT2-MTP029-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3, May 2016 to 31 May 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:48.008368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT2-MTP029-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3, May 2016 to 31 May 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp029-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:49.011752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT2-MTP030-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT2 from 31st May 2016 to 28th Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:50.011645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT2-MTP030-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT2 from 31st May 2016 to 28th Jun 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp030-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:51.010456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP031-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 28, Jun 2016 to 26 Jul 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:52.013329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP031-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 28, Jun 2016 to 26 Jul 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp031-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:53.019112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP032-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26 Jul 2016 to 9 Aug 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:54.042262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP032-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26 Jul 2016 to 9 Aug 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp032-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:55.092295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP033-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT3, from Aug, 9 2016 to Sep, 2 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:56.102112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP033-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT3, from Aug, 9 2016 to Sep, 2 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp033-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:57.029909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP034-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Ext 3 phase, Sep, 2 2016 to 26 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:58.030231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP034-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Ext 3 phase, Sep, 2 2016 to 26 Sep 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp034-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:59.029367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP035-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26, Sep 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:00.036956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-EXT3-MTP035-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26, Sep 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp035-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:01.036999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP003-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, May 7th 2014 to June 4th 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:02.041017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP003-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, May 7th 2014 to June 4th 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp003-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:03.042705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP004-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jun 5th 2014 to July 2nd 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:04.042755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP004-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jun 5th 2014 to July 2nd 2014 in its journey to comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp004-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:05.051670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP005-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jul 2014 to Aug 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:06.102122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP005-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jul 2014 to Aug 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp005-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:07.113069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP006-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING MTP006","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Aug 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:08.049679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP006-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING MTP006","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Aug 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp006-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:10.295813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP007-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING MTP007","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sept 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:10.847539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP007-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING MTP007","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sept 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp007-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:11.871594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP008-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sep 2014 to Oct 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:12.915093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP008-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sep 2014 to Oct 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp008-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:13.930515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP009-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Oct 2014 to Nov 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:14.851651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-2-PRL-MTP009-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Oct 2014 to Nov 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp009-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:15.856343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC1-MTP010-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP010 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 22 Nov. 2014, 04:19:32 to 19 Dec. 2014, 22:35:03, during the ESCORT 1 MTP010 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:16.855322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC1-MTP011-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP011 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 20 Dec. 2014, 04:19:32 to 13 Jan. 2015, 23:22:57, during the ESCORT 1 MTP011 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:17.860737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC1-MTP012-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP012 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 14 Jan. 2015, 04:19:32 to 10 Feb. 2015, 23:22:55, during the ESCORT 1 MTP012 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:18.864820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC1-MTP013-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP013 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 11 Feb. 2015, 04:38:06 to 10 Mar. 2015, 23:22:54, during the ESCORT 1 MTP013 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:19.868551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC2-MTP014-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP014 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 11 Mar. 2015, 04:36:19 to 08 Apr. 2015, 11:22:54, during the ESCORT 2 MTP014 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:20.872544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC2-MTP015-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP015 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 08 Apr. 2015, 12:58:02 to 05 May. 2015, 23:07:19, during the ESCORT 2 MTP015 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:21.869725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC2-MTP016-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP016 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 06 May. 2015, 06:02:16 to 02 Jun. 2015, 23:02:20, during the ESCORT 2 MTP016 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:22.874634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC2-MTP017-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP017 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 03 Jun. 2015, 06:02:17 to 30 Jun. 2015, 23:02:19, during the ESCORT 2 MTP017 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:23.924053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC3-MTP018-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP018 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Jul. 2015, 04:38:43 to 28 Jul. 2015, 23:02:19, during the ESCORT 3 MTP018 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:24.940130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC3-MTP019-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP019 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 29 Jul. 2015, 06:02:17 to 25 Aug. 2015, 23:02:18, during the ESCORT 3 MTP019 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:25.879612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC3-MTP020-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP020 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 26 Aug. 2015, 06:02:17 to 22 Sep. 2015, 23:02:19, during the ESCORT 3 MTP020 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:26.884415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC3-MTP021-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP021 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Sep. 2015, 06:02:17 to 20 Oct. 2015, 23:02:19, during the ESCORT 3 MTP021 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:27.884102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC4-MTP022-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP022 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 21 Oct. 2015, 06:02:18 to 17 Nov. 2015, 23:02:19, during the ESCORT 4 MTP022 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:28.882301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC4-MTP023-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP023 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 18 Nov. 2015, 06:02:17 to 15 Dec. 2015, 23:02:20, during the ESCORT 4 MTP023 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:29.894053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-ESC4-MTP024-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP024 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 16 Dec. 2015, 06:02:17 to 12 Jan. 2016, 23:02:20, during the ESCORT 4 MTP024 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:30.891939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT1-MTP025-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP025 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 13 Jan. 2016, 06:02:17 to 09 Feb. 2016, 23:17:55, during the EXTENSION 1 MTP025 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:31.894433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT1-MTP026-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP026 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 10 Feb. 2016, 06:04:22 to 08 Mar. 2016, 23:17:57, during the EXTENSION 1 MTP026 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:32.899355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT1-MTP027-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP027 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 09 Mar. 2016, 06:04:22 to 05 Apr. 2016, 23:17:53, during the EXTENSION 1 MTP027 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:33.906414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT2-MTP028-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP028 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 06 Apr. 2016, 06:04:22 to 03 May. 2016, 23:17:53, during the EXTENSION 2 MTP028 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:34.937561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT2-MTP029-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP029 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 04 May. 2016, 06:04:22 to 31 May. 2016, 23:17:53, during the EXTENSION 2 MTP029 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:35.985426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT2-MTP030-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP030 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Jun. 2016, 06:04:21 to 28 Jun. 2016, 23:17:54, during the EXTENSION 2 MTP030 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:36.996118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT3-MTP031-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP031 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 29 Jun. 2016, 06:04:23 to 26 Jul. 2016, 23:17:53, during the EXTENSION 3 MTP031 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:37.907646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT3-MTP032-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP032 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 27 Jul. 2016, 06:04:22 to 09 Aug. 2016, 23:17:53, during the EXTENSION 3 MTP032 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:38.908142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT3-MTP033-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP033 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 10 Aug. 2016, 01:59:31 to 02 Sep. 2016, 06:02:03, during the EXTENSION 3 MTP033 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:39.914221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT3-MTP034-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP034 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 02 Sep. 2016, 11:19:32 to 26 Sep. 2016, 06:02:03, during the EXTENSION 3 MTP034 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:40.916045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-EXT3-MTP035-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP035 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 26 Sep. 2016, 13:10:32 to 30 Sep. 2016, 00:59:13, during the EXTENSION 3 MTP035 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:41.912856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-PRL-MTP003-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP003 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 08 May. 2014, 13:18:02 to 04 Jun. 2014, 10:32:05, during the PRELANDING MTP003 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:42.926747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-PRL-MTP004-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP004 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 05 Jun. 2014, 11:19:02 to 02 Jul. 2014, 08:17:04, during the PRELANDING MTP004 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:43.922746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-PRL-MTP005-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP005 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 03 Jul. 2014, 09:00:01 to 01 Aug. 2014, 09:53:18, during the PRELANDING MTP005 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:44.922181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-PRL-MTP006-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP006 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Aug. 2014, 11:07:18 to 02 Sep. 2014, 06:22:56, during the PRELANDING MTP006 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:45.947863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-PRL-MTP007-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP007 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 02 Sep. 2014, 11:34:31 to 23 Sep. 2014, 09:40:03, during the PRELANDING MTP007 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:46.998532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-PRL-MTP008-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP008 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Sep. 2014, 11:34:32 to 24 Oct. 2014, 06:22:59, during the PRELANDING MTP008 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:48.007463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-NAVCAM-3-PRL-MTP009-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP009 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 24 Oct. 2014, 11:34:32 to 21 Nov. 2014, 23:00:03, during the PRELANDING MTP009 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:48.927336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSINAC 2 EDR MTP 010 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:49.989547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:50.997381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:51.929641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 011 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:53.001941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:53.999187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:54.947843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 012 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:55.989517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:57.023043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:58.007763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 013 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:59.063132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:00.070544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:02.300582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 014 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:03.371116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:04.362704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:05.341473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 015 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:06.464077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:07.451214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:08.319247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 016 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:09.382028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:10.381806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:11.327553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 017 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:12.374180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:13.389456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:14.331981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 018 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:15.398502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:16.418050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:17.406383","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 019 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:18.463245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:19.470136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:20.351977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 2 EDR MTP020 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:21.403856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m20-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:22.349788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 2 EDR MTP021 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:23.415970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m21-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:24.359476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP022 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:25.411738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m22-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:26.362903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP023 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:27.419924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m23-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:28.413121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP024 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:29.474561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m24-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:30.373029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP025 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:31.432412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m25-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:32.376524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP026 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:33.442817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m26-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:34.382469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP027 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:35.444746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m27-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:36.387080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSINAC 2 EDR MTP028 V1.0, RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:37.462155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m28-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:38.391776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:39.482663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M29-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m29-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:40.476934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:41.528274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M30-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m30-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:42.399257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:43.442142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M31-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m31-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:44.408812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:45.457272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M32-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m32-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:46.408648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:47.461877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M33-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m33-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:48.413484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:49.464240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M34-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m34-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:50.437423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:51.538419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M35-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m35-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:52.599121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M01 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:53.547861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 001 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:54.486097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:55.490716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:56.431013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M02 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:57.487449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 002 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:58.555688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:59.496642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:00.440078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M03 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:01.501523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 003 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:02.550883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:03.550203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:04.460278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M04 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:05.501466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 004 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:06.695364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:07.518308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:08.458915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 004B V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:09.521972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 005 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:10.527456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:11.523885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:12.457212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 006 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:13.587978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:14.609937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:15.565041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 007 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:16.618556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:17.537680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:18.490798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 007B V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:19.544550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 008 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:20.539985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:21.544205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:22.491183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 009 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:23.535129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:24.568084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:25.567497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSINAC 3 RDR MTP 010 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:26.613461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:27.626511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:28.508663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 011 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:29.556774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:30.554070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:31.510745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 012 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:32.569538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:33.583243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:34.515919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 013 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:35.587443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:36.631643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:37.584778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 014 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:38.679409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:39.585555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:40.527686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 015 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:41.590490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:42.589263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:43.540703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 016 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:44.602669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:45.594997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:46.543303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 017 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:47.650212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:48.685767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:49.549190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 018 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:50.694826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:51.603060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:52.568274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 019 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:53.610724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:54.610418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:55.564575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 3 RDR MTP020 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:56.624871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m20-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:57.574132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 3 RDR MTP021 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:58.653641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m21-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:59.651541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP022 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:00.694190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m22-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:01.581410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP023 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:02.633029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m23-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:03.582757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP024 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:04.633029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m24-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:05.592182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP025 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:06.667291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m25-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:07.596508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP026 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:08.639111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m26-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:09.611066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP027 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:10.723154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m27-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:11.664290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSINAC 3 RDR MTP028 V1.0, RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:12.760849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m28-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:13.609409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:14.668628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M29-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m29-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:15.612779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:16.675817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M30-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m30-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:17.618448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:18.659640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M31-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m31-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:19.619052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:20.681871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M32-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m32-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:21.665475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:22.769772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M33-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m33-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:23.627490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:24.674939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M34-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m34-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:25.636393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:26.675850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M35-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m35-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:27.638146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 001 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:28.697805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:29.701021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:30.646950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 002 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:31.705646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:32.728474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:33.867417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 003 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:34.776628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:35.785137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:36.656393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 004 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:37.711135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:38.723482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:39.668648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 004B V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:40.722448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 005 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:41.724591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:42.734758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:43.675894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 006 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:44.784905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:45.787690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:46.690788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 007 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:47.722994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:48.738610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:49.684430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 007B V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:50.743755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 008 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:51.741724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:52.753050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:53.695584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 009 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:54.745667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:55.808756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:56.788828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M10-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:57.801166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M10-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:58.704494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M10-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:59.721226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M10-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:00.716951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M10-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:01.714306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M11-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:02.721599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M11-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:03.723805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M11-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:04.715850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M11-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:05.734826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M11-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:06.752739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M12-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:07.801278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M12-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:08.810718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M12-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:09.732483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M12-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:10.734914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M12-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:11.740229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M13-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:12.742079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M13-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:13.745913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M13-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:14.745374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M13-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:15.747803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67P-M13-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:16.750970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:17.820635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M10-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:18.809617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:19.858129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M11-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:20.759121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:21.819676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M12-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:22.762194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:23.806942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M13-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:24.768797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M14-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:25.765024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M14-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:26.766985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M14-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:27.768744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M14-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:28.774973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M14-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:29.815501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M15-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:30.831742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M15-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:31.781197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M15-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:32.782089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M15-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:33.778607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M15-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:34.783980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M16-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:35.783191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M16-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:36.789576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M16-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:37.789745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M16-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:38.796206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M16-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:39.794019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M17-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:40.824878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M17-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:41.877412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M17-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:42.890270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M17-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:43.801206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67P-M17-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:44.807170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:45.869261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M14-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:46.812109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:47.874735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M15-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:48.818578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:49.874840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M16-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:50.819935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:51.888902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M17-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:52.891525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M18-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:53.901075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M18-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:54.833531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M18-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:55.834865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M18-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:56.838193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M18-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:57.835987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M19-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:58.841170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M19-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:59.846258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M19-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:00.845319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M19-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:01.843085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M19-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:02.853611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M20-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:03.897920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M20-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:04.908267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M20-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:05.857921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M20-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:06.862629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M20-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:07.854348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M21-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:08.862735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M21-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:09.866319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M21-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:10.872028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M21-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:11.872015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67P-M21-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:12.874445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:13.933432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M18-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:15.002493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:16.014389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M19-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:16.968968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:18.020384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M20-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m20-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:18.887898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:19.949196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M21-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m21-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:20.894207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M22-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:21.895912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M22-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:22.893664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M22-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:23.899410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M22-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:24.901993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M22-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:25.915303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M23-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:26.965646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M23-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:27.979150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M23-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:28.907958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M23-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:29.922396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M23-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:30.913956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M24-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:31.927881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M24-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:32.922663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M24-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:33.926232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M24-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:34.922746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67P-M24-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:35.929418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M22-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:36.979972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M22-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m22-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:37.975314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:39.033985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M23-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m23-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:39.936387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:41.089281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M24-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m24-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:41.952706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M25-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:42.945102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M25-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:43.944172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M25-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:44.950855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M25-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:45.954453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M25-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:46.954328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M26-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:47.958033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M26-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:48.988531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M26-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:50.047191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M26-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:51.045471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M26-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:51.961836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M27-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:52.960862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M27-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:53.966920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M27-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:54.965024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M27-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:55.968287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67P-M27-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:56.971180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:58.020128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M25-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m25-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:58.981997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:00.052124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M26-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m26-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:01.047194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:02.096102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M27-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m27-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:02.984219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M28-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:03.987381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M28-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:04.991858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M28-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:05.988021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M28-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:06.996226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M28-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:07.996894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M29-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:09.008864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M29-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:10.001731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M29-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:11.006482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M29-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:12.063357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M29-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:13.068181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M30-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:14.009236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M30-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:15.008621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M30-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:16.013835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M30-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:17.007817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67P-M30-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:18.017870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:19.090400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M28-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m28-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:20.020590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:21.077711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M29-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m29-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:22.023390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:23.120359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M30-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m30-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:24.113169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M31-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:25.123332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M31-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:26.032934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M31-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:27.035882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M31-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:28.042115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M31-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:29.040979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M32-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:30.040143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M32-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:31.064863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M32-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:32.047716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M32-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:33.054628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M32-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:34.077753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M33-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:35.125752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M33-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:36.137254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M33-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:37.056475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M33-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:38.056301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M33-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:39.063243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M34-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:40.070717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M34-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:41.068477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M34-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:42.071388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M34-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:43.068492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M34-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:44.076057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M35-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:45.084758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M35-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:46.143166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M35-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:47.146859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M35-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:48.077583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67P-M35-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:49.082716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:50.148067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M31-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m31-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:51.089315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:52.149613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M32-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m32-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:53.095026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:54.140303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M33-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m33-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:55.098461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:56.260106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M34-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m34-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:57.143048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:58.252503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M35-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m35-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:59.107485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M01-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:00.108127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M01-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:01.110116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M01-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:02.105247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M01-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:03.111276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M01-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:04.115250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M02-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:05.116368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M02-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:06.115109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M02-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:07.126706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M02-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:08.158661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M02-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:09.198654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M03-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:10.215696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M03-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:11.128942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M03-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:12.129974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M03-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:13.133844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M03-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:14.133721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M04-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:15.139107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M04-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:16.137252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M04-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:17.142992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M04-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:18.142752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M04-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:19.169250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M05-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:20.209688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M05-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:21.225040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M05-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:22.149557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M05-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:23.156651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M05-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:24.161372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M06-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:25.164852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M06-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:26.164476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M06-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:27.167025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M06-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:28.164683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M06-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:29.165799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M07-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:30.173139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M07-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:31.221966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M07-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:32.233586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M07-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:33.176453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M07-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:34.181636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M08-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:35.182015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M08-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:36.186849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M08-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:37.190220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M08-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:38.187357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M08-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:39.194468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M09-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:40.195823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M09-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:41.202634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M09-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:42.234946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M09-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:43.277385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67P-M09-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:44.294000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:45.343994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M01-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:46.205946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:47.266377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M02-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:48.212256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:49.268434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M03-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:50.215345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:51.266643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M04-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:52.220794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:53.298955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M05-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:54.289735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:55.349617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M06-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:56.225887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:57.286333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M07-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:58.230037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:59.284374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M08-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:00.243422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:01.290937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M09-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:02.248296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC1-67P-M10-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m10-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:03.236208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC1-67P-M11-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m11-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:04.254023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC1-67P-M12-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m12-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:05.301832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC1-67P-M13-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m13-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:06.313740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC2-67P-M14-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m14-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:07.249438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC2-67P-M15-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m15-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:08.255805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC2-67P-M16-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m16-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:09.257978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC2-67P-M17-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m17-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:10.263323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC3-67P-M18-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m18-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:11.268942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC3-67P-M19-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m19-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:12.269725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC3-67P-M20-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m20-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:13.267813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC3-67P-M21-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m21-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:14.263977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC4-67P-M22-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m22-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:15.276939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC4-67P-M23-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m23-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:16.308895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-ESC4-67P-M24-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m24-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:17.364145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT1-67P-M25-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m25-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:18.271354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT1-67P-M26-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m26-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:19.277304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT1-67P-M27-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m27-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:20.285389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT2-67P-M28-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m28-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:21.290322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT2-67P-M29-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m29-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:22.294573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT2-67P-M30-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m30-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:23.293771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT3-67P-M31-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m31-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:24.293809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT3-67P-M32-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m32-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:25.299281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT3-67P-M33-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m33-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:26.299784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT3-67P-M34-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m34-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:27.323395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-EXT3-67P-M35-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m35-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:28.368874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-PRL-67P-M05-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m05-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:29.379935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-PRL-67P-M06-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m06-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:30.312504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-PRL-67P-M07-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m07-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:31.309231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-PRL-67P-M08-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m08-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:32.311632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSINAC-5-PRL-67P-M09-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m09-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:33.311492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSIWAC 2 EDR MTP 010 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:34.373156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:35.372816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:36.325478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 013 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:37.484556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:38.389431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:39.374750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 012 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:40.437282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:41.482314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:42.332724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 013 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:43.384933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:44.394297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:45.337467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 014 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:46.398440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:47.404657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:48.340240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 015 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:49.396825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:50.458674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:51.443597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 016 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:52.491841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:53.400486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:54.361952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 017 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:55.420974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:56.403258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:57.363450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 018 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:58.425386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:59.425194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:00.372195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 019 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:01.461651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:02.510723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:03.457526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 2 EDR MTP020 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:04.508259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m20-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:05.381830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 2 EDR MTP021 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:06.435704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m21-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:07.387416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP022 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:08.436904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m22-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:09.391041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP023 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:10.446308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m23-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:11.398766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP024 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:12.455191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m24-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:13.459513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP025 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:14.512521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m25-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:15.406662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP026 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:16.451774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m26-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:17.419411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP027 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:18.457073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m27-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:19.414103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSIWAC 2 EDR MTP028 V1.0, RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:20.476916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m28-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:21.418202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:22.474963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M29-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m29-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:23.424870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:24.512012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M30-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m30-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:25.517922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:26.569778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M31-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m31-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:27.434136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:28.482281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M32-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m32-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:29.440211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:30.483682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M33-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m33-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:31.437060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:32.502311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M34-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m34-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:33.445649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:34.500528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M35-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m35-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:35.480977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M01 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:36.574465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 001 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:37.581033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:38.587946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:39.458440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M02 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:40.516848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 002 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:41.516854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:42.519987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:43.461010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M03 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:44.533710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 003 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:45.525472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:46.543321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:47.533262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M04 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:48.593430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 004 V1.1, O-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:49.601461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:50.541975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:51.483782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 004B V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:52.540902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 005 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:53.551284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:54.549621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:55.493894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 006 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:56.550752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:57.552486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:58.548410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 007 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:59.603971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:00.640743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:01.505697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 007B V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:02.559858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 008 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:03.558505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:04.569553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:05.519288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 009 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:06.579251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:07.577874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:08.525659","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSIWAC 3 RDR MTP 010 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:09.609467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:10.683617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:11.616326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 011 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:12.670790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:13.590142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:14.537473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 012 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:15.596396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:16.609440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:17.554758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 013 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:18.701145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:19.606096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:20.567198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 014 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:21.664537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:22.668692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:23.557074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 015 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:24.613536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:25.614050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:26.566306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 016 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:27.625566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:28.625056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:29.574348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 017 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:30.635603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:31.629026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:32.622785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 018 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:33.684928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:34.726389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:35.587540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 019 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:36.645168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:37.632674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:38.590388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 3 RDR MTP020 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:39.651887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m20-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:40.594756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 3 RDR MTP021 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:41.653437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m21-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:42.593194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M22-V1.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"CALIBRATED OSIRIS WAC data from the COMET ESCORT 4 phase. The data has been acquired between 2015-10-20T23:25:00.000 and 2015-11-17T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:43.637184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 3 RDR MTP023 V1.0, RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:44.747040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m23-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:45.694780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 3 RDR MTP024 V1.0, RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:46.748465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m24-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:47.610588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP025 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:48.665920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m25-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:49.617683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP026 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:50.656436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m26-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:51.616547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP027 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:52.672667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m27-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:53.627796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSIWAC 3 RDR MTP028 V1.0, RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:54.694007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m28-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:55.696819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:56.750016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M29-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m29-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:57.633710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:58.686787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M30-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m30-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:59.641557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:00.711164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M31-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m31-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:01.637121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:02.708116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M32-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m32-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:03.645593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:04.708466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M33-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m33-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:05.655882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:06.762792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M34-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m34-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:07.716730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:08.767356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M35-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m35-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:09.661479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 001 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:10.719693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:11.713882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:12.656300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 002 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:13.719644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:14.731778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:15.672501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 003 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:16.731391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:17.764272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:18.760202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 004 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:19.821155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:20.830398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:21.684536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 004B V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:22.734035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 005 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:23.733195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:24.746763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:25.695096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 006 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:26.749754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:27.750686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:28.723086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 007 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:29.827543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:30.827179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:31.705259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 007B V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:32.759370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 008 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:33.773621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:34.769591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:35.716208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 009 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:36.761612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:37.777016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:38.716472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:39.736766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:40.779634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:41.795649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:42.724945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:43.734518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:44.735679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:45.730959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:46.741352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:47.743469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:48.743875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:49.748403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:50.740981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:51.792757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:52.807365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:53.758997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:54.754076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:55.760752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:56.763818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:57.762089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:58.766835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:59.928019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M10-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:00.770245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:01.829338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M11-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:02.803014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:03.915289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M12-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:04.864077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:05.916856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M13-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:06.781346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:07.781057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:08.784204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:09.791190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:10.790507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:11.792579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:12.798333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:13.816333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:14.860872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:15.875832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:16.806918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:17.808371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:18.811217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:19.815065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:20.819278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:21.820478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:22.823619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:23.817896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:24.829600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:25.873451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:26.886489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:27.979433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M14-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:28.831695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:29.886158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M15-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:30.839847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:31.908516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M16-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:32.845330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:33.905086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M17-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:34.844848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:35.848218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:36.885690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:37.931579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:38.941783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:39.862663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:40.864010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:41.868893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:42.868219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:43.866778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:44.872001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:45.875606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:46.879653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:47.892747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:48.943058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:49.955218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:50.891943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:51.895844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:52.893920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:53.891467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:54.890491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:55.963855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M18-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:56.903476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:57.953718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M19-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:58.903278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:00.008154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M20-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m20-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:00.963766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:02.055078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M21-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m21-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:02.911910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:03.908493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:04.915624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:05.921828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:06.922263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:07.918557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:08.925473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:09.927910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:10.962374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:12.014007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:13.020573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:14.073321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M23-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m23-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:14.939296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:15.979938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M24-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m24-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:16.941754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:17.948065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:18.942034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:19.948599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:20.970827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:21.967178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:23.020240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:24.031662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:24.952354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:25.966887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:26.964655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:27.969953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:28.970479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:29.967058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:30.974435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:31.974088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:33.035494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M25-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m25-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:34.031009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:35.083877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M26-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m26-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:35.984211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:37.036446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M27-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m27-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:37.984852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:38.993191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:39.990200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:41.106814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:42.006985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:43.003965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:44.000987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:45.041512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:46.088186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:47.008313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:48.014141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:49.012877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:50.017126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:51.018393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:52.026733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:53.032672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:54.084360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M28-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m28-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:55.025104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:56.107522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M29-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m29-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:57.094708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:58.151117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M30-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m30-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:59.037290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:00.041368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:01.041685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:02.045396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:03.047095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:04.050751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:05.053277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:06.047116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:07.056678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:08.108195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:09.120178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:10.060517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:11.056637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:12.067075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:13.071745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:14.071950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:15.071797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:16.067587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:17.079602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:18.076790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:19.117471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:20.163468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:21.179952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:22.086593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:23.091638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:24.086343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:25.156173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M31-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m31-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:26.096538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:27.159569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M32-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m32-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:28.105460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:29.163475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M33-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m33-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:30.132117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:31.236288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M34-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m34-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:32.188689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:33.240654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M35-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m35-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:34.108605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M01-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:35.120770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M01-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:36.116116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M01-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:37.121907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M01-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:38.119483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M01-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:39.131776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M02-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:40.130483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M02-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:41.148941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M02-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:42.187260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M03-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:43.199443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M03-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:44.133045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M03-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:45.131004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M03-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:46.143248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M03-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:47.142913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M04-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:48.148461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M04-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:49.142545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M04-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:50.147027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M05-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:51.151319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M05-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:52.157796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M05-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:53.197363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M05-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:54.244083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M05-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:55.159193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M06-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:56.163696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M06-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:57.175203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M06-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:58.172460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M06-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:59.176415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M06-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:00.169068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M07-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:01.171830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M07-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:02.175648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M07-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:03.177148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M07-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:04.205897","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M07-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:05.257358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M08-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:06.269117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M08-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:07.187951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M08-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:08.190687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M08-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:09.191031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M08-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:10.195839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M09-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:11.200740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M09-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:12.201400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M09-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:13.207940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M09-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:14.206583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67P-M09-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:15.214666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:16.306915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M01-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:17.276517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:18.362504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M02-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:19.216910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:20.278293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M03-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:21.221136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:22.390229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M04-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:23.224796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:24.284814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M05-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:25.229177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:26.298037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M06-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:27.272744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:28.372981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M07-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:29.241182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:30.388174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M08-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:31.247051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:32.294395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M09-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:33.254116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC1-67P-M10-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m10-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:34.259771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC1-67P-M11-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m11-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:35.260931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC1-67P-M12-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m12-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:36.260344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC1-67P-M13-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m13-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:37.256921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC2-67P-M14-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m14-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:38.283226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC2-67P-M15-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m15-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:39.333175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC2-67P-M16-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m16-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:40.346134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC2-67P-M17-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m17-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:41.263507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC3-67P-M18-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m18-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:42.270391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC3-67P-M19-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m19-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:43.269894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC3-67P-M20-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m20-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:44.280326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC3-67P-M21-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m21-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:45.281880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC4-67P-M23-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc4-67p-m23-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:46.282178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-ESC4-67P-M24-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc4-67p-m24-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:47.282488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT1-67P-M25-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m25-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:48.288960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT1-67P-M26-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m26-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:49.296514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT1-67P-M27-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m27-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:50.341089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT2-67P-M28-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m28-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:51.356975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT2-67P-M29-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m29-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:52.295044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT2-67P-M30-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m30-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:53.297309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT3-67P-M31-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m31-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:54.295118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT3-67P-M32-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m32-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:55.295661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT3-67P-M33-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m33-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:56.303035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT3-67P-M34-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m34-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:57.304594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-EXT3-67P-M35-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m35-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:58.307960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-PRL-67P-M06-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m06-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:59.304070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-PRL-67P-M07-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m07-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:00.307363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-PRL-67P-M08-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m08-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:01.354807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-OSIWAC-5-PRL-67P-M09-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m09-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:02.400869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-ESC1-V1.0","title":"Rosetta ROSINA ESCORT 1 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:03.320182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-ESC1-V2.0","title":"Rosetta ROSINA ESCORT 1 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:04.323298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-ESC2-V1.0","title":"Rosetta ROSINA ESCORT 2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:05.321948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-ESC2-V2.0","title":"Rosetta ROSINA ESCORT 2 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:06.321744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-ESC3-V1.0","title":"Rosetta ROSINA ESCORT 3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:07.331852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-ESC3-V2.0","title":"Rosetta ROSINA ESCORT 3 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:08.330243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-ESC4-V1.0","title":"Rosetta ROSINA ESCORT 4 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 4. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:09.334451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-ESC4-V2.0","title":"Rosetta ROSINA ESCORT 4 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 4. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:10.340218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-EXT1-V1.0","title":"Rosetta ROSINA EXTENTION 1 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:11.342353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-EXT1-V2.0","title":"Rosetta ROSINA EXTENTION 1 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:12.369204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-EXT2-V1.0","title":"Rosetta ROSINA EXTENTION 2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:13.417699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-EXT2-V2.0","title":"Rosetta ROSINA EXTENTION 2 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:14.427156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-EXT3-V1.0","title":"Rosetta ROSINA EXTENTION 3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:15.350062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-EXT3-V2.0","title":"Rosetta ROSINA EXTENTION 3 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:16.350472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-PRL-V1.0","title":"Rosetta ROSINA Prelanding Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Prelanding. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:17.350656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-2-PRL-V2.0","title":"Rosetta ROSINA Prelanding L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Prelanding. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:18.351931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-ESC1-V1.0","title":"Rosetta ROSINA ESCORT 1 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:19.354956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-ESC1-V2.0","title":"Rosetta ROSINA ESCORT 1 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:20.360428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-ESC2-V1.0","title":"Rosetta ROSINA ESCORT 2 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:21.357766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-ESC2-V2.0","title":"Rosetta ROSINA ESCORT 2 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:22.367013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-ESC3-V1.0","title":"Rosetta ROSINA ESCORT 3 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:23.372898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-ESC3-V2.0","title":"Rosetta ROSINA ESCORT 3 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:24.422936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-ESC4-V1.0","title":"Rosetta ROSINA ESCORT 4 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Escort phase 4. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:25.436287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-ESC4-V2.0","title":"Rosetta ROSINA ESCORT 4 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Escort phase 4. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:26.376443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-EXT1-V1.0","title":"Rosetta ROSINA EXTENTION 1 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 1. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:27.377007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-EXT1-V2.0","title":"Rosetta ROSINA EXTENTION 1 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 1. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:28.379461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-EXT2-V1.0","title":"Rosetta ROSINA EXTENTION 2 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 2. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:29.381903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-EXT2-V2.0","title":"Rosetta ROSINA EXTENTION 2 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 2. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:30.381496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-EXT3-V1.0","title":"Rosetta ROSINA EXTENTION 3 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 3. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:31.385209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-EXT3-V2.0","title":"Rosetta ROSINA EXTENTION 3 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 3. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:32.380391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-PRL-V1.0","title":"Rosetta ROSINA Prelanding L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:33.385188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-3-PRL-V2.0","title":"Rosetta ROSINA Prelanding L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:34.391009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-ESC1-V1.0","title":"Rosetta ROSINA ESCORT 1 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:35.434354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-ESC1-V2.0","title":"Rosetta ROSINA ESCORT 1 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:36.481942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-ESC2-V1.0","title":"Rosetta ROSINA ESCORT 2 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:37.392577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-ESC2-V2.0","title":"Rosetta ROSINA ESCORT 2 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:38.401881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-ESC3-V1.0","title":"Rosetta ROSINA ESCORT 3 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:39.399305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-ESC3-V2.0","title":"Rosetta ROSINA ESCORT 3 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:40.403607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-ESC4-V1.0","title":"Rosetta ROSINA ESCORT 4 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 4. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:41.410902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-ESC4-V2.0","title":"Rosetta ROSINA ESCORT 4 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 4. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:42.405668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-EXT1-V1.0","title":"Rosetta ROSINA EXTENTION 1 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:43.411019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-EXT1-V2.0","title":"Rosetta ROSINA EXTENTION 1 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:44.409301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-EXT2-V1.0","title":"Rosetta ROSINA EXTENTION 2 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:45.419412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-EXT2-V2.0","title":"Rosetta ROSINA EXTENTION 2 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:46.446061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-EXT3-V1.0","title":"Rosetta ROSINA EXTENTION 3 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:47.500030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-EXT3-V2.0","title":"Rosetta ROSINA EXTENTION 3 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:48.504786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-PRL-V1.0","title":"Rosetta ROSINA Prelanding L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:49.424472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-4-PRL-V2.0","title":"Rosetta ROSINA Prelanding L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:50.423238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-ESC1-V1.0","title":"Rosetta ROSINA ESCORT 1 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 1 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:51.424633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-ESC1-V2.0","title":"Rosetta ROSINA ESCORT 1 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 1 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:52.421622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-ESC2-V1.0","title":"Rosetta ROSINA ESCORT 2 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 2 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:53.426505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-ESC2-V2.0","title":"Rosetta ROSINA ESCORT 2 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 2 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:54.427972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-ESC3-V1.0","title":"Rosetta ROSINA ESCORT 3 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 3 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:55.429166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-ESC3-V2.0","title":"Rosetta ROSINA ESCORT 3 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 3 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:56.437999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-ESC4-V1.0","title":"Rosetta ROSINA ESCORT 4 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 4 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:57.450892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-ESC4-V2.0","title":"Rosetta ROSINA ESCORT 4 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 4 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:58.502292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-EXT1-V1.0","title":"Rosetta ROSINA EXTENTION 1 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:59.515777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-EXT1-V2.0","title":"Rosetta ROSINA EXTENTION 1 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:00.449205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-EXT2-V1.0","title":"Rosetta ROSINA EXTENTION 2 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:01.446495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-EXT2-V2.0","title":"Rosetta ROSINA EXTENTION 2 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:02.445543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-EXT3-V1.0","title":"Rosetta ROSINA EXTENTION 3 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:03.544196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-EXT3-V2.0","title":"Rosetta ROSINA EXTENTION 3 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:04.456401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-PRL-V1.0","title":"Rosetta ROSINA Prelanding L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:05.457095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-ROSINA-5-PRL-V2.0","title":"Rosetta ROSINA Prelanding L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:06.460831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC1-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED ESC1 CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:07.462798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC1-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:08.461900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC1-RAW-V3.0","title":"ROSETTA-ORBITER 67P RPCICA 2 ESC1 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:09.512668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:10.523612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC2-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:11.478002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC2-RAW-V3.0","title":"ROSETTA-ORBITER 67P RPCICA 2 ESC2 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:12.474267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC3-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:13.477330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC3-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:14.479029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC3-RAW-V3.0","title":"ROSETTA-ORBITER 67P RPCICA 2 ESC3 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:15.481969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC4-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC4 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc4-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:16.489147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-ESC4-RAW-V2.0","title":"ROSETTA-ORBITER 67P RPCICA 2 ESC4 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC4 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc4-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:17.486482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-EXT1-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT1 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext1-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:18.490460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-EXT1-RAW-V2.0","title":"ROSETTA-ORBITER 67P RPCICA 2 EXT1 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT1 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext1-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:19.485561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-EXT2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT2 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:20.522261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-EXT2-RAW-V2.0","title":"ROSETTA-ORBITER 67P RPCICA 2 EXT2 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:21.571692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-EXT3-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT3 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext3-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:22.582210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-EXT3-RAW-V2.0","title":"ROSETTA-ORBITER 67P RPCICA 2 EXT3 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT3 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext3-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:23.500368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-PRL-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED PRL CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:24.494947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-PRL-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:25.505007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-2-PRL-RAW-V3.0","title":"ROSETTA-ORBITER 67P RPCICA 2 PRL EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:26.505529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-3-ESC1-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 ESC1 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 ESC1 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc1-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:27.507504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-3-ESC2-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 ESC2 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 ESC2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:28.514518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-3-ESC3-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 ESC3 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 ESC3 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc3-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:29.510644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-3-ESC4-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 ESC4 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 ESC4 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc4-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:30.512583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-3-EXT1-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 EXT1 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 EXT1 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext1-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:31.534407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-3-EXT2-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 EXT2 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 EXT2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:32.592964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-3-EXT3-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 EXT3 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 EXT3 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext3-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:33.592664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-3-PRL-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 PRL CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 PRL CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-prl-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:34.523410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC1-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:35.521375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC1-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:36.527237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC1-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:37.523437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:38.536197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC2-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:39.535076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC2-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:40.543302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC3-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:41.530990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC3-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:42.550082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC3-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:43.592030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC4-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:44.637476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC4-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:45.551720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-ESC4-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:46.556760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT1-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:47.557323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT1-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:48.558563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT1-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:49.565461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:50.569232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT2-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:51.564582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT2-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:52.570305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT3-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:53.559918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT3-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:54.602637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-EXT3-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:55.655211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-PRL-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 PRL CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 PRL CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:56.660336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-PRL-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 PRL CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 PRL CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:57.573868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-4-PRL-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 PRL PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 PRL PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:58.575231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-5-ESC1-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 ESC1 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 ESC1 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc1-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:59.580418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-5-ESC2-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 ESC2 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 ESC2 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc2-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:00.582250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-5-ESC3-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 ESC3 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 ESC3 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc3-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:01.586300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-5-ESC4-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 ESC4 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 ESC4 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc4-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:02.586851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-5-EXT1-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 EXT1 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 EXT1 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext1-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:03.591315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-5-EXT2-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 EXT2 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 EXT2 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext2-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:04.593879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-5-EXT3-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 EXT3 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 EXT3 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext3-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:05.611890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCICA-5-PRL-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 PRL MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 PRL MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-prl-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:06.661134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-ESC1-V1.0","title":"RPCIES RAW DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 19 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:07.670740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-ESC1-V2.0","title":"RPCIES EDITED DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron counts (EDITED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:08.596524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-ESC2-V1.0","title":"RPCIES RAW DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 2 (ESC2) from 10 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:09.597218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-ESC2-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2","description":"This Volume contains ion and electron flux data (edited data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:10.605162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-ESC3-V1.0","title":"RPCIES RAW DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 20 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:11.606791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-ESC3-V2.0","title":"RPCIES EDITED DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron flux data (EDITED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:12.605360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-ESC4-V1.0","title":"RPCIES RAW DATA FOR THE ESCORT PHASE 4","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 21 Oct 2015 to 12 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:13.613116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-EXT1-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:14.615357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-EXT2-V1.0","title":"RPCIES RAW DATA FOR THE ROSETTA EXTENSION 2","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:15.618963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-EXT3-V1.0","title":"RPCIES RAW DATA FOR THE ROSETTA EXTENSION 3","description":"This Volume contains ion and electron counts data (raw data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:16.623186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-PRL-V1.0","title":"RPCIES RAW DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 20 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:17.670308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-2-PRL-V2.0","title":"RPCIES EDITED DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:18.680043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-ESC1-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:19.627021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-ESC1-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:20.628084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-ESC2-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:21.622708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-ESC2-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:22.627894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-ESC3-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:23.632052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-ESC3-V2.0","title":"RPCIES EDITED DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:24.634262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-ESC4-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 4","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:25.636774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-ESC4-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 4","description":"This Volume contains ion and electron flux data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:26.637805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-EXT1-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:27.640119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-EXT1-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:28.675712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-EXT2-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 2","description":"This Volume contains ion and electron counts data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:29.728777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-EXT2-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 2","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:30.738611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-EXT3-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 3","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:31.652214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-EXT3-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 3","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:32.649890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-PRL-V1.0","title":"RPCIES CALIBRATED DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:33.652954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-3-PRL-V2.0","title":"RPCIES CALIBRATED DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:34.663335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-5-ESC1-V1.0","title":"RPCIES DERIVED DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:35.655524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-5-ESC2-V1.0","title":"RPCIES DERIVED DATA FOR THE ESCORT PHASE 2","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:36.663782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-5-ESC3-V1.0","title":"RPCIES DERIVED DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:37.659109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-5-ESC4-V1.0","title":"RPCIES DERIVED DATA FOR THE ESCORT PHASE 4","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:38.663639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-5-EXT1-V1.0","title":"RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:39.693074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-5-EXT2-V1.0","title":"RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 2","description":"This Volume contains ion and electron counts data (derived data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:40.739127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-5-EXT3-V1.0","title":"RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT1) from 01 Jul 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:41.748022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCIES-5-PRL-V1.0","title":"RPCIES DERIVED DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:42.675065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC1-EDITED-V1.0","title":"RPCLAP EDITED RAW DATA FOR COMET ESCORT 1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 (ESC1) phase at comet 67P/Churyomov-Gerasimenko 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-edited-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:43.670280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR ESC1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:44.795217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC1-MTP010-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP10","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2014-12-20T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp010-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:45.685916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC1-MTP011-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP011","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-12-20T00:00:00.000 -- 2015-01-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp011-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:46.684822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC1-MTP012-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP012","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-01-14T00:00:00.000 -- 2015-02-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp012-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:47.687429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC1-MTP013-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP013","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-02-10T23:58:28.967 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp013-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:48.682850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR ESC2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:49.690576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-MTP014-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:50.702295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-MTP014-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP014","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-04-09T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp014-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:51.745180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-MTP015-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:52.757476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-MTP015-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP015","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-04-07T23:59:42.523 -- 2015-05-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp015-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:53.692563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-MTP016-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:54.694290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-MTP016-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP016","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-05-06T00:00:00.000 -- 2015-06-03T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp016-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:55.700746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-MTP017-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:56.703222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC2-MTP017-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP017","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-06-03T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp017-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:57.704852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR ESC3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:58.704374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-MTP018-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 018 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:59.715404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-MTP018-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP018","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-06-30T23:59:60.912 -- 2015-07-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp018-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:00.713410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-MTP019-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 019 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:01.712449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-MTP019-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP019","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-29T00:00:00.000 -- 2015-08-26T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp019-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:02.756892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-MTP020-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 020 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:03.803780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-MTP020-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP020","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-08-25T23:57:53.512 -- 2015-09-23T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp020-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:04.816483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-MTP021-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 021 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:05.726246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC3-MTP021-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP021","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-09-22T23:58:50.316 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp021-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:06.727292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC4-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR ESC4","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.112 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:07.727048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC4-MTP022-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:08.732912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC4-MTP022-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP022","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.112 -- 2015-11-18T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp022-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:09.733042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC4-MTP023-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:10.733485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC4-MTP023-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP023","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-11-17T23:58:51.889 -- 2015-12-16T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp023-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:11.737555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC4-MTP024-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:12.737046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-ESC4-MTP024-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP024","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-12-15T23:58:52.679 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp024-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:13.762832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EXT1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.469 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:14.814049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT1-MTP025-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP025","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.469 -- 2016-02-10T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:15.826814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT1-MTP026-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP026","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-02-10T00:00:00.000 -- 2016-03-09T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:16.740373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT1-MTP027-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP027","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-03-09T00:00:00.000 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:17.744464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EXT2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.775 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:18.745522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT2-MTP028-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP028","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 MTP028 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.775 -- 2016-05-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:19.753527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT2-MTP029-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP029","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-05-03T23:57:20.576 -- 2016-06-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:20.752911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT2-MTP030-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP030","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-05-31T23:58:09.366 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:21.756182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT3-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EXT3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:22.755006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT3-MTP031-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP031","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-07-27T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:23.755536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT3-MTP032-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP032","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-07-26T23:59:46.936 -- 2016-08-10T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:24.774036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT3-MTP033-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP033","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-08-09T23:58:43.330 -- 2016-09-02T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:25.824356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT3-MTP034-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP034","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-09-01T23:59:15.977 -- 2016-09-26T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:26.839342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-EXT3-MTP035-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP035","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-09-25T23:59:48.653 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:27.770235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-COM-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING COM","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-05-08T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-com-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:28.766246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-EDITED-V1.0","title":"RPCLAP EDITED RAW DATA FOR PRELANDING","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the prelanding phase (PRL) in 2014 at comet 67P/Churyomov-Gerasimenko 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-edited-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:29.770850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR PRL","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:30.769047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-MTP003-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP003","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-05-08T00:00:00.000 -- 2014-06-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp003-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:31.769310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-MTP004-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP004","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-06-04T00:00:00.000 -- 2014-07-02T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp004-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:32.774915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-MTP005-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP005","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-07-02T00:00:00.000 -- 2014-08-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp005-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:33.777551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-MTP006-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP006","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-07-31T23:59:27.401 -- 2014-09-02T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp006-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:34.778818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-MTP007-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP007","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-09-01T23:58:24.346 -- 2014-09-23T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp007-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:35.783490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-MTP008-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MPT008","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-09-22T23:57:52.950 -- 2014-10-24T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp008-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:36.842000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-2-PRL-MTP009-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP009","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-10-23T23:57:21.837 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp009-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:37.850139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-ESC1-CALIB-V1.0","title":"RPCLAP CALIBRATED DATA FOR COMET ESCORT 1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 (ESC1) phase at comet 67P/Churyomov-Gerasimenko 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc1-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:38.789151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-ESC1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR ESC1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:39.794014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-ESC2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR ESC2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:40.789726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-ESC3-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR ESC3","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc3-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:41.796120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-ESC4-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR ESC4","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc4-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:42.797857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-EXT1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EXT1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:43.796120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-EXT2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EXT2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:44.806603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-EXT3-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EXT3","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext3-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:45.801305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-PRL-CALIB-V1.0","title":"RPCLAP CALIBRATED DATA FOR PRELANDING","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the prelanding phase (PRL) in 2014 at comet 67P/Churyomov-Gerasimenko 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-prl-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:46.807507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-3-PRL-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR PRL","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-prl-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:47.853461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-ESC1-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR ESC1","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:48.899627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-ESC1-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC1","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:49.810607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-ESC2-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR ESC2","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:50.810403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-ESC2-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC2","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:51.816656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-ESC3-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR ESC3","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:52.811704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-ESC3-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC3","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:53.814300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-ESC4-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR ESC4","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:54.821355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-ESC4-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC4","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:55.820956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-EXT1-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR EXT1","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:56.828764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-EXT1-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT1","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:57.827620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-EXT2-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR EXT2","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:58.856076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-EXT2-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT2","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:59.899522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-EXT3-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR EXT3","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:00.920171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-EXT3-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT3","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:01.838769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-PRL-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR PRL","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:02.836747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCLAP-5-PRL-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR PRL","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:03.834765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC1-RAW-V5.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:04.843947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC1-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:05.842587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE (ESC1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:06.845104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC2-RAW-V5.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:07.849049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC2-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:08.850757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE (ESC2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:09.865888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC3-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 3 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc3-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:10.910380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC3-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 3 PHASE (ESC3)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc3-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:11.927232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC4-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 4 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc4-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:12.869467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-ESC4-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 4 PHASE (ESC4)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ECS4) from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc4-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:13.861309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-EXT1-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 1 (EXT1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext1-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:14.864244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-EXT1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 1 (EXT1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:15.867619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-EXT2-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 2 (EXT2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext2-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:16.873321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-EXT2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 2 (EXT2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:17.871981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-EXT3-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 3 (EXT3)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext3-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:18.872057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-2-EXT3-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 3 (EXT3)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext3-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:19.874391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-ESC1-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc1-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:20.879647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-ESC1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMET ESCORT 1 PHASE (ESC1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:21.921833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-ESC2-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc2-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:22.981393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-ESC2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMET ESCORT 2 PHASE (ESC2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:23.880597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-ESC3-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 3 PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc3-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:24.884405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-ESC3-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMET ESCORT 3 PHASE (ESC3)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc3-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:25.979939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-ESC4-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 4 PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc4-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:26.892217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-ESC4-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMET ESCORT 4 PHASE (ESC4)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ESC4) from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc4-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:27.889281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-EXT1-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 1 (EXT1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext1-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:28.897773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-EXT1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 1 (EXT1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:29.900139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-EXT2-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 2 (EXT2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext2-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:30.899810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-EXT2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 2 (EXT2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:31.907958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-EXT3-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 3 (EXT3)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext3-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:32.939872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-3-EXT3-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 3 (EXT3)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext3-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:33.985555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC1-RESAMPLED-V5.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:34.996748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC1-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:35.911559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMET ESCORT 1 PHASE (ESC1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:36.913542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC2-RESAMPLED-V5.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:37.918363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC2-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:38.920571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMET ESCORT 2 PHASE (ESC2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:39.924290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC3-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 3 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc3-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:40.923194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC3-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMET ESCORT 3 PHASE (ESC3)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc3-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:41.929407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC4-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 4 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc4-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:42.933029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-ESC4-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMET ESCORT 4 PHASE (ESC4)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ESC4) from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc4-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:43.945086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-EXT1-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 1(EXT1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext1-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:44.995565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-EXT1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 1(EXT1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:46.006605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-EXT2-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 2(EXT2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext2-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:46.949552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-EXT2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 2(EXT2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:47.949172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-EXT3-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 3(EXT3)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext3-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:48.947000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMAG-4-EXT3-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 3(EXT3)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext3-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:49.954036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC1-V1.0","title":"RPCMIP COMET ESCORT DATA (PART1)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:50.957246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC1-V2.0","title":"RPCMIP COMET ESCORT DATA (PART1)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:51.963017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC1-V3.0","title":"RPCMIP COMET ESCORT 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:52.961060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC2-V1.0","title":"RPCMIP COMET ESCORT DATA (PART2)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:53.961843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC2-V2.0","title":"RPCMIP COMET ESCORT DATA (PART2)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:54.965258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC2-V3.0","title":"RPCMIP COMET ESCORT 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:56.004100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC3-V1.0","title":"RPCMIP COMET ESCORT DATA (PART3)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:57.052876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC3-V2.0","title":"RPCMIP COMET ESCORT 3 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:58.060358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC4-V1.0","title":"RPCMIP COMET ESCORT DATA (PART4)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:58.977614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-ESC4-V2.0","title":"RPCMIP COMET ESCORT 4 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:59.970848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-EXT1-V1.0","title":"RPCMIP EXTENSION DATA (PART1)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT1 (Extension part 1) phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:00.982795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-EXT1-V2.0","title":"RPCMIP ROSETTA EXTENSION 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:01.979177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-EXT2-V1.0","title":"RPCMIP EXTENSION DATA (PART 2)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT 2 (Extension part 2) phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:02.987402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-EXT2-V2.0","title":"RPCMIP ROSETTA EXTENSION 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:03.983982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-EXT3-V1.0","title":"RPCMIP EXTENSION DATA (PART3)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT3 (Extension part 3) phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:04.990324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-EXT3-V2.0","title":"RPCMIP ROSETTA EXTENSION 3 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:05.990842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL1-V1.0","title":"RPCMIP PRELANDING DATA (PART1) FOR THE COMET PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:07.014640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL1-V2.0","title":"RPCMIP PRELANDING DATA (PART1)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL1 (Prelanding part 1) mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:08.061321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL1-V3.0","title":"RPCMIP PRELANDING L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:09.074977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL2-V1.0","title":"RPCMIP PRELANDING DATA (PART2) FOR THE COMET PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:09.994361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL2-V2.0","title":"RPCMIP PRELANDING DATA (PART2)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL2 (Prelanding part 2) mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:11.003582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL2-V3.0","title":"RPCMIP PRELANDING L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:12.004964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL3-V1.0","title":"RPCMIP PRELANDING DATA (PART3) FOR THE COMET PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:13.009656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL3-V2.0","title":"RPCMIP PRELANDING DATA (PART3)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL3 (Prelanding part 3)","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:14.012183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-3-PRL3-V3.0","title":"RPCMIP PRELANDING L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:15.010070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-5-ESC1-V1.0","title":"RPCMIP L5 DATA FOR THE COMET ESCORT 1 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:16.018204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-5-ESC2-V1.0","title":"RPCMIP L5 DATA FOR THE COMET ESCORT 2 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:17.016042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-5-ESC3-V1.0","title":"RPCMIP L5 DATA FOR THE COMET ESCORT 3 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:18.023404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-5-ESC4-V1.0","title":"RPCMIP L5 DATA FOR THE COMET ESCORT 4 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:19.072941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-5-EXT1-V1.0","title":"RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:20.083704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-5-EXT2-V1.0","title":"RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:21.018500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-5-EXT3-V1.0","title":"RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:22.023749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP-5-PRL-V1.0","title":"RPCMIP L5 DATA FOR THE PRELANDING PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:23.019143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP/RPCLAP-5-ESC1-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 1 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:24.025595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP/RPCLAP-5-ESC2-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 2 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:25.027658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP/RPCLAP-5-ESC3-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 3 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:26.028398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP/RPCLAP-5-ESC4-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 4 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:27.032454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP/RPCLAP-5-EXT1-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:28.033607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP/RPCLAP-5-EXT2-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:29.040691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP/RPCLAP-5-EXT3-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:30.078732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RPCMIP/RPCLAP-5-PRL-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE PRELANDING PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:31.132628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0446-V1.0","title":"RORSI_2251_2014_324_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-20T01:37:40.000 to 2014-11-20T13:30:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0446-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:32.039623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0447-V1.0","title":"RORSI_2252_2014_324_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-20T13:47:20.000 to 2014-11-20T20:23:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0447-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:33.045087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0448-V1.0","title":"RORSI_2253_2014_325_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-21T02:58:05.000 to 2014-11-21T13:27:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0448-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:34.045278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0449-V1.0","title":"RORSI_2254_2014_325_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-21T13:44:50.000 to 2014-11-21T20:20:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0449-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:35.047761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0450-V1.0","title":"RORSI_2255_2014_326_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-22T03:34:50.000 to 2014-11-22T13:25:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0450-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:36.052018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0451-V1.0","title":"RORSI_2256_2014_326_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-22T13:42:25.000 to 2014-11-22T20:15:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0451-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:37.051433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0452-V1.0","title":"RORSI_2257_2014_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-23T01:30:10.000 to 2014-11-23T13:23:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0452-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:38.051398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0453-V1.0","title":"RORSI_2258_2014_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-23T13:40:00.000 to 2014-11-23T20:14:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0453-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:39.062205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0454-V1.0","title":"RORSI_2259_2014_328_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-24T02:53:05.000 to 2014-11-24T13:20:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0454-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:40.063217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0455-V1.0","title":"RORSI_2260_2014_328_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-24T13:37:35.000 to 2014-11-24T20:45:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0455-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:41.094062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0456-V1.0","title":"RORSI_2261_2014_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-25T02:48:05.000 to 2014-11-25T13:18:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0456-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:42.143624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0457-V1.0","title":"RORSI_2262_2014_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-25T13:35:10.000 to 2014-11-25T20:10:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0457-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:43.150886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0458-V1.0","title":"RORSI_2263_2014_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-26T04:19:40.000 to 2014-11-26T13:15:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0458-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:44.065981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0459-V1.0","title":"RORSI_2264_2014_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-26T13:32:45.000 to 2014-11-26T21:38:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0459-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:45.075815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0460-V1.0","title":"RORSI_2265_2014_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-27T02:43:05.000 to 2014-11-27T13:13:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0460-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:46.067344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0461-V1.0","title":"RORSI_2266_2014_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-27T13:30:25.000 to 2014-11-27T19:59:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0461-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:47.068382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0462-V1.0","title":"RORSI_2267_2014_332_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-28T02:43:05.000 to 2014-11-28T13:11:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0462-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:48.079393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0463-V1.0","title":"RORSI_2268_2014_332_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-28T15:43:10.000 to 2014-11-28T19:54:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0463-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:49.076140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0464-V1.0","title":"RORSI_2269_2014_333_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-29T03:34:35.000 to 2014-11-29T13:08:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0464-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:50.080772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0465-V1.0","title":"RORSI_2270_2014_333_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-29T13:25:40.000 to 2014-11-29T20:01:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0465-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:51.082781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0466-V1.0","title":"RORSI_2271_2014_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-30T01:13:15.000 to 2014-11-30T13:06:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0466-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:52.099256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0467-V1.0","title":"RORSI_2272_2014_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-30T13:23:20.000 to 2014-11-30T19:49:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0467-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:53.149695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0468-V1.0","title":"RORSI_2273_2014_335_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-01T02:33:05.000 to 2014-12-01T13:04:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0468-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:54.164876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0469-V1.0","title":"RORSI_2274_2014_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-02T01:08:30.000 to 2014-12-02T13:01:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0469-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:55.087646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0470-V1.0","title":"RORSI_2275_2014_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-02T13:18:40.000 to 2014-12-02T16:28:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0470-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:56.092968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0471-V1.0","title":"RORSI_2276_2014_337_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-03T13:16:25.000 to 2014-12-03T21:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0471-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:57.101291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0472-V1.0","title":"RORSI_2277_2014_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-04T04:12:15.000 to 2014-12-04T12:57:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0472-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:58.101635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0473-V1.0","title":"RORSI_2278_2014_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-04T13:14:05.000 to 2014-12-04T20:44:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0473-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:59.101918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0474-V1.0","title":"RORSI_2279_2014_339_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-05T04:26:35.000 to 2014-12-05T12:29:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0474-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:00.104963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0475-V1.0","title":"RORSI_2284_2014_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-08T13:05:05.000 to 2014-12-08T20:05:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0475-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:01.107875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0476-V1.0","title":"RORSI_2280_2014_340_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-06T01:54:25.000 to 2014-12-06T12:52:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0476-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:02.105254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0477-V1.0","title":"RORSI_2283_2014_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-08T00:54:35.000 to 2014-12-08T12:48:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0477-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:03.111068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0478-V1.0","title":"RORSI_2281_2014_341_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-07T00:56:55.000 to 2014-12-07T13:18:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0478-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:04.162105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0479-V1.0","title":"RORSI_2282_2014_341_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-07T20:57:05.000 to 2014-12-08T00:37:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0479-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:05.173788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0480-V1.0","title":"RORSI_2285_2014_343_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-09T00:52:20.000 to 2014-12-09T12:45:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0480-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:06.120635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0481-V1.0","title":"RORSI_2286_2014_343_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-09T13:02:55.000 to 2014-12-09T19:38:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0481-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:07.268541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0482-V1.0","title":"RORSI_2287_2014_344_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-10T13:00:40.000 to 2014-12-10T21:12:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0482-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:08.121173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0483-V1.0","title":"RORSI_2288_2014_345_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-11T04:10:05.000 to 2014-12-11T12:41:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0483-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:09.123454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0484-V1.0","title":"RORSI_2289_2014_345_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-11T12:58:30.000 to 2014-12-11T19:33:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0484-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:10.128384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0485-V1.0","title":"RORSI_2290_2014_346_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-12T03:24:15.000 to 2014-12-12T13:06:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0485-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:11.130012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0486-V1.0","title":"RORSI_2294_2014_349_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-15T00:39:00.000 to 2014-12-15T12:57:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0486-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:12.128030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0487-V1.0","title":"RORSI_2291_2014_347_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-13T04:19:20.000 to 2014-12-13T12:37:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0487-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:13.129950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0488-V1.0","title":"RORSI_2292_2014_347_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-13T12:54:10.000 to 2014-12-13T19:29:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0488-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:14.135845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0489-V1.0","title":"RORSI_2293_2014_348_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-14T06:44:15.000 to 2014-12-14T12:55:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0489-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:15.171098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0490-V1.0","title":"RORSI_2295_2014_350_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-16T00:36:45.000 to 2014-12-16T12:31:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0490-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:16.219200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0491-V1.0","title":"RORSI_2296_2014_350_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-16T12:47:40.000 to 2014-12-16T15:00:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0491-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:17.227848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0492-V1.0","title":"RORSI_2297_2014_351_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-17T03:34:15.000 to 2014-12-17T12:51:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0492-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:18.143191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0493-V1.0","title":"RORSI_2298_2014_351_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-17T13:08:45.000 to 2014-12-17T20:49:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0493-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:19.147775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0494-V1.0","title":"RORSI_2299_2014_352_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-18T00:32:30.000 to 2014-12-18T11:59:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0494-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:20.148775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0495-V1.0","title":"RORSI_2300_2014_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-19T00:30:20.000 to 2014-12-19T12:24:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0495-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:21.147985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0496-V1.0","title":"RORSI_2301_2014_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-19T12:41:25.000 to 2014-12-19T18:17:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0496-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:22.150018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0497-V1.0","title":"RORSI_2302_2014_354_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-20T03:34:15.000 to 2014-12-20T12:22:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0497-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:23.150038","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0498-V1.0","title":"RORSI_2303_2014_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-21T00:26:00.000 to 2014-12-21T12:41:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0498-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:24.154601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0499-V1.0","title":"RORSI_2304_2014_356_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-22T00:23:55.000 to 2014-12-22T12:18:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0499-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:25.167102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0500-V1.0","title":"RORSI_2305_2014_356_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-22T12:35:10.000 to 2014-12-22T20:12:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0500-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:26.186297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0501-V1.0","title":"RORSI_2306_2014_357_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-23T00:21:45.000 to 2014-12-23T12:16:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0501-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:27.224854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0502-V1.0","title":"RORSI_2307_2014_357_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-23T12:33:05.000 to 2014-12-23T18:19:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0502-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:28.242668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0503-V1.0","title":"RORSI_2308_2014_358_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-24T00:19:40.000 to 2014-12-24T12:14:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0503-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:29.166824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0504-V1.0","title":"RORSI_2309_2014_358_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-24T12:28:25.000 to 2014-12-24T20:40:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0504-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:30.173672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0505-V1.0","title":"RORSI_2310_2014_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-25T00:17:35.000 to 2014-12-25T12:12:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0505-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:31.166563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0506-V1.0","title":"RORSI_2311_2014_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-25T12:29:05.000 to 2014-12-25T18:14:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0506-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:32.174025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0507-V1.0","title":"RORSI_2312_2014_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-26T01:43:05.000 to 2014-12-26T12:10:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0507-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:33.182359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0508-V1.0","title":"RORSI_2313_2014_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-26T12:27:00.000 to 2014-12-26T20:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0508-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:34.178928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0509-V1.0","title":"RORSI_2314_2014_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-27T01:43:05.000 to 2014-12-27T12:08:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0509-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:35.182973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0510-V1.0","title":"RORSI_2315_2014_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-27T15:34:15.000 to 2014-12-27T18:59:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0510-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:36.185800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0511-V1.0","title":"RORSI_2316_2014_362_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-28T01:42:05.000 to 2014-12-28T12:10:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0511-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:37.185525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0512-V1.0","title":"RORSI_2317_2014_363_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-29T00:09:25.000 to 2014-12-29T12:10:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0512-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:38.246357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0513-V1.0","title":"RORSI_2318_2014_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-30T00:07:20.000 to 2014-12-30T12:18:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0513-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:39.252132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0514-V1.0","title":"RORSI_2319_2014_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-30T12:35:25.000 to 2014-12-30T17:59:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0514-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:40.197298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0515-V1.0","title":"RORSI_2321_2014_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T04:32:47.000 to 2014-12-31T12:15:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0515-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:41.192334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0516-V1.0","title":"RORSI_2322_2014_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T12:32:55.000 to 2014-12-31T19:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0516-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:42.192155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0517-V1.0","title":"RORSI_2323_2015_001_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-01T01:33:05.000 to 2015-01-01T10:39:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0517-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:43.201618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0518-V1.0","title":"RORSI_2324_2015_002_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-02T00:01:20.000 to 2015-01-02T11:14:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0518-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:44.202664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0519-V1.0","title":"RORSI_2325_2015_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-02T23:59:20.000 to 2015-01-03T08:13:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0519-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:45.211978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0520-V1.0","title":"RORSI_2326_2015_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-03T09:04:44.000 to 2015-01-03T10:25:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0520-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:46.206244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0521-V1.0","title":"RORSI_2327_2015_004_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-03T23:57:20.000 to 2015-01-04T10:29:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0521-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:47.209358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0522-V1.0","title":"RORSI_2328_2015_005_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-04T23:55:20.000 to 2015-01-05T02:40:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0522-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:48.208931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0523-V1.0","title":"RORSI_2329_2015_005_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-05T12:07:05.000 to 2015-01-05T23:36:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0523-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:49.247722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0524-V1.0","title":"RORSI_2330_2015_006_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-05T23:53:20.000 to 2015-01-06T12:00:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0524-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:50.295081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0525-V1.0","title":"RORSI_2331_2015_007_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-07T12:03:20.000 to 2015-01-07T23:51:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0525-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:51.311736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0526-V1.0","title":"RORSI_2332_2015_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T00:08:20.000 to 2015-01-08T02:55:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0526-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:52.214339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0527-V1.0","title":"RORSI_2333_2015_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T12:01:25.000 to 2015-01-08T23:30:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0527-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:53.220151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0528-V1.0","title":"RORSI_2334_2015_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T23:47:35.000 to 2015-01-09T11:53:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0528-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:54.220774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0529-V1.0","title":"RORSI_2320_2014_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T00:38:20.000 to 2014-12-31T03:41:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0529-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:55.224120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0530-V1.0","title":"RORSI_2335_2015_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-09T12:10:15.000 to 2015-01-09T14:17:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0530-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:56.222268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0531-V1.0","title":"RORSI_2336_2015_010_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-10T04:19:30.000 to 2015-01-10T11:50:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0531-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:57.223284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0532-V1.0","title":"RORSI_2337_2015_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-11T01:18:05.000 to 2015-01-11T11:48:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0532-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:58.227264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0533-V1.0","title":"RORSI_2338_2015_012_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-12T11:54:00.000 to 2015-01-12T22:15:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0533-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:59.236982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0534-V1.0","title":"RORSI_2339_2015_013_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-13T05:12:05.000 to 2015-01-13T11:43:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0534-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:00.254792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0535-V1.0","title":"RORSI_2340_2015_014_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-14T03:34:35.000 to 2015-01-14T11:40:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0535-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:01.310359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0536-V1.0","title":"RORSI_2341_2015_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T01:07:05.000 to 2015-01-15T03:45:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0536-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:02.317916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0537-V1.0","title":"RORSI_2342_2015_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T11:48:35.000 to 2015-01-15T23:17:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0537-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:03.231899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0538-V1.0","title":"RORSI_2343_2015_016_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T23:34:15.000 to 2015-01-16T11:36:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0538-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:04.236283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0539-V1.0","title":"RORSI_2344_2015_016_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-16T10:14:16.000 to 2015-01-16T11:36:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0539-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:05.245042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0540-V1.0","title":"RORSI_2345_2015_017_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-17T03:34:45.000 to 2015-01-17T11:33:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0540-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:06.247414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0541-V1.0","title":"RORSI_2346_2015_018_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-18T01:08:05.000 to 2015-01-18T09:49:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0541-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:07.241776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0542-V1.0","title":"RORSI_2347_2015_019_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-19T11:41:30.000 to 2015-01-19T23:09:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0542-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:08.248124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0543-V1.0","title":"RORSI_2348_2015_020_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-19T23:26:55.000 to 2015-01-20T09:44:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0543-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:09.248629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0544-V1.0","title":"RORSI_2349_2015_021_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-21T04:19:50.000 to 2015-01-21T11:23:33.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0544-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:10.253033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0545-V1.0","title":"RORSI_2350_2015_022_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-22T17:08:15.000 to 2015-01-22T23:04:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0545-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:11.268681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0546-V1.0","title":"RORSI_2351_2015_023_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-22T23:21:30.000 to 2015-01-23T09:34:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0546-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:12.313504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0547-V1.0","title":"RORSI_2352_2015_024_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-24T03:35:00.000 to 2015-01-24T11:16:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0547-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:13.328831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0548-V1.0","title":"RORSI_2353_2015_025_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-25T00:53:05.000 to 2015-01-25T11:13:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0548-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:14.258559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0549-V1.0","title":"RORSI_2354_2015_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-26T00:53:05.000 to 2015-01-26T05:34:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0549-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:15.262934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0550-V1.0","title":"RORSI_2355_2015_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-26T11:29:25.000 to 2015-01-26T20:29:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0550-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:16.263672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0551-V1.0","title":"RORSI_2356_2015_027_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-27T00:53:05.000 to 2015-01-27T11:08:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0551-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:17.264318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0552-V1.0","title":"RORSI_2357_2015_028_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-28T06:16:58.000 to 2015-01-28T11:06:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0552-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:18.273029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0553-V1.0","title":"RORSI_2358_2015_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T01:10:15.000 to 2015-01-29T02:42:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0553-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:19.267457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0554-V1.0","title":"RORSI_2359_2015_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T12:51:10.000 to 2015-01-29T22:52:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0554-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:20.280135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0555-V1.0","title":"RORSI_2360_2015_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T23:09:05.000 to 2015-01-30T11:01:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0555-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:21.282290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0556-V1.0","title":"RORSI_2361_2015_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-30T20:42:40.000 to 2015-01-30T22:50:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0556-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:22.276372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0557-V1.0","title":"RORSI_2362_2015_031_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-31T04:50:20.000 to 2015-01-31T09:14:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0557-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:23.330294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0558-V1.0","title":"RORSI_2363_2015_032_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-01T06:13:05.000 to 2015-02-01T10:56:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0558-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:24.340967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0559-V1.0","title":"RORSI_2364_2015_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T07:42:05.000 to 2015-02-02T10:54:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0559-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:25.289617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0560-V1.0","title":"RORSI_2365_2015_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T16:53:50.000 to 2015-02-02T22:45:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0560-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:26.290112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0561-V1.0","title":"RORSI_2366_2015_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T23:32:10.000 to 2015-02-03T10:51:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0561-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:27.291642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0562-V1.0","title":"RORSI_2367_2015_034_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-03T11:16:10.000 to 2015-02-03T15:45:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0562-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:28.296230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0563-V1.0","title":"RORSI_2368_2015_035_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-04T11:14:35.000 to 2015-02-04T17:54:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0563-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:29.294025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0564-V1.0","title":"RORSI_2369_2015_036_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-05T11:13:00.000 to 2015-02-05T22:40:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0564-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:30.302384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0565-V1.0","title":"RORSI_2370_2015_036_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-05T22:57:10.000 to 2015-02-06T08:54:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0565-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:31.305421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0566-V1.0","title":"RORSI_2371_2015_037_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-06T22:55:30.000 to 2015-02-07T00:20:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0566-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:32.299026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0567-V1.0","title":"RORSI_2372_2015_038_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-07T03:35:40.000 to 2015-02-07T08:54:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0567-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:33.303193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0568-V1.0","title":"RORSI_2373_2015_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-08T08:43:05.000 to 2015-02-08T10:38:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0568-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:34.339580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0569-V1.0","title":"RORSI_2374_2015_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-08T11:08:15.000 to 2015-02-08T15:25:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0569-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:35.384089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0570-V1.0","title":"RORSI_2375_2015_040_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-09T11:06:40.000 to 2015-02-09T22:33:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0570-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:36.399427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0571-V1.0","title":"RORSI_2376_2015_040_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-09T22:50:30.000 to 2015-02-10T05:11:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0571-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:37.315566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0572-V1.0","title":"RORSI_2377_2015_041_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-10T07:49:21.000 to 2015-02-10T10:34:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0572-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:38.311028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0573-V1.0","title":"RORSI_2378_2015_041_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-10T22:48:50.000 to 2015-02-11T00:19:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0573-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:39.320650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0574-V1.0","title":"RORSI_2379_2015_042_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-11T01:55:55.000 to 2015-02-11T10:32:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0574-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:40.325647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0575-V1.0","title":"RORSI_2380_2015_042_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-11T11:03:35.000 to 2015-02-11T13:07:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0575-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:41.321741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0576-V1.0","title":"RORSI_2381_2015_043_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-12T08:54:45.000 to 2015-02-12T10:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0576-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:42.330021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0577-V1.0","title":"RORSI_2382_2015_043_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-12T11:02:00.000 to 2015-02-12T15:49:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0577-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:43.319827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0578-V1.0","title":"RORSI_2383_2015_044_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-13T00:50:05.000 to 2015-02-13T10:27:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0578-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:44.332364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0579-V1.0","title":"RORSI_2384_2015_044_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-13T11:00:30.000 to 2015-02-13T13:49:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0579-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:45.349299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0580-V1.0","title":"RORSI_2385_2015_045_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-14T01:56:05.000 to 2015-02-14T08:39:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0580-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:46.400030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0581-V1.0","title":"RORSI_2386_2015_046_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-15T00:23:05.000 to 2015-02-15T08:29:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0581-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:47.408524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0582-V1.0","title":"RORSI_2387_2015_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T08:43:25.000 to 2015-02-16T12:30:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0582-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:48.499236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0583-V1.0","title":"RORSI_2388_2015_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T16:22:05.000 to 2015-02-16T22:22:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0583-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:49.337879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0584-V1.0","title":"RORSI_2389_2015_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T23:20:10.000 to 2015-02-17T00:19:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0584-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:50.339842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0585-V1.0","title":"RORSI_2390_2015_048_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-17T02:25:05.000 to 2015-02-17T08:59:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0585-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:51.339058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0586-V1.0","title":"RORSI_2391_2015_048_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-17T22:37:40.000 to 2015-02-18T00:19:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0586-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:52.345554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0587-V1.0","title":"RORSI_2392_2015_049_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-18T03:36:25.000 to 2015-02-18T10:15:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0587-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:53.342308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0588-V1.0","title":"RORSI_2393_2015_049_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-18T10:53:00.000 to 2015-02-18T13:11:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0588-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:54.356578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0590-V1.0","title":"RORSI_2394_2015_050_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-19T08:35:00.000 to 2015-02-19T10:34:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0590-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:55.350128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0591-V1.0","title":"RORSI_2395_2015_050_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-19T10:51:30.000 to 2015-02-19T20:14:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0591-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:56.363562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0592-V1.0","title":"RORSI_2396_2015_051_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-20T00:28:05.000 to 2015-02-20T10:10:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0592-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:57.406716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0593-V1.0","title":"RORSI_2397_2015_051_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-20T10:50:05.000 to 2015-02-20T12:55:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0593-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:58.421272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0594-V1.0","title":"RORSI_2398_2015_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-21T18:16:50.000 to 2015-02-21T22:14:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0594-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:59.364003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0595-V1.0","title":"RORSI_2399_2015_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-21T22:31:25.000 to 2015-02-22T00:42:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0595-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:00.365599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0596-V1.0","title":"RORSI_2400_2015_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-22T08:12:05.000 to 2015-02-22T10:06:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0596-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:01.364609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0597-V1.0","title":"RORSI_2401_2015_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-22T10:47:10.000 to 2015-02-22T15:03:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0597-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:02.375403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0598-V1.0","title":"RORSI_2402_2015_054_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-23T10:45:45.000 to 2015-02-23T22:11:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0598-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:03.374188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0599-V1.0","title":"RORSI_2403_2015_054_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-23T22:28:20.000 to 2015-02-24T06:28:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0599-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:04.374069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0600-V1.0","title":"RORSI_2404_2015_055_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-24T10:44:20.000 to 2015-02-24T15:20:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0600-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:05.382965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0601-V1.0","title":"RORSI_2405_2015_055_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-24T22:26:50.000 to 2015-02-25T00:19:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0601-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:06.383135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0602-V1.0","title":"RORSI_2406_2015_056_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-25T03:36:55.000 to 2015-02-25T09:58:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0602-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:07.379680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0603-V1.0","title":"RORSI_2407_2015_056_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-25T14:42:55.000 to 2015-02-25T18:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0603-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:08.418933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0604-V1.0","title":"RORSI_2408_2015_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T00:07:05.000 to 2015-02-26T02:30:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0604-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:09.469279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0605-V1.0","title":"RORSI_2409_2015_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T08:15:20.000 to 2015-02-26T10:24:31.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0605-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:10.380039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0606-V1.0","title":"RORSI_2410_2015_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T10:41:30.000 to 2015-02-26T22:22:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0606-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:11.389457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0607-V1.0","title":"RORSI_2411_2015_058_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-27T04:43:05.000 to 2015-02-27T07:59:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0607-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:12.393670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0608-V1.0","title":"RORSI_2412_2015_058_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-27T22:22:20.000 to 2015-02-28T00:18:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0608-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:13.396018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0609-V1.0","title":"RORSI_2413_2015_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T03:37:05.000 to 2015-02-28T09:51:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0609-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:14.397804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0610-V1.0","title":"RORSI_2414_2015_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T10:08:35.000 to 2015-02-28T15:00:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0610-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:15.397893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0611-V1.0","title":"RORSI_2415_2015_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T17:37:40.000 to 2015-02-28T22:31:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0611-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:16.396797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0612-V1.0","title":"RORSI_2416_2015_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T22:34:15.000 to 2015-03-01T07:54:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0612-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:17.408779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0613-V1.0","title":"RORSI_2417_2015_060_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-01T11:48:05.000 to 2015-03-01T15:09:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0613-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:18.406539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0614-V1.0","title":"RORSI_2418_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T08:04:10.000 to 2015-03-02T10:19:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0614-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:19.427846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0615-V1.0","title":"RORSI_2419_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T10:36:00.000 to 2015-03-02T14:35:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0615-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:20.473282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0616-V1.0","title":"RORSI_2420_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T13:36:00.000 to 2015-03-02T14:35:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0616-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:21.488429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0617-V1.0","title":"RORSI_2421_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T14:28:35.000 to 2015-03-02T22:01:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0617-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:22.414718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0618-V1.0","title":"RORSI_2422_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T22:17:55.000 to 2015-03-03T09:44:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0618-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:23.421403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0619-V1.0","title":"RORSI_2423_2015_062_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-03T10:34:35.000 to 2015-03-03T12:25:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0619-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:24.422452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0620-V1.0","title":"RORSI_2424_2015_063_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-04T16:17:05.000 to 2015-03-04T19:03:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0620-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:25.415102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0621-V1.0","title":"RORSI_2425_2015_063_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-04T22:15:00.000 to 2015-03-05T04:07:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0621-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:26.423405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0622-V1.0","title":"RORSI_2426_2015_064_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T07:55:50.000 to 2015-03-05T10:15:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0622-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:27.431082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0623-V1.0","title":"RORSI_2427_2015_064_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T10:31:55.000 to 2015-03-05T14:59:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0623-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:28.428790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0624-V1.0","title":"RORSI_2428_2015_064_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T23:03:05.000 to 2015-03-06T07:40:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0624-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:29.428213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0625-V1.0","title":"RORSI_2429_2015_066_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-07T03:13:05.000 to 2015-03-07T07:34:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0625-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:30.433761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0626-V1.0","title":"RORSI_2430_2015_066_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-07T22:10:45.000 to 2015-03-08T00:56:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0626-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:31.482662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0627-V1.0","title":"RORSI_2431_2015_067_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T07:38:05.000 to 2015-03-08T09:32:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0627-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:32.499895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0628-V1.0","title":"RORSI_2432_2015_067_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T09:49:35.000 to 2015-03-08T11:50:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0628-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:33.434082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0629-V1.0","title":"RORSI_2433_2015_067_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T22:09:20.000 to 2015-03-09T00:06:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0629-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:34.442405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0630-V1.0","title":"RORSI_2434_2015_068_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T07:44:45.000 to 2015-03-09T10:09:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0630-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:35.444660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0631-V1.0","title":"RORSI_2435_2015_068_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T10:26:40.000 to 2015-03-09T19:54:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0631-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:36.442685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0632-V1.0","title":"RORSI_2436_2015_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T23:53:05.000 to 2015-03-10T02:11:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0632-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:37.444687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0633-V1.0","title":"RORSI_2437_2015_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T07:33:05.000 to 2015-03-10T09:28:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0633-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:38.456336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0634-V1.0","title":"RORSI_2438_2015_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T13:46:00.000 to 2015-03-10T15:57:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0634-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:39.453748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC1-0635-V1.0","title":"RORSI_2439_2015_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T22:06:35.000 to 2015-03-11T00:18:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0635-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:40.455116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0636-V1.0","title":"RORSI_2440_2015_070_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-11T01:58:00.000 to 2015-03-11T09:25:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0636-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:41.454014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0637-V1.0","title":"RORSI_2441_2015_070_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-11T10:24:05.000 to 2015-03-11T12:24:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0637-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:42.496070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0638-V1.0","title":"RORSI_2442_2015_071_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T07:36:25.000 to 2015-03-12T10:05:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0638-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:43.540805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0639-V1.0","title":"RORSI_2443_2015_071_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T10:22:50.000 to 2015-03-12T21:46:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0639-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:44.460805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0640-V1.0","title":"RORSI_2444_2015_071_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T22:03:50.000 to 2015-03-13T09:20:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0640-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:45.462288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0641-V1.0","title":"RORSI_2445_2015_072_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-13T10:21:35.000 to 2015-03-13T12:23:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0641-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:46.469245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0642-V1.0","title":"RORSI_2446_2015_072_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-13T14:11:10.000 to 2015-03-13T15:54:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0642-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:47.471323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0643-V1.0","title":"RORSI_2447_2015_073_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T02:03:15.000 to 2015-03-14T03:06:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0643-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:48.465701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0644-V1.0","title":"RORSI_2448_2015_073_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T07:28:05.000 to 2015-03-14T09:18:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0644-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:49.476687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0645-V1.0","title":"RORSI_2449_2015_074_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T23:48:05.000 to 2015-03-15T09:16:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0645-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:50.474114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0646-V1.0","title":"RORSI_2450_2015_074_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-15T10:19:10.000 to 2015-03-15T14:27:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0646-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:51.481244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0648-V1.0","title":"RORSI_2452_2015_075_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T11:33:05.000 to 2015-03-16T13:10:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0648-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:52.473769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0649-V1.0","title":"RORSI_2454_2015_075_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T13:11:25.000 to 2015-03-16T16:58:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0649-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:53.504903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0650-V1.0","title":"RORSI_2455_2015_075_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T17:06:25.000 to 2015-03-16T21:09:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0650-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:54.551801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0651-V1.0","title":"RORSI_2456_2015_075_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T21:58:25.000 to 2015-03-17T09:11:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0651-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:55.565592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0652-V1.0","title":"RORSI_2457_2015_076_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-17T10:16:40.000 to 2015-03-17T13:48:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0652-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:56.484296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0653-V1.0","title":"RORSI_2458_2015_076_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-17T22:38:30.000 to 2015-03-18T00:17:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0653-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:57.489811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0654-V1.0","title":"RORSI_2459_2015_077_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T01:58:35.000 to 2015-03-18T09:09:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0654-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:58.491663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0655-V1.0","title":"RORSI_2460_2015_077_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T04:48:30.000 to 2015-03-18T09:09:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0655-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:59.495562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0656-V1.0","title":"RORSI_2453_2015_077_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T10:15:30.000 to 2015-03-18T12:22:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0656-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:00.491239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0657-V1.0","title":"RORSI_2493_2015_078_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T07:17:15.000 to 2015-03-19T11:45:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0657-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:01.499657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0658-V1.0","title":"RORSI_2494_2015_078_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T16:03:20.000 to 2015-03-19T21:31:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0658-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:02.495048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0659-V1.0","title":"RORSI_2495_2015_078_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T21:54:30.000 to 2015-03-20T06:59:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0659-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:03.508274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0660-V1.0","title":"RORSI_2461_2015_079_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-20T13:25:05.000 to 2015-03-20T16:24:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0660-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:04.516305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0661-V1.0","title":"RORSI_2462_2015_079_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-20T22:19:45.000 to 2015-03-21T00:17:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0661-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:05.563904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0662-V1.0","title":"RORSI_2463_2015_080_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T01:58:50.000 to 2015-03-21T09:02:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0662-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:06.574997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0663-V1.0","title":"RORSI_2464_2015_080_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T10:12:00.000 to 2015-03-21T12:21:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0663-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:07.510451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0664-V1.0","title":"RORSI_2465_2015_080_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T21:52:00.000 to 2015-03-22T08:59:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0664-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:08.513714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0665-V1.0","title":"RORSI_2466_2015_081_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-22T10:10:50.000 to 2015-03-22T14:25:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0665-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:09.518557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0666-V1.0","title":"RORSI_2467_2015_081_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-22T22:28:40.000 to 2015-03-23T00:20:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0666-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:10.527975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0667-V1.0","title":"RORSI_2468_2015_082_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-23T18:33:05.000 to 2015-03-23T21:21:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0667-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:11.519770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0668-V1.0","title":"RORSI_2469_2015_082_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-23T21:49:30.000 to 2015-03-24T08:55:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0668-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:12.518951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0669-V1.0","title":"RORSI_2470_2015_083_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-24T10:08:30.000 to 2015-03-24T12:21:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0669-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:13.521945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0670-V1.0","title":"RORSI_2471_2015_083_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-24T21:48:15.000 to 2015-03-25T00:16:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0670-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:14.532554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0671-V1.0","title":"RORSI_2472_2015_084_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T01:59:15.000 to 2015-03-25T08:52:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0671-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:15.527917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0672-V1.0","title":"RORSI_2473_2015_084_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T10:07:25.000 to 2015-03-25T12:21:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0672-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:16.571985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0673-V1.0","title":"RORSI_2474_2015_084_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T17:57:20.000 to 2015-03-25T21:16:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0673-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:17.618996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0674-V1.0","title":"RORSI_2475_2015_085_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-26T10:06:20.000 to 2015-03-26T21:14:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0674-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:18.537099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0675-V1.0","title":"RORSI_2476_2015_085_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-26T21:45:45.000 to 2015-03-27T06:45:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0675-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:19.538244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0676-V1.0","title":"RORSI_2477_2015_086_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-27T21:44:35.000 to 2015-03-28T00:16:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0676-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:20.540459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0677-V1.0","title":"RORSI_2478_2015_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T01:59:30.000 to 2015-03-28T06:39:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0677-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:21.549662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0678-V1.0","title":"RORSI_2479_2015_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T15:53:05.000 to 2015-03-28T19:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0678-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:22.545528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0679-V1.0","title":"RORSI_2480_2015_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T21:43:20.000 to 2015-03-28T22:55:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0679-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:23.550688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0680-V1.0","title":"RORSI_2481_2015_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T22:58:35.000 to 2015-03-29T04:04:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0680-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:24.551381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0681-V1.0","title":"RORSI_2482_2015_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-29T05:04:40.000 to 2015-03-29T08:43:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0681-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:25.554275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0682-V1.0","title":"RORSI_2483_2015_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-29T10:03:00.000 to 2015-03-29T13:02:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0682-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:26.551503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0683-V1.0","title":"RORSI_2484_2015_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-30T14:53:05.000 to 2015-03-30T21:04:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0683-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:27.580608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0684-V1.0","title":"RORSI_2485_2015_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-30T21:41:00.000 to 2015-03-31T08:38:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0684-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:28.629940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0685-V1.0","title":"RORSI_2486_2015_090_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-31T10:00:55.000 to 2015-03-31T12:19:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0685-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:29.749416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0686-V1.0","title":"RORSI_2487_2015_091_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T06:42:05.000 to 2015-04-01T12:16:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0686-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:30.566220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0687-V1.0","title":"RORSI_2488_2015_091_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T13:59:55.000 to 2015-04-01T15:38:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0687-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:31.565199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0688-V1.0","title":"RORSI_2489_2015_091_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T21:42:05.000 to 2015-04-02T01:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0688-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:32.570107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0689-V1.0","title":"RORSI_2490_2015_092_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-02T15:23:05.000 to 2015-04-02T20:56:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0689-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:33.569262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0690-V1.0","title":"RORSI_2491_2015_092_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-02T21:37:30.000 to 2015-04-03T05:58:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0690-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:34.570295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0691-V1.0","title":"RORSI_2492_2015_094_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-03T23:23:05.000 to 2015-04-04T00:15:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0691-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:35.572745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0692-V1.0","title":"RORSI_2496_2015_094_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-04T03:40:10.000 to 2015-04-04T08:29:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0692-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:36.575054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0693-V1.0","title":"RORSI_2497_2015_095_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-04T23:28:05.000 to 2015-04-05T01:29:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0693-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:37.574821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0694-V1.0","title":"RORSI_2498_2015_096_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T06:28:45.000 to 2015-04-06T09:38:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0694-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:38.592197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0695-V1.0","title":"RORSI_2499_2015_096_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T09:54:55.000 to 2015-04-06T13:35:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0695-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:39.647052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0696-V1.0","title":"RORSI_2500_2015_097_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T23:28:05.000 to 2015-04-07T08:22:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0696-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:40.653681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0697-V1.0","title":"RORSI_2501_2015_097_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-07T08:39:50.000 to 2015-04-07T13:35:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0697-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:41.587379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0698-V1.0","title":"RORSI_2502_2015_098_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-07T23:28:05.000 to 2015-04-08T08:20:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0698-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:42.586807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0699-V1.0","title":"RORSI_2503_2015_099_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-09T09:52:05.000 to 2015-04-09T20:40:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0699-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:43.584046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0700-V1.0","title":"RORSI_2504_2015_099_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-09T21:29:55.000 to 2015-04-10T06:04:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0700-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:44.592932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0701-V1.0","title":"RORSI_2505_2015_100_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-10T12:41:45.000 to 2015-04-10T15:31:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0701-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:45.595983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0702-V1.0","title":"RORSI_2506_2015_100_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-10T21:28:55.000 to 2015-04-11T08:13:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0702-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:46.598996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0703-V1.0","title":"RORSI_2507_2015_101_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-11T08:30:50.000 to 2015-04-11T14:54:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0703-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:47.599535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0704-V1.0","title":"RORSI_2508_2015_102_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-11T23:23:05.000 to 2015-04-12T08:11:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0704-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:48.597104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0705-V1.0","title":"RORSI_2509_2015_102_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-12T08:28:35.000 to 2015-04-12T13:19:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0705-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:49.603982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0706-V1.0","title":"RORSI_2510_2015_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T06:12:05.000 to 2015-04-13T10:00:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0706-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:50.650448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0707-V1.0","title":"RORSI_2511_2015_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T15:43:05.000 to 2015-04-13T20:30:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0707-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:51.666330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0708-V1.0","title":"RORSI_2512_2015_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T21:25:50.000 to 2015-04-14T08:07:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0708-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:52.606521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0709-V1.0","title":"RORSI_2513_2015_105_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-15T02:18:05.000 to 2015-04-15T08:04:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0709-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:53.605227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0710-V1.0","title":"RORSI_2514_2015_105_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-15T12:57:05.000 to 2015-04-15T15:28:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0710-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:54.613763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0711-V1.0","title":"RORSI_2515_2015_106_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-16T06:02:40.000 to 2015-04-16T13:10:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0711-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:55.614420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0712-V1.0","title":"RORSI_2516_2015_106_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-16T21:23:00.000 to 2015-04-17T08:00:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0712-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:56.618045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0713-V1.0","title":"RORSI_2517_2015_107_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-17T12:28:15.000 to 2015-04-17T15:27:31.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0713-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:57.619952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0714-V1.0","title":"RORSI_2518_2015_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T02:08:05.000 to 2015-04-18T07:58:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0714-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:58.623068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0715-V1.0","title":"RORSI_2519_2015_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T08:15:10.000 to 2015-04-18T10:29:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0715-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:59.624355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0716-V1.0","title":"RORSI_2520_2015_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T17:02:05.000 to 2015-04-18T20:19:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0716-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:00.626447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0717-V1.0","title":"RORSI_2521_2015_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T21:21:10.000 to 2015-04-19T05:39:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0717-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:01.664958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0718-V1.0","title":"RORSI_2522_2015_109_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-19T05:59:42.000 to 2015-04-19T16:37:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0718-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:02.708553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0719-V1.0","title":"RORSI_2523_2015_110_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-20T05:52:25.000 to 2015-04-20T13:00:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0719-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:03.625610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0720-V1.0","title":"RORSI_2524_2015_110_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-20T23:13:05.000 to 2015-04-21T07:51:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0720-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:04.636756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0721-V1.0","title":"RORSI_2525_2015_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-21T08:08:35.000 to 2015-04-21T10:14:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0721-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:05.631342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0722-V1.0","title":"RORSI_2526_2015_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-21T21:18:30.000 to 2015-04-22T00:14:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0722-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:06.641452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0723-V1.0","title":"RORSI_2527_2015_112_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-22T08:06:25.000 to 2015-04-22T15:24:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0723-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:07.636559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0724-V1.0","title":"RORSI_2528_2015_112_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-22T02:01:55.000 to 2015-04-22T07:49:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0724-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:08.646789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0725-V1.0","title":"RORSI_2529_2015_113_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-23T05:44:50.000 to 2015-04-23T12:03:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0725-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:09.646233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0726-V1.0","title":"RORSI_2530_2015_113_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-23T12:20:50.000 to 2015-04-23T18:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0726-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:10.652201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0727-V1.0","title":"RORSI_2531_2015_114_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T03:03:05.000 to 2015-04-24T05:29:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0727-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:11.651102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0728-V1.0","title":"RORSI_2532_2015_114_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T12:15:40.000 to 2015-04-24T15:23:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0728-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:12.673163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0729-V1.0","title":"RORSI_2533_2015_114_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T21:15:55.000 to 2015-04-25T01:53:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0729-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:13.722857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0730-V1.0","title":"RORSI_2534_2015_115_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-25T02:02:15.000 to 2015-04-25T05:24:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0730-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:14.732032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0731-V1.0","title":"RORSI_2535_2015_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T05:43:05.000 to 2015-04-26T07:40:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0731-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:15.663186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0732-V1.0","title":"RORSI_2536_2015_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T07:57:45.000 to 2015-04-26T12:54:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0732-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:16.661775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0733-V1.0","title":"RORSI_2537_2015_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T23:42:05.000 to 2015-04-27T03:17:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0733-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:17.657721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0734-V1.0","title":"RORSI_2538_2015_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-27T12:33:05.000 to 2015-04-27T19:58:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0734-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:18.666437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0735-V1.0","title":"RORSI_2539_2015_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-27T21:13:35.000 to 2015-04-28T05:19:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0735-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:19.670479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0736-V1.0","title":"RORSI_2540_2015_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-28T09:08:05.000 to 2015-04-28T15:21:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0736-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:20.675001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0737-V1.0","title":"RORSI_2541_2015_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-28T21:12:50.000 to 2015-04-29T00:13:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0737-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:21.672684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0738-V1.0","title":"RORSI_2542_2015_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-29T02:02:40.000 to 2015-04-29T07:34:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0738-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:22.669390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0739-V1.0","title":"RORSI_2543_2015_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-29T07:51:15.000 to 2015-04-29T13:09:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0739-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:23.681596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0740-V1.0","title":"RORSI_2544_2015_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T05:27:25.000 to 2015-04-30T09:19:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0740-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:24.742225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0741-V1.0","title":"RORSI_2545_2015_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T09:36:15.000 to 2015-04-30T15:24:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0741-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:25.741932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0742-V1.0","title":"RORSI_2546_2015_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T21:11:20.000 to 2015-05-01T07:30:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0742-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:26.685857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0743-V1.0","title":"RORSI_2547_2015_121_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-01T09:35:40.000 to 2015-05-01T12:13:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0743-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:27.682281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0744-V1.0","title":"RORSI_2548_2015_121_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-01T21:10:35.000 to 2015-05-01T23:43:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0744-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:28.688195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0745-V1.0","title":"RORSI_2549_2015_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T07:44:55.000 to 2015-05-02T12:44:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0745-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:29.690771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0746-V1.0","title":"RORSI_2550_2015_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T04:27:55.000 to 2015-05-02T07:27:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0746-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:30.694060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0747-V1.0","title":"RORSI_2551_2015_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T23:08:05.000 to 2015-05-03T05:49:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0747-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:31.696290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0748-V1.0","title":"RORSI_2552_2015_123_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-03T22:32:40.000 to 2015-05-04T04:36:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0748-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:32.696775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0749-V1.0","title":"RORSI_2553_2015_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T05:17:45.000 to 2015-05-04T09:17:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0749-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:33.695997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0750-V1.0","title":"RORSI_2554_2015_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T09:34:00.000 to 2015-05-04T16:44:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0750-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:34.699750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0751-V1.0","title":"RORSI_2555_2015_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T23:08:05.000 to 2015-05-05T07:21:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0751-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:35.744753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0752-V1.0","title":"RORSI_2556_2015_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-05T07:38:35.000 to 2015-05-05T09:56:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0752-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:36.789894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0753-V1.0","title":"RORSI_2557_2015_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-05T10:12:50.000 to 2015-05-05T12:25:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0753-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:37.801172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0754-V1.0","title":"RORSI_2558_2015_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-06T05:12:55.000 to 2015-05-06T12:24:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0754-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:38.716365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0755-V1.0","title":"RORSI_2559_2015_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-06T21:28:05.000 to 2015-05-07T02:36:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0755-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:39.713342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0756-V1.0","title":"RORSI_2560_2015_127_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-07T09:32:35.000 to 2015-05-07T18:44:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0756-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:40.721102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0757-V1.0","title":"RORSI_2561_2015_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T03:08:05.000 to 2015-05-08T07:15:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0757-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:41.719694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0758-V1.0","title":"RORSI_2562_2015_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T09:42:10.000 to 2015-05-08T12:11:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0758-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:42.728136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0759-V1.0","title":"RORSI_2563_2015_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T12:27:55.000 to 2015-05-08T14:29:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0759-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:43.727615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0760-V1.0","title":"RORSI_2564_2015_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T23:08:05.000 to 2015-05-09T06:39:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0760-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:44.729640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0761-V1.0","title":"RORSI_2565_2015_129_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-09T10:02:05.000 to 2015-05-09T12:25:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0761-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:45.730570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0762-V1.0","title":"RORSI_2566_2015_129_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-09T21:05:35.000 to 2015-05-10T07:11:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0762-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:46.749164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0763-V1.0","title":"RORSI_2567_2015_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T07:28:15.000 to 2015-05-10T09:45:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0763-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:47.794793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0764-V1.0","title":"RORSI_2568_2015_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T10:02:30.000 to 2015-05-10T12:10:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0764-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:48.812690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0765-V1.0","title":"RORSI_2569_2015_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T22:16:40.000 to 2015-05-11T01:46:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0765-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:49.740490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0766-V1.0","title":"RORSI_2570_2015_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T05:01:10.000 to 2015-05-11T06:45:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0766-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:50.742845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0767-V1.0","title":"RORSI_2571_2015_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T09:31:00.000 to 2015-05-11T18:39:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0767-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:51.745750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0768-V1.0","title":"RORSI_2572_2015_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T22:03:05.000 to 2015-05-12T07:07:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0768-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:52.745125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0769-V1.0","title":"RORSI_2573_2015_132_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-12T12:09:40.000 to 2015-05-12T15:17:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0769-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:53.747895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0770-V1.0","title":"RORSI_2574_2015_132_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-12T21:04:00.000 to 2015-05-12T23:12:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0770-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:54.753210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0771-V1.0","title":"RORSI_2575_2015_133_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-13T05:03:05.000 to 2015-05-13T07:05:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0771-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:55.751011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0772-V1.0","title":"RORSI_2576_2015_133_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-13T09:30:20.000 to 2015-05-13T12:09:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0772-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:56.752798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0773-V1.0","title":"RORSI_2577_2015_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T04:54:20.000 to 2015-05-14T06:45:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0773-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:57.760408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0774-V1.0","title":"RORSI_2578_2015_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T09:30:00.000 to 2015-05-14T19:20:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0774-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:58.806714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0775-V1.0","title":"RORSI_2579_2015_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T21:03:05.000 to 2015-05-15T00:11:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0775-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:59.820312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0776-V1.0","title":"RORSI_2580_2015_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T05:03:05.000 to 2015-05-15T07:01:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0776-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:00.762233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0777-V1.0","title":"RORSI_2581_2015_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T09:29:45.000 to 2015-05-15T12:08:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0777-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:01.767331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0778-V1.0","title":"RORSI_2582_2015_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T12:25:35.000 to 2015-05-15T15:16:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0778-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:02.766014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0779-V1.0","title":"RORSI_2583_2015_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T23:03:05.000 to 2015-05-16T06:59:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0779-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:03.770763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0780-V1.0","title":"RORSI_2584_2015_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T07:16:10.000 to 2015-05-16T09:12:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0780-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:04.773002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0781-V1.0","title":"RORSI_2585_2015_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T09:29:25.000 to 2015-05-16T12:08:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0781-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:05.777787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0782-V1.0","title":"RORSI_2586_2015_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T22:33:05.000 to 2015-05-17T04:14:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0782-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:06.771268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0783-V1.0","title":"RORSI_2587_2015_137_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T05:07:20.000 to 2015-05-17T06:57:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0783-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:07.781976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0784-V1.0","title":"RORSI_2588_2015_137_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T07:14:10.000 to 2015-05-17T09:12:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0784-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:08.783393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0785-V1.0","title":"RORSI_2589_2015_137_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T09:29:10.000 to 2015-05-17T12:04:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0785-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:09.819480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0786-V1.0","title":"RORSI_2590_2015_138_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T04:45:20.000 to 2015-05-18T06:45:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0786-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:10.967308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0787-V1.0","title":"RORSI_2591_2015_138_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T09:29:00.000 to 2015-05-18T11:59:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0787-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:11.878108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0788-V1.0","title":"RORSI_2592_2015_138_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T21:01:25.000 to 2015-05-19T01:39:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0788-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:12.786969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0789-V1.0","title":"RORSI_2593_2015_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T00:01:25.000 to 2015-05-19T06:53:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0789-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:13.782987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0791-V1.0","title":"RORSI_2594_2015_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T12:57:05.000 to 2015-05-19T13:56:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0791-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:14.792856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0792-V1.0","title":"RORSI_2595_2015_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T14:09:30.000 to 2015-05-19T15:16:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0792-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:15.793356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0793-V1.0","title":"RORSI_2596_2015_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T21:02:05.000 to 2015-05-20T00:35:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0793-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:16.795518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0794-V1.0","title":"RORSI_2597_2015_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-20T04:55:05.000 to 2015-05-20T06:51:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0794-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:17.797030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0795-V1.0","title":"RORSI_2598_2015_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-20T09:28:35.000 to 2015-05-20T12:06:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0795-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:18.802293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0796-V1.0","title":"RORSI_2599_2015_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T04:38:45.000 to 2015-05-21T09:11:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0796-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:19.802855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0797-V1.0","title":"RORSI_2600_2015_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T09:28:25.000 to 2015-05-21T17:30:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0797-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:20.824990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0798-V1.0","title":"RORSI_2601_2015_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T21:02:05.000 to 2015-05-22T00:31:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0798-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:21.876931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0799-V1.0","title":"RORSI_2602_2015_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T04:48:05.000 to 2015-05-22T06:47:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0799-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:22.891259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0800-V1.0","title":"RORSI_2603_2015_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T09:28:20.000 to 2015-05-22T11:54:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0800-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:23.810094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0801-V1.0","title":"RORSI_2604_2015_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T21:00:10.000 to 2015-05-22T23:09:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0801-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:24.814797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0802-V1.0","title":"RORSI_2605_2015_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-23T05:05:50.000 to 2015-05-23T06:45:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0802-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:25.822382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0803-V1.0","title":"RORSI_2606_2015_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-23T09:28:10.000 to 2015-05-23T12:25:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0803-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:26.818497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0804-V1.0","title":"RORSI_2607_2015_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T07:00:45.000 to 2015-05-24T09:25:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0804-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:27.828044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0805-V1.0","title":"RORSI_2608_2015_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T04:43:05.000 to 2015-05-24T06:43:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0805-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:28.829379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0806-V1.0","title":"RORSI_2609_2015_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T09:42:05.000 to 2015-05-24T13:55:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0806-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:29.825378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0807-V1.0","title":"RORSI_2610_2015_145_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-25T12:03:05.000 to 2015-05-25T18:57:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0807-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:30.836135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0808-V1.0","title":"RORSI_2611_2015_145_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-25T20:59:25.000 to 2015-05-26T06:40:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0808-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:31.840950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0809-V1.0","title":"RORSI_2612_2015_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T06:57:00.000 to 2015-05-26T09:11:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0809-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:32.887673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0810-V1.0","title":"RORSI_2613_2015_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T09:28:00.000 to 2015-05-26T11:54:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0810-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:33.903859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0811-V1.0","title":"RORSI_2614_2015_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T20:59:15.000 to 2015-05-27T05:59:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0811-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:34.834637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0812-V1.0","title":"RORSI_2615_2015_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T09:28:00.000 to 2015-05-28T13:51:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0812-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:35.837045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0813-V1.0","title":"RORSI_2616_2015_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T14:06:20.000 to 2015-05-28T15:57:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0813-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:36.840565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0814-V1.0","title":"RORSI_2617_2015_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T16:13:20.000 to 2015-05-28T18:51:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0814-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:37.846220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0815-V1.0","title":"RORSI_2618_2015_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T20:58:50.000 to 2015-05-29T06:34:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0815-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:38.849504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0816-V1.0","title":"RORSI_2619_2015_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-29T09:28:00.000 to 2015-05-29T11:34:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0816-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:39.852839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0817-V1.0","title":"RORSI_2620_2015_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-29T20:58:45.000 to 2015-05-30T04:35:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0817-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:40.852421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0818-V1.0","title":"RORSI_2621_2015_150_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-30T09:28:05.000 to 2015-05-30T11:35:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0818-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:41.854917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0819-V1.0","title":"RORSI_2622_2015_150_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-30T22:58:05.000 to 2015-05-31T04:54:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0819-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:42.861900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0820-V1.0","title":"RORSI_2623_2015_151_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-31T09:28:10.000 to 2015-05-31T12:01:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0820-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:43.898476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0821-V1.0","title":"RORSI_2624_2015_152_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-01T09:28:15.000 to 2015-06-01T14:36:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0821-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:44.942814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0822-V1.0","title":"RORSI_2625_2015_152_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-01T20:58:30.000 to 2015-06-02T06:27:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0822-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:45.864073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0823-V1.0","title":"RORSI_2626_2015_153_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-02T09:28:25.000 to 2015-06-02T12:00:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0823-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:46.873015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0824-V1.0","title":"RORSI_2627_2015_154_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-03T09:28:35.000 to 2015-06-03T13:14:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0824-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:47.866049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0825-V1.0","title":"RORSI_2628_2015_155_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-04T09:28:40.000 to 2015-06-04T18:37:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0825-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:48.871556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0826-V1.0","title":"RORSI_2629_2015_155_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-04T20:58:25.000 to 2015-06-05T06:22:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0826-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:49.874261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0827-V1.0","title":"RORSI_2630_2015_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-05T09:28:55.000 to 2015-06-05T17:10:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0827-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:50.875421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0828-V1.0","title":"RORSI_2631_2015_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-05T22:58:05.000 to 2015-06-05T23:40:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0828-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:51.881267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0829-V1.0","title":"RORSI_2632_2015_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-06T09:29:05.000 to 2015-06-06T15:05:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0829-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:52.891016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0830-V1.0","title":"RORSI_2633_2015_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-06T22:58:05.000 to 2015-06-07T06:18:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0830-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:53.879810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0831-V1.0","title":"RORSI_2634_2015_158_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-07T09:29:20.000 to 2015-06-07T11:19:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0831-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:54.909225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0832-V1.0","title":"RORSI_2635_2015_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T09:29:35.000 to 2015-06-08T11:17:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0832-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:55.958251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0833-V1.0","title":"RORSI_2636_2015_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T16:57:05.000 to 2015-06-08T18:30:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0833-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:56.969269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0834-V1.0","title":"RORSI_2637_2015_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T20:58:40.000 to 2015-06-09T06:15:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0834-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:57.890216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0835-V1.0","title":"RORSI_2638_2015_160_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-09T20:58:50.000 to 2015-06-10T00:19:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0835-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:58.891462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0836-V1.0","title":"RORSI_2639_2015_161_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-10T04:56:20.000 to 2015-06-10T06:13:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0836-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:59.890995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0837-V1.0","title":"RORSI_2640_2015_161_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-10T16:12:05.000 to 2015-06-10T18:26:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0837-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:00.890837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0838-V1.0","title":"RORSI_2641_2015_162_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-11T04:03:15.000 to 2015-06-11T06:04:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0838-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:01.896652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0839-V1.0","title":"RORSI_2642_2015_162_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-11T20:59:05.000 to 2015-06-12T06:10:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0839-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:02.901049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0840-V1.0","title":"RORSI_2643_2015_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-12T20:59:20.000 to 2015-06-13T06:09:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0840-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:03.899409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0841-V1.0","title":"RORSI_2644_2015_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-13T22:58:05.000 to 2015-06-14T06:07:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0841-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:04.904408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0842-V1.0","title":"RORSI_2645_2015_165_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-14T12:27:05.000 to 2015-06-14T14:25:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0842-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:05.917009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0843-V1.0","title":"RORSI_2646_2015_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-15T03:50:25.000 to 2015-06-15T11:09:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0843-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:06.968261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0844-V1.0","title":"RORSI_2647_2015_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-15T21:00:00.000 to 2015-06-15T23:45:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0844-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:07.977593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0845-V1.0","title":"RORSI_2648_2015_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-16T03:48:45.000 to 2015-06-16T05:15:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0845-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:08.911961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0846-V1.0","title":"RORSI_2649_2015_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-16T10:32:05.000 to 2015-06-16T16:50:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0846-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:09.922965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0847-V1.0","title":"RORSI_2650_2015_168_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-17T04:56:50.000 to 2015-06-17T15:21:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0847-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:10.914484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0848-V1.0","title":"RORSI_2651_2015_169_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-18T07:03:30.000 to 2015-06-18T15:21:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0848-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:12.173947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0849-V1.0","title":"RORSI_2652_2015_170_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-19T03:44:00.000 to 2015-06-19T11:14:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0849-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:13.097217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0850-V1.0","title":"RORSI_2653_2015_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-20T03:42:25.000 to 2015-06-20T09:23:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0850-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:14.093406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0851-V1.0","title":"RORSI_2654_2015_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-20T21:01:35.000 to 2015-06-21T05:57:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0851-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:15.100997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0852-V1.0","title":"RORSI_2655_2015_172_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-21T21:02:00.000 to 2015-06-21T22:40:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0852-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:16.106583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0853-V1.0","title":"RORSI_2656_2015_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-22T09:35:55.000 to 2015-06-22T18:06:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0853-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:17.109526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0854-V1.0","title":"RORSI_2657_2015_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-22T21:05:55.000 to 2015-06-23T04:20:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0854-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:18.108713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0855-V1.0","title":"RORSI_2658_2015_174_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-23T21:02:50.000 to 2015-06-24T00:21:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0855-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:19.111718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0856-V1.0","title":"RORSI_2659_2015_175_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-24T11:42:40.000 to 2015-06-24T13:49:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0856-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:20.113134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0857-V1.0","title":"RORSI_2660_2015_176_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-25T21:03:45.000 to 2015-06-26T00:23:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0857-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:21.119828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0859-V1.0","title":"RORSI_2661_2015_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-26T11:38:20.000 to 2015-06-26T13:54:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0859-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:22.167587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0860-V1.0","title":"RORSI_2662_2015_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-26T21:04:15.000 to 2015-06-27T00:19:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0860-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:23.183182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0861-V1.0","title":"RORSI_2663_2015_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-27T05:16:20.000 to 2015-06-27T05:49:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0861-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:24.121070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0862-V1.0","title":"RORSI_2664_2015_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-27T21:34:25.000 to 2015-06-28T05:48:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0862-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:25.125824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0863-V1.0","title":"RORSI_2665_2015_179_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-28T06:05:20.000 to 2015-06-28T16:06:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0863-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:26.127939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0864-V1.0","title":"RORSI_2666_2015_179_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-28T21:34:22.000 to 2015-06-28T23:15:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0864-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:27.130875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0865-V1.0","title":"RORSI_2667_2015_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T14:48:05.000 to 2015-06-29T16:03:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0865-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:28.131985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0866-V1.0","title":"RORSI_2668_2015_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T16:23:30.000 to 2015-06-29T17:56:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0866-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:29.133016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0867-V1.0","title":"RORSI_2669_2015_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T21:05:50.000 to 2015-06-30T05:46:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0867-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:30.141063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0868-V1.0","title":"RORSI_2670_2015_181_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-30T10:12:15.000 to 2015-06-30T11:37:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0868-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:31.136176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC2-0869-V1.0","title":"RORSI_2671_2015_181_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-30T22:02:05.000 to 2015-06-30T23:30:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0869-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:32.138031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0870-V1.0","title":"RORSI_2672_2015_182_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-01T03:27:20.000 to 2015-07-01T04:55:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0870-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:33.181975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0871-V1.0","title":"RORSI_2673_2015_182_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-01T21:06:55.000 to 2015-07-02T03:00:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0871-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:34.227221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0872-V1.0","title":"RORSI_2674_2015_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T03:25:00.000 to 2015-07-03T05:29:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0872-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:35.146127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0873-V1.0","title":"RORSI_2675_2015_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T14:48:05.000 to 2015-07-03T17:51:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0873-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:36.146549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0874-V1.0","title":"RORSI_2676_2015_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T21:08:05.000 to 2015-07-04T00:18:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0874-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:37.152050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0875-V1.0","title":"RORSI_2677_2015_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T04:57:45.000 to 2015-07-04T05:41:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0875-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:38.153645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0876-V1.0","title":"RORSI_2678_2015_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T10:08:10.000 to 2015-07-04T13:09:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0876-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:39.148106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0877-V1.0","title":"RORSI_2679_2015_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T21:08:45.000 to 2015-07-05T03:10:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0877-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:40.157199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0878-V1.0","title":"RORSI_2680_2015_186_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-05T21:57:05.000 to 2015-07-06T00:09:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0878-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:41.159149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0879-V1.0","title":"RORSI_2681_2015_187_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-06T03:21:40.000 to 2015-07-06T09:47:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0879-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:42.160009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0880-V1.0","title":"RORSI_2682_2015_188_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-07T03:20:40.000 to 2015-07-07T05:19:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0880-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:43.163967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0881-V1.0","title":"RORSI_2683_2015_189_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-08T09:47:40.000 to 2015-07-08T17:45:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0881-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:44.186911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0882-V1.0","title":"RORSI_2684_2015_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T03:50:00.000 to 2015-07-09T05:04:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0882-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:45.237410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0883-V1.0","title":"RORSI_2685_2015_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T08:02:05.000 to 2015-07-09T10:40:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0883-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:46.253134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0884-V1.0","title":"RORSI_2686_2015_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T14:50:00.000 to 2015-07-09T17:44:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0884-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:47.170469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0885-V1.0","title":"RORSI_2687_2015_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T00:43:55.000 to 2015-07-10T04:04:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0885-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:48.173943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0886-V1.0","title":"RORSI_2688_2015_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T16:46:05.000 to 2015-07-10T17:43:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0886-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:49.174477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0887-V1.0","title":"RORSI_2689_2015_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T21:12:40.000 to 2015-07-11T00:17:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0887-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:50.179128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0888-V1.0","title":"RORSI_2690_2015_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T01:32:05.000 to 2015-07-11T02:27:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0888-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:51.181232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0889-V1.0","title":"RORSI_2691_2015_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T05:49:46.000 to 2015-07-11T06:20:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0889-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:52.283933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0890-V1.0","title":"RORSI_2692_2015_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T15:05:15.000 to 2015-07-11T17:41:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0890-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:53.186127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0892-V1.0","title":"RORSI_2693_2015_193_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-12T13:01:50.000 to 2015-07-12T15:34:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0892-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:54.183810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0893-V1.0","title":"RORSI_2694_2015_193_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-12T21:14:00.000 to 2015-07-13T03:44:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0893-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:55.197662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0894-V1.0","title":"RORSI_2695_2015_194_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-13T09:52:00.000 to 2015-07-13T17:40:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0894-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:56.247907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0895-V1.0","title":"RORSI_2696_2015_194_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-13T21:14:45.000 to 2015-07-14T04:39:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0895-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:57.258966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0896-V1.0","title":"RORSI_2697_2015_195_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-14T11:02:05.000 to 2015-07-14T14:20:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0896-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:58.192160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0897-V1.0","title":"RORSI_2698_2015_195_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-14T21:15:25.000 to 2015-07-15T03:34:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0897-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:59.195217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0898-V1.0","title":"RORSI_2699_2015_196_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-15T09:53:45.000 to 2015-07-15T16:53:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0898-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:00.196741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0899-V1.0","title":"RORSI_2700_2015_196_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-15T21:16:05.000 to 2015-07-16T04:35:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0899-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:01.202461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0900-V1.0","title":"RORSI_2701_2015_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T09:54:35.000 to 2015-07-16T11:09:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0900-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:02.204327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0901-V1.0","title":"RORSI_2702_2015_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T14:02:05.000 to 2015-07-16T16:52:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0901-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:03.205713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0902-V1.0","title":"RORSI_2703_2015_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T21:16:50.000 to 2015-07-17T02:59:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0902-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:04.201859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0903-V1.0","title":"RORSI_2704_2015_198_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-17T10:03:05.000 to 2015-07-17T16:02:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0903-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:05.209002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0904-V1.0","title":"RORSI_2705_2015_198_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-17T16:23:20.000 to 2015-07-17T17:36:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0904-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:06.212754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0905-V1.0","title":"RORSI_2706_2015_199_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-18T21:18:10.000 to 2015-07-19T02:54:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0905-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:07.256654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0906-V1.0","title":"RORSI_2707_2015_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-19T10:43:20.000 to 2015-07-19T11:44:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0906-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:08.270259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0907-V1.0","title":"RORSI_2708_2015_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-19T21:18:55.000 to 2015-07-20T03:29:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0907-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:09.217057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0908-V1.0","title":"RORSI_2709_2015_201_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-20T10:42:40.000 to 2015-07-20T17:34:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0908-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:10.217203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0909-V1.0","title":"RORSI_2710_2015_202_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T07:28:05.000 to 2015-07-21T09:41:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0909-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:11.222698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0910-V1.0","title":"RORSI_2711_2015_202_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T09:58:50.000 to 2015-07-21T12:54:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0910-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:12.223880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0911-V1.0","title":"RORSI_2712_2015_202_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T15:03:05.000 to 2015-07-21T17:33:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0911-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:13.226828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0912-V1.0","title":"RORSI_2713_2015_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-22T15:03:05.000 to 2015-07-22T17:32:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0912-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:14.231937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0913-V1.0","title":"RORSI_2714_2015_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-22T21:21:00.000 to 2015-07-23T03:39:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0913-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:15.234205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0914-V1.0","title":"RORSI_2715_2015_204_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-23T10:00:30.000 to 2015-07-23T11:54:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0914-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:16.229662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0915-V1.0","title":"RORSI_2716_2015_204_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-23T16:03:05.000 to 2015-07-23T17:30:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0915-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:17.240397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0916-V1.0","title":"RORSI_2717_2015_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T13:23:05.000 to 2015-07-24T14:53:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0916-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:18.274474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0917-V1.0","title":"RORSI_2718_2015_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T15:59:30.000 to 2015-07-24T17:31:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0917-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:19.318748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0918-V1.0","title":"RORSI_2719_2015_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T21:22:20.000 to 2015-07-25T04:37:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0918-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:20.333415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0919-V1.0","title":"RORSI_2720_2015_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-25T15:57:30.000 to 2015-07-25T17:35:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0919-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:21.238352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0920-V1.0","title":"RORSI_2721_2015_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-25T21:22:55.000 to 2015-07-26T04:40:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0920-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:22.249585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0921-V1.0","title":"RORSI_2722_2015_207_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-26T10:17:05.000 to 2015-07-26T14:10:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0921-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:23.253029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0922-V1.0","title":"RORSI_2723_2015_208_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T03:06:45.000 to 2015-07-27T10:23:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0922-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:24.252555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0923-V1.0","title":"RORSI_2724_2015_208_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T10:40:15.000 to 2015-07-27T17:29:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0923-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:25.249457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0924-V1.0","title":"RORSI_2725_2015_208_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T21:24:15.000 to 2015-07-28T05:24:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0924-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:26.254831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0925-V1.0","title":"RORSI_2726_2015_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-28T10:40:10.000 to 2015-07-28T17:29:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0925-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:27.254530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0926-V1.0","title":"RORSI_2727_2015_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-28T21:24:50.000 to 2015-07-29T00:24:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0926-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:28.261986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0927-V1.0","title":"RORSI_2728_2015_210_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-29T10:40:15.000 to 2015-07-29T17:28:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0927-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:29.279582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0928-V1.0","title":"RORSI_2729_2015_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T03:05:45.000 to 2015-07-30T10:23:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0928-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:30.330950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0929-V1.0","title":"RORSI_2730_2015_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T10:40:20.000 to 2015-07-30T17:28:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0929-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:31.341986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0930-V1.0","title":"RORSI_2731_2015_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T21:26:00.000 to 2015-07-31T05:23:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0930-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:32.274446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0931-V1.0","title":"RORSI_2732_2015_212_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-31T10:40:20.000 to 2015-07-31T17:00:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0931-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:33.267395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0932-V1.0","title":"RORSI_2733_2015_212_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-31T21:40:40.000 to 2015-08-01T04:37:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0932-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:34.275751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0933-V1.0","title":"RORSI_2734_2015_213_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-01T10:40:25.000 to 2015-08-01T17:27:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0933-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:35.274431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0934-V1.0","title":"RORSI_2735_2015_214_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T03:05:00.000 to 2015-08-02T09:50:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0934-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:36.286316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0935-V1.0","title":"RORSI_2736_2015_214_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T10:07:45.000 to 2015-08-02T17:27:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0935-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:37.279799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0936-V1.0","title":"RORSI_2737_2015_214_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T21:27:40.000 to 2015-08-03T05:23:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0936-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:38.286731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0937-V1.0","title":"RORSI_2738_2015_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T10:08:20.000 to 2015-08-03T13:33:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0937-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:39.284472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0938-V1.0","title":"RORSI_2739_2015_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T14:38:45.000 to 2015-08-03T15:58:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0938-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:40.289017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0939-V1.0","title":"RORSI_2740_2015_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T16:20:45.000 to 2015-08-03T17:27:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0939-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:41.344456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0940-V1.0","title":"RORSI_2741_2015_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T21:28:10.000 to 2015-08-04T05:22:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0940-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:42.353479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0941-V1.0","title":"RORSI_2742_2015_216_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-04T10:08:55.000 to 2015-08-04T17:27:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0941-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:43.300974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0942-V1.0","title":"RORSI_2743_2015_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T03:04:30.000 to 2015-08-05T04:37:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0942-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:44.302935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0943-V1.0","title":"RORSI_2744_2015_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T04:58:45.000 to 2015-08-05T09:52:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0943-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:45.300138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0944-V1.0","title":"RORSI_2745_2015_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T10:09:25.000 to 2015-08-05T17:26:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0944-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:46.304842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0945-V1.0","title":"RORSI_2746_2015_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T21:29:05.000 to 2015-08-06T05:22:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0945-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:47.312632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0946-V1.0","title":"RORSI_2747_2015_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-06T10:10:00.000 to 2015-08-06T17:26:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0946-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:48.304331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0947-V1.0","title":"RORSI_2748_2015_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-06T21:29:30.000 to 2015-08-07T05:22:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0947-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:49.306658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0948-V1.0","title":"RORSI_2749_2015_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-07T10:10:25.000 to 2015-08-07T17:26:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0948-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:50.319248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0949-V1.0","title":"RORSI_2750_2015_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T03:33:40.000 to 2015-08-08T04:38:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0949-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:51.320014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0950-V1.0","title":"RORSI_2751_2015_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T05:00:20.000 to 2015-08-08T15:52:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0950-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:52.350555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0951-V1.0","title":"RORSI_2752_2015_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T21:30:20.000 to 2015-08-09T05:22:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0951-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:53.401107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0952-V1.0","title":"RORSI_2753_2015_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-09T10:11:20.000 to 2015-08-09T17:26:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0952-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:54.409907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0953-V1.0","title":"RORSI_2754_2015_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-09T21:30:40.000 to 2015-08-10T05:22:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0953-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:55.322804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0954-V1.0","title":"RORSI_2755_2015_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-10T10:11:40.000 to 2015-08-10T17:26:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0954-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:56.322524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0955-V1.0","title":"RORSI_2756_2015_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-11T03:04:05.000 to 2015-08-11T15:53:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0955-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:57.326126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0956-V1.0","title":"RORSI_2757_2015_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-11T21:31:15.000 to 2015-08-12T00:17:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0956-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:58.331206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0957-V1.0","title":"RORSI_2758_2015_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-12T10:12:20.000 to 2015-08-12T17:26:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0957-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:59.332171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0958-V1.0","title":"RORSI_2759_2015_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-12T21:31:30.000 to 2015-08-13T05:22:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0958-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:00.334914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0959-V1.0","title":"RORSI_2760_2015_225_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-13T10:12:40.000 to 2015-08-13T17:26:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0959-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:01.334590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0960-V1.0","title":"RORSI_2761_2015_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T03:04:05.000 to 2015-08-14T09:55:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0960-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:02.338341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0961-V1.0","title":"RORSI_2762_2015_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T10:12:50.000 to 2015-08-14T17:28:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0961-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:03.356099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0962-V1.0","title":"RORSI_2763_2015_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T21:31:55.000 to 2015-08-15T04:37:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0962-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:04.403947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0963-V1.0","title":"RORSI_2764_2015_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-15T10:13:05.000 to 2015-08-15T15:29:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0963-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:05.420029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0964-V1.0","title":"RORSI_2765_2015_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-15T21:32:05.000 to 2015-08-16T05:22:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0964-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:06.350783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0965-V1.0","title":"RORSI_2766_2015_228_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-16T10:47:10.000 to 2015-08-16T17:26:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0965-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:07.350443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0966-V1.0","title":"RORSI_2767_2015_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T03:04:20.000 to 2015-08-17T09:56:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0966-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:08.351081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0967-V1.0","title":"RORSI_2768_2015_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T10:13:20.000 to 2015-08-17T17:26:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0967-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:09.352312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0968-V1.0","title":"RORSI_2769_2015_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T21:32:20.000 to 2015-08-18T03:40:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0968-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:10.351892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0969-V1.0","title":"RORSI_2770_2015_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-18T10:13:25.000 to 2015-08-18T17:26:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0969-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:11.355403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0970-V1.0","title":"RORSI_2771_2015_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-18T21:32:25.000 to 2015-08-19T00:17:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0970-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:12.363785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0971-V1.0","title":"RORSI_2772_2015_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-19T10:13:25.000 to 2015-08-19T17:26:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0971-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:13.363691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0972-V1.0","title":"RORSI_2773_2015_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T03:04:35.000 to 2015-08-20T09:56:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0972-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:14.370769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0973-V1.0","title":"RORSI_2774_2015_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T10:13:25.000 to 2015-08-20T14:42:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0973-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:15.414757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0974-V1.0","title":"RORSI_2775_2015_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T15:27:50.000 to 2015-08-20T17:26:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0974-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:16.432635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0975-V1.0","title":"RORSI_2776_2015_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T21:32:25.000 to 2015-08-21T05:23:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0975-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:17.371251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0976-V1.0","title":"RORSI_2777_2015_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T10:13:20.000 to 2015-08-21T15:59:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0976-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:18.374751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0977-V1.0","title":"RORSI_2778_2015_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T16:21:50.000 to 2015-08-21T17:26:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0977-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:19.375650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0978-V1.0","title":"RORSI_2779_2015_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T21:32:20.000 to 2015-08-22T04:37:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0978-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:20.376907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0979-V1.0","title":"RORSI_2780_2015_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-22T10:13:15.000 to 2015-08-22T17:27:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0979-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:21.376805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0980-V1.0","title":"RORSI_2781_2015_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-23T03:05:00.000 to 2015-08-23T09:56:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0980-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:22.379099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0981-V1.0","title":"RORSI_2782_2015_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-23T10:13:05.000 to 2015-08-23T17:27:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0981-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:23.383102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0982-V1.0","title":"RORSI_2783_2015_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-24T03:05:10.000 to 2015-08-24T09:55:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0982-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:24.388362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0983-V1.0","title":"RORSI_2784_2015_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-24T10:12:55.000 to 2015-08-24T17:27:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0983-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:25.384022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0984-V1.0","title":"RORSI_2785_2015_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-25T03:05:20.000 to 2015-08-25T09:55:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0984-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:26.426330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0985-V1.0","title":"RORSI_2786_2015_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-25T10:12:40.000 to 2015-08-25T16:41:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0985-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:27.476743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0986-V1.0","title":"RORSI_2787_2015_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-26T03:05:30.000 to 2015-08-26T09:55:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0986-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:28.491866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0987-V1.0","title":"RORSI_2788_2015_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-26T10:12:25.000 to 2015-08-26T17:27:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0987-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:29.402981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0988-V1.0","title":"RORSI_2789_2015_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-27T03:05:35.000 to 2015-08-27T09:55:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0988-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:30.401088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0989-V1.0","title":"RORSI_2790_2015_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-27T10:12:05.000 to 2015-08-27T17:28:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0989-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:31.408305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0990-V1.0","title":"RORSI_2791_2015_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-28T03:05:45.000 to 2015-08-28T09:54:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0990-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:32.413769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0991-V1.0","title":"RORSI_2792_2015_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-28T10:11:45.000 to 2015-08-28T17:28:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0991-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:33.531312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0992-V1.0","title":"RORSI_2793_2015_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T03:05:55.000 to 2015-08-29T05:45:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0992-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:34.415437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0993-V1.0","title":"RORSI_2794_2015_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T06:06:50.000 to 2015-08-29T09:54:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0993-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:35.417601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0994-V1.0","title":"RORSI_2795_2015_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T10:11:20.000 to 2015-08-29T17:28:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0994-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:36.419257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0995-V1.0","title":"RORSI_2796_2015_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T21:30:30.000 to 2015-08-30T01:24:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0995-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:37.437356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0996-V1.0","title":"RORSI_2797_2015_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T10:10:55.000 to 2015-08-30T10:59:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0996-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:38.484642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0997-V1.0","title":"RORSI_2798_2015_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T11:21:50.000 to 2015-08-30T17:28:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0997-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:39.501543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0998-V1.0","title":"RORSI_2799_2015_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T01:45:50.000 to 2015-08-30T05:24:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0998-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:40.430846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-0999-V1.0","title":"RORSI_2800_2015_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T21:30:05.000 to 2015-08-31T03:32:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0999-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:41.433779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1000-V1.0","title":"RORSI_2801_2015_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T03:53:50.000 to 2015-08-31T05:24:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1000-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:42.432382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1001-V1.0","title":"RORSI_2802_2015_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T10:10:25.000 to 2015-08-31T11:51:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1001-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:43.432148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1002-V1.0","title":"RORSI_2803_2015_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T14:33:50.000 to 2015-08-31T16:51:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1002-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:44.435361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1003-V1.0","title":"RORSI_2804_2015_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-01T03:06:25.000 to 2015-09-01T09:52:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:45.439653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1004-V1.0","title":"RORSI_2805_2015_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-01T10:09:50.000 to 2015-09-01T17:29:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:46.444232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1005-V1.0","title":"RORSI_2806_2015_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T03:06:35.000 to 2015-09-02T04:37:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:47.442723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1006-V1.0","title":"RORSI_2807_2015_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T04:58:50.000 to 2015-09-02T09:52:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:48.444271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1007-V1.0","title":"RORSI_2808_2015_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T10:09:15.000 to 2015-09-02T17:29:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:49.496895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1008-V1.0","title":"RORSI_2809_2015_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T21:28:40.000 to 2015-09-03T05:25:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:50.509852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1009-V1.0","title":"RORSI_2810_2015_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-03T10:08:40.000 to 2015-09-03T17:29:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:51.451251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1011-V1.0","title":"RORSI_2811_2015_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T03:06:50.000 to 2015-09-04T09:51:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:52.450979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1012-V1.0","title":"RORSI_2812_2015_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T10:08:00.000 to 2015-09-04T14:51:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:53.462873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1013-V1.0","title":"RORSI_2813_2015_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T15:12:50.000 to 2015-09-04T17:27:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:54.460687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1014-V1.0","title":"RORSI_2814_2015_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T21:27:30.000 to 2015-09-05T00:17:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:55.457249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1015-V1.0","title":"RORSI_2815_2015_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-05T10:07:15.000 to 2015-09-05T17:30:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:56.466164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1016-V1.0","title":"RORSI_2816_2015_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-05T21:26:55.000 to 2015-09-06T04:55:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:57.466303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1017-V1.0","title":"RORSI_2817_2015_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-06T10:06:30.000 to 2015-09-06T17:30:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:58.467679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1018-V1.0","title":"RORSI_2818_2015_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-07T03:07:15.000 to 2015-09-07T15:48:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:59.469016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1019-V1.0","title":"RORSI_2819_2015_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-07T21:25:30.000 to 2015-09-08T05:25:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:00.504028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1020-V1.0","title":"RORSI_2820_2015_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-08T10:04:55.000 to 2015-09-08T17:30:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:01.552785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1021-V1.0","title":"RORSI_2821_2015_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-08T21:24:45.000 to 2015-09-09T00:17:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:02.568527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1022-V1.0","title":"RORSI_2822_2015_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-09T10:04:00.000 to 2015-09-09T17:31:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:03.480923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1023-V1.0","title":"RORSI_2823_2015_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-10T03:07:35.000 to 2015-09-10T15:46:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:04.482239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1024-V1.0","title":"RORSI_2824_2015_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-10T21:23:10.000 to 2015-09-11T05:26:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:05.481477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1025-V1.0","title":"RORSI_2825_2015_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T10:02:10.000 to 2015-09-11T17:31:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:06.487963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1026-V1.0","title":"RORSI_2826_2015_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T16:31:41.000 to 2015-09-11T17:31:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:07.488046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1027-V1.0","title":"RORSI_2827_2015_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T21:22:20.000 to 2015-09-12T04:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:08.490193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1028-V1.0","title":"RORSI_2828_2015_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-12T10:01:10.000 to 2015-09-12T17:31:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:09.494327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1029-V1.0","title":"RORSI_2829_2015_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T03:07:50.000 to 2015-09-13T09:43:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:10.489190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1030-V1.0","title":"RORSI_2830_2015_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T10:00:05.000 to 2015-09-13T17:31:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:11.513204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1031-V1.0","title":"RORSI_2831_2015_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T21:20:30.000 to 2015-09-14T05:26:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:12.564247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1032-V1.0","title":"RORSI_2832_2015_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-14T09:59:05.000 to 2015-09-14T17:29:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:13.580092","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1033-V1.0","title":"RORSI_2833_2015_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-14T21:19:30.000 to 2015-09-15T05:26:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:14.506592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1034-V1.0","title":"RORSI_2834_2015_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-15T09:57:55.000 to 2015-09-15T17:27:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:15.502035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1035-V1.0","title":"RORSI_2835_2015_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-15T21:18:30.000 to 2015-09-16T00:17:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:16.509323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1036-V1.0","title":"RORSI_2836_2015_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T07:37:10.000 to 2015-09-16T13:58:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1036-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:17.509270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1037-V1.0","title":"RORSI_2837_2015_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T14:42:05.000 to 2015-09-16T17:32:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1037-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:18.513286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1038-V1.0","title":"RORSI_2838_2015_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T21:17:30.000 to 2015-09-17T05:26:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1038-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:19.512405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1039-V1.0","title":"RORSI_2839_2015_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-17T09:41:30.000 to 2015-09-17T15:39:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1039-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:20.513128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1040-V1.0","title":"RORSI_2840_2015_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-17T21:16:25.000 to 2015-09-18T05:26:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1040-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:21.519963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1041-V1.0","title":"RORSI_2841_2015_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-18T09:54:25.000 to 2015-09-18T17:32:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1041-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:22.526073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1042-V1.0","title":"RORSI_2842_2015_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T04:58:45.000 to 2015-09-19T10:02:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1042-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:23.574629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1043-V1.0","title":"RORSI_2843_2015_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T10:19:40.000 to 2015-09-19T17:32:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1043-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:24.589798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1044-V1.0","title":"RORSI_2844_2015_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T21:14:10.000 to 2015-09-20T05:26:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1044-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:25.526078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1045-V1.0","title":"RORSI_2845_2015_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-20T10:19:10.000 to 2015-09-20T17:32:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1045-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:26.529723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1046-V1.0","title":"RORSI_2864_2015_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T09:40:20.000 to 2015-09-28T15:10:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1046-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:27.533276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1047-V1.0","title":"RORSI_2847_2015_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-21T09:50:30.000 to 2015-09-21T17:32:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1047-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:28.533099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1048-V1.0","title":"RORSI_2848_2015_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-22T03:07:35.000 to 2015-09-22T09:32:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1048-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:29.543736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1049-V1.0","title":"RORSI_2849_2015_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-22T09:49:10.000 to 2015-09-22T17:32:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1049-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:30.536476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1050-V1.0","title":"RORSI_2850_2015_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T04:58:40.000 to 2015-09-23T09:30:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1050-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:31.549084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1051-V1.0","title":"RORSI_2851_2015_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T09:47:45.000 to 2015-09-23T17:32:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1051-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:32.544730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1052-V1.0","title":"RORSI_2852_2015_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T22:02:05.000 to 2015-09-23T23:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1052-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:33.544380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1053-V1.0","title":"RORSI_2853_2015_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T03:07:20.000 to 2015-09-24T09:30:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1053-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:34.578479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1054-V1.0","title":"RORSI_2854_2015_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T09:47:05.000 to 2015-09-24T17:32:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1054-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:35.632208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1055-V1.0","title":"RORSI_2855_2015_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T22:17:05.000 to 2015-09-24T23:45:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1055-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:36.645347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1056-V1.0","title":"RORSI_2856_2015_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-25T03:07:15.000 to 2015-09-25T09:27:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1056-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:37.558683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1057-V1.0","title":"RORSI_2857_2015_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-25T09:44:50.000 to 2015-09-25T17:32:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1057-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:38.560401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1058-V1.0","title":"RORSI_2858_2015_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T03:07:05.000 to 2015-09-26T09:27:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1058-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:39.563317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1059-V1.0","title":"RORSI_2859_2015_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T09:44:15.000 to 2015-09-26T17:32:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1059-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:40.560507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1060-V1.0","title":"RORSI_2860_2015_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T21:05:10.000 to 2015-09-27T05:25:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1060-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:41.573133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1061-V1.0","title":"RORSI_2861_2015_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-27T06:38:10.000 to 2015-09-27T09:07:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1061-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:42.567180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1062-V1.0","title":"RORSI_2862_2015_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-27T09:41:50.000 to 2015-09-27T17:32:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1062-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:43.571477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1063-V1.0","title":"RORSI_2863_2015_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T03:06:40.000 to 2015-09-28T09:23:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1063-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:44.572946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1064-V1.0","title":"RORSI_2846_2015_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-21T03:07:45.000 to 2015-09-21T09:33:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1064-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:45.589853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1065-V1.0","title":"RORSI_2865_2015_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T21:02:20.000 to 2015-09-29T05:24:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1065-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:46.643059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1066-V1.0","title":"RORSI_2866_2015_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-29T10:16:35.000 to 2015-09-29T17:30:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1066-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:47.657332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1067-V1.0","title":"RORSI_2867_2015_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-29T21:00:55.000 to 2015-09-30T00:17:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1067-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:48.584581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1068-V1.0","title":"RORSI_2868_2015_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-30T05:41:10.000 to 2015-09-30T07:04:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1068-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:49.573203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1069-V1.0","title":"RORSI_2869_2015_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-30T10:16:30.000 to 2015-09-30T17:29:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1069-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:50.585815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1070-V1.0","title":"RORSI_2870_2015_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T03:05:50.000 to 2015-10-01T09:59:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1070-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:51.586128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1071-V1.0","title":"RORSI_2871_2015_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T10:16:25.000 to 2015-10-01T17:31:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1071-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:52.587888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1072-V1.0","title":"RORSI_2872_2015_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T20:57:55.000 to 2015-10-02T02:14:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1072-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:53.588051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1073-V1.0","title":"RORSI_2873_2015_275_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-02T10:16:25.000 to 2015-10-02T17:31:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1073-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:54.587376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1074-V1.0","title":"RORSI_2874_2015_275_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-02T21:13:05.000 to 2015-10-03T00:17:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1074-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:55.590310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1075-V1.0","title":"RORSI_2875_2015_276_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-03T10:16:25.000 to 2015-10-03T17:31:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1075-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:56.603022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1076-V1.0","title":"RORSI_2876_2015_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T03:04:55.000 to 2015-10-04T09:59:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1076-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:57.649105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1077-V1.0","title":"RORSI_2877_2015_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T10:16:25.000 to 2015-10-04T17:31:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1077-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:58.666635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1078-V1.0","title":"RORSI_2878_2015_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T20:53:10.000 to 2015-10-05T05:22:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1078-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:59.600037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1079-V1.0","title":"RORSI_2879_2015_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T05:39:25.000 to 2015-10-05T09:04:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1079-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:00.601701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1080-V1.0","title":"RORSI_2880_2015_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T10:16:25.000 to 2015-10-05T17:30:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1080-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:01.597716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1081-V1.0","title":"RORSI_2881_2015_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T21:05:30.000 to 2015-10-06T05:22:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1081-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:02.606551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1082-V1.0","title":"RORSI_2882_2015_279_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-06T10:16:30.000 to 2015-10-06T17:30:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1082-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:03.604762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1083-V1.0","title":"RORSI_2883_2015_279_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-06T21:17:05.000 to 2015-10-06T23:49:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1083-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:04.607302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1084-V1.0","title":"RORSI_2884_2015_280_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T04:58:35.000 to 2015-10-07T09:59:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1084-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:05.613372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1085-V1.0","title":"RORSI_2885_2015_280_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T10:16:35.000 to 2015-10-07T17:30:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1085-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:06.611627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1086-V1.0","title":"RORSI_2886_2015_280_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T20:48:10.000 to 2015-10-08T05:21:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1086-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:07.617070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1087-V1.0","title":"RORSI_2887_2015_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T10:16:40.000 to 2015-10-08T14:03:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1087-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:08.666619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1088-V1.0","title":"RORSI_2888_2015_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T14:25:35.000 to 2015-10-08T17:29:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1088-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:09.712335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1089-V1.0","title":"RORSI_2889_2015_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T20:46:30.000 to 2015-10-09T01:17:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1089-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:10.625243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1091-V1.0","title":"RORSI_2890_2015_282_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-09T20:44:45.000 to 2015-10-10T02:54:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1091-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:11.624826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1092-V1.0","title":"RORSI_2891_2015_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-10T03:11:10.000 to 2015-10-10T07:05:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1092-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:12.626500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1093-V1.0","title":"RORSI_2892_2015_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-10T20:43:00.000 to 2015-10-11T03:57:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1093-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:13.632535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1094-V1.0","title":"RORSI_2893_2015_284_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-11T10:17:05.000 to 2015-10-11T17:28:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1094-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:14.738842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1095-V1.0","title":"RORSI_2894_2015_284_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-11T20:41:10.000 to 2015-10-11T23:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1095-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:15.634310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1096-V1.0","title":"RORSI_2895_2015_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-12T03:02:05.000 to 2015-10-12T06:55:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1096-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:16.643200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1097-V1.0","title":"RORSI_2896_2015_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-12T10:17:15.000 to 2015-10-12T17:27:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1097-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:17.638881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1098-V1.0","title":"RORSI_2897_2015_286_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-13T10:17:25.000 to 2015-10-13T17:27:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1098-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:18.638206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1099-V1.0","title":"RORSI_2898_2015_286_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-13T20:37:35.000 to 2015-10-13T23:45:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1099-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:19.676074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1100-V1.0","title":"RORSI_2899_2015_287_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-14T10:17:45.000 to 2015-10-14T17:26:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1100-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:20.723262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1101-V1.0","title":"RORSI_2900_2015_287_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-14T20:35:40.000 to 2015-10-14T23:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1101-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:21.736194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1102-V1.0","title":"RORSI_2901_2015_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-15T10:18:00.000 to 2015-10-15T17:26:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1102-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:22.646761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1103-V1.0","title":"RORSI_2902_2015_289_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T03:42:05.000 to 2015-10-16T10:23:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1103-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:23.650349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1104-V1.0","title":"RORSI_2903_2015_289_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T10:18:20.000 to 2015-10-16T17:25:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1104-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:24.651072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1105-V1.0","title":"RORSI_2904_2015_289_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T20:31:55.000 to 2015-10-16T23:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1105-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:25.647711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1106-V1.0","title":"RORSI_2905_2015_290_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-17T04:58:30.000 to 2015-10-17T10:01:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1106-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:26.658611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1107-V1.0","title":"RORSI_2906_2015_290_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-17T10:18:40.000 to 2015-10-17T17:24:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1107-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:27.658822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1108-V1.0","title":"RORSI_2907_2015_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T02:05:55.000 to 2015-10-18T04:27:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1108-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:28.659217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1109-V1.0","title":"RORSI_2908_2015_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T05:31:30.000 to 2015-10-18T07:00:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1109-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:29.664612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1110-V1.0","title":"RORSI_2909_2015_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T10:25:30.000 to 2015-10-18T17:24:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1110-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:30.683538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1111-V1.0","title":"RORSI_2910_2015_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T20:28:00.000 to 2015-10-18T23:45:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1111-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:31.730300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1112-V1.0","title":"RORSI_2911_2015_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T02:56:30.000 to 2015-10-19T03:49:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1112-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:32.746605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1113-V1.0","title":"RORSI_2912_2015_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T04:10:30.000 to 2015-10-19T07:10:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1113-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:33.670750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1114-V1.0","title":"RORSI_2913_2015_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T10:56:30.000 to 2015-10-19T17:23:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1114-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:34.667752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1115-V1.0","title":"RORSI_2914_2015_293_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-20T10:19:55.000 to 2015-10-20T17:22:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1115-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:35.676636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1116-V1.0","title":"RORSI_2915_2015_293_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-20T20:24:05.000 to 2015-10-20T23:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1116-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:36.671649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1117-V1.0","title":"RORSI_2916_2015_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T05:12:30.000 to 2015-10-21T07:10:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1117-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:37.682993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1118-V1.0","title":"RORSI_2917_2015_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T10:20:25.000 to 2015-10-21T17:22:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1118-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:38.672026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC3-1119-V1.0","title":"RORSI_2918_2015_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T20:22:05.000 to 2015-10-21T23:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1119-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:39.685054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1120-V1.0","title":"RORSI_2919_2015_295_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-22T10:21:00.000 to 2015-10-22T17:21:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1120-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:40.683039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1121-V1.0","title":"RORSI_2920_2015_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T08:02:05.000 to 2015-10-23T10:04:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1121-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:41.692012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1122-V1.0","title":"RORSI_2921_2015_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T10:21:35.000 to 2015-10-23T14:06:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1122-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:42.738021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1123-V1.0","title":"RORSI_2922_2015_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T14:27:30.000 to 2015-10-23T17:20:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1123-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:43.757094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1124-V1.0","title":"RORSI_2923_2015_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T20:53:30.000 to 2015-10-23T23:45:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1124-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:44.695588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1125-V1.0","title":"RORSI_2924_2015_297_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-24T10:22:10.000 to 2015-10-24T17:19:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1125-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:45.695545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1126-V1.0","title":"RORSI_2925_2015_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T01:56:20.000 to 2015-10-25T05:08:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1126-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:46.700346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1127-V1.0","title":"RORSI_2926_2015_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T05:25:15.000 to 2015-10-25T07:15:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1127-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:47.701249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1128-V1.0","title":"RORSI_2927_2015_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T10:22:50.000 to 2015-10-25T17:18:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1128-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:48.702599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1129-V1.0","title":"RORSI_2928_2015_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T20:13:45.000 to 2015-10-26T05:07:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1129-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:49.701739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1130-V1.0","title":"RORSI_2929_2015_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T05:24:15.000 to 2015-10-26T07:30:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1130-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:50.703953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1131-V1.0","title":"RORSI_2930_2015_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T11:15:30.000 to 2015-10-26T17:18:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1131-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:51.707297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1132-V1.0","title":"RORSI_2931_2015_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T20:11:40.000 to 2015-10-27T05:06:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1132-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:52.709962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1133-V1.0","title":"RORSI_2932_2015_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T10:24:15.000 to 2015-10-27T14:11:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1133-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:53.750957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1134-V1.0","title":"RORSI_2933_2015_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T14:32:35.000 to 2015-10-27T17:17:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1134-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:54.798782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1135-V1.0","title":"RORSI_2934_2015_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T20:10:35.000 to 2015-10-27T21:58:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1135-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:55.717027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1136-V1.0","title":"RORSI_2935_2015_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T22:20:35.000 to 2015-10-28T00:17:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1136-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:56.718171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1137-V1.0","title":"RORSI_2936_2015_301_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-28T10:24:55.000 to 2015-10-28T17:16:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1137-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:57.725813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1138-V1.0","title":"RORSI_2937_2015_301_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-28T20:07:20.000 to 2015-10-29T05:04:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1138-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:58.723551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1139-V1.0","title":"RORSI_2938_2015_302_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T10:49:35.000 to 2015-10-29T17:15:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1139-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:59.725436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1140-V1.0","title":"RORSI_2939_2015_302_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T20:05:10.000 to 2015-10-29T22:35:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1140-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:00.724322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1141-V1.0","title":"RORSI_2940_2015_302_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T22:35:12.000 to 2015-10-30T01:16:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1141-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:01.730785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1142-V1.0","title":"RORSI_2941_2015_303_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-30T08:37:10.000 to 2015-10-30T14:05:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1142-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:02.728045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1143-V1.0","title":"RORSI_2942_2015_303_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-30T14:26:35.000 to 2015-10-30T17:14:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1143-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:03.735753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1144-V1.0","title":"RORSI_2943_2015_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T04:58:35.000 to 2015-10-31T08:21:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1144-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:04.759439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1145-V1.0","title":"RORSI_2944_2015_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T08:38:10.000 to 2015-10-31T17:12:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1145-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:05.812983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1146-V1.0","title":"RORSI_2945_2015_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T20:00:45.000 to 2015-10-31T23:10:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1146-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:06.822050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1147-V1.0","title":"RORSI_2946_2015_305_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T00:25:46.000 to 2015-11-01T05:00:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1147-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:07.741576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1148-V1.0","title":"RORSI_2947_2015_305_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T08:32:30.000 to 2015-11-01T17:11:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1148-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:08.742898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1149-V1.0","title":"RORSI_2948_2015_305_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T19:58:35.000 to 2015-11-02T04:59:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1149-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:09.749943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1150-V1.0","title":"RORSI_2949_2015_306_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-02T08:34:35.000 to 2015-11-02T11:19:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1150-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:10.750250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1151-V1.0","title":"RORSI_2950_2015_306_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-02T11:41:35.000 to 2015-11-02T17:10:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1151-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:11.751425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1152-V1.0","title":"RORSI_2951_2015_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-03T02:42:00.000 to 2015-11-03T10:05:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1152-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:12.753440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1153-V1.0","title":"RORSI_2952_2015_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-03T19:54:00.000 to 2015-11-03T23:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1153-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:13.754423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1154-V1.0","title":"RORSI_2953_2015_308_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-04T08:25:25.000 to 2015-11-04T17:08:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1154-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:14.759870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1155-V1.0","title":"RORSI_2954_2015_308_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-04T19:51:45.000 to 2015-11-05T04:55:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1155-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:15.772381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1156-V1.0","title":"RORSI_2955_2015_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T06:04:55.000 to 2015-11-05T08:06:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1156-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:16.819828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1157-V1.0","title":"RORSI_2956_2015_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T08:23:00.000 to 2015-11-05T13:00:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1157-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:17.833018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1159-V1.0","title":"RORSI_2957_2015_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T19:49:25.000 to 2015-11-06T03:08:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1159-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:18.766423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1160-V1.0","title":"RORSI_2958_2015_310_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-06T08:20:35.000 to 2015-11-06T15:26:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1160-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:19.767365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1161-V1.0","title":"RORSI_2959_2015_311_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T05:28:29.500 to 2015-11-07T12:29:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1161-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:20.769195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1162-V1.0","title":"RORSI_2960_2015_311_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T08:18:10.000 to 2015-11-07T12:29:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1162-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:21.771540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1163-V1.0","title":"RORSI_2961_2015_311_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T19:44:45.000 to 2015-11-08T02:20:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1163-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:22.775827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1164-V1.0","title":"RORSI_2962_2015_312_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-08T08:15:40.000 to 2015-11-08T17:03:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1164-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:23.775761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1165-V1.0","title":"RORSI_2963_2015_312_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-08T19:42:25.000 to 2015-11-08T23:46:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1165-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:24.775306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1166-V1.0","title":"RORSI_2964_2015_313_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T03:25:35.000 to 2015-11-09T07:13:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1166-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:25.780915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1167-V1.0","title":"RORSI_2965_2015_313_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T08:13:10.000 to 2015-11-09T11:03:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1167-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:26.783925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1168-V1.0","title":"RORSI_2966_2015_313_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T11:25:40.000 to 2015-11-09T17:02:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1168-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:27.827730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1169-V1.0","title":"RORSI_2967_2015_314_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T02:33:00.000 to 2015-11-10T07:53:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1169-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:28.842530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1170-V1.0","title":"RORSI_2968_2015_314_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T08:10:45.000 to 2015-11-10T10:45:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1170-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:29.789177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1171-V1.0","title":"RORSI_2969_2015_314_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T21:37:40.000 to 2015-11-11T00:17:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1171-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:30.790206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1172-V1.0","title":"RORSI_2970_2015_315_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-11T04:58:40.000 to 2015-11-11T07:59:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1172-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:31.793631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1173-V1.0","title":"RORSI_2971_2015_315_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-11T08:16:45.000 to 2015-11-11T16:59:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1173-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:32.797481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1174-V1.0","title":"RORSI_2972_2015_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T02:30:10.000 to 2015-11-12T07:27:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1174-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:33.791910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1175-V1.0","title":"RORSI_2973_2015_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T07:48:40.000 to 2015-11-12T09:34:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1175-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:34.800042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1176-V1.0","title":"RORSI_2974_2015_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T09:51:25.000 to 2015-11-12T16:57:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1176-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:35.799501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1177-V1.0","title":"RORSI_2975_2015_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T20:25:40.000 to 2015-11-13T01:00:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1177-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:36.804532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1178-V1.0","title":"RORSI_2976_2015_317_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-13T10:13:35.000 to 2015-11-13T14:50:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1178-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:37.807658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1179-V1.0","title":"RORSI_2977_2015_317_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-13T15:11:40.000 to 2015-11-13T16:56:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1179-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:38.838386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1180-V1.0","title":"RORSI_2978_2015_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-14T02:27:15.000 to 2015-11-14T07:25:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1180-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:39.889027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1181-V1.0","title":"RORSI_2979_2015_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-14T10:17:50.000 to 2015-11-14T16:54:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1181-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:40.903162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1182-V1.0","title":"RORSI_2980_2015_319_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T02:25:40.000 to 2015-11-15T07:16:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1182-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:41.818208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1183-V1.0","title":"RORSI_2981_2015_319_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T10:28:25.000 to 2015-11-15T16:53:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1183-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:42.820036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1184-V1.0","title":"RORSI_2982_2015_319_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T20:57:05.000 to 2015-11-16T02:10:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1184-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:43.819834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1185-V1.0","title":"RORSI_2983_2015_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-16T19:22:55.000 to 2015-11-17T04:37:31.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1185-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:44.822374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1188-V1.0","title":"RORSI_2984_2015_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-16T12:07:05.000 to 2015-11-16T16:51:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1188-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:45.830273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1189-V1.0","title":"RORSI_2985_2015_321_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-17T09:35:55.000 to 2015-11-17T16:50:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1189-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:46.823957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1190-V1.0","title":"RORSI_2986_2015_321_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-17T21:07:05.000 to 2015-11-18T04:35:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1190-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:47.828201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1191-V1.0","title":"RORSI_2987_2015_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T04:52:45.000 to 2015-11-18T08:09:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1191-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:48.830345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1192-V1.0","title":"RORSI_2988_2015_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T08:26:25.000 to 2015-11-18T15:13:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1192-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:49.851465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1193-V1.0","title":"RORSI_2989_2015_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T19:17:50.000 to 2015-11-19T04:34:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1193-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:50.906905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1194-V1.0","title":"RORSI_2990_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T07:54:40.000 to 2015-11-19T08:39:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1194-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:51.914584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1195-V1.0","title":"RORSI_2993_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T19:15:15.000 to 2015-11-20T00:52:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1195-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:52.837798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1196-V1.0","title":"RORSI_2994_2015_324_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-20T07:45:00.000 to 2015-11-20T16:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1196-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:53.845011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1197-V1.0","title":"RORSI_2995_2015_325_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-21T07:42:20.000 to 2015-11-21T16:43:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1197-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:54.844743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1198-V1.0","title":"RORSI_2996_2015_325_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-21T22:12:05.000 to 2015-11-22T04:28:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1198-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:56.631080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1199-V1.0","title":"RORSI_2997_2015_326_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-22T07:44:00.000 to 2015-11-22T16:41:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1199-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:57.185424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1200-V1.0","title":"RORSI_2998_2015_326_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-22T19:07:30.000 to 2015-11-23T03:04:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1200-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:58.240014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1201-V1.0","title":"RORSI_3021_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T09:00:45.000 to 2015-11-19T14:02:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1201-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:59.250549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1202-V1.0","title":"RORSI_2991_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T14:23:45.000 to 2015-11-19T15:43:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1202-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:00.181014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1203-V1.0","title":"RORSI_2992_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T16:05:45.000 to 2015-11-19T16:46:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1203-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:01.190026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1204-V1.0","title":"RORSI_2999_2015_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T05:33:20.000 to 2015-11-23T07:02:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1204-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:02.182040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1205-V1.0","title":"RORSI_3000_2015_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T08:16:50.000 to 2015-11-23T10:09:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1205-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:03.200863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1206-V1.0","title":"RORSI_3001_2015_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T10:34:55.000 to 2015-11-23T13:05:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1206-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:04.191927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1207-V1.0","title":"RORSI_3002_2015_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T19:04:55.000 to 2015-11-24T02:25:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1207-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:05.194355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1208-V1.0","title":"RORSI_3003_2015_328_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-24T07:34:15.000 to 2015-11-24T16:38:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1208-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:06.206522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1209-V1.0","title":"RORSI_3004_2015_328_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-24T22:25:10.000 to 2015-11-25T00:17:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1209-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:07.199122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1210-V1.0","title":"RORSI_3005_2015_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T05:21:55.000 to 2015-11-25T10:31:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1210-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:08.196410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1211-V1.0","title":"RORSI_3006_2015_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T10:48:15.000 to 2015-11-25T15:06:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1211-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:09.254502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1212-V1.0","title":"RORSI_3007_2015_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T18:59:35.000 to 2015-11-26T04:21:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1212-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:10.264564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1213-V1.0","title":"RORSI_3008_2015_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T05:33:50.000 to 2015-11-26T07:16:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1213-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:11.207173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1214-V1.0","title":"RORSI_3009_2015_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T07:33:00.000 to 2015-11-26T11:01:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1214-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:12.215545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1215-V1.0","title":"RORSI_3010_2015_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T11:18:25.000 to 2015-11-26T13:10:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1215-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:13.209833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1216-V1.0","title":"RORSI_3011_2015_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T00:10:35.000 to 2015-11-27T04:19:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1216-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:14.213587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1217-V1.0","title":"RORSI_3012_2015_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T07:31:00.000 to 2015-11-27T15:04:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1217-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:15.215392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1218-V1.0","title":"RORSI_3013_2015_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T18:54:15.000 to 2015-11-28T00:17:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1218-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:16.211783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1219-V1.0","title":"RORSI_3014_2015_332_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-28T07:23:15.000 to 2015-11-28T16:30:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1219-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:17.220986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1220-V1.0","title":"RORSI_3015_2015_332_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-28T18:51:35.000 to 2015-11-29T04:15:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1220-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:18.220306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1221-V1.0","title":"RORSI_3016_2015_333_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-29T06:25:35.000 to 2015-11-29T09:20:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1221-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:19.220629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1222-V1.0","title":"RORSI_3017_2015_333_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-29T18:48:50.000 to 2015-11-30T04:12:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1222-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:20.258355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1223-V1.0","title":"RORSI_3018_2015_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T07:17:40.000 to 2015-11-30T12:56:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1223-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:21.309657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1224-V1.0","title":"RORSI_3019_2015_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T18:46:05.000 to 2015-11-30T19:24:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1224-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:22.321117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1225-V1.0","title":"RORSI_3020_2015_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T19:47:00.000 to 2015-12-01T04:10:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1225-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:23.229238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1226-V1.0","title":"RORSI_3022_2015_335_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-01T08:09:55.000 to 2015-12-01T16:24:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1226-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:24.233968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1227-V1.0","title":"RORSI_3023_2015_335_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-01T22:02:05.000 to 2015-12-01T23:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1227-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:25.235870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1228-V1.0","title":"RORSI_3024_2015_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T04:59:05.000 to 2015-12-02T12:12:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1228-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:26.236127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1229-V1.0","title":"RORSI_3025_2015_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T12:29:05.000 to 2015-12-02T16:22:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1229-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:27.241031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1230-V1.0","title":"RORSI_3026_2015_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T18:40:35.000 to 2015-12-03T01:46:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1230-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:28.244794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1231-V1.0","title":"RORSI_3027_2015_337_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T02:37:05.000 to 2015-12-03T04:06:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1231-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:29.241719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1232-V1.0","title":"RORSI_3028_2015_337_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T09:30:55.000 to 2015-12-03T16:20:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1232-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:30.245117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1233-V1.0","title":"RORSI_3029_2015_337_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T18:37:45.000 to 2015-12-04T00:35:31.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1233-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:31.269974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1234-V1.0","title":"RORSI_3030_2015_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T01:50:40.000 to 2015-12-04T07:06:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:32.319031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1235-V1.0","title":"RORSI_3031_2015_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T09:57:10.000 to 2015-12-04T15:48:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1235-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:33.329520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1236-V1.0","title":"RORSI_3032_2015_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T18:35:00.000 to 2015-12-04T19:49:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1236-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:34.257661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1237-V1.0","title":"RORSI_3033_2015_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T22:03:05.000 to 2015-12-05T04:02:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1237-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:35.256627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1238-V1.0","title":"RORSI_3034_2015_339_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-05T18:32:10.000 to 2015-12-06T01:29:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1238-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:36.258152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1239-V1.0","title":"RORSI_3035_2015_340_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T01:46:15.000 to 2015-12-06T07:21:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1239-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:37.262965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1240-V1.0","title":"RORSI_3036_2015_340_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T10:14:30.000 to 2015-12-06T16:13:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1240-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:38.264767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1241-V1.0","title":"RORSI_3037_2015_340_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T18:29:20.000 to 2015-12-07T03:57:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1241-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:39.263161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1242-V1.0","title":"RORSI_3038_2015_341_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-07T18:26:30.000 to 2015-12-08T01:30:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1242-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:40.267673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1243-V1.0","title":"RORSI_3039_2015_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T06:54:45.000 to 2015-12-08T11:37:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1243-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:41.270665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1244-V1.0","title":"RORSI_3040_2015_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T12:00:15.000 to 2015-12-08T16:08:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1244-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:42.279692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1245-V1.0","title":"RORSI_3041_2015_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T18:23:35.000 to 2015-12-09T00:11:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1245-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:43.326399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1246-V1.0","title":"RORSI_3042_2015_343_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-09T06:51:50.000 to 2015-12-09T09:00:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1246-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:44.339580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1247-V1.0","title":"RORSI_3043_2015_343_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-09T18:20:40.000 to 2015-12-09T22:57:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1247-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:45.275519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1248-V1.0","title":"RORSI_3044_2015_344_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-10T07:29:50.000 to 2015-12-10T16:04:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1248-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:46.284057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1249-V1.0","title":"RORSI_3045_2015_344_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-10T18:17:45.000 to 2015-12-10T22:57:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1249-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:47.293832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1250-V1.0","title":"RORSI_3046_2015_345_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-11T08:06:35.000 to 2015-12-11T15:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1250-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:48.286706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1251-V1.0","title":"RORSI_3047_2015_345_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-11T18:14:50.000 to 2015-12-12T00:16:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1251-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:49.290083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1252-V1.0","title":"RORSI_3048_2015_346_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T08:47:15.000 to 2015-12-12T10:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1252-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:50.290373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1253-V1.0","title":"RORSI_3049_2015_346_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T13:27:05.000 to 2015-12-12T15:45:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1253-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:51.295074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1254-V1.0","title":"RORSI_3050_2015_346_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T18:11:55.000 to 2015-12-12T21:28:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1254-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:52.293105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1255-V1.0","title":"RORSI_3051_2015_347_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-13T09:54:35.000 to 2015-12-13T15:56:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1255-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:53.296049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1256-V1.0","title":"RORSI_3052_2015_347_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-13T18:08:55.000 to 2015-12-14T03:40:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1256-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:54.335819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1257-V1.0","title":"RORSI_3053_2015_348_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T10:13:00.000 to 2015-12-14T15:54:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1257-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:55.387477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1258-V1.0","title":"RORSI_3054_2015_348_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T18:05:55.000 to 2015-12-14T20:01:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1258-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:56.306986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1259-V1.0","title":"RORSI_3055_2015_348_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T21:22:25.000 to 2015-12-15T03:37:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1259-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:57.305364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1260-V1.0","title":"RORSI_3056_2015_349_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-15T10:11:00.000 to 2015-12-15T15:51:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1260-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:58.308076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1261-V1.0","title":"RORSI_3057_2015_349_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-15T20:34:05.000 to 2015-12-16T00:16:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1261-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:59.307766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1262-V1.0","title":"RORSI_3058_2015_350_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-16T17:59:55.000 to 2015-12-17T03:32:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1262-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:00.312874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1263-V1.0","title":"RORSI_3059_2015_351_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-17T10:06:20.000 to 2015-12-17T15:46:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1263-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:01.312629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1264-V1.0","title":"RORSI_3060_2015_351_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-17T21:56:05.000 to 2015-12-18T03:29:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1264-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:02.317516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1265-V1.0","title":"RORSI_3061_2015_352_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-18T10:07:20.000 to 2015-12-18T15:43:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1265-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:03.316849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1266-V1.0","title":"RORSI_3062_2015_352_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-18T17:53:45.000 to 2015-12-19T00:16:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1266-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:04.319424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1267-V1.0","title":"RORSI_3063_2015_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T04:59:35.000 to 2015-12-19T08:40:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1267-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:05.349279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1268-V1.0","title":"RORSI_3064_2015_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T09:41:05.000 to 2015-12-19T15:40:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1268-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:06.399398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1269-V1.0","title":"RORSI_3065_2015_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T17:50:40.000 to 2015-12-20T01:19:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1269-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:07.412426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1270-V1.0","title":"RORSI_3066_2015_354_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T01:36:25.000 to 2015-12-20T06:43:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1270-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:08.330872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1271-V1.0","title":"RORSI_3067_2015_354_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T07:00:25.000 to 2015-12-20T12:55:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1271-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:09.331264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1272-V1.0","title":"RORSI_3068_2015_354_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T17:47:35.000 to 2015-12-21T01:18:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1272-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:10.338169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1273-V1.0","title":"RORSI_3069_2015_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T01:34:55.000 to 2015-12-21T09:46:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1273-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:11.340451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1274-V1.0","title":"RORSI_3070_2015_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T10:03:10.000 to 2015-12-21T14:12:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1274-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:12.340755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1275-V1.0","title":"RORSI_3071_2015_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T17:44:30.000 to 2015-12-21T20:31:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1275-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:13.341150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1276-V1.0","title":"RORSI_3072_2015_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T21:01:40.000 to 2015-12-22T00:50:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1276-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:14.341822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1277-V1.0","title":"RORSI_3073_2015_356_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-22T09:11:10.000 to 2015-12-22T15:32:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1277-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:15.345878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1278-V1.0","title":"RORSI_3074_2015_356_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-22T17:41:20.000 to 2015-12-23T00:16:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1278-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:16.359526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1280-V1.0","title":"RORSI_3075_2015_358_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-24T08:28:45.000 to 2015-12-24T15:26:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1280-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:17.405545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1281-V1.0","title":"RORSI_3076_2015_358_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-24T17:35:00.000 to 2015-12-24T23:57:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1281-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:18.420478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1282-V1.0","title":"RORSI_3077_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T05:42:05.000 to 2015-12-25T07:32:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1282-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:19.349363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1283-V1.0","title":"RORSI_3078_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T07:49:40.000 to 2015-12-25T15:23:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1283-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:20.359146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1284-V1.0","title":"RORSI_3079_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T17:31:45.000 to 2015-12-25T19:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1284-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:21.363443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1285-V1.0","title":"RORSI_3080_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T19:23:50.000 to 2015-12-25T22:01:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1285-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:22.364655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1286-V1.0","title":"RORSI_3081_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T22:25:50.000 to 2015-12-26T01:11:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1286-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:23.363678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1287-V1.0","title":"RORSI_3082_2015_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T01:28:00.000 to 2015-12-26T07:14:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1287-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:24.364497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1288-V1.0","title":"RORSI_3083_2015_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T07:31:35.000 to 2015-12-26T15:20:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1288-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:25.372223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1289-V1.0","title":"RORSI_3084_2015_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T17:28:35.000 to 2015-12-27T00:40:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1289-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:26.369347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1290-V1.0","title":"RORSI_3085_2015_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T05:56:00.000 to 2015-12-27T08:27:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1290-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:27.369630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1291-V1.0","title":"RORSI_3086_2015_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T09:45:55.000 to 2015-12-27T15:17:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1291-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:28.416035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1292-V1.0","title":"RORSI_3087_2015_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T17:25:20.000 to 2015-12-28T00:35:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1292-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:29.467763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1293-V1.0","title":"RORSI_3088_2015_362_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-28T05:52:40.000 to 2015-12-28T15:14:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1293-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:30.380457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1294-V1.0","title":"RORSI_3089_2015_362_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-28T17:22:00.000 to 2015-12-29T01:01:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1294-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:31.385929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1295-V1.0","title":"RORSI_3090_2015_363_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-29T01:24:05.000 to 2015-12-29T04:12:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1295-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:32.384727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1296-V1.0","title":"RORSI_3091_2015_363_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-29T22:09:40.000 to 2015-12-30T00:16:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1296-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:33.387038","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1297-V1.0","title":"RORSI_3092_2015_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T01:34:00.000 to 2015-12-30T04:36:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1297-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:34.387197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1298-V1.0","title":"RORSI_3093_2015_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T05:00:00.000 to 2015-12-30T07:19:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1298-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:35.388607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1299-V1.0","title":"RORSI_3094_2015_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T07:36:40.000 to 2015-12-30T15:08:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1299-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:36.392555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1300-V1.0","title":"RORSI_3095_2015_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T17:15:25.000 to 2015-12-31T01:09:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1300-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:37.500274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1301-V1.0","title":"RORSI_3096_2015_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T01:38:40.000 to 2015-12-31T07:32:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1301-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:38.399551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1302-V1.0","title":"RORSI_3097_2015_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T07:49:50.000 to 2015-12-31T15:05:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1302-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:39.425944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-ESC4-1303-V1.0","title":"RORSI_3098_2015_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T20:29:55.000 to 2016-01-01T02:47:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1303-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:40.475633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1304-V1.0","title":"RORSI_3099_2016_001_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-01T08:12:15.000 to 2016-01-01T15:01:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1304-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:41.490639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1305-V1.0","title":"RORSI_3100_2016_001_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-01T21:36:45.000 to 2016-01-02T00:17:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1305-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:42.408116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1306-V1.0","title":"RORSI_3101_2016_002_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-02T05:00:05.000 to 2016-01-02T08:10:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1306-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:43.407236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1307-V1.0","title":"RORSI_3102_2016_002_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-02T19:23:15.000 to 2016-01-02T21:15:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1307-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:44.407748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1308-V1.0","title":"RORSI_3103_2016_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T02:58:10.000 to 2016-01-03T08:30:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1308-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:45.412404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1309-V1.0","title":"RORSI_3104_2016_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T08:47:45.000 to 2016-01-03T14:55:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1309-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:46.413640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1310-V1.0","title":"RORSI_3105_2016_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T17:01:55.000 to 2016-01-04T01:15:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1310-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:47.418754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1311-V1.0","title":"RORSI_3106_2016_004_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-04T01:32:35.000 to 2016-01-04T07:54:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1311-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:48.417524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1312-V1.0","title":"RORSI_3107_2016_004_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-04T08:29:10.000 to 2016-01-04T09:11:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1312-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:49.419148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1313-V1.0","title":"RORSI_3108_2016_005_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-05T05:32:05.000 to 2016-01-05T14:48:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1313-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:50.435852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1314-V1.0","title":"RORSI_3109_2016_005_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-05T20:34:35.000 to 2016-01-05T23:45:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1314-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:51.481920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1315-V1.0","title":"RORSI_3110_2016_006_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T05:00:15.000 to 2016-01-06T09:37:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1315-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:52.496514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1316-V1.0","title":"RORSI_3111_2016_006_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T11:07:05.000 to 2016-01-06T14:44:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1316-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:53.432963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1317-V1.0","title":"RORSI_3112_2016_006_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T21:29:05.000 to 2016-01-06T23:58:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1317-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:54.428067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1318-V1.0","title":"RORSI_3113_2016_007_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T00:15:15.000 to 2016-01-07T03:07:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1318-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:55.444411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1319-V1.0","title":"RORSI_3114_2016_007_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T08:01:40.000 to 2016-01-07T14:41:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1319-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:56.434701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1320-V1.0","title":"RORSI_3115_2016_007_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T22:35:20.000 to 2016-01-08T02:24:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1320-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:57.438418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1321-V1.0","title":"RORSI_3116_2016_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T02:41:00.000 to 2016-01-08T08:41:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1321-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:58.433862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1322-V1.0","title":"RORSI_3117_2016_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T08:58:40.000 to 2016-01-08T14:37:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1322-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:59.440641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1323-V1.0","title":"RORSI_3118_2016_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T19:15:10.000 to 2016-01-09T00:15:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1323-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:00.444234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1324-V1.0","title":"RORSI_3119_2016_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T05:00:20.000 to 2016-01-09T09:24:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1324-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:01.444386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1325-V1.0","title":"RORSI_3120_2016_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T09:41:50.000 to 2016-01-09T14:34:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1325-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:02.492908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1326-V1.0","title":"RORSI_3121_2016_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T20:13:35.000 to 2016-01-10T00:56:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1326-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:03.508445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1327-V1.0","title":"RORSI_3122_2016_010_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-10T01:13:35.000 to 2016-01-10T09:25:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1327-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:04.444812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1328-V1.0","title":"RORSI_3123_2016_010_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-10T17:09:10.000 to 2016-01-11T00:51:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1328-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:05.456009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1329-V1.0","title":"RORSI_3124_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T01:08:15.000 to 2016-01-11T05:17:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1329-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:06.457060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1330-V1.0","title":"RORSI_3125_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T05:34:30.000 to 2016-01-11T08:36:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1330-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:07.459427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1331-V1.0","title":"RORSI_3126_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T09:01:25.000 to 2016-01-11T11:16:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1331-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:08.460909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1332-V1.0","title":"RORSI_3127_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T11:43:25.000 to 2016-01-11T14:26:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1332-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:09.461116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1333-V1.0","title":"RORSI_3128_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T17:05:00.000 to 2016-01-12T00:50:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1333-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:10.464908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1334-V1.0","title":"RORSI_3129_2016_012_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T01:07:20.000 to 2016-01-12T05:13:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1334-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:11.469345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1335-V1.0","title":"RORSI_3130_2016_012_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T05:30:15.000 to 2016-01-12T08:50:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1335-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:12.467353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1336-V1.0","title":"RORSI_3131_2016_012_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T17:00:55.000 to 2016-01-13T00:15:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1336-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:13.503712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1337-V1.0","title":"RORSI_3132_2016_013_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-13T05:26:05.000 to 2016-01-13T14:19:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1337-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:14.545460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1338-V1.0","title":"RORSI_3133_2016_013_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-13T16:56:55.000 to 2016-01-14T00:48:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1338-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:15.474720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1340-V1.0","title":"RORSI_3134_2016_014_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T01:05:35.000 to 2016-01-14T05:05:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1340-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:16.479329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1341-V1.0","title":"RORSI_3135_2016_014_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T06:03:35.000 to 2016-01-14T09:15:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1341-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:17.479403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1342-V1.0","title":"RORSI_3136_2016_014_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T21:02:05.000 to 2016-01-15T00:47:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1342-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:18.485018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1343-V1.0","title":"RORSI_3137_2016_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T01:04:50.000 to 2016-01-15T05:01:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1343-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:19.483560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1344-V1.0","title":"RORSI_3138_2016_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T05:18:00.000 to 2016-01-15T14:11:50.999.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1344-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:20.485702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1345-V1.0","title":"RORSI_3139_2016_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T16:49:00.000 to 2016-01-16T00:15:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1345-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:21.489886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1346-V1.0","title":"RORSI_3140_2016_016_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-16T05:14:00.000 to 2016-01-16T14:07:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1346-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:22.492306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1347-V1.0","title":"RORSI_3141_2016_016_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-16T23:29:50.000 to 2016-01-17T01:47:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1347-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:23.490139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1348-V1.0","title":"RORSI_3142_2016_017_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T02:07:05.000 to 2016-01-17T09:22:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1348-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:24.515558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1349-V1.0","title":"RORSI_3143_2016_017_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T09:39:50.000 to 2016-01-17T14:03:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1349-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:25.566678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1350-V1.0","title":"RORSI_3144_2016_017_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T19:34:20.000 to 2016-01-17T22:30:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1350-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:26.576557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1351-V1.0","title":"RORSI_3145_2016_018_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-18T01:03:05.000 to 2016-01-18T09:22:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1351-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:27.505674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1352-V1.0","title":"RORSI_3146_2016_018_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-18T09:38:55.000 to 2016-01-18T13:59:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1352-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:28.505787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1353-V1.0","title":"RORSI_3147_2016_019_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T01:02:40.000 to 2016-01-19T09:20:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1353-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:29.506796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1354-V1.0","title":"RORSI_3148_2016_019_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T09:37:55.000 to 2016-01-19T13:55:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1354-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:30.504902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1355-V1.0","title":"RORSI_3149_2016_019_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T20:52:25.000 to 2016-01-19T22:28:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1355-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:31.511041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1356-V1.0","title":"RORSI_3150_2016_020_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T05:00:45.000 to 2016-01-20T07:00:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1356-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:32.510325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1357-V1.0","title":"RORSI_3151_2016_020_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T07:58:25.000 to 2016-01-20T13:51:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1357-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:33.506769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1358-V1.0","title":"RORSI_3152_2016_020_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T17:30:10.000 to 2016-01-20T20:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1358-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:34.517196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1359-V1.0","title":"RORSI_3153_2016_021_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-21T01:02:05.000 to 2016-01-21T06:30:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1359-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:35.524084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1360-V1.0","title":"RORSI_3154_2016_021_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-21T07:54:35.000 to 2016-01-21T13:47:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1360-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:36.571241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1361-V1.0","title":"RORSI_3155_2016_022_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-22T01:34:05.000 to 2016-01-22T06:30:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1361-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:37.585289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1362-V1.0","title":"RORSI_3156_2016_022_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-22T15:52:40.000 to 2016-01-22T20:20:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1362-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:38.525676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1363-V1.0","title":"RORSI_3157_2016_023_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-23T09:19:45.000 to 2016-01-23T13:39:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1363-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:39.532402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1364-V1.0","title":"RORSI_3158_2016_023_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-23T19:37:05.000 to 2016-01-23T22:55:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1364-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:40.530324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1365-V1.0","title":"RORSI_3159_2016_024_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T01:38:35.000 to 2016-01-24T09:13:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1365-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:41.535072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1366-V1.0","title":"RORSI_3160_2016_024_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T09:30:30.000 to 2016-01-24T13:34:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1366-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:42.536503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1367-V1.0","title":"RORSI_3161_2016_024_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T19:24:45.000 to 2016-01-24T21:42:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1367-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:43.541658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1368-V1.0","title":"RORSI_3162_2016_025_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T01:01:40.000 to 2016-01-25T09:11:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1368-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:44.543742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1369-V1.0","title":"RORSI_3163_2016_025_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T09:28:40.000 to 2016-01-25T13:30:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1369-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:45.542182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1370-V1.0","title":"RORSI_3164_2016_025_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T16:23:40.000 to 2016-01-25T18:41:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1370-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:46.538632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1371-V1.0","title":"RORSI_3165_2016_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T01:01:40.000 to 2016-01-26T09:09:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1371-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:47.580952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1372-V1.0","title":"RORSI_3166_2016_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T09:26:40.000 to 2016-01-26T13:26:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1372-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:48.629249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1373-V1.0","title":"RORSI_3167_2016_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T20:21:40.000 to 2016-01-26T22:40:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1373-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:49.642878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1374-V1.0","title":"RORSI_3168_2016_027_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T05:00:55.000 to 2016-01-27T09:07:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1374-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:50.555026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1375-V1.0","title":"RORSI_3169_2016_027_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T09:24:35.000 to 2016-01-27T10:53:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1375-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:51.555857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1376-V1.0","title":"RORSI_3170_2016_027_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T17:21:05.000 to 2016-01-27T19:39:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1376-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:52.562379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1377-V1.0","title":"RORSI_3171_2016_028_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-28T01:01:45.000 to 2016-01-28T09:05:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1377-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:53.563629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1378-V1.0","title":"RORSI_3172_2016_028_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-28T22:05:45.000 to 2016-01-29T00:59:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1378-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:54.567613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1379-V1.0","title":"RORSI_3173_2016_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T01:16:50.000 to 2016-01-29T09:03:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1379-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:55.566197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1380-V1.0","title":"RORSI_3174_2016_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T09:20:00.000 to 2016-01-29T13:12:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1380-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:56.565806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1381-V1.0","title":"RORSI_3175_2016_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T18:18:35.000 to 2016-01-29T20:36:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1381-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:57.570309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1382-V1.0","title":"RORSI_3176_2016_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T05:35:00.000 to 2016-01-30T09:01:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1382-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:58.596271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1383-V1.0","title":"RORSI_3177_2016_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T09:18:20.000 to 2016-01-30T13:08:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1383-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:59.638629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1384-V1.0","title":"RORSI_3178_2016_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T20:13:15.000 to 2016-01-30T23:14:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1384-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:00.655506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1385-V1.0","title":"RORSI_3179_2016_031_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T03:12:55.000 to 2016-01-31T08:58:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1385-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:01.574031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1386-V1.0","title":"RORSI_3180_2016_031_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T09:15:00.000 to 2016-01-31T13:03:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1386-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:02.583774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1387-V1.0","title":"RORSI_3181_2016_031_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T19:45:55.000 to 2016-01-31T21:34:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1387-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:03.584487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1388-V1.0","title":"RORSI_3182_2016_032_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-01T03:49:10.000 to 2016-02-01T08:55:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1388-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:04.589297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1389-V1.0","title":"RORSI_3183_2016_032_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-01T09:12:25.000 to 2016-02-01T12:59:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1389-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:05.593657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1390-V1.0","title":"RORSI_3184_2016_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T02:39:30.000 to 2016-02-02T08:52:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1390-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:06.594542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1391-V1.0","title":"RORSI_3185_2016_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T09:09:40.000 to 2016-02-02T12:54:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1391-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:07.600472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1392-V1.0","title":"RORSI_3186_2016_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T20:04:40.000 to 2016-02-02T22:06:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1392-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:08.608485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1393-V1.0","title":"RORSI_3187_2016_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T22:34:05.000 to 2016-02-02T23:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1393-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:09.606795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1394-V1.0","title":"RORSI_3188_2016_034_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T05:01:05.000 to 2016-02-03T08:50:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1394-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:10.656873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1395-V1.0","title":"RORSI_3189_2016_034_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T09:07:40.000 to 2016-02-03T12:49:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1395-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:11.665218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1396-V1.0","title":"RORSI_3190_2016_034_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T22:19:20.000 to 2016-02-04T08:48:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1396-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:12.609338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1397-V1.0","title":"RORSI_3191_2016_035_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T09:05:00.000 to 2016-02-04T12:44:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1397-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:13.605914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1398-V1.0","title":"RORSI_3192_2016_035_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T20:48:20.000 to 2016-02-04T23:07:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1398-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:14.608102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1399-V1.0","title":"RORSI_3193_2016_035_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T23:33:05.000 to 2016-02-05T08:44:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1399-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:15.614950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1400-V1.0","title":"RORSI_3194_2016_036_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-05T09:01:00.000 to 2016-02-05T12:40:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1400-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:16.621213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1401-V1.0","title":"RORSI_3195_2016_037_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T04:43:05.000 to 2016-02-06T06:52:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1401-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:17.619545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1402-V1.0","title":"RORSI_3196_2016_037_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T09:10:10.000 to 2016-02-06T11:06:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1402-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:18.831099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1403-V1.0","title":"RORSI_3197_2016_037_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T20:17:50.000 to 2016-02-06T21:50:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1403-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:19.627699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1404-V1.0","title":"RORSI_3198_2016_038_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T04:47:05.000 to 2016-02-07T10:56:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1404-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:20.628283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1405-V1.0","title":"RORSI_3199_2016_038_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T11:24:10.000 to 2016-02-07T12:29:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1405-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:21.662298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1406-V1.0","title":"RORSI_3200_2016_038_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T19:37:10.000 to 2016-02-07T21:43:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1406-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:22.709131","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1408-V1.0","title":"RORSI_3201_2016_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T06:50:00.000 to 2016-02-08T07:22:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1408-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:23.630044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1409-V1.0","title":"RORSI_3202_2016_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T07:49:10.000 to 2016-02-08T11:14:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1409-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:24.634488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1410-V1.0","title":"RORSI_3203_2016_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T11:42:10.000 to 2016-02-08T12:25:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1410-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:25.634448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1411-V1.0","title":"RORSI_3204_2016_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T14:42:35.000 to 2016-02-08T19:24:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1411-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:26.642025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1412-V1.0","title":"RORSI_3205_2016_040_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-09T03:10:25.000 to 2016-02-09T12:20:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1412-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:27.638513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1413-V1.0","title":"RORSI_3206_2016_040_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-09T14:38:15.000 to 2016-02-09T22:22:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1413-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:28.646981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1414-V1.0","title":"RORSI_3207_2016_041_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-10T04:58:05.000 to 2016-02-10T12:15:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1414-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:29.650447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1415-V1.0","title":"RORSI_3208_2016_041_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-10T14:33:55.000 to 2016-02-10T19:21:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1415-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:30.647217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1417-V1.0","title":"RORSI_3209_2016_042_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-11T14:29:30.000 to 2016-02-11T22:24:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1417-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:31.647104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1418-V1.0","title":"RORSI_3210_2016_043_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-12T02:57:25.000 to 2016-02-12T12:05:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1418-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:32.670881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1419-V1.0","title":"RORSI_3211_2016_043_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-12T14:59:32.000 to 2016-02-12T20:18:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1419-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:33.720859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1420-V1.0","title":"RORSI_3212_2016_044_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-13T05:01:10.000 to 2016-02-13T12:00:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1420-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:34.735406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1421-V1.0","title":"RORSI_3213_2016_044_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-13T14:20:35.000 to 2016-02-13T22:50:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1421-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:35.652529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1422-V1.0","title":"RORSI_3214_2016_045_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-14T02:48:35.000 to 2016-02-14T11:55:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1422-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:36.656357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1423-V1.0","title":"RORSI_3215_2016_045_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-14T14:16:05.000 to 2016-02-14T21:15:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1423-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:37.665337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1424-V1.0","title":"RORSI_3216_2016_046_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-15T02:44:10.000 to 2016-02-15T11:50:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1424-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:38.666143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1425-V1.0","title":"RORSI_3217_2016_046_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-15T14:11:35.000 to 2016-02-15T17:00:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1425-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:39.665302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1426-V1.0","title":"RORSI_3218_2016_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-16T05:37:05.000 to 2016-02-16T11:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1426-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:40.668274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1427-V1.0","title":"RORSI_3219_2016_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-16T14:07:05.000 to 2016-02-16T22:13:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1427-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:41.668174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1428-V1.0","title":"RORSI_3220_2016_048_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-17T05:01:10.000 to 2016-02-17T10:56:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1428-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:42.671440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1429-V1.0","title":"RORSI_3221_2016_048_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-17T14:02:35.000 to 2016-02-17T19:12:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1429-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:43.683287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1430-V1.0","title":"RORSI_3222_2016_049_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-18T02:30:45.000 to 2016-02-18T09:11:43.999.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1430-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:44.732517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1431-V1.0","title":"RORSI_3223_2016_050_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-19T02:26:15.000 to 2016-02-19T11:29:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1431-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:45.742910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1433-V1.0","title":"RORSI_3224_2016_051_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-20T13:48:50.000 to 2016-02-20T22:37:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1433-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:46.684902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1434-V1.0","title":"RORSI_3225_2016_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T01:11:50.000 to 2016-02-21T06:48:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1434-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:47.686975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1435-V1.0","title":"RORSI_3226_2016_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T07:05:25.000 to 2016-02-21T11:18:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1435-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:48.686642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1436-V1.0","title":"RORSI_3227_2016_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T18:49:30.000 to 2016-02-21T20:35:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1436-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:49.689442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1437-V1.0","title":"RORSI_3228_2016_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T02:24:55.000 to 2016-02-22T04:42:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1437-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:50.692886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1438-V1.0","title":"RORSI_3229_2016_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T04:59:55.000 to 2016-02-22T10:44:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1438-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:51.700964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1439-V1.0","title":"RORSI_3230_2016_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T19:03:00.000 to 2016-02-22T22:57:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1439-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:52.691856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1440-V1.0","title":"RORSI_3231_2016_054_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-23T22:22:15.000 to 2016-02-24T07:48:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1440-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:53.697818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1442-V1.0","title":"RORSI_3232_2016_054_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-23T19:47:15.000 to 2016-02-23T22:05:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1442-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:54.706840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1443-V1.0","title":"RORSI_3233_2016_055_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-24T22:49:05.000 to 2016-02-25T02:04:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1443-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:55.741763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1444-V1.0","title":"RORSI_3234_2016_055_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-24T08:12:05.000 to 2016-02-24T11:03:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1444-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:56.790568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1445-V1.0","title":"RORSI_3235_2016_056_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-25T19:10:25.000 to 2016-02-25T22:27:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1445-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:57.800898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1446-V1.0","title":"RORSI_3236_2016_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-26T20:21:45.000 to 2016-02-27T00:14:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1446-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:58.709837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1447-V1.0","title":"RORSI_3237_2016_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-26T05:32:05.000 to 2016-02-26T10:52:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1447-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:59.715931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1448-V1.0","title":"RORSI_3238_2016_058_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-27T05:01:05.000 to 2016-02-27T07:36:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1448-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:00.716002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1449-V1.0","title":"RORSI_3239_2016_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T01:16:50.000 to 2016-02-28T07:32:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1449-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:01.719359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1450-V1.0","title":"RORSI_3240_2016_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T08:01:45.000 to 2016-02-28T10:41:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1450-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:02.757075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1451-V1.0","title":"RORSI_3241_2016_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T18:59:20.000 to 2016-02-28T22:25:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1451-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:03.724415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1452-V1.0","title":"RORSI_3242_2016_060_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-29T01:17:25.000 to 2016-02-29T03:20:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1452-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:04.728997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1453-V1.0","title":"RORSI_3243_2016_060_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-29T19:21:20.000 to 2016-02-29T22:20:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1453-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:05.723278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1454-V1.0","title":"RORSI_3244_2016_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-01T01:18:00.000 to 2016-03-01T07:03:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1454-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:06.748108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1455-V1.0","title":"RORSI_3245_2016_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-01T19:24:10.000 to 2016-03-01T22:14:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1455-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:07.800288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1456-V1.0","title":"RORSI_3246_2016_062_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-02T05:00:55.000 to 2016-03-02T07:17:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1456-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:08.813968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1457-V1.0","title":"RORSI_3247_2016_063_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-03T02:04:05.000 to 2016-03-03T07:13:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1457-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:09.740064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1459-V1.0","title":"RORSI_3248_2016_067_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-07T01:07:10.000 to 2016-03-07T05:06:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1459-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:10.738645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1460-V1.0","title":"RORSI_3249_2016_068_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-08T01:02:25.000 to 2016-03-08T05:06:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1460-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:11.742007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1461-V1.0","title":"RORSI_3250_2016_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-09T05:00:40.000 to 2016-03-09T07:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1461-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:12.736631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1462-V1.0","title":"RORSI_3251_2016_070_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-10T00:52:55.000 to 2016-03-10T05:06:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1462-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:13.748327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1463-V1.0","title":"RORSI_3252_2016_071_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-11T00:48:10.000 to 2016-03-11T04:06:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1463-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:14.740756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1464-V1.0","title":"RORSI_3253_2016_073_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-13T00:38:35.000 to 2016-03-13T05:06:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1464-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:15.746547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1465-V1.0","title":"RORSI_3254_2016_082_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-22T00:43:40.000 to 2016-03-22T04:04:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1465-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:16.749009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1466-V1.0","title":"RORSI_3255_2016_084_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-23T23:46:15.000 to 2016-03-24T07:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1466-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:17.758613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1467-V1.0","title":"RORSI_3256_2016_085_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-24T23:41:30.000 to 2016-03-25T06:59:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1467-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:18.806173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1468-V1.0","title":"RORSI_3257_2016_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-26T23:32:05.000 to 2016-03-27T06:50:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1468-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:19.822891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1469-V1.0","title":"RORSI_3258_2016_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-27T23:27:20.000 to 2016-03-28T01:05:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1469-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:20.760351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1470-V1.0","title":"RORSI_3259_2016_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-28T17:39:40.000 to 2016-03-28T19:27:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1470-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:21.761644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1471-V1.0","title":"RORSI_3260_2016_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-28T23:22:40.000 to 2016-03-29T05:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1471-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:22.769798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1472-V1.0","title":"RORSI_3261_2016_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-29T17:34:50.000 to 2016-03-29T20:34:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1472-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:23.768296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1473-V1.0","title":"RORSI_3262_2016_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-29T23:18:00.000 to 2016-03-30T04:05:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1473-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:24.770678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1474-V1.0","title":"RORSI_3263_2016_091_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-31T23:08:35.000 to 2016-04-01T00:56:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1474-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:25.773237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1475-V1.0","title":"RORSI_3264_2016_092_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-01T17:20:25.000 to 2016-04-01T20:45:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1475-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:26.776121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1476-V1.0","title":"RORSI_3265_2016_092_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-01T23:04:00.000 to 2016-04-02T05:14:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1476-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:27.777118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1477-V1.0","title":"RORSI_3266_2016_093_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-02T22:59:20.000 to 2016-04-03T01:48:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1477-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:28.775510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1478-V1.0","title":"RORSI_3267_2016_094_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-03T17:11:00.000 to 2016-04-03T19:04:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1478-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:29.817786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1479-V1.0","title":"RORSI_3268_2016_094_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-03T22:54:45.000 to 2016-04-04T03:12:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1479-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:30.876359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1480-V1.0","title":"RORSI_3269_2016_095_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T17:06:20.000 to 2016-04-04T22:32:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1480-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:31.786711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1481-V1.0","title":"RORSI_3270_2016_095_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T04:01:30.000 to 2016-04-04T05:15:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1481-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:32.791744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1482-V1.0","title":"RORSI_3271_2016_095_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T22:50:05.000 to 2016-04-05T03:00:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1482-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:33.789394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT1-1483-V1.0","title":"RORSI_3272_2016_096_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-05T17:01:40.000 to 2016-04-05T19:59:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1483-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:34.794323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1484-V1.0","title":"RORSI_3273_2016_097_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-06T16:57:05.000 to 2016-04-06T20:24:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1484-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:35.795002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1485-V1.0","title":"RORSI_3274_2016_097_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-06T22:40:55.000 to 2016-04-07T03:55:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1485-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:36.795199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1486-V1.0","title":"RORSI_3275_2016_098_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-07T16:52:30.000 to 2016-04-07T20:04:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1486-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:37.806091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1487-V1.0","title":"RORSI_3276_2016_098_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-07T22:36:20.000 to 2016-04-08T05:00:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1487-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:38.802619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1488-V1.0","title":"RORSI_3277_2016_099_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-08T16:48:00.000 to 2016-04-08T19:19:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1488-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:39.805075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1489-V1.0","title":"RORSI_3278_2016_100_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-09T16:43:30.000 to 2016-04-10T04:14:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1489-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:40.824235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1490-V1.0","title":"RORSI_3279_2016_101_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-10T16:39:00.000 to 2016-04-10T19:25:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1490-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:41.882006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1491-V1.0","title":"RORSI_3280_2016_101_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-10T22:22:45.000 to 2016-04-11T02:32:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1491-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:42.892752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1492-V1.0","title":"RORSI_3281_2016_102_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-11T16:34:35.000 to 2016-04-11T20:28:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1492-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:43.819685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1493-V1.0","title":"RORSI_3282_2016_102_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-11T22:18:15.000 to 2016-04-12T02:02:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1493-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:44.816130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1494-V1.0","title":"RORSI_3283_2016_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-12T16:30:15.000 to 2016-04-12T20:35:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1494-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:45.818018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1495-V1.0","title":"RORSI_3284_2016_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-12T22:13:45.000 to 2016-04-13T00:18:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1495-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:46.823537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1496-V1.0","title":"RORSI_3285_2016_104_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-13T16:25:50.000 to 2016-04-13T19:33:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1496-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:47.824452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1497-V1.0","title":"RORSI_3286_2016_104_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-13T22:09:20.000 to 2016-04-14T01:54:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1497-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:48.830796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1498-V1.0","title":"RORSI_3287_2016_105_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-14T16:21:30.000 to 2016-04-14T20:36:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1498-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:49.832898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1499-V1.0","title":"RORSI_3288_2016_105_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-14T22:04:50.000 to 2016-04-15T02:50:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1499-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:50.831175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1500-V1.0","title":"RORSI_3289_2016_106_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-15T16:17:15.000 to 2016-04-15T19:39:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1500-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:51.839106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1501-V1.0","title":"RORSI_3290_2016_106_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-15T22:00:25.000 to 2016-04-16T05:00:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1501-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:52.884916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1502-V1.0","title":"RORSI_3291_2016_107_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-16T16:13:00.000 to 2016-04-16T19:41:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1502-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:53.901397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1503-V1.0","title":"RORSI_3292_2016_107_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-16T21:56:00.000 to 2016-04-17T03:41:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1503-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:54.843254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1504-V1.0","title":"RORSI_3293_2016_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-17T16:08:45.000 to 2016-04-17T19:44:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1504-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:55.840546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1505-V1.0","title":"RORSI_3294_2016_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-17T21:51:35.000 to 2016-04-18T03:37:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1505-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:56.846844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1506-V1.0","title":"RORSI_3295_2016_109_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-18T16:04:35.000 to 2016-04-18T19:47:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1506-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:57.848938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1508-V1.0","title":"RORSI_3296_2016_110_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-19T16:00:25.000 to 2016-04-19T20:47:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1508-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:58.849840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1509-V1.0","title":"RORSI_3297_2016_110_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-19T21:42:50.000 to 2016-04-20T00:19:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1509-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:59.951407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1510-V1.0","title":"RORSI_3298_2016_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T15:56:20.000 to 2016-04-20T19:52:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1510-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:00.849927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1511-V1.0","title":"RORSI_3299_2016_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T01:30:35.000 to 2016-04-20T03:25:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1511-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:01.851229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1512-V1.0","title":"RORSI_3300_2016_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T21:38:25.000 to 2016-04-21T02:24:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1512-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:02.856494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1513-V1.0","title":"RORSI_3301_2016_112_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-21T15:52:15.000 to 2016-04-21T21:40:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1513-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:03.899978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1514-V1.0","title":"RORSI_3302_2016_112_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-21T21:57:15.000 to 2016-04-22T05:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1514-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:04.945638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1515-V1.0","title":"RORSI_3303_2016_113_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-22T15:48:10.000 to 2016-04-22T19:57:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1515-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:05.861432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1516-V1.0","title":"RORSI_3304_2016_113_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-22T21:29:45.000 to 2016-04-23T05:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1516-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:06.863228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1517-V1.0","title":"RORSI_3305_2016_114_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-23T18:17:10.000 to 2016-04-24T00:20:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1517-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:07.869186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1518-V1.0","title":"RORSI_3306_2016_115_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-24T16:34:35.000 to 2016-04-25T03:08:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1518-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:08.870300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1519-V1.0","title":"RORSI_3307_2016_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T16:33:35.000 to 2016-04-25T20:04:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1519-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:09.872711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1520-V1.0","title":"RORSI_3308_2016_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T22:57:05.000 to 2016-04-26T03:04:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1520-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:10.872507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1521-V1.0","title":"RORSI_3309_2016_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T08:46:50.000 to 2016-04-25T11:34:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1521-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:11.877731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1522-V1.0","title":"RORSI_3310_2016_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T16:32:35.000 to 2016-04-26T20:06:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1522-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:12.882413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1523-V1.0","title":"RORSI_3311_2016_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T21:12:40.000 to 2016-04-27T00:20:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1523-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:13.882424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1524-V1.0","title":"RORSI_3312_2016_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T08:53:05.000 to 2016-04-26T11:00:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1524-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:14.908956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1525-V1.0","title":"RORSI_3313_2016_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T16:31:30.000 to 2016-04-27T20:08:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1525-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:15.952733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1526-V1.0","title":"RORSI_3314_2016_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T01:29:35.000 to 2016-04-27T03:00:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1526-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:16.968247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1527-V1.0","title":"RORSI_3315_2016_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T21:08:25.000 to 2016-04-28T04:08:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1527-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:17.888175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1528-V1.0","title":"RORSI_3316_2016_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T16:30:30.000 to 2016-04-28T20:47:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1528-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:18.892470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1529-V1.0","title":"RORSI_3317_2016_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T21:04:10.000 to 2016-04-29T03:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1529-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:19.893270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1530-V1.0","title":"RORSI_3318_2016_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T08:34:10.000 to 2016-04-28T10:14:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1530-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:20.894348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1531-V1.0","title":"RORSI_3319_2016_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-29T16:29:20.000 to 2016-04-29T20:12:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1531-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:21.900346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1532-V1.0","title":"RORSI_3320_2016_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-29T21:00:00.000 to 2016-04-30T04:03:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1532-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:22.903240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1533-V1.0","title":"RORSI_3321_2016_121_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-30T15:27:15.000 to 2016-04-30T20:14:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1533-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:23.903417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1534-V1.0","title":"RORSI_3322_2016_121_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-30T08:25:50.000 to 2016-04-30T10:43:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1534-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:24.904977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1535-V1.0","title":"RORSI_3323_2016_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-01T16:27:05.000 to 2016-05-01T20:16:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1535-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:25.916909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1536-V1.0","title":"RORSI_3324_2016_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-01T20:51:35.000 to 2016-05-02T03:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1536-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:26.964483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1540-V1.0","title":"RORSI_3325_2016_123_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-02T16:26:00.000 to 2016-05-02T20:18:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1540-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:27.981502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1541-V1.0","title":"RORSI_3326_2016_123_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-02T20:47:25.000 to 2016-05-03T03:45:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1541-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:28.914985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1542-V1.0","title":"RORSI_3327_2016_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-03T17:43:40.000 to 2016-05-03T20:19:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1542-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:29.914128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1543-V1.0","title":"RORSI_3328_2016_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-03T21:30:40.000 to 2016-05-03T22:54:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1543-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:30.913887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1544-V1.0","title":"RORSI_3329_2016_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-04T15:56:50.000 to 2016-05-04T20:21:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1544-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:31.918188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1545-V1.0","title":"RORSI_3330_2016_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-04T20:39:10.000 to 2016-05-04T22:20:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1545-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:32.926575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1546-V1.0","title":"RORSI_3331_2016_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-05T16:22:30.000 to 2016-05-05T20:18:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1546-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:33.927152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1547-V1.0","title":"RORSI_3332_2016_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-05T20:35:05.000 to 2016-05-06T03:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1547-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:34.939605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1548-V1.0","title":"RORSI_3333_2016_127_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-06T16:00:45.000 to 2016-05-06T20:14:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1548-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:35.922837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1549-V1.0","title":"RORSI_3334_2016_127_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-06T20:31:00.000 to 2016-05-06T23:23:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1549-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:36.931883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1550-V1.0","title":"RORSI_3335_2016_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-07T16:02:00.000 to 2016-05-07T20:09:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1550-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:37.976260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1551-V1.0","title":"RORSI_3336_2016_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-07T20:26:55.000 to 2016-05-07T23:25:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1551-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:39.025187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1552-V1.0","title":"RORSI_3337_2016_129_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-08T16:18:50.000 to 2016-05-08T20:05:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1552-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:39.937427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1553-V1.0","title":"RORSI_3339_2016_129_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-08T20:22:50.000 to 2016-05-09T03:00:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1553-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:40.934756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1557-V1.0","title":"RORSI_3338_2016_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T16:17:35.000 to 2016-05-09T17:39:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1557-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:41.941041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1558-V1.0","title":"RORSI_3340_2016_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T17:50:45.000 to 2016-05-09T19:34:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1558-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:42.941526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1559-V1.0","title":"RORSI_3341_2016_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T19:46:45.000 to 2016-05-10T02:06:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1559-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:43.945098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1560-V1.0","title":"RORSI_3342_2016_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T15:12:05.000 to 2016-05-10T20:28:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1560-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:44.945747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1561-V1.0","title":"RORSI_3343_2016_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T21:41:45.000 to 2016-05-11T00:22:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1561-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:45.946768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1562-V1.0","title":"RORSI_3344_2016_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T10:58:05.000 to 2016-05-10T14:33:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1562-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:46.955911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1563-V1.0","title":"RORSI_3345_2016_132_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-11T16:14:45.000 to 2016-05-12T01:58:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1563-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:47.955196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1564-V1.0","title":"RORSI_3346_2016_132_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-11T10:18:05.000 to 2016-05-11T15:57:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1564-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:48.987166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1565-V1.0","title":"RORSI_3347_2016_133_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T15:12:05.000 to 2016-05-12T20:30:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1565-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:50.035792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1566-V1.0","title":"RORSI_3348_2016_133_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T10:03:05.000 to 2016-05-12T13:07:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1566-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:51.049640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1567-V1.0","title":"RORSI_3349_2016_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T23:43:40.000 to 2016-05-13T03:00:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1567-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:51.965051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1568-V1.0","title":"RORSI_3350_2016_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-13T16:11:45.000 to 2016-05-13T23:54:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1568-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:52.968170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1569-V1.0","title":"RORSI_3351_2016_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-13T07:33:10.000 to 2016-05-13T15:54:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1569-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:53.963892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1570-V1.0","title":"RORSI_3352_2016_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-14T16:10:05.000 to 2016-05-14T19:41:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1570-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:54.968122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1571-V1.0","title":"RORSI_3353_2016_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-14T19:58:45.000 to 2016-05-15T01:35:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1571-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:55.975350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1572-V1.0","title":"RORSI_3354_2016_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-15T16:08:25.000 to 2016-05-15T19:37:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1572-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:56.973744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1573-V1.0","title":"RORSI_3355_2016_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-15T19:54:50.000 to 2016-05-15T23:14:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1573-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:57.978675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1574-V1.0","title":"RORSI_3356_2016_137_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-16T19:50:50.000 to 2016-05-16T21:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1574-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:58.978424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1575-V1.0","title":"RORSI_3357_2016_138_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-17T00:42:05.000 to 2016-05-17T04:45:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1575-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:59.999342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1576-V1.0","title":"RORSI_3358_2016_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-18T16:02:40.000 to 2016-05-18T18:24:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1576-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:01.049154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1577-V1.0","title":"RORSI_3359_2016_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T16:00:40.000 to 2016-05-19T19:22:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1577-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:02.058082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1578-V1.0","title":"RORSI_3360_2016_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T19:39:05.000 to 2016-05-20T03:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1578-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:02.991078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1579-V1.0","title":"RORSI_3361_2016_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T07:09:50.000 to 2016-05-19T12:19:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1579-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:03.993288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1580-V1.0","title":"RORSI_3362_2016_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-20T15:58:35.000 to 2016-05-21T01:22:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1580-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:04.993940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1581-V1.0","title":"RORSI_3363_2016_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-20T07:05:55.000 to 2016-05-20T15:41:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1581-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:05.997864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1582-V1.0","title":"RORSI_3364_2016_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-21T15:56:25.000 to 2016-05-21T19:39:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1582-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:06.998504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1583-V1.0","title":"RORSI_3365_2016_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-21T19:57:05.000 to 2016-05-22T00:24:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1583-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:08.003844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1584-V1.0","title":"RORSI_3366_2016_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T15:54:10.000 to 2016-05-22T19:10:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1584-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:09.007108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1585-V1.0","title":"RORSI_3367_2016_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T01:25:35.000 to 2016-05-22T04:29:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1585-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:10.005883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1586-V1.0","title":"RORSI_3368_2016_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T19:27:25.000 to 2016-05-23T03:00:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1586-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:11.017754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1587-V1.0","title":"RORSI_3369_2016_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-23T15:51:50.000 to 2016-05-23T19:06:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1587-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:12.056600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1588-V1.0","title":"RORSI_3370_2016_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-23T19:23:35.000 to 2016-05-24T04:22:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1588-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:13.069222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1589-V1.0","title":"RORSI_3371_2016_145_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-24T15:49:30.000 to 2016-05-25T00:24:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1589-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:14.015380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1590-V1.0","title":"RORSI_3372_2016_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-25T15:47:05.000 to 2016-05-25T18:59:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1590-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:15.023637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1591-V1.0","title":"RORSI_3373_2016_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-25T19:15:55.000 to 2016-05-26T00:34:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1591-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:16.014149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1592-V1.0","title":"RORSI_3374_2016_147_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T15:44:40.000 to 2016-05-26T18:55:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1592-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:17.016213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1593-V1.0","title":"RORSI_3375_2016_147_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T19:12:05.000 to 2016-05-27T03:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1593-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:18.025811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1594-V1.0","title":"RORSI_3376_2016_147_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T06:43:05.000 to 2016-05-26T12:25:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1594-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:19.024895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1595-V1.0","title":"RORSI_3377_2016_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-27T15:42:10.000 to 2016-05-28T00:55:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1595-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:20.028452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1596-V1.0","title":"RORSI_3378_2016_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T15:39:45.000 to 2016-05-28T18:47:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1596-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:21.027354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1597-V1.0","title":"RORSI_3379_2016_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T19:04:25.000 to 2016-05-28T23:44:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1597-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:22.030948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1598-V1.0","title":"RORSI_3380_2016_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T08:03:05.000 to 2016-05-28T13:51:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1598-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:23.064615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1599-V1.0","title":"RORSI_3381_2016_150_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-29T15:37:15.000 to 2016-05-30T00:48:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1599-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:24.114299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1600-V1.0","title":"RORSI_3382_2016_150_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-29T15:26:00.000 to 2016-05-29T16:10:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1600-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:25.127558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1601-V1.0","title":"RORSI_3383_2016_151_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T16:07:54.000 to 2016-05-30T23:54:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1601-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:26.042481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1602-V1.0","title":"RORSI_3384_2016_151_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T12:11:02.000 to 2016-05-30T14:14:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1602-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:27.041976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1603-V1.0","title":"RORSI_3385_2016_151_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T14:32:53.000 to 2016-05-30T15:06:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1603-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:28.047049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1604-V1.0","title":"RORSI_3386_2016_152_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-31T15:32:15.000 to 2016-06-01T00:26:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1604-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:29.048944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1605-V1.0","title":"RORSI_3387_2016_152_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-31T06:24:25.000 to 2016-05-31T11:23:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1605-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:30.052960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1606-V1.0","title":"RORSI_3388_2016_153_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T15:29:45.000 to 2016-06-01T18:32:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1606-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:31.053751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1607-V1.0","title":"RORSI_3389_2016_153_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T18:49:20.000 to 2016-06-02T03:54:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1607-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:32.057997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1608-V1.0","title":"RORSI_3390_2016_153_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T07:56:51.000 to 2016-06-01T10:26:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1608-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:33.056794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1609-V1.0","title":"RORSI_3391_2016_154_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-02T15:27:20.000 to 2016-06-03T00:33:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1609-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:34.073792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1610-V1.0","title":"RORSI_3392_2016_154_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-02T06:17:00.000 to 2016-06-02T15:10:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1610-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:35.124196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1611-V1.0","title":"RORSI_3393_2016_155_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T15:24:50.000 to 2016-06-03T20:41:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1611-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:36.137770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1612-V1.0","title":"RORSI_3394_2016_155_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T06:13:20.000 to 2016-06-03T11:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1612-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:37.067418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1613-V1.0","title":"RORSI_3395_2016_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T23:58:35.000 to 2016-06-04T03:48:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1613-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:38.066403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1614-V1.0","title":"RORSI_3396_2016_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-04T19:13:05.000 to 2016-06-05T03:45:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1614-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:39.066957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1615-V1.0","title":"RORSI_3397_2016_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-04T06:09:40.000 to 2016-06-04T10:27:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1615-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:40.075219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1616-V1.0","title":"RORSI_3398_2016_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T15:19:50.000 to 2016-06-05T18:17:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1616-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:41.173477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1617-V1.0","title":"RORSI_3399_2016_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T18:35:05.000 to 2016-06-05T22:44:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1617-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:42.079506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1618-V1.0","title":"RORSI_3400_2016_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T06:06:00.000 to 2016-06-05T09:09:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1618-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:43.080320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1619-V1.0","title":"RORSI_3401_2016_158_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T15:17:15.000 to 2016-06-06T23:35:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1619-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:44.085020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1620-V1.0","title":"RORSI_3402_2016_158_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T02:13:05.000 to 2016-06-06T03:42:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1620-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:45.083114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1621-V1.0","title":"RORSI_3403_2016_158_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T06:33:05.000 to 2016-06-06T09:07:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1621-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:46.132086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1622-V1.0","title":"RORSI_3404_2016_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T23:52:50.000 to 2016-06-07T03:39:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1622-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:47.147373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1623-V1.0","title":"RORSI_3405_2016_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-07T18:27:00.000 to 2016-06-08T00:27:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1623-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:48.087870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1624-V1.0","title":"RORSI_3406_2016_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-07T05:58:45.000 to 2016-06-07T09:05:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1624-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:49.095745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1625-V1.0","title":"RORSI_3407_2016_160_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T15:12:05.000 to 2016-06-08T18:06:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1625-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:50.093920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1626-V1.0","title":"RORSI_3408_2016_160_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T01:22:45.000 to 2016-06-08T03:36:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1626-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:51.098253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1627-V1.0","title":"RORSI_3409_2016_160_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T18:23:20.000 to 2016-06-09T03:33:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1627-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:52.101259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1628-V1.0","title":"RORSI_3410_2016_161_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-09T15:12:05.000 to 2016-06-09T18:02:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1628-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:53.103829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1629-V1.0","title":"RORSI_3411_2016_161_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-09T18:19:40.000 to 2016-06-10T03:30:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1629-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:54.105406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1630-V1.0","title":"RORSI_3412_2016_162_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T15:08:05.000 to 2016-06-10T23:28:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1630-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:55.102447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1631-V1.0","title":"RORSI_3413_2016_162_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T06:38:05.000 to 2016-06-10T08:59:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1631-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:56.105052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1632-V1.0","title":"RORSI_3414_2016_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T23:45:15.000 to 2016-06-11T03:27:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1632-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:57.146676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1633-V1.0","title":"RORSI_3415_2016_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T18:12:20.000 to 2016-06-11T22:42:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1633-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:58.192925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1634-V1.0","title":"RORSI_3416_2016_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T22:44:15.000 to 2016-06-12T00:28:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1634-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:59.113881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1635-V1.0","title":"RORSI_3417_2016_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T05:44:15.000 to 2016-06-11T08:58:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1635-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:00.115548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1636-V1.0","title":"RORSI_3418_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T15:00:50.000 to 2016-06-12T17:51:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1636-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:01.120689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1637-V1.0","title":"RORSI_3419_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T02:01:05.000 to 2016-06-12T03:24:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1637-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:02.124228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1638-V1.0","title":"RORSI_3420_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T18:08:40.000 to 2016-06-12T21:06:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1638-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:03.124647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1639-V1.0","title":"RORSI_3421_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T21:08:05.000 to 2016-06-13T00:55:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1639-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:04.123737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1640-V1.0","title":"RORSI_3422_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T05:40:40.000 to 2016-06-12T08:14:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1640-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:05.133084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1641-V1.0","title":"RORSI_3423_2016_165_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T14:57:55.000 to 2016-06-13T23:22:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1641-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:06.130932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1642-V1.0","title":"RORSI_3424_2016_165_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T00:56:55.000 to 2016-06-13T03:21:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1642-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:07.128507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1644-V1.0","title":"RORSI_3425_2016_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-14T15:57:05.000 to 2016-06-14T21:10:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1644-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:08.154946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1645-V1.0","title":"RORSI_3426_2016_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T23:39:35.000 to 2016-06-14T03:18:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1645-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:09.203294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1646-V1.0","title":"RORSI_3427_2016_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-14T21:27:25.000 to 2016-06-15T01:02:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1646-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:10.216391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1647-V1.0","title":"RORSI_3428_2016_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T15:57:05.000 to 2016-06-15T23:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1647-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:11.140217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1648-V1.0","title":"RORSI_3429_2016_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T10:23:30.000 to 2016-06-15T13:00:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1648-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:12.142696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1649-V1.0","title":"RORSI_3430_2016_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T13:51:33.000 to 2016-06-15T14:55:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1649-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:13.144478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1650-V1.0","title":"RORSI_3431_2016_168_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-16T15:57:05.000 to 2016-06-16T23:41:33.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1650-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:14.146736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1651-V1.0","title":"RORSI_3432_2016_168_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-16T10:20:25.000 to 2016-06-16T14:55:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1651-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:15.148290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1652-V1.0","title":"RORSI_3433_2016_169_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-17T14:45:35.000 to 2016-06-17T23:37:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1652-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:16.148495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1653-V1.0","title":"RORSI_3434_2016_169_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-17T05:22:50.000 to 2016-06-17T08:36:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1653-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:17.155464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1654-V1.0","title":"RORSI_3435_2016_170_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-18T14:42:25.000 to 2016-06-18T23:34:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1654-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:18.155027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1655-V1.0","title":"RORSI_3436_2016_170_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-18T05:19:15.000 to 2016-06-18T13:18:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1655-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:19.164212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1656-V1.0","title":"RORSI_3437_2016_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T14:39:15.000 to 2016-06-19T17:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1656-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:20.222622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1657-V1.0","title":"RORSI_3438_2016_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T17:47:05.000 to 2016-06-20T03:01:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1657-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:21.227933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1658-V1.0","title":"RORSI_3439_2016_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T05:15:45.000 to 2016-06-19T13:46:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1658-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:22.163553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1659-V1.0","title":"RORSI_3440_2016_172_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-20T14:36:00.000 to 2016-06-20T23:27:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1659-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:23.163680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1660-V1.0","title":"RORSI_3441_2016_172_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-20T05:12:15.000 to 2016-06-20T08:33:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1660-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:24.175854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1661-V1.0","title":"RORSI_3442_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T14:32:45.000 to 2016-06-21T17:30:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1661-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:25.164985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1662-V1.0","title":"RORSI_3443_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T17:47:05.000 to 2016-06-21T19:30:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1662-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:26.177929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1663-V1.0","title":"RORSI_3444_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T20:21:34.000 to 2016-06-21T22:31:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1663-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:27.174799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1664-V1.0","title":"RORSI_3445_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T23:23:34.000 to 2016-06-22T00:29:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1664-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:28.173812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1665-V1.0","title":"RORSI_3446_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T05:08:45.000 to 2016-06-21T12:27:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1665-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:29.179061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1666-V1.0","title":"RORSI_3447_2016_174_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T14:29:35.000 to 2016-06-22T16:43:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1666-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:30.177420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1667-V1.0","title":"RORSI_3448_2016_174_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T21:02:05.000 to 2016-06-22T23:22:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1667-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:31.221240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1668-V1.0","title":"RORSI_3449_2016_174_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T05:05:10.000 to 2016-06-22T11:50:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1668-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:32.277274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1669-V1.0","title":"RORSI_3450_2016_175_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T14:36:10.000 to 2016-06-23T17:30:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1669-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:33.186702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1670-V1.0","title":"RORSI_3451_2016_175_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T17:47:05.000 to 2016-06-24T02:49:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1670-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:34.186774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1671-V1.0","title":"RORSI_3452_2016_175_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T05:01:40.000 to 2016-06-23T14:19:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1671-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:35.189230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1672-V1.0","title":"RORSI_3453_2016_176_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T14:23:15.000 to 2016-06-24T23:02:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1672-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:36.191294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1673-V1.0","title":"RORSI_3454_2016_176_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T04:58:10.000 to 2016-06-24T10:05:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1673-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:37.194552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1674-V1.0","title":"RORSI_3455_2016_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-25T14:46:45.000 to 2016-06-25T23:09:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1674-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:38.194508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1675-V1.0","title":"RORSI_3456_2016_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T23:19:10.000 to 2016-06-25T02:46:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1675-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:39.201580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1676-V1.0","title":"RORSI_3462_2016_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-25T04:54:45.000 to 2016-06-25T14:29:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1676-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:40.201258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1677-V1.0","title":"RORSI_3457_2016_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T14:32:30.000 to 2016-06-26T17:30:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1677-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:41.203855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1678-V1.0","title":"RORSI_3458_2016_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T17:47:05.000 to 2016-06-27T02:41:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1678-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:42.231366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1679-V1.0","title":"RORSI_3459_2016_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T06:00:40.000 to 2016-06-26T14:15:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1679-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:43.281075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1680-V1.0","title":"RORSI_3460_2016_179_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-27T14:14:10.000 to 2016-06-27T23:02:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1680-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:44.298050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1681-V1.0","title":"RORSI_3461_2016_179_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-27T04:47:45.000 to 2016-06-27T13:57:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1681-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:45.211633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1682-V1.0","title":"RORSI_3463_2016_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-28T04:44:15.000 to 2016-06-28T11:43:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1682-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:46.216585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1683-V1.0","title":"RORSI_3464_2016_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-28T14:11:15.000 to 2016-06-28T22:58:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1683-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:47.218136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1684-V1.0","title":"RORSI_3465_2016_181_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-29T04:45:10.000 to 2016-06-29T07:41:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1684-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:48.218469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1685-V1.0","title":"RORSI_3466_2016_181_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-29T14:08:25.000 to 2016-06-29T22:55:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1685-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:49.225700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1686-V1.0","title":"RORSI_3467_2016_182_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-30T04:37:20.000 to 2016-06-30T11:42:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1686-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:50.221492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT2-1687-V1.0","title":"RORSI_3468_2016_182_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-30T14:05:40.000 to 2016-06-30T22:51:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1687-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:51.226211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1688-V1.0","title":"RORSI_3469_2016_183_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-01T04:33:55.000 to 2016-07-01T12:18:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1688-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:52.230914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1689-V1.0","title":"RORSI_3470_2016_183_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-01T14:03:00.000 to 2016-07-01T22:47:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1689-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:53.241307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1690-V1.0","title":"RORSI_3471_2016_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-02T04:30:30.000 to 2016-07-02T09:26:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1690-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:54.295786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1691-V1.0","title":"RORSI_3472_2016_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-02T15:12:05.000 to 2016-07-02T22:44:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1691-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:55.305671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1692-V1.0","title":"RORSI_3473_2016_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-03T04:27:05.000 to 2016-07-03T12:14:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1692-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:56.238538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1693-V1.0","title":"RORSI_3474_2016_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-03T17:02:05.000 to 2016-07-04T02:21:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1693-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:57.240077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1694-V1.0","title":"RORSI_3475_2016_186_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-04T04:23:35.000 to 2016-07-04T14:04:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1694-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:58.238740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1695-V1.0","title":"RORSI_3476_2016_186_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-04T15:06:55.000 to 2016-07-04T22:37:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1695-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:59.243386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1696-V1.0","title":"RORSI_3477_2016_187_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-05T04:20:10.000 to 2016-07-05T07:35:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1696-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:00.245880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1697-V1.0","title":"RORSI_3478_2016_187_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-05T13:52:40.000 to 2016-07-05T22:33:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1697-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:01.251785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1698-V1.0","title":"RORSI_3479_2016_188_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-06T13:50:10.000 to 2016-07-06T22:30:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1698-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:02.253401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1699-V1.0","title":"RORSI_3480_2016_188_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-06T11:57:05.000 to 2016-07-06T13:33:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1699-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:03.253473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1700-V1.0","title":"RORSI_3481_2016_189_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-07T14:12:50.000 to 2016-07-07T22:26:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1700-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:04.261275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1701-V1.0","title":"RORSI_3483_2016_189_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-07T04:13:20.000 to 2016-07-07T13:55:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1701-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:05.301257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1702-V1.0","title":"RORSI_3482_2016_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-08T13:45:15.000 to 2016-07-08T22:23:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1702-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:06.348079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1703-V1.0","title":"RORSI_3484_2016_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-08T04:09:55.000 to 2016-07-08T12:07:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1703-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:07.262565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1704-V1.0","title":"RORSI_3485_2016_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T13:42:50.000 to 2016-07-09T17:30:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1704-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:08.265533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1705-V1.0","title":"RORSI_3486_2016_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T17:47:05.000 to 2016-07-09T23:52:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1705-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:09.264344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1706-V1.0","title":"RORSI_3487_2016_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T04:06:30.000 to 2016-07-09T08:22:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1706-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:10.267338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1707-V1.0","title":"RORSI_3488_2016_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-10T14:04:30.000 to 2016-07-10T22:16:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1707-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:11.273456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1708-V1.0","title":"RORSI_3489_2016_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-10T05:58:20.000 to 2016-07-10T13:47:33.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1708-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:12.274526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1709-V1.0","title":"RORSI_3490_2016_193_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-11T13:38:00.000 to 2016-07-11T22:12:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1709-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:13.269525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1710-V1.0","title":"RORSI_3491_2016_193_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-11T04:59:45.000 to 2016-07-11T13:21:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1710-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:14.276731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1711-V1.0","title":"RORSI_3492_2016_194_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-12T13:59:00.000 to 2016-07-12T19:44:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1711-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:15.279020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1712-V1.0","title":"RORSI_3493_2016_194_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-12T03:56:20.000 to 2016-07-12T13:42:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1712-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:16.318402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1713-V1.0","title":"RORSI_3494_2016_195_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-13T16:57:05.000 to 2016-07-13T22:05:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1713-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:17.364931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1714-V1.0","title":"RORSI_3495_2016_195_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-13T04:42:55.000 to 2016-07-13T09:02:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1714-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:18.380509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1715-V1.0","title":"RORSI_3496_2016_196_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-14T13:30:55.000 to 2016-07-14T22:02:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1715-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:19.291480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1716-V1.0","title":"RORSI_3497_2016_196_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-14T03:49:35.000 to 2016-07-14T08:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1716-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:20.291978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1717-V1.0","title":"RORSI_3498_2016_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-15T13:50:45.000 to 2016-07-15T21:59:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1717-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:21.291695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1718-V1.0","title":"RORSI_3499_2016_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-15T03:46:15.000 to 2016-07-15T06:48:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1718-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:22.399657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1719-V1.0","title":"RORSI_3500_2016_198_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-16T13:26:25.000 to 2016-07-16T21:55:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1719-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:23.300365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1720-V1.0","title":"RORSI_3501_2016_198_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-16T03:42:50.000 to 2016-07-16T11:14:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1720-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:24.298435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1721-V1.0","title":"RORSI_3502_2016_199_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T13:45:15.000 to 2016-07-17T17:30:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1721-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:25.298447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1722-V1.0","title":"RORSI_3503_2016_199_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T17:47:05.000 to 2016-07-18T01:44:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1722-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:26.306157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1723-V1.0","title":"RORSI_3504_2016_199_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T05:44:49.000 to 2016-07-17T13:28:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1723-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:27.325458","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1724-V1.0","title":"RORSI_3505_2016_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T13:22:05.000 to 2016-07-18T18:25:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1724-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:28.371165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1725-V1.0","title":"RORSI_3506_2016_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T22:02:05.000 to 2016-07-19T00:40:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1725-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:29.384138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1726-V1.0","title":"RORSI_3507_2016_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T03:36:10.000 to 2016-07-18T06:54:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1726-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:30.315252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1727-V1.0","title":"RORSI_3508_2016_201_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T13:27:00.000 to 2016-07-19T16:05:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1727-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:31.312149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1728-V1.0","title":"RORSI_3509_2016_201_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T16:22:20.000 to 2016-07-20T00:59:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1728-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:32.317867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1729-V1.0","title":"RORSI_3510_2016_201_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T03:32:45.000 to 2016-07-19T06:30:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1729-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:33.318310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1730-V1.0","title":"RORSI_3511_2016_202_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-20T04:41:50.000 to 2016-07-20T06:31:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1730-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:34.321647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1731-V1.0","title":"RORSI_3512_2016_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T13:16:05.000 to 2016-07-21T16:13:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1731-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:35.323997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1732-V1.0","title":"RORSI_3513_2016_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T16:30:10.000 to 2016-07-21T19:30:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1732-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:36.327543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1733-V1.0","title":"RORSI_3514_2016_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T04:02:47.000 to 2016-07-21T06:31:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1733-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:37.333783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1734-V1.0","title":"RORSI_3515_2016_204_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-22T03:22:45.000 to 2016-07-22T06:31:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1734-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:38.332844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1735-V1.0","title":"RORSI_3516_2016_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T14:12:40.000 to 2016-07-23T16:21:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1735-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:39.376317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1736-V1.0","title":"RORSI_3517_2016_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T16:38:25.000 to 2016-07-23T18:42:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1736-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:40.396132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1737-V1.0","title":"RORSI_3518_2016_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T19:42:09.000 to 2016-07-23T20:32:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1737-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:41.337412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1738-V1.0","title":"RORSI_3519_2016_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T03:19:25.000 to 2016-07-23T10:32:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1738-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:42.353675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1739-V1.0","title":"RORSI_3520_2016_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T13:11:05.000 to 2016-07-24T16:25:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1739-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:43.354130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1740-V1.0","title":"RORSI_3521_2016_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T17:42:35.000 to 2016-07-24T23:32:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1740-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:44.348898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1741-V1.0","title":"RORSI_3522_2016_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T03:16:05.000 to 2016-07-24T09:32:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1741-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:45.346993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1742-V1.0","title":"RORSI_3523_2016_207_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-25T17:07:05.000 to 2016-07-25T22:46:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1742-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:46.355790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1743-V1.0","title":"RORSI_3524_2016_207_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-25T06:47:05.000 to 2016-07-25T08:45:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1743-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:47.355744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1744-V1.0","title":"RORSI_3525_2016_208_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-26T16:34:50.000 to 2016-07-26T22:45:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1744-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:48.361593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1745-V1.0","title":"RORSI_3526_2016_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T14:07:05.000 to 2016-07-27T15:38:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1745-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:49.359559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1746-V1.0","title":"RORSI_3527_2016_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T17:16:25.000 to 2016-07-27T20:22:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1746-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:50.388314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1747-V1.0","title":"RORSI_3528_2016_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T03:06:10.000 to 2016-07-27T05:24:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1747-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:51.436158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1748-V1.0","title":"RORSI_3529_2016_210_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-28T16:28:05.000 to 2016-07-28T21:42:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1748-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:52.452348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1749-V1.0","title":"RORSI_3530_2016_210_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-28T03:02:52.000 to 2016-07-28T05:20:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1749-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:53.360594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1750-V1.0","title":"RORSI_3531_2016_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T14:12:05.000 to 2016-07-29T15:14:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1750-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:54.368154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1751-V1.0","title":"RORSI_3532_2016_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T16:31:05.000 to 2016-07-29T20:18:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1751-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:55.373049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1752-V1.0","title":"RORSI_3533_2016_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T02:59:33.000 to 2016-07-29T05:17:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1752-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:56.380184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1753-V1.0","title":"RORSI_3534_2016_212_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-30T14:12:45.000 to 2016-07-30T15:10:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1753-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:57.372630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1754-V1.0","title":"RORSI_3535_2016_212_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-30T16:27:05.000 to 2016-07-30T16:49:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1754-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:58.381172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1755-V1.0","title":"RORSI_3536_2016_213_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T16:17:55.000 to 2016-07-31T20:36:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1755-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:59.379178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1756-V1.0","title":"RORSI_3537_2016_213_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T02:52:57.000 to 2016-07-31T08:10:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1756-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:00.383288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1757-V1.0","title":"RORSI_3538_2016_213_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T03:59:46.000 to 2016-07-31T08:10:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1757-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:01.398401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1758-V1.0","title":"RORSI_3539_2016_214_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-01T16:14:35.000 to 2016-08-01T17:55:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1758-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:02.449806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1759-V1.0","title":"RORSI_3540_2016_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T14:02:00.000 to 2016-08-02T14:54:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1759-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:03.463418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1760-V1.0","title":"RORSI_3541_2016_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T16:11:15.000 to 2016-08-02T16:44:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1760-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:04.388617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1761-V1.0","title":"RORSI_3542_2016_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T20:57:05.000 to 2016-08-03T01:02:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1761-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:05.391690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1762-V1.0","title":"RORSI_3543_2016_216_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-03T16:07:50.000 to 2016-08-03T20:39:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1762-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:06.393387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1763-V1.0","title":"RORSI_3544_2016_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-04T14:01:00.000 to 2016-08-04T15:26:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1763-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:07.398865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1764-V1.0","title":"RORSI_3545_2016_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-04T02:39:46.000 to 2016-08-04T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1764-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:08.400330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1765-V1.0","title":"RORSI_3546_2016_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-05T16:07:05.000 to 2016-08-05T20:41:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1765-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:09.401433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1766-V1.0","title":"RORSI_3547_2016_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-06T16:37:50.000 to 2016-08-06T20:26:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1766-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:10.409393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1767-V1.0","title":"RORSI_3548_2016_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-06T02:33:12.000 to 2016-08-06T06:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1767-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:11.409178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1768-V1.0","title":"RORSI_3549_2016_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-07T15:54:30.000 to 2016-08-07T23:43:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1768-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:12.412890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1769-V1.0","title":"RORSI_3550_2016_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-07T02:29:55.000 to 2016-08-07T05:18:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1769-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:13.469731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1770-V1.0","title":"RORSI_3551_2016_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-08T16:47:05.000 to 2016-08-08T20:19:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1770-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:14.472946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1771-V1.0","title":"RORSI_3552_2016_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-08T02:26:35.000 to 2016-08-08T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1771-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:15.412862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1772-V1.0","title":"RORSI_3553_2016_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-09T16:47:05.000 to 2016-08-09T20:01:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1772-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:16.416016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1773-V1.0","title":"RORSI_3554_2016_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-09T02:57:07.000 to 2016-08-09T05:00:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1773-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:17.421340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1774-V1.0","title":"RORSI_3555_2016_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-10T17:57:05.000 to 2016-08-10T20:27:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1774-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:18.423104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1775-V1.0","title":"RORSI_3556_2016_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-10T15:44:25.000 to 2016-08-10T16:03:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1775-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:19.425574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1776-V1.0","title":"RORSI_3557_2016_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-11T15:41:10.000 to 2016-08-11T21:34:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1776-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:20.424213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1777-V1.0","title":"RORSI_3558_2016_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-11T03:17:07.000 to 2016-08-11T05:00:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1777-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:21.429580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1778-V1.0","title":"RORSI_3559_2016_225_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-12T15:37:50.000 to 2016-08-12T16:13:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1778-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:22.431467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1779-V1.0","title":"RORSI_3560_2016_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-13T15:37:05.000 to 2016-08-13T16:11:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1779-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:23.427183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1780-V1.0","title":"RORSI_3561_2016_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-13T02:10:18.000 to 2016-08-13T06:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1780-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:24.467701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1782-V1.0","title":"RORSI_3562_2016_228_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-15T02:03:47.000 to 2016-08-15T06:00:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1782-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:25.518614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1783-V1.0","title":"RORSI_3563_2016_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-16T02:00:32.000 to 2016-08-16T06:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1783-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:26.529739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1784-V1.0","title":"RORSI_3564_2016_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T14:00:50.000 to 2016-08-17T16:25:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1784-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:27.439922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1785-V1.0","title":"RORSI_3565_2016_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T21:57:05.000 to 2016-08-18T00:23:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1785-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:28.448011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1786-V1.0","title":"RORSI_3566_2016_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T03:32:17.000 to 2016-08-17T06:00:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1786-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:29.451910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1787-V1.0","title":"RORSI_3567_2016_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-18T15:17:55.000 to 2016-08-18T21:17:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1787-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:30.455327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1788-V1.0","title":"RORSI_3568_2016_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-18T01:54:02.000 to 2016-08-18T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1788-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:31.451571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1789-V1.0","title":"RORSI_3569_2016_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-19T15:14:35.000 to 2016-08-19T23:06:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1789-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:32.453593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1790-V1.0","title":"RORSI_3570_2016_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-19T01:50:47.000 to 2016-08-19T05:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1790-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:33.452880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1791-V1.0","title":"RORSI_3571_2016_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-20T15:11:15.000 to 2016-08-20T18:54:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1791-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:34.460031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1792-V1.0","title":"RORSI_3572_2016_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-20T01:47:33.000 to 2016-08-20T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1792-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:35.478039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1793-V1.0","title":"RORSI_3573_2016_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-21T15:08:00.000 to 2016-08-21T21:20:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1793-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:36.525145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1794-V1.0","title":"RORSI_3574_2016_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-21T01:44:18.000 to 2016-08-21T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1794-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:37.539011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1795-V1.0","title":"RORSI_3575_2016_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-22T15:04:40.000 to 2016-08-22T21:14:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1795-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:38.464073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1796-V1.0","title":"RORSI_3576_2016_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-23T15:01:20.000 to 2016-08-23T21:16:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1796-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:39.465970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1797-V1.0","title":"RORSI_3577_2016_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-23T01:37:45.000 to 2016-08-23T11:49:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1797-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:40.475209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1798-V1.0","title":"RORSI_3578_2016_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-24T14:58:05.000 to 2016-08-24T21:19:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1798-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:41.471938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1799-V1.0","title":"RORSI_3580_2016_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T01:31:21.000 to 2016-08-25T10:44:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1799-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:42.471646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1800-V1.0","title":"RORSI_3581_2016_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T02:44:45.000 to 2016-08-25T11:44:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1800-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:43.473980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1801-V1.0","title":"RORSI_3582_2016_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T14:54:45.000 to 2016-08-25T21:21:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1801-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:44.475599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1802-V1.0","title":"RORSI_3579_2016_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-24T01:34:35.000 to 2016-08-24T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1802-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:45.479129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1803-V1.0","title":"RORSI_3583_2016_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-26T14:51:30.000 to 2016-08-26T23:11:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1803-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:46.489887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1804-V1.0","title":"RORSI_3584_2016_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-26T01:28:08.000 to 2016-08-26T07:55:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1804-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:47.537776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1805-V1.0","title":"RORSI_3585_2016_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-27T14:49:30.000 to 2016-08-27T22:03:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1805-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:48.552483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1806-V1.0","title":"RORSI_3586_2016_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-27T01:24:50.000 to 2016-08-27T09:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1806-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:49.487020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1807-V1.0","title":"RORSI_3587_2016_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T14:44:55.000 to 2016-08-28T21:29:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1807-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:50.488619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1808-V1.0","title":"RORSI_3588_2016_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T01:21:40.000 to 2016-08-28T10:35:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1808-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:51.492203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1809-V1.0","title":"RORSI_3589_2016_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T02:35:45.000 to 2016-08-28T11:36:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1809-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:52.492767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1810-V1.0","title":"RORSI_3590_2016_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T14:41:35.000 to 2016-08-29T21:31:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1810-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:53.492325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1811-V1.0","title":"RORSI_3591_2016_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T01:18:27.000 to 2016-08-29T04:11:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1811-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:54.496208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1812-V1.0","title":"RORSI_3592_2016_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T01:18:27.000 to 2016-08-29T07:51:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1812-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:55.498677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1813-V1.0","title":"RORSI_3593_2016_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-30T01:15:13.000 to 2016-08-30T08:02:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1813-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:56.501972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1814-V1.0","title":"RORSI_3594_2016_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-30T13:49:50.000 to 2016-08-30T15:48:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1814-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:57.504565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1815-V1.0","title":"RORSI_3595_2016_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-31T14:35:05.000 to 2016-08-31T21:37:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1815-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:58.549441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1816-V1.0","title":"RORSI_3596_2016_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-31T01:12:00.000 to 2016-08-31T05:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1816-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:59.593637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1817-V1.0","title":"RORSI_3597_2016_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-01T19:57:00.000 to 2016-09-01T23:01:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1817-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:00.512185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1818-V1.0","title":"RORSI_3598_2016_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-01T01:08:47.000 to 2016-09-01T11:26:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1818-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:01.509655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1819-V1.0","title":"RORSI_3599_2016_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-02T14:50:10.000 to 2016-09-02T22:05:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1819-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:02.515618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1820-V1.0","title":"RORSI_3600_2016_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-02T01:05:33.000 to 2016-09-02T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1820-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:03.636110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1821-V1.0","title":"RORSI_3601_2016_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-03T14:25:15.000 to 2016-09-03T16:25:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1821-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:04.525385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1822-V1.0","title":"RORSI_3602_2016_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-03T01:02:21.000 to 2016-09-03T03:19:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1822-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:05.521031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1823-V1.0","title":"RORSI_3603_2016_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-04T14:21:55.000 to 2016-09-04T23:37:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1823-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:06.523974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1824-V1.0","title":"RORSI_3604_2016_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-04T02:18:07.000 to 2016-09-04T11:18:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1824-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:07.519009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1825-V1.0","title":"RORSI_3605_2016_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-05T14:50:30.000 to 2016-09-05T16:20:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1825-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:08.527533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1826-V1.0","title":"RORSI_3606_2016_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-05T00:55:56.000 to 2016-09-05T07:42:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1826-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:09.558280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1827-V1.0","title":"RORSI_3607_2016_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T20:07:50.000 to 2016-09-06T23:32:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1827-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:10.606992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1828-V1.0","title":"RORSI_3608_2016_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T01:13:36.000 to 2016-09-06T09:29:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1828-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:11.618232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1829-V1.0","title":"RORSI_3609_2016_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T02:29:35.000 to 2016-09-06T09:29:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1829-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:12.533890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1830-V1.0","title":"RORSI_3610_2016_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-07T14:12:10.000 to 2016-09-07T19:26:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1830-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:13.539956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1831-V1.0","title":"RORSI_3611_2016_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T14:50:45.000 to 2016-09-08T16:15:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1831-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:14.543036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1832-V1.0","title":"RORSI_3612_2016_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T19:46:50.000 to 2016-09-08T22:00:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1832-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:15.542153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1833-V1.0","title":"RORSI_3613_2016_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T00:46:18.000 to 2016-09-08T10:02:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1833-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:16.548035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1834-V1.0","title":"RORSI_3614_2016_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-09T14:05:35.000 to 2016-09-09T22:14:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1834-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:17.546801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1835-V1.0","title":"RORSI_3615_2016_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-09T01:37:55.000 to 2016-09-09T04:14:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1835-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:18.553233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1836-V1.0","title":"RORSI_3616_2016_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-10T14:02:20.000 to 2016-09-10T22:07:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1836-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:19.553064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1837-V1.0","title":"RORSI_3617_2016_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-10T01:38:07.000 to 2016-09-10T05:00:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1837-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:20.568966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1838-V1.0","title":"RORSI_3618_2016_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-11T14:51:10.000 to 2016-09-11T22:10:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1838-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:21.614799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1839-V1.0","title":"RORSI_3619_2016_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-11T00:36:42.000 to 2016-09-11T09:53:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1839-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:22.630772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1840-V1.0","title":"RORSI_3620_2016_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-12T13:55:50.000 to 2016-09-12T22:14:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1840-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:23.562729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1841-V1.0","title":"RORSI_3621_2016_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-12T01:48:07.000 to 2016-09-12T05:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1841-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:24.560015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1842-V1.0","title":"RORSI_3622_2016_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T14:24:35.000 to 2016-09-13T15:27:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1842-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:25.564543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1843-V1.0","title":"RORSI_3623_2016_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T19:39:25.000 to 2016-09-13T22:17:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1843-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:26.570866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1844-V1.0","title":"RORSI_3624_2016_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T00:30:18.000 to 2016-09-13T10:54:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1844-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:27.568195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1845-V1.0","title":"RORSI_3625_2016_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-14T21:57:05.000 to 2016-09-14T23:11:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1845-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:28.570908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1846-V1.0","title":"RORSI_3626_2016_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-14T00:27:06.000 to 2016-09-14T04:59:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1846-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:29.575281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1847-V1.0","title":"RORSI_3627_2016_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T13:46:05.000 to 2016-09-15T15:54:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1847-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:30.574579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1848-V1.0","title":"RORSI_3628_2016_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T19:36:20.000 to 2016-09-15T22:24:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1848-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:31.576586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1849-V1.0","title":"RORSI_3629_2016_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T02:22:28.000 to 2016-09-15T10:26:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1849-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:32.628231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1850-V1.0","title":"RORSI_3630_2016_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T03:40:12.000 to 2016-09-15T10:26:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1850-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:33.639448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1851-V1.0","title":"RORSI_3631_2016_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-16T13:42:45.000 to 2016-09-16T16:53:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1851-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:34.582941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1852-V1.0","title":"RORSI_3632_2016_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-16T00:20:42.000 to 2016-09-16T07:27:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1852-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:35.586287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1853-V1.0","title":"RORSI_3633_2016_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T14:51:35.000 to 2016-09-17T15:50:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1853-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:36.584647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1854-V1.0","title":"RORSI_3634_2016_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T20:18:10.000 to 2016-09-17T22:31:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1854-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:37.590586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1855-V1.0","title":"RORSI_3635_2016_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T00:17:31.000 to 2016-09-17T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1855-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:38.590718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1856-V1.0","title":"RORSI_3636_2016_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T13:36:15.000 to 2016-09-18T15:50:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1856-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:39.593603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1857-V1.0","title":"RORSI_3637_2016_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T20:18:05.000 to 2016-09-18T23:01:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1857-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:40.595344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1858-V1.0","title":"RORSI_3638_2016_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T00:14:15.000 to 2016-09-18T09:32:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1858-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:41.603257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1859-V1.0","title":"RORSI_3639_2016_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T01:32:33.000 to 2016-09-18T10:41:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1859-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:42.601583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1860-V1.0","title":"RORSI_3640_2016_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-19T13:33:00.000 to 2016-09-19T22:39:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1860-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:43.635394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1861-V1.0","title":"RORSI_3641_2016_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-19T00:11:07.000 to 2016-09-19T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1861-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:44.685442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1862-V1.0","title":"RORSI_3642_2016_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-20T14:51:50.000 to 2016-09-20T15:45:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1862-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:45.698656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1863-V1.0","title":"RORSI_3643_2016_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-20T00:07:55.000 to 2016-09-20T07:22:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1863-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:46.609498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1864-V1.0","title":"RORSI_3644_2016_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-21T13:26:30.000 to 2016-09-21T22:52:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1864-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:47.612895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1865-V1.0","title":"RORSI_3645_2016_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T13:23:20.000 to 2016-09-22T15:39:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1865-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:48.613448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1866-V1.0","title":"RORSI_3646_2016_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T20:15:20.000 to 2016-09-22T22:51:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1866-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:49.616744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1867-V1.0","title":"RORSI_3647_2016_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T00:01:32.000 to 2016-09-22T05:00:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1867-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:50.622061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1868-V1.0","title":"RORSI_3648_2016_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-23T14:52:05.000 to 2016-09-23T15:34:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1868-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:51.624158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1869-V1.0","title":"RORSI_3649_2016_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T23:58:21.000 to 2016-09-23T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1869-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:52.624830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1870-V1.0","title":"RORSI_3650_2016_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T13:16:50.000 to 2016-09-24T15:33:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1870-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:53.626294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1871-V1.0","title":"RORSI_3651_2016_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T00:42:06.000 to 2016-09-24T05:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1871-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:54.646793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1872-V1.0","title":"RORSI_3652_2016_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-25T13:13:35.000 to 2016-09-25T15:29:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1872-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:55.695372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1873-V1.0","title":"RORSI_3653_2016_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T23:51:58.000 to 2016-09-25T05:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1873-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:56.711031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1874-V1.0","title":"RORSI_3654_2016_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T13:10:20.000 to 2016-09-26T16:35:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1874-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:57.634634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1875-V1.0","title":"RORSI_3655_2016_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T17:26:05.000 to 2016-09-26T17:31:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1875-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:58.634217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1876-V1.0","title":"RORSI_3656_2016_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T00:48:06.000 to 2016-09-26T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1876-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:59.634276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1877-V1.0","title":"RORSI_3657_2016_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T13:07:05.000 to 2016-09-27T15:05:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1877-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:00.641991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1878-V1.0","title":"RORSI_3658_2016_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T19:57:10.000 to 2016-09-27T21:00:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1878-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:01.642540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1879-V1.0","title":"RORSI_3659_2016_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T00:45:35.000 to 2016-09-27T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1879-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:02.649151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1880-V1.0","title":"RORSI_3660_2016_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-28T13:03:50.000 to 2016-09-28T15:24:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1880-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:03.658768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-EXT3-1881-V1.0","title":"RORSI_3661_2016_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-29T19:37:10.000 to 2016-09-29T22:17:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1881-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:04.648207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0181-V1.0","title":"RORSI_2001_2014_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T00:22:05.000 to 2014-08-06T02:42:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0181-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:05.666827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0182-V1.0","title":"RORSI_2002_2014_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T08:45:05.000 to 2014-08-06T12:29:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0182-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:06.706713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0183-V1.0","title":"RORSI_2003_2014_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T15:42:05.000 to 2014-08-06T19:43:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0183-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:07.718659","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0184-V1.0","title":"RORSI_2004_2014_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T20:42:05.000 to 2014-08-07T01:43:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0184-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:08.660152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0185-V1.0","title":"RORSI_2005_2014_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T09:04:15.000 to 2014-08-07T14:04:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0185-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:09.658601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0186-V1.0","title":"RORSI_2006_2014_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T14:19:05.000 to 2014-08-07T19:38:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0186-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:10.659653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0187-V1.0","title":"RORSI_2007_2014_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T19:55:45.000 to 2014-08-08T02:32:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0187-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:11.663053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0188-V1.0","title":"RORSI_2008_2014_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T08:59:30.000 to 2014-08-08T14:00:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0188-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:12.667469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0189-V1.0","title":"RORSI_2009_2014_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T14:14:35.000 to 2014-08-08T19:34:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0189-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:13.669159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0190-V1.0","title":"RORSI_2010_2014_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T19:51:00.000 to 2014-08-09T02:27:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0190-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:14.669050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0191-V1.0","title":"RORSI_2011_2014_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T08:54:50.000 to 2014-08-09T13:55:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0191-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:15.676618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0192-V1.0","title":"RORSI_2012_2014_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T15:42:00.000 to 2014-08-09T19:29:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0192-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:16.681344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0193-V1.0","title":"RORSI_2013_2014_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T20:42:00.000 to 2014-08-10T02:13:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0193-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:17.715985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0194-V1.0","title":"RORSI_2014_2014_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T10:01:00.000 to 2014-08-10T13:50:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0194-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:18.765377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0195-V1.0","title":"RORSI_2015_2014_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T14:05:05.000 to 2014-08-10T19:24:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0195-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:19.776962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0196-V1.0","title":"RORSI_2016_2014_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T19:41:35.000 to 2014-08-11T02:18:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0196-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:20.684927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0197-V1.0","title":"RORSI_2017_2014_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-11T07:48:25.000 to 2014-08-11T13:46:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0197-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:21.690693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0198-V1.0","title":"RORSI_2018_2014_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-11T14:00:35.000 to 2014-08-11T19:20:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0198-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:22.689280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0199-V1.0","title":"RORSI_2019_2014_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T07:43:45.000 to 2014-08-12T13:41:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0199-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:23.693411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0200-V1.0","title":"RORSI_2020_2014_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T13:56:05.000 to 2014-08-12T15:44:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0200-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:24.692687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0201-V1.0","title":"RORSI_2021_2014_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T16:41:55.000 to 2014-08-12T19:15:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0201-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:25.699543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0202-V1.0","title":"RORSI_2022_2014_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T20:17:31.000 to 2014-08-12T20:43:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0202-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:26.698411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0203-V1.0","title":"RORSI_2023_2014_225_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-13T10:00:55.000 to 2014-08-13T13:36:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0203-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:27.702617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0204-V1.0","title":"RORSI_2024_2014_225_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-13T13:51:05.000 to 2014-08-13T19:10:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0204-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:28.724995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0205-V1.0","title":"RORSI_2025_2014_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T07:34:30.000 to 2014-08-14T13:32:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0205-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:29.768752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0206-V1.0","title":"RORSI_2026_2014_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T13:46:35.000 to 2014-08-14T19:06:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0206-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:30.789363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0207-V1.0","title":"RORSI_2027_2014_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T19:23:05.000 to 2014-08-15T01:59:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0207-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:31.710877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0208-V1.0","title":"RORSI_2028_2014_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T08:22:55.000 to 2014-08-15T13:27:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0208-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:32.711590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0209-V1.0","title":"RORSI_2029_2014_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T13:42:05.000 to 2014-08-15T19:01:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0209-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:33.728166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0210-V1.0","title":"RORSI_2030_2014_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T19:18:30.000 to 2014-08-16T01:20:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0210-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:34.716174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0211-V1.0","title":"RORSI_2031_2014_228_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-16T08:17:20.000 to 2014-08-16T13:22:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0211-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:35.719902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0212-V1.0","title":"RORSI_2032_2014_228_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-16T13:37:05.000 to 2014-08-16T18:57:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0212-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:36.728596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0213-V1.0","title":"RORSI_2033_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T00:07:05.000 to 2014-08-17T06:45:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0213-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:37.726639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0214-V1.0","title":"RORSI_2034_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T07:20:45.000 to 2014-08-17T08:15:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0214-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:38.732515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0215-V1.0","title":"RORSI_2035_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T10:00:45.000 to 2014-08-17T11:44:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0215-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:39.734264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0216-V1.0","title":"RORSI_2036_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T13:33:05.000 to 2014-08-17T16:44:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0216-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:40.790158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0217-V1.0","title":"RORSI_2037_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T17:41:45.000 to 2014-08-17T18:52:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0217-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:41.796929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0218-V1.0","title":"RORSI_2038_2014_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T07:16:15.000 to 2014-08-18T13:13:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0218-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:42.734850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0219-V1.0","title":"RORSI_2039_2014_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T13:28:05.000 to 2014-08-18T18:47:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0219-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:43.734082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0220-V1.0","title":"RORSI_2040_2014_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T23:34:55.000 to 2014-08-19T01:41:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0220-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:44.840251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0221-V1.0","title":"RORSI_2041_2014_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T07:11:45.000 to 2014-08-19T13:09:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0221-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:45.755433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0222-V1.0","title":"RORSI_2042_2014_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T13:24:05.000 to 2014-08-19T18:43:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0222-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:46.745426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0223-V1.0","title":"RORSI_2043_2014_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T19:00:25.000 to 2014-08-20T01:37:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0223-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:47.746701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0224-V1.0","title":"RORSI_2044_2014_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T10:00:35.000 to 2014-08-20T13:04:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0224-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:48.751498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0225-V1.0","title":"RORSI_2045_2014_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T13:19:05.000 to 2014-08-20T18:39:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0225-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:49.752522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0226-V1.0","title":"RORSI_2046_2014_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T18:55:55.000 to 2014-08-21T01:32:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0226-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:50.754641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0227-V1.0","title":"RORSI_2072_2014_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T07:57:05.000 to 2014-08-21T13:00:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0227-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:51.793672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0228-V1.0","title":"RORSI_2047_2014_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T13:15:05.000 to 2014-08-21T18:34:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0228-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:52.841055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0229-V1.0","title":"RORSI_2048_2014_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T18:51:30.000 to 2014-08-22T01:19:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0229-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:53.758486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0230-V1.0","title":"RORSI_2049_2014_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T07:52:25.000 to 2014-08-22T12:55:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0230-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:54.760930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0231-V1.0","title":"RORSI_2050_2014_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T13:10:05.000 to 2014-08-22T18:30:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0231-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:55.762861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0232-V1.0","title":"RORSI_2051_2014_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T18:47:05.000 to 2014-08-23T00:05:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0232-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:56.767499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0233-V1.0","title":"RORSI_2052_2014_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T07:48:00.000 to 2014-08-23T12:51:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0233-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:57.768243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0234-V1.0","title":"RORSI_2053_2014_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T13:06:05.000 to 2014-08-23T18:14:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:58.768767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0235-V1.0","title":"RORSI_2054_2014_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T22:52:45.000 to 2014-08-24T02:06:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0235-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:59.770858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0236-V1.0","title":"RORSI_2055_2014_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T06:49:35.000 to 2014-08-24T08:15:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0236-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:00.776263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0237-V1.0","title":"RORSI_2056_2014_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T10:00:40.000 to 2014-08-24T12:05:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0237-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:01.779217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0238-V1.0","title":"RORSI_2057_2014_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T13:10:25.000 to 2014-08-24T18:21:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0238-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:02.803021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0239-V1.0","title":"RORSI_2059_2014_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T07:37:15.000 to 2014-08-25T12:42:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0239-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:03.853722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0240-V1.0","title":"RORSI_2058_2014_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T18:38:25.000 to 2014-08-25T02:00:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0240-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:04.865975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0241-V1.0","title":"RORSI_2060_2014_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T12:57:05.000 to 2014-08-25T18:17:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0241-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:05.788191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0242-V1.0","title":"RORSI_2061_2014_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T22:42:05.000 to 2014-08-26T00:42:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0242-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:06.788900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0243-V1.0","title":"RORSI_2062_2014_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T23:37:09.000 to 2014-08-26T02:02:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0243-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:07.792455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0244-V1.0","title":"RORSI_2063_2014_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T06:40:55.000 to 2014-08-26T12:38:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0244-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:08.794132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0245-V1.0","title":"RORSI_2064_2014_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T12:53:05.000 to 2014-08-26T18:12:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0245-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:09.795731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0246-V1.0","title":"RORSI_2065_2014_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T23:02:45.000 to 2014-08-27T01:06:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0246-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:10.799438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0247-V1.0","title":"RORSI_2066_2014_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T06:36:40.000 to 2014-08-27T12:05:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0247-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:11.802315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0248-V1.0","title":"RORSI_2067_2014_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T13:10:40.000 to 2014-08-27T19:01:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0248-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:12.802750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0249-V1.0","title":"RORSI_2068_2014_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T19:18:10.000 to 2014-08-27T23:29:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0249-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:13.813362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0250-V1.0","title":"RORSI_2069_2014_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T23:34:15.000 to 2014-08-28T01:02:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0250-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:14.862391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0251-V1.0","title":"RORSI_2070_2014_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T06:32:20.000 to 2014-08-28T12:29:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0251-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:15.875757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0252-V1.0","title":"RORSI_2071_2014_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T12:44:05.000 to 2014-08-28T18:04:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0252-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:16.812687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0253-V1.0","title":"RORSI_2073_2014_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T18:21:15.000 to 2014-08-29T00:44:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0253-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:17.814332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0254-V1.0","title":"RORSI_2074_2014_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-29T06:38:05.000 to 2014-08-29T18:00:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0254-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:18.814436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0255-V1.0","title":"RORSI_2075_2014_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-29T18:17:00.000 to 2014-08-30T00:54:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0255-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:19.816736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0256-V1.0","title":"RORSI_2076_2014_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T09:02:05.000 to 2014-08-30T11:57:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0256-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:20.822406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0257-V1.0","title":"RORSI_2077_2014_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T13:02:05.000 to 2014-08-30T15:17:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0257-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:21.821725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0258-V1.0","title":"RORSI_2078_2014_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T15:22:05.000 to 2014-08-30T17:55:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0258-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:22.820286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0259-V1.0","title":"RORSI_2079_2014_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T18:12:50.000 to 2014-08-31T00:39:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0259-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:23.827764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0260-V1.0","title":"RORSI_2080_2014_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T07:13:40.000 to 2014-08-31T08:16:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0260-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:24.831304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0261-V1.0","title":"RORSI_2081_2014_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T10:00:00.000 to 2014-08-31T12:20:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0261-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:25.870186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0262-V1.0","title":"RORSI_2082_2014_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T12:31:00.000 to 2014-08-31T17:51:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0262-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:26.920951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0263-V1.0","title":"RORSI_2083_2014_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T18:08:40.000 to 2014-09-01T00:08:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0263-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:27.834020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0264-V1.0","title":"RORSI_2084_2014_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-01T07:12:05.000 to 2014-09-01T17:47:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0264-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:28.838935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0265-V1.0","title":"RORSI_2085_2014_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-01T18:04:30.000 to 2014-09-02T00:29:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0265-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:29.837441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0266-V1.0","title":"RORSI_2086_2014_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-02T06:32:05.000 to 2014-09-02T18:08:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0266-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:30.854628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0267-V1.0","title":"RORSI_2087_2014_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-02T20:57:05.000 to 2014-09-03T01:37:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0267-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:31.847818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0268-V1.0","title":"RORSI_2088_2014_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-03T11:27:05.000 to 2014-09-03T17:39:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0268-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:32.846859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0269-V1.0","title":"RORSI_2089_2014_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-03T17:56:15.000 to 2014-09-04T00:30:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0269-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:33.849389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0270-V1.0","title":"RORSI_2090_2014_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-04T11:27:05.000 to 2014-09-04T17:35:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0270-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:34.851832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0271-V1.0","title":"RORSI_2091_2014_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-04T18:14:50.000 to 2014-09-05T00:29:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0271-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:35.854291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0272-V1.0","title":"RORSI_2092_2014_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-05T06:52:05.000 to 2014-09-05T17:31:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0272-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:36.885857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0273-V1.0","title":"RORSI_2093_2014_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-05T17:48:10.000 to 2014-09-06T00:15:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0273-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:37.929885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0274-V1.0","title":"RORSI_2094_2014_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-06T06:47:05.000 to 2014-09-06T17:27:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0274-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:38.945097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0275-V1.0","title":"RORSI_2095_2014_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-06T17:44:10.000 to 2014-09-07T00:10:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0275-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:39.859557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0276-V1.0","title":"RORSI_2096_2014_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T06:32:05.000 to 2014-09-07T08:16:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0276-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:40.867787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0277-V1.0","title":"RORSI_2097_2014_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T09:59:35.000 to 2014-09-07T17:23:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0277-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:41.874393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0278-V1.0","title":"RORSI_2098_2014_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T17:38:45.000 to 2014-09-07T23:27:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0278-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:42.868440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0279-V1.0","title":"RORSI_2099_2014_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-08T06:43:05.000 to 2014-09-08T17:19:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0279-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:43.874962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0280-V1.0","title":"RORSI_2100_2014_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-08T17:36:15.000 to 2014-09-09T00:00:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0280-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:44.871736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0281-V1.0","title":"RORSI_2101_2014_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T06:37:05.000 to 2014-09-09T17:15:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0281-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:45.872760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0282-V1.0","title":"RORSI_2102_2014_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T17:32:20.000 to 2014-09-09T19:02:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0282-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:46.874097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0283-V1.0","title":"RORSI_2103_2014_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T20:57:30.000 to 2014-09-10T00:42:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0283-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:47.892149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0284-V1.0","title":"RORSI_2104_2014_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T05:39:10.000 to 2014-09-10T08:16:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0284-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:48.943528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0285-V1.0","title":"RORSI_2105_2014_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T09:59:25.000 to 2014-09-10T17:11:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0285-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:49.955051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0286-V1.0","title":"RORSI_2106_2014_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T17:28:22.000 to 2014-09-11T00:05:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0286-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:50.883954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0287-V1.0","title":"RORSI_2107_2014_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-11T06:32:02.000 to 2014-09-11T17:07:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0287-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:51.887661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0288-V1.0","title":"RORSI_2108_2014_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-11T17:24:29.000 to 2014-09-12T01:05:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0288-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:52.892034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0289-V1.0","title":"RORSI_2109_2014_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-12T06:27:02.000 to 2014-09-12T17:03:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0289-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:53.892938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0290-V1.0","title":"RORSI_2110_2014_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-12T17:20:38.000 to 2014-09-13T01:10:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0290-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:54.896663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0291-V1.0","title":"RORSI_2111_2014_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-13T06:22:02.000 to 2014-09-13T17:49:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0291-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:55.897283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0292-V1.0","title":"RORSI_2112_2014_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-13T22:12:03.000 to 2014-09-14T01:25:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0292-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:56.903785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0293-V1.0","title":"RORSI_2113_2014_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-14T06:17:02.000 to 2014-09-14T15:12:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0293-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:57.901574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0294-V1.0","title":"RORSI_2114_2014_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-14T17:13:03.000 to 2014-09-14T23:35:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0294-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:58.911335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0295-V1.0","title":"RORSI_2115_2014_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-15T06:17:02.000 to 2014-09-15T15:10:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0295-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:59.952583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0296-V1.0","title":"RORSI_2116_2014_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-15T17:09:03.000 to 2014-09-16T03:36:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0296-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:01.000522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0297-V1.0","title":"RORSI_2117_2014_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-16T05:16:04.000 to 2014-09-16T15:09:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0297-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:01.911757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0298-V1.0","title":"RORSI_2118_2014_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-16T17:05:04.000 to 2014-09-16T23:25:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0298-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:02.911548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0299-V1.0","title":"RORSI_2119_2014_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-17T06:07:02.000 to 2014-09-17T15:08:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0299-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:03.915641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0300-V1.0","title":"RORSI_2120_2014_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-17T17:01:03.000 to 2014-09-18T03:42:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0300-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:04.918817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0301-V1.0","title":"RORSI_2121_2014_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-18T05:08:34.000 to 2014-09-18T15:07:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0301-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:05.919322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0302-V1.0","title":"RORSI_2122_2014_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-18T16:57:04.000 to 2014-09-18T23:20:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0302-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:06.927490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0303-V1.0","title":"RORSI_2123_2014_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-19T06:02:02.000 to 2014-09-19T14:37:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0303-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:07.924745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0304-V1.0","title":"RORSI_2124_2014_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-19T16:54:05.000 to 2014-09-19T23:15:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0304-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:08.925314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0305-V1.0","title":"RORSI_2125_2014_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-20T05:57:05.000 to 2014-09-20T12:45:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0305-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:09.928364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0306-V1.0","title":"RORSI_2126_2014_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-20T16:50:05.000 to 2014-09-21T00:27:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0306-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:10.959272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0307-V1.0","title":"RORSI_2127_2014_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T05:52:05.000 to 2014-09-21T08:17:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0307-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:12.006791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0308-V1.0","title":"RORSI_2128_2014_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T11:38:40.000 to 2014-09-21T14:30:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0308-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:13.023669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0309-V1.0","title":"RORSI_2129_2014_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T16:47:05.000 to 2014-09-22T02:47:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0309-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:13.939980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0310-V1.0","title":"RORSI_2130_2014_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-22T04:53:55.000 to 2014-09-22T16:26:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0310-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:14.940737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0311-V1.0","title":"RORSI_2131_2014_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-22T16:43:30.000 to 2014-09-23T01:06:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0311-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:15.943119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0312-V1.0","title":"RORSI_2132_2014_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-23T06:51:34.000 to 2014-09-23T16:22:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0312-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:16.948252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0313-V1.0","title":"RORSI_2133_2014_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-23T16:39:55.000 to 2014-09-24T00:03:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0313-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:17.942814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0314-V1.0","title":"RORSI_2134_2014_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-24T09:58:25.000 to 2014-09-24T17:07:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0314-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:18.948316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0315-V1.0","title":"RORSI_2135_2014_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-24T17:24:50.000 to 2014-09-25T01:15:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0315-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:19.951999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0316-V1.0","title":"RORSI_2136_2014_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-25T05:37:05.000 to 2014-09-25T15:12:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0316-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:20.952920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0317-V1.0","title":"RORSI_2137_2014_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-25T16:32:50.000 to 2014-09-26T00:25:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0317-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:21.970479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0318-V1.0","title":"RORSI_2138_2014_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-26T05:37:05.000 to 2014-09-26T16:12:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0318-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:23.022604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0319-V1.0","title":"RORSI_2139_2014_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-26T16:29:20.000 to 2014-09-27T01:10:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0319-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:24.033397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0320-V1.0","title":"RORSI_2140_2014_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-27T05:32:05.000 to 2014-09-27T16:08:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0320-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:24.961472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0321-V1.0","title":"RORSI_2141_2014_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-27T16:25:50.000 to 2014-09-28T00:05:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0321-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:26.128864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0322-V1.0","title":"RORSI_2142_2014_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-28T05:27:05.000 to 2014-09-28T16:05:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0322-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:26.967166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0323-V1.0","title":"RORSI_2143_2014_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-28T16:22:20.000 to 2014-09-28T23:10:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0323-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:27.967785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0324-V1.0","title":"RORSI_2144_2014_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-29T09:58:05.000 to 2014-09-29T16:01:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0324-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:28.970530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0325-V1.0","title":"RORSI_2145_2014_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-29T16:18:55.000 to 2014-09-29T22:55:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0325-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:29.972128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0326-V1.0","title":"RORSI_2146_2014_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-30T05:22:05.000 to 2014-09-30T15:58:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0326-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:30.974685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0327-V1.0","title":"RORSI_2147_2014_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-30T16:15:30.000 to 2014-10-01T01:15:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0327-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:31.987145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0328-V1.0","title":"RORSI_2148_2014_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-01T12:53:55.000 to 2014-10-01T15:55:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0328-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:32.982407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0329-V1.0","title":"RORSI_2149_2014_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-01T16:12:05.000 to 2014-10-02T00:10:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0329-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:34.031589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0330-V1.0","title":"RORSI_2150_2014_275_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-02T05:17:05.000 to 2014-10-02T15:51:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0330-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:35.043437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0331-V1.0","title":"RORSI_2151_2014_275_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-02T16:08:45.000 to 2014-10-02T22:55:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0331-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:35.985577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0332-V1.0","title":"RORSI_2152_2014_276_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-03T05:12:05.000 to 2014-10-03T15:48:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0332-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:36.990922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0333-V1.0","title":"RORSI_2153_2014_276_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-03T16:05:25.000 to 2014-10-04T03:37:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0333-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:37.988192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0334-V1.0","title":"RORSI_2154_2014_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-04T04:04:05.000 to 2014-10-04T15:45:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0334-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:38.993417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0335-V1.0","title":"RORSI_2155_2014_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-04T16:02:05.000 to 2014-10-04T22:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0335-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:40.000589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0336-V1.0","title":"RORSI_2156_2014_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T05:07:05.000 to 2014-10-05T08:18:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0336-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:40.998002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0337-V1.0","title":"RORSI_2157_2014_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T08:41:35.000 to 2014-10-05T11:41:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0337-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:42.001669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0338-V1.0","title":"RORSI_2158_2014_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T11:42:35.000 to 2014-10-05T16:26:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0338-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:43.002008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0339-V1.0","title":"RORSI_2159_2014_279_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-06T05:02:05.000 to 2014-10-06T15:38:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0339-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:44.002629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0340-V1.0","title":"RORSI_2160_2014_279_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-06T15:55:30.000 to 2014-10-06T22:32:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0340-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:45.039403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0341-V1.0","title":"RORSI_2161_2014_280_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-07T05:02:05.000 to 2014-10-07T16:20:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0341-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:46.085635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0342-V1.0","title":"RORSI_2162_2014_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T03:50:50.000 to 2014-10-08T08:50:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0342-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:47.005061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0343-V1.0","title":"RORSI_2163_2014_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T09:50:50.000 to 2014-10-08T15:32:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0343-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:48.012083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0344-V1.0","title":"RORSI_2164_2014_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T15:48:55.000 to 2014-10-09T01:35:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0344-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:49.006222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0345-V1.0","title":"RORSI_2165_2014_282_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-09T04:52:05.000 to 2014-10-09T15:28:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0345-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:50.018849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0346-V1.0","title":"RORSI_2166_2014_282_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-09T15:45:45.000 to 2014-10-09T22:22:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0346-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:51.014083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0347-V1.0","title":"RORSI_2167_2014_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-10T04:52:05.000 to 2014-10-10T15:25:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0347-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:52.019950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0348-V1.0","title":"RORSI_2168_2014_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-10T15:42:30.000 to 2014-10-10T23:10:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0348-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:53.022407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0349-V1.0","title":"RORSI_2169_2014_284_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-11T03:41:10.000 to 2014-10-11T15:22:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0349-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:54.027312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0350-V1.0","title":"RORSI_2170_2014_284_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-11T15:39:20.000 to 2014-10-11T22:16:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0350-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:55.033273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0351-V1.0","title":"RORSI_2171_2014_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T03:13:11.000 to 2014-10-12T08:18:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0351-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:56.048189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0352-V1.0","title":"RORSI_2172_2014_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T08:41:05.000 to 2014-10-12T11:38:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0352-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:57.097162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0353-V1.0","title":"RORSI_2173_2014_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T12:29:59.000 to 2014-10-12T15:19:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0353-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:58.111171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0354-V1.0","title":"RORSI_2174_2014_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T15:36:10.000 to 2014-10-12T21:50:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0354-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:59.037984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0355-V1.0","title":"RORSI_2175_2014_286_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-13T03:34:50.000 to 2014-10-13T15:16:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0355-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:00.036581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0356-V1.0","title":"RORSI_2176_2014_286_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-13T15:33:05.000 to 2014-10-13T22:09:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0356-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:01.039618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0357-V1.0","title":"RORSI_2177_2014_287_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-14T04:37:05.000 to 2014-10-14T15:12:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0357-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:02.048614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0358-V1.0","title":"RORSI_2178_2014_287_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-14T15:29:55.000 to 2014-10-14T22:06:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0358-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:03.043494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0359-V1.0","title":"RORSI_2179_2014_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T04:37:05.000 to 2014-10-15T08:19:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0359-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:04.051025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0360-V1.0","title":"RORSI_2180_2014_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T08:40:55.000 to 2014-10-15T09:58:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0360-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:05.050433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0361-V1.0","title":"RORSI_2181_2014_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T10:50:11.000 to 2014-10-15T15:09:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0361-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:06.054764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0362-V1.0","title":"RORSI_2182_2014_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T15:26:50.000 to 2014-10-15T22:52:33.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0362-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:07.059925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0364-V1.0","title":"RORSI_2183_2014_289_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-16T15:23:45.000 to 2014-10-17T01:16:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0364-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:08.111285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0365-V1.0","title":"RORSI_2184_2014_290_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-17T03:27:05.000 to 2014-10-17T15:03:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0365-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:09.121795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0366-V1.0","title":"RORSI_2185_2014_290_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-17T15:20:40.000 to 2014-10-17T22:55:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0366-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:10.063589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0367-V1.0","title":"RORSI_2186_2014_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-18T04:27:05.000 to 2014-10-18T15:00:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0367-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:11.065947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0368-V1.0","title":"RORSI_2187_2014_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-18T15:17:40.000 to 2014-10-18T21:30:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0368-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:12.059362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0369-V1.0","title":"RORSI_2188_2014_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T04:22:05.000 to 2014-10-19T08:19:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0369-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:13.069089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0370-V1.0","title":"RORSI_2189_2014_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T11:36:40.000 to 2014-10-19T14:57:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0370-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:14.070126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0371-V1.0","title":"RORSI_2190_2014_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T15:15:40.000 to 2014-10-19T22:01:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0371-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:15.072569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0372-V1.0","title":"RORSI_2191_2014_293_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-20T12:27:10.000 to 2014-10-20T14:55:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0372-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:16.075841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0373-V1.0","title":"RORSI_2192_2014_293_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-20T15:12:40.000 to 2014-10-20T21:48:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0373-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:17.082264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0374-V1.0","title":"RORSI_2193_2014_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-21T04:17:05.000 to 2014-10-21T14:51:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0374-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:18.081110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0375-V1.0","title":"RORSI_2194_2014_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-21T15:08:40.000 to 2014-10-21T22:16:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0375-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:19.114745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0376-V1.0","title":"RORSI_2195_2014_295_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T04:17:05.000 to 2014-10-22T08:19:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0376-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:20.165525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0377-V1.0","title":"RORSI_2196_2014_295_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T11:36:25.000 to 2014-10-22T15:31:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0377-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:21.086389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0378-V1.0","title":"RORSI_2197_2014_295_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T15:48:15.000 to 2014-10-22T22:57:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0378-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:22.089910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0379-V1.0","title":"RORSI_2198_2014_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T02:54:10.000 to 2014-10-23T14:45:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0379-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:23.094416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0380-V1.0","title":"RORSI_2199_2014_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T03:48:31.000 to 2014-10-23T14:45:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0380-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:24.093074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0381-V1.0","title":"RORSI_2200_2014_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T15:02:45.000 to 2014-10-23T21:39:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0381-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:25.096411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0383-V1.0","title":"RORSI_2201_2014_297_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-24T14:59:50.000 to 2014-10-24T23:40:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0383-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:26.097042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0384-V1.0","title":"RORSI_2202_2014_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T04:07:05.000 to 2014-10-25T07:49:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0384-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:27.101064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0385-V1.0","title":"RORSI_2203_2014_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T12:21:15.000 to 2014-10-25T14:39:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0385-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:28.106394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0386-V1.0","title":"RORSI_2204_2014_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T14:56:55.000 to 2014-10-25T21:33:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0386-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:29.106180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0387-V1.0","title":"RORSI_2205_2014_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-26T04:02:05.000 to 2014-10-26T14:37:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0387-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:30.128395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0388-V1.0","title":"RORSI_2206_2014_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-26T14:54:00.000 to 2014-10-26T21:30:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0388-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:31.182258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0389-V1.0","title":"RORSI_2207_2014_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T04:02:05.000 to 2014-10-27T14:34:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0389-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:32.191397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0390-V1.0","title":"RORSI_2208_2014_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T04:56:57.000 to 2014-10-27T14:34:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0390-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:33.110959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0391-V1.0","title":"RORSI_2209_2014_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T14:51:10.000 to 2014-10-27T22:16:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0391-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:34.115461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0392-V1.0","title":"RORSI_2210_2014_301_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-28T03:57:05.000 to 2014-10-28T12:19:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0392-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:35.117939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0393-V1.0","title":"RORSI_2211_2014_301_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-28T14:48:20.000 to 2014-10-28T21:24:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0393-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:36.120868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0394-V1.0","title":"RORSI_2212_2014_302_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-29T14:45:30.000 to 2014-10-29T22:29:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0394-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:37.125315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0395-V1.0","title":"RORSI_2213_2014_303_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-30T09:53:05.000 to 2014-10-30T14:25:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0395-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:38.126004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0396-V1.0","title":"RORSI_2214_2014_303_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-30T14:42:40.000 to 2014-10-30T21:19:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0396-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:39.126272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0397-V1.0","title":"RORSI_2215_2014_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-31T10:02:05.000 to 2014-10-31T14:22:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0397-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:40.125881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0398-V1.0","title":"RORSI_2216_2014_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-31T14:39:50.000 to 2014-11-01T02:11:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0398-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:41.136526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0400-V1.0","title":"RORSI_2217_2014_305_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-01T14:37:05.000 to 2014-11-01T21:13:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0400-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:42.186645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0402-V1.0","title":"RORSI_2218_2014_306_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-02T16:26:10.000 to 2014-11-02T21:10:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0402-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:43.200199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0403-V1.0","title":"RORSI_2219_2014_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T03:42:05.000 to 2014-11-03T08:20:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0403-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:44.134802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0404-V1.0","title":"RORSI_2220_2014_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T08:39:45.000 to 2014-11-03T11:40:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0404-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:45.140810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0405-V1.0","title":"RORSI_2221_2014_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T12:31:23.000 to 2014-11-03T15:53:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0405-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:46.134868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0406-V1.0","title":"RORSI_2222_2014_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T15:11:05.000 to 2014-11-03T21:29:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0406-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:47.141864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0408-V1.0","title":"RORSI_2223_2014_308_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-04T20:57:05.000 to 2014-11-04T23:24:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0408-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:48.147105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0409-V1.0","title":"RORSI_2224_2014_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-05T03:38:05.000 to 2014-11-05T10:25:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0409-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:49.149005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0410-V1.0","title":"RORSI_2225_2014_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-05T15:26:10.000 to 2014-11-05T19:39:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0410-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:50.153429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0412-V1.0","title":"RORSI_2226_2014_310_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-06T14:23:25.000 to 2014-11-06T23:09:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0412-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:51.151218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0414-V1.0","title":"RORSI_2227_2014_311_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-07T15:00:45.000 to 2014-11-07T21:00:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0414-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:52.156794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0416-V1.0","title":"RORSI_2228_2014_312_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-08T14:57:05.000 to 2014-11-08T20:53:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0416-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:53.211927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0418-V1.0","title":"RORSI_2229_2014_313_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-09T15:52:16.000 to 2014-11-09T21:50:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0418-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:54.243666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0420-V1.0","title":"RORSI_2230_2014_314_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-10T14:51:05.000 to 2014-11-11T03:06:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0420-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:55.161134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0422-V1.0","title":"RORSI_2231_2014_315_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-11T14:48:05.000 to 2014-11-12T03:03:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0422-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:56.157149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0423-V1.0","title":"RORSI_2232_2014_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T03:05:00.000 to 2014-11-12T07:04:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0423-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:57.165045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0424-V1.0","title":"RORSI_2233_2014_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T07:00:45.000 to 2014-11-12T11:04:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0424-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:58.167670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0426-V1.0","title":"RORSI_2234_2014_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T14:07:05.000 to 2014-11-13T02:42:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0426-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:59.168855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0427-V1.0","title":"RORSI_2235_2014_317_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-13T01:55:40.000 to 2014-11-13T10:41:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0427-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:00.176494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0428-V1.0","title":"RORSI_2236_2014_317_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-13T11:32:54.000 to 2014-11-13T14:24:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0428-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:01.199817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0430-V1.0","title":"RORSI_2237_2014_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T03:07:05.000 to 2014-11-14T06:11:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0430-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:02.177161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0431-V1.0","title":"RORSI_2238_2014_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T04:05:30.000 to 2014-11-14T14:20:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0431-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:03.177830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0432-V1.0","title":"RORSI_2239_2014_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T14:38:25.000 to 2014-11-15T02:38:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0432-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:04.206103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0434-V1.0","title":"RORSI_2240_2014_319_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-15T14:35:50.000 to 2014-11-16T01:35:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0434-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:05.256483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0435-V1.0","title":"RORSI_2241_2014_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T01:47:50.000 to 2014-11-16T05:20:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0435-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:06.267511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0436-V1.0","title":"RORSI_2242_2014_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T08:35:05.000 to 2014-11-16T14:14:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0436-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:07.368874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0437-V1.0","title":"RORSI_2243_2014_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T14:32:20.000 to 2014-11-17T02:48:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0437-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:08.194295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0439-V1.0","title":"RORSI_2244_2014_321_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-17T13:54:50.000 to 2014-11-17T20:30:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0439-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:09.207896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0440-V1.0","title":"RORSI_2245_2014_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T01:42:45.000 to 2014-11-18T09:42:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0440-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:10.201869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0441-V1.0","title":"RORSI_2246_2014_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T02:41:29.000 to 2014-11-18T13:35:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0441-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:11.199061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0442-V1.0","title":"RORSI_2247_2014_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T13:52:15.000 to 2014-11-18T20:28:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0442-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:12.202278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0443-V1.0","title":"RORSI_2248_2014_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T03:55:50.000 to 2014-11-19T07:00:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0443-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:13.201113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0444-V1.0","title":"RORSI_2249_2014_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T06:14:49.000 to 2014-11-19T14:07:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0444-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:14.204212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-RSI-1/2/3-PRL-0445-V1.0","title":"RORSI_2250_2014_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T14:24:25.000 to 2014-11-19T20:35:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0445-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:15.222683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC1-MTP010-V1.0","title":"ROSETTA VIRTIS ESC1-MTP010 DATA","description":"ROSETTA VIRTIS data for ESC1-MTP010 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:16.267464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC1-MTP010-V2.0","title":"ROSETTA VIRTIS ESC1-MTP010 DATA","description":"ROSETTA VIRTIS RAW data for ESC1-MTP010 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp010-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:17.281218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC1-MTP011-V1.0","title":"ROSETTA VIRTIS ESC1-MTP011 DATA","description":"ROSETTA VIRTIS data for ESC1-MTP011 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:18.219779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC1-MTP011-V2.0","title":"ROSETTA VIRTIS ESC1-MTP011 DATA","description":"ROSETTA VIRTIS RAW data for ESC1-MTP011 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp011-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:19.225790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC1-MTP012-V1.0","title":"ROSETTA VIRTIS ESC1-MTP012 DATA","description":"ROSETTA VIRTIS data for ESC1-MTP012 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:20.227512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC1-MTP012-V2.0","title":"ROSETTA VIRTIS ESC1-MTP012 DATA","description":"ROSETTA VIRTIS RAW data for ESC1-MTP012 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp012-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:21.225359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC1-MTP013-V1.0","title":"ROSETTA VIRTIS ESC1-MTP013 DATA","description":"ROSETTA VIRTIS data for ESC1-MTP013 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:22.239665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC1-MTP013-V2.0","title":"ROSETTA VIRTIS ESC1-MTP013 DATA","description":"ROSETTA VIRTIS RAW data for ESC1-MTP013 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp013-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:23.240865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC2-MTP014-V1.0","title":"ROSETTA VIRTIS ESC2-MTP014 DATA","description":"ROSETTA VIRTIS data for ESC2-MTP014 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:24.240698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC2-MTP014-V2.0","title":"ROSETTA VIRTIS ESC2-MTP014 DATA","description":"ROSETTA VIRTIS RAW data for ESC2-MTP014 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp014-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:25.246313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC2-MTP015-V1.0","title":"ROSETTA VIRTIS ESC2-MTP015 DATA","description":"ROSETTA VIRTIS data for ESC2-MTP015 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:26.249685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC2-MTP015-V2.0","title":"ROSETTA VIRTIS ESC2-MTP015 DATA","description":"ROSETTA VIRTIS RAW data for ESC2-MTP015 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp015-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:27.273694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC2-MTP016-V1.0","title":"ROSETTA VIRTIS ESC2-MTP016 DATA","description":"ROSETTA VIRTIS data for ESC2-MTP016 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:28.325643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC2-MTP016-V2.0","title":"ROSETTA VIRTIS ESC2-MTP016 DATA","description":"ROSETTA VIRTIS RAW data for ESC2-MTP016 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp016-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:29.338150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC2-MTP017-V1.0","title":"ROSETTA VIRTIS ESC2-MTP017 DATA","description":"ROSETTA VIRTIS data for ESC2-MTP017 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:30.260061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC2-MTP017-V2.0","title":"ROSETTA VIRTIS ESC2-MTP017 DATA","description":"ROSETTA VIRTIS RAW data for ESC2-MTP017 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp017-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:31.265895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC3-MTP018-V1.0","title":"ROSETTA VIRTIS ESC3-MTP018 DATA","description":"ROSETTA VIRTIS data for ESC3-MTP018 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:32.269981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC3-MTP018-V2.0","title":"ROSETTA VIRTIS ESC3-MTP018 DATA","description":"ROSETTA VIRTIS RAW data for ESC3-MTP018 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp018-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:33.269628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC3-MTP019-V1.0","title":"ROSETTA VIRTIS ESC3-MTP019 DATA","description":"ROSETTA VIRTIS data for ESC3-MTP019 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:34.281698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC3-MTP019-V2.0","title":"ROSETTA VIRTIS ESC3-MTP019 DATA","description":"ROSETTA VIRTIS RAW data for ESC3-MTP019 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp019-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:35.279471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC3-MTP020-V1.0","title":"ROSETTA VIRTIS ESC3-MTP020 DATA","description":"ROSETTA VIRTIS data for ESC3-MTP020 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:36.281604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC3-MTP020-V2.0","title":"ROSETTA VIRTIS ESC3-MTP020 DATA","description":"ROSETTA VIRTIS RAW data for ESC3-MTP020 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp020-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:37.292384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC3-MTP021-V1.0","title":"ROSETTA VIRTIS ESC3-MTP021 DATA","description":"ROSETTA VIRTIS data for ESC3-MTP021 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:38.292447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC3-MTP021-V2.0","title":"ROSETTA VIRTIS ESC3-MTP021 DATA","description":"ROSETTA VIRTIS RAW data for ESC3-MTP021 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp021-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:39.338015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC4-MTP022-V1.0","title":"ROSETTA VIRTIS ESC4-MTP022 DATA","description":"ROSETTA VIRTIS data for ESC4-MTP022 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:40.377534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC4-MTP022-V2.0","title":"ROSETTA VIRTIS ESC4-MTP022 DATA","description":"ROSETTA VIRTIS RAW data for ESC4-MTP022 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp022-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:41.394576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC4-MTP023-V1.0","title":"ROSETTA VIRTIS ESC4-MTP023 DATA","description":"ROSETTA VIRTIS data for ESC4-MTP023 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:42.310280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC4-MTP023-V2.0","title":"ROSETTA VIRTIS ESC4-MTP023 DATA","description":"ROSETTA VIRTIS RAW data for ESC4-MTP023 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp023-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:43.313398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC4-MTP024-V1.0","title":"ROSETTA VIRTIS ESC4-MTP024 DATA","description":"ROSETTA VIRTIS data for ESC4-MTP024 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:44.319375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-ESC4-MTP024-V2.0","title":"ROSETTA VIRTIS ESC4-MTP024 DATA","description":"ROSETTA VIRTIS RAW data for ESC4-MTP024 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp024-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:45.333472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT1-MTP025-V1.0","title":"ROSETTA VIRTIS EXT1-MTP025 DATA","description":"ROSETTA VIRTIS data for EXT1-MTP025 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:46.323723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT1-MTP025-V2.0","title":"ROSETTA VIRTIS EXT1-MTP025 DATA","description":"ROSETTA VIRTIS RAW data for EXT1-MTP025 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp025-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:47.330340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT1-MTP026-V1.0","title":"ROSETTA VIRTIS EXT1-MTP026 DATA","description":"ROSETTA VIRTIS data for EXT1-MTP026 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:48.329374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT1-MTP026-V2.0","title":"ROSETTA VIRTIS EXT1-MTP026 DATA","description":"ROSETTA VIRTIS RAW data for EXT1-MTP026 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp026-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:49.332522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT1-MTP027-V1.0","title":"ROSETTA VIRTIS EXT1-MTP027 DATA","description":"ROSETTA VIRTIS data for EXT1-MTP027 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:50.341643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT1-MTP027-V2.0","title":"ROSETTA VIRTIS EXT1-MTP027 DATA","description":"ROSETTA VIRTIS RAW data for EXT1-MTP027 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp027-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:51.391916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT2-MTP028-V1.0","title":"ROSETTA VIRTIS EXT2-MTP028 DATA","description":"ROSETTA VIRTIS data for EXT2-MTP028 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:52.405295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT2-MTP028-V2.0","title":"ROSETTA VIRTIS EXT2-MTP028 DATA","description":"ROSETTA VIRTIS RAW data for EXT2-MTP028 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp028-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:53.347729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT2-MTP029-V1.0","title":"ROSETTA VIRTIS EXT2-MTP029 DATA","description":"ROSETTA VIRTIS data for EXT2-MTP029 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:54.354309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT2-MTP029-V2.0","title":"ROSETTA VIRTIS EXT2-MTP029 DATA","description":"ROSETTA VIRTIS RAW data for EXT2-MTP029 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp029-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:55.358740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT2-MTP030-V1.0","title":"ROSETTA VIRTIS EXT2-MTP030 DATA","description":"ROSETTA VIRTIS data for EXT2-MTP030 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:56.364374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT2-MTP030-V2.0","title":"ROSETTA VIRTIS EXT2-MTP030 DATA","description":"ROSETTA VIRTIS RAW data for EXT2-MTP030 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp030-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:57.376697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP031-V1.0","title":"ROSETTA VIRTIS EXT3-MTP031 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP031 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:58.372426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP031-V2.0","title":"ROSETTA VIRTIS EXT3-MTP031 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP031 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp031-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:59.375838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP032-V1.0","title":"ROSETTA VIRTIS EXT3-MTP032 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP032 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:00.377504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP032-V2.0","title":"ROSETTA VIRTIS EXT3-MTP032 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP032 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp032-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:01.373802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP033-V1.0","title":"ROSETTA VIRTIS EXT3-MTP033 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP033 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:02.403586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP033-V2.0","title":"ROSETTA VIRTIS EXT3-MTP033 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP033 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp033-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:03.454148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP034-V1.0","title":"ROSETTA VIRTIS EXT3-MTP034 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP034 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:04.464660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP034-V2.0","title":"ROSETTA VIRTIS EXT3-MTP034 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP034 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp034-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:05.393444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP035-V1.0","title":"ROSETTA VIRTIS EXT3-MTP035 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP035 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:06.403420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-EXT3-MTP035-V2.0","title":"ROSETTA VIRTIS EXT3-MTP035 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP035 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp035-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:07.409775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-COM-V2.0","title":"ROSETTA VIRTIS PRL-COM DATA","description":"ROSETTA VIRTIS RAW data for PRL-COM phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-com-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:08.410069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP004-V1.0","title":"ROSETTA VIRTIS PRL-MTP004 DATA","description":"ROSETTA VIRTIS data for PRL-MTP004 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:09.417227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP004-V2.0","title":"ROSETTA VIRTIS PRL-MTP004 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP004 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp004-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:10.418188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP005-V1.0","title":"ROSETTA VIRTIS PRL-MTP005 DATA","description":"ROSETTA VIRTIS data for PRL-MTP005 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:11.416314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP005-V2.0","title":"ROSETTA VIRTIS PRL-MTP005 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP005 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp005-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:12.428978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP006-V1.0","title":"ROSETTA VIRTIS PRL-MTP006 DATA","description":"ROSETTA VIRTIS data for PRL-MTP006 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:13.426418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP006-V2.0","title":"ROSETTA VIRTIS PRL-MTP006 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP006 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp006-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:14.455513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP007-V1.0","title":"ROSETTA VIRTIS PRL-MTP007 DATA","description":"ROSETTA VIRTIS data for PRL-MTP007 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:15.515749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP007-V2.0","title":"ROSETTA VIRTIS PRL-MTP007 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP007 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp007-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:16.523926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP008-V1.0","title":"ROSETTA VIRTIS PRL-MTP008 DATA","description":"ROSETTA VIRTIS data for PRL-MTP008 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:17.439165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP008-V2.0","title":"ROSETTA VIRTIS PRL-MTP008 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP008 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp008-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:18.442575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP009-V1.0","title":"ROSETTA VIRTIS PRL-MTP009 DATA","description":"ROSETTA VIRTIS data for PRL-MTP009 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:19.448753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-2-PRL-MTP009-V2.0","title":"ROSETTA VIRTIS PRL-MTP009 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP009 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp009-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:20.451419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC1-MTP010-V1.0","title":"ROSETTA VIRTIS ESC1-MTP010 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP010 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:21.458200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC1-MTP010-V2.0","title":"ROSETTA VIRTIS ESC1-MTP010 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP010 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp010-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:22.459512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC1-MTP011-V1.0","title":"ROSETTA VIRTIS ESC1-MTP011 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP011 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:23.466550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC1-MTP011-V2.0","title":"ROSETTA VIRTIS ESC1-MTP011 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP011 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp011-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:24.465376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC1-MTP012-V1.0","title":"ROSETTA VIRTIS ESC1-MTP012 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP012 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:25.474633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC1-MTP012-V2.0","title":"ROSETTA VIRTIS ESC1-MTP012 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP012 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp012-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:26.526879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC1-MTP013-V1.0","title":"ROSETTA VIRTIS ESC1-MTP013 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP013 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:27.533705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC1-MTP013-V2.0","title":"ROSETTA VIRTIS ESC1-MTP013 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP013 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp013-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:28.477664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC2-MTP014-V1.0","title":"ROSETTA VIRTIS ESC2-MTP014 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP014 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:29.483111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC2-MTP014-V2.0","title":"ROSETTA VIRTIS ESC2-MTP014 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP014 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp014-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:30.483401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC2-MTP015-V1.0","title":"ROSETTA VIRTIS ESC2-MTP015 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP015 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:31.486945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC2-MTP015-V2.0","title":"ROSETTA VIRTIS ESC2-MTP015 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP015 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp015-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:32.492830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC2-MTP016-V1.0","title":"ROSETTA VIRTIS ESC2-MTP016 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP016 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:33.496895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC2-MTP016-V2.0","title":"ROSETTA VIRTIS ESC2-MTP016 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP016 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp016-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:34.497866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC2-MTP017-V1.0","title":"ROSETTA VIRTIS ESC2-MTP017 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP017 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:35.502192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC2-MTP017-V2.0","title":"ROSETTA VIRTIS ESC2-MTP017 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP017 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp017-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:36.509716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC3-MTP018-V1.0","title":"ROSETTA VIRTIS ESC3-MTP018 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP018 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:37.541490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC3-MTP018-V2.0","title":"ROSETTA VIRTIS ESC3-MTP018 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP018 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp018-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:38.579058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC3-MTP019-V1.0","title":"ROSETTA VIRTIS ESC3-MTP019 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP019 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:39.593009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC3-MTP019-V2.0","title":"ROSETTA VIRTIS ESC3-MTP019 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP019 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp019-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:40.519969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC3-MTP020-V1.0","title":"ROSETTA VIRTIS ESC3-MTP020 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP020 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:41.525480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC3-MTP020-V2.0","title":"ROSETTA VIRTIS ESC3-MTP020 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP020 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp020-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:42.527644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC3-MTP021-V1.0","title":"ROSETTA VIRTIS ESC3-MTP021 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP021 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:43.537541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC3-MTP021-V2.0","title":"ROSETTA VIRTIS ESC3-MTP021 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP021 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp021-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:44.538161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC4-MTP022-V1.0","title":"ROSETTA VIRTIS ESC4-MTP022 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP022 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:45.553007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC4-MTP022-V2.0","title":"ROSETTA VIRTIS ESC4-MTP022 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP022 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp022-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:46.547956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC4-MTP023-V1.0","title":"ROSETTA VIRTIS ESC4-MTP023 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP023 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:47.555307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC4-MTP023-V2.0","title":"ROSETTA VIRTIS ESC4-MTP023 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP023 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp023-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:48.652716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC4-MTP024-V1.0","title":"ROSETTA VIRTIS ESC4-MTP024 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP024 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:49.594149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-ESC4-MTP024-V2.0","title":"ROSETTA VIRTIS ESC4-MTP024 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP024 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp024-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:50.640174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT1-MTP025-V1.0","title":"ROSETTA VIRTIS EXT1-MTP025 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP025 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:51.651490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT1-MTP025-V2.0","title":"ROSETTA VIRTIS EXT1-MTP025 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP025 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp025-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:52.570660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT1-MTP026-V1.0","title":"ROSETTA VIRTIS EXT1-MTP026 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP026 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:53.567628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT1-MTP026-V2.0","title":"ROSETTA VIRTIS EXT1-MTP026 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP026 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp026-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:54.566496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT1-MTP027-V1.0","title":"ROSETTA VIRTIS EXT1-MTP027 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP027 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:55.576601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT1-MTP027-V2.0","title":"ROSETTA VIRTIS EXT1-MTP027 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP027 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp027-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:56.588960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT2-MTP028-V1.0","title":"ROSETTA VIRTIS EXT2-MTP028 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP028 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:57.583544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT2-MTP028-V2.0","title":"ROSETTA VIRTIS EXT2-MTP028 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP028 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp028-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:58.588769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT2-MTP029-V1.0","title":"ROSETTA VIRTIS EXT2-MTP029 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP029 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:59.589593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT2-MTP029-V2.0","title":"ROSETTA VIRTIS EXT2-MTP029 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP029 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp029-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:00.597908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT2-MTP030-V1.0","title":"ROSETTA VIRTIS EXT2-MTP030 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP030 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:01.646224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT2-MTP030-V2.0","title":"ROSETTA VIRTIS EXT2-MTP030 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP030 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp030-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:02.661880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP031-V1.0","title":"ROSETTA VIRTIS EXT3-MTP031 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP031 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:03.604107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP031-V2.0","title":"ROSETTA VIRTIS EXT3-MTP031 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP031 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp031-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:04.606561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP032-V1.0","title":"ROSETTA VIRTIS EXT3-MTP032 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP032 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:05.615823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP032-V2.0","title":"ROSETTA VIRTIS EXT3-MTP032 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP032 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp032-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:06.611955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP033-V1.0","title":"ROSETTA VIRTIS EXT3-MTP033 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP033 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:07.620201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP033-V2.0","title":"ROSETTA VIRTIS EXT3-MTP033 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP033 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp033-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:08.630005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP034-V1.0","title":"ROSETTA VIRTIS EXT3-MTP034 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP034 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:09.633452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP034-V2.0","title":"ROSETTA VIRTIS EXT3-MTP034 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP034 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp034-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:10.637059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP035-V1.0","title":"ROSETTA VIRTIS EXT3-MTP035 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP035 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:11.635426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-EXT3-MTP035-V2.0","title":"ROSETTA VIRTIS EXT3-MTP035 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP035 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp035-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:12.654294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP004-V1.0","title":"ROSETTA VIRTIS PRL-MTP004 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP004 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:13.708798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP004-V2.0","title":"ROSETTA VIRTIS PRL-MTP004 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP004 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp004-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:14.717711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP005-V1.0","title":"ROSETTA VIRTIS PRL-MTP005 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP005 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:15.652461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP005-V2.0","title":"ROSETTA VIRTIS PRL-MTP005 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP005 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp005-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:16.655716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP006-V1.0","title":"ROSETTA VIRTIS PRL-MTP006 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP006 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:17.653381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP006-V2.0","title":"ROSETTA VIRTIS PRL-MTP006 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP006 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp006-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:18.660239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP007-V1.0","title":"ROSETTA VIRTIS PRL-MTP007 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP007 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:19.662046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP007-V2.0","title":"ROSETTA VIRTIS PRL-MTP007 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP007 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp007-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:20.670168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP008-V1.0","title":"ROSETTA VIRTIS PRL-MTP008 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP008 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:21.674952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP008-V2.0","title":"ROSETTA VIRTIS PRL-MTP008 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP008 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp008-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:22.682327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP009-V1.0","title":"ROSETTA VIRTIS PRL-MTP009 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP009 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:23.682138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-3-PRL-MTP009-V2.0","title":"ROSETTA VIRTIS PRL-MTP009 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP009 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp009-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:24.718549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C-VIRTIS-5-67P-MAPS-V1.0","title":"ROSETTA-ORBITER 67P VIRTIS 5 MAPS V1.0","description":"ROSETTA VIRTIS level 5 data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-5-67p-maps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:25.767521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-ALICE-2-CR4A-V1.0","title":"ROSETTA ALICE IN CRUISE 4A PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:26.778089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-ALICE-2-RVM1-V1.0","title":"ROSETTA ALICE IN RVM1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:27.695665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-ALICE-3-CR4A-V1.0","title":"ROSETTA ALICE IN CRUISE 4A PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:28.698787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-ALICE-3-EAR1-V1.0","title":"ROSETTA ALICE IN EARTH 1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the first Earth swing-by phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:29.702756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-ALICE-4-CR4A-V1.0","title":"ROSETTA ALICE IN AST 1 PHASE, RESAMPLED DATA","description":"This volume contains calibrated, resampled data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-4-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:30.707473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-COSIMA-3-V2.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO COMET PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-cosima-3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:31.712608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-COSIMA-3-V3.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO COMET PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-cosima-3-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:32.717508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-CVP-FULL-V1.0","title":"ROMID_1001","description":"Commissioning Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-cvp-full-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:33.722296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-CVP-FULL-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMMISSIONING PHASE","description":"Commissioning Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-cvp-full-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:34.724697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-GRND-REF-2008-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Reference Measurement Data of 2008","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:35.730198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-GRND-REF-2009-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:36.776294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-GRND-REF-2010-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:37.787267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-GRND-REF-2011-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:38.736269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-GRND-REF-2013-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:39.740839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-GRND-REF-2014-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:40.744291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIDAS-3-GRND-REF-2015-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:41.748133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-MIRO-2-GRND-THERMAL-VAC-V1.0","title":"RAW MIRO DATA FOR THE GROUND PHASE","description":"This volume is the first containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during ground testing at NASA/JPL.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-miro-2-grnd-thermal-vac-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:42.749351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-NAVCAM-2-CR4B-V1.0","title":"NAVCAM RAW DATA FOR CRUISE 4-2 PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 4-2 Phase, Feb - Sept 2010","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:43.754246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-NAVCAM-2-CR4B-V1.1","title":"NAVCAM RAW DATA FOR CRUISE 4-2 PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 4-2 Phase, Feb - Sept 2009","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cr4b-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:44.758196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-NAVCAM-2-CVP2-V1.0","title":"NAVCAM RAW DATA FROM COMISSIONING 2","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the COMISSIONING 2 PHASE.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:45.765465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-NAVCAM-2-CVP2-V1.1","title":"NAVCAM RAW DATA FROM COMISSIONING 2","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the COMISSIONING 2 PHASE.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cvp2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:46.763689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-NAVCAM-2-RVM1-V1.0","title":"NAVCAM RAW DATA FOR RVM1","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the RVM1 phase, which took place between 2010-09-04 and 2011-07-13.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:47.786793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-NAVCAM-2-RVM1-V1.1","title":"NAVCAM RAW DATA FOR RVM1","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the RVM1 phase, taken on 25th March 2011.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-rvm1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:48.835499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-RPCIES-2-CVP-V1.0","title":"RPCIES RAW DATA FOR THE COMMISSIONING PHASE","description":"This volume contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the complete commissioning phase (CVP) between March and October 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcies-2-cvp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:49.845256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-RPCMIP-3-CR2-V1.0","title":"RPCMIP CRUISE 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:50.783665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-RPCMIP-3-CR4A-V1.0","title":"RPCMIP CRUISE 4-1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:51.785748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-RPCMIP-3-CR4B-V1.0","title":"RPCMIP CRUISE 4-2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:52.790321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-RPCMIP-3-CR5-V1.0","title":"RPCMIP CRUISE 5 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:53.791527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-RPCMIP-3-CVP1-V1.0","title":"RPCMIP COMMISSIONING 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:54.794886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-RPCMIP-3-CVP2-V1.0","title":"RPCMIP COMMISSIONING 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:55.798477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL-RPCMIP-3-RVM1-V1.0","title":"RPCMIP RENDEZVOUS MANOEUVRE 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:56.804020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL/E-ALICE-2-EAR2-V1.0","title":"ROSETTA ALICE IN EARTH 2 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed (raw) data obtained by the ALICE instrument on the Rosetta Orbiter during the second Earth swing-by phase of the mission. Also included are data from payload checkout #6 (PC6).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-2-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:57.806752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL/E-ALICE-3-EAR2-V1.0","title":"ROSETTA ALICE IN EARTH 2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the second Earth swing-by phase of the mission. Also included are data from payload checkout #6 (PC6).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-3-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:58.812740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL/J/M-ALICE-2-MARS-V1.0","title":"ROSETTA ALICE IN THE MARS PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the Mars swing-by phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-2-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:59.841520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL/J/M-ALICE-3-MARS-V1.0","title":"ROSETTA ALICE IN THE MARS PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Mars swing-by phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-3-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:00.893359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL/X-ALICE-2-CVP2-V1.0","title":"ROSETTA ALICE COMMISSIONING 2 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 2 phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:01.905414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL/X-ALICE-2-EAR1-V1.0","title":"ROSETTA ALICE IN EARTH 1 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the first Earth swing-by phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:02.828560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-CAL/X-ALICE-3-CVP2-V1.0","title":"ROSETTA ALICE COMMISSIONING 2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 2 phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-3-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:03.825770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC1-V1.0","title":"ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:04.833466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC1-V2.0","title":"ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:05.832432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC1-V3.0","title":"ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:06.843384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC2-V1.0","title":"ROSETTA ALICE IN ESC2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:07.846212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC2-V2.0","title":"ROSETTA ALICE IN ESC2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:08.846218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC3-V1.0","title":"ROSETTA ALICE IN ESC3 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:09.848910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC3-V2.0","title":"ROSETTA ALICE IN ESC3 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:10.852106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC4-V1.0","title":"ROSETTA ALICE IN ESC4 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:11.897243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-ESC4-V2.0","title":"ROSETTA ALICE IN ESC4 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:12.916253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-EXT1-V1.0","title":"ROSETTA ALICE IN EXT1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:13.862860","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-EXT1-V2.0","title":"ROSETTA ALICE IN EXT1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:14.867471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-EXT2-V1.0","title":"ROSETTA ALICE IN EXT2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:15.868696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-EXT2-V2.0","title":"ROSETTA ALICE IN EXT2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:16.876893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-EXT3-V1.0","title":"ROSETTA ALICE IN EXT3 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:17.877764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-EXT3-V2.0","title":"ROSETTA ALICE IN EXT3 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:18.879829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-PRL-V1.0","title":"ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:19.883517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-PRL-V2.0","title":"ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:20.890020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-2-PRL-V3.0","title":"ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:21.890916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC1-V1.0","title":"ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:22.909912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC1-V2.0","title":"ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:23.965141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC1-V3.0","title":"ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:24.974328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC2-V1.0","title":"ROSETTA ALICE IN ESC2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:25.904115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC2-V2.0","title":"ROSETTA ALICE IN ESC2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:26.908619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC3-V1.0","title":"ROSETTA ALICE IN ESC3 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:27.911890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC3-V2.0","title":"ROSETTA ALICE IN ESC3 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:28.918627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC4-V1.0","title":"ROSETTA ALICE IN ESC4 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:30.033154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-ESC4-V2.0","title":"ROSETTA ALICE IN ESC4 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:30.931551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-EXT1-V1.0","title":"ROSETTA ALICE IN EXT1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:31.932563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-EXT1-V2.0","title":"ROSETTA ALICE IN EXT1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:32.935946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-EXT2-V1.0","title":"ROSETTA ALICE IN EXT2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:33.936503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-EXT2-V2.0","title":"ROSETTA ALICE IN EXT2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:34.967470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-EXT3-V1.0","title":"ROSETTA ALICE IN EXT3 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:36.018139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-EXT3-V2.0","title":"ROSETTA ALICE IN EXT3 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:37.034271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-PRL-V1.0","title":"ROSETTA ALICE IN PRL PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:37.954460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-PRL-V2.0","title":"ROSETTA ALICE IN PRL PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:38.959339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-3-PRL-V3.0","title":"ROSETTA ALICE IN PRL PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:39.966290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC1-V1.0","title":"ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:40.967758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC1-V2.0","title":"ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:41.975726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC1-V3.0","title":"ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:42.981191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC2-V1.0","title":"ROSETTA ALICE IN ESC2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:43.984786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC2-V2.0","title":"ROSETTA ALICE IN ESC2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:44.997083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC3-V1.0","title":"ROSETTA ALICE IN ESC3 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:45.992126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC3-V2.0","title":"ROSETTA ALICE IN ESC3 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:47.028829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC4-V1.0","title":"ROSETTA ALICE IN ESC4 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:48.079934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-ESC4-V2.0","title":"ROSETTA ALICE IN ESC4 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:49.092004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-EXT1-V1.0","title":"ROSETTA ALICE IN EXT1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:50.005333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-EXT1-V2.0","title":"ROSETTA ALICE IN EXT1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:51.009533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-EXT2-V1.0","title":"ROSETTA ALICE IN EXT2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:52.012684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-EXT2-V2.0","title":"ROSETTA ALICE IN EXT2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:53.019190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-EXT3-V1.0","title":"ROSETTA ALICE IN EXT3 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:54.027465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-EXT3-V2.0","title":"ROSETTA ALICE IN EXT3 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:55.023218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-PRL-V1.0","title":"ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:56.030165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-PRL-V2.0","title":"ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:57.036229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL-ALICE-4-PRL-V3.0","title":"ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:58.041828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL/X-ALICE-2-CR2-V1.0","title":"ROSETTA ALICE IN CRUISE 2 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the second cruise phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:59.086957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL/X-ALICE-2-CVP1-V1.0","title":"ROSETTA ALICE COMMISSIONING 1 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 1 phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:00.098625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL/X-ALICE-3-CR2-V1.0","title":"ROSETTA ALICE IN CRUISE 2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the second cruise phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:01.050048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/CAL/X-ALICE-3-CVP1-V1.0","title":"ROSETTA ALICE COMMISSIONING 1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 1 phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:02.052554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/X-NAVCAM-2-CR2-V1.0","title":"NAVCAM RAW DATA FOR CRUISE 2 PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 2 Phase, June 2005 - March 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_x-navcam-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:03.055721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-C/X-NAVCAM-2-CR2-V1.1","title":"NAVCAM RAW DATA FOR CRUISE 2 PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 2 Phase, June 2005 - March 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_x-navcam-2-cr2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:04.058509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-D-MIDAS-3-PRL-SAMPLES-V1.0","title":"RAW MIDAS DATA FOR THE PRELANDING PHASE","description":"Philae Prelanding Phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:05.061221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-D-MIDAS-3-PRL-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE PRELANDING PHASE","description":"Philae Prelanding Phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:06.064830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-D-MIDAS-3-PRL-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE PRELANDING PHASE","description":"Prelanding Phase Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:07.069945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-MIRO-2-EAR1-EARTH1-V1.0","title":"RAW MIRO DATA FOR THE EARTH FLY-BY 1 PHASE","description":"This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear1-earth1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:08.076044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-MIRO-2-EAR2-EARTH2-V1.0","title":"RAW MIRO DATA FOR THE EARTH FLY-BY 2 PHASE","description":"This volume is the 8th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear2-earth2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:09.077024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-MIRO-3-EAR1-EARTH1-V1.0","title":"CALIBRATED MIRO DATA FOR THE EARTH FLY-BY 1 PHASE","description":"This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Earth Swing-by 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear1-earth1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:10.096872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-MIRO-3-EAR1-EARTH1-V1.1","title":"CALIBRATED MIRO DATA FOR THE EARTH FLY-BY 1 PHASE","description":"This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Earth Swing-by 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear1-earth1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:11.154029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-MIRO-3-EAR2-EARTH2-V1.0","title":"RAW MIRO DATA FOR THE EARTH FLY-BY 2 PHASE","description":"This volume is the 9th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear2-earth2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:12.158938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-NAVCAM-2-EAR1-V1.0","title":"NAVCAM RAW DATA FOR EARTH 1 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 1 Swingby Phase of 4 March 2005 to 5 March 2005, with closest approach taking place on 4 March 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-navcam-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:13.089515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-NAVCAM-2-EAR1-V1.1","title":"NAVCAM RAW DATA FOR EARTH 1 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 1 Swingby Phase of 4 March 2005 to 5 March 2005, with closest approach taking place on 4 March 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-navcam-2-ear1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:14.102443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear1-earthswingby1-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:15.154777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V2.0","title":"RAW OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear1-earthswingby1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:16.102582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear2-earthswingby2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:17.156849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V2.0","title":"RAW OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear2-earthswingby2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:18.118695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear3-earthswingby3-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:19.167927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V2.0","title":"RAW OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear3-earthswingby3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:20.117557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear1-earthswingby1-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:21.164525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear1-earthswingby1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:22.154532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear2-earthswingby2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:23.267766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear2-earthswingby2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:24.220951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear3-earthswingby3-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:25.268626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear3-earthswingby3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:26.141179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR1-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:27.144471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR1-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:28.150565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR1-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:29.154927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR1-EARTHSWINGBY1-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earthswingby1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:30.152698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR2-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:31.161194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR2-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:32.160929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR2-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:33.168603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR2-EARTHSWINGBY2-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earthswingby2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:34.216129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR3-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:35.261594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR3-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:36.180861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR3-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:37.185867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSINAC-4-EAR3-EARTHSWINGBY3-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earthswingby3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:38.188204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear1-earthswingby1-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:39.254663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V2.0","title":"RAW OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear1-earthswingby1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:40.192036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear2-earthswingby2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:41.250316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V2.0","title":"RAW OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear2-earthswingby2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:42.201146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear3-earthswingby3-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:43.260371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V2.0","title":"RAW OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear3-earthswingby3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:44.212546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear1-earthswingby1-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:45.265194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear1-earthswingby1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:46.275464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear2-earthswingby2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:47.330486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear2-earthswingby2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:48.225457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear3-earthswingby3-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:49.284141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear3-earthswingby3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:50.229434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR1-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:51.240013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR1-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:52.240302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR1-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:53.244137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR1-EARTHSWINGBY1-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earthswingby1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:54.249053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR2-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:55.246811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR2-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:56.256051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR2-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:57.283438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR2-EARTHSWINGBY2-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earthswingby2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:58.333536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR3-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:59.346377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR3-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:00.268840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR3-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:01.276015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-OSIWAC-4-EAR3-EARTHSWINGBY3-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earthswingby3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:02.275519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-2-EAR1-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:03.283755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-2-EAR1-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR1 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:04.283929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-2-EAR1-RAW-V3.0","title":"ROSETTA-ORBITER EARTH RPCICA 2 EAR1 EDITED","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR1 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:05.290027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-2-EAR2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:06.290875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-2-EAR2-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:07.295680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-2-EAR2-RAW-V3.0","title":"ROSETTA-ORBITER EARTH RPCICA 2 EAR2 EDITED","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR2 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:08.300050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-2-EAR3-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR3 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear3-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:09.342018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-2-EAR3-RAW-V2.0","title":"ROSETTA-ORBITER EARTH RPCICA 2 EAR3 EDITED","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR3 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear3-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:10.395157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-3-EAR1-CALIB-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 3 EAR1 CALIBRATED","description":"ROSETTA-ORBITER EARTH RPCICA 3 EAR1 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear1-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:11.506802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-3-EAR2-CALIB-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 3 EAR2 CALIBRATED","description":"ROSETTA-ORBITER EARTH RPCICA 3 EAR2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:12.316580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-3-EAR3-CALIB-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 3 EAR3 CALIBRATED","description":"ROSETTA-ORBITER EARTH RPCICA 3 EAR3 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear3-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:13.317163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-4-EAR1-CORR-CTS-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR_CTS","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:14.310927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-4-EAR1-CORR-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:15.322560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-4-EAR2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR_CTS","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:16.319615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-4-EAR2-CORR-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:17.332846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-4-EAR3-CORR-CTS-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR_CTS","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:18.331387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCICA-4-EAR3-CORR-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:19.335464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCIES-2-EAR1-V1.0","title":"RPCIES RAW DATA FOR EARTH SWINGBY 1","description":"This data set contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the first Earth Swingby (EAR1) in March 2005. The swingby took place between March 1 and March 7 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:20.351418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCIES-2-EAR3-V1.0","title":"RPCIES RAW DATA FOR THE EARTH SWINGBY 3","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Earth Swingby 3 in November 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:21.399200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCLAP-2-EAR1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EAR1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 1 phase in 2004-2005 where the primary target was the planet EARTH. This particular data set contains data for the time period 2004-10-17T00:00:00.000 -- 2005-04-05T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:22.412287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCLAP-2-EAR2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EAR2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 2 phase in 2007-2008 where the primary target was the planet EARTH. This particular data set contains data for the time period 2007-09-13T00:00:00.000 -- 2008-01-28T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:23.355714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCLAP-2-EAR3-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EAR3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 3 phase in 2009 where the primary target was the planet EARTH. This particular data set contains data for the time period 2009-09-14T00:00:00.000 -- 2009-12-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear3-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:24.360964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCLAP-3-EAR1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EAR1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 1 phase in 2004-2005 where the primary target was the planet EARTH. This particular data set contains data for the time period 2004-10-17T00:00:00.000 -- 2005-04-05T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:25.363165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCLAP-3-EAR2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EAR2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 2 phase in 2007-2008 where the primary target was the planet EARTH. This particular data set contains data for the time period 2007-09-13T00:00:00.000 -- 2008-01-28T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:26.369220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCLAP-3-EAR3-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EAR3","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 3 phase in 2009 where the primary target was the planet EARTH. This particular data set contains data for the time period 2009-09-14T00:00:00.000 -- 2009-12-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear3-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:27.369521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-2-EAR1-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE FIRST EARTH FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:28.378197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-2-EAR1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE FIRST EARTH SWINGBY (EAR1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:29.382044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-2-EAR2-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE SECOND EARTH FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:30.380093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-2-EAR2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE SECOND EARTH SWINGBY (EAR2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:31.383533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-2-EAR3-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE THIRD EARTH SWINGBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear3-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:32.410560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-2-EAR3-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE THIRD EARTH SWINGBY (EAR3)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear3-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:33.457650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-3-EAR1-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE FIRST EARTH FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear1-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:34.472435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-3-EAR1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: FIRST EARTH SWINGBY (EAR1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:35.410405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-3-EAR2-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE SECOND EARTH FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear2-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:36.401796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-3-EAR2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: SECOND EARTH SWINGBY (EAR2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:37.403351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-3-EAR3-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE THIRD EARTH SWINGBY","description":"This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear3-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:38.407766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-3-EAR3-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: THIRD EARTH SWINGBY (EAR3)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear3-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:39.416699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-4-EAR1-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE FIRST EARTH FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear1-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:40.417470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-4-EAR1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: FIRST EARTH SWINGBY (EAR1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:41.421221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-4-EAR2-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE SECOND EARTH FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear2-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:42.422598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-4-EAR2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: SECOND EARTH SWINGBY (EAR2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:43.430311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-4-EAR3-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE THIRD EARTH SWINGBY","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear3-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:44.469625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMAG-4-EAR3-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: THIRD EARTH SWINGBY (EAR3)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear3-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:45.516234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMIP-3-EAR1-V1.0","title":"RPCMIP EARTH SWING-BY 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:46.437849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMIP-3-EAR2-V1.0","title":"RPCMIP CALIBRATED DATA FOR THE EARTH SWING 2 BY PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the earth swing by 2 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:47.439450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMIP-3-EAR2-V2.0","title":"RPCMIP EARTH SWING-BY 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:48.444279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E-RPCMIP-3-EAR3-V1.0","title":"RPCMIP EARTH SWING-BY 3 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:49.442848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E/CAL-NAVCAM-2-EAR2-V1.0","title":"NAVCAM RAW DATA FOR EARTH 2 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 2 Swingby Phase of 16 September 2007 to 22 January 2008, with closest approach taking place on 13 November 2007.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:50.452146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E/CAL-NAVCAM-2-EAR2-V1.1","title":"NAVCAM RAW DATA FOR EARTH 2 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 2 Swingby Phase of 16 September 2007 to 22 January 2008, with closest approach taking place on 13 November 2007.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:51.452420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E/CAL-NAVCAM-2-EAR3-V1.0","title":"NAVCAM RAW DATA FOR EARTH 3 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 3 Swingby Phase of 13 November 2009 to 30 November 2009, with closest approach taking place on 13 November 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:52.456549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E/CAL-NAVCAM-2-EAR3-V1.1","title":"NAVCAM RAW DATA FOR EARTH 3 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 3 Swingby Phase of 13 November 2009 to 30 November 2009, with closest approach taking place on 13 November 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear3-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:53.460682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E/X-NAVCAM-2-CR1-V1.0","title":"NAVCAM RAW DATA FOR CRUISE 1","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the CRUISE 1 Phase of 27 July 2004 to 1 August 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_x-navcam-2-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:54.461585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-E/X-NAVCAM-2-CR1-V1.1","title":"NAVCAM RAW DATA FOR CRUISE 1","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the CRUISE 1 Phase of 27 July 2004 to 1 August 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_x-navcam-2-cr1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:55.476494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSINAC-2-MARS-MARSSWINGBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSINAC-2-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-2-mars-marsswingby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:56.574399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSINAC-2-MARS-MARSSWINGBY-V2.0","title":"RAW OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-2-mars-marsswingby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:57.544332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSINAC-3-MARS-MARSSWINGBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSINAC-3-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-3-mars-marsswingby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:58.592112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSINAC-3-MARS-MARSSWINGBY-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-3-mars-marsswingby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:59.480900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSINAC-4-MARS-MARS-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:00.486619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSINAC-4-MARS-MARS-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:01.497711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSINAC-4-MARS-MARS-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:02.494701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSINAC-4-MARS-MARSSWINGBY-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-marsswingby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:03.502116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSIWAC-2-MARS-MARSSWINGBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSIWAC-2-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-2-mars-marsswingby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:04.556928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSIWAC-2-MARS-MARSSWINGBY-V2.0","title":"RAW OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-2-mars-marsswingby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:05.507862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSIWAC-3-MARS-MARSSWINGBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSIWAC-3-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-3-mars-marsswingby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:06.554156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSIWAC-3-MARS-MARSSWINGBY-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-3-mars-marsswingby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:07.539929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSIWAC-4-MARS-MARS-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:08.584005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSIWAC-4-MARS-MARS-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:09.601127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSIWAC-4-MARS-MARS-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:10.523222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-OSIWAC-4-MARS-MARSSWINGBY-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-marsswingby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:11.526372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCICA-2-MARS-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:12.531498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCICA-2-MARS-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER MARS RPCICA 2 MARS UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:13.533210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCICA-2-MARS-RAW-V3.0","title":"ROSETTA-ORBITER MARS RPCICA 2 MARS EDITED","description":"ROSETTA-ORBITER MARS RPCICA 2 MARS UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:14.538972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCICA-3-MARS-CALIB-V1.0","title":"ROSETTA-ORBITER MARS RPCICA 3 MARS CALIBRATED","description":"ROSETTA-ORBITER MARS RPCICA 3 MARS CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-3-mars-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:15.541304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCICA-4-MARS-CORR-CTS-V1.0","title":"ROSETTA-ORBITER MARS RPCICA 4 MARS CORR_CTS","description":"ROSETTA-ORBITER MARS RPCICA 4 MARS CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:16.548833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCICA-4-MARS-CORR-V1.0","title":"ROSETTA-ORBITER MARS RPCICA 4 MARS CORR","description":"ROSETTA-ORBITER MARS RPCICA 4 MARS CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:17.551527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCLAP-2-MARS-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR MARS","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the MARS SWING-BY phase in 2006-2007 where the primary target was the planet MARS. This particular data set contains data for the time period 2006-07-29T00:00:00.000 -- 2007-05-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-2-mars-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:18.548532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCLAP-3-MARS-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR MARS","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the MARS SWING-BY phase in 2006-2007 where the primary target was the planet MARS. This particular data set contains data for the time period 2006-07-29T00:00:00.000 -- 2007-05-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-3-mars-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:19.592650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCMAG-2-MARS-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE MARS FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-2-mars-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:20.643619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCMAG-2-MARS-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE MARS SWINGBY (MARS)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-2-mars-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:21.564847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCMAG-3-MARS-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE MARS FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-3-mars-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:22.571563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCMAG-3-MARS-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: MARS SWINGBY (MARS).","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-3-mars-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:23.566533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCMAG-4-MARS-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE MARS FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-4-mars-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:24.570549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCMAG-4-MARS-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: MARS SWINGBY (MARS).","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-4-mars-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:25.583675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M-RPCMIP-3-MARS-V1.0","title":"RPCMIP MARS SWING-BY L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmip-3-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:26.585741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M/CAL-NAVCAM-2-MARS-V1.0","title":"NAVCAM RAW DATA FOR MARS SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the MARS Swingby Phase of 27 November 2006 to 24 February 2007, with closest approach taking place on 25 February 2007.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m_cal-navcam-2-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:27.588650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-M/CAL-NAVCAM-2-MARS-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise phase- Mars Swing by from 27, No 2006 to 24 Feb 2007.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m_cal-navcam-2-mars-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:28.589533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-2-CR2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:29.598615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-2-CR2-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER SW RPCICA 2 CR2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:30.608020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-2-CR2-RAW-V3.0","title":"ROSETTA-ORBITER SW RPCICA 2 CR2 EDITED","description":"ROSETTA-ORBITER SW RPCICA 2 CR2 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:31.656564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-2-CR4-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:32.670137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-2-CR4-RAW-V3.0","title":"ROSETTA-ORBITER SW RPCICA 2 CR4 EDITED","description":"ROSETTA-ORBITER SW RPCICA 2 CR4 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:33.620924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-2-CR4B-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER SW RPCICA 2 CR4B UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4b-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:34.621239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-3-CR2-CALIB-V1.0","title":"ROSETTA-ORBITER SW RPCICA 3 CR2 CALIBRATED","description":"ROSETTA-ORBITER SW RPCICA 3 CR2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:35.621741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-3-CR4-CALIB-V1.0","title":"ROSETTA-ORBITER SW RPCICA 3 CR4 CALIBRATED","description":"ROSETTA-ORBITER SW RPCICA 3 CR4 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr4-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:36.621985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-4-CR2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER SW RPCICA 4 CR2 CORR_CTS","description":"ROSETTA-ORBITER SW RPCICA 4 CR2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:37.624957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-4-CR2-CORR-V1.0","title":"ROSETTA-ORBITER SW RPCICA 4 CR2 CORR","description":"ROSETTA-ORBITER SW RPCICA 4 CR2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:38.634217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-4-CR4-CORR-CTS-V1.0","title":"ROSETTA-ORBITER SW RPCICA 4 CR4 CORR_CTS","description":"ROSETTA-ORBITER SW RPCICA 4 CR4 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:39.639804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCICA-4-CR4-CORR-V1.0","title":"ROSETTA-ORBITER SW RPCICA 4 CR4 CORR","description":"ROSETTA-ORBITER SW RPCICA 4 CR4 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:40.638621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCIES-2-CR2-V1.0","title":"RPCIES RAW DATA FOR CRUISE 2 PHASE","description":"This data set contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the second cruise phase (CR2) between April 2005 and June 2006.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:41.639485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCIES-2-CR5-V1.0","title":"RPCIES RAW DATA FOR CRUISE 5","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Cruise 5 Phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:42.662628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCIES-2-RVM1-V1.0","title":"RPCIES RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Rendezvous Manoeuvre 1 in November 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:43.714270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-2-CR2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CR2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 2 phase in 2005-2006 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2005-04-05T00:00:00.000 -- 2006-07-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:44.725206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-2-CR4A-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CR4A","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-1 phase in 2008 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-01-28T00:00:00.000 -- 2008-08-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4a-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:45.665167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-2-CR4B-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CR4B","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-2 phase in 2008-2009 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-10-06T00:00:00.000 -- 2009-09-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4b-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:46.665356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-2-CR5-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CR5","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 5 phase in 2009-2010 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2009-12-14T00:00:00.000 -- 2010-05-17T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr5-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:47.671106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-2-RVM1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR RVM1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the RENDEZVOUS MANOEUVRE 1 phase in 2010-2011 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2010-09-04T00:00:00.000 -- 2011-06-08T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-rvm1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:48.673171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-3-CR2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CR2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 2 phase in 2005-2006 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2005-04-05T00:00:00.000 -- 2006-07-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:49.678582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-3-CR4A-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CR4A","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-1 phase in 2008 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-01-28T00:00:00.000 -- 2008-08-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4a-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:50.683477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-3-CR4B-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CR4B","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-2 phase in 2008-2009 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-10-06T00:00:00.000 -- 2009-09-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4b-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:51.692108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-3-CR5-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CR5","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 5 phase in 2009-2010 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2009-12-14T00:00:00.000 -- 2010-05-17T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr5-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:52.807638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCLAP-3-RVM1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR RVM1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the RENDEZVOUS MANOEUVRE 1 phase in 2010-2011 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2010-09-04T00:00:00.000 -- 2011-06-08T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-rvm1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:53.692005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-2-CR2-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE SECOND CRUISE PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-cr2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:54.726046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-2-CR2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE SECOND CRUISE PHASE (CR2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-cr2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:55.771760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-2-PRL-RAW-V5.0","title":"RPCMAG RAW DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:56.785581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-2-PRL-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:57.715717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-2-PRL-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE PRELANDING PHASE (PRL)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:58.710213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-2-RVM1-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-rvm1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:59.717901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-2-RVM1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-rvm1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:00.718002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-3-CR2-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE SECOND CRUISE PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-cr2-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:01.720838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-3-CR2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: SECOND CRUISE PHASE (CR2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-cr2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:02.727236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-3-PRL-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-prl-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:03.727747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-3-PRL-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: PRELANDING PHASE (PRL)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-prl-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:04.733425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-3-RVM1-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-rvm1-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:05.733666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-3-RVM1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-rvm1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:06.782812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-4-CR2-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE SECOND CRUISE PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-cr2-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:07.832527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-4-CR2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: SECOND CRUISE PHASE (CR2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-cr2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:08.744948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-4-PRL-RESAMPLED-V5.0","title":"RPCMAG RESMPLED DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:09.748457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-4-PRL-RESAMPLED-V6.0","title":"RPCMAG RESMPLED DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:10.744157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-4-PRL-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: PRELANDING PHASE (PRL)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:11.756085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-4-RVM1-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-rvm1-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:12.759025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-SS-RPCMAG-4-RVM1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-rvm1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:13.762209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-ALICE-2-CR1-V1.0","title":"ROSETTA ALICE IN CRUISE 1 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the first cruise phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-2-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:14.761081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-ALICE-3-CR1-V1.0","title":"ROSETTA ALICE IN CRUISE 1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the first cruise phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-3-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:15.766315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-ALICE-6-SUPPLEMENTARY-V1.0","title":"ROSETTA ALICE SUPPLEMENTAL DOCUMENTATION and DATA","description":"This small dataset collects supplementary documentation and data for the Rosetta Alice instrument and its data products.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-6-supplementary-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:16.769551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-GIA-2-CR2-CRUISE2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING CRUISE 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Cruise 2' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 1' (PC1) held on 02/03-10-2005; 'Passive Payload Checkout n. 2' (PC2) held on 05/06-03-2006. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cr2-cruise2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:17.795611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-GIA-2-CVP1-COMMISSIONING1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMMISSIONING 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Commissioning 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'First GIADA switch ON' held on 03/04-04-2004. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp1-commissioning1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:18.844496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-GIA-2-CVP2-COMMISSIONING2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMMISSIONING 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Commissioning 2' phase. More in detail it refers to the data provided during the following in-flight scenarios: 'Interference 1' held on 20/21/22-09-2004; 'Pointing 1' held on 23-09-2004; 'Pointing 2' held on 30-09-2004; 'Interference 2' held on 12/13/14-10-2004. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp2-commissioning2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:19.857003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-GIA-2-EAR1-EARTHSWINGBY1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EARTH SWING-BY 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Earth swing-by 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 0' (PC0) held on 28/29-03-2005. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear1-earthswingby1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:20.788606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-GIA-2-EAR2-EARTHSWINGBY2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EARTH SWING-BY 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Earth swing-by 2' phase. More in detail it refers to the data provided during the following in-flight tests: 'Active Payload Checkout n. 6' (PC6) held on 15/16/17-09-2007 and 24-09-2007; 'Passive Payload Checkout n. 7' (PC7) held on 06/07-01-2008 and 17-01-2008. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear2-earthswingby2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:21.791539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-GIA-2-MARS-MARSSWINGBY-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING MARS SWING-BY PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Mars swing-by' phase. More in detail it refers to the data provided during the following in-flight tests: 'Active Payload Checkout n. 4' (PC4) held on 24/25-11-2006 and 04-12-2006; 'Passive Payload Checkout n. 5' (PC5) held on 20/21-05-2007. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-mars-marsswingby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:22.800020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-GIA-2-RVM1-RENDEZMANOEUVRE1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING RENDEZMANOUVRE 1","description":"This volume contains Experiment Data acquired by GIADA during 'Rendez-vous manoeuvre 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 13' (PC13) held on 1-12-2010 and It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-rvm1-rendezmanoeuvre1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:23.796366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-ANTENNASTATUS-V1.0","title":"ROSETTA HK: ANTENNA STATUS","description":"This volume contains the status of the Rosetta Orbiter Antenna extracted from the MUST system for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-antennastatus-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:24.800425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-AOCGEN-V1.0","title":"ROSETTA HK: AOC SYSTEM DATA","description":"This volume contains data from the Rosetta Attitude and Orbit Control System for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-aocgen-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:25.802990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-EDAC-V1.0","title":"ROSETTA HK: EDAC DATA","description":"This volume contains data from the Rosetta Error Detection and Correction System for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-edac-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:26.805819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-HGAAPM-V1.0","title":"ROSETTA HK: HIGH GAIN ANTENNA DATA","description":"This volume contains data from the Rosetta High Gain Antenna and Antenna Pointing Mechanism for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-hgaapm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:27.811681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-IMP-V1.0","title":"ROSETTA HK: INERTIAL MEASUREMENT PACKAGE","description":"This volume contains data from the Rosetta Inertial Measurement Package for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-imp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:28.814485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-NAVCAM-V1.0","title":"ROSETTA HK: NAVCAM ENGINEERING","description":"This volume contains engineering data from Rosetta's two Navigation cameras for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-navcam-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:29.850433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-OCMRCS-V1.0","title":"ROSETTA HK: ORBITAL CONTROL MANOEUVRE REACTION CONTROL","description":"This volume contains key parameters from Rosetta's Orbit Control Manouevres and the thruster based Reaction Control Subsystem for for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-ocmrcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:30.898328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-RWL-V1.0","title":"ROSETTA HK: REACTION WHEEL ENGINEERING","description":"This volume contains engineering data from the four Reaction Wheels onboard Rosetta for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-rwl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:31.910797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-SOLARARRAY-V1.0","title":"ROSETTA HK: SOLAR ARRAY POWER","description":"This volume contain key parameters of the Solar Array and Power housekeeping for Rosetta over the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-solararray-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:32.828427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-STARTRACKER-V1.0","title":"ROSETTA HK: SOLAR ARRAY POWER","description":"This volume contains key parameters from the housekeeping of the two Star Trackers onboard Rosetta over the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-startracker-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:33.833079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-HK-3-TCS-V1.0","title":"ROSETTA HK: EDAC DATA","description":"This volume contains selected data from the Rosetta Thermal Control System for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-tcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:34.833766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-CR2-PC1-2-V1.0","title":"ROMID_1003","description":"Payload Checkout 1-2 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr2-pc1-2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:35.842617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-CR2-PC1-2-V3.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 2 PHASE","description":"Payload Checkout 1-2 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr2-pc1-2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:36.836263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-CR4A-PC8-V1.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 4-1 PHASE","description":"Payload Checkout 8 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4a-pc8-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:37.845861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-CR4A-PC8-V3.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 4-1 PHASE","description":"Payload Checkout 8 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4a-pc8-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:38.848434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-CR4B-PC9-V1.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 4-2 PHASE","description":"Payload Checkout 9 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4b-pc9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:39.851601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-CR4B-PC9-V3.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 4-2 PHASE","description":"Payload Checkout 9 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4b-pc9-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:40.861400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-CR5-PC12-V1.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 5 PHASE","description":"Payload Checkout 12 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr5-pc12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:41.909126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-CR5-PC12-V3.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 5 PHASE","description":"Payload Checkout 12 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr5-pc12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:42.925691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-EAR1-PC0-V1.0","title":"ROMID_1002","description":"Payload Checkout 0 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear1-pc0-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:43.873511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-EAR1-PC0-V3.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 1 PHASE","description":"Payload Checkout 0 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear1-pc0-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:44.871993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-EAR2-PC6-7-V1.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 2 PHASE","description":"Payload Checkout 6-7 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear2-pc6-7-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:45.874751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-EAR2-PC6-7-V3.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 2 PHASE","description":"Payload Checkout 6-7 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear2-pc6-7-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:46.881474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-EAR3-PC10-V1.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 3 PHASE","description":"Payload Checkout 10 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear3-pc10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:47.883217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-EAR3-PC10-V3.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 3 PHASE","description":"Payload Checkout 10 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear3-pc10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:48.889328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-MARS-PC3-5-V1.0","title":"MIDAS SCIENCE DATA FOR THE MARS SWING-BY PHASE","description":"Payload Checkout 3-5 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-mars-pc3-5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:49.888215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-MARS-PC3-5-V3.0","title":"MIDAS SCIENCE DATA FOR THE MARS SWING-BY PHASE","description":"Payload Checkout 3-5 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-mars-pc3-5-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:50.891733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-RVM1-PC13-V1.0","title":"MIDAS SCIENCE DATA FOR THE RENDEZVOUS MANOEUVRE 1 PHASE","description":"Payload Checkout 13 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-rvm1-pc13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:51.893540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIDAS-3-RVM1-PC13-V3.0","title":"MIDAS SCIENCE DATA FOR THE RENDEZVOUS MANOEUVRE 1 PHASE","description":"Payload Checkout 13 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-rvm1-pc13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:52.919484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIRO-2-CVP-COMMISSIONING-V1.0","title":"RAW MIRO DATA FOR THE COMMISSIONING PHASE","description":"This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Commissioning mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-2-cvp-commissioning-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:53.970451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIRO-3-CVP-COMMISSIONING-V1.0","title":"CALIBRATED MIRO DATA FOR THE COMMISSIONING PHASE","description":"This volume is the first containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Commissioning mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-3-cvp-commissioning-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:54.982575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-MIRO-3-CVP-COMMISSIONING-V1.1","title":"CALIBRATED MIRO DATA FOR THE COMMISSIONING PHASE","description":"This volume is the fourth containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Commissioning mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-3-cvp-commissioning-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:55.914925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-NAVCAM-2-PRL-COM-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jan 2014 to May 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-2-prl-com-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:56.917132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-NAVCAM-2-PRL-COM-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jan 2014 to May 2014 just after hibernation in its journey to comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-2-prl-com-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:57.918834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-NAVCAM-3-PRL-COM-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING COMMISSIONING PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Feb. 2014, 08:10:01 to 30 Apr. 2014, 03:32:08, during the PRELANDING COMMISSIONING phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-3-prl-com-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:58.925237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR1-CHECKOUT-V1.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 1 mission phase, covering the period from 2004-06-07T00:00:00.000 to 2004-09-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:59.924576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR2-CHECKOUT-V2.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr2-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:00.929139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR2-CRUISE2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr2-cruise2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:01.993573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR4A-CHECKOUT-V2.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4a-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:02.934632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR4A-CRUISE4A-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4a-cruise4a-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:04.007174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR4B-CHECKOUT-V2.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 4-2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-2 mission phase, covering the period from 2008-10-06T00:00:00.000 to 2009-09-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4b-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:04.984667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR4B-CRUISE4B-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR4B-CRUISE4B-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4b-cruise4b-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:06.086045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR5-CHECKOUT-V2.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr5-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:07.041336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CR5-CRUISE5-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr5-cruise5-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:08.091090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CVP1-CHECKOUT-V1.0","title":"RAW OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cvp1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:09.964177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-CVP2-CHECKOUT-V1.0","title":"RAW OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:10.968790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-2-RVM1-CHECKOUT-V1.0","title":"RAW OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:11.966656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CR2-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr2-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:12.974085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CR2-CRUISE2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-3-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr2-cruise2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:14.046074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CR4A-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4a-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:14.979691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CR4A-CRUISE4A-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-3-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4a-cruise4a-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:16.041515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CR4B-CRUISE4B-V1.4","title":"CALIBRATED OSIRIS NAC DATA FOR THE CRUISE 4-2 PHASE","description":"CALIBRATED OSIRIS NAC data from the CRUISE 4-2 mission phase. The data has been acquired between 2008-10-06 and 2009-09-14.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4b-cruise4b-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:17.035715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CR5-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr5-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:18.049460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CR5-CRUISE5-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSINAC-3-CR5-CRUISE5-V1.2 and NASA Planetary Data System, ESA Planetary Science Archive, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr5-cruise5-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:19.140476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CVP1-CHECKOUT-V1.0","title":"Menu: Skip within this page","description":"Special Note: When all OSIRIS calibrated data sets were reprocessed, this data set was split and any CR1 images did not qualify for calibration in their latest pipeline. See documentation in the CVP1/2 calibrated data set for details on selection.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cvp-commissioning-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:20.051706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-CVP2-CHECKOUT-V1.0","title":"CALIBRATED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:22.011346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-3-RVM1-CHECKOUT-V1.0","title":"CALIBRATED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:23.014253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR2-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:24.016765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR2-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:25.019649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR2-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:26.014422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR2-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:27.023283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR4A-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:28.046503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR4A-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:29.094331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR4A-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:30.110237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR4A-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:31.045018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR5-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:32.043664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR5-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:33.053052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR5-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:34.145989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CR5-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:35.054668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CVP1-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:36.061455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CVP1-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:37.067086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CVP1-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:38.065460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CVP1-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:39.067393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CVP2-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:40.101112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CVP2-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:41.153825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CVP2-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:42.166854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-CVP2-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:43.083765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-RVM1-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:44.086865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-RVM1-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:45.104849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-RVM1-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:46.103937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSINAC-4-RVM1-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:47.105030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR1-CHECKOUT-V1.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 1 mission phase, covering the period from 2004-06-07T00:00:00.000 to 2004-09-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:48.109010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR2-CHECKOUT-V2.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr2-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:49.114318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR2-CRUISE2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr2-cruise2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:50.168851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR4A-CHECKOUT-V2.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4a-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:51.118934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR4A-CRUISE4A-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4a-cruise4a-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:52.224480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR4B-CHECKOUT-V2.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 4-2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-2 mission phase, covering the period from 2008-10-06T00:00:00.000 to 2009-09-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4b-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:53.179430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR4B-CRUISE4B-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR4B-CRUISE4B-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4b-cruise4b-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:54.268661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR5-CHECKOUT-V2.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr5-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:55.130202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CR5-CRUISE5-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSIWAC-2-CR5-CRUISE5-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr5-cruise5-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:56.193086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CVP1-CHECKOUT-V1.0","title":"RAW OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cvp1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:58.148833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-CVP2-CHECKOUT-V1.0","title":"RAW OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:59.145816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-2-RVM1-CHECKOUT-V1.0","title":"RAW OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:00.153547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-CR2-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr2-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:01.159191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-CR2-CRUISE2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-3-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr2-cruise2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:02.216044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-CR4A-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr4a-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:03.178804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-CR4A-CRUISE4A-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-3-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr4a-cruise4a-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:04.270240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-CR5-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr5-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:05.236760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-CR5-CRUISE5-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSIWAC-3-CR5-CRUISE5-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr5-cruise5-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:06.322201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-CVP1-CHECKOUT-V1.0","title":"Menu: Skip within this page","description":"Special Note: When all OSIRIS calibrated data sets were reprocessed, this data set was split and any CR1 images did not qualify for calibration in their latest pipeline. See documentation in the CVP1/2 calibrated data set for details on selection.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cvp-commissioning-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:07.231129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-CVP2-CHECKOUT-V1.0","title":"CALIBRATED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:09.189660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-3-RVM1-CHECKOUT-V1.0","title":"CALIBRATED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:10.193287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR2-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:11.196701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR2-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:12.202828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR2-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:13.200482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR2-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:14.205498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR4A-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:15.235459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR4A-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:16.285672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR4A-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:17.295800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR4A-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:18.221296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR5-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:19.227270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR5-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:20.234157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR5-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:21.235205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CR5-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:22.245207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CVP1-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:23.242343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CVP1-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:24.253884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CVP1-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:25.249192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CVP1-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:26.249070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CVP2-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:27.289321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CVP2-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:28.341993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CVP2-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:29.352039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-CVP2-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:30.274497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-RVM1-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:31.273772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-RVM1-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:32.275531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-RVM1-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:33.276384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-OSIWAC-4-RVM1-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:34.289794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-ROSINA-2-ENG-V1.0","title":"RO-X-ROSINA-2-ENG-V1.0","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Commissioning. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rosina-2-eng-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:35.297494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCICA-2-CVP-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:36.297180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCICA-2-CVP-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER CHECK RPCICA 2 CVP UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:37.301218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCICA-2-CVP-RAW-V3.0","title":"ROSETTA-ORBITER CHECK RPCICA 2 CVP EDITED","description":"ROSETTA-ORBITER CHECK RPCICA 2 CVP UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:38.306039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCICA-3-CVP-CALIB-V1.0","title":"ROSETTA-ORBITER CHECK RPCICA 3 CVP CALIBRATED","description":"ROSETTA-ORBITER CHECK RPCICA 3 CVP CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-3-cvp-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:39.349980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCICA-4-CVP-CORR-CTS-V1.0","title":"ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR_CTS","description":"ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:40.365416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCICA-4-CVP-CORR-V1.0","title":"ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR","description":"ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:41.313102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCLAP-2-CVP1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CVP1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 1 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-03-05T00:00:00.000 -- 2006-09-17T00:02:36.148.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:42.319459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCLAP-2-CVP2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CVP2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 2 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-09-06T00:00:00.000 -- 2004-10-17T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:43.323474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCLAP-3-CVP1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CVP1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 1 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-03-05T00:00:00.000 -- 2006-09-17T00:02:36.128.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:44.326665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCLAP-3-CVP2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CVP2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 2 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-09-06T00:00:00.000 -- 2004-10-17T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:45.328441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-2-CR4A-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE CRUISE-4A PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4a-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:46.332177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-2-CR4A-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE CRUISE-4A PHASE (CR4A)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4a-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:47.340043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-2-CR4B-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE CRUISE-4B PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4b-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:48.344765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-2-CR4B-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE CRUISE-4B PHASE (CR4B)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4b-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:49.346592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-2-CR5-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE FIFTH CRUISE PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr5-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:50.364210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-2-CR5-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE CRUISE-5 PHASE (CR5)","description":"This Volume contains magnetic field data (EDITED RAW DATA) from the RPC-MAG instrument for the Cruise Phase 5, called CR5, for the time interval December 2009 until June 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr5-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:51.409733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-2-CVP-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE COMMISSIONING PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cvp-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:52.423710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-2-CVP-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMMISSIONING PHASE (CVP)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2004 until 14. October 2004","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cvp-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:53.368751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-3-CR4A-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE CRUISE-4A PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4a-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:54.364415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-3-CR4A-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: CRUISE-4A PHASE (CR4A)","description":"This Volume contains magnetic field data (CALIBRATED DATA)fromthe RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4a-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:55.363332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-3-CR4B-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE CRUISE-4B PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4b-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:56.373899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-3-CR4B-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: CRUISE-4B PHASE (CR4B)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4b-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:57.379576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-3-CR5-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE FIFTH CRUISE PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr5-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:58.374301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-3-CR5-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: CRUISE-5 PHASE (CR5)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the Cruise Phase 5, called CR5B, for the time interval December 2009 until June 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr5-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:59.382992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-3-CVP-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE COMMISSIONING PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cvp-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:00.388850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-3-CVP-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMMISSIONING PHASE (CVP)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2014 until 14. October 2004","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cvp-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:01.388888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-4-CR4A-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE CRUISE-4A PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4a-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:02.423609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-4-CR4A-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: CRUISE-4A PHASE (CR4A)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4a-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:03.472344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-4-CR4B-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE CRUISE-4B PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4b-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:04.481776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-4-CR4B-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: CRUISE-4B PHASE (CR4B)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4b-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:05.407008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-4-CR5-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE FIFTH CRUISE PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr5-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:06.406523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-4-CR5-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: CRUISE-5 PHASE (CR5)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the Cruise Phase 5, called CR5, for the time interval December 2009 until June 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr5-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:07.422625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-4-CVP-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE COMMISSIONING PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cvp-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:08.411965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RPCMAG-4-CVP-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMMISSIONING PHASE (CVP)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2004 until 14. October 2004","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cvp-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:09.420197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0001-V1.0","title":"RORSI_0001_2004_086_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-26T22:57:28.500 to 2004-03-27T07:10:52.950.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0001-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:10.415093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0002-V1.0","title":"RORSI_0002_2004_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-27T21:51:39.500 to 2004-03-28T07:17:42.950.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0002-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:11.424694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0003-V1.0","title":"RORSI_0003_2004_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-28T21:51:03.500 to 2004-03-29T06:51:57.950.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:12.425691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0004-V1.0","title":"RORSI_0004_2004_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-29T22:59:42.500 to 2004-03-30T06:37:31.950.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:13.430570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0005-V1.0","title":"RORSI_0005_2004_123_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-02T20:16:44.500 to 2004-05-03T02:32:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:14.478687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0006-V1.0","title":"RORSI_0006_2004_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-03T21:38:35.500 to 2004-05-04T02:11:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:15.591982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0007-V1.0","title":"RORSI_0007_2004_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-04T20:17:40.500 to 2004-05-05T02:19:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:16.433252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0008-V1.0","title":"RORSI_0008_2004_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-05T20:11:52.500 to 2004-05-06T02:21:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:17.433721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP1-0009-V1.0","title":"RORSI_0009_2004_127_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-06T20:11:29.500 to 2004-05-07T02:16:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:18.433373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP2-0010-V1.0","title":"RORSI_0010_2004_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 2 (CVP2). This is a Commissioning measurement from 2004-09-11T19:30:04.500 to 2004-09-12T02:15:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp2-0010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:19.437668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-RSI-1/2/3-CVP2-0011-V1.0","title":"RORSI_0011_2004_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 2 (CVP2). This is a Commissioning measurement from 2004-10-09T19:19:48.000 to 2004-10-10T02:29:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp2-0011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:20.438775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-AST1-V1.0","title":"SREM RAW COUNT RATE DATA FOR AST1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the AST1 (STEINS) mission phase, when in the vicinity of asteroid 2867 STEINS.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:21.440126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-AST2-V1.0","title":"SREM RAW COUNT RATE DATA FOR AST2","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the AST2 (LUTETIA) mission phase, when in the vicinity of asteroid 21 LUTETIA.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:22.441192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-CR1-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:23.448778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-CR2-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR2","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:24.445613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-CR3-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR3","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:25.487602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-CR4A-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR4A","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:26.533104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-CR4B-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR4B","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 4B mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:27.445196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-CR5-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR5","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 5 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:28.451219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-CVP1-V1.0","title":"SREM RAW COUNT RATE DATA FOR CVP1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CVP1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:29.457395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-CVP2-V1.0","title":"SREM RAW COUNT RATE DATA FOR CVP2","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CVP2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:30.457538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EAR1-V1.0","title":"SREM RAW COUNT RATE DATA FOR EAR1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 1 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:31.468925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EAR2-V1.0","title":"SREM RAW COUNT RATE DATA FOR EAR2","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 2 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:32.460635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EAR3-V1.0","title":"SREM RAW COUNT RATE DATA FOR EAR3","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 3 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:33.468502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC1-MTP010-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP010","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 10 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:34.468497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC1-MTP011-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP011","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 11 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:35.467988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC1-MTP012-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP012","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 12 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:36.494350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC1-MTP013-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP013","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 13 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:37.543975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC2-MTP014-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP014","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 14 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:38.555748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC2-MTP015-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP015","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 15 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:39.474929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC2-MTP016-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP016","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 16 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:40.469667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC2-MTP017-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP017","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 17 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:41.484347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC3-MTP018-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP018","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 18 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:42.482722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC3-MTP019-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP019","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 19 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:43.485694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC3-MTP020-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP020","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 20 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:44.493537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC3-MTP021-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP021","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 21 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:45.487749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC4-MTP022-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP022","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 22 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:46.491704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC4-MTP023-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP023","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 23 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:47.508602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-ESC4-MTP024-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP024","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 24 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:48.552334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT1-MTP025-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP025","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 25 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:49.568292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT1-MTP026-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP026","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 26 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:50.496636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT1-MTP027-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP027","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 27 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:51.498249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT2-MTP028-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP028","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 28 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:52.501140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT2-MTP029-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP029","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 29 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:53.508682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT2-MTP030-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP030","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 30 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:54.509487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT3-MTP031-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP031","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 31 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:55.508975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT3-MTP032-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP032","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 32 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:56.515456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT3-MTP033-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP033","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 33 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:57.513916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT3-MTP034-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP034","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 34 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:58.522435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-EXT3-MTP035-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP035","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 35 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:59.569691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-MARS-V1.0","title":"SREM RAW COUNT RATE DATA FOR MARS","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the MARS mission phase, when in the vicinity of Mars.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:00.577168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-PRL-COM-V1.0","title":"SREM RAW COUNT RATE DATA FOR PRL","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the PRELANDING COMISSIONING mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-com-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:01.524821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-PRL-MTP003-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP003","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 3 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:02.528347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-PRL-MTP004-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP004","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 4 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:03.525747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-PRL-MTP005-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP005","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 5 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:04.522809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-PRL-MTP006-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP006","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 6 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:05.532056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-PRL-MTP007-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP007","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 7 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:06.533344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-PRL-MTP008-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP008","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 8 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:07.534807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-PRL-MTP009-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP009","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 9 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:08.532261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-2-RVM1-V1.0","title":"SREM RAW COUNT RATE DATA FOR RVM1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the RVM1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:09.541181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-AST1-V1.0","title":"SREM DERIVED FLUX DATA FOR AST1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the AST1 (STEINS) mission phase, when in the vicinity of asteroid 2867 STEINS.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:10.574610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-AST2-V1.0","title":"SREM DERIVED FLUX DATA FOR AST2","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the AST2 (LUTETIA) mission phase, when in the vicinity of asteroid 21 LUTETIA.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:11.625905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-CR1-V1.0","title":"SREM DERIVED FLUX DATA FOR CR1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:12.635068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-CR2-V1.0","title":"SREM DERIVED FLUX DATA FOR CR2","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:13.548555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-CR3-V1.0","title":"SREM DERIVED FLUX DATA FOR CR3","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:14.542602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-CR4A-V1.0","title":"SREM DERIVED FLUX DATA FOR CR4A","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:15.553185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-CR4B-V1.0","title":"SREM DERIVED FLUX DATA FOR CR4B","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 4B mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:16.551487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-CR5-V1.0","title":"SREM DERIVED FLUX DATA FOR CR5","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 5 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:17.557517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-CVP1-V1.0","title":"SREM DERIVED FLUX DATA FOR CVP1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CVP1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:18.547204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-CVP2-V1.0","title":"SREM DERIVED FLUX DATA FOR CVP2","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CVP2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:19.548519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EAR1-V1.0","title":"SREM DERIVED FLUX DATA FOR EAR1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 1 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:20.560414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EAR2-V1.0","title":"SREM DERIVED FLUX DATA FOR EAR2","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 2 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:21.585946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EAR3-V1.0","title":"SREM DERIVED FLUX DATA FOR EAR3","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 3 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:22.631832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC1-MTP010-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP010","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 10 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:23.646382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC1-MTP011-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP011","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 11 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:24.569086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC1-MTP012-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP012","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 12 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:25.568959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC1-MTP013-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP013","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 13 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:26.572699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC2-MTP014-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP014","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 14 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:27.571488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC2-MTP015-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP015","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 15 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:28.573289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC2-MTP016-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP016","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 16 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:29.582141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC2-MTP017-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP017","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 17 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:30.581342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC3-MTP018-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP018","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 18 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:31.585666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC3-MTP019-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP019","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 19 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:32.597990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC3-MTP020-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP020","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 20 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:33.640702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC3-MTP021-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP021","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 21 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:34.658924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC4-MTP022-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP022","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 22 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:35.589590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC4-MTP023-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP023","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 23 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:36.595121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-ESC4-MTP024-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP024","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 24 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:37.586439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT1-MTP025-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP025","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 25 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:38.591692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT1-MTP026-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP026","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 26 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:39.600163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT1-MTP027-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP027","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 27 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:40.603388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT2-MTP028-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP028","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 28 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:41.605030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT2-MTP029-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP029","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 29 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:42.607451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT2-MTP030-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP030","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 30 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:43.609917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT3-MTP031-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP031","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 31 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:44.655868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT3-MTP032-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP032","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 32 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:45.668368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT3-MTP033-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP033","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 33 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:46.612073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT3-MTP034-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP034","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 34 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:47.617092","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-EXT3-MTP035-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP035","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 35 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:48.610065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-MARS-V1.0","title":"SREM DERIVED FLUX DATA FOR MARS","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the MARS mission phase, when in the vicinity of Mars.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:49.613337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-PRL-COM-V1.0","title":"SREM DERIVED FLUX DATA FOR PRL","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the PRELANDING COMISSIONING mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-com-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:50.624211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-PRL-MTP003-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP003","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 3 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:51.623454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-PRL-MTP004-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP004","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 4 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:52.626932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-PRL-MTP005-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP005","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 5 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:53.625345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-PRL-MTP006-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP006","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 6 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:54.629986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-PRL-MTP007-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP007","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 7 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:55.668454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-PRL-MTP008-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP008","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 8 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:56.812280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-PRL-MTP009-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP009","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 9 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:57.725769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO-X-SREM-5-RVM1-V1.0","title":"SREM DERIVED FLUX DATA FOR RVM1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the RVM1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:58.633648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-A-CONSERT-2-AST2-V1.0","title":"CONSERT RAW DATA FOR THE LUTETIA FLY_BY","description":"This volume contains data and supporting documentation from the Rosetta Lutetia fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-a-consert-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:59.640504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-2-FSS-V1.0","title":"CONSERT RAW DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:00.644641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-2-FSS-V2.0","title":"CONSERT EDITED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-fss-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:01.644077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-2-LTS-V1.0","title":"CONSERT RAW DATA FOR THE LTS PHASE","description":"This volume contains data and supporting documentation from the Rosetta LTS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-lts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:02.643670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-2-SDL-V1.0","title":"CONSERT RAW DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:03.648454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-2-SDL-V2.0","title":"CONSERT EDITED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-sdl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:04.646651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-3-FSS-V1.0","title":"CONSERT CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:05.650717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-3-FSS-V1.1","title":"CONSERT CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-fss-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:06.677275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-3-SDL-V1.0","title":"CONSERT CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:07.725323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-3-SDL-V1.1","title":"CONSERT CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-sdl-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:08.733539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-4-FSS-V1.0","title":"CONSERT REFORMATTED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:09.658974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-C-CONSERT-4-SDL-V1.0","title":"CONSERT REFORMATTED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:10.662466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CR2-V1.0","title":"CONSERT RAW DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:11.663257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CR2-V2.0","title":"CONSERT EDITED DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:12.670289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CR4A-V1.0","title":"CONSERT RAW DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:13.669893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CR4A-V2.0","title":"CONSERT EDITED DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4a-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:14.672270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CR4B-V1.0","title":"CONSERT RAW DATA FOR THE CR4B PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:15.672553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CR4B-V2.0","title":"CONSERT EDITED DATA FOR THE CR4B PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4b-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:16.676160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CR5-V1.0","title":"CONSERT RAW DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:17.688806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CR5-V2.0","title":"CONSERT EDITED DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr5-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:18.732221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CVP-V1.0","title":"CONSERT RAW DATA FOR THE COMMISSIONING PHASE","description":"This volume contains data and supporting documentation from the Rosetta Commissiong mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:19.747068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CVP1-V1.0","title":"CONSERT EDITED DATA FOR THE COMMISSIONING PHASE PART 1","description":"This volume contains data and supporting documentation from the Rosetta Commissiong mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:20.685105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-CVP2-V1.0","title":"CONSERT EDITED DATA FOR THE COMMISSIONING PHASE PART 2","description":"This volume contains data and supporting documentation from the Rosetta Commissiong mission phase part 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:21.686748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-EAR1-V2.0","title":"CONSERT EDITED DATA FOR THE EARTH SWING_BY 1","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:22.685875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-EAR2-V2.0","title":"CONSERT EDITED DATA FOR THE EARTH SWING-BY 2","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:23.688971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-EAR3-V2.0","title":"CONSERT EDITED DATA FOR THE EARTH SWING-BY 3","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:24.694489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-GRND-V1.0","title":"CONSERT EDITED DATA FOR THE GRND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GRND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grnd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:25.691224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-GRNDBENCH-V1.0","title":"CONSERT CALIBRATION DATA FOR THE GROUND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GROUND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grndbench-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:26.699236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-MARS-V2.0","title":"CONSERT EDITED DATA FOR THE MARS FLY-BY","description":"This volume contains edited data and supporting documentation from the Rosetta Mars fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-mars-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:27.696588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-PDCS-V1.0","title":"CONSERT RAW DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:28.697384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-PDCS-V2.0","title":"CONSERT EDITED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-pdcs-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:29.738205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-PHC-V1.0","title":"CONSERT RAW DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:30.793294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-PHC-V2.0","title":"CONSERT EDITED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-phc-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:31.704225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-RVM1-V1.0","title":"CONSERT RAW DATA FOR THE RVM1 PHASE","description":"This volume contains data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:32.710844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-2-RVM1-V2.0","title":"CONSERT EDITED DATA FOR THE RVM1 PHASE","description":"This volume contains data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-rvm1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:33.709945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-CR2-V1.0","title":"CONSERT CALIBRATED DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:34.712565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-CR2-V2.0","title":"CONSERT CALIBRATED DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:35.714876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-CR4A-V1.0","title":"CONSERT CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:36.718280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-CR4A-V2.0","title":"CONSERT CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr4a-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:37.722028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-CR5-V1.0","title":"CONSERT CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:38.720713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-CR5-V2.0","title":"CONSERT CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr5-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:39.717506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-EAR2-V1.0","title":"CONSERT CALIBRATED DATA FOR THE EAR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:40.752423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-EAR2-V2.0","title":"CONSERT CALIBRATED DATA FOR THE EAR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:41.800059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-EAR3-V1.0","title":"CONSERT CALIBRATED DATA FOR THE EAR3 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:42.814248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-EAR3-V2.0","title":"CONSERT CALIBRATED DATA FOR THE EAR3 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:43.728231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-GRND-V1.0","title":"CONSERT CALIBRATED DATA FOR THE GROUND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GROUND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-grnd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:44.736413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-GRND-V1.1","title":"CONSERT CALIBRATED DATA FOR THE GROUND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GROUND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-grnd-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:45.733875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-MARS-V1.0","title":"CONSERT CALIBRATED DATA FOR THE MARS PHASE","description":"This volume contains data and supporting documentation from the Rosetta MARS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:46.740858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-MARS-V2.0","title":"CONSERT CALIBRATED DATA FOR THE MARS PHASE","description":"This volume contains data and supporting documentation from the Rosetta MARS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-mars-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:47.740912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-PDCS-V1.0","title":"CONSERT CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:48.740667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-PDCS-V1.1","title":"CONSERT CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-pdcs-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:49.741130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-PHC-V1.0","title":"CONSERT CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:50.749266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-3-PHC-V2.0","title":"CONSERT CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-phc-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:51.763907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-CR2-V1.0","title":"CONSERT REFORMATTED DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:52.812088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-CR4A-V1.0","title":"CONSERT REFORMATTED DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:53.822912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-CR5-V1.0","title":"CONSERT REFORMATTED DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:54.752414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-EAR2-V1.0","title":"CONSERT REFORMATTED DATA FOR THE EAR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:55.760277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-EAR3-V1.0","title":"CONSERT REFORMATTED DATA FOR THE EAR3 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:56.760423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-GRND-V1.0","title":"CONSERT REFORMATTED DATA FOR THE GROUND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GROUND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-grnd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:57.762618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-MARS-V1.0","title":"CONSERT REFORMATTED DATA FOR THE MARS PHASE","description":"This volume contains data and supporting documentation from the Rosetta MARS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:58.765216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-PDCS-V1.0","title":"CONSERT REFORMATTED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:59.768617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-CAL-CONSERT-4-PHC-V1.0","title":"CONSERT REFORMATTED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:00.769597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-E-CONSERT-2-EAR1-V1.0","title":"CONSERT RAW DATA FOR THE EARTH SWING_BY 1","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:01.772538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-E-CONSERT-2-EAR2-V1.0","title":"CONSERT RAW DATA FOR THE EARTH SWING-BY 2","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:02.773773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-E-CONSERT-2-EAR3-V1.0","title":"CONSERT RAW DATA FOR THE EARTH SWING-BY 3","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:03.820324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"RO/RL-M-CONSERT-2-MARS-V1.0","title":"CONSERT RAW DATA FOR THE MARS FLY-BY","description":"This volume contains data and supporting documentation from the Rosetta Mars fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-m-consert-2-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:04.834582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SAKIG-C-IMF-3-RDR-HALLEY-V1.0","title":"SAKIGAKE MAGNETIC FIELD DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-imf-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:05.780365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SAKIG-C-SOW-3-RDR-HALLEY-V1.0","title":"SAKIGAKE SOLAR WIND DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-sow-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:06.789012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-A-NAVCAM-2-EDR-ANNEFRANK-V1.0","title":"STARDUST NAVCAM IMAGES OF ASTEROID ANNEFRANK","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the asteroid Annefrank encounter (between July 22, 2002 and December 2, 2002.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:07.779084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-A-NAVCAM-2-EDR-ANNEFRANK-V2.0","title":"STARDUST NAVCAM IMAGES OF ASTEROID ANNEFRANK","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the asteroid Annefrank encounter (between July 22, 2002 and December 2, 2002.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:08.781825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-A-NAVCAM-2-EDR-ANNEFRANK-V3.0","title":"STARDUST NAVCAM EDR DATA","description":"This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:09.788593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-A-NAVCAM-3-RDR-ANNEFRANK-V1.0","title":"STARDUST NAVCAM RDR DATA","description":"This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-3-rdr-annefrank-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:10.792418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-DFMI-2-EDR-WILD2-V1.0","title":"STARDUST DFMI WILD 2 ENCOUNTER EDR DATA","description":"This volume contains the EDR data collected by the STARDUST Dust Flux Monitor Instrument (DFMI) during Wild 2 encounter. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dfmi-2-edr-wild2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:11.791109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-DYNSCI-2-WILD2-V1.0","title":"STARDUST WILD 2 ENCOUNTER DYNAMIC SCIENCE DATA VOLUME_ID =","description":"This volume contains the Dynamic Science Experiment data collected by the STARDUST spacecraft during Wild 2 encounter. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dynsci-2-wild2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:12.797031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-2-EDR-WILD2-V1.0","title":"STARDUST NAVCAM IMAGES OF COMET WILD 2","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:13.798602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-2-EDR-WILD2-V2.0","title":"STARDUST NAVCAM IMAGES OF COMET WILD 2","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:14.831565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-2-EDR-WILD2-V3.0","title":"STARDUST NAVCAM EDR DATA","description":"This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:15.886993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-3-RDR-WILD2-V1.0","title":"STARDUST NAVCAM CALIBRATED IMAGES OF COMET WILD 2","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) These images have been calibrated using the best available information at the time of creation. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set. Final data preparation for PDS archiving was done by personnel of the Small Bodies Node","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:16.797237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-3-RDR-WILD2-V2.0","title":"STARDUST NAVCAM CALIBRATED IMAGES OF COMET WILD 2","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) These images have been calibrated using the best available information at the time of creation. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set. Final data preparation for PDS archiving was done by personnel of the Small Bodies Node","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:17.800404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-3-RDR-WILD2-V3.0","title":"STARDUST NAVCAM RDR DATA","description":"This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:18.803049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V1.0","title":"SBN DELIVERY VOLUME 5, 2005","description":"This delivery volume holds the data set containing the basic tri-axial ellipsoid shape model of comet 81P/Wild 2 derived from Stardust NAVCAM images.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:19.808451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V2.0","title":"SBN DELIVERY VOLUME 3, 2006","description":"This delivery volume holds the data sets containing both the basic tri-axial ellipsoid shape model and the detailed plate model of comet 81P/Wild 2. Both were derived from Stardust NAVCAM images.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:20.810198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V2.1","title":"SBN DELIVERY VOLUME 1, 2007","description":"This delivery volume holds the data sets containing both the basic tri-axial ellipsoid shape model and the detailed plate model of comet 81P/Wild 2. Both were derived from Stardust NAVCAM images. Version 2.1 of this data set includes corrections to file desriptor keywords in two of the data file labels.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v2.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:21.814251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-SRC-2-TEMPS-V1.0","title":"STARDUST SRC TEMPERATURE MEASUREMENTS","description":"This volume contains measurements from multiple temperature sensors in the Sample Return Collector.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-2-temps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:22.812469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C-SRC-6-GEOMETRY-V1.0","title":"STARDUST SRC GEOMETRY MEASUREMENTS","description":"This volume contains data describing the geometry and orientation of the spacecraft and dust collector plate during the two insterstellar dust collecting phases and the encounter with comet Wild 2.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-6-geometry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:23.813629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C/CAL-NAVCAM-2-NEXT-TEMPEL1-V1.0","title":"STARDUST-NEXT NAVCAM EDR DATA","description":"This volume contains the data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-2-next-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:24.821632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C/CAL-NAVCAM-3-NEXT-TEMPEL1-V1.0","title":"STARDUST-NEXT NAVCAM RDR DATA","description":"This volume contains the data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-3-next-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:25.841167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C/D-CIDA-1-EDF/HK-V1.0","title":"STARDUST CIDA DATA","description":"This volume contains the data collected by the STARDUST Cometary and Interstellar Dust Analyser (CIDA) during the whole mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-1-edf_hk-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:26.892558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C/D-CIDA-2/3-NEXT-TEMPEL1-V1.0","title":"STARDUST-NEXT CIDA EDR/RDR DATA","description":"This volume contains the data collected by the STARDUST Cometary and Interstellar Dust Analyzer (CIDA) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-2_3-next-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:27.905124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SDU-C/D-DFMI-2/3-NEXT-TEMPEL1-V1.0","title":"STARDUST-NEXT DFMI EDR/RDR DATA","description":"This volume contains the data collected by the STARDUST Dust Flux Monitor Instrument (DFMI) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-dfmi-2_3-next-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:28.824749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SOHO-C-LASCO-4-COMETIMAGES-V1.0","title":"COMETIMAGES DELIVERY VOLUME","description":"This volume contains the data for the SOHO LASCO COMET IMAGES V1.0 data set, ID: SOHO-C-LASCO-4-COMETIMAGES-V1.0. The data set was submitted by Matthew Knight. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-4-cometimages-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:29.871541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SOHO-C-LASCO-5-KREUTZPHOTOM-V1.0","title":"KREUTZPHOTOM DELIVERY VOLUME","description":"This volume contains the data for the SOHO LASCO Comet Photometry V1.0 data set, ID: SOHO-C-LASCO-5-KREUTZPHOTOM-V1.0. The data set was submitted by Matthew Knight. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-5-kreutzphotom-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:30.875058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"STARDUST-CAL-NC-2-PREFLIGHT-V1.0","title":"VOLUME 1: SDU NAVCAM PREFLIGHT CALIBRATION","description":"This volume contains the images taken by the STARDUST navigation camera on April 8-10, 1998, prior to flight. The images were acquired while the flight camera unit was in a thermal vacuum chamber and conditions varied to fully characterize the flight unit. A calibration report is also included to describe the calibration process and concerns. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-cal-nc-2-preflight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:31.836107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"STARDUST-CAL-NC-2-PREFLIGHT-V2.0","title":"STARDUST NAVCAM RAW PREFLIGHT CALIBRATION IMAGES","description":"This volume contains the raw, preflight, thermal-vacuum calibration images collected by the Navigation Camera (NAVCAM) on 8-10 April 1998 for the Stardust mission. This is version 2.0 of the dataset, in which the original image data were converted from the standard PDS IMG format to the FITS format; no corrections were applied. The NExT mission to comet 9P/Tempel 1 used some of these preflight data to check the exposure time offsets due to shutter reversal and to determine dark current rates. This dataset supersedes version 1.0 which was safed by PDS because the data were not considered to be scientifically useful for the Stardust mission. This volume also contains detailed documentation about the Stardust and NExT missions, spacecraft, instrument, and data set, as well as calibration information and PDS-required index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-cal-nc-2-preflight-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:32.836326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"STARDUST-C/E/L-DFMI-2-EDR-V1.0","title":"VOLUME 1: SDU DUST FLUX MONITOR INSTRUMENT","description":"This volume contains the data taken by the STARDUST Dust Flux Monitor Instrument during flight from February 19, 1999 until September 13, 1999. A calibration report is also included to describe the calibration process and concerns. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-dfmi-2-edr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:33.841028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"STARDUST-C/E/L-NC-2-EDR-V1.0","title":"VOLUME 1: SDU NAVCAM EARLY CRUISE IMAGES","description":"This volume contains the images taken by the STARDUST navigation camera in flight from the launch of the satellite, February 7, 2000, until October 29, 2001. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-nc-2-edr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:34.845119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"SUISEI-C-ESP-3-RDR-HALLEY-V1.0","title":"SUISEI SOLAR WIND EXPERIMENT DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/suisei-c-esp-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:35.842982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-DUCMA-3-RDR-HALLEY-V1.0","title":"VEGA1 DUCMA DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:36.852966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-IKS-2-RDR-HALLEY-V1.0","title":"VEGA 1 IKS IMAGE MODE DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:38.007945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-IKS-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA 1 IKS HIGH-RES IR SPECTRA of COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:38.912621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-MISCHA-3-RDR-HALLEY-V1.0","title":"VEGA1 MISCHA DATA FOR COMET 1P/HALLEY ENCOUNTER","description":"Data extracted from the HAL_1003 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:39.855388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-PM1-2-RDR-HALLEY-V1.0","title":"VEGA 1 PLASMA ENERGY ANALYZER DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:40.851800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-PUMA-2-RDR-HALLEY-V1.0","title":"VEGA 1 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:41.855532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-PUMA-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA 1 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:42.856774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-SP1-2-RDR-HALLEY-V1.0","title":"VEGA1 SP1 DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:43.862329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-SP2-2-RDR-HALLEY-V1.0","title":"VEGA1 SP2 DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:44.861775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-TNM-2-RDR-HALLEY-V1.0","title":"VEGA1 TUNDE-M DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tnm-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:45.863796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-TVS-2-RDR-HALLEY-V1.0","title":"VEGA1 TELEVISION SYSTEM DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:46.867755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C-TVS-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA1 PROCESSED TELEVISION DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:47.871481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-C/SW-MISCHA-3-RDR-ORIGINAL-V1.0","title":"VEGA1 MISCHA ORIGINAL SUBMISSION FOR CRUISE/HALLEY","description":"Data extracted from the HAL_1004 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c_sw-mischa-3-rdr-original-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:48.910460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA1-SW-MISCHA-3-RDR-CRUISE-V1.0","title":"VEGA1 MISCHA DATA FROM PRE-HALLEY CRUISE","description":"Data extracted from the HAL_1003 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-sw-mischa-3-rdr-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:49.958536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-DUCMA-3-RDR-HALLEY-V1.0","title":"VEGA2 DUCMA DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:50.873581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-PM1-2-RDR-HALLEY-V1.0","title":"VEGA 2 PLASMA ENERGY ANALYZER DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:51.866938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-PUMA-2-RDR-HALLEY-V1.0","title":"VEGA 2 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:52.878474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-PUMA-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA 2 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:53.880319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-SP1-2-RDR-HALLEY-V1.0","title":"VEGA2 SP1 DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:54.882711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-SP2-2-RDR-HALLEY-V1.0","title":"VEGA2 SP2 DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:55.880436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-TVS-2-RDR-HALLEY-V1.0","title":"VEGA2 UNPROCESSED TELEVISION DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:56.886426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-TVS-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA2 TV DATA PROCESSED BY KFKI, FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:57.890903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C-TVS-5-RDR-HALLEY-TRANSFORM-V1.0","title":"VEGA2 TRANSFORMED TV IMAGE OF COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-5-rdr-halley-transform-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:58.885524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VEGA2-C/SW-MISCHA-3-RDR-ORIGINAL-V1.0","title":"VEGA2 MISCHA ORIGINAL SUBMISSION FOR CRUISE/HALLEY","description":"Data extracted from the HAL_1004 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:59.918638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"VG2-J-UVS-0--SL9-NULL-RESULTS-V1.0","title":"VOLUME 1009","description":"This volume contains the data for the VOYAGER 2 JUPITER/SHOEMAKER-LEVY 9 UVS NULL RESULTS V1.0 data set, ID: VG2-J-UVS-0--SL9-NULL-RESULTS-V1.0. A statement of null results is included for the Voyager 2 UVS instrument.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vg2-j-uvs-0--sl9-null-results-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:29:00.971943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs::1.0","title":"DART Telescopic Observation Archive","description":"The DART Telescopic Observation Bundle contains raw, calibrated, and derived data products taken from several ground observations in support of the DART mission. The bundle also includes documentation organized by ground observatory that describes the observatory data collections.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/bundle.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.736899Z","keywords":["Lowell"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_lightcurve_derived_parameters::1.0","title":"ASTEROID LIGHTCURVE DERIVED DATA","description":"This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1913-01-01","stop_date":"2017-02-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/bundle_ast_lightcurve_derived_parameters.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/bundle_ast_lightcurve_derived_parameters.xml","scraped_at":"2026-02-25T20:02:10.736962Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-mb.reddy.spectra::1.0","title":"REDDY MAIN BELT ASTEROID SPECTRA","description":"This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(101) Helena","(105) Artemis","(1086) Nata","(1124) Stroobantia","(113) Amalthea","(1145) Robelmonte","(12) Victoria","(121) Hermione","(1251) Hedera","(1284) Latvia","(130) Elektra","(1329) Eliane","(135) Hertha","(138) Tolosa","(1503) Kuopio","(1616) Filipoff","(1626) Sadeya","(167) Urda","(170) Maria","(1717) Arlon","(182) Elsa","(1830) Pogson","(184) Dejopeja","(1883) Rimito","(192) Nausikaa","(1929) Kollaa","(2) Pallas","(20) Massalia","(2011) Veteraniya","(2014) Vasilevskis","(2045) Peking","(213) Lilaea","(214) Aschera","(22) Kalliope","(233) Asterope","(243) Ida","(253) Mathilde","(255) Oppavia","(256) Walpurga","(264) Libussa","(273) Atropos","(276) Adelheid","(283) Emma","(289) Nenetta","(30) Urania","(306) Unitas","(308) Polyxo","(317) Roxane","(349) Dembowska","(37) Fides","(379) Huenna","(385) Ilmatar","(389) Industria","(4) Vesta","(403) Cyane","(41) Daphne","(419) Aurelia","(434) Hungaria","(44) Nysa","(442) Eichsfeldia","(446) Aeternitas","(45) Eugenia","(458) Hercynia","(470) Kilia","(472) Roma","(482) Petrina","(502) Sigune","(504) Cora","(51) Nemausa","(56) Melete","(569) Misa","(620) Drakonia","(63) Ausonia","(64) Angelina","(66) Maja","(663) Gerlinde","(670) Ottegebe","(704) Interamnia","(741) Botolphia","(762) Pulcova","(809) Lundia","(84) Klio","(858) El Djezair","(863) Benkoela","(87) Sylvia","(872) Holda","(877) Walkure","(9) Metis","(951) Gaspra","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2001-03-11","stop_date":"2012-06-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/bundle_gbo.ast-mb.reddy.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/bundle_gbo.ast-mb.reddy.spectra.xml","scraped_at":"2026-02-25T20:02:10.736972Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.2mass.phot::1.0","title":"2MASS ASTEROID AND COMET SURVEY","description":"This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2MASS Camera - North","2MASS 1.3m Telescope at Fred L. Whipple Observatory","2MASS Camera - South","2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"],"instrument_hosts":["Fred L. Whipple Observatory","Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1997-06-07","stop_date":"2001-02-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/bundle_gbo.ast.2mass.phot.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/bundle_gbo.ast.2mass.phot.xml","scraped_at":"2026-02-25T20:02:10.736978Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:tno-centaur_diam-albedo-density::1.0","title":"TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0","description":"This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":[],"start_date":"1986-01-01","stop_date":"2018-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/bundle_tno-centaur_diam-albedo-density.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/bundle_tno-centaur_diam-albedo-density.xml","scraped_at":"2026-02-25T20:02:10.736981Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.polarimetry::1.0","title":"POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS","description":"The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)","8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory","Sanglok Observatory Photometer-Polarimeter","RCC Richey-Chretien Telescope at Institute of Astrophysics","KPNO Single Channel Polarimeter","1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory","McDonald Observatory Linear Polarimeter","2.1-m Struve Warner &"],"instrument_hosts":["European Southern Observatory on Cerro Paranal","Institute of Astrophysics","Kitt Peak National Observatory","McDonald Observatory"],"data_types":[],"start_date":"1972-04-08","stop_date":"2012-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/bundle_compil.tno-centaur.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/bundle_compil.tno-centaur.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.736987Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.dione.shape-model::1.0","title":"GASKELL DIONE SHAPE MODEL","description":"The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS"],"targets":["Saturn IV (Dione)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":[],"start_date":"2004-12-14","stop_date":"2010-12-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/bundle_gaskell.dione.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/bundle_gaskell.dione.shape-model.xml","scraped_at":"2026-02-25T20:02:10.736991Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.mimas.shape-model::1.0","title":"GASKELL MIMAS SHAPE MODEL","description":"The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS","VOYAGER"],"targets":["Saturn I (Mimas)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","VOYAGER 1","CASSINI ORBITER"],"data_types":[],"start_date":"1980-11-12","stop_date":"2011-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/bundle_gaskell.mimas.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/bundle_gaskell.mimas.shape-model.xml","scraped_at":"2026-02-25T20:02:10.736996Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.phoebe.shape-model::1.0","title":"GASKELL PHOEBE SHAPE MODEL","description":"The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS"],"targets":["Saturn IX (Phoebe)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":[],"start_date":"2004-06-11","stop_date":"2004-06-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/bundle_gaskell.phoebe.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/bundle_gaskell.phoebe.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737000Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.tethys.shape-model::1.0","title":"GASKELL TETHYS SHAPE MODEL","description":"The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS"],"targets":["Saturn III (Tethys)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":[],"start_date":"2004-10-28","stop_date":"2010-08-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/bundle_gaskell.tethys.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/bundle_gaskell.tethys.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737003Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.smass.spectra::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0","description":"The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(541) Deborah","(4179) Toutatis","(1166) Sakuntala","(38) Leda","(495) Eulalia","(808) Merxia","(234) Barbara","(7341) 1991 VK","(631) Philippina","(319) Leona","(3494) Purplemountain","(4606) Saheki","(3748) Tatum","(111) Ate","(2645) Daphneplane","(297) Caecilia","(314) Rosalia","(3321) Dasha","(5143) Heracles","(169) Zelia","(4038) Kristina","(86) Semele","(2538) Vanderlinden","(4031) Mueller","(722) Frieda","(509) Iolanda","(126) Velleda","(4219) Nakamura","(1451) Grano","(28) Bellona","(39) Laetitia","(8) Flora","(415690) 1992 UB","(3935) Toatenmongakkai","1991 XB","(339) Dorothea","(36) Atalante","(4165) Didkovskij","(4640) Hara","(248) Lameia","(2091) Sampo","(374) Burgundia","(481) Emita","(702) Alauda","(3220) Murayama","(402) Chloe","(6) Hebe","(32) Pomona","(2365) Interkosmos","(239) Adrastea","(204) Kallisto","(3332) Raksha","(3760) Poutanen","(54) Alexandra","(4370) Dickens","(4156) Okadanoboru","(4373) Crespo","(1375) Alfreda","(471) Papagena","(511) Davida","(1697) Koskenniemi","(3578) Carestia","(470) Kilia","(137) Meliboea","(2923) Schuyler","(384) Burdigala","(4104) Alu","(61) Danae","(3528) Counselman","(2074) Shoemaker","(3167) Babcock","(10) Hygiea","(2174) Asmodeus","(2299) Hanko","(4761) Urrutia","(480) Hansa","(55) Pandora","(1626) Sadeya","(2215) Sichuan","(1279) Uganda","(2775) Odishaw","(4085) Weir","(3155) Lee","(3915) Fukushima","(8176) 1991 WA","(529) Preziosa","(4353) Onizaki","(4635) Rimbaud","(653) Berenike","(2259) Sofievka","(243) Ida","(416) Vaticana","(737) Arequipa","(2140) Kemerovo","(3759) Piironen","(138) Tolosa","(1534) Nasi","(803) Picka","(72) Feronia","(1577) Reiss","(1325) Inanda","(2558) Viv","(2442) Corbett","(3677) Magnusson","(371) Bohemia","(1772) Gagarin","(3381) Mikkola","(4956) Noymer","(582) Olympia","(1143) Odysseus","(134) Sophrosyne","(2590) Mourao","(639) Latona","(350) Ornamenta","(3792) Preston","(2070) Humason","(128) Nemesis","(4) Vesta","(441) Bathilde","(230) Athamantis","(2107) Ilmari","(256) Walpurga","(43) Ariadne","(519) Sylvania","(3657) Ermolova","(1906) Naef","(2444) Lederle","(599) Luisa","(2908) Shimoyama","(185) Eunike","(2011) Veteraniya","(1653) Yakhontovia","(14) Irene","(196) Philomela","(4006) Sandler","(1145) Robelmonte","(2078) Nanking","(235) Carolina","(787) Moskva","(2599) Veseli","(2965) Surikov","(879) Ricarda","(2130) Evdokiya","(1393) Sofala","(3431) Nakano","(1749) Telamon","(3559) Violaumayer","(7474) 1992 TC","(149) Medusa","(82) Alkmene","(22) Kalliope","(1198) Atlantis","(1501) Baade","(7) Iris","(3740) Menge","(1712) Angola","(245) Vera","(4062) Schiaparelli","(4376) Shigemori","(4215) Kamo","(4562) Poleungkuk","(3268) Desanctis","(131) Vala","(788) Hohensteina","(1584) Fuji","(918) Itha","(1110) Jaroslawa","(116) Sirona","(3501) Olegiya","(4159) Freeman","(518) Halawe","(88) Thisbe","(2420) Ciurlionis","(5065) Johnstone","(1967) Menzel","(65706) 1992 NA","(42) Isis","(430) Hybris","(4440) Tchantches","(2060) Chiron","(512) Taurinensis","(68) Leto","(3944) Halliday","(3158) Anga","(446) Aeternitas","(2159) Kukkamaki","(3674) Erbisbuhl","(1646) Rosseland","(2204) Lyyli","(4005) Dyagilev","(2024) Mclaughlin","(346) Hermentaria","(292) Ludovica","(456) Abnoba","(1358) Gaika","(1892) Lucienne","(3963) Paradzhanov","(1722) Goffin","(4546) Franck","(1679) Nevanlinna","(1302) Werra","(2327) Gershberg","(290) Bruna","(1934) Jeffers","(354) Eleonora","(1781) Vanbiesbroeck","(1084) Tamariwa","(1478) Vihuri","(5145) Pholus","(1257) Mora","(1658) Innes","(4673) Bortle","(3231) Mila","(2728) Yatskiv","(724) Hapag","(1607) Mavis","(1463) Nordenmarkia","(218) Bianca","(1264) Letaba","(2966) Korsunia","(1995) Hajek","(4282) Endate","(1651) Behrens","(2128) Wetherill","(291) Alice","(4939) Scovil","(1289) Kutaissi","(3523) Arina","(2143) Jimarnold","(25) Phocaea","(563) Suleika","(774) Armor","(2790) Needham","(289) Nenetta","(2403) Sumava","(1063) Aquilegia","(1854) Skvortsov","(2014) Vasilevskis","(4145) Maximova","(915) Cosette","(73) Klytia","(158) Koronis","(1725) Crao","Multiple Asteroids","(1471) Tornio","(231) Vindobona","(3109) Machin","(683) Lanzia","(1807) Slovakia","(2440) Educatio","(3869) Norton","(3285) Ruthwolfe","(2149) Schwambraniya","(1165) Imprinetta","(29) Amphitrite","(2503) Liaoning","(1929) Kollaa","(349) Dembowska","(237) Coelestina","(3586) Vasnetsov","(71) Niobe","(1907) Rudneva","(1933) Tinchen","(1480) Aunus","(2119) Schwall","(467) Laura","(477) Italia","(3968) Koptelov","(1743) Schmidt","(53) Kalypso","(2017) Wesson","(811) Nauheima","(345) Tercidina","(211) Isolda","(863) Benkoela","(2253) Espinette","(1144) Oda","(157) Dejanira","(4002) Shinagawa","(4025) Ridley","(720) Bohlinia","(3628) Boznemcova","(550) Senta","(851) Zeissia","(5118) Elnapoul","(4510) Shawna","(186) Celuta","(18) Melpomene","(3354) Mcnair","(1379) Lomonosowa","(2920) Automedon","(287) Nephthys","(752) Sulamitis","(474) Prudentia","(900) Rosalinde","(221) Eos","(1071) Brita","(11066) Sigurd","(951) Gaspra","(1273) Helma","(1518) Rovaniemi","(732) Tjilaki","(2946) Muchachos","(813) Baumeia","(167) Urda","(2105) Gudy","(3665) Fitzgerald","(1628) Strobel","(675) Ludmilla","(3153) Lincoln","(4147) Lennon","(124) Alkeste","(2113) Ehrdni","(4948) Hideonishimura","(3999) Aristarchus","(3) Juno","(2098) Zyskin"],"instruments":["2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory"],"data_types":[],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/bundle_gbo.ast.smass.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/bundle_gbo.ast.smass.spectra.xml","scraped_at":"2026-02-25T20:02:10.737025Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.7-color-survey::1.0","title":"SEVEN COLOR ASTEROID SURVEY","description":"The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Primo I Photometer","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"1992-07-01","stop_date":"1994-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/bundle_gbo.ast.7-color-survey.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/bundle_gbo.ast.7-color-survey.xml","scraped_at":"2026-02-25T20:02:10.737031Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.satellite.polarimetry::1.0","title":"POLARIMETRY OF PLANETARY SATELLITES","description":"This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Satellites"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1966-12-12","stop_date":"2011-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/bundle_compil.satellite.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/bundle_compil.satellite.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.737035Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.pluto-charon.mutual-events::1.0","title":"PLUTO-CHARON MUTUAL EVENTS","description":"Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(134340) Pluto"],"instruments":["Tinsley Photometer","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory","Tinsley Photometer","61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory","McDonald P45a Two-Channel Photometer","2.7m Telescope","McDonald P45a Two-Channel Photometer","2.1-m Struve Warner &","McDonald P45a Two-Channel Photometer","91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory","Literature Compilation"],"instrument_hosts":["Mauna Kea Observatory","Mauna Kea Observatory","McDonald Observatory","McDonald Observatory","McDonald Observatory"],"data_types":[],"start_date":"1985-01-16","stop_date":"1990-09-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/bundle_gbo.pluto-charon.mutual-events.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/bundle_gbo.pluto-charon.mutual-events.xml","scraped_at":"2026-02-25T20:02:10.737041Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.ecas.phot::1.0","title":"EIGHT COLOR ASTEROID SURVEY","description":"This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1979-05-31","stop_date":"1983-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/bundle_gbo.ast.ecas.phot.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/bundle_gbo.ast.ecas.phot.xml","scraped_at":"2026-02-25T20:02:10.737045Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.albedos::1.0","title":"ASTEROID ALBEDOS","description":"This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1973-01-01","stop_date":"2001-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/bundle_compil.ast.albedos.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/bundle_compil.ast.albedos.xml","scraped_at":"2026-02-25T20:02:10.737050Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.magnitude-slope::1.0","title":"ASTEROID ABSOLUTE MAGNITUDES","description":"Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1990-12-02","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/bundle_compil.ast.magnitude-slope.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/bundle_compil.ast.magnitude-slope.xml","scraped_at":"2026-02-25T20:02:10.737053Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.names::1.0","title":"ASTEROID NAMES AND DISCOVERY","description":"This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1801-01-01","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/bundle_compil.ast.names.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/bundle_compil.ast.names.xml","scraped_at":"2026-02-25T20:02:10.737057Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.radar-properties::1.0","title":"ASTEROID RADAR","description":"This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1968-01-01","stop_date":"2011-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/bundle_compil.ast.radar-properties.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/bundle_compil.ast.radar-properties.xml","scraped_at":"2026-02-25T20:02:10.737061Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.jpl.radar.shape_models::1.0","title":"Radar shape models of asteroids compiled by Lawrence V1.0","description":"This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(33342) 1998 WT24","(10115) 1992 SK","(276049) 2002 CE26","(29075) 1950 DA","(341843) 2008 EV5","(54509) YORP","(136617) 1994 CC","(2100) Ra-Shalom","(4486) Mithra","(4660) Nereus","(66391) 1999 KW4"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":[],"start_date":"1999-02-07","stop_date":"2009-06-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/bundle_gbo.ast.jpl.radar.shape_models.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/bundle_gbo.ast.jpl.radar.shape_models.xml","scraped_at":"2026-02-25T20:02:10.737068Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.ubv-photometry::1.0","title":"UBV MEAN ASTEROID COLORS","description":"This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1951-01-01","stop_date":"1989-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/bundle_compil.ast.ubv-photometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/bundle_compil.ast.ubv-photometry.xml","scraped_at":"2026-02-25T20:02:10.737072Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.magnitude-phase::1.0","title":"KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS","description":"A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1978-04-28","stop_date":"2008-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/bundle_compil.ast.magnitude-phase.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/bundle_compil.ast.magnitude-phase.xml","scraped_at":"2026-02-25T20:02:10.737075Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.colors::1.0","title":"TNO AND CENTAUR COLORS","description":"This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Multiple Comets"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1985-09-23","stop_date":"2014-03-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/bundle_compil.tno-centaur.colors.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/bundle_compil.tno-centaur.colors.xml","scraped_at":"2026-02-25T20:02:10.737079Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.lightcurves::1.0","title":"TRANS-NEPTUNIAN OBJECT LIGHTCURVES","description":"This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(19521) Chaos","(79360) Sila-Nunam","(91133) 1998 HK151","1998 XY95","(40314) 1999 KR16","(47932) 2000 GN171","(150642) 2001 CZ31","(82155) 2001 FZ173","(38628) Huya","Multiple Asteroids","(15875) 1996 TP66","(19255) 1994 VK8","(19308) 1996 TO66","(26181) 1996 GQ21","(26375) 1999 DE9","(33128) 1998 BU48","(33340) 1998 VG44"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1997-08-27","stop_date":"2001-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/bundle_compil.tno-centaur.lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/bundle_compil.tno-centaur.lightcurves.xml","scraped_at":"2026-02-25T20:02:10.737083Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.masses::1.0","title":"ASTEROID MASSES","description":"This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1991-01-01","stop_date":"2012-04-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/bundle_compil.ast.masses.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/bundle_compil.ast.masses.xml","scraped_at":"2026-02-25T20:02:10.737087Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.vilas.spectra::1.0","title":"VILAS ASTEROID SPECTRA","description":"This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(102) Miriam","(1036) Ganymed","(1162) Larissa","(1167) Dubiago","(1172) Aneas","(1208) Troilus","(121) Hermione","(130) Elektra","(134) Sophrosyne","(1368) Numidia","(1390) Abastumani","(142) Polana","(1467) Mashona","(1512) Oulu","(152) Atala","(153) Hilda","(165) Loreley","(17) Thetis","(1722) Goffin","(181) Eucharis","(1866) Sisyphus","(1867) Deiphobus","(187) Lamberta","(19) Fortuna","(190) Ismene","(2) Pallas","(2113) Ehrdni","(2241) Alcathous","(225) Henrietta","(2357) Phereclos","(2674) Pandarus","(276) Adelheid","(292) Ludovica","(31) Euphrosyne","(326) Tamara","(3288) Seleucus","(334) Chicago","(368) Haidea","(375) Ursula","(407) Arachne","(409) Aspasia","(41) Daphne","(420) Bertholda","(433) Eros","(466) Tisiphone","(483) Seppina","(495) Eulalia","(499) Venusia","(528) Rezia","(54) Alexandra","(559) Nanon","(566) Stereoskopia","(570) Kythera","(606) Brangane","(624) Hektor","(643) Scheherezade","(65) Cybele","(654) Zelinda","(66) Maja","(692) Hippodamia","(695) Bella","(709) Fringilla","(733) Mocia","(748) Simeisa","(76) Freia","(773) Irmintraud","(776) Berbericia","(797) Montana","(87) Sylvia","(877) Walkure","(884) Priamus","(908) Buda","(914) Palisana","(940) Kordula","Multiple Asteroids"],"instruments":["CTIO 1.5-meter Cassegrain Spectrograph","1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory","Fink Spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station","CTIO 1.0m 2DFrutti Spectrograph","1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory","Larson IHW spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"],"instrument_hosts":["Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station","Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station"],"data_types":[],"start_date":"1982-02-04","stop_date":"1998-09-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/bundle_gbo.ast.vilas.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/bundle_gbo.ast.vilas.spectra.xml","scraped_at":"2026-02-25T20:02:10.737098Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-vesta.reddy.spectra::1.0","title":"REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA","description":"This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(4) Vesta"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2010-03-27","stop_date":"2010-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/bundle_gbo.ast-vesta.reddy.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/bundle_gbo.ast-vesta.reddy.spectra.xml","scraped_at":"2026-02-25T20:02:10.737104Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.24-color-survey::1.0","title":"24-COLOR ASTEROID SURVEY","description":"This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(1015) Christa","(1019) Strackea","(1025) Riema","(1036) Ganymed","(105) Artemis","(1055) Tynka","(1058) Grubba","(106) Dione","(1075) Helina","(108) Hecuba","(1088) Mitaka","(11) Parthenope","(110) Lydia","(1103) Sequoia","(113) Amalthea","(115) Thyra","(116) Sirona","(1162) Larissa","(1172) Aneas","(1173) Anchises","(119) Althaea","(1199) Geldonia","(12) Victoria","(1208) Troilus","(121) Hermione","(1212) Francette","(122) Gerda","(124) Alkeste","(1263) Varsavia","(128) Nemesis","(1284) Latvia","(129) Antigone","(13) Egeria","(130) Elektra","(1317) Silvretta","(1330) Spiridonia","(136) Austria","(1364) Safara","(139) Juewa","(14) Irene","(140) Siwa","(141) Lumen","(144) Vibilia","(1449) Virtanen","(145) Adeona","(149) Medusa","(1493) Sigrid","(15) Eunomia","(150) Nuwa","(1512) Oulu","(1529) Oterma","(156) Xanthippe","(1566) Icarus","(158) Koronis","(1580) Betulia","(1595) Tanga","(16) Psyche","(1620) Geographos","(1627) Ivar","(163) Erigone","(1636) Porter","(164) Eva","(1645) Waterfield","(1656) Suomi","(166) Rhodope","(167) Urda","(1685) Toro","(169) Zelia","(17) Thetis","(170) Maria","(1717) Arlon","(1727) Mette","(175) Andromache","(176) Iduna","(18) Melpomene","(181) Eucharis","(1830) Pogson","(185) Eunike","(1862) Apollo","(19) Fortuna","(1915) Quetzalcoatl","(192) Nausikaa","(194) Prokne","(196) Philomela","(197) Arete","(198) Ampella","(2) Pallas","(20) Massalia","(200) Dynamene","(208) Lacrimosa","(21) Lutetia","(210) Isabella","(2100) Ra-Shalom","(213) Lilaea","(216) Kleopatra","(217) Eudora","(22) Kalliope","(220) Stephania","(2201) Oljato","(221) Eos","(23) Thalia","(230) Athamantis","(236) Honoria","(24) Themis","(243) Ida","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(262) Valda","(264) Libussa","(268) Adorea","(27) Euterpe","(279) Thule","(28) Bellona","(281) Lucretia","(29) Amphitrite","(293) Brasilia","(3) Juno","(30) Urania","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(313) Chaldaea","(32) Pomona","(323) Brucia","(324) Bamberga","(325) Heidelberga","(326) Tamara","(335) Roberta","(337) Devosa","(338) Budrosa","(339) Dorothea","(34) Circe","(340) Eduarda","(341) California","(344) Desiderata","(345) Tercidina","(347) Pariana","(349) Dembowska","(354) Eleonora","(356) Liguria","(36) Atalante","(361) Bononia","(363) Padua","(365) Corduba","(37) Fides","(372) Palma","(374) Burgundia","(375) Ursula","(386) Siegena","(389) Industria","(39) Laetitia","(391) Ingeborg","(4) Vesta","(40) Harmonia","(402) Chloe","(403) Cyane","(409) Aspasia","(41) Daphne","(413) Edburga","(415) Palatia","(416) Vaticana","(419) Aurelia","(42) Isis","(423) Diotima","(426) Hippo","(43) Ariadne","(433) Eros","(434) Hungaria","(435) Ella","(439) Ohio","(44) Nysa","(441) Bathilde","(446) Aeternitas","(45) Eugenia","(453) Tea","(46) Hestia","(462) Eriphyla","(468) Lina","(471) Papagena","(472) Roma","(48) Doris","(481) Emita","(488) Kreusa","(490) Veritas","(496) Gryphia","(5) Astraea","(505) Cava","(51) Nemausa","(510) Mabella","(511) Davida","(513) Centesima","(52) Europa","(526) Jena","(53) Kalypso","(532) Herculina","(54) Alexandra","(554) Peraga","(558) Carmen","(560) Delila","(562) Salome","(563) Suleika","(574) Reginhild","(579) Sidonia","(5797) Bivoj","(58) Concordia","(582) Olympia","(584) Semiramis","(588) Achilles","(599) Luisa","(6) Hebe","(60) Echo","(613) Ginevra","(617) Patroclus","(62) Erato","(624) Hektor","(628) Christine","(63) Ausonia","(639) Latona","(64) Angelina","(648) Pippa","(65) Cybele","(654) Zelinda","(66) Maja","(660) Crescentia","(674) Rachele","(676) Melitta","(68) Leto","(69) Hesperia","(695) Bella","(696) Leonora","(7) Iris","(704) Interamnia","(71) Niobe","(712) Boliviana","(714) Ulula","(739) Mandeville","(741) Botolphia","(747) Winchester","(750) Oskar","(758) Mancunia","(760) Massinga","(770) Bali","(772) Tanete","(773) Irmintraud","(78) Diana","(781) Kartvelia","(782) Montefiore","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(8) Flora","(80) Sappho","(801) Helwerthia","(811) Nauheima","(82) Alkmene","(83) Beatrix","(839) Valborg","(84) Klio","(846) Lipperta","(85) Io","(858) El Djezair","(87) Sylvia","(88) Thisbe","(884) Priamus","(887) Alinda","(89) Julia","(895) Helio","(9) Metis","(90) Antiope","(909) Ulla","(911) Agamemnon","(92) Undina","(925) Alphonsina","(93) Minerva","(94) Aurora","(944) Hidalgo","(969) Leocadia","(97) Klotho","(976) Benjamina","Multiple Asteroids"],"instruments":["DUAL BEAM PHOTOMETER"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":"1981-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/bundle_gbo.ast.24-color-survey.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/bundle_gbo.ast.24-color-survey.xml","scraped_at":"2026-02-25T20:02:10.737123Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra::1.0","title":"SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS","description":"This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1172) Aneas","(1173) Anchises","(18268) Dardanos","(1871) Astyanax","(192388) 1996 RD29","(192929) 2000 AT44","(2223) Sarpedon","(2357) Phereclos","(30698) Hippokoon","(3548) Eurybates","(4829) Sergestus","(5130) Ilioneus","(5511) Cloanthus","(6998) Tithonus","(9430) Erichthonios","(9818) Eurymachos","Multiple Asteroids","(105685) 2000 SC51","(11089) 1994 CS8","(111113) 2001 VK85","(11351) Leucus","(11488) 1988 RM11","(11663) 1997 GO24","(120453) 1988 RE12","(124729) 2001 SB173","(12921) 1998 WZ5","(13862) 1999 XT160","(14707) 2000 CC20","(15502) 1999 NV27","(15977) 1998 MA11","(163135) 2002 CT22","(163216) 2002 EN68","(17416) 1988 RR10","(18060) 1999 XJ156","(18137) 2000 OU30","(18493) Demoleon","(18940) 2000 QV49","(23549) Epicles","(23694) 1997 KZ3","(24233) 1999 XD94","(24341) 2000 AJ87","(24380) 2000 AA160","(24420) 2000 BU22","(24426) 2000 CR12","(24452) 2000 QU167","(24467) 2000 SS165","(25347) 1999 RQ116","(28958) 2001 CQ42","(31820) 1999 RT186","(31821) 1999 RK225","(32430) 2000 RQ83","(32615) 2001 QU277","(32794) 1989 UE5","(34785) 2001 RG87","(39285) 2001 BP75","(4035) 1986 WD","(43212) 2000 AL113","(47967) 2000 SL298","(48249) 2001 SY345","(48252) 2001 TL212","(51359) 2000 SC17","(53469) 2000 AX8","(56968) 2000 SA92","(65150) 2002 CA126","(65225) 2002 EK44","(6545) 1986 TR6","(7352) 1994 CO","(76804) 2000 QE","(84709) 2002 VW120","(9030) 1989 UX5","(99328) 2001 UY123"],"instruments":["Eso Multimode Instrument","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":[],"start_date":"2002-11-09","stop_date":"2005-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/bundle_gbo.ast-trojan.fornasier-etal.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/bundle_gbo.ast-trojan.fornasier-etal.spectra.xml","scraped_at":"2026-02-25T20:02:10.737134Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.sdss-moc.phot::1.0","title":"SDSS MOVING OBJECT CATALOG","description":"The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":[],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/bundle_gbo.sdss-moc.phot.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/bundle_gbo.sdss-moc.phot.xml","scraped_at":"2026-02-25T20:02:10.737139Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.triad.radiometry::1.0","title":"TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS","description":"This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-01","stop_date":"1978-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/bundle_compil.ast.triad.radiometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/bundle_compil.ast.triad.radiometry.xml","scraped_at":"2026-02-25T20:02:10.737143Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.sdss-based-taxonomy::1.0","title":"SDSS-BASED ASTEROID TAXONOMY","description":"The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":[],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/bundle_ast.sdss-based-taxonomy.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/bundle_ast.sdss-based-taxonomy.xml","scraped_at":"2026-02-25T20:02:10.737147Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-iannini-family.spectra::1.0","title":"IANNINI ASTEROID FAMILY SPECTRA","description":"Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(202951) 1999 RE","(217773) 2000 RO76","(122633) 2000 RA80","(122636) 2000 RZ81","(147311) 2003 AF89","(150781) 2001 QO282","(61207) 2000 OZ7","(61928) 2000 RP4","(81550) 2000 HU23","(87239) 2000 OH45","(88187) 2000 XZ42"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"],"instrument_hosts":["W.M. Keck Observatory"],"data_types":[],"start_date":"2004-11-10","stop_date":"2007-03-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/bundle_gbo.ast-iannini-family.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/bundle_gbo.ast-iannini-family.spectra.xml","scraped_at":"2026-02-25T20:02:10.737151Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra::1.0","title":"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC","description":"These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(334008) 2000 UP66","(5498) Gustafsson","(7558) Yurlov","(9147) Kourakuen","(9254) Shunkai","(9481) Menchu","(9553) Colas","(10537) 1991 RY16","(111515) 2001 YC91","(113844) 2002 TV237","(114544) 2003 BN28","(122357) 2000 QH49","(12543) 1998 QM5","(131010) 2000 XQ9","(134455) 1998 ST116","(24941) 1997 JM14","(26886) 1994 TJ2","(28034) 1998 EU13","(28517) 2000 DD7","(36840) 2000 SH112","(37304) 2001 EW23","(38070) Redwine","(44447) 1998 UM21","(46690) 1997 AN23","(53143) 1999 BB9","(56026) 1998 VN52","(56570) 2000 JA21","(60669) 2000 GE4","(94005) 2000 XO25"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory","Supernova Integral Field Spectrograph (SNIFS)","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"],"instrument_hosts":["W.M. Keck Observatory","Mauna Kea Observatory"],"data_types":[],"start_date":"2004-11-10","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/bundle_gbo.ast-v-type.moscovitz.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/bundle_gbo.ast-v-type.moscovitz.spectra.xml","scraped_at":"2026-02-25T20:02:10.737159Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.fieber-beyer.spectra::1.0","title":"FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA","description":"The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1018) Arnolda","(1036) Ganymed","(1064) Aethusa","(1158) Luda","(1166) Sakuntala","(1215) Boyer","(1358) Gaika","(1368) Numidia","(1379) Lomonosowa","(1391) Carelia","(1447) Utra","(1501) Baade","(1587) Kahrstedt","(1607) Mavis","(1644) Rafita","(1722) Goffin","(1772) Gagarin","(1854) Skvortsov","(1960) Guisan","(198) Ampella","(2089) Cetacea","(248) Lameia","(2497) Kulikovskij","(292) Ludovica","(3066) McFadden","(329) Svea","(3345) Tarkovskij","(335) Roberta","(355) Gabriella","(3637) O'Meara","(3760) Poutanen","(3999) Aristarchus","(421) Zahringia","(46) Hestia","(495) Eulalia","(556) Phyllis","(5676) Voltaire","(619) Triberga","(623) Chimaera","(652) Jubilatrix","(660) Crescentia","(6649) Yokotatakao","(695) Bella","(714) Ulula","(787) Moskva","(797) Montana","(875) Nymphe","(879) Ricarda","(897) Lysistrata","(908) Buda","(974) Lioba","Multiple Asteroids","(6212) 1993 MS1"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2000-06-30","stop_date":"2014-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/bundle_gbo.ast.fieber-beyer.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/bundle_gbo.ast.fieber-beyer.spectra.xml","scraped_at":"2026-02-25T20:02:10.737168Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.belskaya.polarimetry::1.0","title":"BELSKAYA ASTEROID POLARIMETRY","description":"This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["AFOSC Polarimeter","Copernico 1.82m Telescope at Asiago Astrophysical Observatory","CrAO Five-Channel Photopolarimeter","1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"],"instrument_hosts":["Asiago Astrophysical Observatory","Crimean Astrophysical Observatory-Partizanskoye"],"data_types":[],"start_date":"1996-06-09","stop_date":"2006-03-07","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/bundle_gbo.ast.belskaya.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/bundle_gbo.ast.belskaya.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.737173Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.delbo.radiometric-diameters-albedos::1.0","title":"DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS","description":"This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Thermal Infrared Multi-Mode Instrument 2","3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory","JPL Mid-InfraRed Large-well Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","MIRSI - Mid-Infrared Spectrometer and Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","Keck I Long Wavelength Spectrograph (IR)","W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"],"instrument_hosts":["European Southern Observatory","Mauna Kea Observatory","Mauna Kea Observatory","W.M. Keck Observatory"],"data_types":[],"start_date":"2000-03-16","stop_date":"2003-06-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/bundle_ast.delbo.radiometric-diameters-albedos.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/bundle_ast.delbo.radiometric-diameters-albedos.xml","scraped_at":"2026-02-25T20:02:10.737179Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.bus-demeo.taxonomy::1.0","title":"BUS-DEMEO ASTEROID TAXONOMY","description":"The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1991-10-25","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/bundle_ast.bus-demeo.taxonomy.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/bundle_ast.bus-demeo.taxonomy.xml","scraped_at":"2026-02-25T20:02:10.737183Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.mrc.families::1.0","title":"MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES","description":"This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/bundle_ast.mrc.families.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/bundle_ast.mrc.families.xml","scraped_at":"2026-02-25T20:02:10.737187Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.wisniewski.magnitudes::1.0","title":"WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES","description":"Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1976-10-19","stop_date":"1993-12-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/bundle_gbo.ast.wisniewski.magnitudes.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/bundle_gbo.ast.wisniewski.magnitudes.xml","scraped_at":"2026-02-25T20:02:10.737190Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ices.mastrapa.lab-spectra::1.0","title":"OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE","description":"Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Terrestrial Water Ice"],"instruments":["VARIAN EXCALIBUR SERIES FTS 3000"],"instrument_hosts":[],"data_types":[],"start_date":"2006-04-12","stop_date":"2006-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/bundle_gbo.ices.mastrapa.lab-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/bundle_gbo.ices.mastrapa.lab-spectra.xml","scraped_at":"2026-02-25T20:02:10.737194Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra::1.0","title":"LEBOFSKY ET AL. 3-MICRON ASTEROID DATA","description":"3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(111) Ate","(114) Kassandra","(1172) Aneas","(13) Egeria","(130) Elektra","(139) Juewa","(148) Gallia","(16) Psyche","(173) Ino","(18) Melpomene","(1867) Deiphobus","(19) Fortuna","(2) Pallas","(233) Asterope","(24) Themis","(247) Eukrate","(308) Polyxo","(31) Euphrosyne","(313) Chaldaea","(324) Bamberga","(344) Desiderata","(349) Dembowska","(36) Atalante","(375) Ursula","(386) Siegena","(4) Vesta","(409) Aspasia","(410) Chloris","(423) Diotima","(5) Astraea","(505) Cava","(51) Nemausa","(511) Davida","(52) Europa","(532) Herculina","(55) Pandora","(554) Peraga","(570) Kythera","(65) Cybele","(70) Panopaea","(704) Interamnia","(72) Feronia","(721) Tabora","(74) Galatea","(748) Simeisa","(773) Irmintraud","(776) Berbericia","(87) Sylvia","(88) Thisbe","(92) Undina","Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1977-02-17","stop_date":"1989-04-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/bundle_gbo.ast.lebofsky-etal.3-micron-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/bundle_gbo.ast.lebofsky-etal.3-micron-spectra.xml","scraped_at":"2026-02-25T20:02:10.737200Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.smass2.spectra::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0","description":"This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(140) SIWA","(2912) LAPALMA","(4352) KYOTO","(4701) MILANI","(2305) KING","(245) VERA","(5563) 1991 VZ1","(1541) ESTONIA","(125) LIBERATRIX","(634) UTE","(3151) TALBOT","(4276) CLIFFORD","(4382) STRAVINSKY","(70) PANOPAEA","(2118) FLAGSTAFF","(7564) GOKUMENON","(1041) ASTA","(188) MENIPPE","(2106) HUGO","(3306) BYRON","(3809) AMICI","(4649) SUMOTO","(606) BRANGANE","(1785) WURM","(1135) COLCHIS","(1830) POGSON","(3340) YINHAI","(670) OTTEGEBE","(1147) STAVROPOLIS","(1348) MICHEL","(7817) ZIBITURTLE","(50) VIRGINIA","(625) XENIA","(338) BUDROSA","(3435) BOURY","(147) PROTOGENEIA","(5184) CAVAILLE-COLL","(192) NAUSIKAA","(26) PROSERPINA","(8516) HYAKKAI","(6500) KODAIRA","(1424) SUNDMANIA","(1618) DAWN","(897) LYSISTRATA","(2813) ZAPPALA","(4591) BRYANTSEV","(133) CYRENE","(1777) GEHRELS","(4200) SHIZUKAGOZEN","(4686) MAISICA","(1998) WS","(741) BOTOLPHIA","(5261) EUREKA","(354) ELEONORA","(478) TERGESTE","(5588) JENNABELLE","(154) BERTHA","(170) MARIA","(211) ISOLDA","(3759) PIIRONEN","(2902) WESTERLUND","(2246) BOWELL","(6582) FLAGSYMPHONY","(868) LOVA","(1594) DANJON","(228) AGATHE","(3389) SINZOT","(4993) COSSARD","(301) BAVARIA","(1176) LUCIDOR","(2504) GAVIOLA","(5965) 1990 SV15","(106) DIONE","(4512) SINUHE","(153) HILDA","(230) ATHAMANTIS","(2875) LAGERKVIST","(6071) SAKITAMA","(2038) BISTRO","(3037) ALKU","(4968) SUZAMUR","(306) UNITAS","(504) CORA","(815) COPPELIA","(912) MARITIMA","(159) AEMILIA","(15) EUNOMIA","(2631) ZHEJIANG","(3900) KNEZEVIC","(3395) JITKA","(3775) ELLENBETH","(4909) COUTEAU","(6509) GIOVANNIPRATESI","(98) IANTHE","(1094) SIBERIA","(2681) OSTROVSKIJ","(3491) FRIDOLIN","(3813) FORTOV","(1056) AZALEA","(4945) IKENOZENNI","(826) HENRIKA","(12) VICTORIA","(4951) IWAMOTO","(2271) KISO","(181) EUCHARIS","(1052) BELGICA","(193) AMBROSIA","(387) AQUITANIA","(759) VINIFERA","(1848) DELVAUX","(1659) PUNKAHARJU","(358) APOLLONIA","(10473) THIROUIN","(105) ARTEMIS","(539) PAMINA","(564) DUDU","(3635) KREUTZ","(2141) SIMFEROPOL","(3265) FLETCHER","(103) HERA","(2370) VAN ALTENA","(631) PHILIPPINA","(1882) RAUMA","(17) THETIS","(269) JUSTITIA","(136) AUSTRIA","(984) GRETIA","(162) LAURENTIA","(161) ATHOR","(90) ANTIOPE","(3678) MONGMANWAI","(2147) KHARADZE","(378) HOLMIA","(476) HEDWIG","(383) JANINA","(795) FINI","(753) TIFLIS","(1071) BRITA","(3074) POPOV","(2575) BULGARIA","(1214) RICHILDE","(592) BATHSEBA","(177) IRMA","(5242) KENREIMONIN","(4804) PASTEUR","(194) PROKNE","(534) NASSOVIA","(973) ARALIA","(2559) SVOBODA","(5318) DIENTZENHOFER","(4718) ARAKI","(30) URANIA","(6078) BURT","(4774) HOBETSU","(279) THULE","(808) MERXIA","(5010) AMENEMHET","(345) TERCIDINA","(677) AALTJE","(2086) NEWELL","(1433) GERAMTINA","(4982) BARTINI","(3307) ATHABASCA","(1502) ARENDA","(152) ATALA","(1539) BORRELLY","(208) LACRIMOSA","(2917) SAWYER HOGG","(679) PAX","(1730) MARCELINE","(1385) GELRIA","(1534) NASI","(547) PRAXEDIS","(2444) LEDERLE","(3885) BOGORODSKIJ","(1271) ISERGINA","(3406) OMSK","(4619) POLYAKHOVA","(481) EMITA","(4726) FEDERER","(1490) LIMPOPO","(494) VIRTUS","(7225) HUNTRESS","(642) CLARA","(1086) NATA","(3865) LINDBLOOM","(205) MARTHA","(3020) NAUDTS","(1783) ALBITSKIJ","(3654) AAS","(554) PERAGA","(7081) LUDIBUNDA","(4547) MASSACHUSETTS","(668) DORA","(2818) JUVENALIS","(46) HESTIA","(1228) SCABIOSA","(4265) KANI","(88) THISBE","(4570) RUNCORN","(3762) AMARAVELLA","(1329) ELIANE","(179) KLYTAEMNESTRA","(56) MELETE","(399) PERSEPHONE","(5348) KENNOGUCHI","(1702) KALAHARI","(3704) GAOSHIQI","(4706) DENNISREUTER","(5595) ROTH","(7405) 1988 FF","(1929) KOLLAA","(1301) YVONNE","(3546) ATANASOFF","(122) GERDA","(2401) AEHLITA","(1601) PATRY","(507) LAODICA","(674) RACHELE","(3249) MUSASHINO","(87) SYLVIA","(737) AREQUIPA","(5344) RYABOV","(7304) NAMIKI","(824) ANASTASIA","(3474) LINSLEY","(886) WASHINGTONIA","(8008) 1988 TQ4","(3363) BOWEN","(2430) BRUCE HELIN","(1332) MARCONIA","(3576) GALINA","(1891) GONDOLA","(3314) BEALS","(142) POLANA","(9970) 1992 ST1","(2852) DECLERCQ","(130) ELEKTRA","(261) PRYMNO","(377) CAMPANIA","(7451) VERBITSKAYA","(189) PHTHIA","(783) NORA","(751) FAINA","(1474) BEIRA","(336) LACADIERA","(4304) GEICHENKO","(4786) TATIANINA","(1304) AROSA","(410) CHLORIS","(337) DEVOSA","(3796) LENE","(543) CHARLOTTE","(1110) JAROSLAWA","(2402) SATPAEV","(1716) PETER","(3371) GIACCONI","(747) WINCHESTER","(2754) EFIMOV","(1015) CHRISTA","(1970) SUMERIA","(353) RUPERTO-CAROLA","(2930) EURIPIDES","(2446) LUNACHARSKY","(2369) CHEKHOV","(331) ETHERIDGEA","(2448) SHOLOKHOV","(3311) PODOBED","(3587) DESCARTES","(5892) MILESDAVIS","(980) ANACOSTIA","(1188) GOTHLANDIA","(384) BURDIGALA","(1903) ADZHIMUSHKAJ","(5690) 1992 EU","(247) EUKRATE","(2244) TESLA","(395) DELIA","(167) URDA","(2744) BIRGITTA","(1751) HERGET","(3862) AGEKIAN","(7404) 1988 AA5","(6086) VRCHLICKY","(3713) PIETERS","(8334) 1984 CF","(4733) ORO","(1734) ZHONGOLOVICH","(4548) WIELEN","(720) BOHLINIA","(4082) SWANN","(4311) ZGURIDI","(2640) HALLSTROM","(3248) FARINELLA","(327) COLUMBIA","(281) LUCRETIA","(365) CORDUBA","(180) GARUMNA","(398) ADMETE","(6585) O'KEEFE","(2567) ELBA","(1638) RUANDA","(3844) LUJIAXI","(3850) PELTIER","(523) ADA","(288) GLAUKE","(1542) SCHALEN","(4284) KAHO","(5195) KAENDLER","(51) NEMAUSA","(1336) ZEELANDIA","(742) EDISONA","(1284) LATVIA","(134) SOPHROSYNE","(4737) KILADZE","(2851) HARBIN","(101) HELENA","(1977) SHURA","(119) ALTHAEA","(4426) ROERICH","(2085) HENAN","(924) TONI","(2107) ILMARI","(2582) HARIMAYA-BASHI","(3175) NETTO","(1839) RAGAZZA","(2736) OPS","(7245) 1991 RN10","(785) ZWETANA","(3542) TANJIAZHEN","(614) PIA","(174) PHAEDRA","(3209) BUCHWALD","(1664) FELIX","(201) PENELOPE","(3155) LEE","(3443) LEETSUNGDAO","(1351) UZBEKISTANIA","(2973) PAOLA","(1857) PARCHOMENKO","(2579) SPARTACUS","(2675) TOLKIEN","Multiple Asteroids","(675) LUDMILLA","(3827) ZDENEKHORSKY","(3873) RODDY","(845) NAEMA","(3767) DIMAGGIO","(1251) HEDERA","(1798) WATTS","(844) LEONTINA","(75) EURYDIKE","(638) MOIRA","(84) KLIO","(462) ERIPHYLA","(1021) FLAMMARIO","(1045) MICHELA","(24) THEMIS","(994) OTTHILD","(2251) TIKHOV","(513) CENTESIMA","(107) CAMILLA","(3971) VORONIKHIN","(6146) ADAMKRAFFT","(62) ERATO","(13) EGERIA","(3737) BECKMAN","(584) SEMIRAMIS","(4036) WHITEHOUSE","(898) HILDEGARD","(1738) OOSTERHOFF","(1480) AUNUS","(4292) AOBA","(2386) NIKONOV","(2911) MIAHELENA","(5079) BRUBECK","(622) ESTHER","(186) CELUTA","(416) VATICANA","(3563) CANTERBURY","(458) HERCYNIA","(1724) VLADIMIR","(1904) MASSEVITCH","(1729) BERYL","(2708) BURNS","(109) FELICITAS","(2635) HUGGINS","(263) DRESDA","(460) SCANIA","(6386) KEITHNOLL","(2604) MARSHAK","(3287) OLMSTEAD","(453) TEA","(1560) STRATTONIA","(164) EVA","(35) LEUKOTHEA","(2042) SITARSKI","(1635) BOHRMANN","(485) GENUA","(519) SYLVANIA","(1128) ASTRID","(286) ICLEA","(1603) NEVA","(3040) KOZAI","(7211) XERXES","(2715) MIELIKKI","(4215) KAMO","(28) BELLONA","(553) KUNDRY","(65) CYBELE","(997) PRISKA","(1888) ZU CHONG-ZHI","(14) IRENE","(4917) YURILVOVIA","(61) DANAE","(386) SIEGENA","(5108) LUBECK","(278) PAULINA","(233) ASTEROPE","(360) CARLOVA","(1494) SAVO","(4845) TSUBETSU","(21) LUTETIA","(5553) CHODAS","(6907) HARRYFORD","(1025) RIEMA","(250) BETTINA","(856) BACKLUNDA","(1386) STORERIA","(266) ALINE","(4033) YATSUGATAKE","(556) PHYLLIS","(4) VESTA","(60) ECHO","(1104) SYRINGA","(729) WATSONIA","(735) MARGHANNA","(1373) CINCINNATI","(4536) DREWPINSKY","(3782) CELLE","(2346) LILIO","(491) CARINA","(1517) BEOGRAD","(5840) RAYBROWN","(496) GRYPHIA","(531) ZERLINA","(3670) NORTHCOTT","(925) ALPHONSINA","(3376) ARMANDHAMMER","(7) IRIS","(1020) ARCADIA","(521) BRIXIA","(687) TINETTE","(2331) PARVULESCO","(102) MIRIAM","(3394) BANNO","(1022) OLYMPIADA","(1201) STRENUA","(1799) KOUSSEVITZKY","(5234) SECHENOV","(516) AMHERSTIA","(779) NINA","(200) DYNAMENE","(1102) PEPITA","(6005) 1989 BD","(375) URSULA","(2354) LAVROV","(321) FLORENTINA","(853) NANSENIA","(971) ALSATIA","(2089) CETACEA","(304) OLGA","(4434) NIKULIN","(2152) HANNIBAL","(4182) MOUNT LOCKE","(2547) HUBEI","(579) SIDONIA","(7056) KIERKEGAARD","(2952) LILLIPUTIA","(781) KARTVELIA","(160) UNA","(3262) MIUNE","(3526) JEFFBELL","(1234) ELYNA","(63) AUSONIA","(6354) VANGELIS","(1014) SEMPHYRA","(2507) BOBONE","(1252) CELESTIA","(2509) CHUKOTKA","(135) HERTHA","(3642) FRIEDEN","(95) ARETHUSA","(1140) CRIMEA","(409) ASPASIA","(5103) DIVIS","(246) ASPORINA","(671) CARNEGIA","(2704) JULIAN LOEWE","(4610) KAJOV","(934) THURINGIA","(226) WERINGIA","(4611) VULKANEIFEL","(3364) ZDENKA","(392) WILHELMINA","(895) HELIO","(3417) TAMBLYN","(5081) SANGUIN","(782) MONTEFIORE","(363) PADUA","(2194) ARPOLA","(423) DIOTIMA","(1107) LICTORIA","(1634) NDOLA","(388) CHARYBDIS","(3375) AMY","(374) BURGUNDIA","(7224) VESNINA","(1055) TYNKA","(3192) A'HEARN","(2737) KOTKA","(5685) SANENOBUFUKUI","(731) SORGA","(776) BERBERICIA","(6211) TSUBAME","(78) DIANA","(115) THYRA","(1930) LUCIFER","(2762) FOWLER","(425) CORNELIA","(431) NEPHELE","(2157) ASHBROOK","(5647) SAROJININAIDU","(1548) PALOMAA","(1587) KAHRSTEDT","(175) ANDROMACHE","(58) CONCORDIA","(2772) DUGAN","(5534) 1941 UN","(3458) BODUOGNAT","(34) CIRCE","(2957) TATSUO","(3829) GUNMA","(1148) RARAHU","(965) ANGELICA","(3198) WALLONIA","(236) HONORIA","(144) VIBILIA","(2396) KOCHI","(4051) HATANAKA","(396) AEOLIA","(2185) GUANGDONG","(4516) PUGOVKIN","(1352) WAWEL","(99913) 1997 CZ5","(2371) DIMITROV","(2720) PYOTR PERVYJ","(3534) SAX","(3430) BRADFIELD","(4135) SVETLANOV","(69) HESPERIA","(611) VALERIA","(3701) PURKYNE","(393) LAMPETIA","(1262) SNIADECKIA","(4817) GLIBA","(6) HEBE","(2508) ALUPKA","(5552) STUDNICKA","(715) TRANSVAALIA","(5240) KWASAN","(3611) DABU","(5134) EBILSON","(1428) MOMBASA","(484) PITTSBURGHIA","(165) LORELEY","(3858) DORCHESTER","(8450) EGOROV","(1323) TUGELA","(4997) KSANA","(148) GALLIA","(3647) DERMOTT","(397) VIENNA","(129) ANTIGONE","(1493) SIGRID","(5632) INGELEHMANN","(2468) REPIN","(3800) KARAYUSUF","(3365) RECOGNE","(3841) DICICCO","(4923) CLARKE","(2022) WEST","(85) IO","(1680) PER BRAHE","(6192) JAVIERGOROSABEL","(673) EDDA","(443) PHOTOGRAPHICA","(111) ATE","(2501) LOHJA","(2521) HEIDI","(5091) ISAKOVSKIJ","(112) IPHIGENIA","(3734) WALAND","(6364) CASARINI","(1204) RENZIA","(2864) SODERBLOM","(3628) BOZNEMCOVA","(4628) LAPLACE","(1483) HAKOILA","(413) EDBURGA","(1300) MARCELLE","(1706) DIECKVOSS","(187) LAMBERTA","(1562) GONDOLATSCH","(355) GABRIELLA","(7763) CRABEELS","(359) GEORGIA","(569) MISA","(1106) CYDONIA","(127) JOHANNA","(3349) MANAS","(4096) KUSHIRO","(804) HISPANIA","(1640) NEMO","(773) IRMINTRAUD","(2881) MEIDEN","(191) KOLGA","(2380) HEILONGJIANG","(1076) VIOLA","(1600) VYSSOTSKY","(2949) KAVERZNEV","(114) KASSANDRA","(541) DEBORAH","(1048) FEODOSIA","(5159) BURBINE","(3686) ANTOKU","(1458) MINEURA","(2789) FOSHAN","(4422) JARRE","(1471) TORNIO","(128) NEMESIS","(866) FATME","(1088) MITAKA","(1263) VARSAVIA","(2099) OPIK","(2801) HUYGENS","(1406) KOMPPA","(6906) JOHNMILLS","(2750) LOVIISA","(4256) KAGAMIGAWA","(4272) ENTSUJI","(4944) KOZLOVSKIJ","(2527) GREGORY","(596) SCHEILA","(961) GUNNIE","(206) HERSILIA","(1807) SLOVAKIA","(7728) GIBLIN","(3669) VERTINSKIJ","(23) THALIA","(4995) GRIFFIN","(4297) EICHHORN","(4719) BURNABY","(985) ROSINA","(258) TYCHE","(166) RHODOPE","(6592) GOYA","(80) SAPPHO","(1653) YAKHONTOVIA","(4107) RUFINO","(79) EURYNOME","(2988) KORHONEN","(207) HEDDA","(1520) IMATRA","(414) LIRIOPE","(578) HAPPELIA","(4342) FREUD","(702) ALAUDA","(342) ENDYMION","(3949) MACH","(402) CHLOE","(444) GYPTIS","(600) MUSA","(6782) 1990 SU10","(4682) BYKOV","(3440) STAMPFER","(1565) LEMAITRE","(511) DAVIDA","(649) JOSEFA","(190) ISMENE","(4037) IKEYA","(2060) CHIRON","(26209) 1997 RD1","(282) CLORINDE","(3137) HORKY","(4287) TRISOV","(2732) WITT","(3687) DZUS","(2335) JAMES","(178) BELISANA","(3007) REAVES","(38) LEDA","(7604) KRIDSADAPORN","(3985) RAYBATSON","(1294) ANTWERPIA","(173) INO","(209) DIDO","(116) SIRONA","(3169) OSTRO","(3861) LORENZ","(1185) NIKKO","(3090) TJOSSEM","(4713) STEEL","(555) NORMA","(372) PALMA","(2035) STEARNS","(633) ZELIMA","(37) FIDES","(1189) TERENTIA","(5416) ESTREMADOYRO","(244) SITA","(2390) NEZARKA","(64) ANGELINA","(5133) PHILLIPADAMS","(970) PRIMULA","(4942) MUNROE","(2167) ERIN","(477) ITALIA","(242) KRIEMHILD","(381) MYRRHA","(5069) TOKEIDAI","(1017) JACQUELINE","(2834) CHRISTY CAROL","(3214) MAKARENKO","(3920) AUBIGNAN","(2410) MORRISON","(241) GERMANIA","(705) ERMINIA","(5111) JACLIFF","(2465) WILSON","(3) JUNO","(5397) VOJISLAVA","(4607) SEILANDFARM","(48) DORIS","(4396) GRESSMANN","(1152) PAWONA","(1968) MEHLTRETTER","(1936) LUGANO","(5102) BENFRANKLIN","(6283) 1980 VX1","(2328) ROBESON","(3910) LISZT","(1726) HOFFMEISTER","(3976) LISE","(2428) KAMENYAR","(1374) ISORA","(1858) LOBACHEVSKIJ","(3684) BERRY","(1563) NOEL","(3630) LUBOMIR","(597) BANDUSIA","(237) COELESTINA","(4417) LECAR","(89) JULIA","(490) VERITAS","(560) DELILA","(10504) DOGA","(4435) HOLT","(151) ABUNDANTIA","(1836) KOMAROV","(470) KILIA","(5482) KORANKEI","(308) POLYXO","(5196) BUSTELLI","(10199) CHARIKLO","(3579) ROCKHOLT","(1007) PAWLOWIA","(2258) VIIPURI","(3744) HORN-D'ARTURO","(2809) VERNADSKIJ","(559) NANON","(2840) KALLAVESI","(3181) AHNERT","(2378) PANNEKOEK","(2791) PARADISE","(2427) KOBZAR","(3320) NAMBA","(1715) SALLI","(5) ASTRAEA","(110) LYDIA","(4678) NINIAN","(5243) CLASIEN","(240) VANADIS","(860) URSINA","(5610) BALSTER","(563) SULEIKA","(2353) ALVA","(4188) KITEZH","(757) PORTLANDIA","(3636) PAJDUSAKOVA","(3451) MENTOR","(150) NUWA","(184) DEJOPEJA","(17480) 1991 PE10","(2934) ARISTOPHANES","(3309) BRORFELDE","(792) METCALFIA","(4261) GEKKO","(1131) PORZIA","(2827) VELLAMO","(4372) QUINCY","(512) TAURINENSIS","(1069) PLANCKIA","(1293) SONJA","(3833) CALINGASTA","(1248 )JUGURTHA","(2598) MERLIN","(2746) HISSAO","(1667) PELS","(5448) SIEBOLD","(5641) MCCLEESE","(2748) PATRICK GENE","(139) JUEWA","(1058) GRUBBA","(1187) AFRA","(2029) BINOMI","(2733) HAMINA","(4900) MAYMELOU","(3345) TARKOVSKIJ","(4479) CHARLIEPARKER","(2409) CHAPMAN","(2625) JACK LONDON","(627) CHARIS","(171) OPHELIA","(4194) SWEITZER","(405) THIA","(7170) LIVESEY","(42) ISIS","(1797) SCHAUMASSE","(322) PHAEO","(257) SILESIA","(4604) STEKARSTROM","(29) AMPHITRITE","(2879) SHIMIZU","(52) EUROPA","(2925) BEATTY","(3788) STEYAERT","(4910) KAWASATO","(146) LUCINA","(2874) JIM YOUNG","(5379) ABEHIROSHI","(5253) FREDCLIFFORD","(5333) KANAYA","(872) HOLDA","(4116) ELACHI","(4156) OKADANOBORU","(551) ORTRUD","(3170) DZHANIBEKOV","(253) MATHILDE","(295) THERESIA","(4838) BILLMCLAUGHLIN","(950) AHRENSA","(905) UNIVERSITAS","(389) INDUSTRIA","(8333) 1982 VF","(1196) SHEBA","(4369) SEIFERT","(1155) AENNA","(348) MAY","(739) MANDEVILLE","(5956) D'ALEMBERT","(1065) AMUNDSENIA","(1660) WOOD","(6716) 1990 RO1","(4969) LAWRENCE","(2169) TAIWAN","(4650) MORI","(1695) WALBECK","(2857) NOT","(1831) NICHOLSON","(5329) DECARO","(929) ALGUNDE","(2040) CHALONGE","(57) MNEMOSYNE","(1860) BARBAROSSA","(2482) PERKIN","(310) MARGARITA","(121) HERMIONE","(1856) RUZENA","(3536) SCHLEICHER","(4702) BEROUNKA","(4424) ARKHIPOVA","(243) IDA","(442) EICHSFELDIA","(352) GISELA","(2045) PEKING","(2566) KIRGHIZIA","(2065) SPICER","(586) THEKLA","(2560) SIEGMA","(4750) MUKAI","(713) LUSCINIA","(2078) NANKING","(2478) TOKAI","(870) MANTO","(94) AURORA","(275) SAPIENTIA","(767) BONDIA","(1508) KEMI","(234) BARBARA","(503) EVELYN","(1016) ANITRA","(1264) LETABA","(1747) WRIGHT","(7397) 1986 QS","(1847) STOBBE","(1407) LINDELOF","(3658) FELDMAN","(196) PHILOMELA","(412) ELISABETHA","(1484) POSTREMA","(2467) KOLLONTAI","(6410) FUJIWARA","(6908) KUNIMOTO","(1604) TOMBAUGH","(1046) EDWIN","(22449) OTTIJEFF","(2373) IMMO","(71) NIOBE","(4534) RIMSKIJ-KORSAKOV","(4001) PTOLEMAEUS","(3712) KRAFT","(572) REBEKKA","(5230) ASAHINA","(604) TEKMESSA","(27) EUTERPE","(2) PALLAS","(1278) KENYA","(3533) TOYOTA","(3831) PETTENGILL","(1360) TARKA","(1350) ROSSELIA","(66) MAJA","(32) POMONA","(2493) ELMER","(1545) THERNOE","(5330) SENRIKYU","(784) PICKERINGIA","(796) SARITA","(2873) BINZEL","(532) HERCULINA","(4072) YAYOI","(172) BAUCIS","(1024) HALE","(117) LOMIA","(3028) ZHANGGUOXI","(456) ABNOBA","(3819) ROBINSON","(4849) ARDENNE","(771) LIBERA","(1593) FAGNES","(4839) DAISETSUZAN","(2872) GENTELEC","(33) POLYHYMNIA","(1212) FRANCETTE","(156) XANTHIPPE","(1998) TITIUS","(2087) KOCHERA","(4711) KATHY","(4853) MARIELUKAC","(2001) EINSTEIN","(2280) KUNIKOV","(5649) DONNASHIRLEY","(3972) RICHARD","(527) EURYANTHE","(3258) SOMNIUM","(951) GASPRA","(4390) MADRETERESA","(12281) CHAUMONT","(2977) CHIVILIKHIN","(3792) PRESTON","(83) BEATRIX","(6233) KIMURA","(1403) IDELSONIA","(910) ANNELIESE","(3581) ALVAREZ","(5565) UKYOUNODAIBU","(1427) RUVUMA","(2423) IBARRURI","(3401) VANPHILOS","(1948) KAMPALA","(259) ALETHEIA","(913) OTILA","(2382) NONIE","(4374) TADAMORI","(4491) OTARU","(108) HECUBA","(2953) VYSHESLAVIA","(3367) ALEX","(1550) TITO","(2349) KURCHENKO","(4327) RIES","(19) FORTUNA","(2906) CALTECH","(479) CAPRERA","(3567) ALVEMA","(404) ARSINOE","(5067) OCCIDENTAL","(5214) OOZORA","(2511) PATTERSON","(3853) HAAS","(11906) 1992 AE1","(216) KLEOPATRA","(2161) GRISSOM","(2455) SOMVILLE","(100480) 1996 UK","(376) GEOMETRIA","(749) MALZOVIA","(930) WESTPHALIA","(4461) SAYAMA","(6077) MESSNER","(2816) PIEN","(5510) 1988 RF7","(4280) SIMONENKO","(74) GALATEA","(3511) TSVETAEVA","(4340) DENCE","(141) LUMEN","(2905) PLASKETT","(3566) LEVITAN","(4748) TOKIWAGOZEN","(688) MELANIE","(4222) NANCITA","(661) CLOELIA","(4407) TAIHAKU","(39) LAETITIA","(471) PAPAGENA","(3385) BRONNINA","(704) INTERAMNIA","(1951) LICK","(403) CYANE","(123) BRUNHILD","(349) DEMBOWSKA","(4844) MATSUYAMA","(169) ZELIA","(317) ROXANE","(2778) TANGSHAN","(197) ARETE","(2996) BOWMAN","(716) BERKELEY","(6230) FRAM","(1186) TURNERA","(629) BERNARDINA","(3903) KLIMENT OHRIDSKI","(2053) NUKI","(3493) STEPANOV","(5051) RALPH","(5438) LORRE","(3096) BEZRUC","(862) FRANZIA","(1613) SMILEY","(3640) GOSTIN","(82) ALKMENE","(18) MELPOMENE","(1553) BAUERSFELDA","(5013) SUZHOUSANZHONG","(3527) MCCORD","(3700) GEOWILLIAMS","(120) LACHESIS","(1327) NAMAQUA","(723) HAMMONIA","(113) AMALTHEA","(267) TIRZA","(5401) MINAMIODA","(16) PSYCHE","(2088) SAHLIA","(2308) SCHILT","(5485) KAULA","(5467) 1988 AG","(5492) THOMA","(5208) ROYER","(158) KORONIS","(4157) IZU","(47) AGLAJA","(264) LIBUSSA","(4343) TETSUYA","(176) IDUNA","(1795) WOLTJER","(2056) NANCY","(2855) BASTIAN","(4305) CLAPTON","(2282) ANDRES BELLO","(124) ALKESTE","(41) DAPHNE","(7562) KAGIROINO-OKA","(2064) THOMSEN","(22) KALLIOPE","(379) HUENNA","(118) PEITHO","(77) FRIGGA","(1414) JEROME","(11785) SARGENT","(5294) ONNETOH","(1032) PAFURI","(2730) BARKS","(3860) PLOVDIV","(2231) DURRELL","(945) BARCELONA","(1039) SONNEBERGA","(1181) LILITH","(1692) SUBBOTINA","(3121) TAMINES","(626) NOTBURGA","(2306) BAUSCHINGER","(3085) DONNA","(4353) ONIZAKI","(11) PARTHENOPE","(18514) 1996 TE11","(4977) RAUTHGUNDIS","(7512) MONICALAZZARIN","(2234) SCHMADEL","(3575) ANYUTA","(825) TANINA","(93) MINERVA","(198) AMPELLA","(706) HIRUNDO","(1222) TINA","(20) MASSALIA","(5008) MIYAZAWAKENJI","(54) ALEXANDRA","(43) ARIADNE","(446) AETERNITAS","(4039) SOUSEKI","(67) ASIA","(941) MURRAY","(3886) SHCHERBAKOVIA","(213) LILAEA","(5038) OVERBEEK","(533) SARA","(545) MESSALINA","(819) BARNARDIANA","(5678) DUBRIDGE","(2606) ODESSA","(2892) FILIPENKO","(6704) 1988 CJ","(183) ISTRIA","(3592) NEDBAL","(417) SUEVIA","(1423) JOSE","(210) ISABELLA","(4124) HERRIOT","(654) ZELINDA","(1098) HAKONE","(1331) SOLVEJG","(1034) MOZARTIA","(7110) JOHNPEARSE","(2569) MADELINE","(2703) RODARI","(3255) THOLEN","(289) NENETTA","(821) FANNY","(653) BERENIKE","(3498) BELTON","(570) KYTHERA","(3710) BOGOSLOVSKIJ","(4558) JANESICK","(2795) LEPAGE","(4584) AKAN","(145) ADEONA","(2807) KARL MARX","(2268) SZMYTOWNA","(2451) DOLLFUS","(391) INGEBORG","(168) SIBYLLA","(2438) OLESHKO","(441) BATHILDE","(3645) FABINI","(3254) BUS","(4299) WIYN","(45) EUGENIA","(3179) BERUTI","(346) HERMENTARIA","(366) VINCENTINA","(185) EUNIKE","(6129) DEMOKRITOS","(2019) VAN ALBADA","(3849) INCIDENTIA","(10) HYGIEA","(789) LENA","(4824) STRADONICE","(2317) GALYA","(25) PHOCAEA","(394) ARDUINA","(863) BENKOELA","(2956) YEOMANS","(5622) PERCYJULIAN","(464) MEGAIRA","(99) DIKE","(238) HYPATIA","(515) ATHALIA","(5227) BOCACARA","(92) UNDINA","(1642) HILL","(2189) ZARAGOZA","(4796) LEWIS","(581) TAUNTONIA","(908) BUDA","(3416) DORRIT","(55) PANDORA","(3256) DAGUERRE","(2724) ORLOV","(3627) SAYERS","(8513) 1991 PK11","(376713) 1995 WQ5","(4332) MILTON","(4744) ROVERETO","(1316) KASAN","(3224) IRKUTSK","(4142) DERSU-UZALA","(5585) PARKS","(4387) TANAKA","(272) ANTONIA","(847) AGNIA","(1372) HAREMARI","(5349) PAULHARRIS","(104) KLYMENE","(40) HARMONIA","(5142) OKUTAMA","(1420) RADCLIFFE","(31) EUPHROSYNE","(4950) HOUSE","(1592) MATHIEU","(284) AMALIA","(743) EUGENISIS","(1549) MIKKO","(2929) HARRIS","(7402) 1987 YH","(712) BOLIVIANA","(332) SIRI","(1796) RIGA","(1324) KNYSNA","(59) ELPIS","(1272) GEFION","(163) ERIGONE","(5732) 1988 WC","(2073) JANACEK","(3545) GAFFEY","(2131) MAYALL","(143) ADRIA","(754) MALABAR","(4523) MIT","(5275) ZDISLAVA","(3730) HURBAN","(1011) LAODAMIA","(44) NYSA","(6249) JENNIFER","(4884) BRAGARIA","(1) CERES","(214) ASCHERA","(3317) PARIS","(4767) SUTOKU","(509) IOLANDA","(601) NERTHUS","(1139) ATAMI","(3674) ERBISBUHL","(129493) 1995 BM2","(4205) DAVID HUGHES","(919) ILSEBILL","(3507) VILAS","(4456) MAWSON","(339) DOROTHEA","(2861) LAMBRECHT","(1134) KEPLER","(1343 )NICOLE","(599) LUISA","(371) BOHEMIA","(3958) KOMENDANTOV","(335) ROBERTA","(5817) ROBERTFRAZER","(5407) 1992 AX","(678) FREDEGUNDIS","(793) ARIZONA","(5087) EMEL'YANOV","(221) EOS","(81) TERPSICHORE","(5576) ALBANESE","(432) PYTHIA","(1510) CHARLOIS","(1567) ALIKOSKI","(1705) TAPIO","(3000) LEONARDO","(76) FREIA","(5392) PARKER","(5364) 1980 RC1","(2659) MILLIS","(1277) DOLORES","(5222) IOFFE","(195) EURYKLEIA","(1655) COMAS SOLA","(1932) JANSKY","(1103) SEQUOIA","(1126) OTERO","(49) PALES","(312) PIERRETTA","(907) RHODA","(2653) PRINCIPIA","(2709) SAGAN","(182) ELSA","(2763) JEANS","(797) MONTANA","(1923) OSIRIS","1996 PW","(3060) DELCANO","(2850) MOZHAISKIJ","(6847) KUNZ-HALLSTEIN","(132) AETHRA","(1629) PECKER","(718) ERIDA","(131) VALA","(5591) KOYO","(6669) OBI","(571) DULCINEA","(2629) RUDRA","(3824) BRENDALEE","(91) AEGINA","(199) BYBLIS","(3197) WEISSMAN","(1766) SLIPHER","(1989) TATRY","(1662) HOFFMANN","(699) HELA","(3065) SARAHILL","(598) OCTAVIA","(1114) LORRAINE","(2316) JO-ANN","(1768) APPENZELLA","(2955) NEWBURN","(96) AEGLE","(814) TAURIS","(100) HEKATE","(3216) HARRINGTON","(434) HUNGARIA"],"instruments":["1.3-m Tinsley Cassegrain/Coude reflector","Mark III Spectrograph","2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory","McGraw-Hill Observatory"],"data_types":[],"start_date":"1993-08-21","stop_date":"1999-03-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/bundle_gbo.ast.smass2.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/bundle_gbo.ast.smass2.spectra.xml","scraped_at":"2026-02-25T20:02:10.737271Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_binary_parameters_compilation::3.0","title":"BINARY MINOR PLANETS V3.0","description":"The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":[],"start_date":"1978-12-01","stop_date":"2019-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/bundle_ast_binary_parameters_compilation.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/bundle_ast_binary_parameters_compilation.xml","scraped_at":"2026-02-25T20:02:10.737286Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images::1.0","title":"OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Purgathofer SA71-20","Landolt SA114-790","Landolt SA114-223","(101955) Bennu","Purgathofer SA71-07"],"instruments":["University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope"],"instrument_hosts":["Steward Observatory"],"data_types":[],"start_date":"2005-09-14","stop_date":"2005-09-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/bundle_orex.gbo.ast-bennu.lightcurves-images.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/bundle_orex.gbo.ast-bennu.lightcurves-images.xml","scraped_at":"2026-02-25T20:02:10.737291Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.zappala-etal.families::1.0","title":"Zappala et al. (1995) Asteroid Dynamical Families V1.0","description":"Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/bundle_ast.zappala-etal.families.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/bundle_ast.zappala-etal.families.xml","scraped_at":"2026-02-25T20:02:10.737295Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.phobos.shape-model::1.0","title":"Gaskell Phobos Shape Model V1.0","description":"The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Viking","Phobos 2"],"targets":["Mars I (Phobos)"],"instruments":["Visual Imaging Subsystem - Camera A","Visual Imaging Subsystem - Camera B","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat"],"instrument_hosts":["Viking Orbiter 2","Viking Orbiter 2","Viking Orbiter 1","Viking Orbiter 1","Phobos 2"],"data_types":[],"start_date":"1976-07-24","stop_date":"1989-03-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/bundle_gaskell.phobos.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/bundle_gaskell.phobos.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737300Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra::1.0","title":"IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS","description":"This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1014) Semphyra","(1020) Arcadia","(1039) Sonneberga","(1098) Hakone","(110) Lydia","(1103) Sequoia","(112) Iphigenia","(1228) Scabiosa","(1251) Hedera","(1275) Cimbria","(129) Antigone","(1317) Silvretta","(135) Hertha","(136) Austria","(143) Adria","(144) Vibilia","(1468) Zomba","(1545) Thernoe","(1580) Betulia","(16) Psyche","(166) Rhodope","(1662) Hoffmann","(17) Thetis","(173) Ino","(179) Klytaemnestra","(1858) Lobachevskij","(186) Celuta","(1903) Adzhimushkaj","(1929) Kollaa","(2) Pallas","(2042) Sitarski","(2045) Peking","(2048) Dwornik","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(213) Lilaea","(214) Aschera","(216) Kleopatra","(217) Eudora","(221) Eos","(224) Oceana","(229) Adelinda","(233) Asterope","(234) Barbara","(2371) Dimitrov","(2401) Aehlita","(2442) Corbett","(246) Asporina","(250) Bettina","(2501) Lohja","(2504) Gaviola","(2511) Patterson","(25143) Itokawa","(2566) Kirghizia","(2579) Spartacus","(260) Huberta","(2606) Odessa","(2653) Principia","(27343) Deannashea","(2763) Jeans","(2795) Lepage","(2823) van der Laan","(283) Emma","(284) Amalia","(2851) Harbin","(289) Nenetta","(2912) Lapalma","(304) Olga","(3103) Eger","(3155) Lee","(317) Roxane","(322) Phaeo","(335) Roberta","(3363) Bowen","(337) Devosa","(3395) Jitka","(347) Pariana","(354) Eleonora","(359) Georgia","(3657) Ermolova","(3703) Volkonskaya","(375) Ursula","(3782) Celle","(379) Huenna","(38070) Redwine","(3819) Robinson","(383) Janina","(387) Aquitania","(397) Vienna","(4) Vesta","(4038) Kristina","(409) Aspasia","(41) Daphne","(417) Suevia","(4188) Kitezh","(419) Aurelia","(4215) Kamo","(426) Hippo","(43) Ariadne","(434) Hungaria","(44) Nysa","(441) Bathilde","(4426) Roerich","(446) Aeternitas","(46) Hestia","(4796) Lewis","(497) Iva","(50) Virginia","(505) Cava","(5111) Jacliff","(517) Edith","(53) Kalypso","(536) Merapi","(547) Praxedis","(5481) Kiuchi","(5498) Gustafsson","(55) Pandora","(559) Nanon","(572) Rebekka","(5840) Raybrown","(599) Luisa","(62) Erato","(64) Angelina","(661) Cloelia","(676) Melitta","(678) Fredegundis","(679) Pax","(686) Gersuind","(709) Fringilla","(71) Niobe","(712) Boliviana","(739) Mandeville","(742) Edisona","(75) Eurydike","(757) Portlandia","(758) Mancunia","(768) Struveana","(77) Frigga","(771) Libera","(779) Nina","(7800) Zhongkeyuan","(785) Zwetana","(789) Lena","(808) Merxia","(809) Lundia","(844) Leontina","(847) Agnia","(863) Benkoela","(87) Sylvia","(872) Holda","(89) Julia","(899) Jokaste","(909) Ulla","(9481) Menchu","(9553) Colas","(956) Elisa","(97) Klotho","(973) Aralia","(976) Benjamina","(980) Anacostia","(984) Gretia","(99) Dike","Multiple Asteroids","(10537) 1991 RY16","(139359) 2001 ME1","(16416) 1987 SM3","(26760) 2001 KP41","(26886) 1994 TJ2","(29075) 1950 DA","(33881) 2000 JK66","(36412) 2000 OP49","(50098) 2000 AG98","(97276) 1999 XC143"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2000-09-04","stop_date":"2009-08-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/bundle_gbo.ast.irtf-spex-collection.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/bundle_gbo.ast.irtf-spex-collection.spectra.xml","scraped_at":"2026-02-25T20:02:10.737314Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.torino.polarimetry::1.0","title":"TORINO ASTEROID POLARIMETRY","description":"This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":[],"start_date":"1995-01-01","stop_date":"2005-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/bundle_gbo.ast.torino.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/bundle_gbo.ast.torino.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.737321Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.denis.ir-photometry::1.0","title":"NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS","description":"The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["DENIS 3-Channel Near-Infrared Camera","1-m photometric Cassegrain reflector at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":[],"start_date":"1995-12-01","stop_date":"1999-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/bundle_gbo.ast.denis.ir-photometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/bundle_gbo.ast.denis.ir-photometry.xml","scraped_at":"2026-02-25T20:02:10.737325Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-153591.radar.shape-model::1.0","title":"SHAPE MODEL OF ASTEROID (153591) 2001 SN263","description":"We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(153591) 2001 SN263","(153591) 2001 SN263"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-9E","Leura 0.25m","SBIG ST-6","1-m Grubb reflector","FLI--FL-PL3041-1-BB","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Apogee AP8","Modra 0.6-m","Observatoire de Haute-Provence 1.2m CCD 1996-2014","1.20-m Newtonian reflector at Observatory of Haute-Provence","Palmer Divide 0.5m CCD","0.5m"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Leura","Crimean Astrophysical Observatory-Simeis","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Modra","Observatory of Haute-Provence","Palmer Divide Observatory"],"data_types":[],"start_date":"2007-01-12","stop_date":"2008-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/bundle_gbo.ast-153591.radar.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/bundle_gbo.ast-153591.radar.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737334Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-8567.radar.shape-model::1.0","title":"SHAPE AND ROTATION OF (8567) 1996 HW1","description":"We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(8567) 1996 HW1"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-8","SBIG ST-6","1-m Grubb reflector","SBIG ST-6","Apogee AP8","Modra 0.6-m","APOGEE AP8"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Crimean Astrophysical Observatory-Simeis","Modra"],"data_types":[],"start_date":"2005-06-26","stop_date":"2009-01-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/bundle_gbo.ast-8567.radar.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/bundle_gbo.ast-8567.radar.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737341Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves::1.0","title":"SUBMILLIMETER LIGHTCURVES OF ASTEROIDS","description":"Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(12) Victoria","(2) Pallas","(3) Juno","(4) Vesta","(511) Davida","(85) Io","Multiple Asteroids"],"instruments":["SMT MPIfR 19-channel Bolometer","10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"],"instrument_hosts":["Submillimeter Telescope Observatory"],"data_types":[],"start_date":"2003-01-04","stop_date":"2004-05-06","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/bundle_gbo.ast.chamberlain.sub-mm-lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/bundle_gbo.ast.chamberlain.sub-mm-lightcurves.xml","scraped_at":"2026-02-25T20:02:10.737346Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.skads.astrometry-photometry::1.0","title":"SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)","description":"The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Kitt Peak Mosaic Camera","4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":[],"start_date":"2001-03-21","stop_date":"2001-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/bundle_gbo.ast.skads.astrometry-photometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/bundle_gbo.ast.skads.astrometry-photometry.xml","scraped_at":"2026-02-25T20:02:10.737350Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteoroid.cmor.radar-survey::1.0","title":"CMOR METEOROID STREAM SURVEY","description":"A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple"],"instruments":["Canadian Meteor Orbit Radar (CMOR)","Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"],"instrument_hosts":["UWO Meteor Radar Complex"],"data_types":[],"start_date":"2002-01-01","stop_date":"2008-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/bundle_gbo.meteoroid.cmor.radar-survey.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/bundle_gbo.meteoroid.cmor.radar-survey.xml","scraped_at":"2026-02-25T20:02:10.737354Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-m-type.fornasier.spectra::1.0","title":"FORNASIER SPECTRA OF M ASTEROIDS","description":"This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(110) Lydia","(125) Liberatrix","(129) Antigone","(132) Aethra","(135) Hertha","(16) Psyche","(161) Athor","(201) Penelope","(216) Kleopatra","(22) Kalliope","(224) Oceana","(250) Bettina","(325) Heidelberga","(338) Budrosa","(347) Pariana","(369) Aeria","(382) Dodona","(418) Alemannia","(441) Bathilde","(498) Tokio","(516) Amherstia","(55) Pandora","(558) Carmen","(69) Hesperia","(755) Quintilla","(785) Zwetana","(849) Ara","(860) Ursina","(872) Holda","(97) Klotho","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","ESO Multi-Mode Instrument: RILD Mode","New Technology Telescope (NTT) at European Southern Observatory","DOLORES (Device Optimized for LOw RESolution)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","Near Infrared Camera Spectrometer (NICS)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","SOFI (Son OF Isaac)","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["Mauna Kea Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","European Southern Observatory"],"data_types":[],"start_date":"2004-02-29","stop_date":"2008-12-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/bundle_gbo.ast-m-type.fornasier.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/bundle_gbo.ast-m-type.fornasier.spectra.xml","scraped_at":"2026-02-25T20:02:10.737362Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.52-color-survey::1.0","title":"52-COLOR ASTEROID SURVEY","description":"This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(101) Helena","(103) Hera","(1036) Ganymed","(1056) Azalea","(106) Dione","(11) Parthenope","(113) Amalthea","(114) Kassandra","(115) Thyra","(116) Sirona","(12) Victoria","(1219) Britta","(13) Egeria","(130) Elektra","(135) Hertha","(138) Tolosa","(145) Adeona","(15) Eunomia","(152) Atala","(153) Hilda","(16) Psyche","(1627) Ivar","(18) Melpomene","(1866) Sisyphus","(19) Fortuna","(2) Pallas","(20) Massalia","(21) Lutetia","(218) Bianca","(22) Kalliope","(221) Eos","(233) Asterope","(235) Carolina","(241) Germania","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(264) Libussa","(267) Tirza","(27) Euterpe","(270) Anahita","(289) Nenetta","(29) Amphitrite","(3) Juno","(308) Polyxo","(31) Euphrosyne","(317) Roxane","(32) Pomona","(324) Bamberga","(33) Polyhymnia","(336) Lacadiera","(346) Hermentaria","(349) Dembowska","(352) Gisela","(354) Eleonora","(3551) Verenia","(356) Liguria","(364) Isara","(367) Amicitia","(368) Haidea","(37) Fides","(376) Geometria","(379) Huenna","(385) Ilmatar","(387) Aquitania","(389) Industria","(39) Laetitia","(4) Vesta","(40) Harmonia","(42) Isis","(422) Berolina","(43) Ariadne","(431) Nephele","(44) Nysa","(446) Aeternitas","(46) Hestia","(476) Hedwig","(5) Astraea","(511) Davida","(521) Brixia","(532) Herculina","(554) Peraga","(57) Mnemosyne","(584) Semiramis","(59) Elpis","(6) Hebe","(6063) Jason","(63) Ausonia","(639) Latona","(64) Angelina","(65) Cybele","(653) Berenike","(661) Cloelia","(67) Asia","(674) Rachele","(68) Leto","(69) Hesperia","(7) Iris","(702) Alauda","(704) Interamnia","(714) Ulula","(76) Freia","(762) Pulcova","(772) Tanete","(773) Irmintraud","(80) Sappho","(82) Alkmene","(823) Sisigambis","(849) Ara","(86) Semele","(863) Benkoela","(89) Julia","(9) Metis","(92) Undina","(96) Aegle","(980) Anacostia","Multiple Asteroids"],"instruments":["Circularly Variable Filter","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"1983-06-11","stop_date":"1987-04-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/bundle_gbo.ast.52-color-survey.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/bundle_gbo.ast.52-color-survey.xml","scraped_at":"2026-02-25T20:02:10.737373Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.kbo-centaur.magnitudes::1.0","title":"KBO AND CENTAUR ABSOLUTE MAGNITUDES","description":"This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1995-01-01","stop_date":"2001-05-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/bundle_gbo.kbo-centaur.magnitudes.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/bundle_gbo.kbo-centaur.magnitudes.xml","scraped_at":"2026-02-25T20:02:10.737410Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:meteoroid.steel.orbits::1.0","title":"METEOROID ORBITS","description":"This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1936-10-21","stop_date":"1983-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/bundle_meteoroid.steel.orbits.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/bundle_meteoroid.steel.orbits.xml","scraped_at":"2026-02-25T20:02:10.737415Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos::1.0","title":"ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS","description":"This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1958-02-19","stop_date":"2005-02-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/bundle_ast.shevchenko-tedesco.occultation-albedos.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/bundle_ast.shevchenko-tedesco.occultation-albedos.xml","scraped_at":"2026-02-25T20:02:10.737418Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.olivines.pitman.lab-spectra::1.0","title":"OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA","description":"Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["METEORITIC FO81","Natural Fayalite (FO0)","Natural FO14","Natural FO31","Natural FO41","Natural FO45","Natural FO54","Natural FO63","Natural FO68","Natural FO9","Natural FO91","Natural FO93","msng (FO0)","Synthetic FO100","Synthetic FO50","Synthetic FO67","Synthetic FO75","Synthetic FO80"],"instruments":["BOMEM DA 3.02 FT-IR SPECTROMETER"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/bundle_gbo.olivines.pitman.lab-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/bundle_gbo.olivines.pitman.lab-spectra.xml","scraped_at":"2026-02-25T20:02:10.737423Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves::1.0","title":"NEAR EARTH ASTEROID LIGHTCURVES","description":"This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(11066) Sigurd","(1627) Ivar","(1943) Anteros","1998 KY26","(2063) Bacchus","(2100) Ra-Shalom","(2102) Tantalus","(2212) Hephaistos","(3103) Eger","(3122) Florence","(3199) Nefertiti","(3200) Phaethon","(3691) Bede","(3752) Camillo","(4341) Poseidon","(4957) Brucemurray","(5143) Heracles","(5751) Zao","(7341) 1991 VK","(7474) 1992 TC","(7480) Norwan","(8034) Akka","Multiple Asteroids","(13651) 1997 BR","(17511) 1992 QN","(19356) 1997 GH3","(422638) 1994 CB","1995 FX","1997 GL3","(35107) 1991 VH","(5587) 1990 SB","(6053) 1993 BW3","(6322) 1991 CQ","(65679) 1989 UQ","(6569) Ondaatje","(7025) 1993 QA","(7482) 1994 PC1","(7822) 1991 CS","(7888) 1993 UC","(7889) 1994 LX","(8201) 1994 AH2","(85490) 1997 SE5","(99907) 1989 VA"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1984-08-29","stop_date":"1998-06-05","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/bundle_gbo.ast-neo.ondrejov.lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/bundle_gbo.ast-neo.ondrejov.lightcurves.xml","scraped_at":"2026-02-25T20:02:10.737434Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-high-inclination.gil-hutton.families::1.0","title":"HIGH-INCLINATION ASTEROID FAMILIES","description":"This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"2005-03-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/bundle_ast-high-inclination.gil-hutton.families.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/bundle_ast-high-inclination.gil-hutton.families.xml","scraped_at":"2026-02-25T20:02:10.737438Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot::1.0","title":"Whiteley NEO Photometry V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2.24-m Cassegrain/Coude reflector","UH Tektronix 2K CCD"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"1996-02-15","stop_date":"2000-07-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/bundle_gbo.ast-neo.whiteley.ecas-phot.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/bundle_gbo.ast-neo.whiteley.ecas-phot.xml","scraped_at":"2026-02-25T20:02:10.737442Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra::1.0","title":"Gaffey Meteorite Spectra V1.0","description":"This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Hamlet","Elenovka","Queen's Mercy","Barwise","Chainpur","Sevrukovo","Cynthiana","Murchison","Shelburne","Mighei","Homestead","Coolidge","Butler","Aumale","Girgenti","Atlanta","Bruderheim","Kainsaz","Babb's Mill (Troost's Iron)","Ausson","Olivenza","Orgueil","Pantar","Alfianello","Mokoia","Cold Bokkeveld","Hvittis","Pillistfer","Nerft","Utrecht","Collescipoli","Allegan","Petersburg","Olmedilla de Alarcon","Ochansk","Chulafinnee","Tatahouine","Colby (Wisconsin)","Nakhla","Karoonda","Mezoe-Madaras","METEORITE","Leedey","Lance","Jonzac","Zavid","Manbhoom","Nanjemoy","Soko-Banja","Cabezo de Mayo","Murray","Tourinnes-la-Grosse","Daniel's Kuil","Veramin","Bereba","Vigarano","Warrenton","Khairpur","Shalka","Zhovtnevyi","Farmington","Buschhof","Casey County","Paragould","Parnellee","Juvinas","Sioux County","Rose City","Frankfort (stone)","Drake Creek","Leoville","Felix","Andover","Castalia","Alais","Haraiya","Bald Mountain","Le Teilleul","Abee","Grueneberg","Tieschitz","Saratov","Stannern","Allende","St. Mark's","Johnstown","Ornans","Jelica","Grosnaja","Forest City","Roda","Quenggouk","Chassigny","Pasamonte","Vavilovka","Nogoya","Angra dos Reis","MULTIPLE","St. Michel","Nobleborough","Indarch","Knyahina","Lancon","Padvarninkai","Pavlovka"],"instruments":["Beckman DK2A Ratio Recording Spectroreflectometer"],"instrument_hosts":["Terrestrial Laboratory"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/bundle_gbo.meteorite.gaffey.lab-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/bundle_gbo.meteorite.gaffey.lab-spectra.xml","scraped_at":"2026-02-25T20:02:10.737451Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.radar.shape-models::1.0","title":"Small Bodies Radar Shape Models V1.0","description":"This data set contains radar-based shape models for small solar system bodies, prepared by various authors.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1620) Geographos","(52760) 1998 ML14","(4769) Castalia","1998 KY26","(6489) Golevka","(216) Kleopatra","(4179) Toutatis","(25143) Itokawa","(2063) Bacchus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":[],"start_date":"1989-08-19","stop_date":"2001-04-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/bundle_compil.ast.radar.shape-models.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/bundle_compil.ast.radar.shape-models.xml","scraped_at":"2026-02-25T20:02:10.737458Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra::1.0","title":"Gartrelle et al. IRTF Asteroid Spectra V1.0","description":"This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(3283) Skorina","(1542) Schalen","(1746) Brouwer","(2207) Antenor","Multiple Asteroids","(721) Tabora","(1269) Rollandia","(2208) Pushkin","(1256) Normannia","(1583) Antilochus","(2246) Bowell","(2357) Phereclos","(2311) El Leoncito","(884) Priamus","(336) Lacadiera","(1702) Kalahari","(2266) Tchaikovsky","(368) Haidea","(1167) Dubiago","(2872) Gentelec","(4744) Rovereto","(2674) Pandarus","(267) Tirza","(2893) Peiroos","(773) Irmintraud","(3248) Farinella"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2016-12-29","stop_date":"2019-01-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/bundle_gbo.ast-dtype.gartrelleetal.irtf.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/bundle_gbo.ast-dtype.gartrelleetal.irtf.spectra.xml","scraped_at":"2026-02-25T20:02:10.737482Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.ast-eros.shape-model::1.1","title":"Gaskell Eros Shape Model V1.1","description":"The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":[],"start_date":"2000-02-15","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/bundle_gaskell.ast-eros.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/bundle_gaskell.ast-eros.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737486Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.ast-itokawa.shape-model::1.1","title":"Gaskell Itokawa Shape Model V1.1","description":"The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":[],"start_date":"2005-09-11","stop_date":"2005-11-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/bundle_gaskell.ast-itokawa.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/bundle_gaskell.ast-itokawa.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737490Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-eros.roberts.ponds-catalog::1.1","title":"Roberts Eros Ponds Catalog V1.1","description":"This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":[],"start_date":"2000-05-01","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/bundle_ast-eros.roberts.ponds-catalog.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/bundle_ast-eros.roberts.ponds-catalog.xml","scraped_at":"2026-02-25T20:02:10.737493Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry::1.1","title":"POLARIMETRY OF ASTEROID ITOKAWA","description":"This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(25143) Itokawa"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":[],"start_date":"2004-06-28","stop_date":"2004-07-04","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/bundle_gbo.ast-itokawa.torino.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/bundle_gbo.ast-itokawa.torino.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.737497Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.alcdef-database::1.0","title":"Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0","description":"The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1986-07-03","stop_date":"2021-09-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/bundle_gbo.ast.alcdef-database.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/bundle_gbo.ast.alcdef-database.xml","scraped_at":"2026-02-25T20:02:10.737503Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-lightcurve-database::4.0","title":"Asteroid Lightcurve Database (LCDB) V4.0","description":"The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1913-01-01","stop_date":"2021-09-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/bundle_ast-lightcurve-database.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/bundle_ast-lightcurve-database.xml","scraped_at":"2026-02-25T20:02:10.737506Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-sat.thomas.shape-models::1.0","title":"Small Body Optical Shape Models V1.0","description":"The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HST","Voyager","Galileo","Near Earth Asteroid Rendezvous","Viking","Phobos 2","Mariner71"],"targets":["(253) Mathilde","Mars I (Phobos)","Saturn XI (Epimetheus)","Mars II (Deimos)","(243) Ida","(951) Gaspra","(4) Vesta","Mars II (Deimos)","Saturn VII (Hyperion)","Saturn VII (Hyperion)","Saturn X (Janus)","Mars I (Phobos)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","Visual Imaging Subsystem - Camera A for VO2","Imaging Science Subsystem","Visual Imaging Subsystem - Camera B for VO2","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","Multi-spectral Imager","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","Solid State Imaging System","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat","Wide Field Planetary Camera 2"],"instrument_hosts":["Voyager 1","Viking Orbiter 2","Mariner 9","Viking Orbiter 2","Voyager 2","Near Earth Asteroid Rendezvous","Viking Orbiter 1","Galileo Orbiter","Viking Orbiter 1","Phobos 2","Hubble Space Telescope"],"data_types":[],"start_date":"1976-06-22","stop_date":"1997-06-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/bundle_ast-sat.thomas.shape-models.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/bundle_ast-sat.thomas.shape-models.xml","scraped_at":"2026-02-25T20:02:10.737514Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-bennu.radar.shape-model::1.1","title":"Asteroid (101955) Bennu Radar Shape Model V1.1","description":"We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(101955) Bennu"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70 cm AZT-8","SBIG ST-6 UV camera","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Steward Observatory","Arecibo Observatory","Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station","Goldstone Complex","Goldstone Complex"],"data_types":[],"start_date":"1999-09-21","stop_date":"2005-10-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/bundle_ast-bennu.radar.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/bundle_ast-bennu.radar.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737522Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asteroid_polarimetric_database::2.0","title":"Asteroid Polarimetric Database V2.0","description":"The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":[],"start_date":"1958-10-22","stop_date":"2020-12-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/bundle_asteroid_polarimetric_database.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/bundle_asteroid_polarimetric_database.xml","scraped_at":"2026-02-25T20:02:10.737526Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-ceres.alma.images-spectra::1.0","title":"ALMA Ceres Imaging and Spectrum V1.0","description":"This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres"],"instruments":["Atacama Millimeter/submillimeter Array (ALMA)","ALMA Radio Receivers"],"instrument_hosts":["European Southern Observatory - Chajnantor"],"data_types":[],"start_date":"2015-10-31","stop_date":"2017-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/bundle_gbo.ast-ceres.alma.images-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/bundle_gbo.ast-ceres.alma.images-spectra.xml","scraped_at":"2026-02-25T20:02:10.737531Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.amica.itokawa.backplanes::1.0","title":"Hayabusa AMICA Images with Geometry Backplanes V1.0","description":"The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":[],"start_date":"2005-09-11","stop_date":"2005-10-28","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/bundle_hay.amica.itokawa.backplanes.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/bundle_hay.amica.itokawa.backplanes.xml","scraped_at":"2026-02-25T20:02:10.738065Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_high_rate_detector::1.0","title":"CASSINI HIGH RATE DETECTOR","description":"The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":[],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/bundle_cassini_high_rate_detector.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/bundle_cassini_high_rate_detector.xml","scraped_at":"2026-02-25T20:02:10.738069Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:saturn_satellite_shape_models::1.0","title":"Saturn Small Moon Shape Models V1.0","description":"Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-huygens"],"targets":["Saturn XVI (Prometheus)","Saturn XV (Atlas)","Saturn XIV (Calypso)","PAN","PANDORA","EPIMETHEUS","Saturn VII (Hyperion)","Saturn XXXV (Daphnis)","Saturn X (Janus)","Saturn XII (Helene)","Saturn XIII (Telesto)"],"instruments":["Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/bundle_saturn_satellite_shape_models.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/bundle_saturn_satellite_shape_models.xml","scraped_at":"2026-02-25T20:02:10.738073Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ceres::1.0","title":"DAWN GRaND Ceres Bundle","description":"This bundle collects the Ceres products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"2015-03-13","stop_date":"2018-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/bundle_dawn-grand-ceres.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/bundle_dawn-grand-ceres.xml","scraped_at":"2026-02-25T20:02:10.738078Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-vesta::1.0","title":"DAWN GRaND Vesta Bundle","description":"This bundle collects the Vesta products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"2011-05-03","stop_date":"2012-08-09","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/bundle_dawn-grand-vesta.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/bundle_dawn-grand-vesta.xml","scraped_at":"2026-02-25T20:02:10.738082Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-cruise::1.0","title":"DAWN GRaND Cruise Bundle","description":"This bundle collects the cruise products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"2007-10-16","stop_date":"2014-07-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/bundle_dawn-grand-cruise.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/bundle_dawn-grand-cruise.xml","scraped_at":"2026-02-25T20:02:10.738086Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ancillary::1.0","title":"DAWN GRaND Ancillary Bundle","description":"This bundle collects the ancillary products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/bundle_dawn-grand-ancillary.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/bundle_dawn-grand-ancillary.xml","scraped_at":"2026-02-25T20:02:10.738089Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-mars::1.0","title":"DAWN GRaND Mars Bundle","description":"This bundle collects the Mars products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"2009-01-20","stop_date":"2009-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/bundle_dawn-grand-mars.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/bundle_dawn-grand-mars.xml","scraped_at":"2026-02-25T20:02:10.738093Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.mission::9.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Mission Bundle","description":"This bundle collects all the mission wide information needed to use and understand the scientific data products produced by the Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx) mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS","OCAMS","OLA","OTES","OVIRS","REXIS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/bundle_mission.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/bundle_mission.xml","scraped_at":"2026-02-25T20:02:10.738099Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Laser Altimeter (OLA) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Laser Altimeter (OLA). OLA is used for the topographic characterization of the surface of (101955) Bennu.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/bundle_ola.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/bundle_ola.xml","scraped_at":"2026-02-25T20:02:10.738104Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.otes::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Emission Spectrometer (OTES) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Thermal Emission (OTES). OTES is used for the spectral characterization of the surface of (101955) Bennu.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/bundle_otes.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/bundle_otes.xml","scraped_at":"2026-02-25T20:02:10.738116Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_nirs3::1.0","title":"Hayabusa2 NIRS3 Bundle","description":"This bundle collects all the operational data products produced by the Hayabusa2 NIRS3 instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/bundle_hyb2_nirs3.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/bundle_hyb2_nirs3.xml","scraped_at":"2026-02-25T20:02:10.738121Z","keywords":["Hayabusa2","NIRS3","Spectrometer","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_tir::1.0","title":"Hayabusa2 TIR Bundle","description":"This bundle collects all the operational data products produced by the Hayabusa2 TIR instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/bundle_hyb2_tir.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/bundle_hyb2_tir.xml","scraped_at":"2026-02-25T20:02:10.738127Z","keywords":["Hayabusa2","TIR","Thermal Infrared Imager","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_spectra_reddy_neos_marscrossers::1.0","title":"REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS","description":"This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1036) Ganymed","(1170) Siva","(1727) Mette","(1916) Boreas","2004 RS109","2008 RW24","(2035) Stearns","(323) Brucia","(391) Ingeborg","(4179) Toutatis","(7088) Ishtar","Multiple Asteroids","(137032) 1998 UO1","(137924) 2000 BD19","(143678) 2003 SA224","(143947) 2003 YQ117","(144411) 2004 EW9","(163000) 2001 SW169","(21374) 1997 WS22","(23183) 2000 OY21","(391151) 2005 YY93","(39572) 1993 DQ1","(446791) 1998 SJ70","(66063) 1998 RO1","(68950) 2002 QF15","(85709) 1998 SG36","(85713) 1998 SS49","(87684) 2000 SY2"],"instruments":["SpeX","Infrared Telescope Facility"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2001-09-29","stop_date":"2008-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/bundle_ast_spectra_reddy_neos_marscrossers.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/bundle_ast_spectra_reddy_neos_marscrossers.xml","scraped_at":"2026-02-25T20:02:10.738133Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:epoxi_mri::1.0","title":"EPOXI MRI Observations Bundle","description":"This bundle contains observations collected with the MRI instrument on the Deep Impact Flyby Spacecraft during the EPOXI mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738258Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet::4.0","title":"Comet Data Compilations from Published Sources","description":"The collections in this archive contain results that have been reported in the literature, or in some cases made available by private communication, for various comet properties. Individual collections focus on one or several closely related properties or targets of high interest.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Comets"],"instruments":["Compilation"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738263Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:spitzer::1.0","title":"Data from the Spitzer Space Telescope","description":"This archive bundle contains collections of observations and derived results from the Spitzer Heritage Archive, with related documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Spitzer Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":["Spitzer Space Telescope"],"data_types":[],"start_date":"2003-11-23","stop_date":"2009-04-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738285Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-ctio::1.0","title":"Groundbased Observations at Cerro Tololo Inter-American Observatory","description":"This bundle collects data taken at Cerro Tololo Inter-American Observatory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["19P/1904 Y2 (Borrelly 1)"],"instruments":["1.5-m Ritchey-Chretien Cassegrain reflector","Cassegrain Focus Direct Image CCD Camera"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"2000-07-28","stop_date":"2000-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738290Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison::1.0","title":"Comet C/ISON (2012 S1) Ground-Based Observations Bundle","description":"This bundle contains raw, processed, and derived imaging and spectroscopic data of comet ISON taken in 2013.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738293Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-irtf::2.0","title":"Groundbased Observations at the NASA Infrared Telescope Facility (IRTF)","description":"This bundle collects data taken at IRTF and associated document files.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["IRTF 3.0-Meter Telescope","SpeX","Mid-Infrared Spectrometer and Imager"],"instrument_hosts":["NASA Infrared Telescope Facility"],"data_types":[],"start_date":"2005-06-24","stop_date":"2005-07-18","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738304Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald::3.0","title":"Groundbased Observations at McDonald Observatory","description":"This bundle collects data taken at McDonald Observatory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Comets","9P/1867 G1 (Tempel 1)","19P/1904 Y2 (Borrelly 1)"],"instruments":["2.7m Telescope","2.1m Otto Struve telescope","Image Dissector Scanner","Large Cassegrain Spectrograph","Imaging Grism Instrument"],"instrument_hosts":["McDonald Observatory"],"data_types":[],"start_date":"1981-01-03","stop_date":"1995-10-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738309Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno::4.0","title":"Groundbased Observations at Kitt Peak National Observatory (KPNO)","description":"This bundle collects data taken at Kitt Peak National Observatory and associated document files.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":["C/1996 B2 (Hyakutake)","9P/1867 G1 (Tempel 1)","19P/1904 Y2 (Borrelly 1)"],"instruments":[],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":[],"start_date":"1996-03-26","stop_date":"2005-07-09","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738312Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ro_derived::1.0","title":"Rosetta Derived Data Bundle","description":"This bundle contains collections of products derived from archival Rosetta data that are separate from deliveries by the Rosetta team.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["INTERNATIONAL ROSETTA MISSION"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738412Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbl-classe::1.0","title":"Laboratory Experiments at the Center for Laboratory Astrophysics and Space Science Experiments (CLASSE)","description":"This bundle contains collections of data from instrument suites at the Southwest Research Institute (SwRI) Center for Laboratory Astrophysics and Space Science Experiments (CLASSE).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":["CLASSE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/bundle.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738939Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.nesvorny.families::2.0","title":"Nesvorny HCM Asteroid Families","description":"The proper elements of asteroids are obtained from the instantaneous orbital elements by removing periodic oscillations produced by gravitational interactions with planets. They are unchanging in time, at least if chaotic dynamics and non-gravitational forces could be ignored, and can therefore be used to identify fragments of major collisions (asteroid families) that happened eons ago. Here we publish a new catalog of proper elements for 1.25 million main belt asteroids. A systematic search for families yielded 153 cases not reported in Nesvorn\\'y at al. (2015) -- 17 of these cases were identified in various other publications, 136 cases are new discoveries. There are now 274 families in the asteroid belt in total (plus a handful of new families in the resonant Hilda population). The present package contains member identifications for 153 new families.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Asteroids","Multiple Asteroids"],"instruments":["Literature search","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/bundle_ast.nesvorny.families.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/bundle_ast.nesvorny.families.xml","scraped_at":"2026-02-25T20:02:10.739582Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:smallbodiesoccultations::4.0","title":"Small Bodies Occultations V4.0","description":"This data set is intended to include all reported timings of observed asteroid, comet nucleus, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version contains 9729 occultations. It is complete through to June 2023, with partial observations up until December 2023.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Multiple Satellites","Multiple Planets","Multiple Dwarf Planets","Multiple Comets"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1911-08-14","stop_date":"2024-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/bundle_smallbodiesoccultations.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/bundle_smallbodiesoccultations.xml","scraped_at":"2026-02-25T20:02:10.739590Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-1999td10.images-lightcurves::2.0","title":"Visual Imaging and Photometry of (29981) 1999 TD10 V2.0","description":"The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Landolt PG 2213-006","Landolt SA 95","Landolt PG 0231+051","Landolt SA 92","(29981) 1999 TD10"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","CFIM+T2KA"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":[],"start_date":"2001-09-21","stop_date":"2002-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/bundle_gbo.ast-1999td10.images-lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/bundle_gbo.ast-1999td10.images-lightcurves.xml","scraped_at":"2026-02-25T20:02:10.739595Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.primass-l.spectra::2.0","title":"PRIMASS-L V2.0","description":"PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of the end of 2023 this library contains 438 visible and 264 near-infrared spectra of primitive asteroids from 10 families and two groups that had been sparsely studied before. PRIMASS-L contains spectra from a variety of ground-based facilities. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(78921) 2003 SP108","(84536) 2002 UV19","(86812) 2000 GB125","(3185) Clintford","(79044) 3919 T-2","(96690) 1999 JA73","(96918) 1999 TJ113","(178844) 2001 HG53","(5594) Jimmiller","(3064) Zimmer","(1754) Cunningham","(5158) Ogarev","(28424) 1999 XA","(1209) Pumma","(1439) Vogtia","(34487) 2000 SE133","(107070) 2001 AH16","(66333) 1999 JS60","(12421) Zhenya","(39260) 2000 YE138","(53537) Zhangyun","(29623) 1998 SR164","(72384) 2001 CF12","(20432) 1999 BD12","(30514) Chiomento","(162755) Spacesora","(57473) 2001 SE127","(17230) 2000 CX116","(35358) Lorifini","(237295) 2008 YN7","(3162) Nostalgia","(528) Rezia","(132509) 2002 JU41","(65354) 2002 NG43","(940) Kordula","(174594) 2003 QH56","(34210) 2000 QV67","(1511) Dalera","(6237) Chikushi","(6661) Ikemura","(203620) 2002 EU125","(72143) 2000 YQ86","(20771) 2000 QY150","(71932) 2000 WO61","(52870) 1998 SC26","(79143) 1992 BQ2","(85) Io","(2081) Sazava","(13997) 1993 FB32","(213825) 2003 QW63","(110819) 2001 UW49","(767) Bondia","(252953) 2002 PB91","(13537) 1991 SG","(61309) 2000 OF50","(78826) 2003 QE17","(1768) Appenzella","(25829) 2000 DU108","(122109) 2000 HJ94","(8091) 1992 BG","(20992) 1985 RV2","(6698) Malhotra","(44773) 1999 TU140","(2624) Samitchell","(92634) 2000 QN19","(210564) 1999 TR195","(84) Klio","(623) Chimaera","(43346) 2000 RT103","(174120) 2002 JC146","(11214) 1999 HP8","(34890) Vasikaran","(853) Nansenia","(28620) Anicia","(6578) Zapesotskij","(81010) 2000 EL35","(109030) 2001 QL10","(85626) 1998 HM141","(243648) 1999 TX176","(9723) Binyang","(6118) Mayuboshi","(190) Ismene","(249427) 2009 EH18","(6542) Jacquescousteau","(24726) Nagatatetsuya","(24956) Qiannan","(3298) Massandra","(57442) 2001 SF54","(5368) Vitagliano","(32847) 1992 JO3","(329) Svea","(39955) 1998 FV118","(37437) 2576 P-L","(17233) Stanshapiro","(11118) Modra","(67891) 2000 WR61","(65264) 2002 GW16","(42552) 1996 RH25","(42431) 1051 T-3","(242324) 2003 YY12","(16132) Angelakim","(4231) Fireman","(2728) Yatskiv","(29626) 1998 TV12","(3130) Hillary","(151019) 2001 UF119","(123979) 2001 FB38","(52891) 1998 SM61","(33804) 1999 WL4","(25381) Jerrynelson","(25490) Kevinkelly","(1539) Borrelly","(6039) Parmenides","(33913) 2000 LK14","(132383) 2002 GQ83","(42781) 1998 VL28","(132056) 2002 CA141","(1190) Pelagia","(42006) 2000 YA50","(11750) 1999 NM33","(557) Violetta","(126046) 2001 YH72","(67586) 2000 SH125","(362332) 2010 KW34","(11338) Schiele","(1700) Zvezdara","(48153) 2001 FW172","(2171) Kiev","(72047) 2000 YZ6","(6343) 1993 VK","(212417) 2006 KJ103","(38657) 2000 OO46","(6125) Singto","(320575) 2008 AM110","(164286) 2004 XO86","(262102) 2006 RE98","(24638) 1981 UC23","(169633) 2002 HQ12","(69706) 1998 HJ77","(11751) Davidcarroll","(59317) 1999 CN89","(80062) 1999 JX85","(752) Sulamitis","(133123) 2003 PO1","(401) Ottilia","(85727) 1998 SC75","(54286) 2000 JD51","(36469) 2000 QT23","(142297) 2002 RF145","(61500) 2000 QV51","(44766) 1999 TM123","(72169) 2000 YW107","(42347) 2002 AV155","(18477) 1995 WA11","(72230) 2001 AN15","(59) Elpis","(3036) Krat","(110518) 2001 TY78","(251796) 1999 TO9","(67940) 2000 WT143","(120384) 2005 QU29","(58240) 1993 FV81","(13737) 1998 RU76","(28736) 2000 GE133","(163) Erigone","(132091) 2002 CC175","(25932) 2001 DB72","(39094) 2000 VQ58","(147535) 2004 EH14","(136267) 2003 YR80","(147777) 2005 QV103","(253538) 2003 SX220","(3485) Barucci","(1280) Baillauda","(36342) 2000 NX15","(106085) 2000 SO355","(1183) Jutta","(19415) Parvamenon","(5771) Somerville","(69679) 1998 HR15","(3146) Dato","(45892) 2000 WR179","(42802) 1999 GE15","(14849) 1989 GQ1","(6415) 1993 VR3","(370) Modestia","(70394) 1999 RP237","(66403) 1999 LM13","(40976) 1999 TV272","(13509) Guayaquil","(52951) 1998 SO147","(5116) Korsor","(3470) Yaronika","(304858) 2007 RQ77","(50239) 2000 BW3","(156670) 2002 JK111","(76922) 2001 AH15","(39888) 1998 ES20","(5661) Hildebrand","(933) Susi","(5794) Irmina","(265259) 2004 EW82","(19862) 2556 P-L","(43482) 2001 BW32","(2066) Palala","(45357) 2000 AC102","(107032) 2000 YB1240","(169066) 2001 FR157","(282) Clorinde","(35135) 1992 RO1","(10979) Fristephenson","(70361) 1999 RK189","(117745) 2005 GP37","(4100) Sumiko","(6840) 1995 WW5","(186446) 2002 SM30","(57068) 2001 OC1","(7748) 1987 TA","(22118) 2000 SL86","(44463) 1998 VT18","(135384) 2001 TT166","(53170) 1999 CH19","(12072) Anupamakotha","(2839) Annette","(36465) 2000 QR19","(5333) Kanaya","(6647) Josse","(2067) Aksnes","(232922) 2005 AP26","(14179) Skinner","(60852) 2000 HU65","(3561) Devine","(14264) 2000 AH142","(238992) 2006 BH260","(138668) 2000 RB103","(1924) Horus","(59322) 1999 CB95","(38106) 1999 JG23","(66325) 1999 JF55","(85241) 1993 PC3","(119526) 2001 UF175","(3562) Ignatius","(100784) 1998 FM61","(5327) Gertwilkens","(133197) 2003 QS59","(186530) 2002 VX78","(24656) 1987 QT7","(2918) Salazar","(65540) 7628 P-L","(122871) 2000 SX138","(32061) 2000 JK48","(15134) 2000 ED92","(183911) 2004 CB100","(3247) Di Martino","(93347) 2000 SX247","(1923) Osiris","(1705) Tapio","(49859) 1999 XB100","(208048) 1999 TL149","(15561) 2000 GU36","(249089) 2007 VL55","(74962) 1999 TW200","(27506) Glassmeier","(155162) 2005 UZ104","(42155) 2001 BA63","(85167) 1989 RS2","(4589) McDowell","(2279) Barto","(38661) 2000 OC49","(20168) 1996 VY4","(1021) Flammario","(12051) Picha","(14000) 1993 FZ55","(1493) Sigrid","(73860) 1996 XR5","(325852) 2010 TO53","(80754) 2000 CV49","(9052) Uhland","(250431) 2003 WL117","(175194) 2005 EL268","(1902) Shaposhnikov","(2276) Warck","(208039) 1999 RV113","(10866) Peru","(37233) 2000 WV154","(37354) 2001 TN107","(74755) 1999 RL199","(66432) 1999 NL46","(149396) 2003 AU39","(11856) Nicolabonev","(3330) Gantrisch","(98391) 2000 TL62","Multiple Asteroids","(12) Victoria","(73205) 2002 JY16","(255959) 2006 TP34","(109019) 2001 QT6","(26516) 2000 CW56","(78069) 2002 LU4","(113374) 2002 SB8","(65102) 2002 CY17","(23893) Lauman","(1177) Gonnessia","(80789) 2000 CC85","(161079) 2002 LP61","(96405) 1998 ES","(96768) 1999 RH50","(70158) 1999 NZ37","(34923) 4870 P-L","(39895) 1998 FK15","(66421) 1999 NQ19","(27738) 1990 TT4","(173657) 2001 HN14","(66336) 1999 JB62","(175811) 1999 RS193","(18759) 1999 HO2","(66062) 1998 RG1","(36286) 2000 EL14","(5429) 1988 BZ1","(53918) 2000 GM18","(63312) 2001 FH24","(1386) Storeria","(1144) Oda","(3577) Putilin","(1035) Amata","(7078) Unojonsson","(3202) Graff","(268) Adorea","(15794) 1993 TG31","(220) Stephania","(15540) 2000 CF18","(208724) 2002 JV130","(300289) 2007 OM10","(4219) Nakamura","(27715) 1989 CR1","(8398) Rubbia","(165403) 2000 XM43","(80993) 2000 EY26","(3566) Levitan","(332038) 2005 QZ73","(7030) Colombini","(137397) 1999 TH165","(112) Iphigenia","(2441) Hibbs","(8927) Ryojiro","(56970) 2000 SJ111","(75089) 1999 VY30","(1806) Derice","(790) Pretoria","(165536) 2001 DC6","(2259) Sofievka","(909) Ulla","(2332) Kalm","(5524) Lecacheux","(3006) Livadia","(106918) 2000 YZ52","(48876) 1998 HE103","(917) Lyka","(1267) Geertruida","(133873) 2004 LB26","(15202) Yamada-Houkoku","(7274) Washioyama","(7394) Xanthomalitia","(4750) Mukai","(4229) Plevitskaya","(34857) Sutaria","Multiple","(74832) 1999 TH26","(59065) 1998 UB43","(171027) 2005 EN57","(41525) 2000 QP218","(1484) Postrema","(32898) 1994 PS1","(1012) Sarema","(30120) 2000 FZ38","(129818) 1999 NE28","(37917) 1998 FJ103","(4422) Jarre","(4458) Oizumi","(9476) Vincenthuang","(49833) 1999 XB84","(24650) 1986 QM","(53178) 1999 CT35","(31487) Parthchopra","(61560) 2000 QT74","(203141) 2000 UV41","(41746) 2000 VD16","(90975) 1997 WF37","(46566) 1991 RW21","(71655) 2000 EF121","(5506) Artiglio","(77495) 2001 HM37","(24358) 2000 AV117","(172478) 2003 SM87","(1003) Lilofee","(56600) 2000 JK50","(1269) Rollandia","(66309) 1999 JX41","(72308) 2001 BZ34","(142751) 2002 TG300","(6769) Brokoff","(24322) 2000 AM43","(177258) 2003 WX39","(2662) Kandinsky","(98178) 2000 SU99","(5711) Eneev","(106919) 2000 YC53","(916) America","(111789) 2002 CQ236","(1159) Granada","(49863) 1999 XK104","(112308) 2002 LR47","(1244) Deira","(68490) 2001 TH239","(122596) 2000 RG35","(98818) 2000 YH125","(10992) Veryuslaviya","(495) Eulalia","(18075) Donasharma","(99691) 2002 JP27","(2990) Trimberger","(77278) 2001 FL61","(2348) Michkovitch","(108631) 2001 NG","(2772) Dugan","(63310) 2001 FS21","(95018) 2002 AZ9","(244905) 2003 WJ120","(173129) 1994 JH2","(364204) 2006 QR100","(84211) 2002 RV141","(49731) 1999 VR80","(3579) Rockholt","(3228) Pire","(148658) 2001 SG128","(21176) 1994 CN13","(9121) Stefanovalentini","(383) Janina","(4524) Barklajdetolli","(10446) Siegbahn","(39694) 1996 ST2","(2139) Makharadze","(42089) 2001 AQ15","(2563) Boyarchuk","(2575) Bulgaria","(8152) Martinlee","(35627)1998 KW9","(168936) 2000 YN95","(20604) Vrishikpatil","(133503) 2003 SW288","(3556) Lixiaohua","(70312) 1999 RM137","(5081) Sanguin","(6712) Hornstein","(45378) 2000 AD118","(180349) 2003 YW71","(142) Polana","(16090) Lukaszewski","(43152) 1999 XM115","(246226) 2007 RH212","(26394) Kandola","(4317) Garibaldi","(6857) Castelli","(10542) Ruckers","(2794) Kulik","(2007) McCuskey","(2322) Kitt Peak","(8032) Michaeladams","(253798) 2003 XP17","(59397) 1999 FT26","(19145) 1989 YC","(26719) 2001 HQ5","(68685) 2002 CK142","(38166) 1999 JV84","(23397) 5122 T-3","(1782) Schneller","(6806) Kaufmann","(531) Zerlina","(15415) Rika","(313) Chaldaea","(1358) Gaika","(34326) Zhaurova","(131119) 2001 BK4","(217593) 2008 FK3","(106794) 2000 XK26","(112414) 2002 NV42","(2642) Vesale","(142282) 2002 RT128","(42411) 3249 T-1","(14530) 1997 PR","(50068) 2000 AR77","(72292) 2001 BE22","(229) Adelinda","(24907) Alfredhaar","(750) Oskar","(302) Clarissa","(689) Zita","(206344) 2003 PA8","(34339) 2000 QH218","(147241) 2002 XW62","(3429) Chuvaev","(2534) Houzeau","(44942) 1999 VM55","(20080) Maeharatorakichi","(2328) Robeson","(6471) Collins","(162795) 2000 YF52","(6374) Beslan","(2776) Baikal","(14215) 1999 TV6","(23916) 1998 SD131","(57400) 2001 RR90","(107861) 2001 FN80","(67918) 2000 WW109","(24037) 1999 SB7","(214) Aschera","(335) Roberta","(170184) 2003 MV11","(70511) 1999 TL103","(120548) 1995 BO","(67352) 2000 JN80","(9667) Amastrinc","(2446) Lunacharsky","(6278) Ametkhan","(20843) Kuotzuhao","(132352) 2002 GV54","(2773) Brooks","(53103) 1999 AB2","(68114) Deakferenc","(6133) Royaldutchastro","(242858) 2006 GJ9","(78889) 2003 SA36","(26807) 1982 RK1","(27354) Stiklaitis","(8106) Carpino","(1202) Marina","(45846) Avdellidou","(1650) Heckmann","(24048) Pedroduque","(1674) Groeneveld","(3633) Mira","(9860) Archaeopteryx","(72941) 2002 CD8","(4648) Tirion","(98246) 2000 SY166","(107742) 2001 FH33","(120190) 2004 CL97","(71966) 2000 WP118","(3723) Voznesenskij","(3626) Ohsaki","(56349) 2000 AZ90","(357) Ninina","(1544) Vinterhansenia","(69266) 1988 RJ6","(26121) 1992 BX","(79610) 1998 RF51","(8233) Asada","(16715) Trettenero","(123915) 2001 DK95","(249) Ilse","(15505) 1999 RF56","(431) Nephele","(1216) Askania","(225) Henrietta","(7132) Casulli","(334) Chicago","(9792) Nonodakesan","(106797) 2000 XX27","(9200) 1993 FK21","(18483) 1995 YY2","(6815) Mutchler","(3627) Sayers","(70427) 1999 TB1","(96463) 1998 HW51","(4173) Thicksten","(98345) 2000 SQ304","(166264) 2002 GL74","(55454) 2001 TJ128","(5900) Jensen","(262642) 2006 WT49","(5924) Teruo","(70528) 1999 TF116","(3999) Aristarchus","(15417) Babylon","(1740) Paavo Nurmi","(1655) Comas Sola","(60571) 2000 ER116","(15998) 1999 AG2","(23270) Kellerman","(121096) 1999 FG51","(114308) 2002 XY50","(561) Ingwelde","(9566) Rykhlova","(77421) 2001 GB","(12455) 1997 AR","(25024) Calebmcgraw","(334314) 2001 VY132","(25036) Elizabethof","(3843) OISCA","(38173) 1999 JZ112","(256789) 2008 CY45","(30043) Lisamichaels","(7231) Porco","(116717) 2004 DU8","(34228) 2000 QF90","(153694) 2001 UV28","(28894) Ryanchung","(134740) 2000 AX187","(2536) Kozyrev","(6142) Tantawi","(186714) 2004 BV88","(2778) Tangshan","(132248) 2002 EM90"],"instruments":["IRTF 3.2m","SpeX","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","DOLORES (Device Optimized for LOw RESolution)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","Near Infrared Camera Spectrometer (NICS)","New Technology Telescope (NTT)","ESO Faint Object Spectrograph and Camera 2","Gran Telescopio Canaria (GTC)","GTC OSIRIS Optical Imager and Spectrograph","2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)","Intermediate Dispersion Spectrograph (IDS)","SOAR","SOAR-GHTS"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"2001-08-04","stop_date":"2020-02-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/bundle_gbo.ast.primass-l.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/bundle_gbo.ast.primass-l.spectra.xml","scraped_at":"2026-02-25T20:02:10.739636Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo_ast_fieber-beyer_spectra::2.0","title":"Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0","description":"The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(495) Eulalia","Multiple Asteroids","(897) Lysistrata","(6212) Franzthaler","(1215) Boyer","(292) Ludovica","(2038) Bistro","(329) Svea","(248) Lameia","(3637) O'Meara","(198) Ampella","(115) Thyra","(335) Roberta","(421) Zahringia","(1064) Aethusa","(162385) 2000 BM19","(1644) Rafita","(1772) Gagarin","(1368) Numidia","(1379) Lomonosowa","(1722) Goffin","(714) Ulula","(556) Phyllis","(6) Hebe","(6649) Yokotatakao","(797) Montana","(46) Hestia","(3066) McFadden","(974) Lioba","(1158) Luda","(285263) 1998 QE2","(481532) 2007 LE","(695) Bella","(19727) Allen","(619) Triberga","(3345) Tarkovskij","(5676) Voltaire","(355) Gabriella","(3999) Aristarchus","(623) Chimaera","(1166) Sakuntala","(518) Halawe","(1391) Carelia","(908) Buda","(1854) Skvortsov","(1607) Mavis","(1587) Kahrstedt","(3760) Poutanen","(5129) Groom","(652) Jubilatrix","(1501) Baade","(2497) Kulikovskij","(1447) Utra","(660) Crescentia","(875) Nymphe","(1960) Guisan","(1018) Arnolda","(787) Moskva","(1036) Ganymed","(354) Eleonora","(879) Ricarda","(2089) Cetacea","(1358) Gaika"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2000-06-30","stop_date":"2017-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/bundle_gbo.ast.fieber-beyer.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/bundle_gbo.ast.fieber-beyer.spectra.xml","scraped_at":"2026-02-25T20:02:10.739648Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.nirs::1.0","title":"The Hayabusa NIRS Bundle","description":"This data set includes the 117,937 raw spectra returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission, along with 111,226 calibrated spectra of asteroid 25143 Itokawa. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The raw data cover the period from May 12, 2003 through November 24, 2005, and the calibrated data cover the Itokawa encounter phases of the mission, from Aug. 31 through November 24, 2005.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":[],"start_date":"2005-08-31","stop_date":"2005-11-24","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/bundle_hay.nirs.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/bundle_hay.nirs.xml","scraped_at":"2026-02-25T20:02:10.739658Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Bundle","description":"This bundle collects all the operational data products produced by Hayabusa2 Optical Navigation Camera (ONC).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/bundle_hyb2_onc.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/bundle_hyb2_onc.xml","scraped_at":"2026-02-25T20:02:10.739663Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mag::1.0","title":"Hayabusa2/MASCOT Magnetometer Bundle","description":"This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT Fluxgate Magnetometer.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASMAG"],"instrument_hosts":["MASCOT"],"data_types":[],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/bundle_hyb2_mascot_mag.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/bundle_hyb2_mascot_mag.xml","scraped_at":"2026-02-25T20:02:10.739668Z","keywords":["Hayabusa2","MASMAG","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mara::1.0","title":"Hayabusa2/MASCOT MARA Radiometer Bundle","description":"This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT MARA Radiometer.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["MASCOT"],"data_types":[],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/bundle_hyb2_mascot_mara.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/bundle_hyb2_mascot_mara.xml","scraped_at":"2026-02-25T20:02:10.739672Z","keywords":["Hayabusa2","MARA","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mascam::1.0","title":"Hayabusa2/MASCOT Camera Bundle","description":"This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT Camera, MASCAM.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA2 ASTEROID SAMPLE RETURN MISSION"],"targets":["(162173) RYUGU"],"instruments":["MASCOT CAMERA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":[],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/bundle_hyb2_mascot_mascam.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/bundle_hyb2_mascot_mascam.xml","scraped_at":"2026-02-25T20:02:10.739677Z","keywords":["Hayabusa2","MASCAM","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel::1.0","title":"DART Shapemodel Archive Bundle","description":"The DART Shapemodel Bundle contains derived stereophotoclinometry (SPC) data products produced by the DART project. The primary inputs to the shape model collections are the calibrated Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) images from the DART spacecraft and the LICIACube Unit Key Explorer (LUKE) images from LICIAcube spacecraft, as well as SPICE ancillary information. These data are processed through a variety of algorithms resulting in shape, topographic, and geometric information. The bundle also includes documentation that describes the data products for each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos","(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/bundle_dart_shapemodel.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/bundle_dart_shapemodel.xml","scraped_at":"2026-02-25T20:02:10.739786Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart::2.0","title":"DART Spacecraft Archive Bundle","description":"The DART Spacecraft Bundle contains raw and calibrated data products taken from the DRACO imager on board the DART spacecraft, Radio Science products received from the Deep Space Network (DSN), and Maneuver Acceleration File (MAF) data for DART. The bundle also includes documentation that describes the data products for each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos","(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/bundle_dart_spacecraft.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/bundle_dart_spacecraft.xml","scraped_at":"2026-02-25T20:02:10.739795Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice::2.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739810Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa::2.0","title":"New Horizons Linear Etalon Imaging Spectral Array Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739814Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic::2.0","title":"New Horizons MVIC Data Archive","description":"This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739818Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc::2.0","title":"New Horizons Student Dust Counter (SDC) Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739822Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:soho::1.3","title":"Comet Data from the Solar and Heliospheric Observatory (SOHO)","description":"This archive bundle contains collections of comet observations and derived results from the SOHO data archives, with related documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Solar and Heliospheric Observatory"],"targets":[],"instruments":[],"instrument_hosts":["Solar and Heliospheric Observatory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/bundle.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/bundle.xml","scraped_at":"2026-02-25T20:02:10.739886Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi::2.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739903Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri::1.0","title":"Lucy Mission L'LORRI Instrument Bundle","description":"This bundle collects all the operational data products produced by the Lucy LOng Range Reconnaissance Imager.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy Mission"],"targets":["(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/bundle.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.739908Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_secondary::1.0","title":"Secondary Collections to Support New Horizons Research Results","description":"This bundle provides a place to create collections containing only secondary members to support lists of product IDs related to derived data sets and analytical references in publications. The collection labels will indicate the relevant data sets or publications.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739933Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived::4.0","title":"Derived Products from New Horizons Data","description":"This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739936Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_rex::1.0","title":"New Horizons Radio Science Experiment (REX) Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Radio Science Experiment (REX) instrument onboard the New Horizons spacecraft, as well related Tracking and Navigation Files (TNF) used by the project.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Radio Science Experiment"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.740007Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap::2.1","title":"New Horizons Solar Wind Around Pluto (SWAP) Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/bundle.lblx","scraped_at":"2026-02-25T20:02:10.740147Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents::4.3","title":"New Horizons Mission Instrument-Specific and Mission-Wide Documents","description":"This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission","New Horizons Kuiper Belt Extended Mission 2"],"targets":[],"instruments":[],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/bundle.lblx","scraped_at":"2026-02-25T20:02:10.740151Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri::2.0","title":"New Horizons LORRI Data Archive","description":"This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission (KEM1)"],"targets":[],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.740695Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar::2.0","title":"Hayabusa2 LIDAR Bundle","description":"This bundle collects all the operational data products produced by the Hayabusa2 LIDAR instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["LIght Detection And Ranging (LIDAR)"],"instrument_hosts":["Hayabusa2"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/bundle_hyb2_lidar_v002.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/bundle_hyb2_lidar_v002.xml","scraped_at":"2026-02-25T20:02:10.740711Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2::4.0","title":"Hayabusa2 Mission Bundle","description":"This bundle collects all the mission wide information needed to use and understand the scientific data products produced by the Hayabusa2 mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Small Monitor Camera (CAM-H)","LIght Detection And Ranging (LIDAR)","Near InfraRed Spectrometer (NIRS3)","Optical Navigation Camera","Small Carry-on Impactor (SCI)","Thermal Infrared Imager (TIR)","DCAM3-A (DCAM3 Analog)","DCAM3-D (DCAM3 Digital)","MASCOT Camera","MASCOT Fluxgate Magnetometer","MARA","MicrOmega"],"instrument_hosts":["Hayabusa2","DCAM3 (Deployable Camera 3)","MASCOT","MINERVA-II1 Rover-1a HIBOU","MINERVA-II1 Rover-1b OWL","MINERVA-II2 Rover-2 ULULA"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/bundle_hyb2_v004.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/bundle_hyb2_v004.xml","scraped_at":"2026-02-25T20:02:10.740720Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.satellite.colors::1.0","title":"Small Planetary Satellite Colors V1.0","description":"This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["MULTIPLE"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":[],"start_date":"1977-09-11","stop_date":"2002-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/bundle_compil.satellite.colors.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/bundle_compil.satellite.colors.xml","scraped_at":"2026-02-25T20:02:10.740723Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics::1.0","title":"Ceres Urvara Dawn FC C2E mosaics V1.0","description":"This bundle contains controlled mosaics of the Urvara crater region using Dawn FC2 level 1b calibrated images from the Ceres X2 Elliptical (C2E) mission phase. Approximately 1600 images are used, with resolutions varying from a few m/pixel to around 40 m/pixel. Images are controlled relative to each other and to the Dawn LAMO basemap, and are photometrically corrected to account for varying illumination conditions. A single large mosaic is included, with all images scaled to 5 m/pixel resolution, along with four subset mosaics incorporating only those images in different ranges of native resolution: 3.5-7 m/pixel, 7-14 m/pixel, 14-28 m/pixel, and greater than 28 m/pixel. When layered together, the four submosaics include all images contained in the full mosaic.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/bundle_dwarf_planet-ceres.dawn-fc.urvara-mosaics.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/bundle_dwarf_planet-ceres.dawn-fc.urvara-mosaics.xml","scraped_at":"2026-02-25T20:02:10.740727Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-dds::1.0","title":"Galileo Dust Detection System Bundle","description":"This bundle contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission. Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["GALILEO"],"targets":["Calibration Target","Dust"],"instruments":["GALILEO DUST DETECTION SYSTEM"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1989-10-18","stop_date":"2003-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/bundle_galileo-dds.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/bundle_galileo-dds.xml","scraped_at":"2026-02-25T20:02:10.740730Z","keywords":[],"processing_level":"Raw | Calibrated | Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra::1.0","title":"Reddy IRTF Near Earth Asteroid Spectra V1.0","description":"This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of 40 near-Earth asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra that were obtained as part of Vishnu Reddy's Ph.D. disseration at the University of North Dakota. They have been used for detailed mineralogical/compositional analysis and thermal modeling to constrain the albedo of these objects.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"2005-06-30","stop_date":"2009-10-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/bundle_gbo.ast-neo.reddy.irtf.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/bundle_gbo.ast-neo.reddy.irtf.spectra.xml","scraped_at":"2026-02-25T20:02:10.740734Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra::1.0","title":"Near-infrared spectra of small NEOs by Sanchez and Reddy","description":"This dataset includes near-infrared (NIR) spectra (~0.7-2.5 microns) of 82 small near-Earth objects (NEOs) with absolute visual magnitudes H > 20 (mean diameter of 126 m). All spectra were obtained with the IRTF and the SpeX instrument over the course of ~7 years. These NIR spectra are published in [SANCHEZETAL2024].","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["2019 JX7","2016 CO247","2007 EC","2020 HS6","2014 WZ120","(438908) 2009 XO","2016 EV27","2019 JL3","(501647) 2014 SD224","2012 ER14","2002 LY1","2006 XY","2017 BY93","(459872) 2014 EK24","2019 UO13","2020 KC5","2016 BC14","2014 WY119","(85990) 1999 JV6","2020 SN","2020 YQ3","2019 RC","2001 YV3","2013 XA22","2016 CM194","2015 LK24","2019 AN5","2014 VQ","2015 AK45","2014 PL51","2016 EB1","2014 PR62","(469737) 2005 NW44","(163348) 2002 NN4","(496816) 1989 UP","2017 CR32","2015 HA1","2019 GT3","2015 WF13","2017 OL1","2017 RR15","(528159) 2008 HS3","2014 SS1","2016 EF28","2016 FV13","2016 LG","2015 BC","2019 YM3","(436724) 2011 UW158","2015 TB25","2005 TF","2017 BS5","2020 ST1","2017 OP68","2018 XG5","2020 DZ1","2014 WN4","2015 TF","2005 NE21","2017 WX12","2020 RO6","(412995) 1999 LP28","2018 XS4","2015 BK509","2015 FL","2019 SH6","2017 FU64","(471240) 2011 BT15","(467336) 2002 LT38","2017 DR34","2015 XC","(515767) 2015 JA2","2015 VE66","2015 AP43","2014 VH2","(363599) 2004 FG11","2016 GU","2015 NA14","2013 CW32","2000 TU28","2017 BW","(437844) 1999 MN"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"2013-10-14","stop_date":"2021-01-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/bundle_gbo.ast-neo.sanchez-reddy.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/bundle_gbo.ast-neo.sanchez-reddy.spectra.xml","scraped_at":"2026-02-25T20:02:10.740743Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.hardersen.spectra::1.0","title":"Hardersen IRTF NIR Asteroid Reflectance Spectra","description":"This dataset includes average near-infrared (NIR) reflectance spectra for 68 main-belt asteroids that were observed at the NASA Infrared Telescope Facility (IRTF), Mauna Kea, Hawaii, from April 2001 to January 2015. Raw NIR spectral data were obtained under mostly uniform instrumental conditions and include observations of the asteroids, extinction stars, and solar analog stars that were necessary for data reduction and production of the final average asteroid NIR reflectance spectra. SpecPR and Spextool were used during data reduction to produce the final spectra and both programs utilize similar functions that include sky background subtraction, telluric corrections, channel shifting, and averaging routines. The set of asteroids observed include a wide variety of taxonomic types and include V-, S-, M-, X-types that correspond to a wide variety of surface mineralogies, rock types, and potential meteorite analogs.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"2001-04-29","stop_date":"2015-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/bundle_gbo.ast.hardersen.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/bundle_gbo.ast.hardersen.spectra.xml","scraped_at":"2026-02-25T20:02:10.740747Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra::1.0","title":"Rivkin Three Micron Asteroid Data","description":"This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Asteroids","Phobos","Deimos"],"instruments":["IRTF 3.2m","RC2","NSFCam","Infrared cold coronagraph (CoCo)"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1991-12-29","stop_date":"1999-04-26","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/bundle_gbo.ast.rivkin.3-micron-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/bundle_gbo.ast.rivkin.3-micron-spectra.xml","scraped_at":"2026-02-25T20:02:10.740753Z","keywords":["3-micron data","asteroids","Phobos","Deimos"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.s3os2.spectra::1.0","title":"Small Solar System Objects Spectroscopic Survey V1.0","description":"This dataset contains the visible spectra of 820 asteroids obtained between November 1996 and May 2001 at the 1.52m telescope at ESO (La Silla). The useful spectral range is between about 4900 and 9200 Angstroms. The global spatial distribution of the objects covers the region between 2.2 and 3.3 AU. Some concentrations are apparent, since part of the survey was focused on particularly interesting groups or families of asteroids. The observed asteroids have been classified according to the Tholen and the Bus taxonomies, with a good agreement between both in most of the cases.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["(1) Ceres","(3) Juno","(9) Metis","(12) Victoria","(21) Lutetia","(23) Thalia","(24) Themis","(25) Phocaea","(27) Euterpe","(29) Amphitrite","(33) Polyhymnia","(37) Fides","(43) Ariadne","(47) Aglaja","(50) Virginia","(56) Melete","(57) Mnemosyne","(58) Concordia","(62) Erato","(65) Cybele","(68) Leto","(78) Diana","(84) Klio","(85) Io","(87) Sylvia","(89) Julia","(90) Antiope","(91) Aegina","(93) Minerva","(95) Arethusa","(98) Ianthe","(104) Klymene","(105) Artemis","(106) Dione","(107) Camilla","(109) Felicitas","(112) Iphigenia","(115) Thyra","(117) Lomia","(119) Althaea","(127) Johanna","(130) Elektra","(133) Cyrene","(140) Siwa","(141) Lumen","(145) Adeona","(148) Gallia","(154) Bertha","(156) Xanthippe","(164) Eva","(166) Rhodope","(168) Sibylla","(169) Zelia","(170) Maria","(171) Ophelia","(173) Ino","(176) Iduna","(177) Irma","(181) Eucharis","(183) Istria","(184) Dejopeja","(191) Kolga","(194) Prokne","(199) Byblis","(205) Martha","(207) Hedda","(214) Aschera","(217) Eudora","(219) Thusnelda","(220) Stephania","(223) Rosa","(224) Oceana","(226) Weringia","(227) Philosophia","(229) Adelinda","(233) Asterope","(241) Germania","(246) Asporina","(249) Ilse","(251) Sophia","(252) Clementina","(254) Augusta","(255) Oppavia","(258) Tyche","(259) Aletheia","(260) Huberta","(265) Anna","(266) Aline","(268) Adorea","(270) Anahita","(271) Penthesilea","(273) Atropos","(274) Philagoria","(283) Emma","(286) Iclea","(293) Brasilia","(294) Felicia","(298) Baptistina","(303) Josephina","(307) Nike","(309) Fraternitas","(311) Claudia","(314) Rosalia","(316) Goberta","(323) Brucia","(324) Bamberga","(329) Svea","(332) Siri","(339) Dorothea","(350) Ornamenta","(352) Gisela","(354) Eleonora","(356) Liguria","(357) Ninina","(361) Bononia","(362) Havnia","(365) Corduba","(366) Vincentina","(372) Palma","(373) Melusina","(381) Myrrha","(386) Siegena","(388) Charybdis","(390) Alma","(391) Ingeborg","(393) Lampetia","(394) Arduina","(397) Vienna","(400) Ducrosa","(403) Cyane","(404) Arsinoe","(405) Thia","(407) Arachne","(412) Elisabetha","(414) Liriope","(415) Palatia","(417) Suevia","(418) Alemannia","(419) Aurelia","(422) Berolina","(424) Gratia","(426) Hippo","(429) Lotis","(431) Nephele","(434) Hungaria","(436) Patricia","(437) Rhodia","(439) Ohio","(445) Edna","(447) Valentine","(451) Patientia","(455) Bruchsalia","(457) Alleghenia","(459) Signe","(461) Saskia","(465) Alekto","(468) Lina","(469) Argentina","(472) Roma","(479) Caprera","(480) Hansa","(485) Genua","(487) Venetia","(488) Kreusa","(489) Comacina","(491) Carina","(493) Griseldis","(494) Virtus","(500) Selinur","(501) Urhixidur","(502) Sigune","(504) Cora","(506) Marion","(508) Princetonia","(510) Mabella","(511) Davida","(514) Armida","(517) Edith","(521) Brixia","(522) Helga","(524) Fidelio","(525) Adelaide","(526) Jena","(527) Euryanthe","(530) Turandot","(536) Merapi","(537) Pauly","(539) Pamina","(544) Jetta","(545) Messalina","(547) Praxedis","(558) Carmen","(565) Marbachia","(567) Eleutheria","(568) Cheruskia","(569) Misa","(573) Recha","(576) Emanuela","(579) Sidonia","(581) Tauntonia","(589) Croatia","(595) Polyxena","(598) Octavia","(601) Nerthus","(602) Marianna","(607) Jenny","(612) Veronika","(616) Elly","(618) Elfriede","(619) Triberga","(621) Werdandi","(625) Xenia","(626) Notburga","(628) Christine","(630) Euphemia","(635) Vundtia","(640) Brambilla","(657) Gunlod","(660) Crescentia","(662) Newtonia","(663) Gerlinde","(665) Sabine","(666) Desdemona","(667) Denise","(680) Genoveva","(683) Lanzia","(685) Hermia","(690) Wratislavia","(692) Hippodamia","(694) Ekard","(696) Leonora","(697) Galilea","(699) Hela","(702) Alauda","(704) Interamnia","(705) Erminia","(713) Luscinia","(714) Ulula","(716) Berkeley","(717) Wisibada","(721) Tabora","(726) Joella","(727) Nipponia","(728) Leonisis","(729) Watsonia","(732) Tjilaki","(734) Benda","(739) Mandeville","(740) Cantabia","(746) Marlu","(747) Winchester","(752) Sulamitis","(753) Tiflis","(756) Lilliana","(760) Massinga","(761) Brendelia","(762) Pulcova","(764) Gedania","(768) Struveana","(772) Tanete","(775) Lumiere","(777) Gutemberga","(778) Theobalda","(779) Nina","(780) Armenia","(788) Hohensteina","(790) Pretoria","(791) Ani","(796) Sarita","(804) Hispania","(808) Merxia","(809) Lundia","(814) Tauris","(815) Coppelia","(816) Juliana","(817) Annika","(822) Lalage","(829) Academia","(834) Burnhamia","(838) Seraphina","(846) Lipperta","(847) Agnia","(848) Inna","(850) Altona","(857) Glasenappia","(859) Bouzareah","(869) Mellena","(870) Manto","(874) Rotraut","(881) Athene","(882) Swetlana","(889) Erynia","(891) Gunhild","(892) Seeligeria","(893) Leopoldina","(894) Erda","(897) Lysistrata","(899) Jokaste","(904) Rockefellia","(906) Repsolda","(911) Agamemnon","(914) Palisana","(917) Lyka","(921) Jovita","(923) Herluga","(928) Hildrun","(929) Algunde","(932) Hooveria","(936) Kunigunde","(943) Begonia","(947) Monterosa","(949) Hel","(950) Ahrensa","(952) Caia","(953) Painleva","(954) Li","(955) Alstede","(956) Elisa","(957) Camelia","(966) Muschi","(968) Petunia","(972) Cohnia","(973) Aralia","(977) Philippa","(978) Aidamina","(979) Ilsewa","(981) Martina","(982) Franklina","(983) Gunila","(986) Amelia","(987) Wallia","(988) Appella","(989) Schwassmannia","(1000) Piazzia","(1003) Lilofee","(1004) Belopolskya","(1005) Arago","(1006) Lagrangea","(1013) Tombecka","(1018) Arnolda","(1021) Flammario","(1022) Olympiada","(1023) Thomana","(1024) Hale","(1025) Riema","(1028) Lydina","(1030) Vitja","(1031) Arctica","(1034) Mozarita","(1035) Amata","(1036) Ganymed","(1042) Amazone","(1050) Meta","(1051) Merope","(1056) Azalea","(1057) Wanda","(1060) Magnolia","(1067) Lunaria","(1075) Helina","(1077) Campanula","(1086) Nata","(1089) Tama","(1090) Sumida","(1094) Siberia","(1095) Tulipa","(1097) Vicia","(1099) Figneria","(1101) Clematis","(1108) Demeter","(1109) Tata","(1114) Lorraine","(1115) Sabauda","(1117) Reginita","(1118) Hanskya","(1122) Neith","(1123) Shapleya","(1127) Mimi","(1130) Skuld","(1137) Raissa","(1139) Atami","(1146) Biarmia","(1149) Volga","(1150) Achaia","(1154) Astronomia","(1164) Kobolda","(1171) Rusthawelia","(1177) Gonnessia","(1178) Irmela","(1180) Rita","(1194) Aletta","(1209) Pumma","(1213) Algeria","(1215) Boyer","(1219) Britta","(1226) Golia","(1229) Tilia","(1236) Thais","(1242) Zambesia","(1243) Pamela","(1244) Deira","(1246) Chaka","(1252) Celestia","(1261) Legia","(1263) Varsavia","(1266) Tone","(1274) Delportia","(1276) Ucclia","(1280) Baillauda","(1281) Jeanne","(1282) Utopia","(1283) Komsomolia","(1284) Latvia","(1294) Antwerpia","(1301) Yvonne","(1306) Scythia","(1312) Vassar","(1317) Silvretta","(1318) Nerina","(1319) Disa","(1320) Impala","(1321) Majuba","(1322) Coppernicus","(1326) Losaka","(1328) Devota","(1329) Eliane","(1330) Spiridonia","(1333) Cevenola","(1335) Demoulina","(1337) Gerarda","(1340) Yvette","(1351) Uzbekistania","(1355) Magoeba","(1356) Nyanza","(1361) Leuschneria","(1362) Griqua","(1365) Henyey","(1367) Nongoma","(1369) Ostanina","(1384) Kniertje","(1392) Pierre","(1396) Outeniqua","(1399) Teneriffa","(1400) Tirela","(1403) Idelsonia","(1409) Isko","(1414) Jerome","(1425) Tuorla","(1431) Luanda","(1432) Ethiopia","(1436) Salonta","(1444) Pannonia","(1449) Virtanen","(1455) Mitchella","(1459) Magnya","(1467) Mashona","(1469) Linzia","(1481) Tubingia","(1487) Boda","(1499) Pori","(1506) Xosa","(1509) Esclangona","(1530) Rantaseppa","(1531) Hartmut","(1535) Paijanne","(1539) Borrelly","(1546) Izsak","(1554) Yugoslavia","(1556) Wingolfia","(1568) Aisleen","(1571) Cesco","(1573) Vaisala","(1574) Meyer","(1575) Winifred","(1576) Fabiola","(1579) Herrick","(1585) Union","(1591) Baize","(1600) Vyssotsky","(1602) Indiana","(1605) Milankovitch","(1609) Brenda","(1615) Bardwell","(1621) Druzhba","(1625) The NORC","(1637) Swings","(1646) Rosseland","(1654) Bojeva","(1656) Suomi","(1660) Wood","(1665) Gaby","(1677) Tycho Brahe","(1685) Toro","(1689) Floris-Jan","(1691) Oort","(1693) Hertzsprung","(1694) Kaiser","(1701) Okavango","(1728) Goethe Link","(1731) Smuts","(1747) Wright","(1750) Eckert","(1754) Cunningham","(1759) Kienle","(1765) Wrubel","(1771) Makover","(1775) Zimmerwald","(1793) Zoya","(1796) Riga","(1798) Watts","(1806) Derice","(1816) Liberia","(1819) Laputa","(1828) Kashirina","(1838) Ursa","(1841) Masaryk","(1883) Rimito","(1901) Moravia","(1904) Massevitch","(1919) Clemence","(1936) Lugano","(1943) Anteros","(1980) Tezcatlipoca","(1992) Galvarino","(1994) Shane","(1999) Hirayama","(2001) Einstein","(2014) Vasilevskis","(2019) van Albada","(2031) BAM","(2050) Francis","(2060) Chiron","(2074) Shoemaker","(2091) Sampo","(2093) Genichesk","(2096) Vaino","(2103) Laverna","(2104) Toronto","(2105) Gudy","(2111) Tselina","(2112) Ulyanov","(2121) Sevastopol","(2150) Nyctimene","(2151) Hadwiger","(2157) Ashbrook","(2204) Lyyli","(2235) Vittore","(2263) Shaanxi","(2266) Tchaikovsky","(2272) Montezuma","(2291) Kevo","(2292) Seili","(2296) Kugultinov","(2303) Retsina","(2332) Kalm","(2341) Aoluta","(2349) Kurchenko","(2374) Vladvysotskij","(2381) Landi","(2397) Lappajarvi","(2407) Haug","(2448) Sholokhov","(2463) Sterpin","(2464) Nordenskiold","(2478) Tokai","(2489) Suvorov","(2490) Bussolini","(2491) Tvashtri","(2510) Shandong","(2519) Annagerman","(2524) Budovicium","(2525) O'Steen","(2548) Leloir","(2577) Litva","(2612) Kathryn","(2634) James Bradley","(2651) Karen","(2655) Guangxi","(2685) Masursky","(2717) Tellervo","(2780) Monnig","(2796) Kron","(2810) Lev Tolstoj","(2815) Soma","(2820) Iisalmi","(2829) Bobhope","(2841) Puijo","(2891) McGetchin","(2906) Caltech","(2911) Miahelena","(2914) Glarnisch","(2927) Alamosa","(2938) Hopi","(2959) Scholl","(2961) Katsurahama","(2962) Otto","(2965) Surikov","(2975) Spahr","(2988) Korhonen","(2991) Bilbo","(2993) Wendy","(3015) Candy","(3022) Dobermann","(3023) Heard","(3033) Holbaek","(3036) Krat","(3043) San Diego","(3063) Makhaon","(3066) McFadden","(3067) Akhmatova","(3073) Kursk","(3101) Goldberger","(3104) Durer","(3105) Stumpff","(3106) Morabito","(3116) Goodricke","(3128) Obruchev","(3139) Shantou","(3141) Buchar","(3152) Jones","(3162) Nostalgia","(3169) Ostro","(3181) Ahnert","(3182) Shimanto","(3197) Weissman","(3198) Wallonia","(3204) Lindgren","(3225) Hoag","(3242) Bakhchisaraj","(3246) Bidstrup","(3259) Brownlee","(3267) Glo","(3274) Maillen","(3296) Bosque Alegre","(3300) McGlasson","(3308) Ferreri","(3309) Brorfelde","(3328) Interposita","(3330) Gantrisch","(3333) Schaber","(3341) Hartmann","(3343) Nedzel","(3352) McAuliffe","(3388) Tsanghinchi","(3400) Aotearoa","(3445) Pinson","(3447) Burckhalter","(3478) Fanale","(3483) Svetlov","(3492) Petra-Pepi","(3507) Vilas","(3533) Toyota","(3573) Holmberg","(3600) Archimedes","(3615) Safronov","(3635) Kreutz","(3663) Tisserand","(3682) Welther","(3702) Trubetskaya","(3709) Polypoites","(3728) IRAS","(3753) Cruithne","(3767) DiMaggio","(3786) Yamada","(3787) Aivazovskij","(3789) Zhongguo","(3793) Leonteus","(3816) Chugainov","(3829) Gunma","(3832) Shapiro","(3873) Roddy","(3875) Staehle","(3880) Kaiserman","(3888) Hoyt","(3894) Williamcooke","(3906) Chao","(3913) Chemin","(3915) Fukushima","(3925) Tret'yakov","(3939) Huruhata","(3940) Larion","(3990) Heimdal","(3995) Sakaino","(4055) Magellan","(4056) Timwarner","(4060) Deiplyos","(4063) Euforbo","(4068) Menestheus","(4083) Jody","(4100) Sumiko","(4103) Chahine","(4112) Hrabal","(4116) Elachi","(4121) Carlin","(4125) Lew Allen","(4127) Kyogoku","(4132) Bartok","(4143) Huziak","(4175) Billbaum","(4191) Assesse","(4201) Orosz","(4220) Flood","(4276) Clifford","(4278) Harvey","(4299) WIYN","(4340) Dence","(4375) Kiyomori","(4422) Jarre","(4448) Phildavis","(4457) van Gogh","(4460) Bihoro","(4483) Petofi","(4484) Sif","(4489) Dracius","(4490) Bambery","(4497) Taguchi","(4502) Elizabethann","(4511) Rembrandt","(4520) Dovzhenko","(4522) Britastra","(4533) Orth","(4556) Gumilyov","(4558) Janesick","(4580) Child","(4601) Ludkewycz","(4613) Mamoru","(4617) Zadunaisky","(4621) Tambov","(4666) Dietz","(4695) Mediolanum","(4706) Dennisreuter","(4713) Steel","(4725) Milone","(4730) Xingmingzhou","(4759) Aretta","(4764) Joneberhart","(4770) Lane","(4778) Fuss","(4820) Fay","(4826) Wilhelms","(4833) Meges","(4835) Asaeus","(4843) Megantic","(4856) Seaborg","(4880) Tovstonogov","(4889) Praetorius","(4902) Thessandrus","(4914) Pardina","(4931) Tomsk","(4950) House","(4954) Eric","(4955) Gold","(4957) Brucemurray","(5016) Migirenko","(5045) Hoyin","(5057) Weeks","(5090) Wyeth","(5122) Mucha","(5147) Maruyama","(5215) Tsurui","(5216) Cannizzo","(5230) Asahina","(5264) Telephus","(5301) Novobranets","(5343) Ryzhov","(5362) Johnyoung","(5461) Autumn","(5481) Kiuchi","(5559) Beategordon","(5592) Oshima","(5600) 1991 UY","(5639) Cuk","(5648) Axius","(5651) Traversa","(5751) Zao","(5818) 1989 RC1","(5832) Martaprincipe","(5870) Baltimore","(5914) Kathywhaler","(5959) Shaklan","(6051) Anaximenes","(6057) Robbia","(6084) Bascom","(6139) Naomi","(6193) Manabe","(6297) 1988 VZ1","(6307) Maiztegui","(6310) Jankonke","(6384) Kervin","(6394) 1990 QM2","(6447) Terrycole","(6461) Adam","(6493) Cathybennett","(6560) Pravdo","(6916) Lewispearce","(6974) Solti","(7002) Bronshten","(7052) Octaviabutler","(7353) Kazuya","(7480) Norwan","(7482) 1994 PC1","(7496) Miroslavholub","(7516) Kranjc","(7638) Gladman","(7868) Barker","(7898) Ohkuma","(8106) Carpino","(8518) 1992 DM6","(8795) Dudorov","(8906) Yano","(9219) 1995 WO8","(10007) Malytheatre","(10094) Eijikato","(10261) Nikdollezhal'","(11079) Mitsunori","(11548) Jerrylewis","(12447) Yatescup","(13111) Papacosmas","(14465) 1993 NB","(26879) Haines","(43754) 1983 AA"],"instruments":["1.52-m spectrographic Cassegrain/Coude reflector","ESO Boller and Chivens Spectrograph"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1996-11-17","stop_date":"2001-10-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/bundle_gbo.ast.s3os2.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/bundle_gbo.ast.s3os2.spectra.xml","scraped_at":"2026-02-25T20:02:10.740796Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteorites.friability::1.0","title":"Friability of Meteorites V1.0","description":"This bundle contains the complete experimental dataset and visual documentation from the friability analysis of seven meteorites: Richardton (H5), Tamdakht (H5), Zhob (H3/4), New Concord (L6), Allende (CV3), Murchison (CM2), and Aguas Zarcas (CM2). The dataset records the mass retained in each sieve bin after successive tumbling stages of 10, 100, 1,000, 10,000, and 100,000 revolutions, performed using the PTF-100 friability tester. All measurements were conducted according to the USP 1216 friability standard, using a 28.7 cm diameter drum that rotated at 25 rpm. Corresponding sieve sizes are 2000, 841, 400, 250, 177, 125, 63, 37, and 0.1. The data quantify the progressive mechanical disaggregation and redistribution of fragment sizes across increasing revolution counts, providing a quantitative basis for modeling the friability of meteorites. Seven chondritic meteorites representing diverse lithologies. The archive enables reproduction of all plots and calculations related to the evolution of friability as a bounded, multiplicative process, and provides a benchmark for linking laboratory comminution to asteroid surface processes.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Aguas Zarcas","New Concord","Murchison","Zhob","Richardton","Tamdakht","Allende"],"instruments":["PTF 100 Friability Tester"],"instrument_hosts":["EM3 Lab"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/bundle_gbo.meteorites.friability.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/bundle_gbo.meteorites.friability.xml","scraped_at":"2026-02-25T20:02:10.740807Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.pluto.benecchi-etal.occultation::1.0","title":"Occultation of star P445.3 by Pluto","description":"The dataset includes simultaneous imaging obtained at the MMT in the infrared (H-band, 1.65 micron) and visible (unfiltered, approximately 0.24-1.24 micron) of Pluto occulting the star P445.3 (2UCAC 25823784 = Gaia DR2 4144912550502784384) on 2007 March 18. The measurements included in the dataset were obtained continuously from 10:10:00 to 11:30:00 UTC. The midpoint of the occultation, at the MMT, was 10:53:49+/-00:01. The event was grazing and gives information about the atmosphere of Pluto to a depth of 1348 km above the surface. Images from the other observing sites for this event are not contained within this dataset, however lightcurve tables are included.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["(134340) Pluto","(134340) Pluto"],"instruments":["6.5-m Single Mirror (MMT)","POETS: Portable Occultation, Eclipse, and Transit System","USNO 1.55m","POETS: Portable Occultation, Eclipse, and Transit System","8.4/8.4-m Large Binocular Telescope (LBT)","LBC Guide Camera","MRO 2.4m","POETS: Portable Occultation, Eclipse, and Transit System","FPO 0.32m","SBIG ST-10XME","6.5-m Single Mirror (MMT)","PISCES"],"instrument_hosts":["MMT Observatory","US Naval Observatory","Large Binocular Telescope Observatory","Magdelena Ridge Observatory","Fremont Peak Observatory","MMT Observatory"],"data_types":[],"start_date":"2007-03-18","stop_date":"2007-03-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/bundle_gbo.pluto.benecchi-etal.occultation.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/bundle_gbo.pluto.benecchi-etal.occultation.xml","scraped_at":"2026-02-25T20:02:10.740813Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.grs::1.0","title":"NEAR Gamma-Ray Spectrometer (GRS) Data Bundle","description":"The NEAR Gamma-Ray Spectrometer (GRS) is part of the X-Ray/Gamma-Ray Spectrometer (XGRS) instrument package on the NEAR spacecraft. This bundle contains all of the raw and calibrated GRS instrument data from the NEAR mission, plus derived results.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":[],"start_date":"1997-08-27","stop_date":"2001-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/bundle_near.grs.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/bundle_near.grs.xml","scraped_at":"2026-02-25T20:02:10.740817Z","keywords":[],"processing_level":"Raw | Calibrated | Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.nlr::1.0","title":"NEAR Laser Rangefinder (NLR) Instrument Bundle V1.0","description":"The NEAR NLR Laser Rangefinder (NLR) is an instrument on the NEAR spacecraft. This bundle contains all of the raw NLR instrument data, plus derived results.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SPACE"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":[],"start_date":"1996-04-25","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/bundle_near.nlr.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/bundle_near.nlr.xml","scraped_at":"2026-02-25T20:02:10.740821Z","keywords":[],"processing_level":"Calibrated | Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:neowise_diameters_albedos::2.0","title":"NEOWISE Diameters and Albedos V2.0","description":"This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["NEOWISE"],"targets":["Multiple Asteroids","SATELLITE","COMET"],"instruments":["WISE Camera"],"instrument_hosts":["Wide-Field Infrared Survey Explorer"],"data_types":[],"start_date":"2010-01-07","stop_date":"2016-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/bundle_neowise_diameters_albedos.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/bundle_neowise_diameters_albedos.xml","scraped_at":"2026-02-25T20:02:10.740825Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ast-bennu.simulated-shape-models::1.0","title":"OSIRIS-REx Simulated Test Models V1.0","description":"This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"],"targets":["(101955) Bennu"],"instruments":["Simulation","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":["OSIRIS-REx"],"data_types":[],"start_date":"2016-02-03","stop_date":"2016-10-21","browse_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/bundle_orex.ast-bennu.simulated-shape-models.xml","source_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/bundle_orex.ast-bennu.simulated-shape-models.xml","scraped_at":"2026-02-25T20:02:10.740829Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.grs::2.0","title":"The Psyche Gamma Ray Spectrometer Bundle","description":"The Psyche Gamma Ray Spectrometer (GRS) Raw and Calibrated Bundle contains the raw and calibrated data products generated from the GRS instrument on the Psyche spacecraft. The bundle includes the documentation that describes the data products for each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Psyche Mission"],"targets":["Solar System"],"instruments":["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":[],"start_date":"2023-11-06","stop_date":"2025-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/bundle_psyche_grs.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/bundle_psyche_grs.xml","scraped_at":"2026-02-25T20:02:10.740856Z","keywords":["Psyche","Gamma Ray Spectrometer","GRS"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps::2.0","title":"Ceres SPC Shape and Regional Models V2.0","description":"This bundle contains topography and albedo generated for 9 polar craters on asteroid Ceres. Utilizing secondary illumination allows heights to be determined inside Permanently Shadowed Regions (PSRs). A global model is provided for context.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["The Dawn Mission To Vesta And Ceres"],"targets":["1 Ceres"],"instruments":["Framing Camera 2 (FC2) for Dawn","Framing Camera 1 (FC1) for Dawn"],"instrument_hosts":["The Dawn Spacecraft","The Dawn Spacecraft"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/bundle_dwarf_planet-ceres.dawn.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/bundle_dwarf_planet-ceres.dawn.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740861Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.mission::1.0","title":"The Psyche Mission Bundle","description":"The Psyche Mission Bundle","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Psyche Mission"],"targets":["16 Psyche"],"instruments":["The Psyche Imager (PMI) aboard the Psyche spacecraft","The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft","The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft","The Psyche Magnetometer (MAG) aboard the Psyche spacecraft","Psyche Radio Science Subsystem (RSS)"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/bundle_psyche_mission.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/bundle_psyche_mission.xml","scraped_at":"2026-02-25T20:02:10.740866Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.ns::2.0","title":"The Psyche Neutron Spectrometer Bundle","description":"The Psyche Neutron Spectrometer (NS) Raw and Calibrated Bundle contains the raw and calibrated data products generated from the NS instrument on the Psyche spacecraft. The bundle includes the documentation that describes the data products for each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Psyche Mission"],"targets":["Solar System"],"instruments":["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":[],"start_date":"2023-12-11","stop_date":"2025-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/bundle_psyche_ns.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/bundle_psyche_ns.xml","scraped_at":"2026-02-25T20:02:10.740871Z","keywords":["Psyche","Neutron Spectrotometer","NS"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-dione.cassini.shape-models-maps::1.0","title":"Dione SPC Shape Models and Assessment Products V1.0","description":"This bundle contains global and regional topography of Saturn’s moon Dione, as well as photometric data for each of the regional models. Data products were generated using the Gaskell Stereophotoclinometry (SPC) software suite with images from the Cassini mission to Saturn. The global model is an update to the archived \"Gaskell Dione Shape Model\", and is generated with more images. In addition to the topographic models, we also provide assessment data to understand the uncertainty of the models.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Dione"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/bundle_satellite-dione.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/bundle_satellite-dione.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740875Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-mimas.cassini.shape-models-maps::1.0","title":"Mimas SPC Shape Model and Assessment Products V1.0","description":"This bundle contains a shape model for the Saturnian moon Mimas, along with quality assessment data. The global model is an update to the archived \"Gaskell Mimas Shape Model\", and is generated with more images and has higher resolution topography in some locations. The data is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Mimas"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/bundle_satellite-mimas.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/bundle_satellite-mimas.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740880Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-rhea.cassini.shape-models-maps::1.0","title":"Rhea SPC Shape Model and Assessment Products V1.0","description":"This bundle contains the first shape model for the Saturnian moon Rhea submitted to the PDS, along with quality assessment data. The data is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Rhea"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/bundle_satellite-rhea.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/bundle_satellite-rhea.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740883Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-tethys.cassini.shape-models-maps::1.0","title":"Tethys SPC Shape Models and Assessment Products V1.0","description":"This bundle contains global and regional topography of Saturn’s moon Tethys, as well as photometric data for each of the regional models. Data products were generated using the Gaskell Stereophotoclinometry (SPC) software suite with images from the Cassini mission to Saturn. The global model is an update to the archived \"Gaskell Tethys Shape Model\", and is generated with more images and has higher resolution topography in some locations. In addition to the topographic models, we also provide assessment data to understand the uncertainty of the models.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Tethys"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/bundle_satellite-tethys.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/bundle_satellite-tethys.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740887Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:small_bodies.stooke.maps::1.0","title":"Stooke small bodies maps","description":"This bundle contains maps of small solar system bodies which have been prepared by Philip Stooke of the University of Western Ontario. It includes 270 map sheets of six asteroids, five planetary satellites, and three comets, all prepared from spacecraft images.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo","Near Earth Asteroid Rendezvous Mission","International Rosetta Mission","Hayabusa Mission","Viking Project","Mars Global Surveyor","Mars Express","Mars Reconnaissance Orbiter","The Mariner Mars '71 (Mariner 9) Mission","Voyager"],"targets":["103P/Hartley 2","19P/Borrelly","243 Ida","25143 Itokawa","253 Mathilde","2867 Steins","433 Eros","81P/Wild 2","951 Gaspra","Amalthea","Phobos","Deimos","Epimetheus","Hyperion"],"instruments":["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker","Solid State Imaging System for GO","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter","The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B","Mars Global Surveyor Spacecraft Mars Orbiter Camera","Mars Express Orbiter High Resolution Stereo Camera","Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment","Imaging Science Subsystem for MR9","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"],"instrument_hosts":["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft","GALILEO ORBITER","The Rosetta Orbiter Spacecraft","The Hayabusa Spacecraft","The Viking Orbiter 1 Spacecraft","The Viking Orbiter 2 Spacecraft","The Mars Global Surveyor Spacecraft","Mars Express","Mars Reconnaissance Orbiter","The Mariner 9 Spacecraft","VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/bundle_small_bodies.stooke.maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/bundle_small_bodies.stooke.maps.xml","scraped_at":"2026-02-25T20:02:10.740899Z","keywords":["jpg maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:small_bodies.stooke.shape-models::1.0","title":"Stooke small bodies shape models","description":"This data set contains Philip Stooke shape models for 243 Ida, 253 Mathilde, 951 Gaspra, comet Halley, J5 Amalthea, J14 Thebe, N7 Larissa, N8 Proteus, S10 Janus, S11 Epimetheus, S16 Prometheus, and S17 Pandora, based on optical data from the NEAR, Galileo, Giotto, Vega 1, Vega 2, and Voyager missions.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["243 Ida","253 Mathilde","951 Gaspra","Pandora","Amalthea","Thebe","Larissa","Proteus","Janus","Epimetheus","Prometheus","1P/Halley"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","The Halley Multicolor Camera (HMC) for Giotto","The Television System (TVS) for Vega 1","The Television System (TVS) for Vega 2","Solid State Imaging System for GO","The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"],"instrument_hosts":["VOYAGER 1","VOYAGER 2","The Giotto Spacecraft","The Vega 1 Spacecraft","The Vega 2 Spacecraft","GALILEO ORBITER","The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/bundle_small_bodies.stooke.shape-models.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/bundle_small_bodies.stooke.shape-models.xml","scraped_at":"2026-02-25T20:02:10.740909Z","keywords":["shape models"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-udds::1.0","title":"Ulysses Dust Detection System Instrument Bundle","description":"This bundle contains the data from the Ulysses dust detector system (UDDS) from start of mission through the end of mission, 1990-2007. (As the dust detector was turned off after Nov. 30, 2007, this is the last date for which UDDS data is recorded.) Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["ULYSSES"],"targets":["Calibration Target","Dust"],"instruments":["ULYSSES DUST DETECTION SYSTEM"],"instrument_hosts":["ULYSSES"],"data_types":[],"start_date":"1990-01-01","stop_date":"2007-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/bundle_ulysses.udds.xml","source_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/bundle_ulysses.udds.xml","scraped_at":"2026-02-25T20:02:10.740913Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.tagcams::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Touch-and_Go Camera Suite (TAGCAMS). TAGCAMS is a suite of engineering cameras used for optical navigation (navcam), natural feature tracking (nftcam), and documenting sample stowage (stowcam).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/bundle_tagcams.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/bundle_tagcams.xml","scraped_at":"2026-02-25T20:02:10.740916Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msx.mimps::1.0","title":"Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Bundle","description":"Infrared observations of asteroids serendipitously observed by the Midcourse Space Experiment","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":[],"start_date":"1996-04-01","stop_date":"1997-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/bundle.msx.mimps.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/bundle.msx.mimps.xml","scraped_at":"2026-02-25T20:02:10.740920Z","keywords":[],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msx.zody.dust::1.0","title":"Midcourse Space Experiment (MSX) Zodiacal Dust Data Bundle","description":"The Midcourse Space Experiment (MSX) mid-infrared emission measurements from the zodiacal dust cloud in spectral bands centered at 8.3 12, 15, and 21 microns.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":[],"start_date":"1986-05-28","stop_date":"1997-02-04","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/bundle.msx.zody.dust.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/bundle.msx.zody.dust.xml","scraped_at":"2026-02-25T20:02:10.740924Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-ceres::1.0","title":"Dawn Ceres Gravity Science Derived Data Bundle","description":"This bundle contains derived gravity data for the Dawn Radio Science Gravity Field Determination experiments during the Ceres encounter, including spherical harmonics and gravity maps.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":[],"start_date":"2015-02-02","stop_date":"2018-10-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/bundle-dawn-rss-der-ceres.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/bundle-dawn-rss-der-ceres.xml","scraped_at":"2026-02-25T20:02:10.740927Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-vesta::1.0","title":"Dawn Vesta Gravity Science Derived Data Bundle","description":"This bundle contains derived gravity data for the Dawn Radio Science Gravity Field Determination experiments during the Vesta encounter, including spherical harmonics and gravity maps.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":[],"start_date":"2011-07-13","stop_date":"2012-07-25","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/bundle-dawn-rss-der-vesta.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/bundle-dawn-rss-der-vesta.xml","scraped_at":"2026-02-25T20:02:10.740930Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.thermal::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Derived Thermal Data Products Bundle","description":"This bundle collects the derived thermal data products produced by the OSIRIS-REx Thermal Working Group (TAWG). Derived prodcuts include (101955) Bennu global and sample site specific thermal inertia maps, and global predicted temperature maps.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES","OVIRS","OCAMS","OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/bundle_thermal.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/bundle_thermal.xml","scraped_at":"2026-02-25T20:02:10.740934Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.radioscience::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Radio Science Bundle","description":"This bundle collects mission specific Tracking and Navigation Files (TNF), Ionospheric Data Files (ION), and Small Forces Files (SFF) acquired by the Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx) spacecraft and the Deep Space Network (DSN) on Earth. Derived Radio science products such as gravity, spherical harmonic coefficients, and final ephemeris data are also collected.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OSIRIS-REx Radio Science (Telecom) Subsystem","OSIRIS-REx Propulsion Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/bundle_orex_radioscience.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/bundle_orex_radioscience.xml","scraped_at":"2026-02-25T20:02:10.740939Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.apc.lightcurves::1.0","title":"Asteroid Photometric Catalog V1.0","description":"The Asteroid Photometric Catalog (3rd update), Lagerkvist et al. 1993 [LAGERKVISTETAL1993], is a compilation of all asteroid lightcurve photometry published up to and including the year 1992. The dataset includes the lightcurves in digital form and a table of references to all original publications.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","Multiple Asteroids","(4) Vesta","(10) Hygiea","(100) Hekate","(101) Helena","(1012) Sarema","(1013) Tombecka","(1018) Arnolda","(102) Miriam","(1029) La Plata","(103) Hera","(1036) Ganymed","(104) Klymene","(105) Artemis","(1057) Wanda","(1058) Grubba","(106) Dione","(1062) Ljuba","(1063) Aquilegia","(1067) Lunaria","(1068) Nofretete","(107) Camilla","(1076) Viola","(1079) Mimosa","(1084) Tamariwa","(109) Felicitas","(1090) Sumida","(1092) Lilium","(1095) Tulipa","(11) Parthenope","(110) Lydia","(111) Ate","(1111) Reinmuthia","(1112) Polonia","(1129) Neujmina","(113) Amalthea","(1137) Raissa","(1139) Atami","(114) Kassandra","(1143) Odysseus","(1149) Volga","(115) Thyra","(1159) Granada","(116) Sirona","(1167) Dubiago","(1168) Brandia","(1173) Anchises","(1178) Irmela","(118) Peitho","(1180) Rita","(1186) Turnera","(11868) Kleinrichert","(119) Althaea","(1192) Prisma","(1196) Sheba","(1197) Rhodesia","(12) Victoria","(120) Lachesis","(1207) Ostenia","(121) Hermione","(1210) Morosovia","(1212) Francette","(1219) Britta","(1220) Crocus","(1223) Neckar","(1224) Fantasia","(123) Brunhild","(1234) Elyna","(1236) Thais","(1237) Genevieve","(124) Alkeste","(1240) Centenaria","(1245) Calvinia","(125) Liberatrix","(1250) Galanthus","(1256) Normannia","(1257) Mora","(1259) Ogyalla","(126) Velleda","(1262) Sniadeckia","(1267) Geertruida","(1279) Uganda","(128) Nemesis","(1284) Latvia","(1288) Santa","(1289) Kutaissi","(129) Antigone","(1291) Phryne","(13) Egeria","(130) Elektra","(13014) Hasslacher","(1305) Pongola","(1317) Silvretta","(132) Aethra","(1321) Majuba","(1322) Coppernicus","(133) Cyrene","(1331) Solvejg","(1337) Gerarda","(134) Sophrosyne","(1346) Gotha","(135) Hertha","(1350) Rosselia","(136) Austria","(1362) Griqua","(1366) Piccolo","(1368) Numidia","(137) Meliboea","(1379) Lomonosowa","(138) Tolosa","(1389) Onnie","(139) Juewa","(1392) Pierre","(1397) Umtata","(14) Irene","(140) Siwa","(1404) Ajax","(141) Lumen","(1416) Renauxa","(143) Adria","(1434) Margot","(1437) Diomedes","(144) Vibilia","(145) Adeona","(146) Lucina","(1468) Zomba","(147) Protogeneia","(1478) Vihuri","(148) Gallia","(1481) Tubingia","(1482) Sebastiana","(14827) Hypnos","(149) Medusa","(15) Eunomia","(150) Nuwa","(1504) Lappeenranta","(151) Abundantia","(1513) Matra","(152) Atala","(1522) Kokkola","(1523) Pieksmaki","(153) Hilda","(1533) Saimaa","(154) Bertha","(1556) Wingolfia","(156) Xanthippe","(1562) Gondolatsch","(1566) Icarus","(1576) Fabiola","(158) Koronis","(1580) Betulia","(1583) Antilochus","(1584) Fuji","(1585) Union","(159) Aemilia","(1590) Tsiolkovskaja","(1593) Fagnes","(16) Psyche","(1604) Tombaugh","(1609) Brenda","(161) Athor","(1615) Bardwell","(161989) Cacus","(162) Laurentia","(1620) Geographos","(1627) Ivar","(1628) Strobel","(163) Erigone","(164) Eva","(1641) Tana","(1644) Rafita","(1646) Rosseland","(165) Loreley","(1665) Gaby","(167) Urda","(1670) Minnaert","(1672) Gezelle","(1674) Groeneveld","(1685) Toro","(1687) Glarona","(1689) Floris-Jan","(169) Zelia","(1693) Hertzsprung","(17) Thetis","(1709) Ukraina","(171) Ophelia","(1715) Salli","(172) Baucis","(1722) Goffin","(1723) Klemola","(1727) Mette","(173) Ino","(174) Phaedra","(1742) Schaifers","(1743) Schmidt","(1753) Mieke","(1757) Porvoo","(1759) Kienle","(1772) Gagarin","(178) Belisana","(1780) Kippes","(1789) Dobrovolsky","(179) Klytaemnestra","(1793) Zoya","(18) Melpomene","(181) Eucharis","(182) Elsa","(183) Istria","(184) Dejopeja","(185) Eunike","(186) Celuta","(1862) Apollo","(1863) Antinous","(1864) Daedalus","(1865) Cerberus","(189) Phthia","(1892) Lucienne","(19) Fortuna","(190) Ismene","(1902) Shaposhnikov","(1915) Quetzalcoatl","(1917) Cuyo","(192) Nausikaa","(1928) Summa","(194) Prokne","(1941) Wild","(1943) Anteros","(1946) Walraven","(1951) Lick","(1957) Angara","(196) Philomela","(1960) Guisan","(197) Arete","(1972) Yi Xing","(2) Pallas","(20) Massalia","(200) Dynamene","(201) Penelope","(2017) Wesson","(203) Pompeja","(204) Kallisto","(206) Hersilia","95P/1977 UB (Chiron) [(2060) Chiron]","(2061) Anza","(2064) Thomsen","(2072) Kosmodemyanskaya","(208) Lacrimosa","(2088) Sahlia","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(2109) Dhotel","(211) Isolda","(2113) Ehrdni","(213) Lilaea","(214) Aschera","(2156) Kate","(2159) Kukkamaki","(216) Kleopatra","(2167) Erin","(218) Bianca","(219) Thusnelda","(22) Kalliope","(2201) Oljato","(221) Eos","(222) Lucia","(224) Oceana","(225) Henrietta","(226) Weringia","(23) Thalia","(230) Athamantis","(2317) Galya","(233) Asterope","(2339) Anacreon","(234) Barbara","(235) Carolina","(236) Honoria","(2363) Cebriones","(238) Hypatia","(24) Themis","(241) Germania","(243) Ida","(245) Vera","(246) Asporina","(247) Eukrate","(248) Lameia","(249) Ilse","(25) Phocaea","(250) Bettina","(254) Augusta","(255) Oppavia","(258) Tyche","(259) Aletheia","(26) Proserpina","(2608) Seneca","(261) Prymno","(263) Dresda","(264) Libussa","(267) Tirza","(2674) Pandarus","(268) Adorea","(2687) Tortali","(269) Justitia","(27) Euterpe","(270) Anahita","(273) Atropos","(2744) Birgitta","(277) Elvira","(279) Thule","(2797) Teucer","(28) Bellona","(280) Philia","(281) Lucretia","(282) Clorinde","(283) Emma","(2830) Greenwich","(284) Amalia","(287) Nephthys","(288) Glauke","(289) Nenetta","(2895) Memnon","(29) Amphitrite","(291) Alice","(292) Ludovica","(2952) Lilliputia","(3) Juno","(30) Urania","(302) Clarissa","(304) Olga","(306) Unitas","(3063) Makhaon","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(3103) Eger","(311) Claudia","Chaldaea","(3169) Ostro","(317) Roxane","(3199) Nefertiti","(32) Pomona","(321) Florentina","(322) Phaeo","(323) Brucia","(324) Bamberga","(325) Heidelberga","(3254) Bus","(326) Tamara","(3268) De Sanctis","(329) Svea","(33) Polyhymnia","(3317) Paris","(332) Siri","(334) Chicago","(335) Roberta","(336) Lacadiera","(3361) Orpheus","(337) Devosa","(338) Budrosa","(34) Circe","(340) Eduarda","(343) Ostara","(344) Desiderata","(345) Tercidina","(346) Hermentaria","(347) Pariana","(349) Dembowska","(35) Leukothea","(352) Gisela","(3536) Schleicher","(354) Eleonora","(3540) Protesilaos","(3551) Verenia","(3552) Don Quixote","(356) Liguria","(357) Ninina","(359) Georgia","(36) Atalante","(360) Carlova","(361) Bononia","(362) Havnia","(363) Padua","(364) Isara","(3651) Friedman","(3671) Dionysus","(3686) Antoku","(369) Aeria","(37) Fides","(372) Palma","(3737) Beckman","(375) Ursula","(376) Geometria","(377) Campania","(379) Huenna","(38) Leda","(381) Myrrha","(382) Dodona","(383) Janina","(385) Ilmatar","(386) Siegena","(387) Aquitania","(388) Charybdis","(389) Industria","(39) Laetitia","(3908) Nyx","(393) Lampetia","(394) Arduina","(396) Aeolia","(397) Vienna","(40) Harmonia","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(404) Arsinoe","(405) Thia","(407) Arachne","(409) Aspasia","(41) Daphne","(410) Chloris","(412) Elisabetha","(416) Vaticana","(417) Suevia","(418) Alemannia","(419) Aurelia","(42) Isis","(420) Bertholda","(422) Berolina","(423) Diotima","(429) Lotis","(43) Ariadne","(431) Nephele","(432) Pythia","(433) Eros","(434) Hungaria","(435) Ella","(437) Rhodia","(439) Ohio","(44) Nysa","(441) Bathilde","(4432) McGraw-Hill","(444) Gyptis","(449) Hamburga","(45) Eugenia","(451) Patientia","(454) Mathesis","(458) Hercynia","(459) Signe","(46) Hestia","(462) Eriphyla","(464) Megaira","(4659) Roddenberry","(468) Lina","(47) Aglaja","(470) Kilia","(471) Papagena","(476) Hedwig","(478) Tergeste","(48) Doris","(482) Petrina","(483) Seppina","(484) Pittsburghia","(485) Genua","(487) Venetia","(488) Kreusa","(489) Comacina","(49) Pales","(4924) Hiltner","(495) Eulalia","(497) Iva","(498) Tokio","(5) Astraea","(50) Virginia","(501) Urhixidur","(502) Sigune","(504) Cora","(505) Cava","(5080) Oja","(51) Nemausa","(510) Mabella","(511) Davida","(512) Taurinensis","(513) Centesima","(514) Armida","(5145) Pholus","(516) Amherstia","(517) Edith","(519) Sylvania","(52) Europa","(520) Franziska","(521) Brixia","(528) Rezia","(529) Preziosa","(53) Kalypso","(532) Herculina","(534) Nassovia","(537) Pauly","(5370) Taranis","(539) Pamina","(54) Alexandra","(545) Messalina","(55) Pandora","(550) Senta","(554) Peraga","(556) Phyllis","(558) Carmen","(56) Melete","(560) Delila","(562) Salome","(563) Suleika","(566) Stereoskopia","(568) Cheruskia","(57) Mnemosyne","(5761) Andreivanov","(579) Sidonia","(5797) Bivoj","(58) Concordia","(584) Semiramis","(588) Achilles","(59) Elpis","(590) Tomyris","(591) Irmgard","(593) Titania","(594) Mireille","(599) Luisa","(6) Hebe","(60) Echo","(600) Musa","(602) Marianna","(606) Brangane","(61) Danae","(618) Elfriede","(619) Triberga","(62) Erato","(621) Werdandi","(622) Esther","(624) Hektor","(628) Christine","(63) Ausonia","(631) Philippina","(632) Pyrrha","(639) Latona","(64) Angelina","(641) Agnes","(644) Cosima","(645) Agrippina","(65) Cybele","(653) Berenike","(654) Zelinda","(657) Gunlod","(658) Asteria","(659) Nestor","(66) Maja","(660) Crescentia","(67) Asia","(674) Rachele","(675) Ludmilla","(677) Aaltje","(678) Fredegundis","(679) Pax","(68) Leto","(683) Lanzia","(684) Hildburg","(688) Melanie","(69) Hesperia","(690) Wratislavia","(692) Hippodamia","(694) Ekard","(695) Bella","(699) Hela","(7) Iris","(70) Panopaea","(700) Auravictrix","(702) Alauda","(704) Interamnia","(7041) Nantucket","(705) Erminia","(709) Fringilla","(71) Niobe","(712) Boliviana","(714) Ulula","(716) Berkeley","(72) Feronia","(720) Bohlinia","(721) Tabora","(726) Joella","(73) Klytia","(733) Mocia","(736) Harvard","(737) Arequipa","(739) Mandeville","(74) Galatea","(746) Marlu","(747) Winchester","(75) Eurydike","(751) Faina","(753) Tiflis","(7550) Woolum","(76) Freia","(766) Moguntia","(77) Frigga","(771) Libera","(775) Lumiere","(776) Berbericia","(778) Theobalda","(779) Nina","(78) Diana","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(792) Metcalfia","(796) Sarita","(798) Ruth","(8) Flora","(80) Sappho","(800) Kressmannia","(8013) Gordonmoore","(804) Hispania","(807) Ceraskia","(81) Terpsichore","(811) Nauheima","(814) Tauris","(82) Alkmene","(83) Beatrix","(832) Karin","(838) Seraphina","(8395) Rembaut","(84) Klio","(841) Arabella","(846) Lipperta","(849) Ara","(85) Io","(850) Altona","(852) Wladilena","(853) Nansenia","(856) Backlunda","(8589) Stellaris","(86) Semele","(863) Benkoela","(87) Sylvia","(870) Manto","(873) Mechthild","(876) Scott","(877) Walkure","(88) Thisbe","(887) Alinda","(89) Julia","(9) Metis","(900) Rosalinde","(905) Universitas","(908) Buda","(91) Aegina","(911) Agamemnon","(914) Palisana","(916) America","(92) Undina","(925) Alphonsina","(93) Minerva","(939) Isberga","(94) Aurora","(940) Kordula","(944) Hidalgo","(945) Barcelona","(95) Arethusa","(951) Gaspra","(952) Caia","(96) Aegle","(97) Klotho","(974) Lioba","(98) Ianthe","(980) Anacostia","(984) Gretia","(987) Wallia","(99) Dike","(994) Otthild","(995) Sternberga","(10475) Maxpoilane","(11457) Hitomikobayashi","(129442) 1981 EC15","(12989) Chriseanderson","(14761) 6608 P-L","(16382) 1981 ER27","(17383) 1981 EE12","(20749) 2000 AD199","(23429) 1981 EO35","(29196) Dius","(30762) 1981 ES42","(32755) 1981 EP15","(37546) 1981 ET20","(3757) Anagolay","(5646) 1990 TR","(58119) 1981 EJ9","(6178) 1986 DA","(8252) Elkins-Tanton","(8253) Brunetto","(8794) Joepatterson","(8796) Sonnett","(9286) Patricktaylor","(9527) Sherrypervan","(9723) Binyang","(99980) 1981 ER18"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1913-08-20","stop_date":"1992-03-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/bundle_compil.ast.apc.lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/bundle_compil.ast.apc.lightcurves.xml","scraped_at":"2026-02-25T20:02:10.740981Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-mission::1.0","title":"Dawn Mission Bundle","description":"This bundle contains the Dawn Mission Documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["Framing Camera 1","FRAMING CAMERA 2","GAMMA-RAY AND NEUTRON DETECTOR","GRAVITY SCIENCE INSTRUMENT","VISIBLE AND INFRARED SPECTROMETER"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/bundle-dawn.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/bundle-dawn.xml","scraped_at":"2026-02-25T20:02:10.740990Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres::1.0","title":"Dawn RSS Raw Data Bundle For Dwarf Planet 1 Ceres","description":"This bundle contains raw radio data that can be used to determine the position and velocity of the DAWN spacecraft during its encounter with 1 Ceres. The bundle also contains the calibration data for the effects of Earth's ionosphere and troposphere, meteorological conditions at stations of the NASA Deep Space Network, thruster activity, spacecraft mass history, and changes in spacecraft antenna selection. The data were used to determine the gravity field and shape of 1 Ceres. Documents describing these data are also included in the bundle. The bundle is a migration of data from the original PDS3 archive.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Dawn","DSN Media Calibration"],"targets":["1 Ceres","Earth","Dawn"],"instruments":["RSS","Global Positioning System","Global Positioning System","DSN Media Instrumentation","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 35","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":[],"start_date":"2007-09-27","stop_date":"2018-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/bundle_dawn-rss_raw_ceres.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/bundle_dawn-rss_raw_ceres.xml","scraped_at":"2026-02-25T20:02:10.740997Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectra::1.0","title":"Galileo NIMS Radiance Point Spectra of Gaspra V1.0","description":"This data volume contains radiometrically corrected point spectra of asteroid 951 as acquired by the Galileo spacecraft Near Infrared Mapping Spectrometer (NIMS) on October 29, 1991. They record the spectra collected as the Galileo spacecraft approached the target asteroid. These data are products of the calibration of the raw data number files gap015tn.qub, gap035tn.qub, gap036tn.qub, gap037tn.qub, and gap038tn.qub (DATA SET ID ='GO-A-NIMS-3 TUBE-V1.0') with calibration factors acquired during the first Earth/Moon encounter of the Galileo mission. These raw data .qub files are archived in the Imaging Node of the NASA Planetary Data System (PDS). The calibrated spectra consist of radiance measurements for wavelengths between 0.7 - 5.2 micrometers.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/bundle_galileo.ast-gaspra.nims.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/bundle_galileo.ast-gaspra.nims.spectra.xml","scraped_at":"2026-02-25T20:02:10.741002Z","keywords":["NIMS spectra","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube::1.0","title":"Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","description":"This bundle contains a radiometrically corrected spectral image cube of the highest spatial resolution observation of asteroid 951 Gaspra as acquired by the Galileo spacescraft Near Infrared Mapping Spectrometer (NIMS) on October 29, 1991. It is the product of the calibration of the raw data number file gap016tn.qub with calibration factors contained in the file e1wanta2.qub and projected in a point perspective geometry. Both files are contained within the NASA pds archive of Galileo NIMS data. This spectral image cube, gaspra_nims_hires_radiance.fit, combines data acquired during the asteroid 951 Gaspra encounter and the Earth encounters to produce a radiometrically calibrated product.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/bundle_galileo.ast-gaspra.nims.spectral-cube.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/bundle_galileo.ast-gaspra.nims.spectral-cube.xml","scraped_at":"2026-02-25T20:02:10.741007Z","keywords":["NIMS spectral cube","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images::1.0","title":"Galileo SSI Gaspra Radiometrically Calibrated Images V1.0","description":"This dataset includes the Galileo Orbiter Solid State Imaging data on the asteroid 951 Gaspra. The raw data have already been archived in PDS with the data set name 'Galileo Imaging (SSI) Asteroid, Earth and Moon Experiment Data Records' and can be found by searching on the data set identification 'GO-A/E-SSI-2-REDR-V1.0'. Only those images in which Gaspra actually appears have been included here. Images in both FITS and ISIS Cube format are provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/bundle_galileo.ast-gaspra.ssi.cal-images.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/bundle_galileo.ast-gaspra.ssi.cal-images.xml","scraped_at":"2026-02-25T20:02:10.741012Z","keywords":["SSI calibrated Images","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectra::1.0","title":"Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","description":"This data volume contains radiometrically corrected point spectra of asteroid 243 Ida and a spectrum of the asteroid satellite Dactyl (Ida I) as acquired by the Galileo spacecraft Near Infrared Mapping Spectrometer (NIMS) on August 28, 1993. They record the spectra collected as the Galileo spacecraft approached the 243 Ida system. These data are products of the calibration of the raw data number files idu002tn.qub, idu005tn.qub, idu006tn.qub, idu007tn.qub, idu019tn.qub, idu020tn.qub, idu022tn.qub, idu028tn.qub, idu032tn.qub, idu033tn.qub, and idu035tn.qub (DATA SET ID ='GO-A-NIMS-3-TUBE-V1.0') with calibration factors acquired during the Jovian tour of the Galileo mission. These raw data .qub files are archived in the Imaging Node of the NASA Planetary Data System (PDS). The calibrated spectra consist of radiance and incidence/flux measurements for wavelengths between 0.7 - 5.2 micrometers.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["243 Ida","(243) Ida I (Dactyl)"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/bundle_galileo.ast-ida.nims.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/bundle_galileo.ast-ida.nims.spectra.xml","scraped_at":"2026-02-25T20:02:10.741018Z","keywords":["NIMS spectra","241 Ida","Dactyl (243 Ida I)"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes::1.0","title":"Hi-Res Galileo NIMS Ida Spectral Image Cube V1.0","description":"This bundle contains 17 channel spectral image cubes of asteroid 243 Ida ranging from 0.7 to 5.2 micrometers in wavelength in cgs units of radiance. These data were obtained by the Galileo spacecraft Near Infrared Mapping Spectrometer on August 28, 1993. They were radiometrically calibrated using calibration measurements obtained by the Near Infrared Mapping Spectrometer during its observations of Europa on June 28, 1996.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/bundle_galileo.ast-ida.nims.spectral-cubes.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/bundle_galileo.ast-ida.nims.spectral-cubes.xml","scraped_at":"2026-02-25T20:02:10.741024Z","keywords":["NIMS spectral cube","243 Ida"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.ssi.cal-images::1.0","title":"Galileo SSI Ida Radiometrically Calibrated Images V1.0","description":"This data set includes Galileo Orbiter SSI radiometrically calibrated images of the asteroid 243 Ida, created using ISIS software and assuming nadir pointing. This is an original delivery of radiometrically calibrated files, not an update to existing files. All images archived include the asteroid within the image frame. Calibration was performed in 2013-2014.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/bundle_galileo.ast-ida.ssi.cal-images.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/bundle_galileo.ast-ida.ssi.cal-images.xml","scraped_at":"2026-02-25T20:02:10.741028Z","keywords":["SSI calibrated Images","243 Ida"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta::1.0","title":"Dawn RSS Raw Data Bundle For Asteroid 4 Vesta","description":"This bundle contains raw radio data that can be used to determine the position and velocity of the DAWN spacecraft during its encounter with 4 Vesta. The bundle also contains the calibration data for the effects of Earth's ionosphere and troposphere, meteorological conditions at stations of the NASA Deep Space Network, thruster activity, spacecraft mass history, and changes in spacecraft antenna selection. The data were used to determine the gravity field and shape of 4 Vesta. Documents describing these data are also included in the bundle. The bundle is a migration of data from the original PDS3 archive.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Dawn","DSN Media Calibration"],"targets":["4 Vesta","Earth","Dawn"],"instruments":["RSS","Global Positioning System","Global Positioning System","DSN Media Instrumentation","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":[],"start_date":"2007-09-27","stop_date":"2012-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/bundle_dawn-rss_raw_vesta.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/bundle_dawn-rss_raw_vesta.xml","scraped_at":"2026-02-25T20:02:10.741034Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.des.taxonomy::1.0","title":"DES_Asteroid_taxonomy V1.0","description":"We provide taxonomical information from Dark Energy Survey (DES) data for 16517 asteroids for which gri slope and i-z colors are available, taxonomical complex information for 58116 asteroids with DES colors g-r, g-i, and a list of 409 new possible V-type objects.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Asteroids"],"instruments":["Victor Blanco 4.0m Telescope","Dark Energy Camera (DECam)"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"2013-08-31","stop_date":"2019-01-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/bundle_gbo.ast.des.taxonomy.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/bundle_gbo.ast.des.taxonomy.xml","scraped_at":"2026-02-25T20:02:10.741038Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021::1.0","title":"MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0","description":"This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["2020 RC","(415029) 2011 UL21","(65996) 1998 MX5","(3288) Seleucus","2018 MM8","(11405) 1999 CV3","(143404) 2003 BD44","(6569) Ondaatje","1996 AE2","2002 LY1","(5011) Ptah","2015 FS332","(5626) Melissabrucker","(7888) 1993 UC","(52762) 1998 MT24","(7358) Oze","(613512) 2006 SK134","2019 YH2","2016 NL15","(1627) Ivar","2011 WN15","(612098) 1999 RM45","(19356) 1997 GH3","(137126) 1999 CF9","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(137799) 1999 YB","(154302) 2002 UQ3","2008 QS11","(318411) 2005 AH14","(163348) 2002 NN4","(496816) 1989 UP","(380128) 1997 WB21","2007 XY9","(454177) 2013 GJ35","(142040) 2002 QE15","(438902) 2009 WF104","(11066) Sigurd","2016 LG","(455148) 1994 UG","(52768) 1998 OR2","(612484) 2002 TS67","(301964) 2000 EJ37","(53426) 1999 SL5","(217796) 2000 TO64","(186822) 2004 FE31","(413577) 2005 UL5","(523586) 1999 LK1","(380981) 2006 SU131","(4953) 1990 MU","(217807) 2000 XK44","(36017) 1999 ND43","(3691) Bede","(194386) 2001 VG5","(480004) 2014 KD91","(495102) 2011 UU106","2003 AF23","2018 WX1","(4179) Toutatis","2014 QK434","2015 OX78","(101955) Bennu","(162142) 1998 VR","(503871) 2000 SL","(7482) 1994 PC1","2014 AD17","(496817) 1989 VB","(411165) 2010 DF1","(457260) 2008 RY24","2015 BF92","2019 CH","2015 WH9","(153814) 2001 WN5","(363067) 2000 CO101","(144332) 2004 DV24","(2335) James","(163697) 2003 EF54","(200840) 2001 XN254","(141525) 2002 FV5","(528650) 2008 WX32","(155110) 2005 TB","(163081) 2002 AG29","(275611) 1999 XX262","2018 TT1","(162186) 1999 OP3","(3554) Amun","2002 AV","(2340) Hathor","(437844) 1999 MN","(85989) 1999 JD6","(488645) 2003 OV","(511684) 2015 BN509","(24445) 2000 PM8","(326290) Akhenaten","2017 BQ93","(67367) 2000 LY27","2011 UA","(21088) Chelyabinsk","(100926) 1998 MQ","(1011) Laodamia","2020 WU5","(6585) O'Keefe","(163373) 2002 PZ39","2018 QN1","(88188) 2000 XH44","(170502) 2003 WM7","(171819) 2001 FZ6","(137924) 2000 BD19","(363831) 2005 PY16","(143651) 2003 QO104","(1916) Boreas","(1508) Kemi","(65717) 1993 BX3","(357024) 1999 YR14","(3833) Calingasta","(2212) Hephaistos","(4688) 1980 WF","(236716) 2007 FV42","(612143) 2000 BO28","2015 NU13","2014 UR116","(161998) 1988 PA","(440212) 2004 OB","(1468) Zomba","2018 RC","(310442) 2000 CH59","(99907) 1989 VA","2015 OL35","(194126) 2001 SG276","2013 PY6","(68216) 2001 CV26","(5653) Camarillo","(138937) 2001 BK16","(398188) Agni","(453707) 2010 XY72","(13553) Masaakikoyama","(2063) Bacchus","(214869) 2007 PA8","(2449) Kenos","(10145) 1994 CK1","(5604) 1992 FE","(24475) 2000 VN2","(5587) 1990 SB","2016 ED85","2020 RO6","(457768) 2009 KN4","(413002) 1999 VG22","(96189) Pygmalion","2020 ME1","2015 BK509","(349063) 2006 XA","2020 RF","(3199) Nefertiti","(5261) Eureka","(468583) 2007 LS","2018 KE3","(244670) 2003 KN18","2016 CL136","2019 DN","(612813) 2004 RF84","(370307) 2002 RH52","(523631) 2009 SX1","(19127) Olegefremov","(162058) 1997 AE12","(88254) 2001 FM129","2020 TB12","(3402) Wisdom","(523817) 2009 TK","(144898) 2004 VD17","(159504) 2000 WO67","(4769) Castalia","(18736) 1998 NU","(154007) 2002 BY","(450648) 2006 UC63","(484795) 2009 DE47","2020 PM7","(11398) 1998 YP11","2019 BK","(189552) 2000 RL77","2016 LX48","(453778) 2011 JK","(699) Hela","2006 NL","(380359) 2002 TN30","(496818) 1993 RA","(137199) 1999 KX4","2011 WA","(250706) 2005 RR6","(265962) 2006 CG","(518735) 2009 JL1","(85990) 1999 JV6","2020 XU6","(226514) 2003 UX34","2017 MC4","(154347) 2002 XK4","(496005) 2007 XJ16","2017 CS","(6053) 1993 BW3","(3361) Orpheus","2017 YE5","(1951) Lick","(416186) 2002 TD60","(6386) Keithnoll","(99942) Apophis","(35107) 1991 VH","(414586) 2009 UV18","(137084) 1998 XS16","(18882) 1999 YN4","(329437) 2002 OA22","(433) Eros","(17182) 1999 VU","(1139) Atami","(36284) 2000 DM8","2014 YM9","(3988) Huma","2011 YS62","(242708) 2005 UK1","(380160) 2000 JO78","(505657) 2014 SR339","2019 FU","(465749) 2009 WO6","(141354) 2002 AJ29","(169675) 2002 JM97","2013 UX14","(159402) 1999 AP10","2015 RF36","(441987) 2010 NY65","(54690) 2001 EB","(480883) 2001 YE4","(4995) Griffin","(25916) 2001 CP44","(66063) 1998 RO1","(303174) 2004 FH11","(1981) Midas","(450649) 2006 UY64","(527715) 2007 YQ56","(137120) 1999 BJ8","(4183) Cuno","(1685) Toro","(471240) 2011 BT15","(153201) 2000 WO107","(154807) 2004 PP97","(138258) 2000 GD2","(162911) 2001 LL5","(90416) 2003 YK118","(25143) Itokawa","(2368) Beltrovata","(337866) 2001 WL15","(376864) 2001 TP103","(474179) 1999 VS6","(162082) 1998 HL1","(297300) 1998 SC15","(1865) Cerberus","2016 NV38","(5407) 1992 AX","2016 GU","(54789) 2001 MZ7","(4451) Grieve","(86450) 2000 CK33","(312473) 2008 SX245","(242211) 2003 QB90","(1198) Atlantis","2007 EC","(4341) Poseidon","(66146) 1998 TU3","(162004) 1991 VE","(1580) Betulia","2018 NB","(1204) Renzia","2016 AZ8","(458198) 2010 RT11","(21374) 1997 WS22","(388945) 2008 TZ3","(2102) Tantalus","(68950) 2002 QF15","(136874) 1998 FH74","(243025) 2006 UM216","(11500) Tomaiyowit","(385343) 2002 LV","2021 CG","(2078) Nanking","(5693) 1993 EA","2018 PP10","(354030) 2001 RB18","(24761) Ahau","(8014) 1990 MF","(7336) Saunders","2014 LW21","(132) Aethra","2016 XH1","(4197) Morpheus","2017 RL","(361123) 2006 GW2","(444584) 2006 UK","(382503) 2001 RE8","(66272) 1999 JW6","(53435) 1999 VM40","(162998) 2001 SK162","(3920) Aubignan","(7304) Namiki","2015 BC","2016 ES155","(283460) 2001 PD1","(152563) 1992 BF","(1566) Icarus","(17511) 1992 QN","(1862) Apollo","(3200) Phaethon","(141018) 2001 WC47","(25330) 1999 KV4","(265482) 2005 EE","(3671) Dionysus","(241662) 2000 KO44","(452389) 2002 NW16","(206378) 2003 RB","(138911) 2001 AE2","(138404) 2000 HA24","(389694) 2011 QD48","(85628) 1998 KV2","(887) Alinda","(139622) 2001 QQ142","(15817) Lucianotesi","(1310) Villigera","(452561) 2005 AB","(68359) 2001 OZ13","(531060) 2012 DJ61","(416151) 2002 RQ25","(399774) 2005 NB7","(53319) 1999 JM8","2016 UE101","(8567) 1996 HW1","(381677) 2009 BJ81","(612777) 2004 LU3","(416584) 2004 JB12","2017 DA36","(203217) 2001 FX9","(22771) 1999 CU3","(153842) 2001 XT30","(302830) 2003 FB","2017 MB1","2020 RJ3","(31345) 1998 PG","(7088) Ishtar","2020 DX","(86819) 2000 GK137","(99799) 2002 LJ3","(163899) 2003 SD220","(523811) 2008 TQ2","(6239) Minos","(20790) 2000 SE45","(495615) 2015 PQ291","(6411) Tamaga","(138524) 2000 OJ8","(719) Albert","(175189) 2005 EC224","(189040) 2000 MU1","2018 LQ2","(141053) 2001 XT1","(512) Taurinensis","(5131) 1990 BG","(489486) 2007 GS3","(294739) 2008 CM","(86039) 1999 NC43","2019 AN5","2020 TY1","(140158) 2001 SX169","2020 SY4","2015 TA25","(3103) Eger","(7889) 1994 LX","2018 BP","2016 PR8","(267494) 2002 JB9","(4486) Mithra","(190208) 2006 AQ","(5392) Parker","(451157) 2009 SQ104","(137108) 1999 AN10","(2059) Baboquivari","(482650) 2013 BK18","(365424) 2010 KX7","2015 XB379","2017 RR15","(163249) 2002 GT","(5817) Robertfrazer","(96590) 1998 XB","(338292) 2002 UA31","(98943) 2001 CC21","(163902) 2003 SW222","(333888) 1998 ST4","(5189) 1990 UQ","(63164) 2000 YU14","(141498) 2002 EZ16","2015 JJ2","(29075) 1950 DA","(65679) 1989 UQ","(5646) 1990 TR","(326777) 2003 SV222","(39572) 1993 DQ1","2015 DB","(35396) 1997 XF11","(152931) 2000 EA107","2005 GR33","(10115) 1992 SK","2015 JY1","(4954) Eric","(163696) 2003 EB50","(3102) Krok","(86212) 1999 TG21","(142464) 2002 TC9","(5879) Almeria","2018 JA","(66391) Moshup","(7341) 1991 VK","(450160) 2000 RM12","(414960) 2011 CS4","2008 SR1","(326291) 1998 HM3","(363599) 2004 FG11","(348400) 2005 JF21","(3908) Nyx","(88710) 2001 SL9","(470510) 2008 CJ116","(3552) Don Quixote","2020 PD1","2013 CW32","(6611) 1993 VW","(163000) 2001 SW169","(410778) 2009 FG19","(250577) 2005 AC","(175706) 1996 FG3","2018 QV1","2016 LV","(313276) 2002 AX1","(164202) 2004 EW","(5230) Asahina","(237805) 2002 CF26","(52760) 1998 ML14","(173664) 2001 JU2","(162173) Ryugu","2020 WL3","(102528) 1999 US3","(153591) 2001 SN263","(5660) 1974 MA","(443103) 2013 WT67","(162510) 2000 QW69","(483422) 2000 CE59","(162781) 2000 XL44","Multiple Asteroids","(422686) 2000 AC6","(512245) 2016 AU8","(66251) 1999 GJ2","(469737) 2005 NW44","2020 QW","(1640) Nemo","2015 SV2","2019 HC","(308635) 2005 YU55","(141670) 2002 JS100","(438955) 2010 LN14","(4558) Janesick","(194268) 2001 UY4","2017 AE5","(612199) 2000 WL63","(154244) 2002 KL6","(355256) 2007 KN4","(34613) 2000 UR13","(5143) Heracles","(612348) 2002 GZ8","(2099) Opik","(467963) 2012 JT17","(22753) 1998 WT","(87684) 2000 SY2","2016 YM","(405058) 2001 TX16","(154330) 2002 VX94","2017 BM123","2018 QU1","(437316) 2013 OS3","2014 UF206","(85709) 1998 SG36","(2062) Aten","2020 WM3","(1374) Isora","(154993) 2005 EA94","(90147) 2002 YK14","2007 RU17","(455322) 2002 NX18","(1036) Ganymed","(410777) 2009 FD","(448003) 2008 DE","2019 CD5","(68278) 2001 FC7","(1131) Porzia","(413038) 2001 MF1","(5786) Talos","(154276) 2002 SY50","(454100) 2013 BO73","(6455) 1992 HE","2020 PS","(9400) 1994 TW1","(13353) 1998 TU12","(297418) 2000 SP43","(143992) 2004 AF","(333889) 1998 SV4","2019 AP3","2005 WS3","(141593) 2002 HK12","(37336) 2001 RM","(475665) 2006 VY13","(85804) 1998 WQ5","(203015) 1999 YF3","(523667) 2012 TM139","(112221) 2002 KH4","2016 UU80","(250620) 2005 GE59","(1864) Daedalus","2015 DP155","2016 YK","(416591) 2004 LC2","(401857) 2000 PG3","(3674) Erbisbuhl","2012 SG32","(137170) 1999 HF1","(162687) 2000 UH1","(1565) Lemaitre","2020 SN","2004 QD3","(85818) 1998 XM4","(136923) 1998 JH2","(190166) 2005 UP156","2009 SV17","2015 AZ43","(326683) 2002 WP","(33342) 1998 WT24","(26760) 2001 KP41","(526238) 2005 YY36","(2074) Shoemaker","(329340) 2001 LM5","(3753) Cruithne","(438429) 2006 WN1","(385186) 1994 AW1","(471241) 2011 BX18","2011 WK15","(451397) 2011 EZ78","(5836) 1993 MF","(523788) 2015 FP118","2015 SY","(2064) Thomsen","(2061) Anza","2005 TF","(163364) 2002 OD20","2020 ST1","(108519) 2001 LF","(30825) 1990 TG1","(68347) 2001 KB67","2018 WD2","2018 XG5","(311554) 2006 BQ147","(253841) 2003 YG118","(481394) 2006 SF6","(3352) McAuliffe","(442243) 2011 MD11","2015 QT9","(155334) 2006 DZ169","2020 WK3","(32906) 1994 RH","(144411) 2004 EW9","2018 UQ1","(410088) 2007 EJ","(477885) 2011 JT9","(52340) 1992 SY","2014 RL12","2019 UC","(219071) 1997 US9","(485652) 2011 WO41","(498066) 2007 RM133","2015 SZ","(8037) 1993 HO1","(345705) 2006 VB14","(65690) 1991 DG","(153958) 2002 AM31","(136993) 1998 ST49","(154029) 2002 CY46","(14402) 1991 DB","2016 CO247","(302311) 2002 AA","2020 XH1","(106589) 2000 WN107","(285263) 1998 QE2","(481532) 2007 LE","2011 HP","(459872) 2014 EK24","2007 TQ24","(420302) 2011 XZ1","(525477) 2005 FC3","(89355) 2001 VS78","(220839) 2004 VA","(2329) Orthos","(422699) 2000 PD3","(68346) 2001 KZ66","2020 RB6","(1980) Tezcatlipoca","(145656) 4788 P-L","(96631) 1999 FP59","(506459) 2002 AL14","2003 YJ","(416071) 2002 NV","2010 GT7","2016 NA1","(3635) Kreutz","(8566) 1996 EN","(19764) 2000 NF5","(152978) 2000 GJ147","(388838) 2008 EZ5","(16834) 1997 WU22","(461501) 2003 FT3","(69230) Hermes","(10636) 1998 QK56","2020 SS4","(492143) 2013 OE","2011 CT4","2017 CR32","(89830) 2002 CE","(137062) 1998 WM","2019 GT3","(1620) Geographos","2018 EJ4","(1917) Cuyo","(1943) Anteros","(15745) Yuliya","(141052) 2001 XR1","(1866) Sisyphus","2017 VC","(3198) Wallonia","(500080) 2011 WV134","(7822) 1991 CS","(143624) 2003 HM16","2019 YP5","(137032) 1998 UO1","(16960) 1998 QS52","(4581) Asclepius","(3858) Dorchester","(3122) Florence","(6037) 1988 EG","(5863) Tara","(442037) 2010 PR66","(192563) 1998 WZ6","(446833) 2001 RB12","(465616) 2009 EC","(462959) 2011 DU","2019 SH6","2014 WG365","(174050) 2002 CC19","(138852) 2000 WN10","(4055) Magellan","(515767) 2015 JA2","(3255) Tholen","(411201) 2010 LJ14","2002 NY40","(17274) 2000 LC16","(433953) 1997 XR2","(159608) 2002 AC2","(5645) 1990 SP","(40329) 1999 ML","(12711) Tukmit","(2100) Ra-Shalom","(243147) 2007 TX18","(331471) 1984 QY1","(464798) 2004 JX20"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"2000-09-04","stop_date":"2021-02-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/bundle_gbo.ast.mithneos.spectra_2000-2021.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/bundle_gbo.ast.mithneos.spectra_2000-2021.xml","scraped_at":"2026-02-25T20:02:10.741075Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.sawyer.spectra::1.0","title":"Sawyer Asteroid Spectra V1.0","description":"This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(107) Camilla","(34) Circe","(230) Athamantis","(419) Aurelia","(704) Interamnia","(410) Chloris","(130) Elektra","(91) Aegina","(203) Pompeja","(85) Io","(476) Hedwig","(5) Astraea","(72) Feronia","(65) Cybele","(87) Sylvia","(45) Eugenia","(27) Euterpe","(1268) Libya","(14) Irene","(173) Ino","(57) Mnemosyne","(532) Herculina","(51) Nemausa","Multiple Asteroids","(64) Angelina","(386) Siegena","(41) Daphne","(712) Boliviana","(111) Ate","(171) Ophelia","(1167) Dubiago","(702) Alauda","(52) Europa","Solar Analog Stars","(148) Gallia","(434) Hungaria","(19) Fortuna","(2) Pallas","(804) Hispania","(63) Ausonia","(329) Svea","(1172) Aneas","(128) Nemesis","(30) Urania","(70) Panopaea","(54) Alexandra","(10) Hygiea","(127) Johanna","(387) Aquitania","(190) Ismene","(212) Medea","(194) Prokne","(13) Egeria","(511) Davida","(48) Doris","(137) Meliboea","(241) Germania","(95) Arethusa","(98) Ianthe","(537) Pauly","(405) Thia","(9) Metis","(602) Marianna","(93) Minerva","(409) Aspasia","(617) Patroclus","(44) Nysa","(20) Massalia","(431) Nephele","(505) Cava"],"instruments":["2.7m Telescope","Large Cassegrain Spectrometer","2.1-m Struve Warner & Swasey reflector","Cassegrain Spectrometer","Literature search"],"instrument_hosts":["McDonald Observatory","McDonald Observatory"],"data_types":[],"start_date":"1983-09-15","stop_date":"1990-07-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/bundle_gbo.ast.sawyer.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/bundle_gbo.ast.sawyer.spectra.xml","scraped_at":"2026-02-25T20:02:10.741089Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hst.ast-ceres.images-albedo-shape::1.0","title":"HST images, albedo maps, and shape of (1) Ceres V1.0","description":"This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HST"],"targets":["(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":[],"start_date":"2003-12-28","stop_date":"2004-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/bundle_hst.ast-ceres.images-albedo-shape.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/bundle_hst.ast-ceres.images-albedo-shape.xml","scraped_at":"2026-02-25T20:02:10.741094Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hst.ast-ceres.uv-spectra::1.0","title":"HST UV Slitless Reflectance Spectra of (1) Ceres V1.0","description":"This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HST"],"targets":["(1) Ceres","(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":[],"start_date":"2007-11-25","stop_date":"2007-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/bundle_hst.ast-ceres.uv-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/bundle_hst.ast-ceres.uv-spectra.xml","scraped_at":"2026-02-25T20:02:10.741098Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.amica::1.0","title":"The Hayabusa AMICA Bundle","description":"The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission, plus pre-flight flat field images.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA"],"targets":["(25143) Itokawa","* 31 Leo","* alf Crv","* alf Aur","* alf Leo","* alf Ori","* alf Sco","* alf Vir","* bet Tau","Calibration Target","Earth","Calibration Lamp","Flat Field","Mars","Earth I (Moon)","Saturn","Sky","* tau Sco"],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","SBIG ST-9E","Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"],"instrument_hosts":["HAYABUSA","Goodricke-Pigott Observatory"],"data_types":[],"start_date":"2003-03-18","stop_date":"2005-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/bundle_hay.amica.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/bundle_hay.amica.xml","scraped_at":"2026-02-25T20:02:10.741104Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.lidar::1.0","title":"The Hayabusa LIDAR Bundle","description":"The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optimizing the spacecraft trajectory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["LIGHT DETECTION AND RANGING INSTRUMENT"],"instrument_hosts":["HAYABUSA"],"data_types":[],"start_date":"2005-09-11","stop_date":"2005-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/bundle_hay.lidar.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/bundle_hay.lidar.xml","scraped_at":"2026-02-25T20:02:10.741109Z","keywords":[],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.mission::1.0","title":"Hayabusa Mission Bundle","description":"This bundle contains all the mission wide information needed to use and understand the scientific data products produced by the Hayabusa mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","NEAR-INFRARED SPECTROMETER","LIGHT DETECTION AND RANGING INSTRUMENT"],"instrument_hosts":["HAYABUSA"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/bundle_hay.mission.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/bundle_hay.mission.xml","scraped_at":"2026-02-25T20:02:10.741113Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iras::1.0","title":"The IRAS Mission Data Bundle","description":"The InfraRed Astronomical Satellite (IRAS) was launched on January 26, 1983 from Vandenburg Air Force Base in California. It was a joint program of the United States, the Netherlands, and the United Kingdom. The primary mission of IRAS was to conduct a sensitive and unbiased survey of the sky in four wavelength bands centered at 12, 25, 60, and 100 microns. It also made pointed observatons of selected astronomical and solar system objects. This bundle contains the PDS data holdings from the IRAS mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["INFRARED ASTRONOMICAL SATELLITE (IRAS)"],"targets":["Multiple Asteroids","9P/Tempel 1","DUST"],"instruments":["FOCAL PLANE ARRAY for IRAS"],"instrument_hosts":["INFRARED ASTRONOMICAL SATELLITE"],"data_types":[],"start_date":"1983-01-26","stop_date":"1983-11-22","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/bundle_iras.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/bundle_iras.xml","scraped_at":"2026-02-25T20:02:10.741116Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iue.ast.hendrix.spectra::2.0","title":"Hendrix IUE asteroid reflectance spectra V2.0","description":"This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Iue"],"targets":["(308) Polyxo","(41) Daphne","(42) Isis","(12) Victoria","(1620) Geographos","(40) Harmonia","(14) Irene","(433) Eros","(29) Amphitrite","(410) Chloris","(27) Euterpe","(654) Zelinda","(10) Hygiea","(471) Papagena","(16) Psyche","(63) Ausonia","(8) Flora","(135) Hertha","(4179) Toutatis","(18) Melpomene","(51) Nemausa","(20) Massalia","(511) Davida","(75) Eurydike","(349) Dembowska","(21) Lutetia","(54) Alexandra","(9) Metis","(23) Thalia","Multiple Asteroids","(129) Antigone","(324) Bamberga","(88) Thisbe","(15) Eunomia","(216) Kleopatra","(44) Nysa","(532) Herculina","(1566) Icarus","(354) Eleonora","(704) Interamnia"],"instruments":["LONG-WAVELENGTH REDUNDANT for IUE","LONG-WAVELENGTH PRIME for IUE"],"instrument_hosts":["International Ultraviolet Explorer","International Ultraviolet Explorer"],"data_types":[],"start_date":"1978-05-21","stop_date":"1994-09-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/bundle_iue.ast.hendrix.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/bundle_iue.ast.hendrix.spectra.xml","scraped_at":"2026-02-25T20:02:10.741122Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps::1.0","title":"Phoebe SPC Shape Model and Assessment Products V1.0","description":"This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-huygens"],"targets":["Saturn IX (Phoebe)"],"instruments":["Imaging Science Subsystem - Wide Angle","Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/bundle_satellite-phoebe.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/bundle_satellite-phoebe.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.741126Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.mission::2.0","title":"NEAR Mission Information Bundle","description":"The bundle contains all the mission wide information needed to use and understand the scientific data products produced by the NEAR mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["NEAR"],"targets":["433 Eros","253 Mathilde","Earth","C/1996 B2 (Hyakutake)","SOLAR_SYSTEM","Interplanetary Magnetic Field","SPACE"],"instruments":["GAMMA RAY SPECTROMETER for NEAR","MAGNETOMETER for NEAR","MULTI-SPECTRAL IMAGER for NEAR","NEAR INFRARED SPECTROMETER for NEAR","NEAR LASER RANGEFINDER for NEAR","XRAY SPECTROMETER for NEAR","RADIO SCIENCE SUBSYSTEM for NEAR"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":[],"start_date":"1996-02-17","stop_date":"2001-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/bundle_near.mission.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/bundle_near.mission.xml","scraped_at":"2026-02-25T20:02:10.741132Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spectral_analysis::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Spectral Analysis Bundle","description":"This bundle collects all the derived spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) and the OSIRIS-REx Thermal Emission Spectrometer (OTES). These products include resampled and reflectance OVIRS spectra, and temperature/emissivity OTES data products. Additionally, both visible and near infrared (vnir) and thermal infrared (tir) map products are collected.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES","OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/bundle_spectral_analysis.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/bundle_spectral_analysis.xml","scraped_at":"2026-02-25T20:02:10.741137Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_raw::1.1","title":"NEAR Radio Science Subsystem (RSS) raw data bundle","description":"This bundle contains raw radio science tracking data and associated calibration files. There are six product types: Orbit Determination Files (ODF), Earth Orientation Parameters (EOP), Troposphere (TRO), Ionosphere (ION), Numberical Model (nmlmodl), and solution pages (Paramsum).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros","253 Mathilde"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":[],"start_date":"1997-07-03","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/bundle_near_rss_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/bundle_near_rss_raw.xml","scraped_at":"2026-02-25T20:02:10.741144Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_derived::1.1","title":"NEAR Radio Science Subsystem (RSS) derived data bundle","description":"The bundle contains derived models of Eros gravity and topography from radio science tracking. There are four product types: Landmark, Image, Spherical Harmonics ASCII Data Records (SHADR), and the Spherical Harmonics Binary Data Records (SHBDR).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":[],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/bundle_near_rs_derived.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/bundle_near_rs_derived.xml","scraped_at":"2026-02-25T20:02:10.741147Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams::11.1","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Camera Suite (OCAMS). OCAMS is a suite of scientific cameras used for the characterization of the surface of (101955) Bennu. http://doi.org/10.26033/asca-b202.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/bundle_ocams.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/bundle_ocams.xml","scraped_at":"2026-02-25T20:02:10.741151Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ovirs::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible and InfraRed Spectrometer (OVIRS) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS). OVIRS is used for the spectral characterization of the surface of (101955) Bennu.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/bundle_ovirs.xml","source_url":"https://sbnarchive.psi.edu/pds4/bundle_ovirs.xml","scraped_at":"2026-02-25T20:02:10.741154Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.sample_site::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Derived Sample Site Products Bundle","description":"This collection contains detailed catalogs created during the Sample Site Selection Phase of the OSIRIS-REx mission. Each catalog features geospatial maps with comparative visualizations across all candidate sites. These catalogs are decisional products, and as such are historical documents. They are not final curated science products.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS","OLA","OTES","OVIRS","TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/bundle_sample_site.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/bundle_sample_site.xml","scraped_at":"2026-02-25T20:02:10.741163Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clipper.sud_ground_cal::1.0","title":"Europa Clipper SUDA Ground Calibration Bundle","description":"This bundle collects all the ground calibration data products produced by the SUDA instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":[],"start_date":"2022-07-07","stop_date":"2022-08-31","browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/bundle_suda.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/bundle_suda.xml","scraped_at":"2026-02-25T20:02:10.741183Z","keywords":[],"processing_level":"Partially Processed | Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model::1.0","title":"Radar shape model of asteroid (99942) Apophis","description":"This data set contains a preliminary three-dimensional shape model and spin state of near-Earth asteroid (99942) Apophis based on ground-based radar images as reported by Brozovic et al. (2018).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["(99942) Apophis"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","DSS-14 70-m Radio Telescope","DSS-14 X-band Goldstone Solar System Radar Transmitter","DSS-14 X-band Goldstone Solar System Radar Receiver"],"instrument_hosts":["Arecibo Observatory","Goldstone Deep Space Communications Complex"],"data_types":[],"start_date":"2012-12-21","stop_date":"2013-03-16","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/bundle_gbo.ast-apophis.jpl.radar.shape_model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/bundle_gbo.ast-apophis.jpl.radar.shape_model.xml","scraped_at":"2026-02-25T20:02:10.741193Z","keywords":["radar shape model"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtcal::1.0","title":"DART Lowell Discovery Telescope (LDT) Calibrated Data Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the Lowell calibrated images, the supporting calibration images: master bias frame images, and master flat field images, and the reference star PNGs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Lowell Discovery Telescope (LDT)","Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/collection.xml","scraped_at":"2026-02-25T20:02:10.750193Z","keywords":["Lowell"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtddp::1.0","title":"DART Lowell Discovery Telescope (LDT) Derived Data Product Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the photometry summary tables, which are a PDS4 derived product.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Lowell Discovery Telescope (LDT)","Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/collection.xml","scraped_at":"2026-02-25T20:02:10.750197Z","keywords":["Lowell"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:data_ldtraw::1.0","title":"DART Lowell Discovery Telescope (LDT) Raw Data Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the Lowell Raw Images.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Lowell Discovery Telescope (LDT)","Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/collection.xml","scraped_at":"2026-02-25T20:02:10.750203Z","keywords":["Lowell"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_teleobs:document_ldt::1.0","title":"DART Lowell Document Collection","description":"This collection contains documents relevant to the Lowell Discovery Telescope ground observations in support of the Double Asteroid Redirection Test mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Lowell Discovery Telescope (LDT)","Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/collection.xml","scraped_at":"2026-02-25T20:02:10.750206Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_lightcurve_derived_parameters:data::1.0","title":"data collection for the \"ASTEROID LIGHTCURVE DERIVED DATA\" bundle","description":"This is the data collection for the ast_lightcurve_derived_parameters bundle. This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1913-01-01","stop_date":"2017-02-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/collection_ast_lightcurve_derived_parameters_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/collection_ast_lightcurve_derived_parameters_data.xml","scraped_at":"2026-02-25T20:02:10.750496Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_lightcurve_derived_parameters:document::1.0","title":"document collection for the \"ASTEROID LIGHTCURVE DERIVED DATA\" bundle","description":"This is the document collection for the ast_lightcurve_derived_parameters bundle. This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1913-01-01","stop_date":"2017-02-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/collection_ast_lightcurve_derived_parameters_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/collection_ast_lightcurve_derived_parameters_document.xml","scraped_at":"2026-02-25T20:02:10.750499Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-mb.reddy.spectra:document::1.0","title":"document collection for the \"REDDY MAIN BELT ASTEROID SPECTRA\" bundle","description":"This is the document collection for the gbo.ast-mb.reddy.spectra bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(101) Helena","(105) Artemis","(1086) Nata","(1124) Stroobantia","(113) Amalthea","(1145) Robelmonte","(12) Victoria","(121) Hermione","(1251) Hedera","(1284) Latvia","(130) Elektra","(1329) Eliane","(135) Hertha","(138) Tolosa","(1503) Kuopio","(1616) Filipoff","(1626) Sadeya","(167) Urda","(170) Maria","(1717) Arlon","(182) Elsa","(1830) Pogson","(184) Dejopeja","(1883) Rimito","(192) Nausikaa","(1929) Kollaa","(2) Pallas","(20) Massalia","(2011) Veteraniya","(2014) Vasilevskis","(2045) Peking","(213) Lilaea","(214) Aschera","(22) Kalliope","(233) Asterope","(243) Ida","(253) Mathilde","(255) Oppavia","(256) Walpurga","(264) Libussa","(273) Atropos","(276) Adelheid","(283) Emma","(289) Nenetta","(30) Urania","(306) Unitas","(308) Polyxo","(317) Roxane","(349) Dembowska","(37) Fides","(379) Huenna","(385) Ilmatar","(389) Industria","(4) Vesta","(403) Cyane","(41) Daphne","(419) Aurelia","(434) Hungaria","(44) Nysa","(442) Eichsfeldia","(446) Aeternitas","(45) Eugenia","(458) Hercynia","(470) Kilia","(472) Roma","(482) Petrina","(502) Sigune","(504) Cora","(51) Nemausa","(56) Melete","(569) Misa","(620) Drakonia","(63) Ausonia","(64) Angelina","(66) Maja","(663) Gerlinde","(670) Ottegebe","(704) Interamnia","(741) Botolphia","(762) Pulcova","(809) Lundia","(84) Klio","(858) El Djezair","(863) Benkoela","(87) Sylvia","(872) Holda","(877) Walkure","(9) Metis","(951) Gaspra","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2001-03-11","stop_date":"2012-06-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/collection_gbo.ast-mb.reddy.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/collection_gbo.ast-mb.reddy.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750508Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-mb.reddy.spectra:data::1.0","title":"data collection for the \"REDDY MAIN BELT ASTEROID SPECTRA\" bundle","description":"This is the data collection for the gbo.ast-mb.reddy.spectra bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(101) Helena","(105) Artemis","(1086) Nata","(1124) Stroobantia","(113) Amalthea","(1145) Robelmonte","(12) Victoria","(121) Hermione","(1251) Hedera","(1284) Latvia","(130) Elektra","(1329) Eliane","(135) Hertha","(138) Tolosa","(1503) Kuopio","(1616) Filipoff","(1626) Sadeya","(167) Urda","(170) Maria","(1717) Arlon","(182) Elsa","(1830) Pogson","(184) Dejopeja","(1883) Rimito","(192) Nausikaa","(1929) Kollaa","(2) Pallas","(20) Massalia","(2011) Veteraniya","(2014) Vasilevskis","(2045) Peking","(213) Lilaea","(214) Aschera","(22) Kalliope","(233) Asterope","(243) Ida","(253) Mathilde","(255) Oppavia","(256) Walpurga","(264) Libussa","(273) Atropos","(276) Adelheid","(283) Emma","(289) Nenetta","(30) Urania","(306) Unitas","(308) Polyxo","(317) Roxane","(349) Dembowska","(37) Fides","(379) Huenna","(385) Ilmatar","(389) Industria","(4) Vesta","(403) Cyane","(41) Daphne","(419) Aurelia","(434) Hungaria","(44) Nysa","(442) Eichsfeldia","(446) Aeternitas","(45) Eugenia","(458) Hercynia","(470) Kilia","(472) Roma","(482) Petrina","(502) Sigune","(504) Cora","(51) Nemausa","(56) Melete","(569) Misa","(620) Drakonia","(63) Ausonia","(64) Angelina","(66) Maja","(663) Gerlinde","(670) Ottegebe","(704) Interamnia","(741) Botolphia","(762) Pulcova","(809) Lundia","(84) Klio","(858) El Djezair","(863) Benkoela","(87) Sylvia","(872) Holda","(877) Walkure","(9) Metis","(951) Gaspra","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2001-03-11","stop_date":"2012-06-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/collection_gbo.ast-mb.reddy.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/collection_gbo.ast-mb.reddy.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750516Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.2mass.phot:document::1.0","title":"document collection for the \"2MASS ASTEROID AND COMET SURVEY\" bundle","description":"This is the document collection for the gbo.ast.2mass.phot bundle. This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2MASS Camera - North","2MASS 1.3m Telescope at Fred L. Whipple Observatory","2MASS Camera - South","2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"],"instrument_hosts":["Fred L. Whipple Observatory","Cerro Tololo Inter-American Observatory"],"data_types":["Document"],"start_date":"1997-06-07","stop_date":"2001-02-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/collection_gbo.ast.2mass.phot_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/collection_gbo.ast.2mass.phot_document.xml","scraped_at":"2026-02-25T20:02:10.750521Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.2mass.phot:data::1.0","title":"data collection for the \"2MASS ASTEROID AND COMET SURVEY\" bundle","description":"This is the data collection for the gbo.ast.2mass.phot bundle. This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2MASS Camera - North","2MASS 1.3m Telescope at Fred L. Whipple Observatory","2MASS Camera - South","2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"],"instrument_hosts":["Fred L. Whipple Observatory","Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1997-06-07","stop_date":"2001-02-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/collection_gbo.ast.2mass.phot_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/collection_gbo.ast.2mass.phot_data.xml","scraped_at":"2026-02-25T20:02:10.750526Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:tno-centaur_diam-albedo-density:data::1.0","title":"TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0","description":"This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1986-01-01","stop_date":"2018-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/collection_tno-centaur_diam-albedo-density_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/collection_tno-centaur_diam-albedo-density_data.xml","scraped_at":"2026-02-25T20:02:10.750529Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:tno-centaur_diam-albedo-density:document::1.0","title":"TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0","description":"This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1986-01-01","stop_date":"2018-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/collection_tno-centaur_diam-albedo-density_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/collection_tno-centaur_diam-albedo-density_document.xml","scraped_at":"2026-02-25T20:02:10.750534Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.polarimetry:document::1.0","title":"document collection for the \"POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS\" bundle","description":"This is the document collection for the compil.tno-centaur.polarimetry bundle. The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)","8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory","Sanglok Observatory Photometer-Polarimeter","RCC Richey-Chretien Telescope at Institute of Astrophysics","KPNO Single Channel Polarimeter","1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory","McDonald Observatory Linear Polarimeter","2.1-m Struve Warner &"],"instrument_hosts":["European Southern Observatory on Cerro Paranal","Institute of Astrophysics","Kitt Peak National Observatory","McDonald Observatory"],"data_types":["Document"],"start_date":"1972-04-08","stop_date":"2012-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/collection_compil.tno-centaur.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/collection_compil.tno-centaur.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.750540Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.polarimetry:data::1.0","title":"data collection for the \"POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS\" bundle","description":"This is the data collection for the compil.tno-centaur.polarimetry bundle. The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)","8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory","Sanglok Observatory Photometer-Polarimeter","RCC Richey-Chretien Telescope at Institute of Astrophysics","KPNO Single Channel Polarimeter","1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory","McDonald Observatory Linear Polarimeter","2.1-m Struve Warner &"],"instrument_hosts":["European Southern Observatory on Cerro Paranal","Institute of Astrophysics","Kitt Peak National Observatory","McDonald Observatory"],"data_types":["Data"],"start_date":"1972-04-08","stop_date":"2012-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/collection_compil.tno-centaur.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/collection_compil.tno-centaur.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.750545Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.dione.shape-model:document::1.0","title":"document collection for the \"GASKELL DIONE SHAPE MODEL\" bundle","description":"This is the document collection for the gaskell.dione.shape-model bundle. The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn IV (Dione)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Document"],"start_date":"2004-12-14","stop_date":"2010-12-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/collection_gaskell.dione.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/collection_gaskell.dione.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.750549Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.dione.shape-model:data::1.0","title":"data collection for the \"GASKELL DIONE SHAPE MODEL\" bundle","description":"This is the data collection for the gaskell.dione.shape-model bundle. The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn IV (Dione)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Data"],"start_date":"2004-12-14","stop_date":"2010-12-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/collection_gaskell.dione.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/collection_gaskell.dione.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.750553Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.mimas.shape-model:document::1.0","title":"document collection for the \"GASKELL MIMAS SHAPE MODEL\" bundle","description":"This is the document collection for the gaskell.mimas.shape-model bundle. The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS","VOYAGER"],"targets":["Saturn I (Mimas)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","VOYAGER 1","CASSINI ORBITER"],"data_types":["Document"],"start_date":"1980-11-12","stop_date":"2011-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/collection_gaskell.mimas.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/collection_gaskell.mimas.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.750557Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.mimas.shape-model:data::1.0","title":"data collection for the \"GASKELL MIMAS SHAPE MODEL\" bundle","description":"This is the data collection for the gaskell.mimas.shape-model bundle. The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS","VOYAGER"],"targets":["Saturn I (Mimas)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","VOYAGER 1","CASSINI ORBITER"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"2011-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/collection_gaskell.mimas.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/collection_gaskell.mimas.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.750561Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.phoebe.shape-model:document::1.0","title":"document collection for the \"GASKELL PHOEBE SHAPE MODEL\" bundle","description":"This is the document collection for the gaskell.phoebe.shape-model bundle. The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn IX (Phoebe)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Document"],"start_date":"2004-06-11","stop_date":"2004-06-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/collection_gaskell.phoebe.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/collection_gaskell.phoebe.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.750565Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.phoebe.shape-model:data::1.0","title":"data collection for the \"GASKELL PHOEBE SHAPE MODEL\" bundle","description":"This is the data collection for the gaskell.phoebe.shape-model bundle. The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn IX (Phoebe)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Data"],"start_date":"2004-06-11","stop_date":"2004-06-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/collection_gaskell.phoebe.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/collection_gaskell.phoebe.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.750570Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.tethys.shape-model:document::1.0","title":"document collection for the \"GASKELL TETHYS SHAPE MODEL\" bundle","description":"This is the document collection for the gaskell.tethys.shape-model bundle. The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn III (Tethys)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Document"],"start_date":"2004-10-28","stop_date":"2010-08-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/collection_gaskell.tethys.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/collection_gaskell.tethys.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.750574Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.tethys.shape-model:data::1.0","title":"data collection for the \"GASKELL TETHYS SHAPE MODEL\" bundle","description":"This is the data collection for the gaskell.tethys.shape-model bundle. The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn III (Tethys)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Data"],"start_date":"2004-10-28","stop_date":"2010-08-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/collection_gaskell.tethys.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/collection_gaskell.tethys.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.750578Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.smass.spectra:data::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0","description":"The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(541) Deborah","(4179) Toutatis","(1166) Sakuntala","(38) Leda","(495) Eulalia","(808) Merxia","(234) Barbara","(7341) 1991 VK","(631) Philippina","(319) Leona","(3494) Purplemountain","(4606) Saheki","(3748) Tatum","(111) Ate","(2645) Daphneplane","(297) Caecilia","(314) Rosalia","(3321) Dasha","(5143) Heracles","(169) Zelia","(4038) Kristina","(86) Semele","(2538) Vanderlinden","(4031) Mueller","(722) Frieda","(509) Iolanda","(126) Velleda","(4219) Nakamura","(1451) Grano","(28) Bellona","(39) Laetitia","(8) Flora","(415690) 1992 UB","(3935) Toatenmongakkai","1991 XB","(339) Dorothea","(36) Atalante","(4165) Didkovskij","(4640) Hara","(248) Lameia","(2091) Sampo","(374) Burgundia","(481) Emita","(702) Alauda","(3220) Murayama","(402) Chloe","(6) Hebe","(32) Pomona","(2365) Interkosmos","(239) Adrastea","(204) Kallisto","(3332) Raksha","(3760) Poutanen","(54) Alexandra","(4370) Dickens","(4156) Okadanoboru","(4373) Crespo","(1375) Alfreda","(471) Papagena","(511) Davida","(1697) Koskenniemi","(3578) Carestia","(470) Kilia","(137) Meliboea","(2923) Schuyler","(384) Burdigala","(4104) Alu","(61) Danae","(3528) Counselman","(2074) Shoemaker","(3167) Babcock","(10) Hygiea","(2174) Asmodeus","(2299) Hanko","(4761) Urrutia","(480) Hansa","(55) Pandora","(1626) Sadeya","(2215) Sichuan","(1279) Uganda","(2775) Odishaw","(4085) Weir","(3155) Lee","(3915) Fukushima","(8176) 1991 WA","(529) Preziosa","(4353) Onizaki","(4635) Rimbaud","(653) Berenike","(2259) Sofievka","(243) Ida","(416) Vaticana","(737) Arequipa","(2140) Kemerovo","(3759) Piironen","(138) Tolosa","(1534) Nasi","(803) Picka","(72) Feronia","(1577) Reiss","(1325) Inanda","(2558) Viv","(2442) Corbett","(3677) Magnusson","(371) Bohemia","(1772) Gagarin","(3381) Mikkola","(4956) Noymer","(582) Olympia","(1143) Odysseus","(134) Sophrosyne","(2590) Mourao","(639) Latona","(350) Ornamenta","(3792) Preston","(2070) Humason","(128) Nemesis","(4) Vesta","(441) Bathilde","(230) Athamantis","(2107) Ilmari","(256) Walpurga","(43) Ariadne","(519) Sylvania","(3657) Ermolova","(1906) Naef","(2444) Lederle","(599) Luisa","(2908) Shimoyama","(185) Eunike","(2011) Veteraniya","(1653) Yakhontovia","(14) Irene","(196) Philomela","(4006) Sandler","(1145) Robelmonte","(2078) Nanking","(235) Carolina","(787) Moskva","(2599) Veseli","(2965) Surikov","(879) Ricarda","(2130) Evdokiya","(1393) Sofala","(3431) Nakano","(1749) Telamon","(3559) Violaumayer","(7474) 1992 TC","(149) Medusa","(82) Alkmene","(22) Kalliope","(1198) Atlantis","(1501) Baade","(7) Iris","(3740) Menge","(1712) Angola","(245) Vera","(4062) Schiaparelli","(4376) Shigemori","(4215) Kamo","(4562) Poleungkuk","(3268) Desanctis","(131) Vala","(788) Hohensteina","(1584) Fuji","(918) Itha","(1110) Jaroslawa","(116) Sirona","(3501) Olegiya","(4159) Freeman","(518) Halawe","(88) Thisbe","(2420) Ciurlionis","(5065) Johnstone","(1967) Menzel","(65706) 1992 NA","(42) Isis","(430) Hybris","(4440) Tchantches","(2060) Chiron","(512) Taurinensis","(68) Leto","(3944) Halliday","(3158) Anga","(446) Aeternitas","(2159) Kukkamaki","(3674) Erbisbuhl","(1646) Rosseland","(2204) Lyyli","(4005) Dyagilev","(2024) Mclaughlin","(346) Hermentaria","(292) Ludovica","(456) Abnoba","(1358) Gaika","(1892) Lucienne","(3963) Paradzhanov","(1722) Goffin","(4546) Franck","(1679) Nevanlinna","(1302) Werra","(2327) Gershberg","(290) Bruna","(1934) Jeffers","(354) Eleonora","(1781) Vanbiesbroeck","(1084) Tamariwa","(1478) Vihuri","(5145) Pholus","(1257) Mora","(1658) Innes","(4673) Bortle","(3231) Mila","(2728) Yatskiv","(724) Hapag","(1607) Mavis","(1463) Nordenmarkia","(218) Bianca","(1264) Letaba","(2966) Korsunia","(1995) Hajek","(4282) Endate","(1651) Behrens","(2128) Wetherill","(291) Alice","(4939) Scovil","(1289) Kutaissi","(3523) Arina","(2143) Jimarnold","(25) Phocaea","(563) Suleika","(774) Armor","(2790) Needham","(289) Nenetta","(2403) Sumava","(1063) Aquilegia","(1854) Skvortsov","(2014) Vasilevskis","(4145) Maximova","(915) Cosette","(73) Klytia","(158) Koronis","(1725) Crao","Multiple Asteroids","(1471) Tornio","(231) Vindobona","(3109) Machin","(683) Lanzia","(1807) Slovakia","(2440) Educatio","(3869) Norton","(3285) Ruthwolfe","(2149) Schwambraniya","(1165) Imprinetta","(29) Amphitrite","(2503) Liaoning","(1929) Kollaa","(349) Dembowska","(237) Coelestina","(3586) Vasnetsov","(71) Niobe","(1907) Rudneva","(1933) Tinchen","(1480) Aunus","(2119) Schwall","(467) Laura","(477) Italia","(3968) Koptelov","(1743) Schmidt","(53) Kalypso","(2017) Wesson","(811) Nauheima","(345) Tercidina","(211) Isolda","(863) Benkoela","(2253) Espinette","(1144) Oda","(157) Dejanira","(4002) Shinagawa","(4025) Ridley","(720) Bohlinia","(3628) Boznemcova","(550) Senta","(851) Zeissia","(5118) Elnapoul","(4510) Shawna","(186) Celuta","(18) Melpomene","(3354) Mcnair","(1379) Lomonosowa","(2920) Automedon","(287) Nephthys","(752) Sulamitis","(474) Prudentia","(900) Rosalinde","(221) Eos","(1071) Brita","(11066) Sigurd","(951) Gaspra","(1273) Helma","(1518) Rovaniemi","(732) Tjilaki","(2946) Muchachos","(813) Baumeia","(167) Urda","(2105) Gudy","(3665) Fitzgerald","(1628) Strobel","(675) Ludmilla","(3153) Lincoln","(4147) Lennon","(124) Alkeste","(2113) Ehrdni","(4948) Hideonishimura","(3999) Aristarchus","(3) Juno","(2098) Zyskin"],"instruments":["2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory"],"data_types":["Data"],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/collection_gbo.ast.smass.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/collection_gbo.ast.smass.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750597Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.smass.spectra:document::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0","description":"The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(541) Deborah","(4179) Toutatis","(1166) Sakuntala","(38) Leda","(495) Eulalia","(808) Merxia","(234) Barbara","(7341) 1991 VK","(631) Philippina","(319) Leona","(3494) Purplemountain","(4606) Saheki","(3748) Tatum","(111) Ate","(2645) Daphneplane","(297) Caecilia","(314) Rosalia","(3321) Dasha","(5143) Heracles","(169) Zelia","(4038) Kristina","(86) Semele","(2538) Vanderlinden","(4031) Mueller","(722) Frieda","(509) Iolanda","(126) Velleda","(4219) Nakamura","(1451) Grano","(28) Bellona","(39) Laetitia","(8) Flora","(415690) 1992 UB","(3935) Toatenmongakkai","1991 XB","(339) Dorothea","(36) Atalante","(4165) Didkovskij","(4640) Hara","(248) Lameia","(2091) Sampo","(374) Burgundia","(481) Emita","(702) Alauda","(3220) Murayama","(402) Chloe","(6) Hebe","(32) Pomona","(2365) Interkosmos","(239) Adrastea","(204) Kallisto","(3332) Raksha","(3760) Poutanen","(54) Alexandra","(4370) Dickens","(4156) Okadanoboru","(4373) Crespo","(1375) Alfreda","(471) Papagena","(511) Davida","(1697) Koskenniemi","(3578) Carestia","(470) Kilia","(137) Meliboea","(2923) Schuyler","(384) Burdigala","(4104) Alu","(61) Danae","(3528) Counselman","(2074) Shoemaker","(3167) Babcock","(10) Hygiea","(2174) Asmodeus","(2299) Hanko","(4761) Urrutia","(480) Hansa","(55) Pandora","(1626) Sadeya","(2215) Sichuan","(1279) Uganda","(2775) Odishaw","(4085) Weir","(3155) Lee","(3915) Fukushima","(8176) 1991 WA","(529) Preziosa","(4353) Onizaki","(4635) Rimbaud","(653) Berenike","(2259) Sofievka","(243) Ida","(416) Vaticana","(737) Arequipa","(2140) Kemerovo","(3759) Piironen","(138) Tolosa","(1534) Nasi","(803) Picka","(72) Feronia","(1577) Reiss","(1325) Inanda","(2558) Viv","(2442) Corbett","(3677) Magnusson","(371) Bohemia","(1772) Gagarin","(3381) Mikkola","(4956) Noymer","(582) Olympia","(1143) Odysseus","(134) Sophrosyne","(2590) Mourao","(639) Latona","(350) Ornamenta","(3792) Preston","(2070) Humason","(128) Nemesis","(4) Vesta","(441) Bathilde","(230) Athamantis","(2107) Ilmari","(256) Walpurga","(43) Ariadne","(519) Sylvania","(3657) Ermolova","(1906) Naef","(2444) Lederle","(599) Luisa","(2908) Shimoyama","(185) Eunike","(2011) Veteraniya","(1653) Yakhontovia","(14) Irene","(196) Philomela","(4006) Sandler","(1145) Robelmonte","(2078) Nanking","(235) Carolina","(787) Moskva","(2599) Veseli","(2965) Surikov","(879) Ricarda","(2130) Evdokiya","(1393) Sofala","(3431) Nakano","(1749) Telamon","(3559) Violaumayer","(7474) 1992 TC","(149) Medusa","(82) Alkmene","(22) Kalliope","(1198) Atlantis","(1501) Baade","(7) Iris","(3740) Menge","(1712) Angola","(245) Vera","(4062) Schiaparelli","(4376) Shigemori","(4215) Kamo","(4562) Poleungkuk","(3268) Desanctis","(131) Vala","(788) Hohensteina","(1584) Fuji","(918) Itha","(1110) Jaroslawa","(116) Sirona","(3501) Olegiya","(4159) Freeman","(518) Halawe","(88) Thisbe","(2420) Ciurlionis","(5065) Johnstone","(1967) Menzel","(65706) 1992 NA","(42) Isis","(430) Hybris","(4440) Tchantches","(2060) Chiron","(512) Taurinensis","(68) Leto","(3944) Halliday","(3158) Anga","(446) Aeternitas","(2159) Kukkamaki","(3674) Erbisbuhl","(1646) Rosseland","(2204) Lyyli","(4005) Dyagilev","(2024) Mclaughlin","(346) Hermentaria","(292) Ludovica","(456) Abnoba","(1358) Gaika","(1892) Lucienne","(3963) Paradzhanov","(1722) Goffin","(4546) Franck","(1679) Nevanlinna","(1302) Werra","(2327) Gershberg","(290) Bruna","(1934) Jeffers","(354) Eleonora","(1781) Vanbiesbroeck","(1084) Tamariwa","(1478) Vihuri","(5145) Pholus","(1257) Mora","(1658) Innes","(4673) Bortle","(3231) Mila","(2728) Yatskiv","(724) Hapag","(1607) Mavis","(1463) Nordenmarkia","(218) Bianca","(1264) Letaba","(2966) Korsunia","(1995) Hajek","(4282) Endate","(1651) Behrens","(2128) Wetherill","(291) Alice","(4939) Scovil","(1289) Kutaissi","(3523) Arina","(2143) Jimarnold","(25) Phocaea","(563) Suleika","(774) Armor","(2790) Needham","(289) Nenetta","(2403) Sumava","(1063) Aquilegia","(1854) Skvortsov","(2014) Vasilevskis","(4145) Maximova","(915) Cosette","(73) Klytia","(158) Koronis","(1725) Crao","Multiple Asteroids","(1471) Tornio","(231) Vindobona","(3109) Machin","(683) Lanzia","(1807) Slovakia","(2440) Educatio","(3869) Norton","(3285) Ruthwolfe","(2149) Schwambraniya","(1165) Imprinetta","(29) Amphitrite","(2503) Liaoning","(1929) Kollaa","(349) Dembowska","(237) Coelestina","(3586) Vasnetsov","(71) Niobe","(1907) Rudneva","(1933) Tinchen","(1480) Aunus","(2119) Schwall","(467) Laura","(477) Italia","(3968) Koptelov","(1743) Schmidt","(53) Kalypso","(2017) Wesson","(811) Nauheima","(345) Tercidina","(211) Isolda","(863) Benkoela","(2253) Espinette","(1144) Oda","(157) Dejanira","(4002) Shinagawa","(4025) Ridley","(720) Bohlinia","(3628) Boznemcova","(550) Senta","(851) Zeissia","(5118) Elnapoul","(4510) Shawna","(186) Celuta","(18) Melpomene","(3354) Mcnair","(1379) Lomonosowa","(2920) Automedon","(287) Nephthys","(752) Sulamitis","(474) Prudentia","(900) Rosalinde","(221) Eos","(1071) Brita","(11066) Sigurd","(951) Gaspra","(1273) Helma","(1518) Rovaniemi","(732) Tjilaki","(2946) Muchachos","(813) Baumeia","(167) Urda","(2105) Gudy","(3665) Fitzgerald","(1628) Strobel","(675) Ludmilla","(3153) Lincoln","(4147) Lennon","(124) Alkeste","(2113) Ehrdni","(4948) Hideonishimura","(3999) Aristarchus","(3) Juno","(2098) Zyskin"],"instruments":["2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory"],"data_types":["Document"],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/collection_gbo.ast.smass.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/collection_gbo.ast.smass.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750616Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.7-color-survey:document::1.0","title":"document collection for the \"SEVEN COLOR ASTEROID SURVEY\" bundle","description":"This is the document collection for the gbo.ast.7-color-survey bundle. The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Primo I Photometer","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"1992-07-01","stop_date":"1994-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/collection_gbo.ast.7-color-survey_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/collection_gbo.ast.7-color-survey_document.xml","scraped_at":"2026-02-25T20:02:10.750622Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.7-color-survey:data::1.0","title":"data collection for the \"SEVEN COLOR ASTEROID SURVEY\" bundle","description":"This is the data collection for the gbo.ast.7-color-survey bundle. The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Primo I Photometer","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"1992-07-01","stop_date":"1994-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/collection_gbo.ast.7-color-survey_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/collection_gbo.ast.7-color-survey_data.xml","scraped_at":"2026-02-25T20:02:10.750626Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.satellite.polarimetry:document::1.0","title":"document collection for the \"POLARIMETRY OF PLANETARY SATELLITES \" bundle","description":"This is the document collection for the compil.satellite.polarimetry bundle. This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Satellites"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1966-12-12","stop_date":"2011-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/collection_compil.satellite.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/collection_compil.satellite.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.750629Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.satellite.polarimetry:data::1.0","title":"data collection for the \"POLARIMETRY OF PLANETARY SATELLITES \" bundle","description":"This is the data collection for the compil.satellite.polarimetry bundle. This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Satellites"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1966-12-12","stop_date":"2011-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/collection_compil.satellite.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/collection_compil.satellite.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.750634Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.pluto-charon.mutual-events:document::1.0","title":"document collection for the \"PLUTO-CHARON MUTUAL EVENTS\" bundle","description":"This is the document collection for the gbo.pluto-charon.mutual-events bundle. Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(134340) Pluto"],"instruments":["Tinsley Photometer","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory","Tinsley Photometer","61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory","McDonald P45a Two-Channel Photometer","2.7m Telescope","McDonald P45a Two-Channel Photometer","2.1-m Struve Warner &","McDonald P45a Two-Channel Photometer","91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory","Literature Compilation"],"instrument_hosts":["Mauna Kea Observatory","Mauna Kea Observatory","McDonald Observatory","McDonald Observatory","McDonald Observatory"],"data_types":["Document"],"start_date":"1985-01-16","stop_date":"1990-09-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/collection_gbo.pluto-charon.mutual-events_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/collection_gbo.pluto-charon.mutual-events_document.xml","scraped_at":"2026-02-25T20:02:10.750640Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.pluto-charon.mutual-events:data::1.0","title":"data collection for the \"PLUTO-CHARON MUTUAL EVENTS\" bundle","description":"This is the data collection for the gbo.pluto-charon.mutual-events bundle. Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(134340) Pluto"],"instruments":["Tinsley Photometer","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory","Tinsley Photometer","61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory","McDonald P45a Two-Channel Photometer","2.7m Telescope","McDonald P45a Two-Channel Photometer","2.1-m Struve Warner &","McDonald P45a Two-Channel Photometer","91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory","Literature Compilation"],"instrument_hosts":["Mauna Kea Observatory","Mauna Kea Observatory","McDonald Observatory","McDonald Observatory","McDonald Observatory"],"data_types":["Data"],"start_date":"1985-01-16","stop_date":"1990-09-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/collection_gbo.pluto-charon.mutual-events_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/collection_gbo.pluto-charon.mutual-events_data.xml","scraped_at":"2026-02-25T20:02:10.750645Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.ecas.phot:document::1.0","title":"document collection for the \"EIGHT COLOR ASTEROID SURVEY\" bundle","description":"This is the document collection for the gbo.ast.ecas.phot bundle. This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1979-05-31","stop_date":"1983-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/collection_gbo.ast.ecas.phot_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/collection_gbo.ast.ecas.phot_document.xml","scraped_at":"2026-02-25T20:02:10.750649Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.ecas.phot:data::1.0","title":"data collection for the \"EIGHT COLOR ASTEROID SURVEY\" bundle","description":"This is the data collection for the gbo.ast.ecas.phot bundle. This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1979-05-31","stop_date":"1983-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/collection_gbo.ast.ecas.phot_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/collection_gbo.ast.ecas.phot_data.xml","scraped_at":"2026-02-25T20:02:10.750653Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.albedos:document::1.0","title":"document collection for the \"ASTEROID ALBEDOS\" bundle","description":"This is the document collection for the compil.ast.albedos bundle. This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1973-01-01","stop_date":"2001-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/collection_compil.ast.albedos_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/collection_compil.ast.albedos_document.xml","scraped_at":"2026-02-25T20:02:10.750656Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.albedos:data::1.0","title":"data collection for the \"ASTEROID ALBEDOS\" bundle","description":"This is the data collection for the compil.ast.albedos bundle. This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1973-01-01","stop_date":"2001-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/collection_compil.ast.albedos_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/collection_compil.ast.albedos_data.xml","scraped_at":"2026-02-25T20:02:10.750660Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.magnitude-slope:document::1.0","title":"document collection for the \"ASTEROID ABSOLUTE MAGNITUDES\" bundle","description":"This is the document collection for the compil.ast.magnitude-slope bundle. Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1990-12-02","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/collection_compil.ast.magnitude-slope_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/collection_compil.ast.magnitude-slope_document.xml","scraped_at":"2026-02-25T20:02:10.750663Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.magnitude-slope:data::1.0","title":"data collection for the \"ASTEROID ABSOLUTE MAGNITUDES\" bundle","description":"This is the data collection for the compil.ast.magnitude-slope bundle. Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1990-12-02","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/collection_compil.ast.magnitude-slope_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/collection_compil.ast.magnitude-slope_data.xml","scraped_at":"2026-02-25T20:02:10.750667Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.names:document::1.0","title":"document collection for the \"ASTEROID NAMES AND DISCOVERY\" bundle","description":"This is the document collection for the compil.ast.names bundle. This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1801-01-01","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/collection_compil.ast.names_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/collection_compil.ast.names_document.xml","scraped_at":"2026-02-25T20:02:10.750671Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.names:data::1.0","title":"data collection for the \"ASTEROID NAMES AND DISCOVERY\" bundle","description":"This is the data collection for the compil.ast.names bundle. This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1801-01-01","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/collection_compil.ast.names_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/collection_compil.ast.names_data.xml","scraped_at":"2026-02-25T20:02:10.750674Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.radar-properties:document::1.0","title":"document collection for the \"ASTEROID RADAR\" bundle","description":"This is the document collection for the compil.ast.radar-properties bundle. This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1968-01-01","stop_date":"2011-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/collection_compil.ast.radar-properties_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/collection_compil.ast.radar-properties_document.xml","scraped_at":"2026-02-25T20:02:10.750677Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.radar-properties:data::1.0","title":"data collection for the \"ASTEROID RADAR\" bundle","description":"This is the data collection for the compil.ast.radar-properties bundle. This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1968-01-01","stop_date":"2011-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/collection_compil.ast.radar-properties_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/collection_compil.ast.radar-properties_data.xml","scraped_at":"2026-02-25T20:02:10.750681Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.jpl.radar.shape_models:data::1.0","title":"Radar shape models of asteroids compiled by Lawrence V1.0","description":"This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(33342) 1998 WT24","(10115) 1992 SK","(276049) 2002 CE26","(29075) 1950 DA","(341843) 2008 EV5","(54509) YORP","(136617) 1994 CC","(2100) Ra-Shalom","(4486) Mithra","(4660) Nereus","(66391) 1999 KW4"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":["Data"],"start_date":"1999-02-07","stop_date":"2009-06-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/collection_gbo.ast.jpl.radar.shape_models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/collection_gbo.ast.jpl.radar.shape_models_data.xml","scraped_at":"2026-02-25T20:02:10.750687Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.jpl.radar.shape_models:document::1.0","title":"Radar shape models of asteroids compiled by Lawrence V1.0","description":"This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(33342) 1998 WT24","(10115) 1992 SK","(276049) 2002 CE26","(29075) 1950 DA","(341843) 2008 EV5","(54509) YORP","(136617) 1994 CC","(2100) Ra-Shalom","(4486) Mithra","(4660) Nereus","(66391) 1999 KW4"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":["Document"],"start_date":"1999-02-07","stop_date":"2009-06-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/collection_gbo.ast.jpl.radar.shape_models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/collection_gbo.ast.jpl.radar.shape_models_document.xml","scraped_at":"2026-02-25T20:02:10.750693Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.ubv-photometry:document::1.0","title":"document collection for the \"UBV MEAN ASTEROID COLORS\" bundle","description":"This is the document collection for the compil.ast.ubv-photometry bundle. This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1951-01-01","stop_date":"1989-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/collection_compil.ast.ubv-photometry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/collection_compil.ast.ubv-photometry_document.xml","scraped_at":"2026-02-25T20:02:10.750697Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.ubv-photometry:data::1.0","title":"data collection for the \"UBV MEAN ASTEROID COLORS\" bundle","description":"This is the data collection for the compil.ast.ubv-photometry bundle. This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1951-01-01","stop_date":"1989-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/collection_compil.ast.ubv-photometry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/collection_compil.ast.ubv-photometry_data.xml","scraped_at":"2026-02-25T20:02:10.750701Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.magnitude-phase:document::1.0","title":"document collection for the \"KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS\" bundle","description":"This is the document collection for the compil.ast.magnitude-phase bundle. A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1978-04-28","stop_date":"2008-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/collection_compil.ast.magnitude-phase_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/collection_compil.ast.magnitude-phase_document.xml","scraped_at":"2026-02-25T20:02:10.750705Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.magnitude-phase:data::1.0","title":"data collection for the \"KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS\" bundle","description":"This is the data collection for the compil.ast.magnitude-phase bundle. A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1978-04-28","stop_date":"2008-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/collection_compil.ast.magnitude-phase_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/collection_compil.ast.magnitude-phase_data.xml","scraped_at":"2026-02-25T20:02:10.750708Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.colors:document::1.0","title":"document collection for the \"TNO AND CENTAUR COLORS\" bundle","description":"This is the document collection for the compil.tno-centaur.colors bundle. This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Multiple Comets"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1985-09-23","stop_date":"2014-03-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/collection_compil.tno-centaur.colors_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/collection_compil.tno-centaur.colors_document.xml","scraped_at":"2026-02-25T20:02:10.750712Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.colors:data::1.0","title":"data collection for the \"TNO AND CENTAUR COLORS\" bundle","description":"This is the data collection for the compil.tno-centaur.colors bundle. This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Multiple Comets"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1985-09-23","stop_date":"2014-03-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/collection_compil.tno-centaur.colors_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/collection_compil.tno-centaur.colors_data.xml","scraped_at":"2026-02-25T20:02:10.750716Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.lightcurves:document::1.0","title":"document collection for the \"TRANS-NEPTUNIAN OBJECT LIGHTCURVES\" bundle","description":"This is the document collection for the compil.tno-centaur.lightcurves bundle. This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(19521) Chaos","(79360) Sila-Nunam","(91133) 1998 HK151","1998 XY95","(40314) 1999 KR16","(47932) 2000 GN171","(150642) 2001 CZ31","(82155) 2001 FZ173","(38628) Huya","Multiple Asteroids","(15875) 1996 TP66","(19255) 1994 VK8","(19308) 1996 TO66","(26181) 1996 GQ21","(26375) 1999 DE9","(33128) 1998 BU48","(33340) 1998 VG44"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1997-08-27","stop_date":"2001-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/collection_compil.tno-centaur.lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/collection_compil.tno-centaur.lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.750720Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.tno-centaur.lightcurves:data::1.0","title":"data collection for the \"TRANS-NEPTUNIAN OBJECT LIGHTCURVES\" bundle","description":"This is the data collection for the compil.tno-centaur.lightcurves bundle. This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(19521) Chaos","(79360) Sila-Nunam","(91133) 1998 HK151","1998 XY95","(40314) 1999 KR16","(47932) 2000 GN171","(150642) 2001 CZ31","(82155) 2001 FZ173","(38628) Huya","Multiple Asteroids","(15875) 1996 TP66","(19255) 1994 VK8","(19308) 1996 TO66","(26181) 1996 GQ21","(26375) 1999 DE9","(33128) 1998 BU48","(33340) 1998 VG44"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1997-08-27","stop_date":"2001-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/collection_compil.tno-centaur.lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/collection_compil.tno-centaur.lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.750725Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.masses:document::1.0","title":"document collection for the \"ASTEROID MASSES\" bundle","description":"This is the document collection for the compil.ast.masses bundle. This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1991-01-01","stop_date":"2012-04-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/collection_compil.ast.masses_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/collection_compil.ast.masses_document.xml","scraped_at":"2026-02-25T20:02:10.750728Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.masses:data::1.0","title":"data collection for the \"ASTEROID MASSES\" bundle","description":"This is the data collection for the compil.ast.masses bundle. This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1991-01-01","stop_date":"2012-04-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/collection_compil.ast.masses_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/collection_compil.ast.masses_data.xml","scraped_at":"2026-02-25T20:02:10.750737Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.vilas.spectra:document::1.0","title":"document collection for the \"VILAS ASTEROID SPECTRA\" bundle","description":"This is the document collection for the gbo.ast.vilas.spectra bundle. This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(102) Miriam","(1036) Ganymed","(1162) Larissa","(1167) Dubiago","(1172) Aneas","(1208) Troilus","(121) Hermione","(130) Elektra","(134) Sophrosyne","(1368) Numidia","(1390) Abastumani","(142) Polana","(1467) Mashona","(1512) Oulu","(152) Atala","(153) Hilda","(165) Loreley","(17) Thetis","(1722) Goffin","(181) Eucharis","(1866) Sisyphus","(1867) Deiphobus","(187) Lamberta","(19) Fortuna","(190) Ismene","(2) Pallas","(2113) Ehrdni","(2241) Alcathous","(225) Henrietta","(2357) Phereclos","(2674) Pandarus","(276) Adelheid","(292) Ludovica","(31) Euphrosyne","(326) Tamara","(3288) Seleucus","(334) Chicago","(368) Haidea","(375) Ursula","(407) Arachne","(409) Aspasia","(41) Daphne","(420) Bertholda","(433) Eros","(466) Tisiphone","(483) Seppina","(495) Eulalia","(499) Venusia","(528) Rezia","(54) Alexandra","(559) Nanon","(566) Stereoskopia","(570) Kythera","(606) Brangane","(624) Hektor","(643) Scheherezade","(65) Cybele","(654) Zelinda","(66) Maja","(692) Hippodamia","(695) Bella","(709) Fringilla","(733) Mocia","(748) Simeisa","(76) Freia","(773) Irmintraud","(776) Berbericia","(797) Montana","(87) Sylvia","(877) Walkure","(884) Priamus","(908) Buda","(914) Palisana","(940) Kordula","Multiple Asteroids"],"instruments":["CTIO 1.5-meter Cassegrain Spectrograph","1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory","Fink Spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station","CTIO 1.0m 2DFrutti Spectrograph","1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory","Larson IHW spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"],"instrument_hosts":["Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station","Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station"],"data_types":["Document"],"start_date":"1982-02-04","stop_date":"1998-09-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/collection_gbo.ast.vilas.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/collection_gbo.ast.vilas.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750745Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.vilas.spectra:data::1.0","title":"data collection for the \"VILAS ASTEROID SPECTRA\" bundle","description":"This is the data collection for the gbo.ast.vilas.spectra bundle. This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(102) Miriam","(1036) Ganymed","(1162) Larissa","(1167) Dubiago","(1172) Aneas","(1208) Troilus","(121) Hermione","(130) Elektra","(134) Sophrosyne","(1368) Numidia","(1390) Abastumani","(142) Polana","(1467) Mashona","(1512) Oulu","(152) Atala","(153) Hilda","(165) Loreley","(17) Thetis","(1722) Goffin","(181) Eucharis","(1866) Sisyphus","(1867) Deiphobus","(187) Lamberta","(19) Fortuna","(190) Ismene","(2) Pallas","(2113) Ehrdni","(2241) Alcathous","(225) Henrietta","(2357) Phereclos","(2674) Pandarus","(276) Adelheid","(292) Ludovica","(31) Euphrosyne","(326) Tamara","(3288) Seleucus","(334) Chicago","(368) Haidea","(375) Ursula","(407) Arachne","(409) Aspasia","(41) Daphne","(420) Bertholda","(433) Eros","(466) Tisiphone","(483) Seppina","(495) Eulalia","(499) Venusia","(528) Rezia","(54) Alexandra","(559) Nanon","(566) Stereoskopia","(570) Kythera","(606) Brangane","(624) Hektor","(643) Scheherezade","(65) Cybele","(654) Zelinda","(66) Maja","(692) Hippodamia","(695) Bella","(709) Fringilla","(733) Mocia","(748) Simeisa","(76) Freia","(773) Irmintraud","(776) Berbericia","(797) Montana","(87) Sylvia","(877) Walkure","(884) Priamus","(908) Buda","(914) Palisana","(940) Kordula","Multiple Asteroids"],"instruments":["CTIO 1.5-meter Cassegrain Spectrograph","1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory","Fink Spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station","CTIO 1.0m 2DFrutti Spectrograph","1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory","Larson IHW spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"],"instrument_hosts":["Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station","Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station"],"data_types":["Data"],"start_date":"1982-02-04","stop_date":"1998-09-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/collection_gbo.ast.vilas.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/collection_gbo.ast.vilas.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750754Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-vesta.reddy.spectra:document::1.0","title":"document collection for the \"REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA\" bundle","description":"This is the document collection for the gbo.ast-vesta.reddy.spectra bundle. This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(4) Vesta"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2010-03-27","stop_date":"2010-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/collection_gbo.ast-vesta.reddy.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/collection_gbo.ast-vesta.reddy.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750759Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-vesta.reddy.spectra:data::1.0","title":"data collection for the \"REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA\" bundle","description":"This is the data collection for the gbo.ast-vesta.reddy.spectra bundle. This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(4) Vesta"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2010-03-27","stop_date":"2010-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/collection_gbo.ast-vesta.reddy.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/collection_gbo.ast-vesta.reddy.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750763Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.24-color-survey:document::1.0","title":"document collection for the \"24-COLOR ASTEROID SURVEY\" bundle","description":"This is the document collection for the gbo.ast.24-color-survey bundle. This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(1015) Christa","(1019) Strackea","(1025) Riema","(1036) Ganymed","(105) Artemis","(1055) Tynka","(1058) Grubba","(106) Dione","(1075) Helina","(108) Hecuba","(1088) Mitaka","(11) Parthenope","(110) Lydia","(1103) Sequoia","(113) Amalthea","(115) Thyra","(116) Sirona","(1162) Larissa","(1172) Aneas","(1173) Anchises","(119) Althaea","(1199) Geldonia","(12) Victoria","(1208) Troilus","(121) Hermione","(1212) Francette","(122) Gerda","(124) Alkeste","(1263) Varsavia","(128) Nemesis","(1284) Latvia","(129) Antigone","(13) Egeria","(130) Elektra","(1317) Silvretta","(1330) Spiridonia","(136) Austria","(1364) Safara","(139) Juewa","(14) Irene","(140) Siwa","(141) Lumen","(144) Vibilia","(1449) Virtanen","(145) Adeona","(149) Medusa","(1493) Sigrid","(15) Eunomia","(150) Nuwa","(1512) Oulu","(1529) Oterma","(156) Xanthippe","(1566) Icarus","(158) Koronis","(1580) Betulia","(1595) Tanga","(16) Psyche","(1620) Geographos","(1627) Ivar","(163) Erigone","(1636) Porter","(164) Eva","(1645) Waterfield","(1656) Suomi","(166) Rhodope","(167) Urda","(1685) Toro","(169) Zelia","(17) Thetis","(170) Maria","(1717) Arlon","(1727) Mette","(175) Andromache","(176) Iduna","(18) Melpomene","(181) Eucharis","(1830) Pogson","(185) Eunike","(1862) Apollo","(19) Fortuna","(1915) Quetzalcoatl","(192) Nausikaa","(194) Prokne","(196) Philomela","(197) Arete","(198) Ampella","(2) Pallas","(20) Massalia","(200) Dynamene","(208) Lacrimosa","(21) Lutetia","(210) Isabella","(2100) Ra-Shalom","(213) Lilaea","(216) Kleopatra","(217) Eudora","(22) Kalliope","(220) Stephania","(2201) Oljato","(221) Eos","(23) Thalia","(230) Athamantis","(236) Honoria","(24) Themis","(243) Ida","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(262) Valda","(264) Libussa","(268) Adorea","(27) Euterpe","(279) Thule","(28) Bellona","(281) Lucretia","(29) Amphitrite","(293) Brasilia","(3) Juno","(30) Urania","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(313) Chaldaea","(32) Pomona","(323) Brucia","(324) Bamberga","(325) Heidelberga","(326) Tamara","(335) Roberta","(337) Devosa","(338) Budrosa","(339) Dorothea","(34) Circe","(340) Eduarda","(341) California","(344) Desiderata","(345) Tercidina","(347) Pariana","(349) Dembowska","(354) Eleonora","(356) Liguria","(36) Atalante","(361) Bononia","(363) Padua","(365) Corduba","(37) Fides","(372) Palma","(374) Burgundia","(375) Ursula","(386) Siegena","(389) Industria","(39) Laetitia","(391) Ingeborg","(4) Vesta","(40) Harmonia","(402) Chloe","(403) Cyane","(409) Aspasia","(41) Daphne","(413) Edburga","(415) Palatia","(416) Vaticana","(419) Aurelia","(42) Isis","(423) Diotima","(426) Hippo","(43) Ariadne","(433) Eros","(434) Hungaria","(435) Ella","(439) Ohio","(44) Nysa","(441) Bathilde","(446) Aeternitas","(45) Eugenia","(453) Tea","(46) Hestia","(462) Eriphyla","(468) Lina","(471) Papagena","(472) Roma","(48) Doris","(481) Emita","(488) Kreusa","(490) Veritas","(496) Gryphia","(5) Astraea","(505) Cava","(51) Nemausa","(510) Mabella","(511) Davida","(513) Centesima","(52) Europa","(526) Jena","(53) Kalypso","(532) Herculina","(54) Alexandra","(554) Peraga","(558) Carmen","(560) Delila","(562) Salome","(563) Suleika","(574) Reginhild","(579) Sidonia","(5797) Bivoj","(58) Concordia","(582) Olympia","(584) Semiramis","(588) Achilles","(599) Luisa","(6) Hebe","(60) Echo","(613) Ginevra","(617) Patroclus","(62) Erato","(624) Hektor","(628) Christine","(63) Ausonia","(639) Latona","(64) Angelina","(648) Pippa","(65) Cybele","(654) Zelinda","(66) Maja","(660) Crescentia","(674) Rachele","(676) Melitta","(68) Leto","(69) Hesperia","(695) Bella","(696) Leonora","(7) Iris","(704) Interamnia","(71) Niobe","(712) Boliviana","(714) Ulula","(739) Mandeville","(741) Botolphia","(747) Winchester","(750) Oskar","(758) Mancunia","(760) Massinga","(770) Bali","(772) Tanete","(773) Irmintraud","(78) Diana","(781) Kartvelia","(782) Montefiore","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(8) Flora","(80) Sappho","(801) Helwerthia","(811) Nauheima","(82) Alkmene","(83) Beatrix","(839) Valborg","(84) Klio","(846) Lipperta","(85) Io","(858) El Djezair","(87) Sylvia","(88) Thisbe","(884) Priamus","(887) Alinda","(89) Julia","(895) Helio","(9) Metis","(90) Antiope","(909) Ulla","(911) Agamemnon","(92) Undina","(925) Alphonsina","(93) Minerva","(94) Aurora","(944) Hidalgo","(969) Leocadia","(97) Klotho","(976) Benjamina","Multiple Asteroids"],"instruments":["DUAL BEAM PHOTOMETER"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":"1981-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/collection_gbo.ast.24-color-survey_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/collection_gbo.ast.24-color-survey_document.xml","scraped_at":"2026-02-25T20:02:10.750779Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.24-color-survey:data::1.0","title":"data collection for the \"24-COLOR ASTEROID SURVEY\" bundle","description":"This is the data collection for the gbo.ast.24-color-survey bundle. This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(1015) Christa","(1019) Strackea","(1025) Riema","(1036) Ganymed","(105) Artemis","(1055) Tynka","(1058) Grubba","(106) Dione","(1075) Helina","(108) Hecuba","(1088) Mitaka","(11) Parthenope","(110) Lydia","(1103) Sequoia","(113) Amalthea","(115) Thyra","(116) Sirona","(1162) Larissa","(1172) Aneas","(1173) Anchises","(119) Althaea","(1199) Geldonia","(12) Victoria","(1208) Troilus","(121) Hermione","(1212) Francette","(122) Gerda","(124) Alkeste","(1263) Varsavia","(128) Nemesis","(1284) Latvia","(129) Antigone","(13) Egeria","(130) Elektra","(1317) Silvretta","(1330) Spiridonia","(136) Austria","(1364) Safara","(139) Juewa","(14) Irene","(140) Siwa","(141) Lumen","(144) Vibilia","(1449) Virtanen","(145) Adeona","(149) Medusa","(1493) Sigrid","(15) Eunomia","(150) Nuwa","(1512) Oulu","(1529) Oterma","(156) Xanthippe","(1566) Icarus","(158) Koronis","(1580) Betulia","(1595) Tanga","(16) Psyche","(1620) Geographos","(1627) Ivar","(163) Erigone","(1636) Porter","(164) Eva","(1645) Waterfield","(1656) Suomi","(166) Rhodope","(167) Urda","(1685) Toro","(169) Zelia","(17) Thetis","(170) Maria","(1717) Arlon","(1727) Mette","(175) Andromache","(176) Iduna","(18) Melpomene","(181) Eucharis","(1830) Pogson","(185) Eunike","(1862) Apollo","(19) Fortuna","(1915) Quetzalcoatl","(192) Nausikaa","(194) Prokne","(196) Philomela","(197) Arete","(198) Ampella","(2) Pallas","(20) Massalia","(200) Dynamene","(208) Lacrimosa","(21) Lutetia","(210) Isabella","(2100) Ra-Shalom","(213) Lilaea","(216) Kleopatra","(217) Eudora","(22) Kalliope","(220) Stephania","(2201) Oljato","(221) Eos","(23) Thalia","(230) Athamantis","(236) Honoria","(24) Themis","(243) Ida","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(262) Valda","(264) Libussa","(268) Adorea","(27) Euterpe","(279) Thule","(28) Bellona","(281) Lucretia","(29) Amphitrite","(293) Brasilia","(3) Juno","(30) Urania","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(313) Chaldaea","(32) Pomona","(323) Brucia","(324) Bamberga","(325) Heidelberga","(326) Tamara","(335) Roberta","(337) Devosa","(338) Budrosa","(339) Dorothea","(34) Circe","(340) Eduarda","(341) California","(344) Desiderata","(345) Tercidina","(347) Pariana","(349) Dembowska","(354) Eleonora","(356) Liguria","(36) Atalante","(361) Bononia","(363) Padua","(365) Corduba","(37) Fides","(372) Palma","(374) Burgundia","(375) Ursula","(386) Siegena","(389) Industria","(39) Laetitia","(391) Ingeborg","(4) Vesta","(40) Harmonia","(402) Chloe","(403) Cyane","(409) Aspasia","(41) Daphne","(413) Edburga","(415) Palatia","(416) Vaticana","(419) Aurelia","(42) Isis","(423) Diotima","(426) Hippo","(43) Ariadne","(433) Eros","(434) Hungaria","(435) Ella","(439) Ohio","(44) Nysa","(441) Bathilde","(446) Aeternitas","(45) Eugenia","(453) Tea","(46) Hestia","(462) Eriphyla","(468) Lina","(471) Papagena","(472) Roma","(48) Doris","(481) Emita","(488) Kreusa","(490) Veritas","(496) Gryphia","(5) Astraea","(505) Cava","(51) Nemausa","(510) Mabella","(511) Davida","(513) Centesima","(52) Europa","(526) Jena","(53) Kalypso","(532) Herculina","(54) Alexandra","(554) Peraga","(558) Carmen","(560) Delila","(562) Salome","(563) Suleika","(574) Reginhild","(579) Sidonia","(5797) Bivoj","(58) Concordia","(582) Olympia","(584) Semiramis","(588) Achilles","(599) Luisa","(6) Hebe","(60) Echo","(613) Ginevra","(617) Patroclus","(62) Erato","(624) Hektor","(628) Christine","(63) Ausonia","(639) Latona","(64) Angelina","(648) Pippa","(65) Cybele","(654) Zelinda","(66) Maja","(660) Crescentia","(674) Rachele","(676) Melitta","(68) Leto","(69) Hesperia","(695) Bella","(696) Leonora","(7) Iris","(704) Interamnia","(71) Niobe","(712) Boliviana","(714) Ulula","(739) Mandeville","(741) Botolphia","(747) Winchester","(750) Oskar","(758) Mancunia","(760) Massinga","(770) Bali","(772) Tanete","(773) Irmintraud","(78) Diana","(781) Kartvelia","(782) Montefiore","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(8) Flora","(80) Sappho","(801) Helwerthia","(811) Nauheima","(82) Alkmene","(83) Beatrix","(839) Valborg","(84) Klio","(846) Lipperta","(85) Io","(858) El Djezair","(87) Sylvia","(88) Thisbe","(884) Priamus","(887) Alinda","(89) Julia","(895) Helio","(9) Metis","(90) Antiope","(909) Ulla","(911) Agamemnon","(92) Undina","(925) Alphonsina","(93) Minerva","(94) Aurora","(944) Hidalgo","(969) Leocadia","(97) Klotho","(976) Benjamina","Multiple Asteroids"],"instruments":["DUAL BEAM PHOTOMETER"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":"1981-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/collection_gbo.ast.24-color-survey_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/collection_gbo.ast.24-color-survey_data.xml","scraped_at":"2026-02-25T20:02:10.750795Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra:document::1.0","title":"document collection for the \"SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS\" bundle","description":"This is the document collection for the gbo.ast-trojan.fornasier-etal.spectra bundle. This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1172) Aneas","(1173) Anchises","(18268) Dardanos","(1871) Astyanax","(192388) 1996 RD29","(192929) 2000 AT44","(2223) Sarpedon","(2357) Phereclos","(30698) Hippokoon","(3548) Eurybates","(4829) Sergestus","(5130) Ilioneus","(5511) Cloanthus","(6998) Tithonus","(9430) Erichthonios","(9818) Eurymachos","Multiple Asteroids","(105685) 2000 SC51","(11089) 1994 CS8","(111113) 2001 VK85","(11351) Leucus","(11488) 1988 RM11","(11663) 1997 GO24","(120453) 1988 RE12","(124729) 2001 SB173","(12921) 1998 WZ5","(13862) 1999 XT160","(14707) 2000 CC20","(15502) 1999 NV27","(15977) 1998 MA11","(163135) 2002 CT22","(163216) 2002 EN68","(17416) 1988 RR10","(18060) 1999 XJ156","(18137) 2000 OU30","(18493) Demoleon","(18940) 2000 QV49","(23549) Epicles","(23694) 1997 KZ3","(24233) 1999 XD94","(24341) 2000 AJ87","(24380) 2000 AA160","(24420) 2000 BU22","(24426) 2000 CR12","(24452) 2000 QU167","(24467) 2000 SS165","(25347) 1999 RQ116","(28958) 2001 CQ42","(31820) 1999 RT186","(31821) 1999 RK225","(32430) 2000 RQ83","(32615) 2001 QU277","(32794) 1989 UE5","(34785) 2001 RG87","(39285) 2001 BP75","(4035) 1986 WD","(43212) 2000 AL113","(47967) 2000 SL298","(48249) 2001 SY345","(48252) 2001 TL212","(51359) 2000 SC17","(53469) 2000 AX8","(56968) 2000 SA92","(65150) 2002 CA126","(65225) 2002 EK44","(6545) 1986 TR6","(7352) 1994 CO","(76804) 2000 QE","(84709) 2002 VW120","(9030) 1989 UX5","(99328) 2001 UY123"],"instruments":["Eso Multimode Instrument","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":["Document"],"start_date":"2002-11-09","stop_date":"2005-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/collection_gbo.ast-trojan.fornasier-etal.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/collection_gbo.ast-trojan.fornasier-etal.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750805Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra:data::1.0","title":"data collection for the \"SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS\" bundle","description":"This is the data collection for the gbo.ast-trojan.fornasier-etal.spectra bundle. This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1172) Aneas","(1173) Anchises","(18268) Dardanos","(1871) Astyanax","(192388) 1996 RD29","(192929) 2000 AT44","(2223) Sarpedon","(2357) Phereclos","(30698) Hippokoon","(3548) Eurybates","(4829) Sergestus","(5130) Ilioneus","(5511) Cloanthus","(6998) Tithonus","(9430) Erichthonios","(9818) Eurymachos","Multiple Asteroids","(105685) 2000 SC51","(11089) 1994 CS8","(111113) 2001 VK85","(11351) Leucus","(11488) 1988 RM11","(11663) 1997 GO24","(120453) 1988 RE12","(124729) 2001 SB173","(12921) 1998 WZ5","(13862) 1999 XT160","(14707) 2000 CC20","(15502) 1999 NV27","(15977) 1998 MA11","(163135) 2002 CT22","(163216) 2002 EN68","(17416) 1988 RR10","(18060) 1999 XJ156","(18137) 2000 OU30","(18493) Demoleon","(18940) 2000 QV49","(23549) Epicles","(23694) 1997 KZ3","(24233) 1999 XD94","(24341) 2000 AJ87","(24380) 2000 AA160","(24420) 2000 BU22","(24426) 2000 CR12","(24452) 2000 QU167","(24467) 2000 SS165","(25347) 1999 RQ116","(28958) 2001 CQ42","(31820) 1999 RT186","(31821) 1999 RK225","(32430) 2000 RQ83","(32615) 2001 QU277","(32794) 1989 UE5","(34785) 2001 RG87","(39285) 2001 BP75","(4035) 1986 WD","(43212) 2000 AL113","(47967) 2000 SL298","(48249) 2001 SY345","(48252) 2001 TL212","(51359) 2000 SC17","(53469) 2000 AX8","(56968) 2000 SA92","(65150) 2002 CA126","(65225) 2002 EK44","(6545) 1986 TR6","(7352) 1994 CO","(76804) 2000 QE","(84709) 2002 VW120","(9030) 1989 UX5","(99328) 2001 UY123"],"instruments":["Eso Multimode Instrument","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":["Data"],"start_date":"2002-11-09","stop_date":"2005-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/collection_gbo.ast-trojan.fornasier-etal.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/collection_gbo.ast-trojan.fornasier-etal.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750839Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.sdss-moc.phot:document::1.0","title":"document collection for the \"SDSS MOVING OBJECT CATALOG\" bundle","description":"This is the document collection for the gbo.sdss-moc.phot bundle. The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":["Document"],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/collection_gbo.sdss-moc.phot_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/collection_gbo.sdss-moc.phot_document.xml","scraped_at":"2026-02-25T20:02:10.750844Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.sdss-moc.phot:data::1.0","title":"data collection for the \"SDSS MOVING OBJECT CATALOG\" bundle","description":"This is the data collection for the gbo.sdss-moc.phot bundle. The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":["Data"],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/collection_gbo.sdss-moc.phot_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/collection_gbo.sdss-moc.phot_data.xml","scraped_at":"2026-02-25T20:02:10.750848Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.triad.radiometry:document::1.0","title":"document collection for the \"TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS \" bundle","description":"This is the document collection for the compil.ast.triad.radiometry bundle. This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1972-01-01","stop_date":"1978-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/collection_compil.ast.triad.radiometry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/collection_compil.ast.triad.radiometry_document.xml","scraped_at":"2026-02-25T20:02:10.750852Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.triad.radiometry:data::1.0","title":"data collection for the \"TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS \" bundle","description":"This is the data collection for the compil.ast.triad.radiometry bundle. This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1972-01-01","stop_date":"1978-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/collection_compil.ast.triad.radiometry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/collection_compil.ast.triad.radiometry_data.xml","scraped_at":"2026-02-25T20:02:10.750855Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.sdss-based-taxonomy:document::1.0","title":"document collection for the \"SDSS-BASED ASTEROID TAXONOMY\" bundle","description":"This is the document collection for the ast.sdss-based-taxonomy bundle. The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":["Document"],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/collection_ast.sdss-based-taxonomy_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/collection_ast.sdss-based-taxonomy_document.xml","scraped_at":"2026-02-25T20:02:10.750859Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.sdss-based-taxonomy:data::1.0","title":"data collection for the \"SDSS-BASED ASTEROID TAXONOMY\" bundle","description":"This is the data collection for the ast.sdss-based-taxonomy bundle. The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":["Data"],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/collection_ast.sdss-based-taxonomy_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/collection_ast.sdss-based-taxonomy_data.xml","scraped_at":"2026-02-25T20:02:10.750863Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-iannini-family.spectra:document::1.0","title":"document collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle","description":"This is the document collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(202951) 1999 RE","(217773) 2000 RO76","(122633) 2000 RA80","(122636) 2000 RZ81","(147311) 2003 AF89","(150781) 2001 QO282","(61207) 2000 OZ7","(61928) 2000 RP4","(81550) 2000 HU23","(87239) 2000 OH45","(88187) 2000 XZ42"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"],"instrument_hosts":["W.M. Keck Observatory"],"data_types":["Document"],"start_date":"2004-11-10","stop_date":"2007-03-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/collection_gbo.ast-iannini-family.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/collection_gbo.ast-iannini-family.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750867Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-iannini-family.spectra:browse::1.0","title":"browse collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle","description":"This is the browse collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(202951) 1999 RE","(217773) 2000 RO76","(122633) 2000 RA80","(122636) 2000 RZ81","(147311) 2003 AF89","(150781) 2001 QO282","(61207) 2000 OZ7","(61928) 2000 RP4","(81550) 2000 HU23","(87239) 2000 OH45","(88187) 2000 XZ42"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"],"instrument_hosts":["W.M. Keck Observatory"],"data_types":["Browse"],"start_date":"2004-11-10","stop_date":"2007-03-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/collection_gbo.ast-iannini-family.spectra_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/collection_gbo.ast-iannini-family.spectra_browse.xml","scraped_at":"2026-02-25T20:02:10.750872Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-iannini-family.spectra:data::1.0","title":"data collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle","description":"This is the data collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(202951) 1999 RE","(217773) 2000 RO76","(122633) 2000 RA80","(122636) 2000 RZ81","(147311) 2003 AF89","(150781) 2001 QO282","(61207) 2000 OZ7","(61928) 2000 RP4","(81550) 2000 HU23","(87239) 2000 OH45","(88187) 2000 XZ42"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"],"instrument_hosts":["W.M. Keck Observatory"],"data_types":["Data"],"start_date":"2004-11-10","stop_date":"2007-03-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/collection_gbo.ast-iannini-family.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/collection_gbo.ast-iannini-family.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750877Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:document::1.0","title":"document collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle","description":"This is the document collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(334008) 2000 UP66","(5498) Gustafsson","(7558) Yurlov","(9147) Kourakuen","(9254) Shunkai","(9481) Menchu","(9553) Colas","(10537) 1991 RY16","(111515) 2001 YC91","(113844) 2002 TV237","(114544) 2003 BN28","(122357) 2000 QH49","(12543) 1998 QM5","(131010) 2000 XQ9","(134455) 1998 ST116","(24941) 1997 JM14","(26886) 1994 TJ2","(28034) 1998 EU13","(28517) 2000 DD7","(36840) 2000 SH112","(37304) 2001 EW23","(38070) Redwine","(44447) 1998 UM21","(46690) 1997 AN23","(53143) 1999 BB9","(56026) 1998 VN52","(56570) 2000 JA21","(60669) 2000 GE4","(94005) 2000 XO25"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory","Supernova Integral Field Spectrograph (SNIFS)","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"],"instrument_hosts":["W.M. Keck Observatory","Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2004-11-10","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/collection_gbo.ast-v-type.moscovitz.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/collection_gbo.ast-v-type.moscovitz.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750883Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:browse::1.0","title":"browse collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle","description":"This is the browse collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(334008) 2000 UP66","(5498) Gustafsson","(7558) Yurlov","(9147) Kourakuen","(9254) Shunkai","(9481) Menchu","(9553) Colas","(10537) 1991 RY16","(111515) 2001 YC91","(113844) 2002 TV237","(114544) 2003 BN28","(122357) 2000 QH49","(12543) 1998 QM5","(131010) 2000 XQ9","(134455) 1998 ST116","(24941) 1997 JM14","(26886) 1994 TJ2","(28034) 1998 EU13","(28517) 2000 DD7","(36840) 2000 SH112","(37304) 2001 EW23","(38070) Redwine","(44447) 1998 UM21","(46690) 1997 AN23","(53143) 1999 BB9","(56026) 1998 VN52","(56570) 2000 JA21","(60669) 2000 GE4","(94005) 2000 XO25"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory","Supernova Integral Field Spectrograph (SNIFS)","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"],"instrument_hosts":["W.M. Keck Observatory","Mauna Kea Observatory"],"data_types":["Browse"],"start_date":"2004-11-10","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/collection_gbo.ast-v-type.moscovitz.spectra_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/collection_gbo.ast-v-type.moscovitz.spectra_browse.xml","scraped_at":"2026-02-25T20:02:10.750889Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:data::1.0","title":"data collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle","description":"This is the data collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(334008) 2000 UP66","(5498) Gustafsson","(7558) Yurlov","(9147) Kourakuen","(9254) Shunkai","(9481) Menchu","(9553) Colas","(10537) 1991 RY16","(111515) 2001 YC91","(113844) 2002 TV237","(114544) 2003 BN28","(122357) 2000 QH49","(12543) 1998 QM5","(131010) 2000 XQ9","(134455) 1998 ST116","(24941) 1997 JM14","(26886) 1994 TJ2","(28034) 1998 EU13","(28517) 2000 DD7","(36840) 2000 SH112","(37304) 2001 EW23","(38070) Redwine","(44447) 1998 UM21","(46690) 1997 AN23","(53143) 1999 BB9","(56026) 1998 VN52","(56570) 2000 JA21","(60669) 2000 GE4","(94005) 2000 XO25"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory","Supernova Integral Field Spectrograph (SNIFS)","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"],"instrument_hosts":["W.M. Keck Observatory","Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2004-11-10","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/collection_gbo.ast-v-type.moscovitz.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/collection_gbo.ast-v-type.moscovitz.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750895Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.fieber-beyer.spectra:document::1.0","title":"document collection for the \"FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA\" bundle","description":"This is the document collection for the gbo.ast.fieber-beyer.spectra bundle. The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1018) Arnolda","(1036) Ganymed","(1064) Aethusa","(1158) Luda","(1166) Sakuntala","(1215) Boyer","(1358) Gaika","(1368) Numidia","(1379) Lomonosowa","(1391) Carelia","(1447) Utra","(1501) Baade","(1587) Kahrstedt","(1607) Mavis","(1644) Rafita","(1722) Goffin","(1772) Gagarin","(1854) Skvortsov","(1960) Guisan","(198) Ampella","(2089) Cetacea","(248) Lameia","(2497) Kulikovskij","(292) Ludovica","(3066) McFadden","(329) Svea","(3345) Tarkovskij","(335) Roberta","(355) Gabriella","(3637) O'Meara","(3760) Poutanen","(3999) Aristarchus","(421) Zahringia","(46) Hestia","(495) Eulalia","(556) Phyllis","(5676) Voltaire","(619) Triberga","(623) Chimaera","(652) Jubilatrix","(660) Crescentia","(6649) Yokotatakao","(695) Bella","(714) Ulula","(787) Moskva","(797) Montana","(875) Nymphe","(879) Ricarda","(897) Lysistrata","(908) Buda","(974) Lioba","Multiple Asteroids","(6212) 1993 MS1"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2000-06-30","stop_date":"2014-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/collection_gbo.ast.fieber-beyer.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/collection_gbo.ast.fieber-beyer.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750902Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.fieber-beyer.spectra:data::1.0","title":"data collection for the \"FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA\" bundle","description":"This is the data collection for the gbo.ast.fieber-beyer.spectra bundle. The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1018) Arnolda","(1036) Ganymed","(1064) Aethusa","(1158) Luda","(1166) Sakuntala","(1215) Boyer","(1358) Gaika","(1368) Numidia","(1379) Lomonosowa","(1391) Carelia","(1447) Utra","(1501) Baade","(1587) Kahrstedt","(1607) Mavis","(1644) Rafita","(1722) Goffin","(1772) Gagarin","(1854) Skvortsov","(1960) Guisan","(198) Ampella","(2089) Cetacea","(248) Lameia","(2497) Kulikovskij","(292) Ludovica","(3066) McFadden","(329) Svea","(3345) Tarkovskij","(335) Roberta","(355) Gabriella","(3637) O'Meara","(3760) Poutanen","(3999) Aristarchus","(421) Zahringia","(46) Hestia","(495) Eulalia","(556) Phyllis","(5676) Voltaire","(619) Triberga","(623) Chimaera","(652) Jubilatrix","(660) Crescentia","(6649) Yokotatakao","(695) Bella","(714) Ulula","(787) Moskva","(797) Montana","(875) Nymphe","(879) Ricarda","(897) Lysistrata","(908) Buda","(974) Lioba","Multiple Asteroids","(6212) 1993 MS1"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2000-06-30","stop_date":"2014-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/collection_gbo.ast.fieber-beyer.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/collection_gbo.ast.fieber-beyer.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750908Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.belskaya.polarimetry:document::1.0","title":"document collection for the \"BELSKAYA ASTEROID POLARIMETRY\" bundle","description":"This is the document collection for the gbo.ast.belskaya.polarimetry bundle. This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["AFOSC Polarimeter","Copernico 1.82m Telescope at Asiago Astrophysical Observatory","CrAO Five-Channel Photopolarimeter","1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"],"instrument_hosts":["Asiago Astrophysical Observatory","Crimean Astrophysical Observatory-Partizanskoye"],"data_types":["Document"],"start_date":"1996-06-09","stop_date":"2006-03-07","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/collection_gbo.ast.belskaya.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/collection_gbo.ast.belskaya.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.750913Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.belskaya.polarimetry:data::1.0","title":"data collection for the \"BELSKAYA ASTEROID POLARIMETRY\" bundle","description":"This is the data collection for the gbo.ast.belskaya.polarimetry bundle. This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["AFOSC Polarimeter","Copernico 1.82m Telescope at Asiago Astrophysical Observatory","CrAO Five-Channel Photopolarimeter","1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"],"instrument_hosts":["Asiago Astrophysical Observatory","Crimean Astrophysical Observatory-Partizanskoye"],"data_types":["Data"],"start_date":"1996-06-09","stop_date":"2006-03-07","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/collection_gbo.ast.belskaya.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/collection_gbo.ast.belskaya.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.750918Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.delbo.radiometric-diameters-albedos:document::1.0","title":"document collection for the \"DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS\" bundle","description":"This is the document collection for the ast.delbo.radiometric-diameters-albedos bundle. This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Thermal Infrared Multi-Mode Instrument 2","3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory","JPL Mid-InfraRed Large-well Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","MIRSI - Mid-Infrared Spectrometer and Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","Keck I Long Wavelength Spectrograph (IR)","W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"],"instrument_hosts":["European Southern Observatory","Mauna Kea Observatory","Mauna Kea Observatory","W.M. Keck Observatory"],"data_types":["Document"],"start_date":"2000-03-16","stop_date":"2003-06-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/collection_ast.delbo.radiometric-diameters-albedos_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/collection_ast.delbo.radiometric-diameters-albedos_document.xml","scraped_at":"2026-02-25T20:02:10.750924Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.delbo.radiometric-diameters-albedos:data::1.0","title":"data collection for the \"DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS\" bundle","description":"This is the data collection for the ast.delbo.radiometric-diameters-albedos bundle. This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Thermal Infrared Multi-Mode Instrument 2","3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory","JPL Mid-InfraRed Large-well Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","MIRSI - Mid-Infrared Spectrometer and Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","Keck I Long Wavelength Spectrograph (IR)","W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"],"instrument_hosts":["European Southern Observatory","Mauna Kea Observatory","Mauna Kea Observatory","W.M. Keck Observatory"],"data_types":["Data"],"start_date":"2000-03-16","stop_date":"2003-06-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/collection_ast.delbo.radiometric-diameters-albedos_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/collection_ast.delbo.radiometric-diameters-albedos_data.xml","scraped_at":"2026-02-25T20:02:10.750929Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.bus-demeo.taxonomy:document::1.0","title":"document collection for the \"BUS-DEMEO ASTEROID TAXONOMY\" bundle","description":"This is the document collection for the ast.bus-demeo.taxonomy bundle. The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1991-10-25","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/collection_ast.bus-demeo.taxonomy_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/collection_ast.bus-demeo.taxonomy_document.xml","scraped_at":"2026-02-25T20:02:10.750933Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.bus-demeo.taxonomy:data::1.0","title":"data collection for the \"BUS-DEMEO ASTEROID TAXONOMY\" bundle","description":"This is the data collection for the ast.bus-demeo.taxonomy bundle. The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1991-10-25","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/collection_ast.bus-demeo.taxonomy_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/collection_ast.bus-demeo.taxonomy_data.xml","scraped_at":"2026-02-25T20:02:10.750936Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.mrc.families:document::1.0","title":"document collection for the \"MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES \" bundle","description":"This is the document collection for the ast.mrc.families bundle. This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/collection_ast.mrc.families_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/collection_ast.mrc.families_document.xml","scraped_at":"2026-02-25T20:02:10.750940Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.mrc.families:data::1.0","title":"data collection for the \"MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES \" bundle","description":"This is the data collection for the ast.mrc.families bundle. This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/collection_ast.mrc.families_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/collection_ast.mrc.families_data.xml","scraped_at":"2026-02-25T20:02:10.750944Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.wisniewski.magnitudes:document::1.0","title":"document collection for the \"WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES \" bundle","description":"This is the document collection for the gbo.ast.wisniewski.magnitudes bundle. Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1976-10-19","stop_date":"1993-12-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/collection_gbo.ast.wisniewski.magnitudes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/collection_gbo.ast.wisniewski.magnitudes_document.xml","scraped_at":"2026-02-25T20:02:10.750947Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.wisniewski.magnitudes:data::1.0","title":"data collection for the \"WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES \" bundle","description":"This is the data collection for the gbo.ast.wisniewski.magnitudes bundle. Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1976-10-19","stop_date":"1993-12-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/collection_gbo.ast.wisniewski.magnitudes_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/collection_gbo.ast.wisniewski.magnitudes_data.xml","scraped_at":"2026-02-25T20:02:10.750952Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ices.mastrapa.lab-spectra:document::1.0","title":"document collection for the \"OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE\" bundle","description":"This is the document collection for the gbo.ices.mastrapa.lab-spectra bundle. Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Terrestrial Water Ice"],"instruments":["VARIAN EXCALIBUR SERIES FTS 3000"],"instrument_hosts":[],"data_types":["Document"],"start_date":"2006-04-12","stop_date":"2006-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/collection_gbo.ices.mastrapa.lab-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/collection_gbo.ices.mastrapa.lab-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750956Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ices.mastrapa.lab-spectra:data::1.0","title":"data collection for the \"OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE\" bundle","description":"This is the data collection for the gbo.ices.mastrapa.lab-spectra bundle. Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Terrestrial Water Ice"],"instruments":["VARIAN EXCALIBUR SERIES FTS 3000"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2006-04-12","stop_date":"2006-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/collection_gbo.ices.mastrapa.lab-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/collection_gbo.ices.mastrapa.lab-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750960Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra:document::1.0","title":"document collection for the \"LEBOFSKY ET AL. 3-MICRON ASTEROID DATA \" bundle","description":"This is the document collection for the gbo.ast.lebofsky-etal.3-micron-spectra bundle. 3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(111) Ate","(114) Kassandra","(1172) Aneas","(13) Egeria","(130) Elektra","(139) Juewa","(148) Gallia","(16) Psyche","(173) Ino","(18) Melpomene","(1867) Deiphobus","(19) Fortuna","(2) Pallas","(233) Asterope","(24) Themis","(247) Eukrate","(308) Polyxo","(31) Euphrosyne","(313) Chaldaea","(324) Bamberga","(344) Desiderata","(349) Dembowska","(36) Atalante","(375) Ursula","(386) Siegena","(4) Vesta","(409) Aspasia","(410) Chloris","(423) Diotima","(5) Astraea","(505) Cava","(51) Nemausa","(511) Davida","(52) Europa","(532) Herculina","(55) Pandora","(554) Peraga","(570) Kythera","(65) Cybele","(70) Panopaea","(704) Interamnia","(72) Feronia","(721) Tabora","(74) Galatea","(748) Simeisa","(773) Irmintraud","(776) Berbericia","(87) Sylvia","(88) Thisbe","(92) Undina","Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1977-02-17","stop_date":"1989-04-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/collection_gbo.ast.lebofsky-etal.3-micron-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/collection_gbo.ast.lebofsky-etal.3-micron-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750966Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra:data::1.0","title":"data collection for the \"LEBOFSKY ET AL. 3-MICRON ASTEROID DATA \" bundle","description":"This is the data collection for the gbo.ast.lebofsky-etal.3-micron-spectra bundle. 3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(111) Ate","(114) Kassandra","(1172) Aneas","(13) Egeria","(130) Elektra","(139) Juewa","(148) Gallia","(16) Psyche","(173) Ino","(18) Melpomene","(1867) Deiphobus","(19) Fortuna","(2) Pallas","(233) Asterope","(24) Themis","(247) Eukrate","(308) Polyxo","(31) Euphrosyne","(313) Chaldaea","(324) Bamberga","(344) Desiderata","(349) Dembowska","(36) Atalante","(375) Ursula","(386) Siegena","(4) Vesta","(409) Aspasia","(410) Chloris","(423) Diotima","(5) Astraea","(505) Cava","(51) Nemausa","(511) Davida","(52) Europa","(532) Herculina","(55) Pandora","(554) Peraga","(570) Kythera","(65) Cybele","(70) Panopaea","(704) Interamnia","(72) Feronia","(721) Tabora","(74) Galatea","(748) Simeisa","(773) Irmintraud","(776) Berbericia","(87) Sylvia","(88) Thisbe","(92) Undina","Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1977-02-17","stop_date":"1989-04-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/collection_gbo.ast.lebofsky-etal.3-micron-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/collection_gbo.ast.lebofsky-etal.3-micron-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750972Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.smass2.spectra:data::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0","description":"This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(140) SIWA","(2912) LAPALMA","(4352) KYOTO","(4701) MILANI","(2305) KING","(245) VERA","(5563) 1991 VZ1","(1541) ESTONIA","(125) LIBERATRIX","(634) UTE","(3151) TALBOT","(4276) CLIFFORD","(4382) STRAVINSKY","(70) PANOPAEA","(2118) FLAGSTAFF","(7564) GOKUMENON","(1041) ASTA","(188) MENIPPE","(2106) HUGO","(3306) BYRON","(3809) AMICI","(4649) SUMOTO","(606) BRANGANE","(1785) WURM","(1135) COLCHIS","(1830) POGSON","(3340) YINHAI","(670) OTTEGEBE","(1147) STAVROPOLIS","(1348) MICHEL","(7817) ZIBITURTLE","(50) VIRGINIA","(625) XENIA","(338) BUDROSA","(3435) BOURY","(147) PROTOGENEIA","(5184) CAVAILLE-COLL","(192) NAUSIKAA","(26) PROSERPINA","(8516) HYAKKAI","(6500) KODAIRA","(1424) SUNDMANIA","(1618) DAWN","(897) LYSISTRATA","(2813) ZAPPALA","(4591) BRYANTSEV","(133) CYRENE","(1777) GEHRELS","(4200) SHIZUKAGOZEN","(4686) MAISICA","(1998) WS","(741) BOTOLPHIA","(5261) EUREKA","(354) ELEONORA","(478) TERGESTE","(5588) JENNABELLE","(154) BERTHA","(170) MARIA","(211) ISOLDA","(3759) PIIRONEN","(2902) WESTERLUND","(2246) BOWELL","(6582) FLAGSYMPHONY","(868) LOVA","(1594) DANJON","(228) AGATHE","(3389) SINZOT","(4993) COSSARD","(301) BAVARIA","(1176) LUCIDOR","(2504) GAVIOLA","(5965) 1990 SV15","(106) DIONE","(4512) SINUHE","(153) HILDA","(230) ATHAMANTIS","(2875) LAGERKVIST","(6071) SAKITAMA","(2038) BISTRO","(3037) ALKU","(4968) SUZAMUR","(306) UNITAS","(504) CORA","(815) COPPELIA","(912) MARITIMA","(159) AEMILIA","(15) EUNOMIA","(2631) ZHEJIANG","(3900) KNEZEVIC","(3395) JITKA","(3775) ELLENBETH","(4909) COUTEAU","(6509) GIOVANNIPRATESI","(98) IANTHE","(1094) SIBERIA","(2681) OSTROVSKIJ","(3491) FRIDOLIN","(3813) FORTOV","(1056) AZALEA","(4945) IKENOZENNI","(826) HENRIKA","(12) VICTORIA","(4951) IWAMOTO","(2271) KISO","(181) EUCHARIS","(1052) BELGICA","(193) AMBROSIA","(387) AQUITANIA","(759) VINIFERA","(1848) DELVAUX","(1659) PUNKAHARJU","(358) APOLLONIA","(10473) THIROUIN","(105) ARTEMIS","(539) PAMINA","(564) DUDU","(3635) KREUTZ","(2141) SIMFEROPOL","(3265) FLETCHER","(103) HERA","(2370) VAN ALTENA","(631) PHILIPPINA","(1882) RAUMA","(17) THETIS","(269) JUSTITIA","(136) AUSTRIA","(984) GRETIA","(162) LAURENTIA","(161) ATHOR","(90) ANTIOPE","(3678) MONGMANWAI","(2147) KHARADZE","(378) HOLMIA","(476) HEDWIG","(383) JANINA","(795) FINI","(753) TIFLIS","(1071) BRITA","(3074) POPOV","(2575) BULGARIA","(1214) RICHILDE","(592) BATHSEBA","(177) IRMA","(5242) KENREIMONIN","(4804) PASTEUR","(194) PROKNE","(534) NASSOVIA","(973) ARALIA","(2559) SVOBODA","(5318) DIENTZENHOFER","(4718) ARAKI","(30) URANIA","(6078) BURT","(4774) HOBETSU","(279) THULE","(808) MERXIA","(5010) AMENEMHET","(345) TERCIDINA","(677) AALTJE","(2086) NEWELL","(1433) GERAMTINA","(4982) BARTINI","(3307) ATHABASCA","(1502) ARENDA","(152) ATALA","(1539) BORRELLY","(208) LACRIMOSA","(2917) SAWYER HOGG","(679) PAX","(1730) MARCELINE","(1385) GELRIA","(1534) NASI","(547) PRAXEDIS","(2444) LEDERLE","(3885) BOGORODSKIJ","(1271) ISERGINA","(3406) OMSK","(4619) POLYAKHOVA","(481) EMITA","(4726) FEDERER","(1490) LIMPOPO","(494) VIRTUS","(7225) HUNTRESS","(642) CLARA","(1086) NATA","(3865) LINDBLOOM","(205) MARTHA","(3020) NAUDTS","(1783) ALBITSKIJ","(3654) AAS","(554) PERAGA","(7081) LUDIBUNDA","(4547) MASSACHUSETTS","(668) DORA","(2818) JUVENALIS","(46) HESTIA","(1228) SCABIOSA","(4265) KANI","(88) THISBE","(4570) RUNCORN","(3762) AMARAVELLA","(1329) ELIANE","(179) KLYTAEMNESTRA","(56) MELETE","(399) PERSEPHONE","(5348) KENNOGUCHI","(1702) KALAHARI","(3704) GAOSHIQI","(4706) DENNISREUTER","(5595) ROTH","(7405) 1988 FF","(1929) KOLLAA","(1301) YVONNE","(3546) ATANASOFF","(122) GERDA","(2401) AEHLITA","(1601) PATRY","(507) LAODICA","(674) RACHELE","(3249) MUSASHINO","(87) SYLVIA","(737) AREQUIPA","(5344) RYABOV","(7304) NAMIKI","(824) ANASTASIA","(3474) LINSLEY","(886) WASHINGTONIA","(8008) 1988 TQ4","(3363) BOWEN","(2430) BRUCE HELIN","(1332) MARCONIA","(3576) GALINA","(1891) GONDOLA","(3314) BEALS","(142) POLANA","(9970) 1992 ST1","(2852) DECLERCQ","(130) ELEKTRA","(261) PRYMNO","(377) CAMPANIA","(7451) VERBITSKAYA","(189) PHTHIA","(783) NORA","(751) FAINA","(1474) BEIRA","(336) LACADIERA","(4304) GEICHENKO","(4786) TATIANINA","(1304) AROSA","(410) CHLORIS","(337) DEVOSA","(3796) LENE","(543) CHARLOTTE","(1110) JAROSLAWA","(2402) SATPAEV","(1716) PETER","(3371) GIACCONI","(747) WINCHESTER","(2754) EFIMOV","(1015) CHRISTA","(1970) SUMERIA","(353) RUPERTO-CAROLA","(2930) EURIPIDES","(2446) LUNACHARSKY","(2369) CHEKHOV","(331) ETHERIDGEA","(2448) SHOLOKHOV","(3311) PODOBED","(3587) DESCARTES","(5892) MILESDAVIS","(980) ANACOSTIA","(1188) GOTHLANDIA","(384) BURDIGALA","(1903) ADZHIMUSHKAJ","(5690) 1992 EU","(247) EUKRATE","(2244) TESLA","(395) DELIA","(167) URDA","(2744) BIRGITTA","(1751) HERGET","(3862) AGEKIAN","(7404) 1988 AA5","(6086) VRCHLICKY","(3713) PIETERS","(8334) 1984 CF","(4733) ORO","(1734) ZHONGOLOVICH","(4548) WIELEN","(720) BOHLINIA","(4082) SWANN","(4311) ZGURIDI","(2640) HALLSTROM","(3248) FARINELLA","(327) COLUMBIA","(281) LUCRETIA","(365) CORDUBA","(180) GARUMNA","(398) ADMETE","(6585) O'KEEFE","(2567) ELBA","(1638) RUANDA","(3844) LUJIAXI","(3850) PELTIER","(523) ADA","(288) GLAUKE","(1542) SCHALEN","(4284) KAHO","(5195) KAENDLER","(51) NEMAUSA","(1336) ZEELANDIA","(742) EDISONA","(1284) LATVIA","(134) SOPHROSYNE","(4737) KILADZE","(2851) HARBIN","(101) HELENA","(1977) SHURA","(119) ALTHAEA","(4426) ROERICH","(2085) HENAN","(924) TONI","(2107) ILMARI","(2582) HARIMAYA-BASHI","(3175) NETTO","(1839) RAGAZZA","(2736) OPS","(7245) 1991 RN10","(785) ZWETANA","(3542) TANJIAZHEN","(614) PIA","(174) PHAEDRA","(3209) BUCHWALD","(1664) FELIX","(201) PENELOPE","(3155) LEE","(3443) LEETSUNGDAO","(1351) UZBEKISTANIA","(2973) PAOLA","(1857) PARCHOMENKO","(2579) SPARTACUS","(2675) TOLKIEN","Multiple Asteroids","(675) LUDMILLA","(3827) ZDENEKHORSKY","(3873) RODDY","(845) NAEMA","(3767) DIMAGGIO","(1251) HEDERA","(1798) WATTS","(844) LEONTINA","(75) EURYDIKE","(638) MOIRA","(84) KLIO","(462) ERIPHYLA","(1021) FLAMMARIO","(1045) MICHELA","(24) THEMIS","(994) OTTHILD","(2251) TIKHOV","(513) CENTESIMA","(107) CAMILLA","(3971) VORONIKHIN","(6146) ADAMKRAFFT","(62) ERATO","(13) EGERIA","(3737) BECKMAN","(584) SEMIRAMIS","(4036) WHITEHOUSE","(898) HILDEGARD","(1738) OOSTERHOFF","(1480) AUNUS","(4292) AOBA","(2386) NIKONOV","(2911) MIAHELENA","(5079) BRUBECK","(622) ESTHER","(186) CELUTA","(416) VATICANA","(3563) CANTERBURY","(458) HERCYNIA","(1724) VLADIMIR","(1904) MASSEVITCH","(1729) BERYL","(2708) BURNS","(109) FELICITAS","(2635) HUGGINS","(263) DRESDA","(460) SCANIA","(6386) KEITHNOLL","(2604) MARSHAK","(3287) OLMSTEAD","(453) TEA","(1560) STRATTONIA","(164) EVA","(35) LEUKOTHEA","(2042) SITARSKI","(1635) BOHRMANN","(485) GENUA","(519) SYLVANIA","(1128) ASTRID","(286) ICLEA","(1603) NEVA","(3040) KOZAI","(7211) XERXES","(2715) MIELIKKI","(4215) KAMO","(28) BELLONA","(553) KUNDRY","(65) CYBELE","(997) PRISKA","(1888) ZU CHONG-ZHI","(14) IRENE","(4917) YURILVOVIA","(61) DANAE","(386) SIEGENA","(5108) LUBECK","(278) PAULINA","(233) ASTEROPE","(360) CARLOVA","(1494) SAVO","(4845) TSUBETSU","(21) LUTETIA","(5553) CHODAS","(6907) HARRYFORD","(1025) RIEMA","(250) BETTINA","(856) BACKLUNDA","(1386) STORERIA","(266) ALINE","(4033) YATSUGATAKE","(556) PHYLLIS","(4) VESTA","(60) ECHO","(1104) SYRINGA","(729) WATSONIA","(735) MARGHANNA","(1373) CINCINNATI","(4536) DREWPINSKY","(3782) CELLE","(2346) LILIO","(491) CARINA","(1517) BEOGRAD","(5840) RAYBROWN","(496) GRYPHIA","(531) ZERLINA","(3670) NORTHCOTT","(925) ALPHONSINA","(3376) ARMANDHAMMER","(7) IRIS","(1020) ARCADIA","(521) BRIXIA","(687) TINETTE","(2331) PARVULESCO","(102) MIRIAM","(3394) BANNO","(1022) OLYMPIADA","(1201) STRENUA","(1799) KOUSSEVITZKY","(5234) SECHENOV","(516) AMHERSTIA","(779) NINA","(200) DYNAMENE","(1102) PEPITA","(6005) 1989 BD","(375) URSULA","(2354) LAVROV","(321) FLORENTINA","(853) NANSENIA","(971) ALSATIA","(2089) CETACEA","(304) OLGA","(4434) NIKULIN","(2152) HANNIBAL","(4182) MOUNT LOCKE","(2547) HUBEI","(579) SIDONIA","(7056) KIERKEGAARD","(2952) LILLIPUTIA","(781) KARTVELIA","(160) UNA","(3262) MIUNE","(3526) JEFFBELL","(1234) ELYNA","(63) AUSONIA","(6354) VANGELIS","(1014) SEMPHYRA","(2507) BOBONE","(1252) CELESTIA","(2509) CHUKOTKA","(135) HERTHA","(3642) FRIEDEN","(95) ARETHUSA","(1140) CRIMEA","(409) ASPASIA","(5103) DIVIS","(246) ASPORINA","(671) CARNEGIA","(2704) JULIAN LOEWE","(4610) KAJOV","(934) THURINGIA","(226) WERINGIA","(4611) VULKANEIFEL","(3364) ZDENKA","(392) WILHELMINA","(895) HELIO","(3417) TAMBLYN","(5081) SANGUIN","(782) MONTEFIORE","(363) PADUA","(2194) ARPOLA","(423) DIOTIMA","(1107) LICTORIA","(1634) NDOLA","(388) CHARYBDIS","(3375) AMY","(374) BURGUNDIA","(7224) VESNINA","(1055) TYNKA","(3192) A'HEARN","(2737) KOTKA","(5685) SANENOBUFUKUI","(731) SORGA","(776) BERBERICIA","(6211) TSUBAME","(78) DIANA","(115) THYRA","(1930) LUCIFER","(2762) FOWLER","(425) CORNELIA","(431) NEPHELE","(2157) ASHBROOK","(5647) SAROJININAIDU","(1548) PALOMAA","(1587) KAHRSTEDT","(175) ANDROMACHE","(58) CONCORDIA","(2772) DUGAN","(5534) 1941 UN","(3458) BODUOGNAT","(34) CIRCE","(2957) TATSUO","(3829) GUNMA","(1148) RARAHU","(965) ANGELICA","(3198) WALLONIA","(236) HONORIA","(144) VIBILIA","(2396) KOCHI","(4051) HATANAKA","(396) AEOLIA","(2185) GUANGDONG","(4516) PUGOVKIN","(1352) WAWEL","(99913) 1997 CZ5","(2371) DIMITROV","(2720) PYOTR PERVYJ","(3534) SAX","(3430) BRADFIELD","(4135) SVETLANOV","(69) HESPERIA","(611) VALERIA","(3701) PURKYNE","(393) LAMPETIA","(1262) SNIADECKIA","(4817) GLIBA","(6) HEBE","(2508) ALUPKA","(5552) STUDNICKA","(715) TRANSVAALIA","(5240) KWASAN","(3611) DABU","(5134) EBILSON","(1428) MOMBASA","(484) PITTSBURGHIA","(165) LORELEY","(3858) DORCHESTER","(8450) EGOROV","(1323) TUGELA","(4997) KSANA","(148) GALLIA","(3647) DERMOTT","(397) VIENNA","(129) ANTIGONE","(1493) SIGRID","(5632) INGELEHMANN","(2468) REPIN","(3800) KARAYUSUF","(3365) RECOGNE","(3841) DICICCO","(4923) CLARKE","(2022) WEST","(85) IO","(1680) PER BRAHE","(6192) JAVIERGOROSABEL","(673) EDDA","(443) PHOTOGRAPHICA","(111) ATE","(2501) LOHJA","(2521) HEIDI","(5091) ISAKOVSKIJ","(112) IPHIGENIA","(3734) WALAND","(6364) CASARINI","(1204) RENZIA","(2864) SODERBLOM","(3628) BOZNEMCOVA","(4628) LAPLACE","(1483) HAKOILA","(413) EDBURGA","(1300) MARCELLE","(1706) DIECKVOSS","(187) LAMBERTA","(1562) GONDOLATSCH","(355) GABRIELLA","(7763) CRABEELS","(359) GEORGIA","(569) MISA","(1106) CYDONIA","(127) JOHANNA","(3349) MANAS","(4096) KUSHIRO","(804) HISPANIA","(1640) NEMO","(773) IRMINTRAUD","(2881) MEIDEN","(191) KOLGA","(2380) HEILONGJIANG","(1076) VIOLA","(1600) VYSSOTSKY","(2949) KAVERZNEV","(114) KASSANDRA","(541) DEBORAH","(1048) FEODOSIA","(5159) BURBINE","(3686) ANTOKU","(1458) MINEURA","(2789) FOSHAN","(4422) JARRE","(1471) TORNIO","(128) NEMESIS","(866) FATME","(1088) MITAKA","(1263) VARSAVIA","(2099) OPIK","(2801) HUYGENS","(1406) KOMPPA","(6906) JOHNMILLS","(2750) LOVIISA","(4256) KAGAMIGAWA","(4272) ENTSUJI","(4944) KOZLOVSKIJ","(2527) GREGORY","(596) SCHEILA","(961) GUNNIE","(206) HERSILIA","(1807) SLOVAKIA","(7728) GIBLIN","(3669) VERTINSKIJ","(23) THALIA","(4995) GRIFFIN","(4297) EICHHORN","(4719) BURNABY","(985) ROSINA","(258) TYCHE","(166) RHODOPE","(6592) GOYA","(80) SAPPHO","(1653) YAKHONTOVIA","(4107) RUFINO","(79) EURYNOME","(2988) KORHONEN","(207) HEDDA","(1520) IMATRA","(414) LIRIOPE","(578) HAPPELIA","(4342) FREUD","(702) ALAUDA","(342) ENDYMION","(3949) MACH","(402) CHLOE","(444) GYPTIS","(600) MUSA","(6782) 1990 SU10","(4682) BYKOV","(3440) STAMPFER","(1565) LEMAITRE","(511) DAVIDA","(649) JOSEFA","(190) ISMENE","(4037) IKEYA","(2060) CHIRON","(26209) 1997 RD1","(282) CLORINDE","(3137) HORKY","(4287) TRISOV","(2732) WITT","(3687) DZUS","(2335) JAMES","(178) BELISANA","(3007) REAVES","(38) LEDA","(7604) KRIDSADAPORN","(3985) RAYBATSON","(1294) ANTWERPIA","(173) INO","(209) DIDO","(116) SIRONA","(3169) OSTRO","(3861) LORENZ","(1185) NIKKO","(3090) TJOSSEM","(4713) STEEL","(555) NORMA","(372) PALMA","(2035) STEARNS","(633) ZELIMA","(37) FIDES","(1189) TERENTIA","(5416) ESTREMADOYRO","(244) SITA","(2390) NEZARKA","(64) ANGELINA","(5133) PHILLIPADAMS","(970) PRIMULA","(4942) MUNROE","(2167) ERIN","(477) ITALIA","(242) KRIEMHILD","(381) MYRRHA","(5069) TOKEIDAI","(1017) JACQUELINE","(2834) CHRISTY CAROL","(3214) MAKARENKO","(3920) AUBIGNAN","(2410) MORRISON","(241) GERMANIA","(705) ERMINIA","(5111) JACLIFF","(2465) WILSON","(3) JUNO","(5397) VOJISLAVA","(4607) SEILANDFARM","(48) DORIS","(4396) GRESSMANN","(1152) PAWONA","(1968) MEHLTRETTER","(1936) LUGANO","(5102) BENFRANKLIN","(6283) 1980 VX1","(2328) ROBESON","(3910) LISZT","(1726) HOFFMEISTER","(3976) LISE","(2428) KAMENYAR","(1374) ISORA","(1858) LOBACHEVSKIJ","(3684) BERRY","(1563) NOEL","(3630) LUBOMIR","(597) BANDUSIA","(237) COELESTINA","(4417) LECAR","(89) JULIA","(490) VERITAS","(560) DELILA","(10504) DOGA","(4435) HOLT","(151) ABUNDANTIA","(1836) KOMAROV","(470) KILIA","(5482) KORANKEI","(308) POLYXO","(5196) BUSTELLI","(10199) CHARIKLO","(3579) ROCKHOLT","(1007) PAWLOWIA","(2258) VIIPURI","(3744) HORN-D'ARTURO","(2809) VERNADSKIJ","(559) NANON","(2840) KALLAVESI","(3181) AHNERT","(2378) PANNEKOEK","(2791) PARADISE","(2427) KOBZAR","(3320) NAMBA","(1715) SALLI","(5) ASTRAEA","(110) LYDIA","(4678) NINIAN","(5243) CLASIEN","(240) VANADIS","(860) URSINA","(5610) BALSTER","(563) SULEIKA","(2353) ALVA","(4188) KITEZH","(757) PORTLANDIA","(3636) PAJDUSAKOVA","(3451) MENTOR","(150) NUWA","(184) DEJOPEJA","(17480) 1991 PE10","(2934) ARISTOPHANES","(3309) BRORFELDE","(792) METCALFIA","(4261) GEKKO","(1131) PORZIA","(2827) VELLAMO","(4372) QUINCY","(512) TAURINENSIS","(1069) PLANCKIA","(1293) SONJA","(3833) CALINGASTA","(1248 )JUGURTHA","(2598) MERLIN","(2746) HISSAO","(1667) PELS","(5448) SIEBOLD","(5641) MCCLEESE","(2748) PATRICK GENE","(139) JUEWA","(1058) GRUBBA","(1187) AFRA","(2029) BINOMI","(2733) HAMINA","(4900) MAYMELOU","(3345) TARKOVSKIJ","(4479) CHARLIEPARKER","(2409) CHAPMAN","(2625) JACK LONDON","(627) CHARIS","(171) OPHELIA","(4194) SWEITZER","(405) THIA","(7170) LIVESEY","(42) ISIS","(1797) SCHAUMASSE","(322) PHAEO","(257) SILESIA","(4604) STEKARSTROM","(29) AMPHITRITE","(2879) SHIMIZU","(52) EUROPA","(2925) BEATTY","(3788) STEYAERT","(4910) KAWASATO","(146) LUCINA","(2874) JIM YOUNG","(5379) ABEHIROSHI","(5253) FREDCLIFFORD","(5333) KANAYA","(872) HOLDA","(4116) ELACHI","(4156) OKADANOBORU","(551) ORTRUD","(3170) DZHANIBEKOV","(253) MATHILDE","(295) THERESIA","(4838) BILLMCLAUGHLIN","(950) AHRENSA","(905) UNIVERSITAS","(389) INDUSTRIA","(8333) 1982 VF","(1196) SHEBA","(4369) SEIFERT","(1155) AENNA","(348) MAY","(739) MANDEVILLE","(5956) D'ALEMBERT","(1065) AMUNDSENIA","(1660) WOOD","(6716) 1990 RO1","(4969) LAWRENCE","(2169) TAIWAN","(4650) MORI","(1695) WALBECK","(2857) NOT","(1831) NICHOLSON","(5329) DECARO","(929) ALGUNDE","(2040) CHALONGE","(57) MNEMOSYNE","(1860) BARBAROSSA","(2482) PERKIN","(310) MARGARITA","(121) HERMIONE","(1856) RUZENA","(3536) SCHLEICHER","(4702) BEROUNKA","(4424) ARKHIPOVA","(243) IDA","(442) EICHSFELDIA","(352) GISELA","(2045) PEKING","(2566) KIRGHIZIA","(2065) SPICER","(586) THEKLA","(2560) SIEGMA","(4750) MUKAI","(713) LUSCINIA","(2078) NANKING","(2478) TOKAI","(870) MANTO","(94) AURORA","(275) SAPIENTIA","(767) BONDIA","(1508) KEMI","(234) BARBARA","(503) EVELYN","(1016) ANITRA","(1264) LETABA","(1747) WRIGHT","(7397) 1986 QS","(1847) STOBBE","(1407) LINDELOF","(3658) FELDMAN","(196) PHILOMELA","(412) ELISABETHA","(1484) POSTREMA","(2467) KOLLONTAI","(6410) FUJIWARA","(6908) KUNIMOTO","(1604) TOMBAUGH","(1046) EDWIN","(22449) OTTIJEFF","(2373) IMMO","(71) NIOBE","(4534) RIMSKIJ-KORSAKOV","(4001) PTOLEMAEUS","(3712) KRAFT","(572) REBEKKA","(5230) ASAHINA","(604) TEKMESSA","(27) EUTERPE","(2) PALLAS","(1278) KENYA","(3533) TOYOTA","(3831) PETTENGILL","(1360) TARKA","(1350) ROSSELIA","(66) MAJA","(32) POMONA","(2493) ELMER","(1545) THERNOE","(5330) SENRIKYU","(784) PICKERINGIA","(796) SARITA","(2873) BINZEL","(532) HERCULINA","(4072) YAYOI","(172) BAUCIS","(1024) HALE","(117) LOMIA","(3028) ZHANGGUOXI","(456) ABNOBA","(3819) ROBINSON","(4849) ARDENNE","(771) LIBERA","(1593) FAGNES","(4839) DAISETSUZAN","(2872) GENTELEC","(33) POLYHYMNIA","(1212) FRANCETTE","(156) XANTHIPPE","(1998) TITIUS","(2087) KOCHERA","(4711) KATHY","(4853) MARIELUKAC","(2001) EINSTEIN","(2280) KUNIKOV","(5649) DONNASHIRLEY","(3972) RICHARD","(527) EURYANTHE","(3258) SOMNIUM","(951) GASPRA","(4390) MADRETERESA","(12281) CHAUMONT","(2977) CHIVILIKHIN","(3792) PRESTON","(83) BEATRIX","(6233) KIMURA","(1403) IDELSONIA","(910) ANNELIESE","(3581) ALVAREZ","(5565) UKYOUNODAIBU","(1427) RUVUMA","(2423) IBARRURI","(3401) VANPHILOS","(1948) KAMPALA","(259) ALETHEIA","(913) OTILA","(2382) NONIE","(4374) TADAMORI","(4491) OTARU","(108) HECUBA","(2953) VYSHESLAVIA","(3367) ALEX","(1550) TITO","(2349) KURCHENKO","(4327) RIES","(19) FORTUNA","(2906) CALTECH","(479) CAPRERA","(3567) ALVEMA","(404) ARSINOE","(5067) OCCIDENTAL","(5214) OOZORA","(2511) PATTERSON","(3853) HAAS","(11906) 1992 AE1","(216) KLEOPATRA","(2161) GRISSOM","(2455) SOMVILLE","(100480) 1996 UK","(376) GEOMETRIA","(749) MALZOVIA","(930) WESTPHALIA","(4461) SAYAMA","(6077) MESSNER","(2816) PIEN","(5510) 1988 RF7","(4280) SIMONENKO","(74) GALATEA","(3511) TSVETAEVA","(4340) DENCE","(141) LUMEN","(2905) PLASKETT","(3566) LEVITAN","(4748) TOKIWAGOZEN","(688) MELANIE","(4222) NANCITA","(661) CLOELIA","(4407) TAIHAKU","(39) LAETITIA","(471) PAPAGENA","(3385) BRONNINA","(704) INTERAMNIA","(1951) LICK","(403) CYANE","(123) BRUNHILD","(349) DEMBOWSKA","(4844) MATSUYAMA","(169) ZELIA","(317) ROXANE","(2778) TANGSHAN","(197) ARETE","(2996) BOWMAN","(716) BERKELEY","(6230) FRAM","(1186) TURNERA","(629) BERNARDINA","(3903) KLIMENT OHRIDSKI","(2053) NUKI","(3493) STEPANOV","(5051) RALPH","(5438) LORRE","(3096) BEZRUC","(862) FRANZIA","(1613) SMILEY","(3640) GOSTIN","(82) ALKMENE","(18) MELPOMENE","(1553) BAUERSFELDA","(5013) SUZHOUSANZHONG","(3527) MCCORD","(3700) GEOWILLIAMS","(120) LACHESIS","(1327) NAMAQUA","(723) HAMMONIA","(113) AMALTHEA","(267) TIRZA","(5401) MINAMIODA","(16) PSYCHE","(2088) SAHLIA","(2308) SCHILT","(5485) KAULA","(5467) 1988 AG","(5492) THOMA","(5208) ROYER","(158) KORONIS","(4157) IZU","(47) AGLAJA","(264) LIBUSSA","(4343) TETSUYA","(176) IDUNA","(1795) WOLTJER","(2056) NANCY","(2855) BASTIAN","(4305) CLAPTON","(2282) ANDRES BELLO","(124) ALKESTE","(41) DAPHNE","(7562) KAGIROINO-OKA","(2064) THOMSEN","(22) KALLIOPE","(379) HUENNA","(118) PEITHO","(77) FRIGGA","(1414) JEROME","(11785) SARGENT","(5294) ONNETOH","(1032) PAFURI","(2730) BARKS","(3860) PLOVDIV","(2231) DURRELL","(945) BARCELONA","(1039) SONNEBERGA","(1181) LILITH","(1692) SUBBOTINA","(3121) TAMINES","(626) NOTBURGA","(2306) BAUSCHINGER","(3085) DONNA","(4353) ONIZAKI","(11) PARTHENOPE","(18514) 1996 TE11","(4977) RAUTHGUNDIS","(7512) MONICALAZZARIN","(2234) SCHMADEL","(3575) ANYUTA","(825) TANINA","(93) MINERVA","(198) AMPELLA","(706) HIRUNDO","(1222) TINA","(20) MASSALIA","(5008) MIYAZAWAKENJI","(54) ALEXANDRA","(43) ARIADNE","(446) AETERNITAS","(4039) SOUSEKI","(67) ASIA","(941) MURRAY","(3886) SHCHERBAKOVIA","(213) LILAEA","(5038) OVERBEEK","(533) SARA","(545) MESSALINA","(819) BARNARDIANA","(5678) DUBRIDGE","(2606) ODESSA","(2892) FILIPENKO","(6704) 1988 CJ","(183) ISTRIA","(3592) NEDBAL","(417) SUEVIA","(1423) JOSE","(210) ISABELLA","(4124) HERRIOT","(654) ZELINDA","(1098) HAKONE","(1331) SOLVEJG","(1034) MOZARTIA","(7110) JOHNPEARSE","(2569) MADELINE","(2703) RODARI","(3255) THOLEN","(289) NENETTA","(821) FANNY","(653) BERENIKE","(3498) BELTON","(570) KYTHERA","(3710) BOGOSLOVSKIJ","(4558) JANESICK","(2795) LEPAGE","(4584) AKAN","(145) ADEONA","(2807) KARL MARX","(2268) SZMYTOWNA","(2451) DOLLFUS","(391) INGEBORG","(168) SIBYLLA","(2438) OLESHKO","(441) BATHILDE","(3645) FABINI","(3254) BUS","(4299) WIYN","(45) EUGENIA","(3179) BERUTI","(346) HERMENTARIA","(366) VINCENTINA","(185) EUNIKE","(6129) DEMOKRITOS","(2019) VAN ALBADA","(3849) INCIDENTIA","(10) HYGIEA","(789) LENA","(4824) STRADONICE","(2317) GALYA","(25) PHOCAEA","(394) ARDUINA","(863) BENKOELA","(2956) YEOMANS","(5622) PERCYJULIAN","(464) MEGAIRA","(99) DIKE","(238) HYPATIA","(515) ATHALIA","(5227) BOCACARA","(92) UNDINA","(1642) HILL","(2189) ZARAGOZA","(4796) LEWIS","(581) TAUNTONIA","(908) BUDA","(3416) DORRIT","(55) PANDORA","(3256) DAGUERRE","(2724) ORLOV","(3627) SAYERS","(8513) 1991 PK11","(376713) 1995 WQ5","(4332) MILTON","(4744) ROVERETO","(1316) KASAN","(3224) IRKUTSK","(4142) DERSU-UZALA","(5585) PARKS","(4387) TANAKA","(272) ANTONIA","(847) AGNIA","(1372) HAREMARI","(5349) PAULHARRIS","(104) KLYMENE","(40) HARMONIA","(5142) OKUTAMA","(1420) RADCLIFFE","(31) EUPHROSYNE","(4950) HOUSE","(1592) MATHIEU","(284) AMALIA","(743) EUGENISIS","(1549) MIKKO","(2929) HARRIS","(7402) 1987 YH","(712) BOLIVIANA","(332) SIRI","(1796) RIGA","(1324) KNYSNA","(59) ELPIS","(1272) GEFION","(163) ERIGONE","(5732) 1988 WC","(2073) JANACEK","(3545) GAFFEY","(2131) MAYALL","(143) ADRIA","(754) MALABAR","(4523) MIT","(5275) ZDISLAVA","(3730) HURBAN","(1011) LAODAMIA","(44) NYSA","(6249) JENNIFER","(4884) BRAGARIA","(1) CERES","(214) ASCHERA","(3317) PARIS","(4767) SUTOKU","(509) IOLANDA","(601) NERTHUS","(1139) ATAMI","(3674) ERBISBUHL","(129493) 1995 BM2","(4205) DAVID HUGHES","(919) ILSEBILL","(3507) VILAS","(4456) MAWSON","(339) DOROTHEA","(2861) LAMBRECHT","(1134) KEPLER","(1343 )NICOLE","(599) LUISA","(371) BOHEMIA","(3958) KOMENDANTOV","(335) ROBERTA","(5817) ROBERTFRAZER","(5407) 1992 AX","(678) FREDEGUNDIS","(793) ARIZONA","(5087) EMEL'YANOV","(221) EOS","(81) TERPSICHORE","(5576) ALBANESE","(432) PYTHIA","(1510) CHARLOIS","(1567) ALIKOSKI","(1705) TAPIO","(3000) LEONARDO","(76) FREIA","(5392) PARKER","(5364) 1980 RC1","(2659) MILLIS","(1277) DOLORES","(5222) IOFFE","(195) EURYKLEIA","(1655) COMAS SOLA","(1932) JANSKY","(1103) SEQUOIA","(1126) OTERO","(49) PALES","(312) PIERRETTA","(907) RHODA","(2653) PRINCIPIA","(2709) SAGAN","(182) ELSA","(2763) JEANS","(797) MONTANA","(1923) OSIRIS","1996 PW","(3060) DELCANO","(2850) MOZHAISKIJ","(6847) KUNZ-HALLSTEIN","(132) AETHRA","(1629) PECKER","(718) ERIDA","(131) VALA","(5591) KOYO","(6669) OBI","(571) DULCINEA","(2629) RUDRA","(3824) BRENDALEE","(91) AEGINA","(199) BYBLIS","(3197) WEISSMAN","(1766) SLIPHER","(1989) TATRY","(1662) HOFFMANN","(699) HELA","(3065) SARAHILL","(598) OCTAVIA","(1114) LORRAINE","(2316) JO-ANN","(1768) APPENZELLA","(2955) NEWBURN","(96) AEGLE","(814) TAURIS","(100) HEKATE","(3216) HARRINGTON","(434) HUNGARIA"],"instruments":["1.3-m Tinsley Cassegrain/Coude reflector","Mark III Spectrograph","2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory","McGraw-Hill Observatory"],"data_types":["Data"],"start_date":"1993-08-21","stop_date":"1999-03-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/collection_gbo.ast.smass2.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/collection_gbo.ast.smass2.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751036Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.smass2.spectra:document::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0","description":"This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(140) SIWA","(2912) LAPALMA","(4352) KYOTO","(4701) MILANI","(2305) KING","(245) VERA","(5563) 1991 VZ1","(1541) ESTONIA","(125) LIBERATRIX","(634) UTE","(3151) TALBOT","(4276) CLIFFORD","(4382) STRAVINSKY","(70) PANOPAEA","(2118) FLAGSTAFF","(7564) GOKUMENON","(1041) ASTA","(188) MENIPPE","(2106) HUGO","(3306) BYRON","(3809) AMICI","(4649) SUMOTO","(606) BRANGANE","(1785) WURM","(1135) COLCHIS","(1830) POGSON","(3340) YINHAI","(670) OTTEGEBE","(1147) STAVROPOLIS","(1348) MICHEL","(7817) ZIBITURTLE","(50) VIRGINIA","(625) XENIA","(338) BUDROSA","(3435) BOURY","(147) PROTOGENEIA","(5184) CAVAILLE-COLL","(192) NAUSIKAA","(26) PROSERPINA","(8516) HYAKKAI","(6500) KODAIRA","(1424) SUNDMANIA","(1618) DAWN","(897) LYSISTRATA","(2813) ZAPPALA","(4591) BRYANTSEV","(133) CYRENE","(1777) GEHRELS","(4200) SHIZUKAGOZEN","(4686) MAISICA","(1998) WS","(741) BOTOLPHIA","(5261) EUREKA","(354) ELEONORA","(478) TERGESTE","(5588) JENNABELLE","(154) BERTHA","(170) MARIA","(211) ISOLDA","(3759) PIIRONEN","(2902) WESTERLUND","(2246) BOWELL","(6582) FLAGSYMPHONY","(868) LOVA","(1594) DANJON","(228) AGATHE","(3389) SINZOT","(4993) COSSARD","(301) BAVARIA","(1176) LUCIDOR","(2504) GAVIOLA","(5965) 1990 SV15","(106) DIONE","(4512) SINUHE","(153) HILDA","(230) ATHAMANTIS","(2875) LAGERKVIST","(6071) SAKITAMA","(2038) BISTRO","(3037) ALKU","(4968) SUZAMUR","(306) UNITAS","(504) CORA","(815) COPPELIA","(912) MARITIMA","(159) AEMILIA","(15) EUNOMIA","(2631) ZHEJIANG","(3900) KNEZEVIC","(3395) JITKA","(3775) ELLENBETH","(4909) COUTEAU","(6509) GIOVANNIPRATESI","(98) IANTHE","(1094) SIBERIA","(2681) OSTROVSKIJ","(3491) FRIDOLIN","(3813) FORTOV","(1056) AZALEA","(4945) IKENOZENNI","(826) HENRIKA","(12) VICTORIA","(4951) IWAMOTO","(2271) KISO","(181) EUCHARIS","(1052) BELGICA","(193) AMBROSIA","(387) AQUITANIA","(759) VINIFERA","(1848) DELVAUX","(1659) PUNKAHARJU","(358) APOLLONIA","(10473) THIROUIN","(105) ARTEMIS","(539) PAMINA","(564) DUDU","(3635) KREUTZ","(2141) SIMFEROPOL","(3265) FLETCHER","(103) HERA","(2370) VAN ALTENA","(631) PHILIPPINA","(1882) RAUMA","(17) THETIS","(269) JUSTITIA","(136) AUSTRIA","(984) GRETIA","(162) LAURENTIA","(161) ATHOR","(90) ANTIOPE","(3678) MONGMANWAI","(2147) KHARADZE","(378) HOLMIA","(476) HEDWIG","(383) JANINA","(795) FINI","(753) TIFLIS","(1071) BRITA","(3074) POPOV","(2575) BULGARIA","(1214) RICHILDE","(592) BATHSEBA","(177) IRMA","(5242) KENREIMONIN","(4804) PASTEUR","(194) PROKNE","(534) NASSOVIA","(973) ARALIA","(2559) SVOBODA","(5318) DIENTZENHOFER","(4718) ARAKI","(30) URANIA","(6078) BURT","(4774) HOBETSU","(279) THULE","(808) MERXIA","(5010) AMENEMHET","(345) TERCIDINA","(677) AALTJE","(2086) NEWELL","(1433) GERAMTINA","(4982) BARTINI","(3307) ATHABASCA","(1502) ARENDA","(152) ATALA","(1539) BORRELLY","(208) LACRIMOSA","(2917) SAWYER HOGG","(679) PAX","(1730) MARCELINE","(1385) GELRIA","(1534) NASI","(547) PRAXEDIS","(2444) LEDERLE","(3885) BOGORODSKIJ","(1271) ISERGINA","(3406) OMSK","(4619) POLYAKHOVA","(481) EMITA","(4726) FEDERER","(1490) LIMPOPO","(494) VIRTUS","(7225) HUNTRESS","(642) CLARA","(1086) NATA","(3865) LINDBLOOM","(205) MARTHA","(3020) NAUDTS","(1783) ALBITSKIJ","(3654) AAS","(554) PERAGA","(7081) LUDIBUNDA","(4547) MASSACHUSETTS","(668) DORA","(2818) JUVENALIS","(46) HESTIA","(1228) SCABIOSA","(4265) KANI","(88) THISBE","(4570) RUNCORN","(3762) AMARAVELLA","(1329) ELIANE","(179) KLYTAEMNESTRA","(56) MELETE","(399) PERSEPHONE","(5348) KENNOGUCHI","(1702) KALAHARI","(3704) GAOSHIQI","(4706) DENNISREUTER","(5595) ROTH","(7405) 1988 FF","(1929) KOLLAA","(1301) YVONNE","(3546) ATANASOFF","(122) GERDA","(2401) AEHLITA","(1601) PATRY","(507) LAODICA","(674) RACHELE","(3249) MUSASHINO","(87) SYLVIA","(737) AREQUIPA","(5344) RYABOV","(7304) NAMIKI","(824) ANASTASIA","(3474) LINSLEY","(886) WASHINGTONIA","(8008) 1988 TQ4","(3363) BOWEN","(2430) BRUCE HELIN","(1332) MARCONIA","(3576) GALINA","(1891) GONDOLA","(3314) BEALS","(142) POLANA","(9970) 1992 ST1","(2852) DECLERCQ","(130) ELEKTRA","(261) PRYMNO","(377) CAMPANIA","(7451) VERBITSKAYA","(189) PHTHIA","(783) NORA","(751) FAINA","(1474) BEIRA","(336) LACADIERA","(4304) GEICHENKO","(4786) TATIANINA","(1304) AROSA","(410) CHLORIS","(337) DEVOSA","(3796) LENE","(543) CHARLOTTE","(1110) JAROSLAWA","(2402) SATPAEV","(1716) PETER","(3371) GIACCONI","(747) WINCHESTER","(2754) EFIMOV","(1015) CHRISTA","(1970) SUMERIA","(353) RUPERTO-CAROLA","(2930) EURIPIDES","(2446) LUNACHARSKY","(2369) CHEKHOV","(331) ETHERIDGEA","(2448) SHOLOKHOV","(3311) PODOBED","(3587) DESCARTES","(5892) MILESDAVIS","(980) ANACOSTIA","(1188) GOTHLANDIA","(384) BURDIGALA","(1903) ADZHIMUSHKAJ","(5690) 1992 EU","(247) EUKRATE","(2244) TESLA","(395) DELIA","(167) URDA","(2744) BIRGITTA","(1751) HERGET","(3862) AGEKIAN","(7404) 1988 AA5","(6086) VRCHLICKY","(3713) PIETERS","(8334) 1984 CF","(4733) ORO","(1734) ZHONGOLOVICH","(4548) WIELEN","(720) BOHLINIA","(4082) SWANN","(4311) ZGURIDI","(2640) HALLSTROM","(3248) FARINELLA","(327) COLUMBIA","(281) LUCRETIA","(365) CORDUBA","(180) GARUMNA","(398) ADMETE","(6585) O'KEEFE","(2567) ELBA","(1638) RUANDA","(3844) LUJIAXI","(3850) PELTIER","(523) ADA","(288) GLAUKE","(1542) SCHALEN","(4284) KAHO","(5195) KAENDLER","(51) NEMAUSA","(1336) ZEELANDIA","(742) EDISONA","(1284) LATVIA","(134) SOPHROSYNE","(4737) KILADZE","(2851) HARBIN","(101) HELENA","(1977) SHURA","(119) ALTHAEA","(4426) ROERICH","(2085) HENAN","(924) TONI","(2107) ILMARI","(2582) HARIMAYA-BASHI","(3175) NETTO","(1839) RAGAZZA","(2736) OPS","(7245) 1991 RN10","(785) ZWETANA","(3542) TANJIAZHEN","(614) PIA","(174) PHAEDRA","(3209) BUCHWALD","(1664) FELIX","(201) PENELOPE","(3155) LEE","(3443) LEETSUNGDAO","(1351) UZBEKISTANIA","(2973) PAOLA","(1857) PARCHOMENKO","(2579) SPARTACUS","(2675) TOLKIEN","Multiple Asteroids","(675) LUDMILLA","(3827) ZDENEKHORSKY","(3873) RODDY","(845) NAEMA","(3767) DIMAGGIO","(1251) HEDERA","(1798) WATTS","(844) LEONTINA","(75) EURYDIKE","(638) MOIRA","(84) KLIO","(462) ERIPHYLA","(1021) FLAMMARIO","(1045) MICHELA","(24) THEMIS","(994) OTTHILD","(2251) TIKHOV","(513) CENTESIMA","(107) CAMILLA","(3971) VORONIKHIN","(6146) ADAMKRAFFT","(62) ERATO","(13) EGERIA","(3737) BECKMAN","(584) SEMIRAMIS","(4036) WHITEHOUSE","(898) HILDEGARD","(1738) OOSTERHOFF","(1480) AUNUS","(4292) AOBA","(2386) NIKONOV","(2911) MIAHELENA","(5079) BRUBECK","(622) ESTHER","(186) CELUTA","(416) VATICANA","(3563) CANTERBURY","(458) HERCYNIA","(1724) VLADIMIR","(1904) MASSEVITCH","(1729) BERYL","(2708) BURNS","(109) FELICITAS","(2635) HUGGINS","(263) DRESDA","(460) SCANIA","(6386) KEITHNOLL","(2604) MARSHAK","(3287) OLMSTEAD","(453) TEA","(1560) STRATTONIA","(164) EVA","(35) LEUKOTHEA","(2042) SITARSKI","(1635) BOHRMANN","(485) GENUA","(519) SYLVANIA","(1128) ASTRID","(286) ICLEA","(1603) NEVA","(3040) KOZAI","(7211) XERXES","(2715) MIELIKKI","(4215) KAMO","(28) BELLONA","(553) KUNDRY","(65) CYBELE","(997) PRISKA","(1888) ZU CHONG-ZHI","(14) IRENE","(4917) YURILVOVIA","(61) DANAE","(386) SIEGENA","(5108) LUBECK","(278) PAULINA","(233) ASTEROPE","(360) CARLOVA","(1494) SAVO","(4845) TSUBETSU","(21) LUTETIA","(5553) CHODAS","(6907) HARRYFORD","(1025) RIEMA","(250) BETTINA","(856) BACKLUNDA","(1386) STORERIA","(266) ALINE","(4033) YATSUGATAKE","(556) PHYLLIS","(4) VESTA","(60) ECHO","(1104) SYRINGA","(729) WATSONIA","(735) MARGHANNA","(1373) CINCINNATI","(4536) DREWPINSKY","(3782) CELLE","(2346) LILIO","(491) CARINA","(1517) BEOGRAD","(5840) RAYBROWN","(496) GRYPHIA","(531) ZERLINA","(3670) NORTHCOTT","(925) ALPHONSINA","(3376) ARMANDHAMMER","(7) IRIS","(1020) ARCADIA","(521) BRIXIA","(687) TINETTE","(2331) PARVULESCO","(102) MIRIAM","(3394) BANNO","(1022) OLYMPIADA","(1201) STRENUA","(1799) KOUSSEVITZKY","(5234) SECHENOV","(516) AMHERSTIA","(779) NINA","(200) DYNAMENE","(1102) PEPITA","(6005) 1989 BD","(375) URSULA","(2354) LAVROV","(321) FLORENTINA","(853) NANSENIA","(971) ALSATIA","(2089) CETACEA","(304) OLGA","(4434) NIKULIN","(2152) HANNIBAL","(4182) MOUNT LOCKE","(2547) HUBEI","(579) SIDONIA","(7056) KIERKEGAARD","(2952) LILLIPUTIA","(781) KARTVELIA","(160) UNA","(3262) MIUNE","(3526) JEFFBELL","(1234) ELYNA","(63) AUSONIA","(6354) VANGELIS","(1014) SEMPHYRA","(2507) BOBONE","(1252) CELESTIA","(2509) CHUKOTKA","(135) HERTHA","(3642) FRIEDEN","(95) ARETHUSA","(1140) CRIMEA","(409) ASPASIA","(5103) DIVIS","(246) ASPORINA","(671) CARNEGIA","(2704) JULIAN LOEWE","(4610) KAJOV","(934) THURINGIA","(226) WERINGIA","(4611) VULKANEIFEL","(3364) ZDENKA","(392) WILHELMINA","(895) HELIO","(3417) TAMBLYN","(5081) SANGUIN","(782) MONTEFIORE","(363) PADUA","(2194) ARPOLA","(423) DIOTIMA","(1107) LICTORIA","(1634) NDOLA","(388) CHARYBDIS","(3375) AMY","(374) BURGUNDIA","(7224) VESNINA","(1055) TYNKA","(3192) A'HEARN","(2737) KOTKA","(5685) SANENOBUFUKUI","(731) SORGA","(776) BERBERICIA","(6211) TSUBAME","(78) DIANA","(115) THYRA","(1930) LUCIFER","(2762) FOWLER","(425) CORNELIA","(431) NEPHELE","(2157) ASHBROOK","(5647) SAROJININAIDU","(1548) PALOMAA","(1587) KAHRSTEDT","(175) ANDROMACHE","(58) CONCORDIA","(2772) DUGAN","(5534) 1941 UN","(3458) BODUOGNAT","(34) CIRCE","(2957) TATSUO","(3829) GUNMA","(1148) RARAHU","(965) ANGELICA","(3198) WALLONIA","(236) HONORIA","(144) VIBILIA","(2396) KOCHI","(4051) HATANAKA","(396) AEOLIA","(2185) GUANGDONG","(4516) PUGOVKIN","(1352) WAWEL","(99913) 1997 CZ5","(2371) DIMITROV","(2720) PYOTR PERVYJ","(3534) SAX","(3430) BRADFIELD","(4135) SVETLANOV","(69) HESPERIA","(611) VALERIA","(3701) PURKYNE","(393) LAMPETIA","(1262) SNIADECKIA","(4817) GLIBA","(6) HEBE","(2508) ALUPKA","(5552) STUDNICKA","(715) TRANSVAALIA","(5240) KWASAN","(3611) DABU","(5134) EBILSON","(1428) MOMBASA","(484) PITTSBURGHIA","(165) LORELEY","(3858) DORCHESTER","(8450) EGOROV","(1323) TUGELA","(4997) KSANA","(148) GALLIA","(3647) DERMOTT","(397) VIENNA","(129) ANTIGONE","(1493) SIGRID","(5632) INGELEHMANN","(2468) REPIN","(3800) KARAYUSUF","(3365) RECOGNE","(3841) DICICCO","(4923) CLARKE","(2022) WEST","(85) IO","(1680) PER BRAHE","(6192) JAVIERGOROSABEL","(673) EDDA","(443) PHOTOGRAPHICA","(111) ATE","(2501) LOHJA","(2521) HEIDI","(5091) ISAKOVSKIJ","(112) IPHIGENIA","(3734) WALAND","(6364) CASARINI","(1204) RENZIA","(2864) SODERBLOM","(3628) BOZNEMCOVA","(4628) LAPLACE","(1483) HAKOILA","(413) EDBURGA","(1300) MARCELLE","(1706) DIECKVOSS","(187) LAMBERTA","(1562) GONDOLATSCH","(355) GABRIELLA","(7763) CRABEELS","(359) GEORGIA","(569) MISA","(1106) CYDONIA","(127) JOHANNA","(3349) MANAS","(4096) KUSHIRO","(804) HISPANIA","(1640) NEMO","(773) IRMINTRAUD","(2881) MEIDEN","(191) KOLGA","(2380) HEILONGJIANG","(1076) VIOLA","(1600) VYSSOTSKY","(2949) KAVERZNEV","(114) KASSANDRA","(541) DEBORAH","(1048) FEODOSIA","(5159) BURBINE","(3686) ANTOKU","(1458) MINEURA","(2789) FOSHAN","(4422) JARRE","(1471) TORNIO","(128) NEMESIS","(866) FATME","(1088) MITAKA","(1263) VARSAVIA","(2099) OPIK","(2801) HUYGENS","(1406) KOMPPA","(6906) JOHNMILLS","(2750) LOVIISA","(4256) KAGAMIGAWA","(4272) ENTSUJI","(4944) KOZLOVSKIJ","(2527) GREGORY","(596) SCHEILA","(961) GUNNIE","(206) HERSILIA","(1807) SLOVAKIA","(7728) GIBLIN","(3669) VERTINSKIJ","(23) THALIA","(4995) GRIFFIN","(4297) EICHHORN","(4719) BURNABY","(985) ROSINA","(258) TYCHE","(166) RHODOPE","(6592) GOYA","(80) SAPPHO","(1653) YAKHONTOVIA","(4107) RUFINO","(79) EURYNOME","(2988) KORHONEN","(207) HEDDA","(1520) IMATRA","(414) LIRIOPE","(578) HAPPELIA","(4342) FREUD","(702) ALAUDA","(342) ENDYMION","(3949) MACH","(402) CHLOE","(444) GYPTIS","(600) MUSA","(6782) 1990 SU10","(4682) BYKOV","(3440) STAMPFER","(1565) LEMAITRE","(511) DAVIDA","(649) JOSEFA","(190) ISMENE","(4037) IKEYA","(2060) CHIRON","(26209) 1997 RD1","(282) CLORINDE","(3137) HORKY","(4287) TRISOV","(2732) WITT","(3687) DZUS","(2335) JAMES","(178) BELISANA","(3007) REAVES","(38) LEDA","(7604) KRIDSADAPORN","(3985) RAYBATSON","(1294) ANTWERPIA","(173) INO","(209) DIDO","(116) SIRONA","(3169) OSTRO","(3861) LORENZ","(1185) NIKKO","(3090) TJOSSEM","(4713) STEEL","(555) NORMA","(372) PALMA","(2035) STEARNS","(633) ZELIMA","(37) FIDES","(1189) TERENTIA","(5416) ESTREMADOYRO","(244) SITA","(2390) NEZARKA","(64) ANGELINA","(5133) PHILLIPADAMS","(970) PRIMULA","(4942) MUNROE","(2167) ERIN","(477) ITALIA","(242) KRIEMHILD","(381) MYRRHA","(5069) TOKEIDAI","(1017) JACQUELINE","(2834) CHRISTY CAROL","(3214) MAKARENKO","(3920) AUBIGNAN","(2410) MORRISON","(241) GERMANIA","(705) ERMINIA","(5111) JACLIFF","(2465) WILSON","(3) JUNO","(5397) VOJISLAVA","(4607) SEILANDFARM","(48) DORIS","(4396) GRESSMANN","(1152) PAWONA","(1968) MEHLTRETTER","(1936) LUGANO","(5102) BENFRANKLIN","(6283) 1980 VX1","(2328) ROBESON","(3910) LISZT","(1726) HOFFMEISTER","(3976) LISE","(2428) KAMENYAR","(1374) ISORA","(1858) LOBACHEVSKIJ","(3684) BERRY","(1563) NOEL","(3630) LUBOMIR","(597) BANDUSIA","(237) COELESTINA","(4417) LECAR","(89) JULIA","(490) VERITAS","(560) DELILA","(10504) DOGA","(4435) HOLT","(151) ABUNDANTIA","(1836) KOMAROV","(470) KILIA","(5482) KORANKEI","(308) POLYXO","(5196) BUSTELLI","(10199) CHARIKLO","(3579) ROCKHOLT","(1007) PAWLOWIA","(2258) VIIPURI","(3744) HORN-D'ARTURO","(2809) VERNADSKIJ","(559) NANON","(2840) KALLAVESI","(3181) AHNERT","(2378) PANNEKOEK","(2791) PARADISE","(2427) KOBZAR","(3320) NAMBA","(1715) SALLI","(5) ASTRAEA","(110) LYDIA","(4678) NINIAN","(5243) CLASIEN","(240) VANADIS","(860) URSINA","(5610) BALSTER","(563) SULEIKA","(2353) ALVA","(4188) KITEZH","(757) PORTLANDIA","(3636) PAJDUSAKOVA","(3451) MENTOR","(150) NUWA","(184) DEJOPEJA","(17480) 1991 PE10","(2934) ARISTOPHANES","(3309) BRORFELDE","(792) METCALFIA","(4261) GEKKO","(1131) PORZIA","(2827) VELLAMO","(4372) QUINCY","(512) TAURINENSIS","(1069) PLANCKIA","(1293) SONJA","(3833) CALINGASTA","(1248 )JUGURTHA","(2598) MERLIN","(2746) HISSAO","(1667) PELS","(5448) SIEBOLD","(5641) MCCLEESE","(2748) PATRICK GENE","(139) JUEWA","(1058) GRUBBA","(1187) AFRA","(2029) BINOMI","(2733) HAMINA","(4900) MAYMELOU","(3345) TARKOVSKIJ","(4479) CHARLIEPARKER","(2409) CHAPMAN","(2625) JACK LONDON","(627) CHARIS","(171) OPHELIA","(4194) SWEITZER","(405) THIA","(7170) LIVESEY","(42) ISIS","(1797) SCHAUMASSE","(322) PHAEO","(257) SILESIA","(4604) STEKARSTROM","(29) AMPHITRITE","(2879) SHIMIZU","(52) EUROPA","(2925) BEATTY","(3788) STEYAERT","(4910) KAWASATO","(146) LUCINA","(2874) JIM YOUNG","(5379) ABEHIROSHI","(5253) FREDCLIFFORD","(5333) KANAYA","(872) HOLDA","(4116) ELACHI","(4156) OKADANOBORU","(551) ORTRUD","(3170) DZHANIBEKOV","(253) MATHILDE","(295) THERESIA","(4838) BILLMCLAUGHLIN","(950) AHRENSA","(905) UNIVERSITAS","(389) INDUSTRIA","(8333) 1982 VF","(1196) SHEBA","(4369) SEIFERT","(1155) AENNA","(348) MAY","(739) MANDEVILLE","(5956) D'ALEMBERT","(1065) AMUNDSENIA","(1660) WOOD","(6716) 1990 RO1","(4969) LAWRENCE","(2169) TAIWAN","(4650) MORI","(1695) WALBECK","(2857) NOT","(1831) NICHOLSON","(5329) DECARO","(929) ALGUNDE","(2040) CHALONGE","(57) MNEMOSYNE","(1860) BARBAROSSA","(2482) PERKIN","(310) MARGARITA","(121) HERMIONE","(1856) RUZENA","(3536) SCHLEICHER","(4702) BEROUNKA","(4424) ARKHIPOVA","(243) IDA","(442) EICHSFELDIA","(352) GISELA","(2045) PEKING","(2566) KIRGHIZIA","(2065) SPICER","(586) THEKLA","(2560) SIEGMA","(4750) MUKAI","(713) LUSCINIA","(2078) NANKING","(2478) TOKAI","(870) MANTO","(94) AURORA","(275) SAPIENTIA","(767) BONDIA","(1508) KEMI","(234) BARBARA","(503) EVELYN","(1016) ANITRA","(1264) LETABA","(1747) WRIGHT","(7397) 1986 QS","(1847) STOBBE","(1407) LINDELOF","(3658) FELDMAN","(196) PHILOMELA","(412) ELISABETHA","(1484) POSTREMA","(2467) KOLLONTAI","(6410) FUJIWARA","(6908) KUNIMOTO","(1604) TOMBAUGH","(1046) EDWIN","(22449) OTTIJEFF","(2373) IMMO","(71) NIOBE","(4534) RIMSKIJ-KORSAKOV","(4001) PTOLEMAEUS","(3712) KRAFT","(572) REBEKKA","(5230) ASAHINA","(604) TEKMESSA","(27) EUTERPE","(2) PALLAS","(1278) KENYA","(3533) TOYOTA","(3831) PETTENGILL","(1360) TARKA","(1350) ROSSELIA","(66) MAJA","(32) POMONA","(2493) ELMER","(1545) THERNOE","(5330) SENRIKYU","(784) PICKERINGIA","(796) SARITA","(2873) BINZEL","(532) HERCULINA","(4072) YAYOI","(172) BAUCIS","(1024) HALE","(117) LOMIA","(3028) ZHANGGUOXI","(456) ABNOBA","(3819) ROBINSON","(4849) ARDENNE","(771) LIBERA","(1593) FAGNES","(4839) DAISETSUZAN","(2872) GENTELEC","(33) POLYHYMNIA","(1212) FRANCETTE","(156) XANTHIPPE","(1998) TITIUS","(2087) KOCHERA","(4711) KATHY","(4853) MARIELUKAC","(2001) EINSTEIN","(2280) KUNIKOV","(5649) DONNASHIRLEY","(3972) RICHARD","(527) EURYANTHE","(3258) SOMNIUM","(951) GASPRA","(4390) MADRETERESA","(12281) CHAUMONT","(2977) CHIVILIKHIN","(3792) PRESTON","(83) BEATRIX","(6233) KIMURA","(1403) IDELSONIA","(910) ANNELIESE","(3581) ALVAREZ","(5565) UKYOUNODAIBU","(1427) RUVUMA","(2423) IBARRURI","(3401) VANPHILOS","(1948) KAMPALA","(259) ALETHEIA","(913) OTILA","(2382) NONIE","(4374) TADAMORI","(4491) OTARU","(108) HECUBA","(2953) VYSHESLAVIA","(3367) ALEX","(1550) TITO","(2349) KURCHENKO","(4327) RIES","(19) FORTUNA","(2906) CALTECH","(479) CAPRERA","(3567) ALVEMA","(404) ARSINOE","(5067) OCCIDENTAL","(5214) OOZORA","(2511) PATTERSON","(3853) HAAS","(11906) 1992 AE1","(216) KLEOPATRA","(2161) GRISSOM","(2455) SOMVILLE","(100480) 1996 UK","(376) GEOMETRIA","(749) MALZOVIA","(930) WESTPHALIA","(4461) SAYAMA","(6077) MESSNER","(2816) PIEN","(5510) 1988 RF7","(4280) SIMONENKO","(74) GALATEA","(3511) TSVETAEVA","(4340) DENCE","(141) LUMEN","(2905) PLASKETT","(3566) LEVITAN","(4748) TOKIWAGOZEN","(688) MELANIE","(4222) NANCITA","(661) CLOELIA","(4407) TAIHAKU","(39) LAETITIA","(471) PAPAGENA","(3385) BRONNINA","(704) INTERAMNIA","(1951) LICK","(403) CYANE","(123) BRUNHILD","(349) DEMBOWSKA","(4844) MATSUYAMA","(169) ZELIA","(317) ROXANE","(2778) TANGSHAN","(197) ARETE","(2996) BOWMAN","(716) BERKELEY","(6230) FRAM","(1186) TURNERA","(629) BERNARDINA","(3903) KLIMENT OHRIDSKI","(2053) NUKI","(3493) STEPANOV","(5051) RALPH","(5438) LORRE","(3096) BEZRUC","(862) FRANZIA","(1613) SMILEY","(3640) GOSTIN","(82) ALKMENE","(18) MELPOMENE","(1553) BAUERSFELDA","(5013) SUZHOUSANZHONG","(3527) MCCORD","(3700) GEOWILLIAMS","(120) LACHESIS","(1327) NAMAQUA","(723) HAMMONIA","(113) AMALTHEA","(267) TIRZA","(5401) MINAMIODA","(16) PSYCHE","(2088) SAHLIA","(2308) SCHILT","(5485) KAULA","(5467) 1988 AG","(5492) THOMA","(5208) ROYER","(158) KORONIS","(4157) IZU","(47) AGLAJA","(264) LIBUSSA","(4343) TETSUYA","(176) IDUNA","(1795) WOLTJER","(2056) NANCY","(2855) BASTIAN","(4305) CLAPTON","(2282) ANDRES BELLO","(124) ALKESTE","(41) DAPHNE","(7562) KAGIROINO-OKA","(2064) THOMSEN","(22) KALLIOPE","(379) HUENNA","(118) PEITHO","(77) FRIGGA","(1414) JEROME","(11785) SARGENT","(5294) ONNETOH","(1032) PAFURI","(2730) BARKS","(3860) PLOVDIV","(2231) DURRELL","(945) BARCELONA","(1039) SONNEBERGA","(1181) LILITH","(1692) SUBBOTINA","(3121) TAMINES","(626) NOTBURGA","(2306) BAUSCHINGER","(3085) DONNA","(4353) ONIZAKI","(11) PARTHENOPE","(18514) 1996 TE11","(4977) RAUTHGUNDIS","(7512) MONICALAZZARIN","(2234) SCHMADEL","(3575) ANYUTA","(825) TANINA","(93) MINERVA","(198) AMPELLA","(706) HIRUNDO","(1222) TINA","(20) MASSALIA","(5008) MIYAZAWAKENJI","(54) ALEXANDRA","(43) ARIADNE","(446) AETERNITAS","(4039) SOUSEKI","(67) ASIA","(941) MURRAY","(3886) SHCHERBAKOVIA","(213) LILAEA","(5038) OVERBEEK","(533) SARA","(545) MESSALINA","(819) BARNARDIANA","(5678) DUBRIDGE","(2606) ODESSA","(2892) FILIPENKO","(6704) 1988 CJ","(183) ISTRIA","(3592) NEDBAL","(417) SUEVIA","(1423) JOSE","(210) ISABELLA","(4124) HERRIOT","(654) ZELINDA","(1098) HAKONE","(1331) SOLVEJG","(1034) MOZARTIA","(7110) JOHNPEARSE","(2569) MADELINE","(2703) RODARI","(3255) THOLEN","(289) NENETTA","(821) FANNY","(653) BERENIKE","(3498) BELTON","(570) KYTHERA","(3710) BOGOSLOVSKIJ","(4558) JANESICK","(2795) LEPAGE","(4584) AKAN","(145) ADEONA","(2807) KARL MARX","(2268) SZMYTOWNA","(2451) DOLLFUS","(391) INGEBORG","(168) SIBYLLA","(2438) OLESHKO","(441) BATHILDE","(3645) FABINI","(3254) BUS","(4299) WIYN","(45) EUGENIA","(3179) BERUTI","(346) HERMENTARIA","(366) VINCENTINA","(185) EUNIKE","(6129) DEMOKRITOS","(2019) VAN ALBADA","(3849) INCIDENTIA","(10) HYGIEA","(789) LENA","(4824) STRADONICE","(2317) GALYA","(25) PHOCAEA","(394) ARDUINA","(863) BENKOELA","(2956) YEOMANS","(5622) PERCYJULIAN","(464) MEGAIRA","(99) DIKE","(238) HYPATIA","(515) ATHALIA","(5227) BOCACARA","(92) UNDINA","(1642) HILL","(2189) ZARAGOZA","(4796) LEWIS","(581) TAUNTONIA","(908) BUDA","(3416) DORRIT","(55) PANDORA","(3256) DAGUERRE","(2724) ORLOV","(3627) SAYERS","(8513) 1991 PK11","(376713) 1995 WQ5","(4332) MILTON","(4744) ROVERETO","(1316) KASAN","(3224) IRKUTSK","(4142) DERSU-UZALA","(5585) PARKS","(4387) TANAKA","(272) ANTONIA","(847) AGNIA","(1372) HAREMARI","(5349) PAULHARRIS","(104) KLYMENE","(40) HARMONIA","(5142) OKUTAMA","(1420) RADCLIFFE","(31) EUPHROSYNE","(4950) HOUSE","(1592) MATHIEU","(284) AMALIA","(743) EUGENISIS","(1549) MIKKO","(2929) HARRIS","(7402) 1987 YH","(712) BOLIVIANA","(332) SIRI","(1796) RIGA","(1324) KNYSNA","(59) ELPIS","(1272) GEFION","(163) ERIGONE","(5732) 1988 WC","(2073) JANACEK","(3545) GAFFEY","(2131) MAYALL","(143) ADRIA","(754) MALABAR","(4523) MIT","(5275) ZDISLAVA","(3730) HURBAN","(1011) LAODAMIA","(44) NYSA","(6249) JENNIFER","(4884) BRAGARIA","(1) CERES","(214) ASCHERA","(3317) PARIS","(4767) SUTOKU","(509) IOLANDA","(601) NERTHUS","(1139) ATAMI","(3674) ERBISBUHL","(129493) 1995 BM2","(4205) DAVID HUGHES","(919) ILSEBILL","(3507) VILAS","(4456) MAWSON","(339) DOROTHEA","(2861) LAMBRECHT","(1134) KEPLER","(1343 )NICOLE","(599) LUISA","(371) BOHEMIA","(3958) KOMENDANTOV","(335) ROBERTA","(5817) ROBERTFRAZER","(5407) 1992 AX","(678) FREDEGUNDIS","(793) ARIZONA","(5087) EMEL'YANOV","(221) EOS","(81) TERPSICHORE","(5576) ALBANESE","(432) PYTHIA","(1510) CHARLOIS","(1567) ALIKOSKI","(1705) TAPIO","(3000) LEONARDO","(76) FREIA","(5392) PARKER","(5364) 1980 RC1","(2659) MILLIS","(1277) DOLORES","(5222) IOFFE","(195) EURYKLEIA","(1655) COMAS SOLA","(1932) JANSKY","(1103) SEQUOIA","(1126) OTERO","(49) PALES","(312) PIERRETTA","(907) RHODA","(2653) PRINCIPIA","(2709) SAGAN","(182) ELSA","(2763) JEANS","(797) MONTANA","(1923) OSIRIS","1996 PW","(3060) DELCANO","(2850) MOZHAISKIJ","(6847) KUNZ-HALLSTEIN","(132) AETHRA","(1629) PECKER","(718) ERIDA","(131) VALA","(5591) KOYO","(6669) OBI","(571) DULCINEA","(2629) RUDRA","(3824) BRENDALEE","(91) AEGINA","(199) BYBLIS","(3197) WEISSMAN","(1766) SLIPHER","(1989) TATRY","(1662) HOFFMANN","(699) HELA","(3065) SARAHILL","(598) OCTAVIA","(1114) LORRAINE","(2316) JO-ANN","(1768) APPENZELLA","(2955) NEWBURN","(96) AEGLE","(814) TAURIS","(100) HEKATE","(3216) HARRINGTON","(434) HUNGARIA"],"instruments":["1.3-m Tinsley Cassegrain/Coude reflector","Mark III Spectrograph","2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory","McGraw-Hill Observatory"],"data_types":["Document"],"start_date":"1993-08-21","stop_date":"1999-03-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/collection_gbo.ast.smass2.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/collection_gbo.ast.smass2.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751102Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:smallbodiesoccultations:data::3.0","title":"Small Bodies Occultations V3.0","description":"This data set is intended to include all reported timings of observed asteroid, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version is complete through to May 2019, with observations up until Sept 2019.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","SATELLITE"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1911-08-14","stop_date":"2019-09-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/collection_smallbodiesoccultations_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/collection_smallbodiesoccultations_data.xml","scraped_at":"2026-02-25T20:02:10.751115Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:smallbodiesoccultations:document::3.0","title":"Small Bodies Occultations V3.0","description":"This data set is intended to include all reported timings of observed asteroid, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version is complete through to May 2019, with observations up until Sept 2019.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","SATELLITE"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1911-08-14","stop_date":"2019-09-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/collection_smallbodiesoccultations_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/collection_smallbodiesoccultations_document.xml","scraped_at":"2026-02-25T20:02:10.751120Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_binary_parameters_compilation:data::3.0","title":"BINARY MINOR PLANETS V3.0","description":"The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1978-12-01","stop_date":"2019-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/collection_ast_binary_parameters_compilation_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/collection_ast_binary_parameters_compilation_data.xml","scraped_at":"2026-02-25T20:02:10.751124Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_binary_parameters_compilation:document::3.0","title":"BINARY MINOR PLANETS V3.0","description":"The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1978-12-01","stop_date":"2019-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/collection_ast_binary_parameters_compilation_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/collection_ast_binary_parameters_compilation_document.xml","scraped_at":"2026-02-25T20:02:10.751128Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images:data::1.0","title":"OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Purgathofer SA71-20","Landolt SA114-790","Landolt SA114-223","(101955) Bennu","Purgathofer SA71-07"],"instruments":["University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope"],"instrument_hosts":["Steward Observatory"],"data_types":["Data"],"start_date":"2005-09-14","stop_date":"2005-09-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/collection_orex.gbo.ast-bennu.lightcurves-images_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/collection_orex.gbo.ast-bennu.lightcurves-images_data.xml","scraped_at":"2026-02-25T20:02:10.751132Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images:document::1.0","title":"OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Purgathofer SA71-20","Landolt SA114-790","Landolt SA114-223","(101955) Bennu","Purgathofer SA71-07"],"instruments":["University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope"],"instrument_hosts":["Steward Observatory"],"data_types":["Document"],"start_date":"2005-09-14","stop_date":"2005-09-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/collection_orex.gbo.ast-bennu.lightcurves-images_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/collection_orex.gbo.ast-bennu.lightcurves-images_document.xml","scraped_at":"2026-02-25T20:02:10.751137Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.zappala-etal.families:data::1.0","title":"Zappala et al. (1995) Asteroid Dynamical Families V1.0","description":"Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/collection_ast.zappala-etal.families_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/collection_ast.zappala-etal.families_data.xml","scraped_at":"2026-02-25T20:02:10.751141Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.zappala-etal.families:document::1.0","title":"Zappala et al. (1995) Asteroid Dynamical Families V1.0","description":"Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/collection_ast.zappala-etal.families_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/collection_ast.zappala-etal.families_document.xml","scraped_at":"2026-02-25T20:02:10.751145Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-1999td10.images-lightcurves:data::1.0","title":"Visual Imaging and Photometry of (29981) 1999 TD10 V1.0","description":"The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Landolt PG2213-006","Landolt SA95","Landolt PG0231+051","Landolt SA92","(29981) 1999 TD10"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","CFIM+T2KA"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2001-09-21","stop_date":"2002-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/collection_gbo.ast-1999td10.images-lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/collection_gbo.ast-1999td10.images-lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.751149Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-1999td10.images-lightcurves:document::1.0","title":"Visual Imaging and Photometry of (29981) 1999 TD10 V1.0","description":"The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Landolt PG2213-006","Landolt SA95","Landolt PG0231+051","Landolt SA92","(29981) 1999 TD10"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","CFIM+T2KA"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Document"],"start_date":"2001-09-21","stop_date":"2002-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/collection_gbo.ast-1999td10.images-lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/collection_gbo.ast-1999td10.images-lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.751154Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.phobos.shape-model:data::1.0","title":"Gaskell Phobos Shape Model V1.0","description":"The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Viking","Phobos 2"],"targets":["Mars I (Phobos)"],"instruments":["Visual Imaging Subsystem - Camera A","Visual Imaging Subsystem - Camera B","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat"],"instrument_hosts":["Viking Orbiter 2","Viking Orbiter 2","Viking Orbiter 1","Viking Orbiter 1","Phobos 2"],"data_types":["Data"],"start_date":"1976-07-24","stop_date":"1989-03-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/collection_gaskell.phobos.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/collection_gaskell.phobos.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751159Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.phobos.shape-model:document::1.0","title":"Gaskell Phobos Shape Model V1.0","description":"The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Viking","Phobos 2"],"targets":["Mars I (Phobos)"],"instruments":["Visual Imaging Subsystem - Camera A","Visual Imaging Subsystem - Camera B","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat"],"instrument_hosts":["Viking Orbiter 2","Viking Orbiter 2","Viking Orbiter 1","Viking Orbiter 1","Phobos 2"],"data_types":["Document"],"start_date":"1976-07-24","stop_date":"1989-03-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/collection_gaskell.phobos.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/collection_gaskell.phobos.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751164Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra:document::1.0","title":"document collection for the \"IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS \" bundle","description":"This is the document collection for the gbo.ast.irtf-spex-collection.spectra bundle. This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1014) Semphyra","(1020) Arcadia","(1039) Sonneberga","(1098) Hakone","(110) Lydia","(1103) Sequoia","(112) Iphigenia","(1228) Scabiosa","(1251) Hedera","(1275) Cimbria","(129) Antigone","(1317) Silvretta","(135) Hertha","(136) Austria","(143) Adria","(144) Vibilia","(1468) Zomba","(1545) Thernoe","(1580) Betulia","(16) Psyche","(166) Rhodope","(1662) Hoffmann","(17) Thetis","(173) Ino","(179) Klytaemnestra","(1858) Lobachevskij","(186) Celuta","(1903) Adzhimushkaj","(1929) Kollaa","(2) Pallas","(2042) Sitarski","(2045) Peking","(2048) Dwornik","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(213) Lilaea","(214) Aschera","(216) Kleopatra","(217) Eudora","(221) Eos","(224) Oceana","(229) Adelinda","(233) Asterope","(234) Barbara","(2371) Dimitrov","(2401) Aehlita","(2442) Corbett","(246) Asporina","(250) Bettina","(2501) Lohja","(2504) Gaviola","(2511) Patterson","(25143) Itokawa","(2566) Kirghizia","(2579) Spartacus","(260) Huberta","(2606) Odessa","(2653) Principia","(27343) Deannashea","(2763) Jeans","(2795) Lepage","(2823) van der Laan","(283) Emma","(284) Amalia","(2851) Harbin","(289) Nenetta","(2912) Lapalma","(304) Olga","(3103) Eger","(3155) Lee","(317) Roxane","(322) Phaeo","(335) Roberta","(3363) Bowen","(337) Devosa","(3395) Jitka","(347) Pariana","(354) Eleonora","(359) Georgia","(3657) Ermolova","(3703) Volkonskaya","(375) Ursula","(3782) Celle","(379) Huenna","(38070) Redwine","(3819) Robinson","(383) Janina","(387) Aquitania","(397) Vienna","(4) Vesta","(4038) Kristina","(409) Aspasia","(41) Daphne","(417) Suevia","(4188) Kitezh","(419) Aurelia","(4215) Kamo","(426) Hippo","(43) Ariadne","(434) Hungaria","(44) Nysa","(441) Bathilde","(4426) Roerich","(446) Aeternitas","(46) Hestia","(4796) Lewis","(497) Iva","(50) Virginia","(505) Cava","(5111) Jacliff","(517) Edith","(53) Kalypso","(536) Merapi","(547) Praxedis","(5481) Kiuchi","(5498) Gustafsson","(55) Pandora","(559) Nanon","(572) Rebekka","(5840) Raybrown","(599) Luisa","(62) Erato","(64) Angelina","(661) Cloelia","(676) Melitta","(678) Fredegundis","(679) Pax","(686) Gersuind","(709) Fringilla","(71) Niobe","(712) Boliviana","(739) Mandeville","(742) Edisona","(75) Eurydike","(757) Portlandia","(758) Mancunia","(768) Struveana","(77) Frigga","(771) Libera","(779) Nina","(7800) Zhongkeyuan","(785) Zwetana","(789) Lena","(808) Merxia","(809) Lundia","(844) Leontina","(847) Agnia","(863) Benkoela","(87) Sylvia","(872) Holda","(89) Julia","(899) Jokaste","(909) Ulla","(9481) Menchu","(9553) Colas","(956) Elisa","(97) Klotho","(973) Aralia","(976) Benjamina","(980) Anacostia","(984) Gretia","(99) Dike","Multiple Asteroids","(10537) 1991 RY16","(139359) 2001 ME1","(16416) 1987 SM3","(26760) 2001 KP41","(26886) 1994 TJ2","(29075) 1950 DA","(33881) 2000 JK66","(36412) 2000 OP49","(50098) 2000 AG98","(97276) 1999 XC143"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2000-09-04","stop_date":"2009-08-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/collection_gbo.ast.irtf-spex-collection.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/collection_gbo.ast.irtf-spex-collection.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751178Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra:data::1.0","title":"data collection for the \"IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS \" bundle","description":"This is the data collection for the gbo.ast.irtf-spex-collection.spectra bundle. This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1014) Semphyra","(1020) Arcadia","(1039) Sonneberga","(1098) Hakone","(110) Lydia","(1103) Sequoia","(112) Iphigenia","(1228) Scabiosa","(1251) Hedera","(1275) Cimbria","(129) Antigone","(1317) Silvretta","(135) Hertha","(136) Austria","(143) Adria","(144) Vibilia","(1468) Zomba","(1545) Thernoe","(1580) Betulia","(16) Psyche","(166) Rhodope","(1662) Hoffmann","(17) Thetis","(173) Ino","(179) Klytaemnestra","(1858) Lobachevskij","(186) Celuta","(1903) Adzhimushkaj","(1929) Kollaa","(2) Pallas","(2042) Sitarski","(2045) Peking","(2048) Dwornik","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(213) Lilaea","(214) Aschera","(216) Kleopatra","(217) Eudora","(221) Eos","(224) Oceana","(229) Adelinda","(233) Asterope","(234) Barbara","(2371) Dimitrov","(2401) Aehlita","(2442) Corbett","(246) Asporina","(250) Bettina","(2501) Lohja","(2504) Gaviola","(2511) Patterson","(25143) Itokawa","(2566) Kirghizia","(2579) Spartacus","(260) Huberta","(2606) Odessa","(2653) Principia","(27343) Deannashea","(2763) Jeans","(2795) Lepage","(2823) van der Laan","(283) Emma","(284) Amalia","(2851) Harbin","(289) Nenetta","(2912) Lapalma","(304) Olga","(3103) Eger","(3155) Lee","(317) Roxane","(322) Phaeo","(335) Roberta","(3363) Bowen","(337) Devosa","(3395) Jitka","(347) Pariana","(354) Eleonora","(359) Georgia","(3657) Ermolova","(3703) Volkonskaya","(375) Ursula","(3782) Celle","(379) Huenna","(38070) Redwine","(3819) Robinson","(383) Janina","(387) Aquitania","(397) Vienna","(4) Vesta","(4038) Kristina","(409) Aspasia","(41) Daphne","(417) Suevia","(4188) Kitezh","(419) Aurelia","(4215) Kamo","(426) Hippo","(43) Ariadne","(434) Hungaria","(44) Nysa","(441) Bathilde","(4426) Roerich","(446) Aeternitas","(46) Hestia","(4796) Lewis","(497) Iva","(50) Virginia","(505) Cava","(5111) Jacliff","(517) Edith","(53) Kalypso","(536) Merapi","(547) Praxedis","(5481) Kiuchi","(5498) Gustafsson","(55) Pandora","(559) Nanon","(572) Rebekka","(5840) Raybrown","(599) Luisa","(62) Erato","(64) Angelina","(661) Cloelia","(676) Melitta","(678) Fredegundis","(679) Pax","(686) Gersuind","(709) Fringilla","(71) Niobe","(712) Boliviana","(739) Mandeville","(742) Edisona","(75) Eurydike","(757) Portlandia","(758) Mancunia","(768) Struveana","(77) Frigga","(771) Libera","(779) Nina","(7800) Zhongkeyuan","(785) Zwetana","(789) Lena","(808) Merxia","(809) Lundia","(844) Leontina","(847) Agnia","(863) Benkoela","(87) Sylvia","(872) Holda","(89) Julia","(899) Jokaste","(909) Ulla","(9481) Menchu","(9553) Colas","(956) Elisa","(97) Klotho","(973) Aralia","(976) Benjamina","(980) Anacostia","(984) Gretia","(99) Dike","Multiple Asteroids","(10537) 1991 RY16","(139359) 2001 ME1","(16416) 1987 SM3","(26760) 2001 KP41","(26886) 1994 TJ2","(29075) 1950 DA","(33881) 2000 JK66","(36412) 2000 OP49","(50098) 2000 AG98","(97276) 1999 XC143"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2000-09-04","stop_date":"2009-08-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/collection_gbo.ast.irtf-spex-collection.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/collection_gbo.ast.irtf-spex-collection.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751191Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.torino.polarimetry:document::1.0","title":"document collection for the \"TORINO ASTEROID POLARIMETRY\" bundle","description":"This is the document collection for the gbo.ast.torino.polarimetry bundle. This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":["Document"],"start_date":"1995-01-01","stop_date":"2005-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/collection_gbo.ast.torino.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/collection_gbo.ast.torino.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.751196Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.torino.polarimetry:data::1.0","title":"data collection for the \"TORINO ASTEROID POLARIMETRY\" bundle","description":"This is the data collection for the gbo.ast.torino.polarimetry bundle. This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":["Data"],"start_date":"1995-01-01","stop_date":"2005-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/collection_gbo.ast.torino.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/collection_gbo.ast.torino.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.751200Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.denis.ir-photometry:document::1.0","title":"document collection for the \"NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS\" bundle","description":"This is the document collection for the gbo.ast.denis.ir-photometry bundle. The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["DENIS 3-Channel Near-Infrared Camera","1-m photometric Cassegrain reflector at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":["Document"],"start_date":"1995-12-01","stop_date":"1999-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/collection_gbo.ast.denis.ir-photometry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/collection_gbo.ast.denis.ir-photometry_document.xml","scraped_at":"2026-02-25T20:02:10.751204Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.denis.ir-photometry:data::1.0","title":"data collection for the \"NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS\" bundle","description":"This is the data collection for the gbo.ast.denis.ir-photometry bundle. The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["DENIS 3-Channel Near-Infrared Camera","1-m photometric Cassegrain reflector at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":["Data"],"start_date":"1995-12-01","stop_date":"1999-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/collection_gbo.ast.denis.ir-photometry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/collection_gbo.ast.denis.ir-photometry_data.xml","scraped_at":"2026-02-25T20:02:10.751209Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-153591.radar.shape-model:document::1.0","title":"document collection for the \"SHAPE MODEL OF ASTEROID (153591) 2001 SN263\" bundle","description":"This is the document collection for the gbo.ast-153591.radar.shape-model bundle. We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(153591) 2001 SN263","(153591) 2001 SN263"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-9E","Leura 0.25m","SBIG ST-6","1-m Grubb reflector","FLI--FL-PL3041-1-BB","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Apogee AP8","Modra 0.6-m","Observatoire de Haute-Provence 1.2m CCD 1996-2014","1.20-m Newtonian reflector at Observatory of Haute-Provence","Palmer Divide 0.5m CCD","0.5m"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Leura","Crimean Astrophysical Observatory-Simeis","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Modra","Observatory of Haute-Provence","Palmer Divide Observatory"],"data_types":["Document"],"start_date":"2007-01-12","stop_date":"2008-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/collection_gbo.ast-153591.radar.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/collection_gbo.ast-153591.radar.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751217Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-153591.radar.shape-model:data::1.0","title":"data collection for the \"SHAPE MODEL OF ASTEROID (153591) 2001 SN263\" bundle","description":"This is the data collection for the gbo.ast-153591.radar.shape-model bundle. We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(153591) 2001 SN263","(153591) 2001 SN263"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-9E","Leura 0.25m","SBIG ST-6","1-m Grubb reflector","FLI--FL-PL3041-1-BB","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Apogee AP8","Modra 0.6-m","Observatoire de Haute-Provence 1.2m CCD 1996-2014","1.20-m Newtonian reflector at Observatory of Haute-Provence","Palmer Divide 0.5m CCD","0.5m"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Leura","Crimean Astrophysical Observatory-Simeis","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Modra","Observatory of Haute-Provence","Palmer Divide Observatory"],"data_types":["Data"],"start_date":"2007-01-12","stop_date":"2008-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/collection_gbo.ast-153591.radar.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/collection_gbo.ast-153591.radar.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751226Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-8567.radar.shape-model:document::1.0","title":"document collection for the \"SHAPE AND ROTATION OF (8567) 1996 HW1 \" bundle","description":"This is the document collection for the gbo.ast-8567.radar.shape-model bundle. We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(8567) 1996 HW1"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-8","SBIG ST-6","1-m Grubb reflector","SBIG ST-6","Apogee AP8","Modra 0.6-m","APOGEE AP8"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Crimean Astrophysical Observatory-Simeis","Modra"],"data_types":["Document"],"start_date":"2005-06-26","stop_date":"2009-01-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/collection_gbo.ast-8567.radar.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/collection_gbo.ast-8567.radar.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751232Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-8567.radar.shape-model:data::1.0","title":"data collection for the \"SHAPE AND ROTATION OF (8567) 1996 HW1 \" bundle","description":"This is the data collection for the gbo.ast-8567.radar.shape-model bundle. We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(8567) 1996 HW1"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-8","SBIG ST-6","1-m Grubb reflector","SBIG ST-6","Apogee AP8","Modra 0.6-m","APOGEE AP8"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Crimean Astrophysical Observatory-Simeis","Modra"],"data_types":["Data"],"start_date":"2005-06-26","stop_date":"2009-01-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/collection_gbo.ast-8567.radar.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/collection_gbo.ast-8567.radar.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751238Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves:document::1.0","title":"document collection for the \"SUBMILLIMETER LIGHTCURVES OF ASTEROIDS \" bundle","description":"This is the document collection for the gbo.ast.chamberlain.sub-mm-lightcurves bundle. Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(12) Victoria","(2) Pallas","(3) Juno","(4) Vesta","(511) Davida","(85) Io","Multiple Asteroids"],"instruments":["SMT MPIfR 19-channel Bolometer","10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"],"instrument_hosts":["Submillimeter Telescope Observatory"],"data_types":["Document"],"start_date":"2003-01-04","stop_date":"2004-05-06","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/collection_gbo.ast.chamberlain.sub-mm-lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/collection_gbo.ast.chamberlain.sub-mm-lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.751243Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves:data::1.0","title":"data collection for the \"SUBMILLIMETER LIGHTCURVES OF ASTEROIDS \" bundle","description":"This is the data collection for the gbo.ast.chamberlain.sub-mm-lightcurves bundle. Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(12) Victoria","(2) Pallas","(3) Juno","(4) Vesta","(511) Davida","(85) Io","Multiple Asteroids"],"instruments":["SMT MPIfR 19-channel Bolometer","10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"],"instrument_hosts":["Submillimeter Telescope Observatory"],"data_types":["Data"],"start_date":"2003-01-04","stop_date":"2004-05-06","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/collection_gbo.ast.chamberlain.sub-mm-lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/collection_gbo.ast.chamberlain.sub-mm-lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.751247Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.skads.astrometry-photometry:document::1.0","title":"document collection for the \"SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)\" bundle","description":"This is the document collection for the gbo.ast.skads.astrometry-photometry bundle. The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Kitt Peak Mosaic Camera","4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Document"],"start_date":"2001-03-21","stop_date":"2001-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/collection_gbo.ast.skads.astrometry-photometry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/collection_gbo.ast.skads.astrometry-photometry_document.xml","scraped_at":"2026-02-25T20:02:10.751251Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.skads.astrometry-photometry:data::1.0","title":"data collection for the \"SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)\" bundle","description":"This is the data collection for the gbo.ast.skads.astrometry-photometry bundle. The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Kitt Peak Mosaic Camera","4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2001-03-21","stop_date":"2001-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/collection_gbo.ast.skads.astrometry-photometry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/collection_gbo.ast.skads.astrometry-photometry_data.xml","scraped_at":"2026-02-25T20:02:10.751256Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteoroid.cmor.radar-survey:document::1.0","title":"document collection for the \"CMOR METEOROID STREAM SURVEY\" bundle","description":"This is the document collection for the gbo.meteoroid.cmor.radar-survey bundle. A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple"],"instruments":["Canadian Meteor Orbit Radar (CMOR)","Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"],"instrument_hosts":["UWO Meteor Radar Complex"],"data_types":["Document"],"start_date":"2002-01-01","stop_date":"2008-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/collection_gbo.meteoroid.cmor.radar-survey_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/collection_gbo.meteoroid.cmor.radar-survey_document.xml","scraped_at":"2026-02-25T20:02:10.751260Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteoroid.cmor.radar-survey:data::1.0","title":"data collection for the \"CMOR METEOROID STREAM SURVEY\" bundle","description":"This is the data collection for the gbo.meteoroid.cmor.radar-survey bundle. A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple"],"instruments":["Canadian Meteor Orbit Radar (CMOR)","Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"],"instrument_hosts":["UWO Meteor Radar Complex"],"data_types":["Data"],"start_date":"2002-01-01","stop_date":"2008-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/collection_gbo.meteoroid.cmor.radar-survey_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/collection_gbo.meteoroid.cmor.radar-survey_data.xml","scraped_at":"2026-02-25T20:02:10.751264Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-m-type.fornasier.spectra:document::1.0","title":"document collection for the \"FORNASIER SPECTRA OF M ASTEROIDS\" bundle","description":"This is the document collection for the gbo.ast-m-type.fornasier.spectra bundle. This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(110) Lydia","(125) Liberatrix","(129) Antigone","(132) Aethra","(135) Hertha","(16) Psyche","(161) Athor","(201) Penelope","(216) Kleopatra","(22) Kalliope","(224) Oceana","(250) Bettina","(325) Heidelberga","(338) Budrosa","(347) Pariana","(369) Aeria","(382) Dodona","(418) Alemannia","(441) Bathilde","(498) Tokio","(516) Amherstia","(55) Pandora","(558) Carmen","(69) Hesperia","(755) Quintilla","(785) Zwetana","(849) Ara","(860) Ursina","(872) Holda","(97) Klotho","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","ESO Multi-Mode Instrument: RILD Mode","New Technology Telescope (NTT) at European Southern Observatory","DOLORES (Device Optimized for LOw RESolution)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","Near Infrared Camera Spectrometer (NICS)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","SOFI (Son OF Isaac)","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["Mauna Kea Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","European Southern Observatory"],"data_types":["Document"],"start_date":"2004-02-29","stop_date":"2008-12-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/collection_gbo.ast-m-type.fornasier.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/collection_gbo.ast-m-type.fornasier.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751271Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-m-type.fornasier.spectra:data::1.0","title":"data collection for the \"FORNASIER SPECTRA OF M ASTEROIDS\" bundle","description":"This is the data collection for the gbo.ast-m-type.fornasier.spectra bundle. This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(110) Lydia","(125) Liberatrix","(129) Antigone","(132) Aethra","(135) Hertha","(16) Psyche","(161) Athor","(201) Penelope","(216) Kleopatra","(22) Kalliope","(224) Oceana","(250) Bettina","(325) Heidelberga","(338) Budrosa","(347) Pariana","(369) Aeria","(382) Dodona","(418) Alemannia","(441) Bathilde","(498) Tokio","(516) Amherstia","(55) Pandora","(558) Carmen","(69) Hesperia","(755) Quintilla","(785) Zwetana","(849) Ara","(860) Ursina","(872) Holda","(97) Klotho","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","ESO Multi-Mode Instrument: RILD Mode","New Technology Telescope (NTT) at European Southern Observatory","DOLORES (Device Optimized for LOw RESolution)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","Near Infrared Camera Spectrometer (NICS)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","SOFI (Son OF Isaac)","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["Mauna Kea Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","European Southern Observatory"],"data_types":["Data"],"start_date":"2004-02-29","stop_date":"2008-12-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/collection_gbo.ast-m-type.fornasier.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/collection_gbo.ast-m-type.fornasier.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751279Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.52-color-survey:document::1.0","title":"document collection for the \"52-COLOR ASTEROID SURVEY\" bundle","description":"This is the document collection for the gbo.ast.52-color-survey bundle. This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(101) Helena","(103) Hera","(1036) Ganymed","(1056) Azalea","(106) Dione","(11) Parthenope","(113) Amalthea","(114) Kassandra","(115) Thyra","(116) Sirona","(12) Victoria","(1219) Britta","(13) Egeria","(130) Elektra","(135) Hertha","(138) Tolosa","(145) Adeona","(15) Eunomia","(152) Atala","(153) Hilda","(16) Psyche","(1627) Ivar","(18) Melpomene","(1866) Sisyphus","(19) Fortuna","(2) Pallas","(20) Massalia","(21) Lutetia","(218) Bianca","(22) Kalliope","(221) Eos","(233) Asterope","(235) Carolina","(241) Germania","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(264) Libussa","(267) Tirza","(27) Euterpe","(270) Anahita","(289) Nenetta","(29) Amphitrite","(3) Juno","(308) Polyxo","(31) Euphrosyne","(317) Roxane","(32) Pomona","(324) Bamberga","(33) Polyhymnia","(336) Lacadiera","(346) Hermentaria","(349) Dembowska","(352) Gisela","(354) Eleonora","(3551) Verenia","(356) Liguria","(364) Isara","(367) Amicitia","(368) Haidea","(37) Fides","(376) Geometria","(379) Huenna","(385) Ilmatar","(387) Aquitania","(389) Industria","(39) Laetitia","(4) Vesta","(40) Harmonia","(42) Isis","(422) Berolina","(43) Ariadne","(431) Nephele","(44) Nysa","(446) Aeternitas","(46) Hestia","(476) Hedwig","(5) Astraea","(511) Davida","(521) Brixia","(532) Herculina","(554) Peraga","(57) Mnemosyne","(584) Semiramis","(59) Elpis","(6) Hebe","(6063) Jason","(63) Ausonia","(639) Latona","(64) Angelina","(65) Cybele","(653) Berenike","(661) Cloelia","(67) Asia","(674) Rachele","(68) Leto","(69) Hesperia","(7) Iris","(702) Alauda","(704) Interamnia","(714) Ulula","(76) Freia","(762) Pulcova","(772) Tanete","(773) Irmintraud","(80) Sappho","(82) Alkmene","(823) Sisigambis","(849) Ara","(86) Semele","(863) Benkoela","(89) Julia","(9) Metis","(92) Undina","(96) Aegle","(980) Anacostia","Multiple Asteroids"],"instruments":["Circularly Variable Filter","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"1983-06-11","stop_date":"1987-04-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/collection_gbo.ast.52-color-survey_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/collection_gbo.ast.52-color-survey_document.xml","scraped_at":"2026-02-25T20:02:10.751289Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.52-color-survey:data::1.0","title":"data collection for the \"52-COLOR ASTEROID SURVEY\" bundle","description":"This is the data collection for the gbo.ast.52-color-survey bundle. This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(101) Helena","(103) Hera","(1036) Ganymed","(1056) Azalea","(106) Dione","(11) Parthenope","(113) Amalthea","(114) Kassandra","(115) Thyra","(116) Sirona","(12) Victoria","(1219) Britta","(13) Egeria","(130) Elektra","(135) Hertha","(138) Tolosa","(145) Adeona","(15) Eunomia","(152) Atala","(153) Hilda","(16) Psyche","(1627) Ivar","(18) Melpomene","(1866) Sisyphus","(19) Fortuna","(2) Pallas","(20) Massalia","(21) Lutetia","(218) Bianca","(22) Kalliope","(221) Eos","(233) Asterope","(235) Carolina","(241) Germania","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(264) Libussa","(267) Tirza","(27) Euterpe","(270) Anahita","(289) Nenetta","(29) Amphitrite","(3) Juno","(308) Polyxo","(31) Euphrosyne","(317) Roxane","(32) Pomona","(324) Bamberga","(33) Polyhymnia","(336) Lacadiera","(346) Hermentaria","(349) Dembowska","(352) Gisela","(354) Eleonora","(3551) Verenia","(356) Liguria","(364) Isara","(367) Amicitia","(368) Haidea","(37) Fides","(376) Geometria","(379) Huenna","(385) Ilmatar","(387) Aquitania","(389) Industria","(39) Laetitia","(4) Vesta","(40) Harmonia","(42) Isis","(422) Berolina","(43) Ariadne","(431) Nephele","(44) Nysa","(446) Aeternitas","(46) Hestia","(476) Hedwig","(5) Astraea","(511) Davida","(521) Brixia","(532) Herculina","(554) Peraga","(57) Mnemosyne","(584) Semiramis","(59) Elpis","(6) Hebe","(6063) Jason","(63) Ausonia","(639) Latona","(64) Angelina","(65) Cybele","(653) Berenike","(661) Cloelia","(67) Asia","(674) Rachele","(68) Leto","(69) Hesperia","(7) Iris","(702) Alauda","(704) Interamnia","(714) Ulula","(76) Freia","(762) Pulcova","(772) Tanete","(773) Irmintraud","(80) Sappho","(82) Alkmene","(823) Sisigambis","(849) Ara","(86) Semele","(863) Benkoela","(89) Julia","(9) Metis","(92) Undina","(96) Aegle","(980) Anacostia","Multiple Asteroids"],"instruments":["Circularly Variable Filter","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"1983-06-11","stop_date":"1987-04-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/collection_gbo.ast.52-color-survey_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/collection_gbo.ast.52-color-survey_data.xml","scraped_at":"2026-02-25T20:02:10.751300Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.kbo-centaur.magnitudes:document::1.0","title":"document collection for the \"KBO AND CENTAUR ABSOLUTE MAGNITUDES \" bundle","description":"This is the document collection for the gbo.kbo-centaur.magnitudes bundle. This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1995-01-01","stop_date":"2001-05-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/collection_gbo.kbo-centaur.magnitudes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/collection_gbo.kbo-centaur.magnitudes_document.xml","scraped_at":"2026-02-25T20:02:10.751305Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.kbo-centaur.magnitudes:data::1.0","title":"data collection for the \"KBO AND CENTAUR ABSOLUTE MAGNITUDES \" bundle","description":"This is the data collection for the gbo.kbo-centaur.magnitudes bundle. This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1995-01-01","stop_date":"2001-05-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/collection_gbo.kbo-centaur.magnitudes_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/collection_gbo.kbo-centaur.magnitudes_data.xml","scraped_at":"2026-02-25T20:02:10.751309Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:meteoroid.steel.orbits:document::1.0","title":"document collection for the \"METEOROID ORBITS\" bundle","description":"This is the document collection for the meteoroid.steel.orbits bundle. This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1936-10-21","stop_date":"1983-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/collection_meteoroid.steel.orbits_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/collection_meteoroid.steel.orbits_document.xml","scraped_at":"2026-02-25T20:02:10.751313Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:meteoroid.steel.orbits:data::1.0","title":"data collection for the \"METEOROID ORBITS\" bundle","description":"This is the data collection for the meteoroid.steel.orbits bundle. This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1936-10-21","stop_date":"1983-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/collection_meteoroid.steel.orbits_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/collection_meteoroid.steel.orbits_data.xml","scraped_at":"2026-02-25T20:02:10.751317Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.nesvorny.families:document::1.0","title":"document collection for the \"NESVORNY HCM ASTEROID FAMILIES\" bundle","description":"This is the document collection for the ast.nesvorny.families bundle. This data set contains asteroid dynamical family memberships for 122 families calculated from synthetic proper elements, including high-inclination families. These families were calculated by David Nesvorny (Nesvorny et al. 2015) using his code based on the Hierarchical Clustering Method (HCM) described in Zappala et al. (1990, 1994). The input synthetic proper elements for 384,337 numbered asteroids were calculated by Knezevic and Milani.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/collection_ast.nesvorny.families_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/collection_ast.nesvorny.families_document.xml","scraped_at":"2026-02-25T20:02:10.751320Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.nesvorny.families:data::1.0","title":"data collection for the \"NESVORNY HCM ASTEROID FAMILIES\" bundle","description":"This is the data collection for the ast.nesvorny.families bundle. This data set contains asteroid dynamical family memberships for 122 families calculated from synthetic proper elements, including high-inclination families. These families were calculated by David Nesvorny (Nesvorny et al. 2015) using his code based on the Hierarchical Clustering Method (HCM) described in Zappala et al. (1990, 1994). The input synthetic proper elements for 384,337 numbered asteroids were calculated by Knezevic and Milani.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/collection_ast.nesvorny.families_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/collection_ast.nesvorny.families_data.xml","scraped_at":"2026-02-25T20:02:10.751324Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos:document::1.0","title":"document collection for the \"ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS\" bundle","description":"This is the document collection for the ast.shevchenko-tedesco.occultation-albedos bundle. This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1958-02-19","stop_date":"2005-02-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/collection_ast.shevchenko-tedesco.occultation-albedos_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/collection_ast.shevchenko-tedesco.occultation-albedos_document.xml","scraped_at":"2026-02-25T20:02:10.751327Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos:data::1.0","title":"data collection for the \"ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS\" bundle","description":"This is the data collection for the ast.shevchenko-tedesco.occultation-albedos bundle. This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1958-02-19","stop_date":"2005-02-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/collection_ast.shevchenko-tedesco.occultation-albedos_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/collection_ast.shevchenko-tedesco.occultation-albedos_data.xml","scraped_at":"2026-02-25T20:02:10.751331Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.olivines.pitman.lab-spectra:document::1.0","title":"document collection for the \"OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA\" bundle","description":"This is the document collection for the gbo.olivines.pitman.lab-spectra bundle. Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["METEORITIC FO81","Natural Fayalite (FO0)","Natural FO14","Natural FO31","Natural FO41","Natural FO45","Natural FO54","Natural FO63","Natural FO68","Natural FO9","Natural FO91","Natural FO93","msng (FO0)","Synthetic FO100","Synthetic FO50","Synthetic FO67","Synthetic FO75","Synthetic FO80"],"instruments":["BOMEM DA 3.02 FT-IR SPECTROMETER"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/collection_gbo.olivines.pitman.lab-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/collection_gbo.olivines.pitman.lab-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751336Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.olivines.pitman.lab-spectra:data::1.0","title":"data collection for the \"OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA\" bundle","description":"This is the data collection for the gbo.olivines.pitman.lab-spectra bundle. Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["METEORITIC FO81","Natural Fayalite (FO0)","Natural FO14","Natural FO31","Natural FO41","Natural FO45","Natural FO54","Natural FO63","Natural FO68","Natural FO9","Natural FO91","Natural FO93","msng (FO0)","Synthetic FO100","Synthetic FO50","Synthetic FO67","Synthetic FO75","Synthetic FO80"],"instruments":["BOMEM DA 3.02 FT-IR SPECTROMETER"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/collection_gbo.olivines.pitman.lab-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/collection_gbo.olivines.pitman.lab-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751341Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves:document::1.0","title":"document collection for the \"NEAR EARTH ASTEROID LIGHTCURVES\" bundle","description":"This is the document collection for the gbo.ast-neo.ondrejov.lightcurves bundle. This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(11066) Sigurd","(1627) Ivar","(1943) Anteros","1998 KY26","(2063) Bacchus","(2100) Ra-Shalom","(2102) Tantalus","(2212) Hephaistos","(3103) Eger","(3122) Florence","(3199) Nefertiti","(3200) Phaethon","(3691) Bede","(3752) Camillo","(4341) Poseidon","(4957) Brucemurray","(5143) Heracles","(5751) Zao","(7341) 1991 VK","(7474) 1992 TC","(7480) Norwan","(8034) Akka","Multiple Asteroids","(13651) 1997 BR","(17511) 1992 QN","(19356) 1997 GH3","(422638) 1994 CB","1995 FX","1997 GL3","(35107) 1991 VH","(5587) 1990 SB","(6053) 1993 BW3","(6322) 1991 CQ","(65679) 1989 UQ","(6569) Ondaatje","(7025) 1993 QA","(7482) 1994 PC1","(7822) 1991 CS","(7888) 1993 UC","(7889) 1994 LX","(8201) 1994 AH2","(85490) 1997 SE5","(99907) 1989 VA"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1984-08-29","stop_date":"1998-06-05","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/collection_gbo.ast-neo.ondrejov.lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/collection_gbo.ast-neo.ondrejov.lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.751347Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves:data::1.0","title":"data collection for the \"NEAR EARTH ASTEROID LIGHTCURVES\" bundle","description":"This is the data collection for the gbo.ast-neo.ondrejov.lightcurves bundle. This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(11066) Sigurd","(1627) Ivar","(1943) Anteros","1998 KY26","(2063) Bacchus","(2100) Ra-Shalom","(2102) Tantalus","(2212) Hephaistos","(3103) Eger","(3122) Florence","(3199) Nefertiti","(3200) Phaethon","(3691) Bede","(3752) Camillo","(4341) Poseidon","(4957) Brucemurray","(5143) Heracles","(5751) Zao","(7341) 1991 VK","(7474) 1992 TC","(7480) Norwan","(8034) Akka","Multiple Asteroids","(13651) 1997 BR","(17511) 1992 QN","(19356) 1997 GH3","(422638) 1994 CB","1995 FX","1997 GL3","(35107) 1991 VH","(5587) 1990 SB","(6053) 1993 BW3","(6322) 1991 CQ","(65679) 1989 UQ","(6569) Ondaatje","(7025) 1993 QA","(7482) 1994 PC1","(7822) 1991 CS","(7888) 1993 UC","(7889) 1994 LX","(8201) 1994 AH2","(85490) 1997 SE5","(99907) 1989 VA"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1984-08-29","stop_date":"1998-06-05","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/collection_gbo.ast-neo.ondrejov.lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/collection_gbo.ast-neo.ondrejov.lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.751353Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-high-inclination.gil-hutton.families:document::1.0","title":"document collection for the \"HIGH-INCLINATION ASTEROID FAMILIES\" bundle","description":"This is the document collection for the ast-high-inclination.gil-hutton.families bundle. This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"2005-03-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/collection_ast-high-inclination.gil-hutton.families_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/collection_ast-high-inclination.gil-hutton.families_document.xml","scraped_at":"2026-02-25T20:02:10.751357Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-high-inclination.gil-hutton.families:data::1.0","title":"data collection for the \"HIGH-INCLINATION ASTEROID FAMILIES\" bundle","description":"This is the data collection for the ast-high-inclination.gil-hutton.families bundle. This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2005-03-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/collection_ast-high-inclination.gil-hutton.families_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/collection_ast-high-inclination.gil-hutton.families_data.xml","scraped_at":"2026-02-25T20:02:10.751360Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot:data::1.0","title":"Whiteley NEO Photometry V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2.24-m Cassegrain/Coude reflector","UH Tektronix 2K CCD"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"1996-02-15","stop_date":"2000-07-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/collection_gbo.ast-neo.whiteley.ecas-phot_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/collection_gbo.ast-neo.whiteley.ecas-phot_data.xml","scraped_at":"2026-02-25T20:02:10.751364Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot:document::1.0","title":"Whiteley NEO Photometry V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2.24-m Cassegrain/Coude reflector","UH Tektronix 2K CCD"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"1996-02-15","stop_date":"2000-07-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/collection_gbo.ast-neo.whiteley.ecas-phot_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/collection_gbo.ast-neo.whiteley.ecas-phot_document.xml","scraped_at":"2026-02-25T20:02:10.751396Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra:data::1.0","title":"Gaffey Meteorite Spectra V1.0","description":"This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Hamlet","Elenovka","Queen's Mercy","Barwise","Chainpur","Sevrukovo","Cynthiana","Murchison","Shelburne","Mighei","Homestead","Coolidge","Butler","Aumale","Girgenti","Atlanta","Bruderheim","Kainsaz","Babb's Mill (Troost's Iron)","Ausson","Olivenza","Orgueil","Pantar","Alfianello","Mokoia","Cold Bokkeveld","Hvittis","Pillistfer","Nerft","Utrecht","Collescipoli","Allegan","Petersburg","Olmedilla de Alarcon","Ochansk","Chulafinnee","Tatahouine","Colby (Wisconsin)","Nakhla","Karoonda","Mezoe-Madaras","METEORITE","Leedey","Lance","Jonzac","Zavid","Manbhoom","Nanjemoy","Soko-Banja","Cabezo de Mayo","Murray","Tourinnes-la-Grosse","Daniel's Kuil","Veramin","Bereba","Vigarano","Warrenton","Khairpur","Shalka","Zhovtnevyi","Farmington","Buschhof","Casey County","Paragould","Parnellee","Juvinas","Sioux County","Rose City","Frankfort (stone)","Drake Creek","Leoville","Felix","Andover","Castalia","Alais","Haraiya","Bald Mountain","Le Teilleul","Abee","Grueneberg","Tieschitz","Saratov","Stannern","Allende","St. Mark's","Johnstown","Ornans","Jelica","Grosnaja","Forest City","Roda","Quenggouk","Chassigny","Pasamonte","Vavilovka","Nogoya","Angra dos Reis","MULTIPLE","St. Michel","Nobleborough","Indarch","Knyahina","Lancon","Padvarninkai","Pavlovka"],"instruments":["Beckman DK2A Ratio Recording Spectroreflectometer"],"instrument_hosts":["Terrestrial Laboratory"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/collection_gbo.meteorite.gaffey.lab-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/collection_gbo.meteorite.gaffey.lab-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751407Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra:document::1.0","title":"Gaffey Meteorite Spectra V1.0","description":"This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Hamlet","Elenovka","Queen's Mercy","Barwise","Chainpur","Sevrukovo","Cynthiana","Murchison","Shelburne","Mighei","Homestead","Coolidge","Butler","Aumale","Girgenti","Atlanta","Bruderheim","Kainsaz","Babb's Mill (Troost's Iron)","Ausson","Olivenza","Orgueil","Pantar","Alfianello","Mokoia","Cold Bokkeveld","Hvittis","Pillistfer","Nerft","Utrecht","Collescipoli","Allegan","Petersburg","Olmedilla de Alarcon","Ochansk","Chulafinnee","Tatahouine","Colby (Wisconsin)","Nakhla","Karoonda","Mezoe-Madaras","METEORITE","Leedey","Lance","Jonzac","Zavid","Manbhoom","Nanjemoy","Soko-Banja","Cabezo de Mayo","Murray","Tourinnes-la-Grosse","Daniel's Kuil","Veramin","Bereba","Vigarano","Warrenton","Khairpur","Shalka","Zhovtnevyi","Farmington","Buschhof","Casey County","Paragould","Parnellee","Juvinas","Sioux County","Rose City","Frankfort (stone)","Drake Creek","Leoville","Felix","Andover","Castalia","Alais","Haraiya","Bald Mountain","Le Teilleul","Abee","Grueneberg","Tieschitz","Saratov","Stannern","Allende","St. Mark's","Johnstown","Ornans","Jelica","Grosnaja","Forest City","Roda","Quenggouk","Chassigny","Pasamonte","Vavilovka","Nogoya","Angra dos Reis","MULTIPLE","St. Michel","Nobleborough","Indarch","Knyahina","Lancon","Padvarninkai","Pavlovka"],"instruments":["Beckman DK2A Ratio Recording Spectroreflectometer"],"instrument_hosts":["Terrestrial Laboratory"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/collection_gbo.meteorite.gaffey.lab-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/collection_gbo.meteorite.gaffey.lab-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751416Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.radar.shape-models:data::1.0","title":"Small Bodies Radar Shape Models V1.0","description":"This data set contains radar-based shape models for small solar system bodies, prepared by various authors.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1620) Geographos","(52760) 1998 ML14","(4769) Castalia","1998 KY26","(6489) Golevka","(216) Kleopatra","(4179) Toutatis","(25143) Itokawa","(2063) Bacchus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":["Data"],"start_date":"1989-08-19","stop_date":"2001-04-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/collection_compil.ast.radar.shape-models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/collection_compil.ast.radar.shape-models_data.xml","scraped_at":"2026-02-25T20:02:10.751423Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.radar.shape-models:document::1.0","title":"Small Bodies Radar Shape Models V1.0","description":"This data set contains radar-based shape models for small solar system bodies, prepared by various authors.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1620) Geographos","(52760) 1998 ML14","(4769) Castalia","1998 KY26","(6489) Golevka","(216) Kleopatra","(4179) Toutatis","(25143) Itokawa","(2063) Bacchus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":["Document"],"start_date":"1989-08-19","stop_date":"2001-04-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/collection_compil.ast.radar.shape-models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/collection_compil.ast.radar.shape-models_document.xml","scraped_at":"2026-02-25T20:02:10.751429Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra:data::1.0","title":"Gartrelle et al. IRTF Asteroid Spectra V1.0","description":"This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(3283) Skorina","(1542) Schalen","(1746) Brouwer","(2207) Antenor","Multiple Asteroids","(721) Tabora","(1269) Rollandia","(2208) Pushkin","(1256) Normannia","(1583) Antilochus","(2246) Bowell","(2357) Phereclos","(2311) El Leoncito","(884) Priamus","(336) Lacadiera","(1702) Kalahari","(2266) Tchaikovsky","(368) Haidea","(1167) Dubiago","(2872) Gentelec","(4744) Rovereto","(2674) Pandarus","(267) Tirza","(2893) Peiroos","(773) Irmintraud","(3248) Farinella"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2016-12-29","stop_date":"2019-01-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751435Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra:document::1.0","title":"Gartrelle et al. IRTF Asteroid Spectra V1.0","description":"This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(3283) Skorina","(1542) Schalen","(1746) Brouwer","(2207) Antenor","Multiple Asteroids","(721) Tabora","(1269) Rollandia","(2208) Pushkin","(1256) Normannia","(1583) Antilochus","(2246) Bowell","(2357) Phereclos","(2311) El Leoncito","(884) Priamus","(336) Lacadiera","(1702) Kalahari","(2266) Tchaikovsky","(368) Haidea","(1167) Dubiago","(2872) Gentelec","(4744) Rovereto","(2674) Pandarus","(267) Tirza","(2893) Peiroos","(773) Irmintraud","(3248) Farinella"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2016-12-29","stop_date":"2019-01-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751440Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.ast-eros.shape-model:data::1.1","title":"Gaskell Eros Shape Model V1.1","description":"The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-02-15","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/collection_gaskell.ast-eros.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/collection_gaskell.ast-eros.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751444Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.ast-eros.shape-model:document::1.1","title":"Gaskell Eros Shape Model V1.1","description":"The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Document"],"start_date":"2000-02-15","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/collection_gaskell.ast-eros.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/collection_gaskell.ast-eros.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751449Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.ast-itokawa.shape-model:data::1.1","title":"Gaskell Itokawa Shape Model V1.1","description":"The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":["Data"],"start_date":"2005-09-11","stop_date":"2005-11-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/collection_gaskell.ast-itokawa.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/collection_gaskell.ast-itokawa.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751452Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gaskell.ast-itokawa.shape-model:document::1.1","title":"Gaskell Itokawa Shape Model V1.1","description":"The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":["Document"],"start_date":"2005-09-11","stop_date":"2005-11-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/collection_gaskell.ast-itokawa.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/collection_gaskell.ast-itokawa.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751457Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-eros.roberts.ponds-catalog:data::1.1","title":"Roberts Eros Ponds Catalog V1.1","description":"This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-05-01","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/collection_ast-eros.roberts.ponds-catalog_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/collection_ast-eros.roberts.ponds-catalog_data.xml","scraped_at":"2026-02-25T20:02:10.751460Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-eros.roberts.ponds-catalog:document::1.1","title":"Roberts Eros Ponds Catalog V1.1","description":"This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Document"],"start_date":"2000-05-01","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/collection_ast-eros.roberts.ponds-catalog_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/collection_ast-eros.roberts.ponds-catalog_document.xml","scraped_at":"2026-02-25T20:02:10.751464Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry:document::1.1","title":"document collection for the \"POLARIMETRY OF ASTEROID ITOKAWA\" bundle","description":"This is the document collection for the gbo.ast-itokawa.torino.polarimetry bundle. This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(25143) Itokawa"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":["Document"],"start_date":"2004-06-28","stop_date":"2004-07-04","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/collection_gbo.ast-itokawa.torino.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/collection_gbo.ast-itokawa.torino.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.751468Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry:data::2.0","title":"data collection for the \"POLARIMETRY OF ASTEROID ITOKAWA\" bundle","description":"This is the data collection for the gbo.ast-itokawa.torino.polarimetry bundle. This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(25143) Itokawa"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":["Data"],"start_date":"2004-06-28","stop_date":"2004-07-04","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/collection_gbo.ast-itokawa.torino.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/collection_gbo.ast-itokawa.torino.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.751472Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.alcdef-database:document::1.0","title":"Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0","description":"The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1986-07-03","stop_date":"2021-09-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/collection_gbo.ast.alcdef-database_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/collection_gbo.ast.alcdef-database_document.xml","scraped_at":"2026-02-25T20:02:10.751477Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.alcdef-database:data::1.0","title":"Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0","description":"The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1986-07-03","stop_date":"2021-09-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/collection_gbo.ast.alcdef-database_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/collection_gbo.ast.alcdef-database_data.xml","scraped_at":"2026-02-25T20:02:10.751482Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-lightcurve-database:document::4.0","title":"Asteroid Lightcurve Database (LCDB) V4.0","description":"The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for for more than 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1913-01-01","stop_date":"2021-09-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/collection_ast-lightcurve-database_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/collection_ast-lightcurve-database_document.xml","scraped_at":"2026-02-25T20:02:10.751485Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-lightcurve-database:data::4.0","title":"Asteroid Lightcurve Database (LCDB) V4.0","description":"The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1913-01-01","stop_date":"2021-09-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/collection_ast-lightcurve-database_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/collection_ast-lightcurve-database_data.xml","scraped_at":"2026-02-25T20:02:10.751489Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-sat.thomas.shape-models:document::1.0","title":"Small Body Optical Shape Models V1.0","description":"The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST","Voyager","Galileo","Near Earth Asteroid Rendezvous","Viking","Phobos 2","Mariner71"],"targets":["(253) Mathilde","Mars I (Phobos)","Saturn XI (Epimetheus)","Mars II (Deimos)","(243) Ida","(951) Gaspra","(4) Vesta","Mars II (Deimos)","Saturn VII (Hyperion)","Saturn VII (Hyperion)","Saturn X (Janus)","Mars I (Phobos)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","Visual Imaging Subsystem - Camera A for VO2","Imaging Science Subsystem","Visual Imaging Subsystem - Camera B for VO2","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","Multi-spectral Imager","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","Solid State Imaging System","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat","Wide Field Planetary Camera 2"],"instrument_hosts":["Voyager 1","Viking Orbiter 2","Mariner 9","Viking Orbiter 2","Voyager 2","Near Earth Asteroid Rendezvous","Viking Orbiter 1","Galileo Orbiter","Viking Orbiter 1","Phobos 2","Hubble Space Telescope"],"data_types":["Document"],"start_date":"1976-06-22","stop_date":"1997-06-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/collection_ast-sat.thomas.shape-models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/collection_ast-sat.thomas.shape-models_document.xml","scraped_at":"2026-02-25T20:02:10.751498Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-sat.thomas.shape-models:data::1.0","title":"Small Body Optical Shape Models V1.0","description":"The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST","Voyager","Galileo","Near Earth Asteroid Rendezvous","Viking","Phobos 2","Mariner71"],"targets":["(253) Mathilde","Mars I (Phobos)","Saturn XI (Epimetheus)","Mars II (Deimos)","(243) Ida","(951) Gaspra","(4) Vesta","Mars II (Deimos)","Saturn VII (Hyperion)","Saturn VII (Hyperion)","Saturn X (Janus)","Mars I (Phobos)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","Visual Imaging Subsystem - Camera A for VO2","Imaging Science Subsystem","Visual Imaging Subsystem - Camera B for VO2","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","Multi-spectral Imager","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","Solid State Imaging System","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat","Wide Field Planetary Camera 2"],"instrument_hosts":["Voyager 1","Viking Orbiter 2","Mariner 9","Viking Orbiter 2","Voyager 2","Near Earth Asteroid Rendezvous","Viking Orbiter 1","Galileo Orbiter","Viking Orbiter 1","Phobos 2","Hubble Space Telescope"],"data_types":["Data"],"start_date":"1976-06-22","stop_date":"1997-06-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/collection_ast-sat.thomas.shape-models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/collection_ast-sat.thomas.shape-models_data.xml","scraped_at":"2026-02-25T20:02:10.751505Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-bennu.radar.shape-model:document::1.1","title":"Asteroid (101955) Bennu Radar Shape Model V1.1","description":"We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(101955) Bennu"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70 cm AZT-8","SBIG ST-6 UV camera","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Steward Observatory","Arecibo Observatory","Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station","Goldstone Complex","Goldstone Complex"],"data_types":["Document"],"start_date":"1999-09-21","stop_date":"2005-10-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/collection_ast-bennu.radar.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/collection_ast-bennu.radar.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751512Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast-bennu.radar.shape-model:data::1.1","title":"Asteroid (101955) Bennu Radar Shape Model V1.1","description":"We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(101955) Bennu"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70 cm AZT-8","SBIG ST-6 UV camera","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Steward Observatory","Arecibo Observatory","Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station","Goldstone Complex","Goldstone Complex"],"data_types":["Data"],"start_date":"1999-09-21","stop_date":"2005-10-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/collection_ast-bennu.radar.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/collection_ast-bennu.radar.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751518Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.primass-l.spectra:document::1.0","title":"PRIMASS-L V1.0","description":"PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of June 2021 this library contains spectra of about 642 asteroids from 10 families and two groups that had been sparsely studied before. 85% of our targets did not have published spectra and only 40% had visible photometry. PRIMASS-L contains spectra from a variety of ground-based facilities. This survey is ongoing and is expected to contain about 800 spectra by the end of 2022. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(5116) Korsor","(24048) Pedroduque","(96690) 1999 JA73","(147535) 2004 EH14","(147777) 2005 QV103","(122596) 2000 RG35","(41746) 2000 VD16","(25381) Jerrynelson","(250431) 2003 WL117","(3185) Clintford","(15202) Yamada-Houkoku","(6698) Malhotra","(12051) Picha","(364204) 2006 QR100","(52870) 1998 SC26","(37233) 2000 WV154","(37354) 2001 TN107","(39895) 1998 FK15","(15561) 2000 GU36","(133123) 2003 PO1","{109019) 2001 QT6","(6578) Zapesotskij","(29626) 1998 TV12","(107070) 2001 AH16","(29623) 1998 SR164","(120190) 2004 CL97","(28894) Ryanchung","(940) Kordula","(15794) 1993 TG31","(6343) 1993 VK","(180349) 2003 YW71","(63310) 2001 FS21","(249427) 2009 EH18","(63312) 2001 FH24","(67918) 2000 WW109","(57068) 2001 OC1","(38661) 2000 OC49","(72384) 2001 CF12","(100784) 1998 FM61","(72143) 2000 YQ86","(252953) 2002 PB91","(12072) Anupamakotha","(78921) 2003 SP108","(132056) 2002 CA141","(24037) 1999 SB7","(96463) 1998 HW51","(106085) 2000 SO355","(39888) 1998 ES20","(2081) Sazava","(25490) Kevinkelly","(5594) Jimmiller","(3298) Massandra","(155162) 2005 UZ104","(95018) 2002 AZ9","(6769) Brokoff","(238992) 2006 BH260","(76922) 2001 AH15","(20843) Kuotzuhao","(262102) 2006 RE98","(33913) 2000 LK14","(116717) 2004 DU8","(27354) Stiklaitis","(80062) 1999 JX85","(18759) 1999 HO2","(59065) 1998 UB43","(752) Sulamitis","(39694) 1996 ST2","(132091) 2002 CC175","(5327) 1989 EX1","(74755) 1999 RL199","(3146) Dato","(6415) 1993 VR3","(61560) 2000 QT74","(33804) 1999 WL4","(107032) 2000 YB1240","(26394) Kandola","(114308) 2002 XY50","(148658) 2001 SG128","(175811) 1999 RS193","(362332) 2010 KW34","(96405) 1998 ES","(96768) 1999 RH50","(5333) Kanaya","(623) Chimaera","(14264) 2000 AH142","(6661) Ikemura","(50239) 2000 BW3","(1177) Gonnessia","(147241) 2002 XW62","(48153) 2001 FW172","(121096) 1999 FG51","(25036) Elizabethof","(26121) 1992 BX","(38106) 1999 JG23","(41525) 2000 QP218","(135384) 2001 TT166","(36286) 2000 EL14","(1183) Jutta","(3485) Barucci","(52891) 1998 SM61","(2279) Barto","(73205) 2002 JY16","(5429) 1988 BZ1","(246226) 2007 RH212","(84211) 2002 RV141","(59397) 1999 FT26","(3130) Hillary","(15134) 2000 ED92","(72230) 2001 AN15","(133197) 2003 QS59","(5794) Irmina","(129818) 1999 NE28","(17230) 2000 CX116","(138668) 2000 RB103","(38173) 1999 JZ112","(66403) 1999 LM13","(85167) 1989 RS2","(42431) 1051 T-3","(42552) 1996 RH25","(34923) 4870 P-L","(790) Pretoria","(313) Chaldaea","(23916) 1998 SD131","(113374) 2002 SB8","(98345) 2000 SQ304","(169066) 2001 FR157","(42781) 1998 VL28","(7030) Colombini","(7394) Xanthomalitia","(302) Clarissa","(77421) 2001 GB","(7274) Washioyama","(300289) 2007 OM10","(162755) Spacesora","(117745) 2005 GP37","(10979) Fristephenson","(32847) 1992 JO3","(66421) 1999 NQ19","(66309) 1999 JX41","(78889) 2003 SA36","(79610) 1998 RF51","(186714) 2004 BV88","(528) Rezia","(6039) Parmenides","(20992) 1985 RV2","(98246) 2000 SY166","(53537) 2000 AZ239","(44942) 1999 VM55","(2918) Salazar","(203620) 2002 EU125","(9792) Nonodakesan","(99691) 2002 JP27","(69706) 1998 HJ77","(173657) 2001 HN14","(401) Ottilia","(19415) Parvamenon","(8106) Carpino","(17233) Stanshapiro","(18483) 1995 YY2","(78826) 2003 QE17","(44773) 1999 TU140","(10992) Veryuslaviya","(6374) Beslan","(72047) 2000 YZ6","(72169) 2000 YW107","(186530) 2002 VX78","(1923) Osiris","(44766) 1999 TM123","(67940) 2000 WT143","(10866) Peru","(72292) 2001 BE22","(34857) 2001 TB36","(225) Henrietta","(210564) 1999 TR195","(6142) Tantawi","(229) Adelinda","(7231) Porco","(108631) 2001 NG","(45846) 2000 RA96","(208048) 1999 TL149","(162795) 2000 YF52","(171027) 2005 EN57","(56970) 2000 SJ111","(172478) 2003 SM87","(334) Chicago","(53103) 1999 AB2","(4173) Thicksten","(90975) 1997 WF37","(212417) 2006 KJ103","(9860) Archaeopteryx","(24907) Alfredhaar","(20432) 1999 BD12","(329) Svea","(1902) Shaposhnikov","(208039) 1999 RV113","(256789) 2008 CY45","(11856) Nicolabonev","(561) Ingwelde","(137397) 1999 TH165","(170184) 2003 MV11","(5158) Ogarev","(56600) 2000 JK50","(50068) 2000 AR77","(2642) Vesale","(25932) 2001 DB72","(106794) 2000 XK26","(1674) Groeneveld","(24726) 1991 VY","Multiple Asteroids","(265259) 2004 EW82","(1439) Vogtia","(80789) 2000 CC85","(165403) 2000 XM43","(126046) 2001 YH72","(42155) 2001 BA63","(77495) 2001 HM37","(110819) 2001 UW49","(174594) 2003 QH56","(57400) 2001 RR90","(30043) Lisamichaels","(70511) 1999 TL103","(71966) 2000 WP118","(3626) Ohsaki","(16090) Lukaszewski","(2534) Houzeau","(165536) 2001 DC6","(1209) Pumma","(67586) 2000 SH125","(45892) 2000 WR179","(149396) 2003 AU39","(9052) Uhland","(142751) 2002 TG300","(142) Polana","(35627)1998 KW9","(178844) 2001 HG53","(25829) 2000 DU108","(268) Adorea","(75089) 1999 VY30","(174120) 2002 JC146","(55454) 2001 TJ128","(67352) 2000 JN80","(107861) 2001 FN80","(72941) 2002 CD8","(68685) 2002 CK142","(107742) 2001 FH33","(70528) 1999 TF116","(119526) 2001 UF175","(43346) 2000 RT103","(186446) 2002 SM30","(132509) 2002 JU41","(151019) 2001 UF119","(495) Eulalia","(96918) 1999 TJ113","(173129) 1994 JH2","(77278) 2001 FL61","(213825) 2003 QW63","(39094) 2000 VQ58","(1782) Schneller","(24956) Qiannan","(3843) OISCA","(5900) Jensen","(42006) 2000 YA50","(60852) 2000 HU65","Multiple","(123915) 2001 DK95","(67891) 2000 WR61","(66325) 1999 JF55","(65354) 2002 NG43","(98391) 2000 TL62","(13509) Guayaquil","(334314) 2001 VY132","(57442) 2001 SF54","(8032) Michaeladams","(34326) Zhaurova","(325852) 2010 TO53","(18075) Donasharma","(43152) 1999 XM115","(242324) 2003 YY12","(304858) 2007 RQ77","(1768) Appenzella","(80754) 2000 CV49","(66333) 1999 JS60","(24650) 1986 QM","(80993) 2000 EY26","(54286) 2000 JD51","(249089) 2007 VL55","(34339) 2000 QH218","(56349) 2000 AZ90","(26719) 2001 HQ5","(120548) 1995 BO","(7078) Unojonsson","(71932) 2000 WO61","(98178) 2000 SU99","(110518) 2001 TY78","(332038) 2005 QZ73","(243648) 1999 TX176","(92634) 2000 QN19","(168936) 2000 YN95","(26807) 1982 RK1","(44463) 1998 VT18","(153694) 2001 UV28","(65264) 2002 GW16","(133503) 2003 SW288","(24638) 1981 UC23","(161079) 2002 LP61","(14849) 1989 GQ1","(11214) 1999 HP8","(253798) 2003 XP17","(12421) Zhenya","(53170) 1999 CH19","(9476) 1998 QQ36","(3577) Putilin","(27715) 1989 CR1","(183911) 2004 CB100","(131119) 2001 BK4","(24322) 2000 AM43","(21176) 1994 CN13","(34487) 2000 SE133","(86812) 2000 GB125","(122871) 2000 SX138","(85727) 1998 SC75","(1280) Baillauda","(32061) 2000 JK48","(78069) 2002 LU4","(93347) 2000 SX247","(6857) Castelli","(26516) 2000 CW56","(49859) 1999 XB100","(45378) 2000 AD118","(49731) 1999 VR80","(164286) 2004 XO86","(79044) 3919 T-2","(13537) 1991 SG","(57473) 2001 SE127","(320575) 2008 AM110","(123979) 2001 FB38","(156670) 2002 JK111","(73860) 1996 XR5","(255959) 2006 TP34","(253538) 2003 SX220","(5771) Somerville","(3556) Lixiaohua","(70361) 1999 RK189","(4648) Tirion","(72308) 2001 BZ34","(217593) 2008 FK3","(81010) 2000 EL35","(85626) 1998 HM141","(206344) 2003 PA8","(34228) 2000 QF90","(14530) 1997 PR","(74962) 1999 TW200","(69266) 1988 RJ6","(49833) 1999 XB84","(1144) Oda","(1386) Storeria","(237295) 2008 YN7","(3202) Graff","(1269) Rollandia","(60571) 2000 ER116","(45357) 2000 AC102","(84536) 2002 UV19","(42089) 2001 AQ15","(106919) 2000 YC53","(106918) 2000 YZ52","(61309) 2000 OF50","(6840) 1995 WW5","(3330) Gantrisch","(111789) 2002 CQ236","(2563) Boyarchuk","(132248) 2002 EM90","(23270) Kellerman","(23397) 5122 T-3","(6806) Kaufmann","(242858) 2006 GJ9","(69679) 1998 HR15","(37437) 2576 P-L","(166264) 2002 GL74","(232922) 2005 AP26","(36469) 2000 QT23","(40976) 1999 TV272","(70427) 1999 TB1","(52951) 1998 SO147","(36465) 2000 QR19","(6815) Mutchler","(132352) 2002 GV54","(909) Ulla","(142282) 2002 RT128","(68114) Deakferenc","(53918) 2000 GM18","(120384) 2005 QU29","(251796) 1999 TO9","(58240) 1993 FV81","(70312) 1999 RM137","(175194) 2005 EL268","(112414) 2002 NV42","(71655) 2000 EF121","(262642) 2006 WT49","(66062) 1998 RG1","(208724) 2002 JV130","(59322) 1999 CB95","(39955) 1998 FV118","(35358) Lorifini","(8091) 1992 BG","(68490) 2001 TH239","(27506) 2000 GQ141","(24358) 2000 AV117","(2794) Kulik","(84) Klio","(112308) 2002 LR47","(109030) 2001 QL10","(79143) 1992 BQ2","(142297) 2002 RF145","(169633) 2002 HQ12","(61500) 2000 QV51","(203141) 2000 UV41","(177258) 2003 WX39","(59317) 1999 CN89","(122109) 2000 HJ94","(132383) 2002 GQ83"],"instruments":["3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","DOLORES (Device Optimized for LOw RESolution)","New Technology Telescope (NTT)","ESO Faint Object Spectrograph and Camera 2","Gran Telescopio Canaria (GTC)","GTC OSIRIS Optical Imager and Spectrograph","2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)","Intermediate Dispersion Spectrograph (IDS)","SOAR","SOAR-GHTS"],"instrument_hosts":["Roque de los Muchachos Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","Cerro Tololo Inter-American Observatory"],"data_types":["Document"],"start_date":"2010-10-12","stop_date":"2018-04-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/collection_gbo.ast.primass-l.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/collection_gbo.ast.primass-l.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751547Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.primass-l.spectra:data::1.0","title":"PRIMASS-L V1.0","description":"PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of June 2021 this library contains spectra of about 642 asteroids from 10 families and two groups that had been sparsely studied before. 85% of our targets did not have published spectra and only 40% had visible photometry. PRIMASS-L contains spectra from a variety of ground-based facilities. This survey is ongoing and is expected to contain about 800 spectra by the end of 2022. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(5116) Korsor","(24048) Pedroduque","(96690) 1999 JA73","(147535) 2004 EH14","(147777) 2005 QV103","(122596) 2000 RG35","(41746) 2000 VD16","(25381) Jerrynelson","(250431) 2003 WL117","(3185) Clintford","(15202) Yamada-Houkoku","(6698) Malhotra","(12051) Picha","(364204) 2006 QR100","(52870) 1998 SC26","(37233) 2000 WV154","(37354) 2001 TN107","(39895) 1998 FK15","(15561) 2000 GU36","(133123) 2003 PO1","{109019) 2001 QT6","(6578) Zapesotskij","(29626) 1998 TV12","(107070) 2001 AH16","(29623) 1998 SR164","(120190) 2004 CL97","(28894) Ryanchung","(940) Kordula","(15794) 1993 TG31","(6343) 1993 VK","(180349) 2003 YW71","(63310) 2001 FS21","(249427) 2009 EH18","(63312) 2001 FH24","(67918) 2000 WW109","(57068) 2001 OC1","(38661) 2000 OC49","(72384) 2001 CF12","(100784) 1998 FM61","(72143) 2000 YQ86","(252953) 2002 PB91","(12072) Anupamakotha","(78921) 2003 SP108","(132056) 2002 CA141","(24037) 1999 SB7","(96463) 1998 HW51","(106085) 2000 SO355","(39888) 1998 ES20","(2081) Sazava","(25490) Kevinkelly","(5594) Jimmiller","(3298) Massandra","(155162) 2005 UZ104","(95018) 2002 AZ9","(6769) Brokoff","(238992) 2006 BH260","(76922) 2001 AH15","(20843) Kuotzuhao","(262102) 2006 RE98","(33913) 2000 LK14","(116717) 2004 DU8","(27354) Stiklaitis","(80062) 1999 JX85","(18759) 1999 HO2","(59065) 1998 UB43","(752) Sulamitis","(39694) 1996 ST2","(132091) 2002 CC175","(5327) 1989 EX1","(74755) 1999 RL199","(3146) Dato","(6415) 1993 VR3","(61560) 2000 QT74","(33804) 1999 WL4","(107032) 2000 YB1240","(26394) Kandola","(114308) 2002 XY50","(148658) 2001 SG128","(175811) 1999 RS193","(362332) 2010 KW34","(96405) 1998 ES","(96768) 1999 RH50","(5333) Kanaya","(623) Chimaera","(14264) 2000 AH142","(6661) Ikemura","(50239) 2000 BW3","(1177) Gonnessia","(147241) 2002 XW62","(48153) 2001 FW172","(121096) 1999 FG51","(25036) Elizabethof","(26121) 1992 BX","(38106) 1999 JG23","(41525) 2000 QP218","(135384) 2001 TT166","(36286) 2000 EL14","(1183) Jutta","(3485) Barucci","(52891) 1998 SM61","(2279) Barto","(73205) 2002 JY16","(5429) 1988 BZ1","(246226) 2007 RH212","(84211) 2002 RV141","(59397) 1999 FT26","(3130) Hillary","(15134) 2000 ED92","(72230) 2001 AN15","(133197) 2003 QS59","(5794) Irmina","(129818) 1999 NE28","(17230) 2000 CX116","(138668) 2000 RB103","(38173) 1999 JZ112","(66403) 1999 LM13","(85167) 1989 RS2","(42431) 1051 T-3","(42552) 1996 RH25","(34923) 4870 P-L","(790) Pretoria","(313) Chaldaea","(23916) 1998 SD131","(113374) 2002 SB8","(98345) 2000 SQ304","(169066) 2001 FR157","(42781) 1998 VL28","(7030) Colombini","(7394) Xanthomalitia","(302) Clarissa","(77421) 2001 GB","(7274) Washioyama","(300289) 2007 OM10","(162755) Spacesora","(117745) 2005 GP37","(10979) Fristephenson","(32847) 1992 JO3","(66421) 1999 NQ19","(66309) 1999 JX41","(78889) 2003 SA36","(79610) 1998 RF51","(186714) 2004 BV88","(528) Rezia","(6039) Parmenides","(20992) 1985 RV2","(98246) 2000 SY166","(53537) 2000 AZ239","(44942) 1999 VM55","(2918) Salazar","(203620) 2002 EU125","(9792) Nonodakesan","(99691) 2002 JP27","(69706) 1998 HJ77","(173657) 2001 HN14","(401) Ottilia","(19415) Parvamenon","(8106) Carpino","(17233) Stanshapiro","(18483) 1995 YY2","(78826) 2003 QE17","(44773) 1999 TU140","(10992) Veryuslaviya","(6374) Beslan","(72047) 2000 YZ6","(72169) 2000 YW107","(186530) 2002 VX78","(1923) Osiris","(44766) 1999 TM123","(67940) 2000 WT143","(10866) Peru","(72292) 2001 BE22","(34857) 2001 TB36","(225) Henrietta","(210564) 1999 TR195","(6142) Tantawi","(229) Adelinda","(7231) Porco","(108631) 2001 NG","(45846) 2000 RA96","(208048) 1999 TL149","(162795) 2000 YF52","(171027) 2005 EN57","(56970) 2000 SJ111","(172478) 2003 SM87","(334) Chicago","(53103) 1999 AB2","(4173) Thicksten","(90975) 1997 WF37","(212417) 2006 KJ103","(9860) Archaeopteryx","(24907) Alfredhaar","(20432) 1999 BD12","(329) Svea","(1902) Shaposhnikov","(208039) 1999 RV113","(256789) 2008 CY45","(11856) Nicolabonev","(561) Ingwelde","(137397) 1999 TH165","(170184) 2003 MV11","(5158) Ogarev","(56600) 2000 JK50","(50068) 2000 AR77","(2642) Vesale","(25932) 2001 DB72","(106794) 2000 XK26","(1674) Groeneveld","(24726) 1991 VY","Multiple Asteroids","(265259) 2004 EW82","(1439) Vogtia","(80789) 2000 CC85","(165403) 2000 XM43","(126046) 2001 YH72","(42155) 2001 BA63","(77495) 2001 HM37","(110819) 2001 UW49","(174594) 2003 QH56","(57400) 2001 RR90","(30043) Lisamichaels","(70511) 1999 TL103","(71966) 2000 WP118","(3626) Ohsaki","(16090) Lukaszewski","(2534) Houzeau","(165536) 2001 DC6","(1209) Pumma","(67586) 2000 SH125","(45892) 2000 WR179","(149396) 2003 AU39","(9052) Uhland","(142751) 2002 TG300","(142) Polana","(35627)1998 KW9","(178844) 2001 HG53","(25829) 2000 DU108","(268) Adorea","(75089) 1999 VY30","(174120) 2002 JC146","(55454) 2001 TJ128","(67352) 2000 JN80","(107861) 2001 FN80","(72941) 2002 CD8","(68685) 2002 CK142","(107742) 2001 FH33","(70528) 1999 TF116","(119526) 2001 UF175","(43346) 2000 RT103","(186446) 2002 SM30","(132509) 2002 JU41","(151019) 2001 UF119","(495) Eulalia","(96918) 1999 TJ113","(173129) 1994 JH2","(77278) 2001 FL61","(213825) 2003 QW63","(39094) 2000 VQ58","(1782) Schneller","(24956) Qiannan","(3843) OISCA","(5900) Jensen","(42006) 2000 YA50","(60852) 2000 HU65","Multiple","(123915) 2001 DK95","(67891) 2000 WR61","(66325) 1999 JF55","(65354) 2002 NG43","(98391) 2000 TL62","(13509) Guayaquil","(334314) 2001 VY132","(57442) 2001 SF54","(8032) Michaeladams","(34326) Zhaurova","(325852) 2010 TO53","(18075) Donasharma","(43152) 1999 XM115","(242324) 2003 YY12","(304858) 2007 RQ77","(1768) Appenzella","(80754) 2000 CV49","(66333) 1999 JS60","(24650) 1986 QM","(80993) 2000 EY26","(54286) 2000 JD51","(249089) 2007 VL55","(34339) 2000 QH218","(56349) 2000 AZ90","(26719) 2001 HQ5","(120548) 1995 BO","(7078) Unojonsson","(71932) 2000 WO61","(98178) 2000 SU99","(110518) 2001 TY78","(332038) 2005 QZ73","(243648) 1999 TX176","(92634) 2000 QN19","(168936) 2000 YN95","(26807) 1982 RK1","(44463) 1998 VT18","(153694) 2001 UV28","(65264) 2002 GW16","(133503) 2003 SW288","(24638) 1981 UC23","(161079) 2002 LP61","(14849) 1989 GQ1","(11214) 1999 HP8","(253798) 2003 XP17","(12421) Zhenya","(53170) 1999 CH19","(9476) 1998 QQ36","(3577) Putilin","(27715) 1989 CR1","(183911) 2004 CB100","(131119) 2001 BK4","(24322) 2000 AM43","(21176) 1994 CN13","(34487) 2000 SE133","(86812) 2000 GB125","(122871) 2000 SX138","(85727) 1998 SC75","(1280) Baillauda","(32061) 2000 JK48","(78069) 2002 LU4","(93347) 2000 SX247","(6857) Castelli","(26516) 2000 CW56","(49859) 1999 XB100","(45378) 2000 AD118","(49731) 1999 VR80","(164286) 2004 XO86","(79044) 3919 T-2","(13537) 1991 SG","(57473) 2001 SE127","(320575) 2008 AM110","(123979) 2001 FB38","(156670) 2002 JK111","(73860) 1996 XR5","(255959) 2006 TP34","(253538) 2003 SX220","(5771) Somerville","(3556) Lixiaohua","(70361) 1999 RK189","(4648) Tirion","(72308) 2001 BZ34","(217593) 2008 FK3","(81010) 2000 EL35","(85626) 1998 HM141","(206344) 2003 PA8","(34228) 2000 QF90","(14530) 1997 PR","(74962) 1999 TW200","(69266) 1988 RJ6","(49833) 1999 XB84","(1144) Oda","(1386) Storeria","(237295) 2008 YN7","(3202) Graff","(1269) Rollandia","(60571) 2000 ER116","(45357) 2000 AC102","(84536) 2002 UV19","(42089) 2001 AQ15","(106919) 2000 YC53","(106918) 2000 YZ52","(61309) 2000 OF50","(6840) 1995 WW5","(3330) Gantrisch","(111789) 2002 CQ236","(2563) Boyarchuk","(132248) 2002 EM90","(23270) Kellerman","(23397) 5122 T-3","(6806) Kaufmann","(242858) 2006 GJ9","(69679) 1998 HR15","(37437) 2576 P-L","(166264) 2002 GL74","(232922) 2005 AP26","(36469) 2000 QT23","(40976) 1999 TV272","(70427) 1999 TB1","(52951) 1998 SO147","(36465) 2000 QR19","(6815) Mutchler","(132352) 2002 GV54","(909) Ulla","(142282) 2002 RT128","(68114) Deakferenc","(53918) 2000 GM18","(120384) 2005 QU29","(251796) 1999 TO9","(58240) 1993 FV81","(70312) 1999 RM137","(175194) 2005 EL268","(112414) 2002 NV42","(71655) 2000 EF121","(262642) 2006 WT49","(66062) 1998 RG1","(208724) 2002 JV130","(59322) 1999 CB95","(39955) 1998 FV118","(35358) Lorifini","(8091) 1992 BG","(68490) 2001 TH239","(27506) 2000 GQ141","(24358) 2000 AV117","(2794) Kulik","(84) Klio","(112308) 2002 LR47","(109030) 2001 QL10","(79143) 1992 BQ2","(142297) 2002 RF145","(169633) 2002 HQ12","(61500) 2000 QV51","(203141) 2000 UV41","(177258) 2003 WX39","(59317) 1999 CN89","(122109) 2000 HJ94","(132383) 2002 GQ83"],"instruments":["3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","DOLORES (Device Optimized for LOw RESolution)","New Technology Telescope (NTT)","ESO Faint Object Spectrograph and Camera 2","Gran Telescopio Canaria (GTC)","GTC OSIRIS Optical Imager and Spectrograph","2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)","Intermediate Dispersion Spectrograph (IDS)","SOAR","SOAR-GHTS"],"instrument_hosts":["Roque de los Muchachos Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"2010-10-12","stop_date":"2018-04-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/collection_gbo.ast.primass-l.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/collection_gbo.ast.primass-l.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751576Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asteroid_polarimetric_database:document::2.0","title":"Asteroid Polarimetric Database V2.0","description":"The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1958-10-22","stop_date":"2020-12-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/collection_asteroid_polarimetric_database_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/collection_asteroid_polarimetric_database_document.xml","scraped_at":"2026-02-25T20:02:10.751583Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:asteroid_polarimetric_database:data::2.0","title":"Asteroid Polarimetric Database V2.0","description":"The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1958-10-22","stop_date":"2020-12-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/collection_asteroid_polarimetric_database_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/collection_asteroid_polarimetric_database_data.xml","scraped_at":"2026-02-25T20:02:10.751588Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-ceres.alma.images-spectra:document::1.0","title":"ALMA Ceres Imaging and Spectrum V1.0","description":"This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres"],"instruments":["Atacama Millimeter/submillimeter Array (ALMA)","ALMA Radio Receivers"],"instrument_hosts":["European Southern Observatory - Chajnantor"],"data_types":["Document"],"start_date":"2015-10-31","stop_date":"2017-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/collection_gbo.ast-ceres.alma.images-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/collection_gbo.ast-ceres.alma.images-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751592Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-ceres.alma.images-spectra:data::1.0","title":"ALMA Ceres Imaging and Spectrum V1.0","description":"This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres"],"instruments":["Atacama Millimeter/submillimeter Array (ALMA)","ALMA Radio Receivers"],"instrument_hosts":["European Southern Observatory - Chajnantor"],"data_types":["Data"],"start_date":"2015-10-31","stop_date":"2017-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/collection_gbo.ast-ceres.alma.images-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/collection_gbo.ast-ceres.alma.images-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751596Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.mission:context::1.2","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Context","description":"This collection contains the context prodcuts applicable to the OSIRIS-REx mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","TAGCAMS","OLA","OTES","OVIRS","REXIS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.753084Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.mission:document::9.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document","description":"This collection contains the documents applicable to the OSIRIS-REx mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","TAGCAMS","OLA","OTES","OVIRS","REXIS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753090Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.mission:xml_schema::6.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): XML_Schema","description":"This collection contains the xml_schema prodcuts applicable to the OSIRIS-REx mission as a whole; includes the mission dictionary.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","TAGCAMS","OLA","OTES","OVIRS","REXIS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.753094Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola:data_calibrated::3.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) calibrated science data products.","description":"This collection contains the calibrated (processing level 2 calibrated) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/collection_ola_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/collection_ola_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753098Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola:data_calibrated_v2::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) calibrated science data products.","description":"This collection contains the calibrated (processing level 2 calibrated) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft. The products in this collection are calibrated with the most refined calibration available for the OLA instrument. Details of this calibration can be found in Version 6.0 of the OLA SIS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/collection_ola_data_calibrated_v2.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/collection_ola_data_calibrated_v2.xml","scraped_at":"2026-02-25T20:02:10.753103Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola:data_hkl0::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) raw state of health (housekeeping) data products.","description":"This collection contains the raw (processing level 0 raw) state of health (housekeeping) data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/collection_ola_data_hkl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/collection_ola_data_hkl0.xml","scraped_at":"2026-02-25T20:02:10.753107Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola:data_hkl1::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced state of health (housekeeping) data products.","description":"This collection contains the reduced (processing level 1 reduced) state of health (housekeeping) data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/collection_ola_data_hkl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/collection_ola_data_hkl1.xml","scraped_at":"2026-02-25T20:02:10.753110Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola:data_raw::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) raw science data products.","description":"This collection contains the raw (processing level 0 raw) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/collection_ola_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/collection_ola_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753114Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola:data_reduced::3.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced science data products.","description":"This collection contains the reduced (processing level 1 reduced) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/collection_ola_data_reduced.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/collection_ola_data_reduced.xml","scraped_at":"2026-02-25T20:02:10.753117Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola:data_reduced_v2::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced science data products.","description":"This collection contains the reduced (processing level 1 reduced) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft. The products in this collection are calibrated with the most refined calibration available for the OLA instrument. Details of this calibration can be found in Version 6.0 of the OLA SIS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/collection_ola_data_reduced_v2.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/collection_ola_data_reduced_v2.xml","scraped_at":"2026-02-25T20:02:10.753122Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ola:document::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OLA Document","description":"This collection contains the documents applicable to the OSIRIS-REx Laser Altimeter (OLA) instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/collection_ola_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/collection_ola_document.xml","scraped_at":"2026-02-25T20:02:10.753125Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.otes:data_calibrated::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Calibrated","description":"This collection contains the calibrated spectra acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/collection_otes_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/collection_otes_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753128Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.otes:data_converted::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Converted","description":"This collection contains the voltage interferograms acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/collection_otes_converted.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/collection_otes_converted.xml","scraped_at":"2026-02-25T20:02:10.753132Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.otes:data_engl0::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Raw Engineering","description":"This collection contains the raw engineering data acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES). Data are grouped by day.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/collection_otes_engl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/collection_otes_engl0.xml","scraped_at":"2026-02-25T20:02:10.753135Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.otes:data_engl1::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Converted Engineering","description":"This collection contains the engineering data converted to physical units acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES). Data are grouped by day.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/collection_otes_engl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/collection_otes_engl1.xml","scraped_at":"2026-02-25T20:02:10.753139Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.otes:data_raw::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Raw","description":"This collection contains the raw interferograms acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/collection_otes_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/collection_otes_raw.xml","scraped_at":"2026-02-25T20:02:10.753142Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.otes:document::10.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document","description":"This collection contains the documents applicable to the OSIRIS-REx Thermal Emission Spectrometer (OTES) documents.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/collection_otes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/collection_otes_document.xml","scraped_at":"2026-02-25T20:02:10.753146Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.otes:geometry::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Geometry","description":"This collection contains the geometric calculations applicable to the science measurements acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Geometry"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/collection_otes_geometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/collection_otes_geometry.xml","scraped_at":"2026-02-25T20:02:10.753150Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ceres:browse::1.0","title":"DAWN GRaND Ceres Bundle: Browse Collection","description":"Browse files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/collection_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.753153Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ceres:data_raw::1.0","title":"DAWN GRaND Ceres Bundle: Raw Data Collection","description":"Raw data files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2015-03-13","stop_date":"2018-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753157Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ceres:document::1.0","title":"DAWN GRaND Ceres Bundle: Document Collection","description":"Document files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753160Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ceres:data_calibrated::1.0","title":"DAWN GRaND Ceres Bundle: Calibrated Data Collection","description":"Calibrated data files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2015-03-13","stop_date":"2018-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753164Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ceres:data_derived::1.0","title":"DAWN GRaND Ceres Bundle: Derived Data Collection","description":"Derived data files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2015-12-16","stop_date":"2016-05-11","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/collection_data_derived.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/collection_data_derived.xml","scraped_at":"2026-02-25T20:02:10.753168Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ceres:miscellaneous::1.0","title":"DAWN GRaND Ceres Bundle: Miscellaneous Data Collection","description":"Miscellaneous files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/collection_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.753171Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-vesta:browse::1.0","title":"DAWN GRaND Vesta Bundle: Browse Collection","description":"Browse files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/collection_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.753174Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-vesta:data_raw::1.0","title":"DAWN GRaND Vesta Bundle: Raw Data Collection","description":"Raw data files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2011-05-03","stop_date":"2012-08-09","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753179Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-vesta:document::1.0","title":"DAWN GRaND Vesta Bundle: Document Collection","description":"Document files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753182Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-vesta:data_calibrated::1.0","title":"DAWN GRaND Vesta Bundle: Calibrated Data Collection","description":"Calibrated data files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2011-05-03","stop_date":"2012-08-09","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753185Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-vesta:data_derived::1.0","title":"DAWN GRaND Vesta Bundle: Derived Data Collection","description":"Derived data files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2011-12-08","stop_date":"2012-05-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/collection_data_derived.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/collection_data_derived.xml","scraped_at":"2026-02-25T20:02:10.753189Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-vesta:miscellaneous::1.0","title":"DAWN GRaND Vesta Bundle: Miscellaneous Collection","description":"Miscellaneous files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/collection_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.753192Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-cruise:browse::1.0","title":"DAWN GRaND Cruise Bundle: Browse Collection","description":"Browse files for the GRaND Cruise bundle. Browse products are only avaliable for the Vesta-Ceres Cruise phase.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/collection_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.753196Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-cruise:data_raw::1.0","title":"DAWN GRaND Cruise Bundle: Raw Data Collection","description":"Raw data files for the GRaND Cruise bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2007-10-16","stop_date":"2014-07-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753199Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-cruise:document::1.0","title":"DAWN GRaND Cruise Bundle: Document Collection","description":"Document files for the GRaND Cruise bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753203Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ancillary:document::1.0","title":"DAWN GRaND Ancillary Bundle: Document Collection","description":"Document for the GRaND instrument that are not specific to any phase of the mission","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":[],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753207Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-ancillary:miscellaneous::1.0","title":"DAWN GRaND Ancillary Bundle: Miscellaneous Collection","description":"Miscellaneous files for the GRaND instrument","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":[],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/collection_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.753210Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-mars:data_raw::1.0","title":"DAWN GRaND Mars Bundle: Raw Data Collection","description":"Raw data files for the GRaND Mars bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2009-01-20","stop_date":"2009-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753214Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-mars:document::1.0","title":"DAWN GRaND Mars Bundle: Document Collection","description":"Document files for the GRaND Mars bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753217Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-grand-mars:data_calibrated::1.0","title":"DAWN GRaND Mars Bundle: Calibrated Data Collection","description":"Calibrated data files for the GRaND Mars bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2009-02-17","stop_date":"2009-02-18","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753222Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_nirs3:data_ancillary::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Ancillary Data","description":"This collection contains the derived ancillary data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/collection_hyb2_nirs3_data_ancillary.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/collection_hyb2_nirs3_data_ancillary.xml","scraped_at":"2026-02-25T20:02:10.753227Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_nirs3:document::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Document","description":"This collection contains the documents applicable to the Hayabusa2 NIRS3 instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":[],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/collection_hyb2_nirs3_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/collection_hyb2_nirs3_document.xml","scraped_at":"2026-02-25T20:02:10.753232Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_nirs3:data_calibrated::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Calibrated Data","description":"This collection contains the calibrated science data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/collection_hyb2_nirs3_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/collection_hyb2_nirs3_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753237Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_nirs3:calibration::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Calibration Data","description":"This collection contains the calibration data products for data produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Calibration"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/collection_hyb2_nirs3_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/collection_hyb2_nirs3_calibration.xml","scraped_at":"2026-02-25T20:02:10.753243Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_nirs3:data_raw::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Raw Data","description":"This collection contains the raw science data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/collection_hyb2_nirs3_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/collection_hyb2_nirs3_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753248Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_tir:browse::1.0","title":"TIR Instrument of Hayabusa2 Mission: Browse Collection","description":"This collection contains the quick-look image data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Browse"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/collection_hyb2_tir_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/collection_hyb2_tir_browse.xml","scraped_at":"2026-02-25T20:02:10.753253Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_tir:calibration::1.0","title":"TIR instrument of Hayabusa2 Mission: Calibration Collection","description":"This collection contains the calibration data products for data produced by the TIR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Calibration"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/collection_hyb2_tir_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/collection_hyb2_tir_calibration.xml","scraped_at":"2026-02-25T20:02:10.753257Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_tir:document::1.0","title":"TIR instrument of Hayabusa2 Mission: Document Collection","description":"This collection contains the documents applicable to the Hayabusa2 TIR instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/collection_hyb2_tir_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/collection_hyb2_tir_document.xml","scraped_at":"2026-02-25T20:02:10.753262Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_tir:data_btemp::1.0","title":"TIR instrument of Hayabusa2 Mission: Calibrated Brightness Temperature Data Collection","description":"This collection contains the calibrated brightness temperature data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/collection_hyb2_tir_data_btemp.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/collection_hyb2_tir_data_btemp.xml","scraped_at":"2026-02-25T20:02:10.753267Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_tir:data_raw::1.0","title":"TIR instrument of Hayabusa2 Mission: Raw Data Collection","description":"This collection contains the raw binary image data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/collection_hyb2_tir_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/collection_hyb2_tir_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753271Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_high_rate_detector:data_calibration::1.0","title":"data_calibration collection for the \"CASSINI HIGH RATE DETECTOR\" bundle","description":"This is the data_calibration collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Data"],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/collection_cassini_high_rate_detector_data_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/collection_cassini_high_rate_detector_data_calibration.xml","scraped_at":"2026-02-25T20:02:10.753276Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_high_rate_detector:data_engineering::1.0","title":"data_engineering collection for the \"CASSINI HIGH RATE DETECTOR\" bundle","description":"This is the data_engineering collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Data"],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/collection_cassini_high_rate_detector_data_engineering.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/collection_cassini_high_rate_detector_data_engineering.xml","scraped_at":"2026-02-25T20:02:10.753281Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_high_rate_detector:data_science::1.0","title":"data_science collection for the \"CASSINI HIGH RATE DETECTOR\" bundle","description":"This is the data_science collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Data"],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/collection_cassini_high_rate_detector_data_science.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/collection_cassini_high_rate_detector_data_science.xml","scraped_at":"2026-02-25T20:02:10.753285Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:cassini_high_rate_detector:document::1.0","title":"document collection for the \"CASSINI HIGH RATE DETECTOR\" bundle","description":"This is the document collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Document"],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/collection_cassini_high_rate_detector_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/collection_cassini_high_rate_detector_document.xml","scraped_at":"2026-02-25T20:02:10.753289Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.amica.itokawa.backplanes:data::1.0","title":"Hayabusa AMICA Images with Geometry Backplanes V1.0","description":"The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":["Data"],"start_date":"2005-09-11","stop_date":"2005-10-28","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/collection_hay.amica.itokawa.backplanes_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/collection_hay.amica.itokawa.backplanes_data.xml","scraped_at":"2026-02-25T20:02:10.753293Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.amica.itokawa.backplanes:document::1.0","title":"Hayabusa AMICA Images with Geometry Backplanes V1.0","description":"The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":["Document"],"start_date":"2005-09-11","stop_date":"2005-10-28","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/collection_hay.amica.itokawa.backplanes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/collection_hay.amica.itokawa.backplanes_document.xml","scraped_at":"2026-02-25T20:02:10.753297Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_spectra_reddy_neos_marscrossers:data::1.0","title":"data collection for the \"REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS\" bundle","description":"This is the data collection for the ast_spectra_reddy_neos_marscrossers bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1036) Ganymed","(1170) Siva","(1727) Mette","(1916) Boreas","2004 RS109","2008 RW24","(2035) Stearns","(323) Brucia","(391) Ingeborg","(4179) Toutatis","(7088) Ishtar","Multiple Asteroids","(137032) 1998 UO1","(137924) 2000 BD19","(143678) 2003 SA224","(143947) 2003 YQ117","(144411) 2004 EW9","(163000) 2001 SW169","(21374) 1997 WS22","(23183) 2000 OY21","(391151) 2005 YY93","(39572) 1993 DQ1","(446791) 1998 SJ70","(66063) 1998 RO1","(68950) 2002 QF15","(85709) 1998 SG36","(85713) 1998 SS49","(87684) 2000 SY2"],"instruments":["SpeX","Infrared Telescope Facility"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2001-09-29","stop_date":"2008-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/collection_ast_spectra_reddy_neos_marscrossers_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/collection_ast_spectra_reddy_neos_marscrossers_data.xml","scraped_at":"2026-02-25T20:02:10.753302Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ast_spectra_reddy_neos_marscrossers:document::1.0","title":"document collection for the \"REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS\" bundle","description":"This is the document collection for the ast_spectra_reddy_neos_marscrossers bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1036) Ganymed","(1170) Siva","(1727) Mette","(1916) Boreas","2004 RS109","2008 RW24","(2035) Stearns","(323) Brucia","(391) Ingeborg","(4179) Toutatis","(7088) Ishtar","Multiple Asteroids","(137032) 1998 UO1","(137924) 2000 BD19","(143678) 2003 SA224","(143947) 2003 YQ117","(144411) 2004 EW9","(163000) 2001 SW169","(21374) 1997 WS22","(23183) 2000 OY21","(391151) 2005 YY93","(39572) 1993 DQ1","(446791) 1998 SJ70","(66063) 1998 RO1","(68950) 2002 QF15","(85709) 1998 SG36","(85713) 1998 SS49","(87684) 2000 SY2"],"instruments":["SpeX","Infrared Telescope Facility"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2001-09-29","stop_date":"2008-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/collection_ast_spectra_reddy_neos_marscrossers_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/collection_ast_spectra_reddy_neos_marscrossers_document.xml","scraped_at":"2026-02-25T20:02:10.753308Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:saturn_satellite_shape_models:document::1.0","title":"Saturn Small Moon Shape Models V1.0","description":"Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-huygens"],"targets":["Saturn XVI (Prometheus)","Saturn XV (Atlas)","Saturn XIV (Calypso)","PAN","PANDORA","EPIMETHEUS","Saturn VII (Hyperion)","Saturn XXXV (Daphnis)","Saturn X (Janus)","Saturn XII (Helene)","Saturn XIII (Telesto)"],"instruments":["Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/collection_saturn_satellite_shape_models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/collection_saturn_satellite_shape_models_document.xml","scraped_at":"2026-02-25T20:02:10.753312Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:saturn_satellite_shape_models:data::1.0","title":"Saturn Small Moon Shape Models V1.0","description":"Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-huygens"],"targets":["Saturn XVI (Prometheus)","Saturn XV (Atlas)","Saturn XIV (Calypso)","PAN","PANDORA","EPIMETHEUS","Saturn VII (Hyperion)","Saturn XXXV (Daphnis)","Saturn X (Janus)","Saturn XII (Helene)","Saturn XIII (Telesto)"],"instruments":["Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/collection_saturn_satellite_shape_models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/collection_saturn_satellite_shape_models_data.xml","scraped_at":"2026-02-25T20:02:10.753319Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:epoxi_mri:hartley2_photometry::1.0","title":"EPOXI MRI-VIS 103P/Hartley 2 Encounter Photometry Collection","description":"We perform photometric measurements of comet 103P/Hartley 2 using images taken through the CLEAR1 (broadband, 200-1100 nm), CN (387 nm), OH (309 nm), C2 (514 nm), and two continuum filters (Ultraviolet at 345 nm and Green at 526 nm) of the Medium Resolution Instrument (MRI) on board the Deep Impact flyby spacecraft from 1 October to 26 November 2010 during the EPOXI mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["EPOXI"],"targets":["103P/HARTLEY 2 (1986 E2)"],"instruments":["DEEP IMPACT MEDIUM RESOLUTION INSTRUMENT - VISIBLE CCD"],"instrument_hosts":["DEEP IMPACT FLYBY SPACECRAFT"],"data_types":["Data"],"start_date":"2010-10-01","stop_date":"2010-11-26","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/collection.xml","scraped_at":"2026-02-25T20:02:10.753870Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:halebopp::1.0","title":"Hale-Bopp Visual Lightcurve","description":"This dataset contains visual magnitudes of comet C/1995 O1 (Hale-Bopp) that were obtained from the International Comet Quarterly and processed to provide a secular lightcurve from -7 au (pre-perihelion) to +8 au (post-perihelion). The original apparent magnitudes from 17 observers were corrected for geocentric distance and phase angle, and then combined in a systematic way that yielded a self-consistent consensus fit. In analyzing visual data from multiple observers, the questions inevitably arise of which data to reject, and under what justification, and whether combining data from observers, each with their own systematic errors, leads to a biased result. Without instrumental calibration, there is no certain answer to these questions, and such calibration is not available for the observations discussed here. We estimated the shifts with a self-consistent statistical approach, leading to a sharper light curve and improving the precision of the measured slopes. The dataset includes the original apparent magnitudes, those corrected for geocentric distance and phase angle, and the final shifted and weighted values. The final secular lightcurve is the best produced to date for comet Hale-Bopp.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/1995 O1 (HALE-BOPP)"],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1995-07-24","stop_date":"1999-09-23","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/collection.xml","scraped_at":"2026-02-25T20:02:10.753893Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:polarimetry::1.0","title":"Compilation of Comet Polarimetry from Published and Unpublished Sources","description":"This collection presents comet polarimetry results collected and tabulated from both published literature and unpublished sources.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":["Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1881-06-29","stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/collection.xml","scraped_at":"2026-02-25T20:02:10.753898Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:unid-emis::1.0","title":"Catalog of Unidentified Cometary Emission Lines","description":"This data set contains tables of unidentified spectral emission lines and other ancillary information in a variety of comet observations. All these originally unidentified lines have been taken from the reference papers without adding or removing lines or using selection criteria.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1943-02-24","stop_date":"2004-04-24","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/collection.xml","scraped_at":"2026-02-25T20:02:10.753901Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:lightcurves::1.0","title":"Survey of Comet Lightcurves (PDS4 Format)","description":"This is a dataset that compiles reported observations of brightness changes in comets from various papers to produce lightcurves. Specifically, the data were based on references in Samarasinha et al. (2004), i.e. they are those lightcurves which were used to find the rotational properties of comet nuclei (periods, rotation vector coordinates, spin mode, etc.) reported by Samarasinha et al. (2004). These data were migrated from the PDS3 dataset EAR-C-COMPIL-5-LIGHTCURVES-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1957-07-28","stop_date":"1957-07-28","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/collection.xml","scraped_at":"2026-02-25T20:02:10.753904Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:phys_char::1.0","title":"Physical Charecteristics of Comets (PDS4 Format)","description":"This dataset is a compilation of observational measurements on comet morphology and magnitude covering just over a thousand apparitions of various comets from -466 to 1975. These data were migrated from the PDS3 dataset EAR-C-5-DDR-PCC-V1.0. For migration, the data files were left untouched and the information in the PDS3 labels was translated into PDS4 format and augmented with additional metadata; the reference list file was converted to a document product; and the PDS3 data set catalog file was edited and updated to create the description document.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":null,"stop_date":"1975-01-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/collection.xml","scraped_at":"2026-02-25T20:02:10.753912Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:nuc_properties::1.0","title":"Properties of Comet Nuclei (PDS4 Format)","description":"This collection contains size, shape, albedo and color data for various comets collected from the literature. These data were migrated from the PDS3 dataset EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0, Properties of Comet Nuclei.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":"2010-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/collection.xml","scraped_at":"2026-02-25T20:02:10.753916Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil-comet:nuc_rotation::1.0","title":"Rotation of Comet Nuclei: Table 1 (PDS4 Format)","description":"This collection presents Table 1 of Samarasinha, et al. (2004): 'Information on spin states of specific comets', as published in 'Comets II' (Festou, Keller and Weaver, eds.). These data were migrated from the PDS3 dataset and EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0, Rotation of Comet Nuclei: Table 1.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/collection.xml","scraped_at":"2026-02-25T20:02:10.753919Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:spitzer:spitzer-spec-comet::1.0","title":"Spitzer Space Telescope Spectroscopy of Comets","description":"We present spectra of comets observed with the Infrared Spectrograph (IRS) on the Spitzer Space Telescope. The observations are based on a select set of comets with high-quality data, reduced using a uniform approach. We summarize the observations, and detail our reduction methodology. Additional details on the calibration of cometary sources with the IRS instrument are also given, and plots of all spectra are included for reference.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Spitzer Space Telescope"],"targets":["6P/1851 M1 (d'Arrest 1)","9P/1867 G1 (Tempel 1)","8P/1858 A1 (Tuttle 1)","17P/1892 V1 (Holmes 1)","21P/1900 Y1 (Giacobini-Zinner 1)","29P/1927 V1 (Schwassmann-Wachmann 1)","37P/1929 P1 (Forbes 1)","41P/1951 H1 (Tuttle-Giacobini-Kresak 1)","46P/1948 A1 (Wirtanen 1)","48P/1949 Q1 (Johnson 1)","62P/1965 A1 (Tsuchinshan 1)","65P/1970 U2 (Gunn)","67P/1969 R1 (Churyumov-Gerasimenko 1)","71P/1973 L1 (Clark 1)","73P/1930 J1-B (Schwassmann-Wachmann 3 B)","73P/1930 J1-C (Schwassmann-Wachmann 3 C)","78P/1973 S1 (Geherls 2)","88P/1981 Q1 (Howell 1)","105P/1986 J1 (Singer Brewster 1)","121P/1989 E2 (Shoemaker-Holt 2)","123P/1989 E3 (West-Hartley 1)","132P/1989 U1 (Helin-Roman-Alu 2)","144P/1994 A1 (Kushida 1)","C/2001 Q4 (NEAT)","C/2003 K4 (LINEAR)","C/2003 T3 (Tabur)","C/2003 T4 (LINEAR)","C/2004 B1 (LINEAR)","C/2004 Q2 (Machholz)","C/2006 P1 (McNaught)","C/2006 Q1 (McNaught)","C/2007 N3 (Lulin)","C/2008 T2 (Cardinal)"],"instruments":["Infrared Spectrograph (IRS)"],"instrument_hosts":["Spitzer Space Telescope"],"data_types":["Data"],"start_date":"2003-11-23","stop_date":"2009-04-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/collection.xml","scraped_at":"2026-02-25T20:02:10.753988Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-ctio:cfccd-19p::1.0","title":"CTIO Images of 19P/Borrelly with Photometry (PDS4 Format)","description":"This collection contains images of the Deep Space 1 target, comet 19P/Borrelly, and derived photometry from five consecutive nights of observing over 28 July - 1 August 2000. The observations were made using the 1.5m telescope of the Cerro Tololo Interamerican Observatory using the CFCCD camera mounted at the f/7.5 focus. The detector used was a Tek2K, yielding a plate scale of 0.4334 arcseconds/pixel. These data were migrated from the PDS3 dataset EAR-C-CFCCD-5-RDR-CTIO-BORR-PHOTOM-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["19P/1904 Y2 (Borrelly 1)"],"instruments":["1.5-m Ritchey-Chretien Cassegrain reflector","Cassegrain Focus Direct Image CCD Camera"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"2000-07-28","stop_date":"2000-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/collection.xml","scraped_at":"2026-02-25T20:02:10.753992Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:feb2013_hfosc_fosc::1.0","title":"Comet ISON February 2013 HFOSC and FOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in February 2013. Imaging data were acquired on February 19, 21 and 22 in R and I Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO), Hanle, Leh, of the Indian Institute of Astrophysics (IIA). Spectroscopic data were taken on February 09 using the Faint Object Spectrograph and Camera (FOSC) mounted on the 40-inch telescope (T40) of the Wise Observatory of the Tel-Aviv University, Israel. Spectroscopic data provides coverage from 380 to 730 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)","One Meter Telescope","Faint Object Spectrographic Camera"],"instrument_hosts":["Indian Astronomical Observatory (IAO)","Wise Observatory"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/collection.xml","scraped_at":"2026-02-25T20:02:10.753997Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:hfosc_solar-analog::1.0","title":"Comet ISON 2014 Solar Analog Spectroscopy Collection","description":"This dataset contains raw, processed and derived spectroscopic data of the solar analog star HD195034 taken on May 31, 2014, using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectroscopic data provides coverage from 380 to 830 nm. The manual of the HFOSC instrument is included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["HD 195034"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":["Indian Astronomical Observatory (IAO)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/collection.xml","scraped_at":"2026-02-25T20:02:10.754001Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:jan2013_hfosc::1.0","title":"Comet ISON January 2013 HFOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken on January 22, 2013, using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Photometric data were taken in V, R and I Bessel bands, and images were aligned. Spectroscopic data provides coverage from 380 to 830 nm. The manual of the HFOSC instrument is included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":["Indian Astronomical Observatory (IAO)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/collection.xml","scraped_at":"2026-02-25T20:02:10.754005Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:may2013_hfosc_omr::1.0","title":"Comet ISON May 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in May 2013. Photometric data was obtained on May 01 and 04 in V and R Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectra were taken using the HFOSC instrument on May 01 and 15; and on May 02 using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 380 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)","2.34-m VBT Telescope","OMR Spectrograph"],"instrument_hosts":["Indian Astronomical Observatory (IAO)","Vainu Bappu Observatory"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/collection.xml","scraped_at":"2026-02-25T20:02:10.754009Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:nov2013_hfosc_omr::1.0","title":"Comet ISON November 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON), taken in November 2013. Two images of the comet were obtained on November 10 in R Bessel band using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Comet spectra were taken on five dates: November 08, 09, 11, 12 and 13, using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 400 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)","2.34-m VBT Telescope","OMR Spectrograph"],"instrument_hosts":["Indian Astronomical Observatory (IAO)","Vainu Bappu Observatory"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/collection.xml","scraped_at":"2026-02-25T20:02:10.754014Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:oct2013_hfosc_omr::1.0","title":"Comet ISON October 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in October 2013. Photometric data was obtained on October 01 in B and R Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectra were taken on October 01 using the HFOSC instrument; and on October 17 using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 380 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)","2.34-m VBT Telescope","OMR Spectrograph"],"instrument_hosts":["Indian Astronomical Observatory (IAO)","Vainu Bappu Observatory"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/collection.xml","scraped_at":"2026-02-25T20:02:10.754018Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-c2012_s1_ison:sept2013_hfosc::1.0","title":"Comet ISON September 2013 HFOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in September 2013 using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh, India. Photometric data was obtained on September 08 in I Bessel band. Spectroscopic data was obtained on September 29 and provides coverage from 380 to 730 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":["Indian Astronomical Observatory (IAO)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/collection.xml","scraped_at":"2026-02-25T20:02:10.754021Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-irtf:nirimg-9p::1.0","title":"IRTF Near-IR Imaging of Comet 9P/Tempel 1 during Deep Impact Encounter","description":"Near-IR images of Comet 9P/Tempel 1 were obtained at the NASA IRTF during the period from June 24 through July 17, 2005 UT. These observations were taken as part of a campaign designed to support the science objectives of the Deep Impact spacecraft around the time of its encounter with Tempel 1. This data set contains all raw images, including those required for reduction and photometric calibration of the comet observations. These data were migrated from the PDS3 dataset DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["IRTF 3.0-Meter Telescope","SpeX"],"instrument_hosts":["NASA Infrared Telescope Facility"],"data_types":["Data"],"start_date":"2005-06-24","stop_date":"2005-07-17","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754374Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-irtf:mirsi-9p::1.0","title":"IRTF Mid-IR Imaging of Comet 9P/Tempel 1 (PDS4 Format)","description":"Mid-IR images of Comet 9P/Tempel 1 were obtained at the NASA IRTF during the period from July 2-18, 2005 UT. These observations were taken as part of a campaign designed to support the science objectives of the Deep Impact spacecraft around the time of its encounter with Tempel 1. This data set contains all raw images, including those required for reduction and photometric calibration of the comet observations. These data were migrated from the PDS3 dataset DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["IRTF 3.0-Meter Telescope","Mid-Infrared Spectrometer and Imager"],"instrument_hosts":["NASA Infrared Telescope Facility"],"data_types":["Data"],"start_date":"2005-07-02","stop_date":"2005-07-18","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754378Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:19p_col_density::1.0","title":"McDonald Observatory Column Density Observations of 19P/Borrelly (PDS4 Format)","description":"This data set includes the raw column densities of several gas species observed in the spectra of comet Borrelly, as a function of position in the coma. All measurements were made with the 2.7-m Harlan J Smith Telescope at McDonald Observatory. During the 1981 and 1987-1988 apparitions, the data were obtained with the Intensified Dissector Scanner (IDS), and during the 1994 apparition, the data were obtained with the Large Cassegrain Spectrograph (LCS). These data were migrated from the PDS3 dataset EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["19P/1904 Y2 (Borrelly 1)"],"instruments":["2.7m Telescope","Image Dissector Scanner","Large Cassegrain Spectrograph"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1981-01-03","stop_date":"1994-12-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/collection.xml","scraped_at":"2026-02-25T20:02:10.754382Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:devico_atlas::1.0","title":"High Spectral Resolution Atlas of Comet 122P/deVico (PDS4 Format)","description":"This collection presents an atlas of 12,219 identified and 4,055 unidentified spectral lines from high resolution spectra of comet 122P/deVico. The spectra were obtained at the McDonald Observatory using the 2D Coude cross-dispersed echelle spectrograph (CS2) at the Coude f/32.5 focus of the 2.7m Harlan J. Smith telescope. These data were migrated from the PDS3 dataset EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["122P/1846 D1 (de Vico 1)"],"instruments":["2.7m Telescope"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1995-10-03","stop_date":"1995-10-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/collection.xml","scraped_at":"2026-02-25T20:02:10.754386Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:faint_comet_survey::1.0","title":"McDonald Observatory Faint Comet Spectro-Photometric Survey (PDS4 Format)","description":"This study presents spectral data from 152 observations of 17 comets obtained using an Intensified Dissector Scanner spectrograph at the McDonald Observatory. A full description of these data and the reduction process, along with Haser model production rates can be found in Cochran et al. (1992). These data were migrated from the PDS3 dataset EAR-C-MCDIDS-3-RDR-MCDNLD-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":["2.7m Telescope","Image Dissector Scanner"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1981-08-25","stop_date":"1989-05-08","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/collection.xml","scraped_at":"2026-02-25T20:02:10.754390Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:igi-19p::1.0","title":"McDonald Observatory Images of Comet 19P/Borrelly (PDS4 Format)","description":"Images of comet 19P/Borrelly obtained at the McDonald Observatory with the Imaging Grism Instrument on five observing runs during the 2001 apparition. These data were migrated from the PDS3 dataset EAR-C-IGI-3-EDR-BORRELLY-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["19P/1904 Y2 (Borrelly 1)"],"instruments":["2.7m Harlan J. Smith telescope","2.1m Otto Struve telescope","Imaging Grism Instrument"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"2001-09-21","stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/collection.xml","scraped_at":"2026-02-25T20:02:10.754394Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-mcdonald:lcs-9p::1.0","title":"McDonald Observatory 9P/Tempel 1 Spectral Observations (PDS4 Format)","description":"We report on low-spectral resolution observations of comet 9P/Tempel 1 from 1983, 1989, 1994 and 2005 using the 2.7m Harlan J. Smith telescope of McDonald Observatory. This comet was the target of NASA's Deep Impact mission and our observations allowed us to characterize the comet prior to the impact. In the published paper, we showed that the comet decreased in gas production from 1983 to 2005, with the decrease being different factors for different species. OH decreased by a factor 2.7, NH by 1.7, CN by 1.6, C3 by 1.8, CH by 1.4 and C2 by 1.3. Despite the decrease in overall gas production and these slightly different decrease factors, we found that the ratios of the gas production rates of OH, NH, C3, CH and C2 that of CN were constant over all of the apparitions. We saw no change in the production rate ratios after the impact. We found that the peak gas production occurred about two months prior to perihelion. This data set represents the integrated fluxes and column densities, mentioned in the published paper, which were used to derive the production rates in the paper. These data were migrated from the PDS3 dataset EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["2.7m Telescope","Large Cassegrain Spectrometer"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1989-07-01","stop_date":"2005-07-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754398Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:document::1.0","title":"Kitt Peak National Observatory - Documentation Collection","description":"This collection contains documents describing the facilities, instrumentation, and common procedures relevant to data taken at the Kitt Peak National Observatory (KPNO).","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/collection.xml","scraped_at":"2026-02-25T20:02:10.754401Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:hyakutake_spectra::1.0","title":"Spectra of C/1996 B2 (Hyakutake) for Multiple Offsets from Photocenter","description":"High resolution spectra of comet Hyakutake obtained at Kitt Peak National Observatory on the day of closest approach, 26 March 1996, with the echelle spectrograph on the 4m Mayall Telescope. There are spectra for offsets of 0, 2, 7, and 10 arcsec sunward from the photocenter. The wavelength ranges from 3040-4500 Angstroms.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":["C/1996 B2 (Hyakutake)"],"instruments":["4m Mayall Telescope","Echelle Spectrograph"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"1996-03-26","stop_date":"1996-03-26","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/collection.xml","scraped_at":"2026-02-25T20:02:10.754405Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:image-19p::1.0","title":"KPNO Images of Comet 19P/Borrelly from 21-23 Sep 2001 (PDS4 Format)","description":"The data set consists of ground-based images of comet 19P/Borrelly in the R filter taken at the Kitt Peak 2.1m for three nights from September 21-23, 2001, bracketing the Deep Space 1 encounter. Raw, as well as reduced images are included. These data were migrated from the PDS3 dataset EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["19P/1904 Y2 (Borrelly 1)","PG0231+051","PG2213-006"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","T2KA Imager"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2001-09-20","stop_date":"2001-09-23","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/collection.xml","scraped_at":"2026-02-25T20:02:10.754409Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:image-9p::1.0","title":"KPNO Images of Comet 9P/Tempel 1 from February to June 2005","description":"The data set consists of raw and reduced ground-based images of comet 9P/Tempel 1 in the broadband R and narrowband HB filters taken at the Kitt Peak 2.1m telescope from February to June 2005 prior to the Deep Impact encounter. These data were migrated from the PDS3 dataset EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","F3KB CCD Camera"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2005-02-01","stop_date":"2005-06-07","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754413Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:mosaic-9p::1.0","title":"KPNO MOSAIC Images of 9P/Tempel 1 from 2005 Around the DI Encounter","description":"The data set consists of ground-based images of comet 9P/Tempel 1 in the broadband R and narrowband HB filters taken at the Kitt Peak Mayall 4m telescope with the MOSAIC camera from July 2-9, 2005 around the Deep Impact encounter. These data were migrated from the PDS3 dataset EAR-C-I0655-2/3-MOSAICTEMPEL1-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["4-m Mayall Ritchey-Chretien equatorial reflector","Kitt Peak Mosaic Camera"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2005-07-01","stop_date":"2005-07-09","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754418Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo-kpno:nirimage-9p::1.0","title":"KPNO Near-Infrared Images of Comet 9P/Tempel 1 during Deep Impact Encounter","description":"This dataset contains raw and reduced near-infrared images of comet 9P/Tempel 1, the target of the Deep Impact mission. Images were obtained from UT July 2-9, 2005 by M. Knight, R. Swaters, and N. Samarasinha using the Simultaneous Quad Infrared Imaging Device at the KPNO 2.1-m telescope. Results are published in the paper 'Ground-based visible and near-IR observations of Comet 9P/Tempel 1 during the Deep Impact encounter' by Knight et al. 2007. These data were migrated from the PDS3 dataset DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","NOAO Simultaneous Quad Infrared Imaging Device"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2005-07-02","stop_date":"2005-07-09","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754421Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ro_derived:dfms_ts_abundance::1.0","title":"Rosetta ROSINA DFMS Time Series Abundances","description":"This collection contains time series abundance data files derived from observations made with the Rosetta Orbiter Spectrometer for Ion and Neutral Analysis (ROSINA) Double Focusing Mass Spectrometer (DFMS) instrument onboard the Rosetta spacecraft. The data in this collection span the comet encounter Prelanding through Extension 3 mission phases of the Rosetta mission to comet 67P/Churyumov-Gerasimenko.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["INTERNATIONAL ROSETTA MISSION"],"targets":["67P/1969 R1 (Churyumov-Gerasimenko 1)"],"instruments":["ROSETTA ORBITER SPECTROMETER FOR ION AND NEUTRAL ANALYSIS"],"instrument_hosts":["Rosetta-orbiter"],"data_types":["Data"],"start_date":"2014-09-01","stop_date":"2016-09-05","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/collection.xml","scraped_at":"2026-02-25T20:02:10.754857Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Multispectral Visible Imaging Camera (MVIC)","description":"This collection is a migration from PDS3 of the cumulative set of ancillary files (filter curves, reference spectra, etc.) used in calibrating the data sets delivered by the MVIC instrument over the course of the New Horizons primary and extended missions. Provenance, as far as it could be determined, is included in the label for each product.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/collection.lblx","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/collection.lblx","scraped_at":"2026-02-25T20:02:10.754860Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:kem1_cal::1.0","title":"New Horizons KEM1 Encounter Multispectral Visible Imaging Camera (MVIC) Partially Processed Data","description":"This data set contains partially processed data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. The data includes functional tests and images during the approach and departure of Arrokoth. A look back at Pluto was also performed after the Arrokoth flyby. A Color Scan of Neptune and Uranus was done along with a Solar Star Calibration and Radiometric Calibration. These data were migrated from the PDS3 dataset: NH-A-MVIC-3-KEM1-V6.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission 1"],"targets":["(486958) Arrokoth"],"instruments":["Multispectral Visible Imaging Camera (MVIC)"],"instrument_hosts":["New Horizons Spacecraft"],"data_types":["Data"],"start_date":"2018-08-31","stop_date":"2019-09-02","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/collection.lblx","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/collection.lblx","scraped_at":"2026-02-25T20:02:10.754864Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:kem1_raw::1.0","title":"New Horizons KEM1 Encounter Multispectral Visible Imaging Camera (MVIC) Raw Data","description":"This data set contains Raw data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. The data includes functional tests and images during the approach and departure of Arrokoth. A look back at Pluto was also performed after the Arrokoth flyby. A Color Scan of Neptune and Uranus was done along with a Solar Star Calibration and Radiometric Calibration. These data were migrated from the PDS3 dataset: NH-A-MVIC-2-KEM1-V6.0. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission 1"],"targets":["(486958) Arrokoth"],"instruments":["Multispectral Visible Imaging Camera (MVIC)"],"instrument_hosts":["New Horizons Spacecraft"],"data_types":["Data"],"start_date":"2018-08-31","stop_date":"2019-09-02","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/collection.lblx","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/collection.lblx","scraped_at":"2026-02-25T20:02:10.754868Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbl-classe:charon_exosphere::1.0","title":"Center for Laboratory Astrophysics and Space Science Experiments (CLASSE) Charon Exospheric Simulation Data","description":"This dataset includes exospheric simulations and laboratory data relevant to the Charon red polar region. The dataset provides predictions for methane accretion relative to Lyman-Alpha flux at Charon's winter polar region and the photolytic production of higher order hydrocarbons. We also provide infrared spectra of photolyzed films under conditions found at Charon's polar (high phi) and mid-latitude (low phi) regions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Charon Laboratory Analog"],"instruments":["Mordor (Ultra-high Vacuum) UHV System"],"instrument_hosts":["CLASSE"],"data_types":["Data"],"start_date":"2022-02-15","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/collection.xml","scraped_at":"2026-02-25T20:02:10.756571Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents:alice::1.0","title":"New Horizons Documents for the Alice Ultraviolet Imaging Spectrograph Instrument","description":"This collection contains documents applicable to the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of this instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758053Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents:swap::1.0","title":"New Horizons Documents for the Solar Wind Around Pluto (SWAP) Instrument","description":"This collection contains documents applicable to the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, such as documents describing the detector field of view, calibration techniques, and mission phase sequences of this instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758137Z","keywords":["Solar wind","Pluto","Kuiper belt","Asteroids","Trans-Neptunian objects","Flyby missions"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents:mission::2.0","title":"New Horizons Mission Documents","description":"This collection contains documents applicable to the entire New Horizons mission, such as the Interface Control Document (ICD), instrument descriptions, and trajectory information, among others.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission","New Horizons Kuiper Belt Extended Mission 2"],"targets":[],"instruments":[],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758141Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2:context::2.0","title":"Hayabusa2 Mission: Context","description":"This collection contains the context products applicable to the Hayabusa2 mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["CAM-H","LIDAR","NIRS3","ONC","SCI","TIR","DCAM3-A","DCAM3-D","MasCam","MasMag","MARA","MicrOmega"],"instrument_hosts":["Hayabusa2 Spacecraft","DCAM3","MASCOT","MINERVA-II1 Rover-1a HIBOU","MINERVA-II1 Rover-1b OWL","MINERVA-II2 Rover-2 ULULA"],"data_types":["Context"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.758286Z","keywords":["Hayabusa2","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2:xml_schema::3.0","title":"Hayabusa2 Mission: XML Schema","description":"This collection contains the xml_schema prodcuts applicable to the Hayabusa2 mission as a whole; includes the mission dictionary.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["CAM-H","LIDAR","NIRS3","ONC","SCI","TIR","DCAM3-A","DCAM3-D","MasCam","MasMag","MARA","MicrOmega"],"instrument_hosts":["Hayabusa2 Spacecraft","DCAM3","MASCOT","MINERVA-II1 Rover-1a HIBOU","MINERVA-II1 Rover-1b OWL","MINERVA-II2 Rover-2 ULULA"],"data_types":["XML Schema"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.758293Z","keywords":["Hayabusa2","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar:data_link_timing::1.0","title":"Hayabusa2 LIDAR Partially Processed Laser Link Experiment Timing Data Collection","description":"This collection contains the partially processed timing science data products of laser link experiment produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["Earth"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/collection_hyb2_lidar_data_link_timing.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/collection_hyb2_lidar_data_link_timing.xml","scraped_at":"2026-02-25T20:02:10.758298Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar:data_link_intensity::1.0","title":"Hayabusa2 LIDAR Calibrated Laser Link Experiment Intensity Data Collection","description":"This collection contains the calibrated intensity data product of laser link experiment produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["Earth"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/collection_hyb2_lidar_data_link_intensity.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/collection_hyb2_lidar_data_link_intensity.xml","scraped_at":"2026-02-25T20:02:10.758304Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar:data_range::1.0","title":"Hayabusa2 LIDAR Calibrated and Derived Range Data Collection","description":"This collection contains the calibrated and the derived range data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/collection_hyb2_lidar_data_range.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/collection_hyb2_lidar_data_range.xml","scraped_at":"2026-02-25T20:02:10.758309Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Calibrated | Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar:data_dust::1.0","title":"Hayabusa2 LIDAR Calibrated and Derived Dust Count Data Collection","description":"This collection contains the calibrated and the derived science dust data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Dust"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/collection_hyb2_lidar_data_dust.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/collection_hyb2_lidar_data_dust.xml","scraped_at":"2026-02-25T20:02:10.758314Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Calibrated | Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar:data_raw::1.0","title":"Hayabusa2 LIDAR Raw Data Collection","description":"This collection contains the raw data product produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["Earth"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/collection_hyb2_lidar_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/collection_hyb2_lidar_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758319Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo_ast_fieber-beyer_spectra:data::2.0","title":"Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0","description":"The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer and archives reduced, calibrated spectra.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(495) Eulalia","Multiple Asteroids","(897) Lysistrata","(6212) Franzthaler","(1215) Boyer","(292) Ludovica","(2038) Bistro","(329) Svea","(248) Lameia","(3637) O'Meara","(198) Ampella","(115) Thyra","(335) Roberta","(421) Zahringia","(1064) Aethusa","(162385) 2000 BM19","(1644) Rafita","(1772) Gagarin","(1368) Numidia","(1379) Lomonosowa","(1722) Goffin","(714) Ulula","(556) Phyllis","(6) Hebe","(6649) Yokotatakao","(797) Montana","(46) Hestia","(3066) McFadden","(974) Lioba","(1158) Luda","(285263) 1998 QE2","(481532) 2007 LE","(695) Bella","(19727) Allen","(619) Triberga","(3345) Tarkovskij","(5676) Voltaire","(355) Gabriella","(3999) Aristarchus","(623) Chimaera","(1166) Sakuntala","(518) Halawe","(1391) Carelia","(908) Buda","(1854) Skvortsov","(1607) Mavis","(1587) Kahrstedt","(3760) Poutanen","(5129) Groom","(652) Jubilatrix","(1501) Baade","(2497) Kulikovskij","(1447) Utra","(660) Crescentia","(875) Nymphe","(1960) Guisan","(1018) Arnolda","(787) Moskva","(1036) Ganymed","(354) Eleonora","(879) Ricarda","(2089) Cetacea","(1358) Gaika"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2000-06-30","stop_date":"2017-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/collection_gbo.ast.fieber-beyer.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/collection_gbo.ast.fieber-beyer.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.758327Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo_ast_fieber-beyer_spectra:document::2.0","title":"Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0","description":"The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer and archives reduced, calibrated spectra.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(495) Eulalia","Multiple Asteroids","(897) Lysistrata","(6212) Franzthaler","(1215) Boyer","(292) Ludovica","(2038) Bistro","(329) Svea","(248) Lameia","(3637) O'Meara","(198) Ampella","(115) Thyra","(335) Roberta","(421) Zahringia","(1064) Aethusa","(162385) 2000 BM19","(1644) Rafita","(1772) Gagarin","(1368) Numidia","(1379) Lomonosowa","(1722) Goffin","(714) Ulula","(556) Phyllis","(6) Hebe","(6649) Yokotatakao","(797) Montana","(46) Hestia","(3066) McFadden","(974) Lioba","(1158) Luda","(285263) 1998 QE2","(481532) 2007 LE","(695) Bella","(19727) Allen","(619) Triberga","(3345) Tarkovskij","(5676) Voltaire","(355) Gabriella","(3999) Aristarchus","(623) Chimaera","(1166) Sakuntala","(518) Halawe","(1391) Carelia","(908) Buda","(1854) Skvortsov","(1607) Mavis","(1587) Kahrstedt","(3760) Poutanen","(5129) Groom","(652) Jubilatrix","(1501) Baade","(2497) Kulikovskij","(1447) Utra","(660) Crescentia","(875) Nymphe","(1960) Guisan","(1018) Arnolda","(787) Moskva","(1036) Ganymed","(354) Eleonora","(879) Ricarda","(2089) Cetacea","(1358) Gaika"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2000-06-30","stop_date":"2017-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/collection_gbo.ast.fieber-beyer.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/collection_gbo.ast.fieber-beyer.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.758335Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents:ralph::2.0","title":"New Horizons Documents for the Ralph Instrument Package","description":"This collection contains documents applicable to the Ralph instrument package (housing both the MVIC and LEISA instruments) onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Multispectral Visible Imaging Camera Instrument (MVIC) for New Horizons","Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758339Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.nirs:calibration::1.0","title":"Hayabusa NIRS Calibration Files","description":"This collection includes the calibration tables and calibration frames for Hayabusa NIRS","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["* alf Sco","* alf Aur","Area Light Source","* alf Ori","Sun","Calibration Field","Calibration Lamp","Point Light Source"],"instruments":["NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["Calibration"],"start_date":"2005-08-31","stop_date":"2005-11-24","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/collection_hay.nirs_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/collection_hay.nirs_calibration.xml","scraped_at":"2026-02-25T20:02:10.758343Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.nirs:data_calibrated::1.0","title":"Hayabusa NIRS Calibrated Data","description":"This data set includes the 111,226 calibrated spectra of asteroid 25143 Itokawa returned by the Near-Infrared Spectrometer (NIRS) instrument of the Hayabusa mission. The data cover the Itokawa encounter phases of the mission, from Aug. 31 through November 24, 2005.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["Data"],"start_date":"2005-08-31","stop_date":"2005-11-24","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/collection_hay.nirs_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/collection_hay.nirs_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.758348Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.nirs:data_raw::1.0","title":"Hayabusa NIRS Raw Data","description":"This collection includes the 117,937 raw spectra returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The data cover the period from May 12, 2003 through November 24, 2005.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["Earth","Mars","Saturn","Jupiter","(25143) Itokawa","Earth I (Moon)"],"instruments":["NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["Data"],"start_date":"2005-08-31","stop_date":"2005-11-24","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/collection_hay.nirs_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/collection_hay.nirs_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758352Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.nirs:document::1.0","title":"Hayabusa NIRS Raw document collection","description":"This collection includes the documents for the Hayabusa NIRS instrument data bundle. During the Hayabusa mission 117,937 raw spectra were returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The data cover the period from May 12, 2003 through November 24, 2005.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/collection_hay.nirs_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/collection_hay.nirs_document.xml","scraped_at":"2026-02-25T20:02:10.758355Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents:rex::1.0","title":"Documentation for the New Horizons Radio Science Experiment (REX)","description":"This collection presents documentation and ancillary data tables specific to the Radio Science Experiment (REX) on the New Horizons Spacecraft. It covers both the primary New Horizons mission, as well as the first extended mission to the Kuiper Belt referred to as \"KEM1\".","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Radio Science Experiment"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758359Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Linear Etalon Imaging Spectral Array (LEISA)","description":"This collection contains calibration files applicable to the LEISA instrument onboard the New Horizons spacecraft, used to process raw data into calibrated files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758363Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:kem1_cal::1.0","title":"New Horizons Linear Etalon Imaging Spectral Array KEM1 Encounter Calibrated Data","description":"This collection contains a set of calibrated images in .FIT format for the New Horizons Linear Etalong Imaging Spectral Array (LEISA) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-LEISA-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/20/2018 and 09/05/2019. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-20","stop_date":"2019-09-05","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758367Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:kem1_raw::1.0","title":"New Horizons Linear Etalon Imaging Spectral Array KEM1 Encounter Raw Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Linear Etalong Imaging Spectral Array (LEISA) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-LEISA-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/20/2018 and 09/05/2019. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-20","stop_date":"2019-09-05","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758370Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Student Dust Counter (SDC) Instrument","description":"This collection is a migration from PDS3 of the cumulative set of ancillary files (coefficient table, mean DN table and DN standard deviation table, calibration matrix) used in calibrating the data sets delivered by the Student Dust Counter (SDC) instrument over the course of the New Horizons primary and extended missions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758375Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:kem1_cal::1.0","title":"New Horizons Student Dust Counter (SDC) KEM1 Encounter Calibrated Data","description":"This collection contains a set of calibrated tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SDC-3-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. This version includes Dust Counts from prior to, during, and after the Arrokoth Encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Dust"],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-14","stop_date":"2022-04-09","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758380Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:kem1_raw::1.0","title":"New Horizons Student Dust Counter (SDC) KEM1 Encounter Raw Data","description":"This collection contains a set of raw tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SDC-2-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. This version includes Dust Counts from prior to, during, and after the Arrokoth Encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Dust"],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-14","stop_date":"2022-04-09","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758383Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons (NH) Solar Wind Around Pluto (SWAP) Electrostatic Instrument","description":"This collection is a migration from PDS3 of the cumulative set of ancillary files (background, response functions, field of view mask, energy bins) used in calibrating the data sets delivered by the Solar Wind Around Pluto (SWAP) instrument over the course of the New Horizons (NH) primary and extended missions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758387Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:kem1_raw::1.0","title":"New Horizons Solar Wind Around Pluto KEM1 Encounter Raw Data","description":"This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-14","stop_date":"2022-04-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758391Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:kem1_data_summary_plots::1.0","title":"New Horizons Kuiper Belt Extended Mission KEM1 Encounter Mission Phase Solar Wind Around Pluto Data Summary Plots","description":"This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the first Kuiper Belt Extended Mission KEM1 Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Browse"],"start_date":"2018-08-14","stop_date":"2022-04-24","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758394Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:kem1_cal::1.0","title":"New Horizons Solar Wind Around Pluto KEM1 Encounter Calibrated Data","description":"This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 04/24/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-14","stop_date":"2022-04-24","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758399Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:kem1_raw::1.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) KEM1 Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-PEPSSI-2-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/10/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. Data acquired after April 10, 2022 has been held back until the next dataset version because it was collected and downlinked with a new flight software version. The results and format have not been verified by the New Horizons science teams yet. This version includes observations from prior to, during, and after the ASTEROID 486958 Arrokoth (2014 MU69) encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-13","stop_date":"2022-04-10","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758403Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:data_iof_coregistered::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Co-registered Radiance Factor (I/F) Data Collection","description":"This collection contains the derived co-registered radiance factor (I/F) science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2drc product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/collection_hyb2_onc_data_iof_coregistered.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/collection_hyb2_onc_data_iof_coregistered.xml","scraped_at":"2026-02-25T20:02:10.758408Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:geometry::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Geometry Collection","description":"This collection contains the geometry data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2dbpc product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Geometry"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/collection_hyb2_onc_geometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/collection_hyb2_onc_geometry.xml","scraped_at":"2026-02-25T20:02:10.758413Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:data_partially_processed::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Partially Processed Data Collection","description":"This collection contains the partially processed science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes Level 2b product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/collection_hyb2_onc_data_partially_processed.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/collection_hyb2_onc_data_partially_processed.xml","scraped_at":"2026-02-25T20:02:10.758418Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:data_reflectance::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Reflectance Data Collection","description":"This collection contains the derived reflectance science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2e product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/collection_hyb2_onc_data_reflectance.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/collection_hyb2_onc_data_reflectance.xml","scraped_at":"2026-02-25T20:02:10.758423Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:document::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Document Collection","description":"This collection contains the documents applicable to Optical Navigation Camera (ONC) of the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/collection_hyb2_onc_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/collection_hyb2_onc_document.xml","scraped_at":"2026-02-25T20:02:10.758427Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:data_calibrated::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Calibrated Data Collection","description":"This collection contains the calibrated science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2c product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/collection_hyb2_onc_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/collection_hyb2_onc_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.758432Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:browse::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Browse Collection","description":"This collection contains the quick-look image products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Browse"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/collection_hyb2_onc_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/collection_hyb2_onc_browse.xml","scraped_at":"2026-02-25T20:02:10.758437Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:data_iof::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Radiance Factor (I/F) Data Collection","description":"This collection contains the derived radiance factor (I/F) science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2d product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/collection_hyb2_onc_data_iof.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/collection_hyb2_onc_data_iof.xml","scraped_at":"2026-02-25T20:02:10.758441Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:calibration::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Calibration Collection","description":"This collection contains the calibration data products for data produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Calibration"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/collection_hyb2_onc_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/collection_hyb2_onc_calibration.xml","scraped_at":"2026-02-25T20:02:10.758446Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:data_reflectance_coregistered::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Co-registered Reflectance Data Collection","description":"This collection contains the derived co-registered reflectance science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2erc product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/collection_hyb2_onc_data_reflectance_coregistered.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/collection_hyb2_onc_data_reflectance_coregistered.xml","scraped_at":"2026-02-25T20:02:10.758452Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_onc:data_raw::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Raw Data Collection","description":"This collection contains the raw science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes Level 2a product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/collection_hyb2_onc_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/collection_hyb2_onc_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758456Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:pluto_albedo::1.0","title":"Bolometric Hemispherical Albedo Map of Pluto from New Horizons Observations","description":"Map of Pluto's incidence-angle-average bolometric hemispherical albedo (local energy-balance albedo, equal to one minus absorption). The map is based on analyses of New Horizons Long Range Reconnaissance Imager (LORRI) and Multispectral Visible Imaging Camera (MVIC) images of Pluto in 2015. Users are strongly encouraged to read the publication titled 'Bolometric Hemispherical Albedo Map of Pluto from New Horizons Observations' in the Planetary Science Journal by Hofgartner et al. in 2023.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(134340) Pluto"],"instruments":["LONG RANGE RECONNAISSANCE IMAGER","MULTISPECTRAL VISIBLE IMAGING CAMERA"],"instrument_hosts":["NEW HORIZONS","NEW HORIZONS"],"data_types":["Data"],"start_date":"2015-07-08","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/collection.xml","scraped_at":"2026-02-25T20:02:10.758460Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0","title":"New Horizons Porter (2024) Arrokoth Shape Model Collection","description":"This collection contains a shape model of (486958) Arrokoth created by Simon Porter in 2024 using New Horizons LORRI data, as well as supporting products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["LOng Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-12-31","stop_date":"2024-01-01","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758464Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mag:calibration::1.0","title":"Collection of document products: Mascot MasMag","description":"Collection of document products for the MASCOT Fluxgate Magnetometer.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASMAG"],"instrument_hosts":["MASCOT"],"data_types":["Calibration"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/collection_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.758469Z","keywords":["Hayabusa2","MASCOT","MASMAG","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mag:data::1.0","title":"Collection of data products: Mascot MasMag","description":"Collection of data products for the MASCOT Fluxgate Magnetometer.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASMAG"],"instrument_hosts":["MASCOT"],"data_types":["Data"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/collection_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.758475Z","keywords":["Hayabusa2","MASCOT","MASMAG","(162173) Ryugu"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mag:document::1.0","title":"Collection of document products: Mascot MasMag","description":"Collection of document products for the MASCOT Fluxgate Magnetometer.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASMAG"],"instrument_hosts":["MASCOT"],"data_types":["Document"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758479Z","keywords":["Hayabusa2","MASCOT","MASMAG","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mara:calibration::1.0","title":"Collection of document products: Mascot Mara","description":"Collection of calibratiion files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Calibration"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/collection_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.758484Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mara:data_calibrated::1.0","title":"Collection of calibrated products: Mascot Mara","description":"Collection of calibrated data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.758737Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mara:data_hk::1.0","title":"Collection of housekeeping products: Mascot Mara","description":"Collection of housekeeping data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/collection_data_hk.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/collection_data_hk.xml","scraped_at":"2026-02-25T20:02:10.758742Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mara:data_raw::1.0","title":"Collection of raw products: Mascot Mara","description":"Collection of raw data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758746Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mara:document::1.0","title":"Collection of document products: Mascot Mara","description":"Collection of document files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Document"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758751Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mascam:calibration::1.0","title":"Collection of calibration products: Mascot MasCAM","description":"Collection of calibration files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASCAM"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Calibration"],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/collection_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.758755Z","keywords":["MASCOT","MasCAM","Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mascam:data_calibrated::1.0","title":"Collection of calibrated data products: Mascot MasCam","description":"Collection of data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASCAM"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.758759Z","keywords":["MASCOT","MasCam","Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mascam:document::1.0","title":"Collection of document products: Mascot MasCAM","description":"Collection of document files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASCAM"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Document"],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758764Z","keywords":["MASCOT","MasCAM","Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_mascot_mascam:data_raw::1.0","title":"Collection of data products: Mascot MasCam","description":"Collection of data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASCAM"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758768Z","keywords":["MASCOT","MasCam","Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:kem1_cal::1.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) KEM1 Encounter Calibrated Data","description":"This data set contains Calibrated data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-PEPSSI-3-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/10/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. Data acquired after April 10, 2022 has been held back until the next dataset version because it was collected and downlinked with a new flight software version. The results and format have not been verified by the New Horizons science teams yet. This version includes observations from prior to, during, and after the ASTEROID 486958 Arrokoth (2014 MU69) encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-13","stop_date":"2022-04-10","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758773Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:kem1_raw::1.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph KEM1 Encounter Raw Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-ALICE-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 05/01/2022. All Alice data obtained before 05/01/2022 were fully successfully downlinked before that date. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-09-30","stop_date":"2021-09-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758778Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel:document::1.0","title":"Documentation Collection for the DART Shapemodel Archive Bundle","description":"This documentation collection includes documentation describing the shape model derived data products and the DART impact locations corresponding to the Dimorphos shape models.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":[],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/collection_document.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758935Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel:data_derived_didymos_model_v003::1.0","title":"Derived data products for DART shapemodel: didymos_model_v003","description":"This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for didymos_model_v003. It is the final model of Didymos produced by the DART project using both LICIACube and DART images. It has an accuracy uncertainty of ~14 m in x, y, and z, with ~ 3.3% volume uncertainty. See SIS for details on ancillary information provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/collection_data_derived_didymos_model_v003.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/collection_data_derived_didymos_model_v003.xml","scraped_at":"2026-02-25T20:02:10.758941Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v003::1.0","title":"Derived data products for DART shapemodel: dimorphos_model_v003","description":"This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for dimorphos_model_v003. To learn about the model including its quality, see 'Daly et al., 2023. \"Successful Kinetic Impact into an Asteroid for Planetary Defense.\" Nature 1–3. https://doi.org/10.1038/s41586-023-05810-5.\" See SIS for details on ancillary information provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/collection_data_derived_dimorphos_model_v003.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/collection_data_derived_dimorphos_model_v003.xml","scraped_at":"2026-02-25T20:02:10.758946Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v004::1.0","title":"Derived data products for DART shapemodel: dimorphos_model_v004","description":"This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for dimorphos_model_v004. This is the final pre-impact model of the asteroid Dimorphos produced by the DART project. It has an accuracy uncertainty of 1 m in x, 4 m in y, and 1 m in z, with ~ 5% volume uncertainty and shows significant improvement relative to the earlier dimorphos_model_v003. See SIS for details on ancillary information provided, including references on how the ancillary information is calculated.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/collection_data_derived_dimorphos_model_v004.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/collection_data_derived_dimorphos_model_v004.xml","scraped_at":"2026-02-25T20:02:10.758951Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:document_rs::1.0","title":"DART Radio Science Document Collection","description":"The document_rs collection contains documentation describing the data collections that store radio science data from the Double Asteroid Redirection Test (DART) mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":[],"instruments":["DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/collection_document_rs.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/collection_document_rs.xml","scraped_at":"2026-02-25T20:02:10.758967Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_trk234::1.0","title":"DART Radio Science Tracking and Navigation Files (TRK-2-34) Data Collection","description":"The DART mission receives Tracking and Navigation Files (TRK-2-34) from the Deep Space Network (DSN) collected primarily from signals emitted by the high gain antenna (HGA) onboard the DART spacecraft. These are binary files of table data whose fields and format are described by the TRK-2-34 DSN Tracking System Data Archival Format document referenced in the DART Radio Science SIS. These files have been sorted by data record type, of which there are approximately 18. Both mission navigators and those working on radio science investigations use these data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":["Data"],"start_date":"2021-11-24","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/collection_data_trk234.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/collection_data_trk234.xml","scraped_at":"2026-02-25T20:02:10.758971Z","keywords":["DART"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_trk223::1.0","title":"DSN Media Calibration (TRK-2-23) Files for DART Data Collection","description":"The DART mission receives Ionosphere Media Calibration Files (TRK-2-23) from the Deep Space Network (DSN) collected primarily from signals emitted by the high gain antenna (HGA) onboard the DART spacecraft. These are ASCII files that correspond to either Doppler and range data (indicated with 'dop') or Delta Differenced One-way Ranging (DDOR) data (indicated with 'vlb'). They are useful for compensating for media transmission effects on the propagation of radiometric signals. The format of these files is described in detail in the TRK-2-23 DSN Media Calibration Interface document that is referenced in the DART Radio Science SIS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":["Data"],"start_date":"2021-11-24","stop_date":"2022-09-02","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/collection_data_trk223.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/collection_data_trk223.xml","scraped_at":"2026-02-25T20:02:10.758976Z","keywords":["DART"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_maf::1.0","title":"DART Maneuver Acceleration Files (MAF) Data Collection","description":"The DART mission provides a small forces file, or Maneuver Acceleration File (MAF), that describes the thrusting undertaken by DART and aids in carrying out science associated with the DART radio science data. These files record the cumulative delta-v effect of attitude thruster firing over specified time periods. Estimates of mass loss due to usage are also included. The files are fixed-width column ASCII csv files containing a header and a table. Table header and table data descriptions can be found in the DART Radio Science SIS document.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":["Data"],"start_date":"2021-11-24","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/collection_data_maf.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/collection_data_maf.xml","scraped_at":"2026-02-25T20:02:10.758980Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_dracoddp::1.0","title":"Calibrated Images with Geometric Backplanes for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"DART Spacecraft Bundle, Calibrated Images with Geometric Backplanes","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":["Data"],"start_date":"2022-09-26","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/collection_data_dracoddp.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/collection_data_dracoddp.xml","scraped_at":"2026-02-25T20:02:10.758984Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_dracoraw::3.0","title":"Raw Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This data collection contains the raw images returned by the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART) mission. These images have been put into a simple 2D FITS format ready for calibration and analysis. The DART mission was a planetary defense mission designed to test and measure the deflection caused by a kinetic impactor (the spacecraft) on the orbit of Dimorphos asteroid around its primary, (65803) Didymos.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":["Data"],"start_date":"2021-12-02","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/collection_data_dracoraw.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/collection_data_dracoraw.xml","scraped_at":"2026-02-25T20:02:10.758997Z","keywords":["DART"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:data_dracocal::3.0","title":"Calibrated Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This data collection contains calibrated images from the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART) mission. These images have been calibrated to either radiance or reflectance, depending on the mission phase, and have been put into a simple 2D fits format. Ancillary files used in the calibration process are included in the data set as either 2D fits format or ASCII fixed-width table format. The DART mission was a planetary defense mission designed to test and measure the deflection caused by a kinetic impactor (the spacecraft) on the orbit of Dimorphos asteroid around its primary, (65803) Didymos.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":["Data"],"start_date":"2021-01-01","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/collection_data_dracocal.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/collection_data_dracocal.xml","scraped_at":"2026-02-25T20:02:10.759001Z","keywords":["DART"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dart:document_draco::3.0","title":"Documentation for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This documentation collection includes documentation describing the raw, and calibrated data collections from the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard NASA's Double Asteroid Redirection Test (DART) Mission and two documents describing the Coordinate System for the Dimorphos and Didymos asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":[],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/collection_document_draco.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/collection_document_draco.xml","scraped_at":"2026-02-25T20:02:10.759004Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:soho:document::1.1","title":"SOHO Documentation Collection","description":"This document collection contains overview documents as well as instrument-specific and data collection support documents for the various SOHO data collections in the PDS archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/collection.xml","scraped_at":"2026-02-25T20:02:10.759016Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:pluto_raw::1.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph Pluto Encounter Raw Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-ALICE-2-PLUTO-V3.0. This version includes data downlinked from 1/31/2016 through 10/31/2016. This data set contains Alice observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. It includes multi-map and Lyman-alpha observations of Pluto and Charon, histograms of the Pluto system moons, and a number of calibration observations of Rho Leo and other stars. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-25","stop_date":"2016-07-15","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759120Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:pluto_cal::1.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph Pluto Encounter Calibrated Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-ALICE-3-PLUTO-V3.0. This version includes data downlinked from 1/31/2016 through 10/31/2016. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. It includes multi-map and Lyman-alpha observations of Pluto and Charon, histograms of the Pluto system moons, and a number of calibration observations of Rho Leo and other stars. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-25","stop_date":"2016-07-15","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759124Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents:sdc::2.0","title":"New Horizons Documents for the Student Dust Counter (SDC) Instrument","description":"This collection contains documents applicable to the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft. There are several tables that list the times when the instrument power was turned on and off.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759129Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:pluto_raw::1.0","title":"New Horizons Linear Etalon Imaging Spectral Array Pluto Encounter Raw Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Linear Etalon Imaging Spectral Array (LEISA) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-LEISA-2-PLUTO-V3.0. This data set contains LEISA observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, and hi-res departure observations. It also includes functional tests from the Calibration Campaign including scans across the detector of Arcturus, and a second test of the Solar Illumination Assembly. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra","Kerberos"],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-03-03","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759133Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_leisa:pluto_cal::1.0","title":"New Horizons Linear Etalon Imaging Spectral Array Pluto Encounter Calibrated Data","description":"This collection contains a set of calibrated images in .FIT format for the New Horizons Linear Etalon Imaging Spectral Array (LEISA) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-LEISA-3-PLUTO-V3.0. This data set contains LEISA observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, and hi-res departure observations. It also includes functional tests from the Calibration Campaign including scans across the detector of Arcturus, and a second test of the Solar Illumination Assembly. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra","Kerberos"],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-03-03","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759137Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:pluto_raw::1.0","title":"New Horizons Multispectral Visible Imaging Camera (MVIC) Pluto Encounter Raw Data","description":"This collection contains a set of raw images tables in .FIT format for the Multispectral Visible Imaging Camera (MVIC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-MVIC-2-PLUTO-V3.0. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra","Kerberos"],"instruments":["Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons Spacecraft"],"data_types":["Data"],"start_date":"2015-03-03","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759141Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_mvic:pluto_cal::1.0","title":"New Horizons Multispectral Visible Imaging Camera (MVIC) Pluto Encounter Partially Processed Data","description":"This collection contains a set of partially processed images tables in .FIT format for the Multispectral Visible Imaging Camera (MVIC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-MVIC-3-PLUTO-V3.0. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra","Kerberos"],"instruments":["Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons Spacecraft"],"data_types":["Data"],"start_date":"2015-03-03","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759145Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:pluto_raw::1.0","title":"New Horizons Student Dust Counter (SDC) Pluto Encounter Raw Data","description":"This collection contains a set of raw tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-SDC-2-PLUTO-V3.0. This data set contains SDC observations taken during the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Dust"],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-17","stop_date":"2016-10-17","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759149Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_sdc:pluto_cal::1.0","title":"New Horizons Student Dust Counter (SDC) Pluto Encounter Calibrated Data","description":"This collection contains a set of calibrated tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-SDC-3-PLUTO-V3.0. This data set contains SDC observations taken during the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Dust"],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-17","stop_date":"2016-10-17","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759152Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:soho:swan_derived::4.0","title":"SOHO SWAN Derived Cometary Water Production Rates Collection","description":"This data collection contains derived water production rates for numerous comets observed by the SOHO SWAN instrument from 1996 to 2021. Multiple measurements were made for each comet through a single perihelion passage and some comets were observed over multiple epochs. The production rates were derived by modeling the observed distribution of atomic hydrogen in the comae of the comets. This version corrects issues discovered in the previous version of the water_c_1995_o1_hale_bopp table.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Solar and Heliospheric Observatory"],"targets":["Multiple Comets"],"instruments":["Solar Wind ANisotropies (SWAN)"],"instrument_hosts":["SOlar and Heliospheric Observatory"],"data_types":["Data"],"start_date":"1996-01-22","stop_date":"2021-10-17","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/collection.xml","scraped_at":"2026-02-25T20:02:10.759162Z","keywords":["water production rate"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:calibration_files::2.0","title":"New Horizons Calibrations for the PEPSSI Instrument","description":"This collection contains calibration files applicable to the PEPSSI instrument onboard the New Horizons spacecraft, used to process raw data into calibrated files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759165Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents:pepssi::2.0","title":"New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument","description":"This collection contains documents applicable to the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759168Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:document::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Documentation","description":"Documentation for the Lucy LOng Range Reconnaissance Imager (L'LORRI) data archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy Mission"],"targets":[],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/collection_document_v1.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/collection_document_v1.xml","scraped_at":"2026-02-25T20:02:10.759172Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:calibration::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Calibration Data","description":"Calibration data for the Lucy LOng Range Reconnaissance Imager (L'LORRI) data archive. The calibrations include bias, flat field, and time corrections.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy Mission"],"targets":[],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":["Calibration"],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/collection_calibration_v1.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/collection_calibration_v1.xml","scraped_at":"2026-02-25T20:02:10.759175Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_didymos_raw::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Raw Data for the Didymos Observation Data Archive","description":"This data collection contains raw images for the Lucy LOng Range Reconnaissance Imager (L'LORRI) Didymos/Double Asteroid Redirection Test (DART) data archive. The Lucy team found that the Lucy spacecraft and the L'LORRI instrument would be able to image the DART impact experiment on the Didymos system. The Lucy spacecraft observed the DART mission impact on 2022 September 26 with the L'LORRI instrument for about 36 hours surrounding the time of impact, resulting in 1549 observational products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy Mission"],"targets":["(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":["Data"],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/collection_data_didymos_raw_v1.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/collection_data_didymos_raw_v1.xml","scraped_at":"2026-02-25T20:02:10.759180Z","keywords":["Near-Earth objects"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Partially Processed Data for the Didymos Observation Data Archive","description":"This data collection contains partially processed images for the Lucy LOng Range Reconnaissance Imager (L'LORRI) Didymos/Double Asteroid Redirection Test (DART) data archive. The Lucy team found that the Lucy spacecraft and the L'LORRI instrument would be able to image the DART impact experiment on the Didymos system. The Lucy spacecraft observed the DART mission impact on 2022 September 26 with the L'LORRI instrument for about 36 hours surrounding the time of impact, resulting in 1549 observational products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy Mission"],"targets":["(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":["Data"],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/collection_data_didymos_partially_processed_v1.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/collection_data_didymos_partially_processed_v1.xml","scraped_at":"2026-02-25T20:02:10.759185Z","keywords":["Near-Earth objects"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_secondary:aliceocc_charon_sources::1.0","title":"Raw Product Source List for urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0","description":"This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Charon provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto I (Charon)"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-14","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/collection_aliceocc_charon_sources.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/collection_aliceocc_charon_sources.lblx","scraped_at":"2026-02-25T20:02:10.759274Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_secondary:aliceocc_pluto_sources::1.0","title":"Raw Product Source List for urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0","description":"This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Pluto provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-14","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/collection_aliceocc_pluto_sources.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/collection_aliceocc_pluto_sources.lblx","scraped_at":"2026-02-25T20:02:10.759278Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:pluto_raw::1.0","title":"New Horizons Solar Wind Around Pluto - Pluto Raw Data","description":"This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/14/2015 and 10/29/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-14","stop_date":"2016-10-29","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759282Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:pluto_cal::1.0","title":"New Horizons Solar Wind Around Pluto - Pluto Calibrated Data","description":"This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-15","stop_date":"2016-10-25","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759286Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:pluto_data_summary_plots::1.0","title":"New Horizons Pluto Encounter Mission Phase Solar Wind Around Pluto Data Summary Plots","description":"This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the Pluto Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Pluto. A gain test was also performed. The Pluto flyby was on the 14th of July 2015. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["The Solar Wind Around Pluto (SWAP) Instrument for New Horizons"],"instrument_hosts":["The New Horizons (NH) Spacecraft"],"data_types":["Browse"],"start_date":"2015-01-15","stop_date":"2016-10-25","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759290Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:arrokoth_composition::1.0","title":"New Horizons (486958) Arrokoth Encounter Surface Composition Maps","description":"This dataset presents surface composition maps of the trans-Neptunian object (486958) Arrokoth, encountered by the New Horizons spacecraft on its first extended mission to the Kuiper Belt. The dataset includes calibrated spectral cubes derived from observations made by the LEISA and MVIC spectral imagers.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Linear Etalon Imaging Spectral Array","Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759310Z","keywords":["Surface composition","Trans-Neptunian objects"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0","title":"New Horizons Encounter with (486958) Arrokoth: Derived Shape Models and Surface Maps","description":"This data set contains the New Horizons Arrokoth Encounter geology and geophysics science theme team derived shape models and maps of albedo, elevation, modeled surface temperature, and elevation. These results were derived from observations made by the LORRI and MVIC instruments.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Long Range Reconnaissance Imager","Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759315Z","keywords":["Trans-Neptunian objects"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0","title":"New Horizons Kuiper Belt Extended Mission: Alice Ultraviolet Imaging Spectrograph Scans of Lyman-alpha Emission from the Interplanetary Medium","description":"This one-file data collection contains scans of Lyman-alpha emission from neutral hydrogen in the interplanetary medium taken by the New Horizons Alice Ultraviolet Imaging Spectrograph. The period covers is 2007-10 (following Jupiter encounter) to 2020-04 (during the Kuiper Belt Extended mission KEM1).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":["Interplanetary Medium"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2007-10-07","stop_date":"2020-04-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759320Z","keywords":["Interplanetary medium"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:ipm_solar_wind::1.0","title":"New Horizons Primary and Extended Missions: Solar Wind Parameters","description":"This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument as well as pickup ions. It contains two data products. The solar wind product each product compiles the CODMAC level 2 source data used, the solar wind proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, and spacecraft position. These data were derived from observations obtained during cruise, Pluto encounter (excluding the period inside the Pluto system), and afterwards. The pickup ion product provides the interstellar pickup ion density, temperature, and pressure. These data were culled for times when the solar wind speed varied over the ~24 hour period by >1% (~13% of the samples). This PDS4 version was created by migrating labels (only) from the PDS3 V2.0 data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2008-10-10","stop_date":"2020-01-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759325Z","keywords":["Solar wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:oss_plasma_fluxes::1.0","title":"New Horizons Primary and Extended Mission in the Outer Solar System: Averaged Energetic Particle Flux Rates and Counts-per-Second from PEPSSI Observations, 2012-2020","description":"This dataset contains one-hour averaged energetic particle flux rate values and counts-per-second generated by the New Horizons Particles and Plasma science team from data taken by the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument. The data covers a time range from early 2012 through late 2020. Flux rates and sums are presented for each of the six instrument look directions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2012-01-01","stop_date":"2020-12-31","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759329Z","keywords":["Solar energetic particles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_atmospherics::1.0","title":"New Horizons Encounter with the Pluto System: Atmospheric Opacities and Composition, Temperature, Pressure, and Haze Profiles from the LORRI, Alice, and REX Instruments","description":"This data set contains derived atmospheric data from the New Horizons mission during the Pluto Encounter mission phase, based on data from the Alice UV imaging spectrograph instrument, the Radio EXperiment instrument, and the LOng Range Reconnaissance Imager instrument. The data set includes a solar spectrum of Pluto and Charon; atmospheric composition on Pluto for N2, CH4, C2H2, C2H4, C2H6, and haze, and the haze brightness profiles; Pluto lower atmospheric temperature and pressure profiles; stellar occultation and appulse data of Pluto; and temperatures of the diametric and winter pole thermscans of Pluto.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","(134340) Pluto I (Charon)"],"instruments":["Alice Ultraviolet Imaging Spectrograph","Long Range Reconnaissance Imager","Radio Science Experiment"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-14","stop_date":"2015-07-15","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759335Z","keywords":["Pluto","Plutonian satellites","Planetary atmospheres"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_composition::1.0","title":"New Horizons Encounter with the Pluto System: Global Color Maps, Image Cubes, and Absorption Band Maps from the LEISA and MVIC Instruments","description":"This data set contains global color maps, image cubes, and absorption band maps created from calibrated data taken during the PLUTO mission phase by the Linear Etalon Imaging Spectral Array (LEISA) instrument and the Multispectral Visible Imaging Camera (MVIC) instrument on the New Horizons spacecraft. Image cubes are provided per instrument and target body, covering the surfaces of Pluto, Charon, Nix, Hydra, and Kerberos. Color maps and absorption band maps for N2, CO, CH4, and H2O are provided for both Pluto and Charon.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","(134340) Pluto I (Charon)","(134340) Pluto III (Hydra)","(134340) Pluto II (Nix)","(134340) Pluto IV (Kerberos)"],"instruments":["Linear Etalon Imaging Spectral Array","Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-09","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759343Z","keywords":["Pluto","Plutonian satellites","Planetary surfaces","Natural satellite surfaces","Surface composition"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0","title":"New Horizons Encounter with the Pluto System: Mosaics, Topographic Maps, and Bond Albedo Maps for Pluto and Charon from LORRI and MVIC Observations","description":"This data set contains derived geology and geophysical maps of Pluto and Charon derived from data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) and the Long-range Reconnaissance Imager (LORRI) instruments during the Pluto Encounter mission phase.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","(134340) Pluto I (Charon)"],"instruments":["Long Range Reconnaissance Imager","Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759349Z","keywords":["Pluto","Plutonian satellites","Planetary surfaces","Natural satellite surfaces","Albedo"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0","title":"New Horizons Encounter with the Pluto System: Time-Averaged Solar Winds Particle and Ion Fluxes from PEPSSI Observations","description":"This data set contains higher level products derived from data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the Pluto encounter mission phase. The data products contain proton and ion fluxes at five second, five minute, and three hour averages, with the corresponding attitude and ephemeris data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-12","stop_date":"2015-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759353Z","keywords":["Solar wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:plutosystem_solar_wind::1.0","title":"New Horizons Encounter with the Pluto System: Solar Wind Parameters from SWAP Observations","description":"This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument during the Pluto encounter. This archive contains two data products. Each product compiles the CODMAC level 2 source data used, the solar wind speed, proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, spacecraft position and speed. The two product files differ in that one is in Heliographic Inertial (HGI) coordinates and the other is in Pluto centric J2000 and IAU J2000 coordinates.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-14","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759358Z","keywords":["Solar wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:kem1_raw::1.0","title":"New Horizons LORRI KEM1 Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the KEM1 ENCOUNTER mission phase. This version includes Distant Kuiper Belt Object (DKBO) observations of 2011 HF103, 2011 HK103, 2011 HZ102, 2011 JA32, 2011 JW31, 2011 JX31, 2011 JY31, 2014 OE394, 2014 OJ394, 2014 OS393, 2014 PN70, 2020 KP11, 2020 KR11, and 2020 KT11, plus data from a Cosmic Optical Background Demo and a Microlensing demo. There are also observations of 50000 QUAOAR (2002 LM60), ASTEROID 307261 (2002 MS4), ASTEROID 486958 (2014 MU69), HD 37962, INTERPLANETARY DUST, M7, NGC 3532, PROXIMA CENTAURI, TRITON, and WOLF 359. It includes images of the approach and departure field around Arrokoth. The data cover the actual Arrokoth encounter. These data were migrated from the previously released PDS3 data set NH-A-LORRI-2-KEM1-V6.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission 1"],"targets":["(486958) Arrokoth"],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-16","stop_date":"2021-09-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759362Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Long Range Reconnaissance Imager (LORRI)","description":"This collection is a migration from PDS3 of the set of ancillary files (flat fields, bad pixel maps, etc.) used in calibrating the data sets delivered by the LORRI instrument over the course of the New Horizons primary and extended missions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759372Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:kem1_cal::1.0","title":"New Horizons LORRI KEM1 Encounter Partially Processed Data","description":"This data set contains Partially Processed data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the KEM1 ENCOUNTER mission phase. This version includes Distant Kuiper Belt Object (DKBO) observations of 2011 HF103, 2011 HK103, 2011 HZ102, 2011 JA32, 2011 JW31, 2011 JX31, 2011 JY31, 2014 OE394, 2014 OJ394, 2014 OS393, 2014 PN70, 2020 KP11, 2020 KR11, and 2020 KT11, plus data from a Cosmic Optical Background Demo and a Microlensing demo. There are also observations of 50000 QUAOAR (2002 LM60), ASTEROID 307261 (2002 MS4), ASTEROID 486958 (2014 MU69), HD 37962, INTERPLANETARY DUST, M7, NGC 3532, PROXIMA CENTAURI, TRITON, and WOLF 359. It includes images of the approach and departure field around Arrokoth. The data cover the actual Arrokoth encounter. These data were migrated from the previously released PDS3 data set NH-A-LORRI-3-KEM1-V6.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission 1"],"targets":["(486958) Arrokoth"],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-16","stop_date":"2021-09-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759376Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Alice Ultraviolet Imaging Spectrograph Instrument","description":"This collection is a migration from PDS3 of the cumulative set of ancillary files (dark, effective area, wavelength, flat) used in calibrating the data sets delivered by the Alice Ultraviolet Imaging Spectrograph instrument over the course of the New Horizons primary and extended missions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759381Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_alice:kem1_cal::1.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph KEM1 Encounter Calibrated Data","description":"This collection contains a set of calibrated images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-ALICE-3-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 05/01/2022. All Alice data obtained before 05/01/2022 were fully successfully downlinked before that date. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-09-30","stop_date":"2021-09-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759385Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_rex:kem1_raw::1.0","title":"New Horizons Radio Science Experiment (REX) KEM1 Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-2-KEM1-V5.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEW HORIZONS KUIPER BELT EXTENDED MISSION"],"targets":["(486958) Arrokoth"],"instruments":["RADIO SCIENCE EXPERIMENT"],"instrument_hosts":["NEW HORIZONS"],"data_types":["Data"],"start_date":"2018-09-09","stop_date":"2022-02-18","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759572Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_rex:kem1_cal::1.0","title":"New Horizons Radio Science Experiment (REX) KEM1 Encounter Calibrated Data","description":"This data set contains Calibrated data taken by the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-3-KEM1-V5.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEW HORIZONS KUIPER BELT EXTENDED MISSION"],"targets":["(486958) Arrokoth"],"instruments":["RADIO SCIENCE EXPERIMENT"],"instrument_hosts":["NEW HORIZONS"],"data_types":["Data"],"start_date":"2018-09-09","stop_date":"2022-01-13","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759585Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_rex:kem1_tnf::1.0","title":"New Horizons Radio Science Experiment (REX) KEM1 Encounter Tracking and Navigation Files (TNF)","description":"This data set contains Tracking and Navigation Files (TNF) created for the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. The collection includes TRK-2-34 radiometric tracking data files and TRK-2-23 media calibration files. The media calibration data that are provided by the Radiometric Modeling and Calibration Subsystem (RMC). These calibrations are used by project navigation and radio science teams, multi-mission spacecraft navigation, and other investigators to improve the accuracy of spacecraft orbit determination and radio science investigations by compensating for the media transmission effects of the Earth's troposphere and ionosphere on the propagation of radiometric signals. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-3-KEM1-V5.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEW HORIZONS KUIPER BELT EXTENDED MISSION"],"targets":["(486958) Arrokoth"],"instruments":["RADIO SCIENCE EXPERIMENT","NASA Deep Space Network Radio Science"],"instrument_hosts":["NEW HORIZONS"],"data_types":["Data"],"start_date":"2018-09-08","stop_date":"2022-01-12","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759589Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_derived:lorri_cob::1.0","title":"New Horizons Cosmic Optical Background Observations","description":"This data collection contains FITS files with calibrated images and masks derived from images taken with the Long Range Reconnaissance Imager (LORRI) instrument onboard the New Horizons spacecraft. These images were used in an analysis of the Cosmic Optical Background.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission (kem1)","New Horizons"],"targets":["Cosmic Optical Background"],"instruments":["LONG RANGE RECONNAISSANCE IMAGER"],"instrument_hosts":["NEW HORIZONS"],"data_types":["Data"],"start_date":"2007-10-06","stop_date":"2019-09-04","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/collection.xml","scraped_at":"2026-02-25T20:02:10.759593Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:pluto_raw::1.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation Pluto Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-PEPSSI-2-PLUTO-V3.0. During the Pluto Charon Encounter mission phase starting in January, 2015, there were several sub-phases: three Approach sub-phases, (AP1, AP2 and AP3); a CORE sequence for the Pluto flyby on 14 July, 2015 (Day Of Year 195), sometimes also referred to as NEP (Near-Encounter Phase); three Departure sub-phases (DP1, DP2, DP3); a Transition sub-phase ending in late October, 2016, closing out the Pluto Encounter mission phase. For this final PEPSSI delivery for the Pluto mission phase, this data set includes the Approach data plus the CORE and Departure sequences' data, as well as normal operation and Calibration Campaign data during Transition, and has all data downlinked through the end of October, 2016. Due to a spacecraft safing event on 04 July, 2015 (DOY 185), the balance of the science load from then-executing 15184 sequence (nominal start time on DOY 184 in 2015) was sacrificed to ensure the 15188 CORE load with the flyby sequence could be loaded onto the spacecraft and started on time. As a result, there is a gap in the PEPSSI data from approximately DOY 186 to DOY 188. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-14","stop_date":"2016-10-29","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759693Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_pepssi:pluto_cal::1.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation Pluto Encounter Calibrated Data","description":"This data set contains Calibrated data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-PEPSSI-3-PLUTO-V3.0. During the Pluto Charon Encounter mission phase starting in January, 2015, there were several sub-phases: three Approach sub-phases, (AP1, AP2 and AP3); a CORE sequence for the Pluto flyby on 14 July, 2015 (Day Of Year 195), sometimes also referred to as NEP (Near-Encounter Phase); three Departure sub-phases (DP1, DP2, DP3); a Transition sub-phase ending in late October, 2016, closing out the Pluto Encounter mission phase. For this final PEPSSI delivery for the Pluto mission phase, this data set includes the Approach data plus the CORE and Departure sequences' data, as well as normal operation and Calibration Campaign data during Transition, and has all data downlinked through the end of October, 2016. Due to a spacecraft safing event on 04 July, 2015 (DOY 185), the balance of the science load from then-executing 15184 sequence (nominal start time on DOY 184 in 2015) was sacrificed to ensure the 15188 CORE load with the flyby sequence could be loaded onto the spacecraft and started on time. As a result, there is a gap in the PEPSSI data from approximately DOY 186 to DOY 188. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-14","stop_date":"2016-10-29","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759697Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_swap:trajectory::2.0","title":"New Horizons Spacecraft Trajectory","description":"This collection contains New Horizons (NH) spacecraft trajectory in various reference frames. For the time period from launch through the end of 2028, the sampling period is 86400 NH spacecraft seconds, about one day. The data will contain placeholder flags for some (future) dates where there is not enough information to predict the spacecraft location accurately. Locations before 2022-JUN-01 01:36:23.288 come from 'reconstructed' SPICE kernels, whereas later locations are estimated from 'predicted' SPICE kernel information. For the Pluto Time of Closest Approach (TCA) plus or minus approximately 30 days, there are additional files available. During this time period the sampling rate varies.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":["New Horizons"],"instruments":[],"instrument_hosts":["New Horizons"],"data_types":["Geometry"],"start_date":"2006-01-20","stop_date":"2028-02-29","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.760209Z","keywords":["Astronomical coordinate systems"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_documents:lorri::2.0","title":"New Horizons Documents for the LORRI Instrument","description":"This collection contains documents applicable to the LORRI instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission (KEM1)"],"targets":[],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.760212Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:pluto_raw::1.0","title":"New Horizons LOng Range Reconnaissance Imager (LORRI) Pluto Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the PLUTO ENCOUNTER mission phase. This data set contains LORRI observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Departure observations include a ring search of the Pluto system and 1994 JR1 observations. This data set completes the Pluto mission phase deliveries for LORRI. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, hi-res, full-frame observations from Pluto Encounter and Departure, sliver maps, and ring search observations. There may be some overlap between prior datasets and this dataset, due to only partial, windowed, or lossy data in prior datasets. Observations at closest approach to Pluto are marked with _CA in the Request ID. This dataset also includes functional tests from the Calibration Campaign, including a regular observation of NGC3532. Finally it includes the first set of distant KBO observations. These data were migrated from the previously released PDS3 data set NH-P-LORRI-2-PLUTO-V3.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto"],"instruments":["The Long-Range Reconnaissance Imager (LORRI) for New Horizons"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-25","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.760876Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:nh_lorri:pluto_cal::1.0","title":"New Horizons LOng Range Reconnaissance Imager (LORRI) Pluto Encounter Partially Processed Data","description":"This data set contains Partially Processed data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the PLUTO ENCOUNTER mission phase. This data set contains LORRI observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Departure observations include a ring search of the Pluto system and 1994 JR1 observations. This data set completes the Pluto mission phase deliveries for LORRI. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, hi-res, full-frame observations from Pluto Encounter and Departure, sliver maps, and ring search observations. There may be some overlap between prior datasets and this dataset, due to only partial, windowed, or lossy data in prior datasets. Observations at closest approach to Pluto are marked with _CA in the Request ID. This dataset also includes functional tests from the Calibration Campaign, including a regular observation of NGC3532. Finally it includes the first set of distant KBO observations. These data were migrated from the previously released PDS3 data set NH-P-LORRI-3-PLUTO-V3.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto"],"instruments":["The Long-Range Reconnaissance Imager (LORRI) for New Horizons"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-25","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.760880Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar:data_albedo::1.0","title":"Hayabusa2 LIDAR Derived Albedo Data Collection","description":"This collection contains the derived albedo data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["LIght Detection And Ranging (LIDAR)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/collection_hyb2_lidar_data_albedo_v001.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/collection_hyb2_lidar_data_albedo_v001.xml","scraped_at":"2026-02-25T20:02:10.761012Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar:data_albedo_map::1.0","title":"Hayabusa2 LIDAR Derived Albedo Map Data Collection","description":"This collection contains the derived albedo map data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["LIght Detection And Ranging (LIDAR)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/collection_hyb2_lidar_data_albedo_map_v001.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/collection_hyb2_lidar_data_albedo_map_v001.xml","scraped_at":"2026-02-25T20:02:10.761020Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2_lidar:document::2.0","title":"Hayabusa2 LIDAR Document Collection","description":"This collection contains the documents applicable to the Hayabusa2 LIDAR instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":[],"instruments":["LIght Detection And Ranging (LIDAR)"],"instrument_hosts":["Hayabusa2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/collection_hyb2_lidar_document_v002.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/collection_hyb2_lidar_document_v002.xml","scraped_at":"2026-02-25T20:02:10.761028Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:jaxa:darts:hyb2:document::4.0","title":"Hayabusa2 Mission: Document","description":"This collection contains the documents applicable to the Hayabusa2 mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Small Monitor Camera (CAM-H)","LIght Detection And Ranging (LIDAR)","Near InfraRed Spectrometer (NIRS3)","Optical Navigation Camera","Small Carry-on Impactor (SCI)","Thermal Infrared Imager (TIR)","DCAM3-A (DCAM3 Analog)","DCAM3-D (DCAM3 Digital)","MASCOT Camera","MASCOT Fluxgate Magnetometer","MARA","MicrOmega"],"instrument_hosts":["Hayabusa2","DCAM3 (Deployable Camera 3)","MASCOT","MINERVA-II1 Rover-1a HIBOU","MINERVA-II1 Rover-1b OWL","MINERVA-II2 Rover-2 ULULA"],"data_types":["Document"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/collection_document_v004.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/collection_document_v004.xml","scraped_at":"2026-02-25T20:02:10.761039Z","keywords":["Hayabusa2","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.satellite.colors:data::1.0","title":"Small Planetary Satellite Colors V1.0","description":"This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["MULTIPLE"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1977-09-11","stop_date":"2002-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/collection_compil.satellite.colors_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/collection_compil.satellite.colors_data.xml","scraped_at":"2026-02-25T20:02:10.761045Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.satellite.colors:document::1.0","title":"Small Planetary Satellite Colors V1.0","description":"This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["MULTIPLE"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1977-09-11","stop_date":"2002-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/collection_compil.satellite.colors_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/collection_compil.satellite.colors_document.xml","scraped_at":"2026-02-25T20:02:10.761049Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics:data::1.0","title":"Ceres Urvara Dawn FC C2E mosaics data collection","description":"Data collection for the Ceres Urvara Dawn FC C2E mosaics bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn Mission To Vesta And Ceres"],"targets":["(1) Ceres"],"instruments":["FRAMING CAMERA 2","Framing Camera 1"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_data.xml","scraped_at":"2026-02-25T20:02:10.761053Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics:document::1.0","title":"Ceres Urvara Dawn FC C2E mosaics document collection","description":"Document collection for the Ceres Urvara Dawn FC C2E mosaics bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_document.xml","scraped_at":"2026-02-25T20:02:10.761057Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-dds:data::1.0","title":"Galileo Dust Detection System data collection","description":"This is the data collection for the galileo-dds bundle. This data set contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission. Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["GALILEO"],"targets":["Dust","Calibration Target"],"instruments":["GALILEO DUST DETECTION SYSTEM"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1989-10-18","stop_date":"2003-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/collection_galileo-dds_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/collection_galileo-dds_data.xml","scraped_at":"2026-02-25T20:02:10.761062Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo-dds:document::1.0","title":"Galileo Dust Detection System Document Collection","description":"This is the document collection for the galileo-dds bundle. This data set contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["GALILEO"],"targets":["Calibration Target","Dust"],"instruments":["GALILEO DUST DETECTION SYSTEM"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":"1989-10-18","stop_date":"2003-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/collection_galileo-dds_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/collection_galileo-dds_document.xml","scraped_at":"2026-02-25T20:02:10.761068Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra:data::1.0","title":"Data collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0","description":"Data collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"2005-06-30","stop_date":"2009-10-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/collection_gbo.ast-neo.reddy.irtf.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/collection_gbo.ast-neo.reddy.irtf.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761074Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra:document::1.0","title":"Document collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0","description":"Document collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/collection_gbo.ast-neo.reddy.irtf.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/collection_gbo.ast-neo.reddy.irtf.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761079Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra:data::1.0","title":"Data Collection for the gbo.ast-neo.sanchez-reddy.spectra bundle","description":"Data Collection for the gbo.ast-neo.sanchez-reddy.spectra bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["2019 JX7","2016 CO247","2007 EC","2020 HS6","2014 WZ120","(438908) 2009 XO","2016 EV27","2019 JL3","(501647) 2014 SD224","2012 ER14","2002 LY1","2006 XY","2017 BY93","(459872) 2014 EK24","2019 UO13","2020 KC5","2016 BC14","2014 WY119","(85990) 1999 JV6","2020 SN","2020 YQ3","2019 RC","2001 YV3","2013 XA22","2016 CM194","2015 LK24","2019 AN5","2014 VQ","2015 AK45","2014 PL51","2016 EB1","2014 PR62","(469737) 2005 NW44","(163348) 2002 NN4","(496816) 1989 UP","2017 CR32","2015 HA1","2019 GT3","2015 WF13","2017 OL1","2017 RR15","(528159) 2008 HS3","2014 SS1","2016 EF28","2016 FV13","2016 LG","2015 BC","2019 YM3","(436724) 2011 UW158","2015 TB25","2005 TF","2017 BS5","2020 ST1","2017 OP68","2018 XG5","2020 DZ1","2014 WN4","2015 TF","2005 NE21","2017 WX12","2020 RO6","(412995) 1999 LP28","2018 XS4","2015 BK509","2015 FL","2019 SH6","2017 FU64","(471240) 2011 BT15","(467336) 2002 LT38","2017 DR34","2015 XC","(515767) 2015 JA2","2015 VE66","2015 AP43","2014 VH2","(363599) 2004 FG11","2016 GU","2015 NA14","2013 CW32","2000 TU28","2017 BW","(437844) 1999 MN"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"2013-10-14","stop_date":"2021-01-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/collection_gbo.ast-neo.sanchez-reddy.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/collection_gbo.ast-neo.sanchez-reddy.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761089Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra:document::1.0","title":"Document collection for the gbo.ast-neo.sanchez-reddy.spectra bundle","description":"Document collection for the gbo.ast-neo.sanchez-reddy.spectra bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["2019 JX7","2016 CO247","2007 EC","2020 HS6","2014 WZ120","(438908) 2009 XO","2016 EV27","2019 JL3","(501647) 2014 SD224","2012 ER14","2002 LY1","2006 XY","2017 BY93","(459872) 2014 EK24","2019 UO13","2020 KC5","2016 BC14","2014 WY119","(85990) 1999 JV6","2020 SN","2020 YQ3","2019 RC","2001 YV3","2013 XA22","2016 CM194","2015 LK24","2019 AN5","2014 VQ","2015 AK45","2014 PL51","2016 EB1","2014 PR62","(469737) 2005 NW44","(163348) 2002 NN4","(496816) 1989 UP","2017 CR32","2015 HA1","2019 GT3","2015 WF13","2017 OL1","2017 RR15","(528159) 2008 HS3","2014 SS1","2016 EF28","2016 FV13","2016 LG","2015 BC","2019 YM3","(436724) 2011 UW158","2015 TB25","2005 TF","2017 BS5","2020 ST1","2017 OP68","2018 XG5","2020 DZ1","2014 WN4","2015 TF","2005 NE21","2017 WX12","2020 RO6","(412995) 1999 LP28","2018 XS4","2015 BK509","2015 FL","2019 SH6","2017 FU64","(471240) 2011 BT15","(467336) 2002 LT38","2017 DR34","2015 XC","(515767) 2015 JA2","2015 VE66","2015 AP43","2014 VH2","(363599) 2004 FG11","2016 GU","2015 NA14","2013 CW32","2000 TU28","2017 BW","(437844) 1999 MN"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/collection_gbo.ast-neo.sanchez-reddy.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/collection_gbo.ast-neo.sanchez-reddy.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761097Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.hardersen.spectra:data::1.0","title":"Hardersen IRTF NIR Asteroid Reflectance Spectra V1.0","description":"Data collection for Hardersen IRTF NIR Asteroid Reflectance Spectra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"2001-04-29","stop_date":"2015-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/collection_gbo.ast.hardersen.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/collection_gbo.ast.hardersen.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761102Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.hardersen.spectra:document::1.0","title":"Document Collection for the Hardersen IRTF NIR Asteroid Reflectance Spectra Bundle","description":"Document Collection for the Hardersen IRTF NIR Asteroid Reflectance Spectra Bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/collection_gbo.ast.hardersen.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/collection_gbo.ast.hardersen.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761107Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra:data::1.0","title":"Data Collection for the Rivkin Three Micron Asteroid Data Bundle","description":"This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids","Phobos","Deimos"],"instruments":["IRTF 3.2m","RC2","NSFCam","Infrared cold coronagraph (CoCo)"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/collection_gbo.ast.rivkin.3-micron-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/collection_gbo.ast.rivkin.3-micron-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761115Z","keywords":["3-micron data","asteroids","Phobos","Deimos"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra:document::1.0","title":"Document Collection for the Rivkin Three Micron Asteroid Data Bundle","description":"This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids","Phobos","Deimos"],"instruments":["IRTF 3.2m","RC2","NSFCam","Infrared cold coronagraph (CoCo)"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/collection_gbo.ast.rivkin.3-micron-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/collection_gbo.ast.rivkin.3-micron-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761124Z","keywords":["3-micron data","asteroids","Phobos","Deimos"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.s3os2.spectra:data::1.0","title":"Data Collection for the Small Solar System Objects Spectroscopic Survey V1.0","description":"Data collection for Small Solar System Objects Spectroscopic Survey V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":[],"instruments":["1.52-m spectrographic Cassegrain/Coude reflector","ESO Boller and Chivens Spectrograph"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1996-11-17","stop_date":"2000-10-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/collection_gbo.ast.s3os2.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/collection_gbo.ast.s3os2.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761130Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.s3os2.spectra:document::1.0","title":"Document collection for the Small Solar System Objects Spectroscopic Survey V1.0","description":"Document collection for Small Solar System Objects Spectroscopic Survey V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":[],"instruments":["1.52-m spectrographic Cassegrain/Coude reflector","ESO Boller and Chivens Spectrograph"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/collection_gbo.ast.s3os2.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/collection_gbo.ast.s3os2.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761135Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteorites.friability:data::1.0","title":"Data collection for Friability of Meteorites V1.0","description":"Data collection for Friability of Meteorites V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Aguas Zarcas","New Concord","Murchison","Zhob","Richardton","Tamdakht","Allende"],"instruments":["PTF 100 Friability Tester"],"instrument_hosts":["EM3 Lab"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/collection_gbo.meteorites.friability_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/collection_gbo.meteorites.friability_data.xml","scraped_at":"2026-02-25T20:02:10.761140Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.meteorites.friability:document::1.0","title":"Document collection for Friability of Meteorites V1.0","description":"Document collection for Friability of Meteorites V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Aguas Zarcas","New Concord","Murchison","Zhob","Richardton","Tamdakht","Allende"],"instruments":["PTF 100 Friability Tester"],"instrument_hosts":["EM3 Lab"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/collection_gbo.meteorites.friability_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/collection_gbo.meteorites.friability_document.xml","scraped_at":"2026-02-25T20:02:10.761146Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.pluto.benecchi-etal.occultation:data::1.0","title":"Data collection for Occultation of star P445.3 by Pluto","description":"Data collection for Occultation of star P445.3 by Pluto","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["(134340) Pluto","(134340) Pluto"],"instruments":["6.5-m Single Mirror (MMT)","POETS: Portable Occultation, Eclipse, and Transit System","USNO 1.55m","POETS: Portable Occultation, Eclipse, and Transit System","8.4/8.4-m Large Binocular Telescope (LBT)","LBC Guide Camera","MRO 2.4m","POETS: Portable Occultation, Eclipse, and Transit System","FPO 0.32m","SBIG ST-10XME","6.5-m Single Mirror (MMT)","PISCES"],"instrument_hosts":["MMT Observatory","US Naval Observatory","Large Binocular Telescope Observatory","Magdelena Ridge Observatory","Fremont Peak Observatory","MMT Observatory"],"data_types":["Data"],"start_date":"2007-03-18","stop_date":"2007-03-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/collection_gbo.pluto.benecchi-etal.occultation_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/collection_gbo.pluto.benecchi-etal.occultation_data.xml","scraped_at":"2026-02-25T20:02:10.761156Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.pluto.benecchi-etal.occultation:document::1.0","title":"Document collection for Occultation of star P445.3 by Pluto","description":"Document collection for Occultation of star P445.3 by Pluto V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["(134340) Pluto","(134340) Pluto"],"instruments":["6.5-m Single Mirror (MMT)","POETS: Portable Occultation, Eclipse, and Transit System","USNO 1.55m","POETS: Portable Occultation, Eclipse, and Transit System","8.4/8.4-m Large Binocular Telescope (LBT)","LBC Guide Camera","MRO 2.4m","POETS: Portable Occultation, Eclipse, and Transit System","FPO 0.32m","SBIG ST-10XME","6.5-m Single Mirror (MMT)","PISCES"],"instrument_hosts":["MMT Observatory","US Naval Observatory","Large Binocular Telescope Observatory","Magdelena Ridge Observatory","Fremont Peak Observatory","MMT Observatory"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/collection_gbo.pluto.benecchi-etal.occultation_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/collection_gbo.pluto.benecchi-etal.occultation_document.xml","scraped_at":"2026-02-25T20:02:10.761163Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.grs:calibration::1.0","title":"The NEAR Gamma-Ray Spectrometer (GRS) Calibration Collection","description":"This collection contains all the calibration files for the the NEAR GRS instrument data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-01-11","stop_date":"2001-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/collection_near.grs_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/collection_near.grs_calibration.xml","scraped_at":"2026-02-25T20:02:10.761167Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.grs:data_calibrated::1.0","title":"The NEAR Gamma-Ray Spectrometer (GRS) Data Calibrated Collection","description":"This collection contains all the calibrated data collected from the GRS instrument during the NEAR mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-01-11","stop_date":"2001-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/collection_near.grs_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/collection_near.grs_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.761172Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.grs:data_raw::1.0","title":"The NEAR Gamma-Ray Spectrometer (GRS) Data Raw Collection","description":"This collection contains all the raw data collected from the GRS instrument during the NEAR mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"1997-08-27","stop_date":"2001-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/collection_near.grs_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/collection_near.grs_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761176Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.grs:document::1.0","title":"The NEAR Gamma-Ray Spectrometer (GRS) Document Collection","description":"This collection contains all of the documentation pertaining to the NEAR GRS instrument data bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Document"],"start_date":"2000-01-11","stop_date":"2001-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/document/collection_near.grs_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/document/collection_near.grs_document.xml","scraped_at":"2026-02-25T20:02:10.761201Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.nlr:browse::1.0","title":"The NEAR LASER RANGEFINDER Browse Collection","description":"This browse collection contains a series of JPG files that provide a simple method for browsing through the NEAR NLR archive. Each JPEG image represents a Level 2 time series profile data product found on the volume.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SOLAR_SYSTEM"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Browse"],"start_date":"2000-02-28","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/collection_near.nlr_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/collection_near.nlr_browse.xml","scraped_at":"2026-02-25T20:02:10.761206Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.nlr:data_calibrated::1.0","title":"The NEAR NEAR Laser Rangefinder (NLR) Along-Track Time Series Level 2 data","description":"This collection contains the NEAR Laser Rangefinder (NLR) Level 2 Data Products. These products include the along-track profiles of NLR data in SI units, together with spacecraft position, orientation, and timing data. The radius of 433 Eros with respect to its center of mass is the primary profile parameter","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SOLAR_SYSTEM"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-02-28","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/collection_near.nlr_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/collection_near.nlr_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.761210Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.nlr:data_raw::1.0","title":"The NEAR Laser Rangefinder (NLR) Data Raw Collection","description":"This collection contains the NEAR Laser Rangefinder (NLR) instrument raw data products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SOLAR_SYSTEM"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"1996-04-25","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/collection_near.nlr_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/collection_near.nlr_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761213Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.nlr:document::1.0","title":"The NEAR Laser Rangefinder (NLR) document collection","description":"This collection contains all the documentation needed to use the NEAR NLR instrument bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SOLAR_SYSTEM"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Document"],"start_date":"1996-04-19","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/document/collection_near.nlr_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/document/collection_near.nlr_document.xml","scraped_at":"2026-02-25T20:02:10.761217Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:neowise_diameters_albedos:data::2.0","title":"NEOWISE Diameters and Albedos V2.0","description":"This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEOWISE"],"targets":["Multiple Asteroids","SATELLITE","COMET"],"instruments":["WISE Camera"],"instrument_hosts":["Wide-Field Infrared Survey Explorer"],"data_types":["Data"],"start_date":"2010-01-07","stop_date":"2016-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/collection_neowise_diameters_albedos_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/collection_neowise_diameters_albedos_data.xml","scraped_at":"2026-02-25T20:02:10.761222Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:neowise_diameters_albedos:document::2.0","title":"NEOWISE Diameters and Albedos V2.0","description":"This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEOWISE"],"targets":["Multiple Asteroids","SATELLITE","COMET"],"instruments":["WISE Camera"],"instrument_hosts":["Wide-Field Infrared Survey Explorer"],"data_types":["Document"],"start_date":"2010-01-07","stop_date":"2016-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/collection_neowise_diameters_albedos_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/collection_neowise_diameters_albedos_document.xml","scraped_at":"2026-02-25T20:02:10.761227Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ast-bennu.simulated-shape-models:data::1.0","title":"OSIRIS-REx Simulated Test Models V1.0","description":"This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"],"targets":["(101955) Bennu"],"instruments":["Simulation","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":["OSIRIS-REx"],"data_types":["Data"],"start_date":"2016-02-03","stop_date":"2016-10-21","browse_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/collection_orex.ast-bennu.simulated-shape-models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/collection_orex.ast-bennu.simulated-shape-models_data.xml","scraped_at":"2026-02-25T20:02:10.761231Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ast-bennu.simulated-shape-models:document::1.0","title":"OSIRIS-REx Simulated Test Models V1.0","description":"This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"],"targets":["(101955) Bennu"],"instruments":["Simulation","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":["OSIRIS-REx"],"data_types":["Document"],"start_date":"2016-02-03","stop_date":"2016-10-21","browse_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/collection_orex.ast-bennu.simulated-shape-models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/collection_orex.ast-bennu.simulated-shape-models_document.xml","scraped_at":"2026-02-25T20:02:10.761235Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.grs:data_raw::2.0","title":"Collection of raw data products for the Psyche Gamma Ray Spectrometer instrument","description":"This data collection contains the raw spectrometer and engineering products returned by the Gamma Ray Spectrometer (GRS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission. These data products are formatted as binary tables of time series data. The Psyche mission is a planetary mission to investigate the Psyche asteroid and accomplish several scientific objectives, among them determining whether the asteroid is the exposed core of a proto-planetary body.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":["Solar System"],"instruments":["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Data"],"start_date":"2025-04-01","stop_date":"2025-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761241Z","keywords":["Psyche","Gamma Ray Spectrometer","GRS"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.grs:document::2.0","title":"Documentation for the Psyche Gamma Ray Spectrometer Instrument, Raw through Calibrated Products","description":"This documentation collection includes documentation describing the raw and calibrated data collections from the Gamma Ray Spectrometer (GRS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":[],"instruments":["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761245Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps:data::2.0","title":"Data collection for Ceres SPC Shape and Regional Models V2.0","description":"Data collection for Ceres SPC Shape and Regional Models V2.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["The Dawn Mission To Vesta And Ceres"],"targets":["1 Ceres"],"instruments":["Framing Camera 2 (FC2) for Dawn","Framing Camera 1 (FC1) for Dawn"],"instrument_hosts":["The Dawn Spacecraft","The Dawn Spacecraft"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/collection_dwarf_planet-ceres.dawn.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/collection_dwarf_planet-ceres.dawn.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761249Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps:document::2.0","title":"Ceres SPC Shape and Regional Models V1.0","description":"Inventory of the document collection for this bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn Mission To Vesta And Ceres"],"targets":["(1) Ceres"],"instruments":["FRAMING CAMERA 2","Framing Camera 1"],"instrument_hosts":["DAWN","DAWN"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/collection_dwarf_planet-ceres.dawn.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/collection_dwarf_planet-ceres.dawn.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761253Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.mission:context::1.0","title":"Psyche: Context","description":"This collection contains the context products applicable to the Psyche mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":[],"instruments":["The Psyche Imager (PMI) aboard the Psyche spacecraft","The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft","The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft","The Psyche Magnetometer (MAG) aboard the Psyche spacecraft","Psyche Radio Science Subsystem (RSS)"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.761258Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.mission:document::1.0","title":"Collection of documents: Psyche Mission Bundle","description":"This collection contains the documents applicable to the Psyche mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761262Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.mission:xml_schema::1.0","title":"Collection of schema: Psyche Mission Bundle XML Schema","description":"Collection of XML Schema products applicable to the Psyche archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.761269Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.ns:data_raw::2.0","title":"Collection of raw data products for the Psyche Neutron Spectrometer instrument","description":"This data collection contains the raw spectrometer and engineering products returned by the Neutron Spectrometer (NS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission. These data products are formatted as binary tables of time series data. The Psyche mission is a planetary mission to investigate the Psyche asteroid and accomplish several scientific objectives, among them determining whether the asteroid is the exposed core of a proto-planetary body.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":["Solar System"],"instruments":["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Data"],"start_date":"2025-04-01","stop_date":"2025-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761275Z","keywords":["Psyche","Neutron Spectrotometer"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:psyche.ns:document::2.0","title":"Documentation for the Psyche Neutron Spectrometer Instrument, Raw through Calibrated Products","description":"This documentation collection includes documentation describing the raw and calibrated data collections from the Neutron Spectrometer (NS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":[],"instruments":["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761279Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-dione.cassini.shape-models-maps:data::1.0","title":"Data collection for Dione SPC Shape Models and Assessment Products V1.0","description":"Data collection for Dione SPC Shape Models and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Dione"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/collection_satellite-dione.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/collection_satellite-dione.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761283Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-dione.cassini.shape-models-maps:document::1.0","title":"Document collection for Dione SPC Shape Models and Assessment Products V1.0","description":"Document collection for Dione SPC Shape Models and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Dione"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/collection_satellite-dione.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/collection_satellite-dione.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761286Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-mimas.cassini.shape-models-maps:data::1.0","title":"Data collection for Mimas SPC Shape Model and Assessment Products V1.0","description":"Data collection for Mimas SPC Shape Model and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Mimas"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/collection_satellite-mimas.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/collection_satellite-mimas.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761291Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-mimas.cassini.shape-models-maps:document::1.0","title":"Document collection for Mimas SPC Shape Model and Assessment Products V1.0","description":"Document collection for Mimas SPC Shape Model and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Mimas"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/collection_satellite-mimas.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/collection_satellite-mimas.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761294Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-rhea.cassini.shape-models-maps:data::1.0","title":"Data collection for Rhea SPC Shape Model and Assessment Products V1.0","description":"Data collection for Rhea SPC Shape Model and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Rhea"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/collection_satellite-rhea.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/collection_satellite-rhea.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761299Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-rhea.cassini.shape-models-maps:document::1.0","title":"Document collection for Rhea SPC Shape Model and Assessment Products V1.0","description":"Document collection for Rhea SPC Shape Model and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Rhea"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/collection_satellite-rhea.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/collection_satellite-rhea.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761303Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-tethys.cassini.shape-models-maps:data::1.0","title":"Data collection for Tethys SPC Shape Models and Assessment Products V1.0","description":"Data collection for Tethys SPC Shape Models and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Tethys"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/collection_satellite-tethys.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/collection_satellite-tethys.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761306Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-tethys.cassini.shape-models-maps:document::1.0","title":"Document collection for Tethys SPC Shape Models and Assessment Products V1.0","description":"Document collection for Tethys SPC Shape Models and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Tethys"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/collection_satellite-tethys.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/collection_satellite-tethys.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761310Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:small_bodies.stooke.maps:data::1.0","title":"Data collection for the Stooke small bodies maps bundle","description":"Data Collection for the Stooke small bodies maps bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo","Near Earth Asteroid Rendezvous Mission","International Rosetta Mission","Hayabusa Mission","Viking Project","Mars Global Surveyor","Mars Express","Mars Reconnaissance Orbiter","The Mariner Mars '71 (Mariner 9) Mission","Voyager"],"targets":["103P/Hartley 2","19P/Borrelly","243 Ida","25143 Itokawa","253 Mathilde","2867 Steins","433 Eros","81P/Wild 2","951 Gaspra","Amalthea","Phobos","Deimos","Epimetheus","Hyperion"],"instruments":["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker","Solid State Imaging System for GO","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter","The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B","Mars Global Surveyor Spacecraft Mars Orbiter Camera","Mars Express Orbiter High Resolution Stereo Camera","Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment","Imaging Science Subsystem for MR9","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"],"instrument_hosts":["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft","GALILEO ORBITER","The Rosetta Orbiter Spacecraft","The Hayabusa Spacecraft","The Viking Orbiter 1 Spacecraft","The Viking Orbiter 2 Spacecraft","The Mars Global Surveyor Spacecraft","Mars Express","Mars Reconnaissance Orbiter","The Mariner 9 Spacecraft","VOYAGER 1","VOYAGER 2"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/collection_small_bodies.stooke.maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/collection_small_bodies.stooke.maps_data.xml","scraped_at":"2026-02-25T20:02:10.761321Z","keywords":["maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:small_bodies.stooke.maps:document::1.0","title":"Document collection for the Stooke small bodies maps bundle","description":"Document Collection for the Stooke small bodies maps bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo","Near Earth Asteroid Rendezvous Mission","International Rosetta Mission","Hayabusa Mission","Viking Project","Mars Global Surveyor","Mars Express","Mars Reconnaissance Orbiter","The Mariner Mars '71 (Mariner 9) Mission","Voyager"],"targets":["103P/Hartley 2","19P/Borrelly","243 Ida","25143 Itokawa","253 Mathilde","2867 Steins","433 Eros","81P/Wild 2","951 Gaspra","Amalthea","Phobos","Deimos","Epimetheus","Hyperion"],"instruments":["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker","Solid State Imaging System for GO","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter","The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B","Mars Global Surveyor Spacecraft Mars Orbiter Camera","Mars Express Orbiter High Resolution Stereo Camera","Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment","Imaging Science Subsystem for MR9","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"],"instrument_hosts":["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft","GALILEO ORBITER","The Rosetta Orbiter Spacecraft","The Hayabusa Spacecraft","The Viking Orbiter 1 Spacecraft","The Viking Orbiter 2 Spacecraft","The Mars Global Surveyor Spacecraft","Mars Express","Mars Reconnaissance Orbiter","The Mariner 9 Spacecraft","VOYAGER 1","VOYAGER 2"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/collection_small_bodies.stooke.maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/collection_small_bodies.stooke.maps_document.xml","scraped_at":"2026-02-25T20:02:10.761331Z","keywords":["maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:small_bodies.stooke.maps:miscellaneous::1.0","title":"Miscellanous collection for the Stooke small bodies maps bundle","description":"Miscellanous Collection for the Stooke small bodies maps bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo","Near Earth Asteroid Rendezvous Mission","International Rosetta Mission","Hayabusa Mission","Viking Project","Mars Global Surveyor","Mars Express","Mars Reconnaissance Orbiter","The Mariner Mars '71 (Mariner 9) Mission","Voyager"],"targets":["103P/Hartley 2","19P/Borrelly","243 Ida","25143 Itokawa","253 Mathilde","2867 Steins","433 Eros","81P/Wild 2","951 Gaspra","Amalthea","Phobos","Deimos","Epimetheus","Hyperion"],"instruments":["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker","Solid State Imaging System for GO","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter","The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B","Mars Global Surveyor Spacecraft Mars Orbiter Camera","Mars Express Orbiter High Resolution Stereo Camera","Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment","Imaging Science Subsystem for MR9","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"],"instrument_hosts":["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft","GALILEO ORBITER","The Rosetta Orbiter Spacecraft","The Hayabusa Spacecraft","The Viking Orbiter 1 Spacecraft","The Viking Orbiter 2 Spacecraft","The Mars Global Surveyor Spacecraft","Mars Express","Mars Reconnaissance Orbiter","The Mariner 9 Spacecraft","VOYAGER 1","VOYAGER 2"],"data_types":["Miscellaneous"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/collection_small_bodies.stooke.maps_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/collection_small_bodies.stooke.maps_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.761340Z","keywords":["maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:small_bodies.stooke.shape-models:data::1.0","title":"Data Collection for the Stooke small bodies shape models bundle","description":"Data Collection for the Stooke small bodies shape models bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["243 Ida","253 Mathilde","951 Gaspra","Pandora","Amalthea","Thebe","Larissa","Proteus","Janus","Epimetheus","Prometheus","1P/Halley"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","The Halley Multicolor Camera (HMC) for Giotto","The Television System (TVS) for Vega 1","The Television System (TVS) for Vega 2","Solid State Imaging System for GO","The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"],"instrument_hosts":["VOYAGER 1","VOYAGER 2","The Giotto Spacecraft","The Vega 1 Spacecraft","The Vega 2 Spacecraft","GALILEO ORBITER","The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/collection_small_bodies.stooke.shape-models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/collection_small_bodies.stooke.shape-models_data.xml","scraped_at":"2026-02-25T20:02:10.761348Z","keywords":["shape models"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:small_bodies.stooke.shape-models:document::1.0","title":"Document collection for the Stooke small bodies shape models bundle","description":"Document Collection for the Stooke small bodies shape models bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["243 Ida","253 Mathilde","951 Gaspra","Pandora","Amalthea","Thebe","Larissa","Proteus","Janus","Epimetheus","Prometheus","1P/Halley"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","The Halley Multicolor Camera (HMC) for Giotto","The Television System (TVS) for Vega 1","The Television System (TVS) for Vega 2","Solid State Imaging System for GO","The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"],"instrument_hosts":["VOYAGER 1","VOYAGER 2","The Giotto Spacecraft","The Vega 1 Spacecraft","The Vega 2 Spacecraft","GALILEO ORBITER","The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/collection_small_bodies.stooke.shape-models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/collection_small_bodies.stooke.shape-models_document.xml","scraped_at":"2026-02-25T20:02:10.761355Z","keywords":["shape models"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-udds:data::1.0","title":"data collection for the \"ULYSSES DUST DETECTION SYSTEM\" bundle","description":"This is the data collection for the ulysses.udds bundle. This collection contains the data from the Ulysses dust detector system (UDDS) from start of mission through the end of mission, 1990-2007. (As the dust detector was turned off after Nov. 30, 2007, this is the last date for which UDDS data is recorded.) Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["ULYSSES"],"targets":["Calibration Target","Dust"],"instruments":["ULYSSES DUST DETECTION SYSTEM","UNIFIED RADIO AND PLASMA WAVE EXPERIMENT"],"instrument_hosts":["ULYSSES","ULYSSES"],"data_types":["Data"],"start_date":"1990-01-01","stop_date":"2007-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/collection_ulysses.udds_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/collection_ulysses.udds_data.xml","scraped_at":"2026-02-25T20:02:10.761359Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:ulysses-udds:document::1.0","title":"document collection for the \"ULYSSES DUST DETECTION SYSTEM\" bundle","description":"This is the document collection for the ulysses.udds bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["ULYSSES"],"targets":["Calibration Target","Dust"],"instruments":["ULYSSES DUST DETECTION SYSTEM","UNIFIED RADIO AND PLASMA WAVE EXPERIMENT"],"instrument_hosts":["ULYSSES","ULYSSES"],"data_types":["Document"],"start_date":"1990-01-01","stop_date":"2007-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/collection_ulysses.udds_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/collection_ulysses.udds_document.xml","scraped_at":"2026-02-25T20:02:10.761364Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.tagcams:data_hkl0::12.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) raw housekeeping (or status) data products.","description":"This collection contains the housekeeping data products produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/collection_tagcams_hkl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/collection_tagcams_hkl0.xml","scraped_at":"2026-02-25T20:02:10.761370Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.tagcams:data_hkl1::12.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) converted housekeeping (or status) data products.","description":"This collection contains the converted housekeeping data products produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/collection_tagcams_hkl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/collection_tagcams_hkl1.xml","scraped_at":"2026-02-25T20:02:10.761375Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.tagcams:data_raw::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) raw image observational data products.","description":"This collection contains the raw images produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft. These images were acquired for optical navigation, natural feature tracking, or sample stowage documentation.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/collection_tagcams_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/collection_tagcams_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761381Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.tagcams:document::12.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document","description":"This collection contains the documents applicable to the OSIRIS-REx Touch-and-Go Camera Suite (TAGCAMS).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/collection_tagcams_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/collection_tagcams_document.xml","scraped_at":"2026-02-25T20:02:10.761386Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.tagcams:miscellaneous::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) miscellaneous data products.","description":"This collection contains the raw images produced by the STOWCAM element of the TAGCAMS instrument onboard the OSIRIS-REx spacecraft. These images were acquired for engineering purposes to monitor the state of the sample return capsule.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Miscellaneous"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/collection_tagcams_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/collection_tagcams_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.761391Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msx.mimps:data::1.0","title":"Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Data Collection","description":"This collection contains Infrared observations of asteroids serendipitously observed by the Midcourse Space Experiment","node":"sbn","pds_version":"PDS4","type":"collection","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":["Data"],"start_date":"1996-04-01","stop_date":"1997-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/collection_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.761396Z","keywords":[],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msx.mimps:document::1.0","title":"Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Document Collection","description":"This collection contains all the documentation for the Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1996-04-01","stop_date":"1997-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761400Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msx.zody.dust:browse::1.0","title":"Midcourse Space Experiment (MSX) Zodiacal Dust Browse Collection","description":"This collection contains the Midcourse Space Experiment (MSX) Zodiacal Dust browse products as jpeg images that contain plots of the MSX zodiacal data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":["Data"],"start_date":"1986-05-28","stop_date":"1997-02-04","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/collection_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.761404Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ovirs:data_calibrated::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) calibrated science spectral data products.","description":"This collection contains the calibrated (processing level 2 radiometrically calibrated) science spectral data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/collection_ovirs_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/collection_ovirs_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.761408Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msx.zody.dust:data::1.0","title":"Midcourse Space Experiment (MSX) Zodiacal Dust Data Collection","description":"This collection contains the Midcourse Space Experiment (MSX) mid-infrared emission measurements from the zodiacal dust cloud in spectral bands centered at 8.3 12, 15, and 21 microns.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":["Data"],"start_date":"1986-05-28","stop_date":"1997-02-04","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/collection_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.761412Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:msx.zody.dust:document::1.0","title":"Midcourse Space Experiment (MSX) Zodiacal Dust Document Collection","description":"This is the document collection for the Midcourse Space Experiment (MSX) Zodiacal Dust bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761416Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ovirs:data_hkl0::10.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) raw instrument housekeeping data products.","description":"This collection contains the raw (processing level 0) instrument housekeeping data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/collection_ovirs_data_hkl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/collection_ovirs_data_hkl0.xml","scraped_at":"2026-02-25T20:02:10.761420Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ovirs:data_hkl1::10.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) converted instrument housekeeping data products.","description":"This collection contains the converted (processing level 1) instrument housekeeping data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/collection_ovirs_data_hkl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/collection_ovirs_data_hkl1.xml","scraped_at":"2026-02-25T20:02:10.761423Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ovirs:data_raw::10.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) raw science spectral data products.","description":"This collection contains the raw (processing level 0) science data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/collection_ovirs_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/collection_ovirs_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761428Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ovirs:document::9.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OVIRS Document","description":"This collection contains the documents applicable to the OSIRIS-REx Visible and Infra-Red Spectrometer (OVIRS) instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/collection_ovirs_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/collection_ovirs_document.xml","scraped_at":"2026-02-25T20:02:10.761432Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-ceres:data-shadr::1.0","title":"Dawn Ceres ASCII Spherical Harmonic Models Data Collection","description":"This collection includes ASCII spherical harmonic model of Ceres's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2015-02-02","stop_date":"2018-10-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/collection-data-shadr-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/collection-data-shadr-1.0.xml","scraped_at":"2026-02-25T20:02:10.761436Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-ceres:data-shbdr::1.0","title":"Dawn Ceres Binary Spherical Harmonic Models Data Collection","description":"This collection includes binary spherical harmonic model of Ceres's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2015-02-02","stop_date":"2018-10-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/collection-data-shbdr-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/collection-data-shbdr-1.0.xml","scraped_at":"2026-02-25T20:02:10.761440Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-ceres:document::1.0","title":"Dawn Ceres Gravity Science Derived Document Collection","description":"This collection contains the document files associated with the Dawn Ceres Gravity Science Derived Data Bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres","4 Vesta","Mars"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/collection-document-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/collection-document-1.0.xml","scraped_at":"2026-02-25T20:02:10.761444Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-ceres:maps::1.0","title":"Dawn Ceres Gravity Radio Science Digital Maps Data Collection","description":"This collection includes radio science digital map files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2015-02-02","stop_date":"2016-09-02","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/collection-maps-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/collection-maps-1.0.xml","scraped_at":"2026-02-25T20:02:10.761449Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-vesta:data-shadr::1.0","title":"Dawn Vesta ASCII Spherical Harmonic Model Data Collection","description":"This collection includes files that contain ASCII spherical harmonic model of Vesta's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2011-07-13","stop_date":"2012-07-25","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/collection-data-shadr-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/collection-data-shadr-1.0.xml","scraped_at":"2026-02-25T20:02:10.761453Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-vesta:data-shbdr::1.0","title":"Dawn Vesta Binary Spherical Harmonic Model Data Collection","description":"This collection includes a file that contains binary spherical harmonic model of Vesta's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2011-07-13","stop_date":"2012-07-25","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/collection-data-shbdr-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/collection-data-shbdr-1.0.xml","scraped_at":"2026-02-25T20:02:10.761457Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-vesta:document::1.0","title":"Dawn Vesta Gravity Science Derived Data Bundle Document Collection","description":"This collection contains the document files associated with the Dawn Vesta Gravity Science Derived Data Bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres","4 Vesta","Mars"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/collection-document-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/collection-document-1.0.xml","scraped_at":"2026-02-25T20:02:10.761462Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-der-vesta:maps::1.0","title":"Dawn Vesta Gravity Radio Science Digital Maps Data Collection","description":"This collection includes radio science digital map files for Vesta.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2011-07-13","stop_date":"2012-07-25","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/collection-maps-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/collection-maps-1.0.xml","scraped_at":"2026-02-25T20:02:10.761466Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.thermal:data_thermal_maps::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Derived Thermal Map Products.","description":"This collection contains the calibrated (processing level 2 radiometrically calibrated) science spectral data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS","OTES","OCAMS","OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/collection_data_thermal_maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/collection_data_thermal_maps.xml","scraped_at":"2026-02-25T20:02:10.761470Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.thermal:document::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document","description":"This collection contains the documents applicable to the OSIRIS-REx Derived Thermal Map Products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OVIRS","OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/collection_thermal_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/collection_thermal_document.xml","scraped_at":"2026-02-25T20:02:10.761474Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.radioscience:document::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Radio Science Documents","description":"This collection contains the documents applicable to the OSIRIS-REx Radio Science data products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OSIRIS-REx Radio Science (Telecom) Subsystem","OSIRIS-REx Propulsion Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/collection_radioscience_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/collection_radioscience_document.xml","scraped_at":"2026-02-25T20:02:10.761480Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.radioscience:naf018_sff::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Small Forces Files","description":"This collection contains the Small Forces Files calculated for the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["OSIRIS-Rex Spacecraft"],"instruments":["OSIRIS-REx Propulsion Subsystem"],"instrument_hosts":["OSIRIS-REx Spacecraft","DSN"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/collection_radioscience_naf018_sff.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/collection_radioscience_naf018_sff.xml","scraped_at":"2026-02-25T20:02:10.761484Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.radioscience:trk223_ion_dopr::1.0","title":"OSIRIS-REx DSN Ionospheric Doppler Calibration","description":"This collection contains data products that provide ionospheric calibration for Doppler radio tracking measurements of the OSIRIS-REx spacecraft during its Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["OSIRIS-REx Mission","DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2018-08-01","stop_date":"2021-06-01","browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/collection_trk223_ion_dopr.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/collection_trk223_ion_dopr.xml","scraped_at":"2026-02-25T20:02:10.761488Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.radioscience:trk223_ion_vlbi::1.0","title":"OSIRIS-REx DSN Ionospheric VLBI Calibration","description":"This collection contains data products that provide ionospheric calibration for VLBI radio tracking measurements of the OSIRIS-REx spacecraft during its Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["OSIRIS-REx Mission","DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2018-08-19","stop_date":"2021-05-30","browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/collection_trk223_ion_vlbi.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/collection_trk223_ion_vlbi.xml","scraped_at":"2026-02-25T20:02:10.761492Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.radioscience:trk234_trknav::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Deep Space Network TRK-2-34 data files.","description":"This collection contains the OSIRIS-REx liens resolved DSN TRK234 binary data files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OSIRIS-REx Radio Science (Telecom) Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["OSIRIS-REx Spacecraft","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/collection_radioscience_trk234_traknav.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/collection_radioscience_trk234_traknav.xml","scraped_at":"2026-02-25T20:02:10.761498Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.apc.lightcurves:data::1.0","title":"Asteroid Photometric Catalog V1.0","description":"This collection contains the documents applicable to the Asteroid Photometric Catalog bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","Multiple Asteroids","(4) Vesta","(10) Hygiea","(100) Hekate","(101) Helena","(1012) Sarema","(1013) Tombecka","(1018) Arnolda","(102) Miriam","(1029) La Plata","(103) Hera","(1036) Ganymed","(104) Klymene","(105) Artemis","(1057) Wanda","(1058) Grubba","(106) Dione","(1062) Ljuba","(1063) Aquilegia","(1067) Lunaria","(1068) Nofretete","(107) Camilla","(1076) Viola","(1079) Mimosa","(1084) Tamariwa","(109) Felicitas","(1090) Sumida","(1092) Lilium","(1095) Tulipa","(11) Parthenope","(110) Lydia","(111) Ate","(1111) Reinmuthia","(1112) Polonia","(1129) Neujmina","(113) Amalthea","(1137) Raissa","(1139) Atami","(114) Kassandra","(1143) Odysseus","(1149) Volga","(115) Thyra","(1159) Granada","(116) Sirona","(1167) Dubiago","(1168) Brandia","(1173) Anchises","(1178) Irmela","(118) Peitho","(1180) Rita","(1186) Turnera","(11868) Kleinrichert","(119) Althaea","(1192) Prisma","(1196) Sheba","(1197) Rhodesia","(12) Victoria","(120) Lachesis","(1207) Ostenia","(121) Hermione","(1210) Morosovia","(1212) Francette","(1219) Britta","(1220) Crocus","(1223) Neckar","(1224) Fantasia","(123) Brunhild","(1234) Elyna","(1236) Thais","(1237) Genevieve","(124) Alkeste","(1240) Centenaria","(1245) Calvinia","(125) Liberatrix","(1250) Galanthus","(1256) Normannia","(1257) Mora","(1259) Ogyalla","(126) Velleda","(1262) Sniadeckia","(1267) Geertruida","(1279) Uganda","(128) Nemesis","(1284) Latvia","(1288) Santa","(1289) Kutaissi","(129) Antigone","(1291) Phryne","(13) Egeria","(130) Elektra","(13014) Hasslacher","(1305) Pongola","(1317) Silvretta","(132) Aethra","(1321) Majuba","(1322) Coppernicus","(133) Cyrene","(1331) Solvejg","(1337) Gerarda","(134) Sophrosyne","(1346) Gotha","(135) Hertha","(1350) Rosselia","(136) Austria","(1362) Griqua","(1366) Piccolo","(1368) Numidia","(137) Meliboea","(1379) Lomonosowa","(138) Tolosa","(1389) Onnie","(139) Juewa","(1392) Pierre","(1397) Umtata","(14) Irene","(140) Siwa","(1404) Ajax","(141) Lumen","(1416) Renauxa","(143) Adria","(1434) Margot","(1437) Diomedes","(144) Vibilia","(145) Adeona","(146) Lucina","(1468) Zomba","(147) Protogeneia","(1478) Vihuri","(148) Gallia","(1481) Tubingia","(1482) Sebastiana","(14827) Hypnos","(149) Medusa","(15) Eunomia","(150) Nuwa","(1504) Lappeenranta","(151) Abundantia","(1513) Matra","(152) Atala","(1522) Kokkola","(1523) Pieksmaki","(153) Hilda","(1533) Saimaa","(154) Bertha","(1556) Wingolfia","(156) Xanthippe","(1562) Gondolatsch","(1566) Icarus","(1576) Fabiola","(158) Koronis","(1580) Betulia","(1583) Antilochus","(1584) Fuji","(1585) Union","(159) Aemilia","(1590) Tsiolkovskaja","(1593) Fagnes","(16) Psyche","(1604) Tombaugh","(1609) Brenda","(161) Athor","(1615) Bardwell","(161989) Cacus","(162) Laurentia","(1620) Geographos","(1627) Ivar","(1628) Strobel","(163) Erigone","(164) Eva","(1641) Tana","(1644) Rafita","(1646) Rosseland","(165) Loreley","(1665) Gaby","(167) Urda","(1670) Minnaert","(1672) Gezelle","(1674) Groeneveld","(1685) Toro","(1687) Glarona","(1689) Floris-Jan","(169) Zelia","(1693) Hertzsprung","(17) Thetis","(1709) Ukraina","(171) Ophelia","(1715) Salli","(172) Baucis","(1722) Goffin","(1723) Klemola","(1727) Mette","(173) Ino","(174) Phaedra","(1742) Schaifers","(1743) Schmidt","(1753) Mieke","(1757) Porvoo","(1759) Kienle","(1772) Gagarin","(178) Belisana","(1780) Kippes","(1789) Dobrovolsky","(179) Klytaemnestra","(1793) Zoya","(18) Melpomene","(181) Eucharis","(182) Elsa","(183) Istria","(184) Dejopeja","(185) Eunike","(186) Celuta","(1862) Apollo","(1863) Antinous","(1864) Daedalus","(1865) Cerberus","(189) Phthia","(1892) Lucienne","(19) Fortuna","(190) Ismene","(1902) Shaposhnikov","(1915) Quetzalcoatl","(1917) Cuyo","(192) Nausikaa","(1928) Summa","(194) Prokne","(1941) Wild","(1943) Anteros","(1946) Walraven","(1951) Lick","(1957) Angara","(196) Philomela","(1960) Guisan","(197) Arete","(1972) Yi Xing","(2) Pallas","(20) Massalia","(200) Dynamene","(201) Penelope","(2017) Wesson","(203) Pompeja","(204) Kallisto","(206) Hersilia","95P/1977 UB (Chiron) [(2060) Chiron]","(2061) Anza","(2064) Thomsen","(2072) Kosmodemyanskaya","(208) Lacrimosa","(2088) Sahlia","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(2109) Dhotel","(211) Isolda","(2113) Ehrdni","(213) Lilaea","(214) Aschera","(2156) Kate","(2159) Kukkamaki","(216) Kleopatra","(2167) Erin","(218) Bianca","(219) Thusnelda","(22) Kalliope","(2201) Oljato","(221) Eos","(222) Lucia","(224) Oceana","(225) Henrietta","(226) Weringia","(23) Thalia","(230) Athamantis","(2317) Galya","(233) Asterope","(2339) Anacreon","(234) Barbara","(235) Carolina","(236) Honoria","(2363) Cebriones","(238) Hypatia","(24) Themis","(241) Germania","(243) Ida","(245) Vera","(246) Asporina","(247) Eukrate","(248) Lameia","(249) Ilse","(25) Phocaea","(250) Bettina","(254) Augusta","(255) Oppavia","(258) Tyche","(259) Aletheia","(26) Proserpina","(2608) Seneca","(261) Prymno","(263) Dresda","(264) Libussa","(267) Tirza","(2674) Pandarus","(268) Adorea","(2687) Tortali","(269) Justitia","(27) Euterpe","(270) Anahita","(273) Atropos","(2744) Birgitta","(277) Elvira","(279) Thule","(2797) Teucer","(28) Bellona","(280) Philia","(281) Lucretia","(282) Clorinde","(283) Emma","(2830) Greenwich","(284) Amalia","(287) Nephthys","(288) Glauke","(289) Nenetta","(2895) Memnon","(29) Amphitrite","(291) Alice","(292) Ludovica","(2952) Lilliputia","(3) Juno","(30) Urania","(302) Clarissa","(304) Olga","(306) Unitas","(3063) Makhaon","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(3103) Eger","(311) Claudia","Chaldaea","(3169) Ostro","(317) Roxane","(3199) Nefertiti","(32) Pomona","(321) Florentina","(322) Phaeo","(323) Brucia","(324) Bamberga","(325) Heidelberga","(3254) Bus","(326) Tamara","(3268) De Sanctis","(329) Svea","(33) Polyhymnia","(3317) Paris","(332) Siri","(334) Chicago","(335) Roberta","(336) Lacadiera","(3361) Orpheus","(337) Devosa","(338) Budrosa","(34) Circe","(340) Eduarda","(343) Ostara","(344) Desiderata","(345) Tercidina","(346) Hermentaria","(347) Pariana","(349) Dembowska","(35) Leukothea","(352) Gisela","(3536) Schleicher","(354) Eleonora","(3540) Protesilaos","(3551) Verenia","(3552) Don Quixote","(356) Liguria","(357) Ninina","(359) Georgia","(36) Atalante","(360) Carlova","(361) Bononia","(362) Havnia","(363) Padua","(364) Isara","(3651) Friedman","(3671) Dionysus","(3686) Antoku","(369) Aeria","(37) Fides","(372) Palma","(3737) Beckman","(375) Ursula","(376) Geometria","(377) Campania","(379) Huenna","(38) Leda","(381) Myrrha","(382) Dodona","(383) Janina","(385) Ilmatar","(386) Siegena","(387) Aquitania","(388) Charybdis","(389) Industria","(39) Laetitia","(3908) Nyx","(393) Lampetia","(394) Arduina","(396) Aeolia","(397) Vienna","(40) Harmonia","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(404) Arsinoe","(405) Thia","(407) Arachne","(409) Aspasia","(41) Daphne","(410) Chloris","(412) Elisabetha","(416) Vaticana","(417) Suevia","(418) Alemannia","(419) Aurelia","(42) Isis","(420) Bertholda","(422) Berolina","(423) Diotima","(429) Lotis","(43) Ariadne","(431) Nephele","(432) Pythia","(433) Eros","(434) Hungaria","(435) Ella","(437) Rhodia","(439) Ohio","(44) Nysa","(441) Bathilde","(4432) McGraw-Hill","(444) Gyptis","(449) Hamburga","(45) Eugenia","(451) Patientia","(454) Mathesis","(458) Hercynia","(459) Signe","(46) Hestia","(462) Eriphyla","(464) Megaira","(4659) Roddenberry","(468) Lina","(47) Aglaja","(470) Kilia","(471) Papagena","(476) Hedwig","(478) Tergeste","(48) Doris","(482) Petrina","(483) Seppina","(484) Pittsburghia","(485) Genua","(487) Venetia","(488) Kreusa","(489) Comacina","(49) Pales","(4924) Hiltner","(495) Eulalia","(497) Iva","(498) Tokio","(5) Astraea","(50) Virginia","(501) Urhixidur","(502) Sigune","(504) Cora","(505) Cava","(5080) Oja","(51) Nemausa","(510) Mabella","(511) Davida","(512) Taurinensis","(513) Centesima","(514) Armida","(5145) Pholus","(516) Amherstia","(517) Edith","(519) Sylvania","(52) Europa","(520) Franziska","(521) Brixia","(528) Rezia","(529) Preziosa","(53) Kalypso","(532) Herculina","(534) Nassovia","(537) Pauly","(5370) Taranis","(539) Pamina","(54) Alexandra","(545) Messalina","(55) Pandora","(550) Senta","(554) Peraga","(556) Phyllis","(558) Carmen","(56) Melete","(560) Delila","(562) Salome","(563) Suleika","(566) Stereoskopia","(568) Cheruskia","(57) Mnemosyne","(5761) Andreivanov","(579) Sidonia","(5797) Bivoj","(58) Concordia","(584) Semiramis","(588) Achilles","(59) Elpis","(590) Tomyris","(591) Irmgard","(593) Titania","(594) Mireille","(599) Luisa","(6) Hebe","(60) Echo","(600) Musa","(602) Marianna","(606) Brangane","(61) Danae","(618) Elfriede","(619) Triberga","(62) Erato","(621) Werdandi","(622) Esther","(624) Hektor","(628) Christine","(63) Ausonia","(631) Philippina","(632) Pyrrha","(639) Latona","(64) Angelina","(641) Agnes","(644) Cosima","(645) Agrippina","(65) Cybele","(653) Berenike","(654) Zelinda","(657) Gunlod","(658) Asteria","(659) Nestor","(66) Maja","(660) Crescentia","(67) Asia","(674) Rachele","(675) Ludmilla","(677) Aaltje","(678) Fredegundis","(679) Pax","(68) Leto","(683) Lanzia","(684) Hildburg","(688) Melanie","(69) Hesperia","(690) Wratislavia","(692) Hippodamia","(694) Ekard","(695) Bella","(699) Hela","(7) Iris","(70) Panopaea","(700) Auravictrix","(702) Alauda","(704) Interamnia","(7041) Nantucket","(705) Erminia","(709) Fringilla","(71) Niobe","(712) Boliviana","(714) Ulula","(716) Berkeley","(72) Feronia","(720) Bohlinia","(721) Tabora","(726) Joella","(73) Klytia","(733) Mocia","(736) Harvard","(737) Arequipa","(739) Mandeville","(74) Galatea","(746) Marlu","(747) Winchester","(75) Eurydike","(751) Faina","(753) Tiflis","(7550) Woolum","(76) Freia","(766) Moguntia","(77) Frigga","(771) Libera","(775) Lumiere","(776) Berbericia","(778) Theobalda","(779) Nina","(78) Diana","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(792) Metcalfia","(796) Sarita","(798) Ruth","(8) Flora","(80) Sappho","(800) Kressmannia","(8013) Gordonmoore","(804) Hispania","(807) Ceraskia","(81) Terpsichore","(811) Nauheima","(814) Tauris","(82) Alkmene","(83) Beatrix","(832) Karin","(838) Seraphina","(8395) Rembaut","(84) Klio","(841) Arabella","(846) Lipperta","(849) Ara","(85) Io","(850) Altona","(852) Wladilena","(853) Nansenia","(856) Backlunda","(8589) Stellaris","(86) Semele","(863) Benkoela","(87) Sylvia","(870) Manto","(873) Mechthild","(876) Scott","(877) Walkure","(88) Thisbe","(887) Alinda","(89) Julia","(9) Metis","(900) Rosalinde","(905) Universitas","(908) Buda","(91) Aegina","(911) Agamemnon","(914) Palisana","(916) America","(92) Undina","(925) Alphonsina","(93) Minerva","(939) Isberga","(94) Aurora","(940) Kordula","(944) Hidalgo","(945) Barcelona","(95) Arethusa","(951) Gaspra","(952) Caia","(96) Aegle","(97) Klotho","(974) Lioba","(98) Ianthe","(980) Anacostia","(984) Gretia","(987) Wallia","(99) Dike","(994) Otthild","(995) Sternberga","(10475) Maxpoilane","(11457) Hitomikobayashi","(129442) 1981 EC15","(12989) Chriseanderson","(14761) 6608 P-L","(16382) 1981 ER27","(17383) 1981 EE12","(20749) 2000 AD199","(23429) 1981 EO35","(29196) Dius","(30762) 1981 ES42","(32755) 1981 EP15","(37546) 1981 ET20","(3757) Anagolay","(5646) 1990 TR","(58119) 1981 EJ9","(6178) 1986 DA","(8252) Elkins-Tanton","(8253) Brunetto","(8794) Joepatterson","(8796) Sonnett","(9286) Patricktaylor","(9527) Sherrypervan","(9723) Binyang","(99980) 1981 ER18"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1913-08-20","stop_date":"1992-03-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/collection_compil.ast.apc.lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/collection_compil.ast.apc.lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.761564Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:compil.ast.apc.lightcurves:document::1.0","title":"Asteroid Photometric Catalog V1.0","description":"This collection contains the documents applicable to the Asteroid Photometric Catalog bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/collection_compil.ast.apc.lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/collection_compil.ast.apc.lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.761574Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-mission:document-fc::1.0","title":"Framing Camera Document Collection","description":"This collection contains documents associated with Dawn Framing Camera instruments.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["Framing Camera 1","Framing Camera 2"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/collection-document-fc-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/collection-document-fc-1.0.xml","scraped_at":"2026-02-25T20:02:10.761580Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-mission:document-grand::1.0","title":"Gamma Ray and Neutron Detector (GRaND) Document Collection","description":"This collection contains documents associated with the Dawn GRaND instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/collection-document-grand-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/collection-document-grand-1.0.xml","scraped_at":"2026-02-25T20:02:10.761584Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-mission:document-mission::1.0","title":"Dawn Mission Document Collection","description":"This collection contains documents associated with the Dawn Mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["Framing Camera 1","Framing Camera 2","GRAVITY SCIENCE INSTRUMENT","GAMMA-RAY AND NEUTRON DETECTOR","VISIBLE AND INFRARED SPECTROMETER"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/collection-document-mission-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/collection-document-mission-1.0.xml","scraped_at":"2026-02-25T20:02:10.761589Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-mission:document-rss::1.0","title":"Gravity Science Document Collection","description":"This collection contains documents associated with the Dawn Gravity Science instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/collection-document-rss-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/collection-document-rss-1.0.xml","scraped_at":"2026-02-25T20:02:10.761593Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-mission:document-vir::1.0","title":"Dawn VIR Instrument Document Collection","description":"This collection contains documents associated with Dawn Visual and Infrared Imaging Spectrometer (VIR) instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta","1 Ceres"],"instruments":["VISIBLE AND INFRARED SPECTROMETER"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/collection-document-vir-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/collection-document-vir-1.0.xml","scraped_at":"2026-02-25T20:02:10.761597Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-apc::1.0","title":"Dawn Radio Science Spacecraft Antenna Phase Center Time History Collection","description":"This collection contains one data product that provides the phase center time history of the spacecraft antenna during the Dawn encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":["RSS"],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2014-12-27","stop_date":"2018-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/collection_dawn-rss-raw-ceres_apc.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/collection_dawn-rss-raw-ceres_apc.xml","scraped_at":"2026-02-25T20:02:10.761602Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-ion::1.0","title":"Dawn Radio Science Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric calibration information for the Dawn spacecraft during its encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2015-01-01","stop_date":"2018-12-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/collection_dawn-rss-raw-ceres_ion.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/collection_dawn-rss-raw-ceres_ion.xml","scraped_at":"2026-02-25T20:02:10.761606Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-scm::1.0","title":"Dawn Radio Science Spacecraft Mass History Collection","description":"This collection contains one data product that provides the history of propellant usage and mass for the Dawn spacecraft through its encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":[],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2007-09-27","stop_date":"2018-10-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/collection_dawn-rss-raw-ceres_scm.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/collection_dawn-rss-raw-ceres_scm.xml","scraped_at":"2026-02-25T20:02:10.761612Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-sff::1.0","title":"Dawn Radio Science Small Forces File Collection","description":"This collection contains two data products that provide the cumulative delta-V effect on the spacecraft due to thruster firing, mass loss due to the expenditure of propellant, and cumulative on-times for each individual thruster during the Dawn encounter with 1 Ceres. The files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":[],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2014-09-15","stop_date":"2018-12-07","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/collection_dawn-rss-raw-ceres_sff.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/collection_dawn-rss-raw-ceres_sff.xml","scraped_at":"2026-02-25T20:02:10.761650Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-tro::1.0","title":"Dawn Radio Science Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric calibration information for the Dawn spacecraft through its encounter with 1 Ceres. Files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2015-01-01","stop_date":"2018-12-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/collection_dawn-rss-raw-ceres_tro.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/collection_dawn-rss-raw-ceres_tro.xml","scraped_at":"2026-02-25T20:02:10.761656Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-wea::1.0","title":"Dawn Radio Science DSN Weather Data Collection","description":"This collection contains several data products that provide DSN weather calibration information for the Dawn spacecraft during its encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DSN Media Calibration"],"targets":["Earth"],"instruments":["DSN Media Instrumentation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2015-01-01","stop_date":"2018-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/collection_dawn-rss-raw-ceres_wea.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/collection_dawn-rss-raw-ceres_wea.xml","scraped_at":"2026-02-25T20:02:10.761660Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:context::1.0","title":"Dawn Radio Science Ceres Context Collection","description":"This collection contains context products for the Dawn Raw Radio Science Ceres bundle. All of the members of the collection are secondary members.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/collection_dawn-rss-raw-ceres_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/collection_dawn-rss-raw-ceres_context.xml","scraped_at":"2026-02-25T20:02:10.761663Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:data-odf::1.0","title":"Dawn Radio Science Orbit Data File (ODF) Product Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired during the Dawn mission. These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio Metric Data Conditioning Team for use in determining spacecraft trajectories, gravity fields affecting them, and radio propagation conditions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["1 Ceres"],"instruments":["RSS","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 35","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2015-01-02","stop_date":"2016-09-06","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/collection_dawn-rss-raw-ceres_odf.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/collection_dawn-rss-raw-ceres_odf.xml","scraped_at":"2026-02-25T20:02:10.761670Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:data-tnf::1.0","title":"Dawn Radio Science Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired during the Dawn mission. Data were originally stored as chronological records in DSN format TRK-2-34; but they have been sorted according to data type (retaining chronological order within each data type) during migration from PDS3 to PDS4.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["1 Ceres"],"instruments":["RSS","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 35","DSN Antenna DSS 36","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2018-06-06","stop_date":"2018-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/collection_dawn-rss-raw-ceres_tnf.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/collection_dawn-rss-raw-ceres_tnf.xml","scraped_at":"2026-02-25T20:02:10.761676Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-ceres:document::1.0","title":"Dawn Ceres Radio Science Document Collection","description":"This collection contains the documents associated with the Dawn Radio Science (RS) Raw Data Archive (RDA) Ceres bundle. Except for minor differences in labels, this collection should be identical to the Dawn RS RDA Vesta document collection.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":[],"instruments":["RSS"],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/collection_document-cgrs.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/collection_document-cgrs.xml","scraped_at":"2026-02-25T20:02:10.761680Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectra:data::1.0","title":"Data collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","description":"Data collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/collection_galileo.ast-gaspra.nims.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/collection_galileo.ast-gaspra.nims.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761686Z","keywords":["NIMS spectra","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectra:document::1.0","title":"Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","description":"Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/collection_galileo.ast-gaspra.nims.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/collection_galileo.ast-gaspra.nims.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761691Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:browse::1.0","title":"Browse collection for Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","description":"Browse collection for Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/collection_galileo.ast-gaspra.nims.spectral-cube_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/collection_galileo.ast-gaspra.nims.spectral-cube_browse.xml","scraped_at":"2026-02-25T20:02:10.761694Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:data::1.0","title":"Data collection for the Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","description":"Data collection for the Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/collection_galileo.ast-gaspra.nims.spectral-cube_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/collection_galileo.ast-gaspra.nims.spectral-cube_data.xml","scraped_at":"2026-02-25T20:02:10.761699Z","keywords":["NIMS Spectral Cube","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:document::1.0","title":"Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","description":"Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/collection_galileo.ast-gaspra.nims.spectral-cube_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/collection_galileo.ast-gaspra.nims.spectral-cube_document.xml","scraped_at":"2026-02-25T20:02:10.761702Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images:data::1.0","title":"Data collection for Galileo SSI radiometrically calibrated image of 951 Gaspra V1.0","description":"Data collection for Galileo SSI radiometrically calibrated image of 951 Gaspra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/collection_galileo.ast-gaspra.ssi.cal-images_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/collection_galileo.ast-gaspra.ssi.cal-images_data.xml","scraped_at":"2026-02-25T20:02:10.761707Z","keywords":["calibrated spectra","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images:document::1.0","title":"Document collection for Galileo SSI Gaspra Radiometrically Calibrated Images V1.0","description":"Document collection forGalileo SSI Gaspra Radiometrically Calibrated Images V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/collection_galileo.ast-gaspra.ssi.cal-images_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/collection_galileo.ast-gaspra.ssi.cal-images_document.xml","scraped_at":"2026-02-25T20:02:10.761711Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectra:data::1.0","title":"Data collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","description":"Data collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida","(243) Ida I (Dactyl)"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/collection_galileo.ast-ida.nims.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/collection_galileo.ast-ida.nims.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761716Z","keywords":["NIMS spectra","241 Ida","Dactyl (243 Ida I)"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectra:document::1.0","title":"Document collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","description":"Document collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida","(243) Ida I (Dactyl)"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/collection_galileo.ast-ida.nims.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/collection_galileo.ast-ida.nims.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761719Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:browse::1.0","title":"Browse collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0","description":"Browse collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/collection_galileo.ast-ida.nims.spectral-cubes_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/collection_galileo.ast-ida.nims.spectral-cubes_browse.xml","scraped_at":"2026-02-25T20:02:10.761724Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:data::1.0","title":"Data collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0","description":"Data collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/collection_galileo.ast-ida.nims.spectral-cubes_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/collection_galileo.ast-ida.nims.spectral-cubes_data.xml","scraped_at":"2026-02-25T20:02:10.761727Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:document::1.0","title":"Document collection for Galileo NIMS Radiance Point Spectra of Ida V1.0","description":"Document collection for Galileo NIMS Radiance Point Spectra of Ida V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/collection_galileo.ast-ida.nims.spectral-cubes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/collection_galileo.ast-ida.nims.spectral-cubes_document.xml","scraped_at":"2026-02-25T20:02:10.761731Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.ssi.cal-images:data::1.0","title":"Data collection for Galileo SSI radiometrically calibrated image of 243 Ida V1.0","description":"Data collection for Galileo SSI radiometrically calibrated image of 243 Ida V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/collection_galileo.ast-ida.ssi.cal-images_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/collection_galileo.ast-ida.ssi.cal-images_data.xml","scraped_at":"2026-02-25T20:02:10.761735Z","keywords":["calibrated spectra","243 Ida"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:galileo.ast-ida.ssi.cal-images:document::1.0","title":"Document collection for Galileo SSI Ida Radiometrically Calibrated Images V1.0","description":"Document collection forGalileo SSI Ida Radiometrically Calibrated Images V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/collection_galileo.ast-ida.ssi.cal-images_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/collection_galileo.ast-ida.ssi.cal-images_document.xml","scraped_at":"2026-02-25T20:02:10.761738Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-apc::1.0","title":"Dawn Radio Science Spacecraft Antenna Phase Center Time History Collection","description":"This collection contains one data product that provides the phase center time history of the spacecraft antenna during the Dawn encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":["RSS"],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2011-07-13","stop_date":"2012-08-26","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/collection_dawn-rss-raw-vesta_apc.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/collection_dawn-rss-raw-vesta_apc.xml","scraped_at":"2026-02-25T20:02:10.761742Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-ion::1.0","title":"Dawn Radio Science Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric calibration information for the Dawn spacecraft during its encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2011-07-01","stop_date":"2012-10-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/collection_dawn-rss-raw-vesta_ion.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/collection_dawn-rss-raw-vesta_ion.xml","scraped_at":"2026-02-25T20:02:10.761747Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-scm::1.0","title":"Dawn Radio Science Spacecraft Mass History Collection","description":"This collection contains one data product that provides the history of propellant usage and mass for the Dawn spacecraft through its encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":[],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2007-09-27","stop_date":"2012-08-03","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/collection_dawn-rss-raw-vesta_scm.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/collection_dawn-rss-raw-vesta_scm.xml","scraped_at":"2026-02-25T20:02:10.761750Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-sff::1.0","title":"Dawn Radio Science Small Forces File Collection","description":"This collection contains two data products that provide the cumulative delta-V effect on the spacecraft due to thruster firing, mass loss due to the expenditure of propellant, and cumulative on-times for each individual thruster during the Dawn encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":[],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2011-07-01","stop_date":"2012-08-02","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/collection_dawn-rss-raw-vesta_sff.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/collection_dawn-rss-raw-vesta_sff.xml","scraped_at":"2026-02-25T20:02:10.761754Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-tro::1.0","title":"Dawn Radio Science Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric calibration information for the Dawn spacecraft through its encounter with 4 Vesta. Files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2011-07-01","stop_date":"2012-10-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/collection_dawn-rss-raw-vesta_tro.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/collection_dawn-rss-raw-vesta_tro.xml","scraped_at":"2026-02-25T20:02:10.761758Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-wea::1.0","title":"Dawn Radio Science DSN Weather Data Collection","description":"This collection contains several data products that provide DSN weather calibration information for the Dawn spacecraft during its encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DSN Media Calibration"],"targets":["Earth"],"instruments":["DSN Media Instrumentation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2011-01-01","stop_date":"2012-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/collection_dawn-rss-raw-vesta_wea.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/collection_dawn-rss-raw-vesta_wea.xml","scraped_at":"2026-02-25T20:02:10.761762Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:context::1.0","title":"Dawn Radio Science Vesta Context Collection","description":"This collection contains context products for the Dawn Raw Radio Science Vesta bundle. All of the members of the collection are secondary members.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/collection_dawn-rss-raw-vesta_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/collection_dawn-rss-raw-vesta_context.xml","scraped_at":"2026-02-25T20:02:10.761765Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:data-odf::1.0","title":"Dawn Radio Science Orbit Data File (ODF) Product Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired during the Dawn mission. These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio Metric Data Conditioning Team for use in determining spacecraft trajectories, gravity fields affecting them, and radio propagation conditions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["4 Vesta"],"instruments":["RSS","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2011-07-10","stop_date":"2012-09-05","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/collection_dawn-rss-raw-vesta_odf.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/collection_dawn-rss-raw-vesta_odf.xml","scraped_at":"2026-02-25T20:02:10.761770Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:dawn-rss-raw-vesta:document::1.0","title":"Dawn Vesta Radio Science Document Collection","description":"This collection contains the documents associated with the Dawn Radio Science (RS) Raw Data Archive (RDA) Vesta bundle. Except for minor differences in labels, this collection should be identical to the Dawn RS RDA Ceres document collection.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":[],"instruments":["RSS"],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/collection_document-vgrs.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/collection_document-vgrs.xml","scraped_at":"2026-02-25T20:02:10.761774Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.des.taxonomy:data::1.0","title":"DES_Asteroid_taxonomy V1.0","description":"Inventory of the data collection for the DES Asteroid Taxonomy Bundle V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Asteroids"],"instruments":["Victor Blanco 4.0m Telescope","Dark Energy Camera (DECam)"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"2013-08-31","stop_date":"2019-01-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/collection_gbo.ast.des.taxonomy_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/collection_gbo.ast.des.taxonomy_data.xml","scraped_at":"2026-02-25T20:02:10.761778Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.des.taxonomy:document::1.0","title":"DES_Asteroid_taxonomy V1.0","description":"We provide taxonomical information from Dark Energy Survey (DES) data for 16517 asteroids for which gri slope and i-z colors are available, taxonomical complex information for 58116 asteroids with DES colors g-r, g-i, and a list of 409 new possible V-type objects.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Asteroids"],"instruments":["Victor Blanco 4.0m Telescope","Dark Energy Camera (DECam)"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Document"],"start_date":"2013-08-31","stop_date":"2024-03-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/collection_gbo.ast.des.taxonomy_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/collection_gbo.ast.des.taxonomy_document.xml","scraped_at":"2026-02-25T20:02:10.761781Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021:data::1.0","title":"MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0","description":"This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["2020 RC","(415029) 2011 UL21","(65996) 1998 MX5","(3288) Seleucus","2018 MM8","(11405) 1999 CV3","(143404) 2003 BD44","(6569) Ondaatje","1996 AE2","2002 LY1","(5011) Ptah","2015 FS332","(5626) Melissabrucker","(7888) 1993 UC","(52762) 1998 MT24","(7358) Oze","(613512) 2006 SK134","2019 YH2","2016 NL15","(1627) Ivar","2011 WN15","(612098) 1999 RM45","(19356) 1997 GH3","(137126) 1999 CF9","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(137799) 1999 YB","(154302) 2002 UQ3","2008 QS11","(318411) 2005 AH14","(163348) 2002 NN4","(496816) 1989 UP","(380128) 1997 WB21","2007 XY9","(454177) 2013 GJ35","(142040) 2002 QE15","(438902) 2009 WF104","(11066) Sigurd","2016 LG","(455148) 1994 UG","(52768) 1998 OR2","(612484) 2002 TS67","(301964) 2000 EJ37","(53426) 1999 SL5","(217796) 2000 TO64","(186822) 2004 FE31","(413577) 2005 UL5","(523586) 1999 LK1","(380981) 2006 SU131","(4953) 1990 MU","(217807) 2000 XK44","(36017) 1999 ND43","(3691) Bede","(194386) 2001 VG5","(480004) 2014 KD91","(495102) 2011 UU106","2003 AF23","2018 WX1","(4179) Toutatis","2014 QK434","2015 OX78","(101955) Bennu","(162142) 1998 VR","(503871) 2000 SL","(7482) 1994 PC1","2014 AD17","(496817) 1989 VB","(411165) 2010 DF1","(457260) 2008 RY24","2015 BF92","2019 CH","2015 WH9","(153814) 2001 WN5","(363067) 2000 CO101","(144332) 2004 DV24","(2335) James","(163697) 2003 EF54","(200840) 2001 XN254","(141525) 2002 FV5","(528650) 2008 WX32","(155110) 2005 TB","(163081) 2002 AG29","(275611) 1999 XX262","2018 TT1","(162186) 1999 OP3","(3554) Amun","2002 AV","(2340) Hathor","(437844) 1999 MN","(85989) 1999 JD6","(488645) 2003 OV","(511684) 2015 BN509","(24445) 2000 PM8","(326290) Akhenaten","2017 BQ93","(67367) 2000 LY27","2011 UA","(21088) Chelyabinsk","(100926) 1998 MQ","(1011) Laodamia","2020 WU5","(6585) O'Keefe","(163373) 2002 PZ39","2018 QN1","(88188) 2000 XH44","(170502) 2003 WM7","(171819) 2001 FZ6","(137924) 2000 BD19","(363831) 2005 PY16","(143651) 2003 QO104","(1916) Boreas","(1508) Kemi","(65717) 1993 BX3","(357024) 1999 YR14","(3833) Calingasta","(2212) Hephaistos","(4688) 1980 WF","(236716) 2007 FV42","(612143) 2000 BO28","2015 NU13","2014 UR116","(161998) 1988 PA","(440212) 2004 OB","(1468) Zomba","2018 RC","(310442) 2000 CH59","(99907) 1989 VA","2015 OL35","(194126) 2001 SG276","2013 PY6","(68216) 2001 CV26","(5653) Camarillo","(138937) 2001 BK16","(398188) Agni","(453707) 2010 XY72","(13553) Masaakikoyama","(2063) Bacchus","(214869) 2007 PA8","(2449) Kenos","(10145) 1994 CK1","(5604) 1992 FE","(24475) 2000 VN2","(5587) 1990 SB","2016 ED85","2020 RO6","(457768) 2009 KN4","(413002) 1999 VG22","(96189) Pygmalion","2020 ME1","2015 BK509","(349063) 2006 XA","2020 RF","(3199) Nefertiti","(5261) Eureka","(468583) 2007 LS","2018 KE3","(244670) 2003 KN18","2016 CL136","2019 DN","(612813) 2004 RF84","(370307) 2002 RH52","(523631) 2009 SX1","(19127) Olegefremov","(162058) 1997 AE12","(88254) 2001 FM129","2020 TB12","(3402) Wisdom","(523817) 2009 TK","(144898) 2004 VD17","(159504) 2000 WO67","(4769) Castalia","(18736) 1998 NU","(154007) 2002 BY","(450648) 2006 UC63","(484795) 2009 DE47","2020 PM7","(11398) 1998 YP11","2019 BK","(189552) 2000 RL77","2016 LX48","(453778) 2011 JK","(699) Hela","2006 NL","(380359) 2002 TN30","(496818) 1993 RA","(137199) 1999 KX4","2011 WA","(250706) 2005 RR6","(265962) 2006 CG","(518735) 2009 JL1","(85990) 1999 JV6","2020 XU6","(226514) 2003 UX34","2017 MC4","(154347) 2002 XK4","(496005) 2007 XJ16","2017 CS","(6053) 1993 BW3","(3361) Orpheus","2017 YE5","(1951) Lick","(416186) 2002 TD60","(6386) Keithnoll","(99942) Apophis","(35107) 1991 VH","(414586) 2009 UV18","(137084) 1998 XS16","(18882) 1999 YN4","(329437) 2002 OA22","(433) Eros","(17182) 1999 VU","(1139) Atami","(36284) 2000 DM8","2014 YM9","(3988) Huma","2011 YS62","(242708) 2005 UK1","(380160) 2000 JO78","(505657) 2014 SR339","2019 FU","(465749) 2009 WO6","(141354) 2002 AJ29","(169675) 2002 JM97","2013 UX14","(159402) 1999 AP10","2015 RF36","(441987) 2010 NY65","(54690) 2001 EB","(480883) 2001 YE4","(4995) Griffin","(25916) 2001 CP44","(66063) 1998 RO1","(303174) 2004 FH11","(1981) Midas","(450649) 2006 UY64","(527715) 2007 YQ56","(137120) 1999 BJ8","(4183) Cuno","(1685) Toro","(471240) 2011 BT15","(153201) 2000 WO107","(154807) 2004 PP97","(138258) 2000 GD2","(162911) 2001 LL5","(90416) 2003 YK118","(25143) Itokawa","(2368) Beltrovata","(337866) 2001 WL15","(376864) 2001 TP103","(474179) 1999 VS6","(162082) 1998 HL1","(297300) 1998 SC15","(1865) Cerberus","2016 NV38","(5407) 1992 AX","2016 GU","(54789) 2001 MZ7","(4451) Grieve","(86450) 2000 CK33","(312473) 2008 SX245","(242211) 2003 QB90","(1198) Atlantis","2007 EC","(4341) Poseidon","(66146) 1998 TU3","(162004) 1991 VE","(1580) Betulia","2018 NB","(1204) Renzia","2016 AZ8","(458198) 2010 RT11","(21374) 1997 WS22","(388945) 2008 TZ3","(2102) Tantalus","(68950) 2002 QF15","(136874) 1998 FH74","(243025) 2006 UM216","(11500) Tomaiyowit","(385343) 2002 LV","2021 CG","(2078) Nanking","(5693) 1993 EA","2018 PP10","(354030) 2001 RB18","(24761) Ahau","(8014) 1990 MF","(7336) Saunders","2014 LW21","(132) Aethra","2016 XH1","(4197) Morpheus","2017 RL","(361123) 2006 GW2","(444584) 2006 UK","(382503) 2001 RE8","(66272) 1999 JW6","(53435) 1999 VM40","(162998) 2001 SK162","(3920) Aubignan","(7304) Namiki","2015 BC","2016 ES155","(283460) 2001 PD1","(152563) 1992 BF","(1566) Icarus","(17511) 1992 QN","(1862) Apollo","(3200) Phaethon","(141018) 2001 WC47","(25330) 1999 KV4","(265482) 2005 EE","(3671) Dionysus","(241662) 2000 KO44","(452389) 2002 NW16","(206378) 2003 RB","(138911) 2001 AE2","(138404) 2000 HA24","(389694) 2011 QD48","(85628) 1998 KV2","(887) Alinda","(139622) 2001 QQ142","(15817) Lucianotesi","(1310) Villigera","(452561) 2005 AB","(68359) 2001 OZ13","(531060) 2012 DJ61","(416151) 2002 RQ25","(399774) 2005 NB7","(53319) 1999 JM8","2016 UE101","(8567) 1996 HW1","(381677) 2009 BJ81","(612777) 2004 LU3","(416584) 2004 JB12","2017 DA36","(203217) 2001 FX9","(22771) 1999 CU3","(153842) 2001 XT30","(302830) 2003 FB","2017 MB1","2020 RJ3","(31345) 1998 PG","(7088) Ishtar","2020 DX","(86819) 2000 GK137","(99799) 2002 LJ3","(163899) 2003 SD220","(523811) 2008 TQ2","(6239) Minos","(20790) 2000 SE45","(495615) 2015 PQ291","(6411) Tamaga","(138524) 2000 OJ8","(719) Albert","(175189) 2005 EC224","(189040) 2000 MU1","2018 LQ2","(141053) 2001 XT1","(512) Taurinensis","(5131) 1990 BG","(489486) 2007 GS3","(294739) 2008 CM","(86039) 1999 NC43","2019 AN5","2020 TY1","(140158) 2001 SX169","2020 SY4","2015 TA25","(3103) Eger","(7889) 1994 LX","2018 BP","2016 PR8","(267494) 2002 JB9","(4486) Mithra","(190208) 2006 AQ","(5392) Parker","(451157) 2009 SQ104","(137108) 1999 AN10","(2059) Baboquivari","(482650) 2013 BK18","(365424) 2010 KX7","2015 XB379","2017 RR15","(163249) 2002 GT","(5817) Robertfrazer","(96590) 1998 XB","(338292) 2002 UA31","(98943) 2001 CC21","(163902) 2003 SW222","(333888) 1998 ST4","(5189) 1990 UQ","(63164) 2000 YU14","(141498) 2002 EZ16","2015 JJ2","(29075) 1950 DA","(65679) 1989 UQ","(5646) 1990 TR","(326777) 2003 SV222","(39572) 1993 DQ1","2015 DB","(35396) 1997 XF11","(152931) 2000 EA107","2005 GR33","(10115) 1992 SK","2015 JY1","(4954) Eric","(163696) 2003 EB50","(3102) Krok","(86212) 1999 TG21","(142464) 2002 TC9","(5879) Almeria","2018 JA","(66391) Moshup","(7341) 1991 VK","(450160) 2000 RM12","(414960) 2011 CS4","2008 SR1","(326291) 1998 HM3","(363599) 2004 FG11","(348400) 2005 JF21","(3908) Nyx","(88710) 2001 SL9","(470510) 2008 CJ116","(3552) Don Quixote","2020 PD1","2013 CW32","(6611) 1993 VW","(163000) 2001 SW169","(410778) 2009 FG19","(250577) 2005 AC","(175706) 1996 FG3","2018 QV1","2016 LV","(313276) 2002 AX1","(164202) 2004 EW","(5230) Asahina","(237805) 2002 CF26","(52760) 1998 ML14","(173664) 2001 JU2","(162173) Ryugu","2020 WL3","(102528) 1999 US3","(153591) 2001 SN263","(5660) 1974 MA","(443103) 2013 WT67","(162510) 2000 QW69","(483422) 2000 CE59","(162781) 2000 XL44","Multiple Asteroids","(422686) 2000 AC6","(512245) 2016 AU8","(66251) 1999 GJ2","(469737) 2005 NW44","2020 QW","(1640) Nemo","2015 SV2","2019 HC","(308635) 2005 YU55","(141670) 2002 JS100","(438955) 2010 LN14","(4558) Janesick","(194268) 2001 UY4","2017 AE5","(612199) 2000 WL63","(154244) 2002 KL6","(355256) 2007 KN4","(34613) 2000 UR13","(5143) Heracles","(612348) 2002 GZ8","(2099) Opik","(467963) 2012 JT17","(22753) 1998 WT","(87684) 2000 SY2","2016 YM","(405058) 2001 TX16","(154330) 2002 VX94","2017 BM123","2018 QU1","(437316) 2013 OS3","2014 UF206","(85709) 1998 SG36","(2062) Aten","2020 WM3","(1374) Isora","(154993) 2005 EA94","(90147) 2002 YK14","2007 RU17","(455322) 2002 NX18","(1036) Ganymed","(410777) 2009 FD","(448003) 2008 DE","2019 CD5","(68278) 2001 FC7","(1131) Porzia","(413038) 2001 MF1","(5786) Talos","(154276) 2002 SY50","(454100) 2013 BO73","(6455) 1992 HE","2020 PS","(9400) 1994 TW1","(13353) 1998 TU12","(297418) 2000 SP43","(143992) 2004 AF","(333889) 1998 SV4","2019 AP3","2005 WS3","(141593) 2002 HK12","(37336) 2001 RM","(475665) 2006 VY13","(85804) 1998 WQ5","(203015) 1999 YF3","(523667) 2012 TM139","(112221) 2002 KH4","2016 UU80","(250620) 2005 GE59","(1864) Daedalus","2015 DP155","2016 YK","(416591) 2004 LC2","(401857) 2000 PG3","(3674) Erbisbuhl","2012 SG32","(137170) 1999 HF1","(162687) 2000 UH1","(1565) Lemaitre","2020 SN","2004 QD3","(85818) 1998 XM4","(136923) 1998 JH2","(190166) 2005 UP156","2009 SV17","2015 AZ43","(326683) 2002 WP","(33342) 1998 WT24","(26760) 2001 KP41","(526238) 2005 YY36","(2074) Shoemaker","(329340) 2001 LM5","(3753) Cruithne","(438429) 2006 WN1","(385186) 1994 AW1","(471241) 2011 BX18","2011 WK15","(451397) 2011 EZ78","(5836) 1993 MF","(523788) 2015 FP118","2015 SY","(2064) Thomsen","(2061) Anza","2005 TF","(163364) 2002 OD20","2020 ST1","(108519) 2001 LF","(30825) 1990 TG1","(68347) 2001 KB67","2018 WD2","2018 XG5","(311554) 2006 BQ147","(253841) 2003 YG118","(481394) 2006 SF6","(3352) McAuliffe","(442243) 2011 MD11","2015 QT9","(155334) 2006 DZ169","2020 WK3","(32906) 1994 RH","(144411) 2004 EW9","2018 UQ1","(410088) 2007 EJ","(477885) 2011 JT9","(52340) 1992 SY","2014 RL12","2019 UC","(219071) 1997 US9","(485652) 2011 WO41","(498066) 2007 RM133","2015 SZ","(8037) 1993 HO1","(345705) 2006 VB14","(65690) 1991 DG","(153958) 2002 AM31","(136993) 1998 ST49","(154029) 2002 CY46","(14402) 1991 DB","2016 CO247","(302311) 2002 AA","2020 XH1","(106589) 2000 WN107","(285263) 1998 QE2","(481532) 2007 LE","2011 HP","(459872) 2014 EK24","2007 TQ24","(420302) 2011 XZ1","(525477) 2005 FC3","(89355) 2001 VS78","(220839) 2004 VA","(2329) Orthos","(422699) 2000 PD3","(68346) 2001 KZ66","2020 RB6","(1980) Tezcatlipoca","(145656) 4788 P-L","(96631) 1999 FP59","(506459) 2002 AL14","2003 YJ","(416071) 2002 NV","2010 GT7","2016 NA1","(3635) Kreutz","(8566) 1996 EN","(19764) 2000 NF5","(152978) 2000 GJ147","(388838) 2008 EZ5","(16834) 1997 WU22","(461501) 2003 FT3","(69230) Hermes","(10636) 1998 QK56","2020 SS4","(492143) 2013 OE","2011 CT4","2017 CR32","(89830) 2002 CE","(137062) 1998 WM","2019 GT3","(1620) Geographos","2018 EJ4","(1917) Cuyo","(1943) Anteros","(15745) Yuliya","(141052) 2001 XR1","(1866) Sisyphus","2017 VC","(3198) Wallonia","(500080) 2011 WV134","(7822) 1991 CS","(143624) 2003 HM16","2019 YP5","(137032) 1998 UO1","(16960) 1998 QS52","(4581) Asclepius","(3858) Dorchester","(3122) Florence","(6037) 1988 EG","(5863) Tara","(442037) 2010 PR66","(192563) 1998 WZ6","(446833) 2001 RB12","(465616) 2009 EC","(462959) 2011 DU","2019 SH6","2014 WG365","(174050) 2002 CC19","(138852) 2000 WN10","(4055) Magellan","(515767) 2015 JA2","(3255) Tholen","(411201) 2010 LJ14","2002 NY40","(17274) 2000 LC16","(433953) 1997 XR2","(159608) 2002 AC2","(5645) 1990 SP","(40329) 1999 ML","(12711) Tukmit","(2100) Ra-Shalom","(243147) 2007 TX18","(331471) 1984 QY1","(464798) 2004 JX20"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"2000-09-04","stop_date":"2021-02-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/collection_gbo.ast.mithneos.spectra_2000-2021_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/collection_gbo.ast.mithneos.spectra_2000-2021_data.xml","scraped_at":"2026-02-25T20:02:10.761823Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021:document::1.0","title":"MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0","description":"This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["2020 RC","(415029) 2011 UL21","(65996) 1998 MX5","(3288) Seleucus","2018 MM8","(11405) 1999 CV3","(143404) 2003 BD44","(6569) Ondaatje","1996 AE2","2002 LY1","(5011) Ptah","2015 FS332","(5626) Melissabrucker","(7888) 1993 UC","(52762) 1998 MT24","(7358) Oze","(613512) 2006 SK134","2019 YH2","2016 NL15","(1627) Ivar","2011 WN15","(612098) 1999 RM45","(19356) 1997 GH3","(137126) 1999 CF9","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(137799) 1999 YB","(154302) 2002 UQ3","2008 QS11","(318411) 2005 AH14","(163348) 2002 NN4","(496816) 1989 UP","(380128) 1997 WB21","2007 XY9","(454177) 2013 GJ35","(142040) 2002 QE15","(438902) 2009 WF104","(11066) Sigurd","2016 LG","(455148) 1994 UG","(52768) 1998 OR2","(612484) 2002 TS67","(301964) 2000 EJ37","(53426) 1999 SL5","(217796) 2000 TO64","(186822) 2004 FE31","(413577) 2005 UL5","(523586) 1999 LK1","(380981) 2006 SU131","(4953) 1990 MU","(217807) 2000 XK44","(36017) 1999 ND43","(3691) Bede","(194386) 2001 VG5","(480004) 2014 KD91","(495102) 2011 UU106","2003 AF23","2018 WX1","(4179) Toutatis","2014 QK434","2015 OX78","(101955) Bennu","(162142) 1998 VR","(503871) 2000 SL","(7482) 1994 PC1","2014 AD17","(496817) 1989 VB","(411165) 2010 DF1","(457260) 2008 RY24","2015 BF92","2019 CH","2015 WH9","(153814) 2001 WN5","(363067) 2000 CO101","(144332) 2004 DV24","(2335) James","(163697) 2003 EF54","(200840) 2001 XN254","(141525) 2002 FV5","(528650) 2008 WX32","(155110) 2005 TB","(163081) 2002 AG29","(275611) 1999 XX262","2018 TT1","(162186) 1999 OP3","(3554) Amun","2002 AV","(2340) Hathor","(437844) 1999 MN","(85989) 1999 JD6","(488645) 2003 OV","(511684) 2015 BN509","(24445) 2000 PM8","(326290) Akhenaten","2017 BQ93","(67367) 2000 LY27","2011 UA","(21088) Chelyabinsk","(100926) 1998 MQ","(1011) Laodamia","2020 WU5","(6585) O'Keefe","(163373) 2002 PZ39","2018 QN1","(88188) 2000 XH44","(170502) 2003 WM7","(171819) 2001 FZ6","(137924) 2000 BD19","(363831) 2005 PY16","(143651) 2003 QO104","(1916) Boreas","(1508) Kemi","(65717) 1993 BX3","(357024) 1999 YR14","(3833) Calingasta","(2212) Hephaistos","(4688) 1980 WF","(236716) 2007 FV42","(612143) 2000 BO28","2015 NU13","2014 UR116","(161998) 1988 PA","(440212) 2004 OB","(1468) Zomba","2018 RC","(310442) 2000 CH59","(99907) 1989 VA","2015 OL35","(194126) 2001 SG276","2013 PY6","(68216) 2001 CV26","(5653) Camarillo","(138937) 2001 BK16","(398188) Agni","(453707) 2010 XY72","(13553) Masaakikoyama","(2063) Bacchus","(214869) 2007 PA8","(2449) Kenos","(10145) 1994 CK1","(5604) 1992 FE","(24475) 2000 VN2","(5587) 1990 SB","2016 ED85","2020 RO6","(457768) 2009 KN4","(413002) 1999 VG22","(96189) Pygmalion","2020 ME1","2015 BK509","(349063) 2006 XA","2020 RF","(3199) Nefertiti","(5261) Eureka","(468583) 2007 LS","2018 KE3","(244670) 2003 KN18","2016 CL136","2019 DN","(612813) 2004 RF84","(370307) 2002 RH52","(523631) 2009 SX1","(19127) Olegefremov","(162058) 1997 AE12","(88254) 2001 FM129","2020 TB12","(3402) Wisdom","(523817) 2009 TK","(144898) 2004 VD17","(159504) 2000 WO67","(4769) Castalia","(18736) 1998 NU","(154007) 2002 BY","(450648) 2006 UC63","(484795) 2009 DE47","2020 PM7","(11398) 1998 YP11","2019 BK","(189552) 2000 RL77","2016 LX48","(453778) 2011 JK","(699) Hela","2006 NL","(380359) 2002 TN30","(496818) 1993 RA","(137199) 1999 KX4","2011 WA","(250706) 2005 RR6","(265962) 2006 CG","(518735) 2009 JL1","(85990) 1999 JV6","2020 XU6","(226514) 2003 UX34","2017 MC4","(154347) 2002 XK4","(496005) 2007 XJ16","2017 CS","(6053) 1993 BW3","(3361) Orpheus","2017 YE5","(1951) Lick","(416186) 2002 TD60","(6386) Keithnoll","(99942) Apophis","(35107) 1991 VH","(414586) 2009 UV18","(137084) 1998 XS16","(18882) 1999 YN4","(329437) 2002 OA22","(433) Eros","(17182) 1999 VU","(1139) Atami","(36284) 2000 DM8","2014 YM9","(3988) Huma","2011 YS62","(242708) 2005 UK1","(380160) 2000 JO78","(505657) 2014 SR339","2019 FU","(465749) 2009 WO6","(141354) 2002 AJ29","(169675) 2002 JM97","2013 UX14","(159402) 1999 AP10","2015 RF36","(441987) 2010 NY65","(54690) 2001 EB","(480883) 2001 YE4","(4995) Griffin","(25916) 2001 CP44","(66063) 1998 RO1","(303174) 2004 FH11","(1981) Midas","(450649) 2006 UY64","(527715) 2007 YQ56","(137120) 1999 BJ8","(4183) Cuno","(1685) Toro","(471240) 2011 BT15","(153201) 2000 WO107","(154807) 2004 PP97","(138258) 2000 GD2","(162911) 2001 LL5","(90416) 2003 YK118","(25143) Itokawa","(2368) Beltrovata","(337866) 2001 WL15","(376864) 2001 TP103","(474179) 1999 VS6","(162082) 1998 HL1","(297300) 1998 SC15","(1865) Cerberus","2016 NV38","(5407) 1992 AX","2016 GU","(54789) 2001 MZ7","(4451) Grieve","(86450) 2000 CK33","(312473) 2008 SX245","(242211) 2003 QB90","(1198) Atlantis","2007 EC","(4341) Poseidon","(66146) 1998 TU3","(162004) 1991 VE","(1580) Betulia","2018 NB","(1204) Renzia","2016 AZ8","(458198) 2010 RT11","(21374) 1997 WS22","(388945) 2008 TZ3","(2102) Tantalus","(68950) 2002 QF15","(136874) 1998 FH74","(243025) 2006 UM216","(11500) Tomaiyowit","(385343) 2002 LV","2021 CG","(2078) Nanking","(5693) 1993 EA","2018 PP10","(354030) 2001 RB18","(24761) Ahau","(8014) 1990 MF","(7336) Saunders","2014 LW21","(132) Aethra","2016 XH1","(4197) Morpheus","2017 RL","(361123) 2006 GW2","(444584) 2006 UK","(382503) 2001 RE8","(66272) 1999 JW6","(53435) 1999 VM40","(162998) 2001 SK162","(3920) Aubignan","(7304) Namiki","2015 BC","2016 ES155","(283460) 2001 PD1","(152563) 1992 BF","(1566) Icarus","(17511) 1992 QN","(1862) Apollo","(3200) Phaethon","(141018) 2001 WC47","(25330) 1999 KV4","(265482) 2005 EE","(3671) Dionysus","(241662) 2000 KO44","(452389) 2002 NW16","(206378) 2003 RB","(138911) 2001 AE2","(138404) 2000 HA24","(389694) 2011 QD48","(85628) 1998 KV2","(887) Alinda","(139622) 2001 QQ142","(15817) Lucianotesi","(1310) Villigera","(452561) 2005 AB","(68359) 2001 OZ13","(531060) 2012 DJ61","(416151) 2002 RQ25","(399774) 2005 NB7","(53319) 1999 JM8","2016 UE101","(8567) 1996 HW1","(381677) 2009 BJ81","(612777) 2004 LU3","(416584) 2004 JB12","2017 DA36","(203217) 2001 FX9","(22771) 1999 CU3","(153842) 2001 XT30","(302830) 2003 FB","2017 MB1","2020 RJ3","(31345) 1998 PG","(7088) Ishtar","2020 DX","(86819) 2000 GK137","(99799) 2002 LJ3","(163899) 2003 SD220","(523811) 2008 TQ2","(6239) Minos","(20790) 2000 SE45","(495615) 2015 PQ291","(6411) Tamaga","(138524) 2000 OJ8","(719) Albert","(175189) 2005 EC224","(189040) 2000 MU1","2018 LQ2","(141053) 2001 XT1","(512) Taurinensis","(5131) 1990 BG","(489486) 2007 GS3","(294739) 2008 CM","(86039) 1999 NC43","2019 AN5","2020 TY1","(140158) 2001 SX169","2020 SY4","2015 TA25","(3103) Eger","(7889) 1994 LX","2018 BP","2016 PR8","(267494) 2002 JB9","(4486) Mithra","(190208) 2006 AQ","(5392) Parker","(451157) 2009 SQ104","(137108) 1999 AN10","(2059) Baboquivari","(482650) 2013 BK18","(365424) 2010 KX7","2015 XB379","2017 RR15","(163249) 2002 GT","(5817) Robertfrazer","(96590) 1998 XB","(338292) 2002 UA31","(98943) 2001 CC21","(163902) 2003 SW222","(333888) 1998 ST4","(5189) 1990 UQ","(63164) 2000 YU14","(141498) 2002 EZ16","2015 JJ2","(29075) 1950 DA","(65679) 1989 UQ","(5646) 1990 TR","(326777) 2003 SV222","(39572) 1993 DQ1","2015 DB","(35396) 1997 XF11","(152931) 2000 EA107","2005 GR33","(10115) 1992 SK","2015 JY1","(4954) Eric","(163696) 2003 EB50","(3102) Krok","(86212) 1999 TG21","(142464) 2002 TC9","(5879) Almeria","2018 JA","(66391) Moshup","(7341) 1991 VK","(450160) 2000 RM12","(414960) 2011 CS4","2008 SR1","(326291) 1998 HM3","(363599) 2004 FG11","(348400) 2005 JF21","(3908) Nyx","(88710) 2001 SL9","(470510) 2008 CJ116","(3552) Don Quixote","2020 PD1","2013 CW32","(6611) 1993 VW","(163000) 2001 SW169","(410778) 2009 FG19","(250577) 2005 AC","(175706) 1996 FG3","2018 QV1","2016 LV","(313276) 2002 AX1","(164202) 2004 EW","(5230) Asahina","(237805) 2002 CF26","(52760) 1998 ML14","(173664) 2001 JU2","(162173) Ryugu","2020 WL3","(102528) 1999 US3","(153591) 2001 SN263","(5660) 1974 MA","(443103) 2013 WT67","(162510) 2000 QW69","(483422) 2000 CE59","(162781) 2000 XL44","Multiple Asteroids","(422686) 2000 AC6","(512245) 2016 AU8","(66251) 1999 GJ2","(469737) 2005 NW44","2020 QW","(1640) Nemo","2015 SV2","2019 HC","(308635) 2005 YU55","(141670) 2002 JS100","(438955) 2010 LN14","(4558) Janesick","(194268) 2001 UY4","2017 AE5","(612199) 2000 WL63","(154244) 2002 KL6","(355256) 2007 KN4","(34613) 2000 UR13","(5143) Heracles","(612348) 2002 GZ8","(2099) Opik","(467963) 2012 JT17","(22753) 1998 WT","(87684) 2000 SY2","2016 YM","(405058) 2001 TX16","(154330) 2002 VX94","2017 BM123","2018 QU1","(437316) 2013 OS3","2014 UF206","(85709) 1998 SG36","(2062) Aten","2020 WM3","(1374) Isora","(154993) 2005 EA94","(90147) 2002 YK14","2007 RU17","(455322) 2002 NX18","(1036) Ganymed","(410777) 2009 FD","(448003) 2008 DE","2019 CD5","(68278) 2001 FC7","(1131) Porzia","(413038) 2001 MF1","(5786) Talos","(154276) 2002 SY50","(454100) 2013 BO73","(6455) 1992 HE","2020 PS","(9400) 1994 TW1","(13353) 1998 TU12","(297418) 2000 SP43","(143992) 2004 AF","(333889) 1998 SV4","2019 AP3","2005 WS3","(141593) 2002 HK12","(37336) 2001 RM","(475665) 2006 VY13","(85804) 1998 WQ5","(203015) 1999 YF3","(523667) 2012 TM139","(112221) 2002 KH4","2016 UU80","(250620) 2005 GE59","(1864) Daedalus","2015 DP155","2016 YK","(416591) 2004 LC2","(401857) 2000 PG3","(3674) Erbisbuhl","2012 SG32","(137170) 1999 HF1","(162687) 2000 UH1","(1565) Lemaitre","2020 SN","2004 QD3","(85818) 1998 XM4","(136923) 1998 JH2","(190166) 2005 UP156","2009 SV17","2015 AZ43","(326683) 2002 WP","(33342) 1998 WT24","(26760) 2001 KP41","(526238) 2005 YY36","(2074) Shoemaker","(329340) 2001 LM5","(3753) Cruithne","(438429) 2006 WN1","(385186) 1994 AW1","(471241) 2011 BX18","2011 WK15","(451397) 2011 EZ78","(5836) 1993 MF","(523788) 2015 FP118","2015 SY","(2064) Thomsen","(2061) Anza","2005 TF","(163364) 2002 OD20","2020 ST1","(108519) 2001 LF","(30825) 1990 TG1","(68347) 2001 KB67","2018 WD2","2018 XG5","(311554) 2006 BQ147","(253841) 2003 YG118","(481394) 2006 SF6","(3352) McAuliffe","(442243) 2011 MD11","2015 QT9","(155334) 2006 DZ169","2020 WK3","(32906) 1994 RH","(144411) 2004 EW9","2018 UQ1","(410088) 2007 EJ","(477885) 2011 JT9","(52340) 1992 SY","2014 RL12","2019 UC","(219071) 1997 US9","(485652) 2011 WO41","(498066) 2007 RM133","2015 SZ","(8037) 1993 HO1","(345705) 2006 VB14","(65690) 1991 DG","(153958) 2002 AM31","(136993) 1998 ST49","(154029) 2002 CY46","(14402) 1991 DB","2016 CO247","(302311) 2002 AA","2020 XH1","(106589) 2000 WN107","(285263) 1998 QE2","(481532) 2007 LE","2011 HP","(459872) 2014 EK24","2007 TQ24","(420302) 2011 XZ1","(525477) 2005 FC3","(89355) 2001 VS78","(220839) 2004 VA","(2329) Orthos","(422699) 2000 PD3","(68346) 2001 KZ66","2020 RB6","(1980) Tezcatlipoca","(145656) 4788 P-L","(96631) 1999 FP59","(506459) 2002 AL14","2003 YJ","(416071) 2002 NV","2010 GT7","2016 NA1","(3635) Kreutz","(8566) 1996 EN","(19764) 2000 NF5","(152978) 2000 GJ147","(388838) 2008 EZ5","(16834) 1997 WU22","(461501) 2003 FT3","(69230) Hermes","(10636) 1998 QK56","2020 SS4","(492143) 2013 OE","2011 CT4","2017 CR32","(89830) 2002 CE","(137062) 1998 WM","2019 GT3","(1620) Geographos","2018 EJ4","(1917) Cuyo","(1943) Anteros","(15745) Yuliya","(141052) 2001 XR1","(1866) Sisyphus","2017 VC","(3198) Wallonia","(500080) 2011 WV134","(7822) 1991 CS","(143624) 2003 HM16","2019 YP5","(137032) 1998 UO1","(16960) 1998 QS52","(4581) Asclepius","(3858) Dorchester","(3122) Florence","(6037) 1988 EG","(5863) Tara","(442037) 2010 PR66","(192563) 1998 WZ6","(446833) 2001 RB12","(465616) 2009 EC","(462959) 2011 DU","2019 SH6","2014 WG365","(174050) 2002 CC19","(138852) 2000 WN10","(4055) Magellan","(515767) 2015 JA2","(3255) Tholen","(411201) 2010 LJ14","2002 NY40","(17274) 2000 LC16","(433953) 1997 XR2","(159608) 2002 AC2","(5645) 1990 SP","(40329) 1999 ML","(12711) Tukmit","(2100) Ra-Shalom","(243147) 2007 TX18","(331471) 1984 QY1","(464798) 2004 JX20"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":"2000-09-04","stop_date":"2021-02-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/collection_gbo.ast.mithneos.spectra_2000-2021_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/collection_gbo.ast.mithneos.spectra_2000-2021_document.xml","scraped_at":"2026-02-25T20:02:10.761866Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.sawyer.spectra:data::1.0","title":"Sawyer Asteroid Spectra V1.0","description":"This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(107) Camilla","(34) Circe","(230) Athamantis","(419) Aurelia","(704) Interamnia","(410) Chloris","(130) Elektra","(91) Aegina","(203) Pompeja","(85) Io","(476) Hedwig","(5) Astraea","(72) Feronia","(65) Cybele","(87) Sylvia","(45) Eugenia","(27) Euterpe","(1268) Libya","(14) Irene","(173) Ino","(57) Mnemosyne","(532) Herculina","(51) Nemausa","Multiple Asteroids","(64) Angelina","(386) Siegena","(41) Daphne","(712) Boliviana","(111) Ate","(171) Ophelia","(1167) Dubiago","(702) Alauda","(52) Europa","Solar Analog Stars","(148) Gallia","(434) Hungaria","(19) Fortuna","(2) Pallas","(804) Hispania","(63) Ausonia","(329) Svea","(1172) Aneas","(128) Nemesis","(30) Urania","(70) Panopaea","(54) Alexandra","(10) Hygiea","(127) Johanna","(387) Aquitania","(190) Ismene","(212) Medea","(194) Prokne","(13) Egeria","(511) Davida","(48) Doris","(137) Meliboea","(241) Germania","(95) Arethusa","(98) Ianthe","(537) Pauly","(405) Thia","(9) Metis","(602) Marianna","(93) Minerva","(409) Aspasia","(617) Patroclus","(44) Nysa","(20) Massalia","(431) Nephele","(505) Cava"],"instruments":["2.7m Telescope","Large Cassegrain Spectrometer","2.1-m Struve Warner & Swasey reflector","Cassegrain Spectrometer","Literature search"],"instrument_hosts":["McDonald Observatory","McDonald Observatory"],"data_types":["Data"],"start_date":"1983-09-15","stop_date":"1990-07-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/collection_gbo.ast.sawyer.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/collection_gbo.ast.sawyer.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761884Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast.sawyer.spectra:document::1.0","title":"Sawyer Asteroid Spectra V1.0","description":"This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(107) Camilla","(34) Circe","(230) Athamantis","(419) Aurelia","(704) Interamnia","(410) Chloris","(130) Elektra","(91) Aegina","(203) Pompeja","(85) Io","(476) Hedwig","(5) Astraea","(72) Feronia","(65) Cybele","(87) Sylvia","(45) Eugenia","(27) Euterpe","(1268) Libya","(14) Irene","(173) Ino","(57) Mnemosyne","(532) Herculina","(51) Nemausa","Multiple Asteroids","(64) Angelina","(386) Siegena","(41) Daphne","(712) Boliviana","(111) Ate","(171) Ophelia","(1167) Dubiago","(702) Alauda","(52) Europa","Solar Analog Stars","(148) Gallia","(434) Hungaria","(19) Fortuna","(2) Pallas","(804) Hispania","(63) Ausonia","(329) Svea","(1172) Aneas","(128) Nemesis","(30) Urania","(70) Panopaea","(54) Alexandra","(10) Hygiea","(127) Johanna","(387) Aquitania","(190) Ismene","(212) Medea","(194) Prokne","(13) Egeria","(511) Davida","(48) Doris","(137) Meliboea","(241) Germania","(95) Arethusa","(98) Ianthe","(537) Pauly","(405) Thia","(9) Metis","(602) Marianna","(93) Minerva","(409) Aspasia","(617) Patroclus","(44) Nysa","(20) Massalia","(431) Nephele","(505) Cava"],"instruments":["2.7m Telescope","Large Cassegrain Spectrometer","2.1-m Struve Warner & Swasey reflector","Cassegrain Spectrometer","Literature search"],"instrument_hosts":["McDonald Observatory","McDonald Observatory"],"data_types":["Document"],"start_date":"1983-09-15","stop_date":"1990-07-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/collection_gbo.ast.sawyer.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/collection_gbo.ast.sawyer.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761895Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hst.ast-ceres.images-albedo-shape:data::1.0","title":"HST images, albedo maps, and shape of (1) Ceres V1.0","description":"This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST"],"targets":["(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Data"],"start_date":"2003-12-28","stop_date":"2004-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/collection_hst.ast-ceres.images-albedo-shape_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/collection_hst.ast-ceres.images-albedo-shape_data.xml","scraped_at":"2026-02-25T20:02:10.761900Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hst.ast-ceres.images-albedo-shape:document::1.0","title":"HST images, albedo maps, and shape of (1) Ceres V1.0","description":"This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST"],"targets":["(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Document"],"start_date":"2003-12-28","stop_date":"2004-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/collection_hst.ast-ceres.images-albedo-shape_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/collection_hst.ast-ceres.images-albedo-shape_document.xml","scraped_at":"2026-02-25T20:02:10.761903Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hst.ast-ceres.uv-spectra:data::1.0","title":"HST UV Slitless Reflectance Spectra of (1) Ceres V1.0","description":"This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST"],"targets":["(1) Ceres","(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Data"],"start_date":"2007-11-25","stop_date":"2007-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/collection_hst.ast-ceres.uv-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/collection_hst.ast-ceres.uv-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761907Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hst.ast-ceres.uv-spectra:document::1.0","title":"HST UV Slitless Reflectance Spectra of (1) Ceres V1.0","description":"This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST"],"targets":["(1) Ceres","(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Document"],"start_date":"2007-11-25","stop_date":"2007-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/collection_hst.ast-ceres.uv-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/collection_hst.ast-ceres.uv-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761911Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.amica:calibration::1.0","title":"Hayabusa AMICA Calibration Collection","description":"This is the calibration collection for the hay.amica bundle. The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encount. This data set includes two types of calibration data. The ecas_ground_cal directory contains the ground based calibration of stars observed by the Hayabusa AMICA instrument during the cruise phase of the mission. The preflight directory contains preflight flat field data. The filters directory contains the filter profiles","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["x Filter","zs Filter","p Filter","Calibration Target","b Filter","v Filter","w Filter","ul Filter","Flat Field"],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","SBIG ST-9E","Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"],"instrument_hosts":["HAYABUSA","Goodricke-Pigott Observatory"],"data_types":["Calibration"],"start_date":"2003-03-18","stop_date":"2005-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/collection_hay.amica_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/collection_hay.amica_calibration.xml","scraped_at":"2026-02-25T20:02:10.761918Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.amica:data_raw::1.0","title":"Hayabusa AMICA Data Raw Collection","description":"This is the data_raw collection for the hay.amica bundle. The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["* tau Sco","Mars","Earth I (Moon)","Earth","* 31 Leo","* bet Tau","* alf Sco","* alf Ori","* alf Leo","Saturn","Calibration Lamp","(25143) Itokawa","* alf Aur","* alf Crv","* alf Vir","Sky"],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","SBIG ST-9E","Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"],"instrument_hosts":["HAYABUSA","Goodricke-Pigott Observatory"],"data_types":["Data"],"start_date":"2003-03-18","stop_date":"2005-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/collection_hay.amica_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/collection_hay.amica_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761924Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.amica:document::1.0","title":"Hayabusa AMICA Document Collection","description":"This is the document collection for the Hayabusa AMICA instrument data.The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/collection_hay.amica_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/collection_hay.amica_document.xml","scraped_at":"2026-02-25T20:02:10.761927Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.lidar:data_calibrated::1.0","title":"data_calibrated collection for the \"HAYABUSA LIDAR\" bundle","description":"This is the data_calibrated collection for the hay.lidar bundle. The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["LIGHT DETECTION AND RANGING INSTRUMENT"],"instrument_hosts":["HAYABUSA"],"data_types":["Data"],"start_date":"2005-09-11","stop_date":"2005-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/collection_hay.lidar_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/collection_hay.lidar_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.761932Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.lidar:data_raw::1.0","title":"data_raw collection for the \"HAYABUSA LIDAR\" bundle","description":"This is the data_raw collection for the hay.lidar bundle. The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["LIGHT DETECTION AND RANGING INSTRUMENT"],"instrument_hosts":["HAYABUSA"],"data_types":["Data"],"start_date":"2005-09-11","stop_date":"2005-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/collection_hay.lidar_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/collection_hay.lidar_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761936Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.lidar:document::1.0","title":"Document collection for the \"HAYABUSA LIDAR\" bundle","description":"This is the document collection for the hayabusa LIDAR instrument dataset. The HAYABUSA spacecraft included a Light Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/collection_hay.lidar_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/collection_hay.lidar_document.xml","scraped_at":"2026-02-25T20:02:10.761939Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.mission:context::1.0","title":"Hayabusa: Context","description":"This collection contains the context prodcuts applicable to the Hayabusa mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":[],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","LIGHT DETECTION AND RANGING INSTRUMENT","NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.761943Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.mission:document::1.0","title":"The document collection for the Hayabusa mission bundle","description":"This collection contains the documents pertaining to the PDS Hayabusa mission archive as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/collection_hay.mission_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/collection_hay.mission_document.xml","scraped_at":"2026-02-25T20:02:10.761947Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:hay.mission:xml_schema::1.0","title":"Hayabusa: XML_Schema","description":"This collection contains the xml_schema prodcuts applicable to the Hayabusa mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":[],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","LIGHT DETECTION AND RANGING INSTRUMENT","NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.761954Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iras:data_9p_images::1.0","title":"IRAS Images of 9P/Tempel 1","description":"This data set contains radiance and noise maps based on reprocessed images of comet 9P/Tempel 1 acquired by IRAS during months before and after its perihelion on July 9, 1983.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["9P/TEMPEL 1"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-06-18","stop_date":"1983-10-08","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/collection_iras_data_9p_images.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/collection_iras_data_9p_images.xml","scraped_at":"2026-02-25T20:02:10.761958Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iras:data_9p_photometry::1.0","title":"IRAS Photometry of 9P/Tempel 1","description":"This data set contains 12-, 25-, 60-, and 100-micron photometry of the dust coma of comet 9P/Tempel 1 during its 1983 apparition. The photometry was derived from reconstructed observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["9P/TEMPEL 1"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-06-18","stop_date":"1983-10-08","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/collection_iras_data_9p_photometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/collection_iras_data_9p_photometry.xml","scraped_at":"2026-02-25T20:02:10.761962Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iras:data_simps::1.0","title":"IRAS Minor Planet Survey (SIMPS) data collection","description":"The Supplemental IRAS Minor Planet Survey (SIMPS) provides diameters and albedos for asteroids detected by the 1983 IRAS mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["Multiple Asteroids"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-02-09","stop_date":"1983-11-18","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/collection_iras_data_simps.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/collection_iras_data_simps.xml","scraped_at":"2026-02-25T20:02:10.761965Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iras:data_zodiacal::1.0","title":"The IRAS Zodiacal Data Collection","description":"The IRAS Zodiacal collection contains the data stream output of the Infrared Astronomical Satellite (IRAS) as organized in the Low and Medium-Resolution Zodiacal History Files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["DUST"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-02-08","stop_date":"1983-11-21","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/collection_iras_data_zodiacal.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/collection_iras_data_zodiacal.xml","scraped_at":"2026-02-25T20:02:10.761969Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iras:document::1.0","title":"The IRAS Document Collection","description":"The document collection for the IRAS bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/document/collection_iras_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/document/collection_iras_document.xml","scraped_at":"2026-02-25T20:02:10.761972Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iras:miscellaneous::1.0","title":"The IRAS Miscellaneous Collection","description":"The IRAS miscellaneous data collection contains the filter curves and detector parameters for the FPA instrument, the template for 4 data sets containing the transmission profiles of the IRAS broadband filters, and the spacecraft position vectors and scan parameters.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["filter"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-02-08","stop_date":"1983-11-22","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/collection_iras_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/collection_iras_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.761975Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iue.ast.hendrix.spectra:data::2.0","title":"Hendrix IUE asteroid reflectance spectra V2.0","description":"This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Iue"],"targets":["(308) Polyxo","(41) Daphne","(42) Isis","(12) Victoria","(1620) Geographos","(40) Harmonia","(14) Irene","(433) Eros","(29) Amphitrite","(410) Chloris","(27) Euterpe","(654) Zelinda","(10) Hygiea","(471) Papagena","(16) Psyche","(63) Ausonia","(8) Flora","(135) Hertha","(4179) Toutatis","(18) Melpomene","(51) Nemausa","(20) Massalia","(511) Davida","(75) Eurydike","(349) Dembowska","(21) Lutetia","(54) Alexandra","(9) Metis","(23) Thalia","Multiple Asteroids","(129) Antigone","(324) Bamberga","(88) Thisbe","(15) Eunomia","(216) Kleopatra","(44) Nysa","(532) Herculina","(1566) Icarus","(354) Eleonora","(704) Interamnia"],"instruments":["LONG-WAVELENGTH REDUNDANT for IUE","LONG-WAVELENGTH PRIME for IUE"],"instrument_hosts":["International Ultraviolet Explorer","International Ultraviolet Explorer"],"data_types":["Data"],"start_date":"1978-05-21","stop_date":"1994-09-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/collection_iue.ast.hendrix.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/collection_iue.ast.hendrix.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761981Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:iue.ast.hendrix.spectra:document::2.0","title":"Hendrix IUE asteroid reflectance spectra V2.0","description":"This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Iue"],"targets":["(308) Polyxo","(41) Daphne","(42) Isis","(12) Victoria","(1620) Geographos","(40) Harmonia","(14) Irene","(433) Eros","(29) Amphitrite","(410) Chloris","(27) Euterpe","(654) Zelinda","(10) Hygiea","(471) Papagena","(16) Psyche","(63) Ausonia","(8) Flora","(135) Hertha","(4179) Toutatis","(18) Melpomene","(51) Nemausa","(20) Massalia","(511) Davida","(75) Eurydike","(349) Dembowska","(21) Lutetia","(54) Alexandra","(9) Metis","(23) Thalia","Multiple Asteroids","(129) Antigone","(324) Bamberga","(88) Thisbe","(15) Eunomia","(216) Kleopatra","(44) Nysa","(532) Herculina","(1566) Icarus","(354) Eleonora","(704) Interamnia"],"instruments":["LONG-WAVELENGTH REDUNDANT for IUE","LONG-WAVELENGTH PRIME for IUE"],"instrument_hosts":["International Ultraviolet Explorer","International Ultraviolet Explorer"],"data_types":["Document"],"start_date":"1978-05-21","stop_date":"1994-09-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/collection_iue.ast.hendrix.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/collection_iue.ast.hendrix.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761988Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps:data::1.0","title":"Phoebe SPC Shape Model and Assessment Products V1.0","description":"This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-huygens"],"targets":["Saturn IX (Phoebe)"],"instruments":["Imaging Science Subsystem - Wide Angle","Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/collection_satellite-phoebe.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/collection_satellite-phoebe.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761993Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps:document::1.0","title":"Phoebe SPC Shape Model and Assessment Products V1.0","description":"This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-huygens"],"targets":["Saturn IX (Phoebe)"],"instruments":["Imaging Science Subsystem - Wide Angle","Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/collection_satellite-phoebe.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/collection_satellite-phoebe.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761997Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.mission:context::2.0","title":"The NEAR Mission Bundle Context Collection","description":"This collection contains the context products applicable to the NEAR mission as a whole; including context products such as mission, spacecraft, instrument, and target context products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR"],"targets":["433 Eros","253 Mathilde","Earth","C/1996 B2 (Hyakutake)","SOLAR_SYSTEM","SPACE"],"instruments":["GAMMA RAY SPECTROMETER for NEAR","MAGNETOMETER for NEAR","MULTI-SPECTRAL IMAGER for NEAR","NEAR INFRARED SPECTROMETER for NEAR","NEAR LASER RANGEFINDER for NEAR","XRAY SPECTROMETER for NEAR","RADIO SCIENCE SUBSYSTEM for NEAR"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.762002Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.mission:document::2.0","title":"NEAR Mission Bundle Document Collection","description":"This collection contains the documents applicable to the NEAR mission archive as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR"],"targets":["433 Eros","253 Mathilde","Earth","C/1996 B2 (Hyakutake)","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER for NEAR","MAGNETOMETER for NEAR","MULTI-SPECTRAL IMAGER for NEAR","NEAR INFRARED SPECTROMETER for NEAR","NEAR LASER RANGEFINDER for NEAR","XRAY SPECTROMETER for NEAR","RADIO SCIENCE SUBSYSTEM for NEAR"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/collection_near.mission_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/collection_near.mission_document.xml","scraped_at":"2026-02-25T20:02:10.762007Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near.mission:xml_schema::1.0","title":"The NEAR Mission Bundle XML Schema Collection","description":"This collection contains the xml_schema prodcuts applicable to the NEAR mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR"],"targets":["433 Eros","253 Mathilde","Earth","SOLAR_SYSTEM","C/1996 B2 (Hyakutake)"],"instruments":["GAMMA RAY SPECTROMETER for NEAR","MAGNETOMETER for NEAR","MULTI-SPECTRAL IMAGER for NEAR","NEAR INFRARED SPECTROMETER for NEAR","NEAR LASER RANGEFINDER for NEAR","XRAY SPECTROMETER for NEAR","RADIO SCIENCE SUBSYSTEM for NEAR"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.762011Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spectral_analysis:calibration::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document","description":"This collection contains the calibration files applicable to the OSIRIS-REx Derived Spectral Anlaysis Products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OVIRS","OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/collection_calibration_spectral_analysis.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/collection_calibration_spectral_analysis.xml","scraped_at":"2026-02-25T20:02:10.762016Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spectral_analysis:data_tir_maps::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Map Collection","description":"This collection contains the Thermal Infrared map products produced by the OSIRIS-REx Spectral Analysis team during various mission phases in the Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/collection_data_tir_maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/collection_data_tir_maps.xml","scraped_at":"2026-02-25T20:02:10.762020Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spectral_analysis:data_tir_tmp_emissivity::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Temperature Emissivity Collection","description":"This collection contains the thermal infrared temperature emissivity products produced by the OSIRIS-REx Spectral Analysis team during the mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/collection_data_tir_tmp_emissivity.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/collection_data_tir_tmp_emissivity.xml","scraped_at":"2026-02-25T20:02:10.762028Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spectral_analysis:data_vnir_iof_spectra::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible Near Infrared IOF Spectra Collection","description":"This collection contains the reflectance (IOF) spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) during the Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/collection_data_vnir_iof_spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/collection_data_vnir_iof_spectra.xml","scraped_at":"2026-02-25T20:02:10.762032Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spectral_analysis:data_vnir_maps::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Map Collection","description":"This collection contains the visible-near infrared map products produced by the OSIRIS-REx Spectral Analysis team during various mission phases in the Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/collection_data_vnir_maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/collection_data_vnir_maps.xml","scraped_at":"2026-02-25T20:02:10.762035Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spectral_analysis:data_vnir_resampled_spectra::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible Near Infrared Resampled Spectra Collection","description":"This collection contains the resampled spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) during the Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/collection_data_vnir_resampled_spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/collection_data_vnir_resampled_spectra.xml","scraped_at":"2026-02-25T20:02:10.762039Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.spectral_analysis:document::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document","description":"This collection contains the documents applicable to the OSIRIS-REx Derived Spectral Anlaysis Products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OVIRS","OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/collection_document_spectral_analysis.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/collection_document_spectral_analysis.xml","scraped_at":"2026-02-25T20:02:10.762042Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_raw:data_eop::1.0","title":"NEAR RSS Raw Earth Orientation Parameters Collection","description":"NEAR Raw EOP Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1996-10-27","stop_date":"2000-12-21","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/collection_data_eop.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/collection_data_eop.xml","scraped_at":"2026-02-25T20:02:10.762070Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_raw:data_ion::1.0","title":"NEAR RSS Raw Ionosphere Data Collection","description":"NEAR Raw ION Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1997-06-01","stop_date":"2000-09-26","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/collection_data_ion.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/collection_data_ion.xml","scraped_at":"2026-02-25T20:02:10.762074Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_raw:data_nmlmodl::1.0","title":"NEAR Gravity Numerical Model Collection","description":"This collection contains the nominal set of namelist parameters used to define physical characteristics of the spacecraft's motion and tracking observable used by the JPL orbit determination software suite. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["253 Mathilde","433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1996-01-01","stop_date":"2002-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/collection_data_nmlmodl.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/collection_data_nmlmodl.xml","scraped_at":"2026-02-25T20:02:10.762078Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_raw:data_odf::1.0","title":"NEAR RSS Raw Orbit Data File Collection","description":"NEAR Raw ODF Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1997-05-30","stop_date":"2001-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/collection_data_odf.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/collection_data_odf.xml","scraped_at":"2026-02-25T20:02:10.762105Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_raw:data_paramsum::1.0","title":"NEAR Gravity Solution Page Collection","description":"Solution pages summarizing data arc, physical model nominal and estimated parameter values, along with formal uncertainties This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["253 Mathilde","433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1997-07-03","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/collection_data_paramsum.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/collection_data_paramsum.xml","scraped_at":"2026-02-25T20:02:10.762110Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_raw:data_tro::1.0","title":"NEAR RSS Raw Troposphere Data Collection","description":"NEAR Raw TRO Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1972-01-01","stop_date":"2048-01-01","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/collection_data_tro.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/collection_data_tro.xml","scraped_at":"2026-02-25T20:02:10.762117Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_raw:document::1.0","title":"NEAR Radio Science Raw Archive Document Collection","description":"The NEAR Radio Science Raw Archive document collection consists of documents supporting the data types and instrument. This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros","253 Mathilde"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/collection_document_inventory.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/collection_document_inventory.xml","scraped_at":"2026-02-25T20:02:10.762121Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_derived:data_img::1.0","title":"NEAR Gravity Map Collection","description":"This collection contains a set of gravity maps of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["RADIO SCIENCE SUBSYSTEM"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/collection_data_img.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/collection_data_img.xml","scraped_at":"2026-02-25T20:02:10.762125Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_derived:data_landmark::1.0","title":"NEAR Gravity Landmark Collection","description":"This collection contains a table giving X, Y, and Z coordinates of the centers of craters on the asteroid Eros projected onto a plane tangent to each crater's rim. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/collection_data_landmark.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/collection_data_landmark.xml","scraped_at":"2026-02-25T20:02:10.762129Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_derived:data_shadr::1.0","title":"NEAR Gravity Spherical ASCII Binary Data Record Collection","description":"This collection contains a set of spherical harmonic coefficients of the gravity field of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/collection_data_shadr.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/collection_data_shadr.xml","scraped_at":"2026-02-25T20:02:10.762132Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_derived:data_shbdr::1.0","title":"NEAR Gravity Spherical Harmonic Binary Data Record Collection","description":"This collection contains a set of spherical harmonic coeffients of the gravity field of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/collection_data_shbdr.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/collection_data_shbdr.xml","scraped_at":"2026-02-25T20:02:10.762137Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:near_rss_derived:document::1.0","title":"NEAR Radio Science Derived Archive Document Collection","description":"The NEAR Radio Science Derived Archive document collection consists of documents supporting the data types and instrument. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros","253 Mathilde"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/collection_document_inventory.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/collection_document_inventory.xml","scraped_at":"2026-02-25T20:02:10.762141Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams:calibration::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) calibration file collection.","description":"This collection contains the calibration files used to calibrate and correct the images acquired by the OCAMS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Calibration"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/collection_ocams_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/collection_ocams_calibration.xml","scraped_at":"2026-02-25T20:02:10.762146Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams:data_calibrated::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) calibrated science image data products.","description":"This collection contains the calibrated (processing level 2 radiometrically calibrated and reflectance) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/collection_ocams_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/collection_ocams_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.762150Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams:data_eng::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) ancillary image information data products.","description":"This collection contains the ancillary image information data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft. This product contains all instrument housekeeping data collected at the time of image acquisition.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/collection_ocams_eng.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/collection_ocams_eng.xml","scraped_at":"2026-02-25T20:02:10.762154Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams:data_hkl0::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) raw housekeeping data products.","description":"This collection contains the raw housekeeping data products produced by the OCAMS instrument suite onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/collection_ocams_data_hkl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/collection_ocams_data_hkl0.xml","scraped_at":"2026-02-25T20:02:10.762158Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams:data_hkl1::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) converted housekeeping data products.","description":"This collection contains the converted housekeeping data products produced by the OCAMS instrument suite onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/collection_ocams_data_hkl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/collection_ocams_data_hkl1.xml","scraped_at":"2026-02-25T20:02:10.762162Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams:data_raw::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) raw science image data products.","description":"This collection contains the raw (processing level 0) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/collection_ocams_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/collection_ocams_data_raw.xml","scraped_at":"2026-02-25T20:02:10.762165Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams:data_reduced::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) reduced science image data products.","description":"This collection contains the reduced (processing level 1 - bias, dark and flat field corrected) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/collection_ocams_data_reduced.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/collection_ocams_data_reduced.xml","scraped_at":"2026-02-25T20:02:10.762169Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ovirs:calibration::5.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) calibration file collection.","description":"This collection contains the calibration files used to calibrate and correct the spectra acquired by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/calibration/collection_ovirs_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/calibration/collection_ovirs_calibration.xml","scraped_at":"2026-02-25T20:02:10.762172Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.ocams:document::9.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document","description":"This collection contains the documents applicable to the OSIRIS-REx Camera Suite (OCAMS).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/collection_ocams_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/collection_ocams_document.xml","scraped_at":"2026-02-25T20:02:10.762175Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.sample_site:document_final::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final","description":"This collection includes three comprehensive catalogs characterizing the final sample site selection: DL15 (Nightingale). Each catalog represents a different sampling location within Nightingale - East (DL15E), Grid 37 (DL15Grid27), and West (DL15W) - and encompasses geospatial maps of dispersion, tilt, tip over during backaway, sampleability, texture, color, and boulder counts.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","OLA","OTES","OVIRS","TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/collection_final.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/collection_final.xml","scraped_at":"2026-02-25T20:02:10.762180Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.sample_site:document_final_eight::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final Eight","description":"This collection includes a comprehensive catalog of geospatial maps characterizing eight sample site options: BB03, BB21, CQ13, DL06, DL08, DL09, DL15, and EX07. The catalog encompasses PolyCam-derived imagery, shadow mapping, surface texture analysis, boulder distribution, reflectance imagery, and false color composite visualizations for each site.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","OLA","OTES","OVIRS","TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/collection_final_eight.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/collection_final_eight.xml","scraped_at":"2026-02-25T20:02:10.762185Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:orex.sample_site:document_final_four::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final Four","description":"This collection includes comprehensive catalogs of geospatial maps characterizing four sample site options: CQ13 (Kingfisher), DL06 (Osprey), DL15 (Nightingale), and EX07 (Sandpiper). The catalog encompasses PolyCam-derived imagery, shadow mapping, surface texture analysis, boulder distribution, reflectance imagery, and false color composite visualizations for each site.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","OLA","OTES","OVIRS","TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/collection_final_four.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/collection_final_four.xml","scraped_at":"2026-02-25T20:02:10.762189Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clipper.sud_ground_cal:calibration::1.0","title":"Europa Clipper SUDA Calibration Collection","description":"This collection contains lookup tables for unit conversions of signals from the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/collection_suda_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/collection_suda_calibration.xml","scraped_at":"2026-02-25T20:02:10.762227Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clipper.sud_ground_cal:data_cal_calibrated::1.0","title":"Europa Clipper SUDA Calibrated Data","description":"This collection contains the calibrated (L2a and L2b) data products produced by the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Data"],"start_date":"2022-07-07","stop_date":"2022-08-31","browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/collection_suda_data_cal_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/collection_suda_data_cal_calibrated.xml","scraped_at":"2026-02-25T20:02:10.762230Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clipper.sud_ground_cal:data_cal_hsk_raw::1.0","title":"Europa Clipper SUDA Housekeeping Collection","description":"This collection contains 'housekeeping' engineering data from the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Data"],"start_date":"2022-07-07","stop_date":"2022-08-31","browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/collection_suda_data_cal_hsk_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/collection_suda_data_cal_hsk_raw.xml","scraped_at":"2026-02-25T20:02:10.762234Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clipper.sud_ground_cal:data_cal_partially_processed::1.0","title":"Europa Clipper SUDA Partially Processed Data","description":"This collection contains the partially processed (L1a and L1b) data products produced by the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Data"],"start_date":"2022-07-07","stop_date":"2022-08-31","browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/collection_suda_data_cal_partially_processed.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/collection_suda_data_cal_partially_processed.xml","scraped_at":"2026-02-25T20:02:10.762238Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:clipper.sud_ground_cal:document::1.0","title":"Europa Clipper SUDA Document Collection","description":"This collection contains the documents applicable to the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/collection_suda_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/collection_suda_document.xml","scraped_at":"2026-02-25T20:02:10.762242Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model:data::1.0","title":"Data Collection for the Radar shape model of asteroid (99942) Apophis bundle","description":"The near-Earth asteroid (99942) Apophis spin state at epoch December 23 2012, 14:14:00 UTC with zero-epoch time and rotational phase as stated by Brozovic et al. (2018). The rotation state is the same as Model R in the Supplementary Table 1 in Brozovic et al. 2018.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["(99942) Apophis"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","DSS-14 70-m Radio Telescope","DSS-14 X-band Goldstone Solar System Radar Transmitter","DSS-14 X-band Goldstone Solar System Radar Receiver"],"instrument_hosts":["Arecibo Observatory","Goldstone Deep Space Communications Complex"],"data_types":["Data"],"start_date":"2012-12-21","stop_date":"2013-03-16","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/collection_gbo.ast-apophis.jpl.radar.shape_model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/collection_gbo.ast-apophis.jpl.radar.shape_model_data.xml","scraped_at":"2026-02-25T20:02:10.762268Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id":"urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model:document::1.0","title":"Document collection for the \"Radar shape model of asteroid (99942) Apophis bundle","description":"Document Collection for the Radar shape model of asteroid (99942) Apophis bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["(99942) Apophis"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","DSS-14 70-m Radio Telescope","DSS-14 X-band Goldstone Solar System Radar Transmitter","DSS-14 X-band Goldstone Solar System Radar Receiver"],"instrument_hosts":["Arecibo Observatory","Goldstone Deep Space Communications Complex"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/collection_gbo.ast-apophis.jpl.radar.shape_model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/collection_gbo.ast-apophis.jpl.radar.shape_model_document.xml","scraped_at":"2026-02-25T20:02:10.762274Z","keywords":["radar shape model"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} From 5c6ef881c7d786a59f80f997c86dd95c644c8385 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Fri, 27 Feb 2026 12:06:21 -0600 Subject: [PATCH 12/16] Keep pds4 similar to other pds4 schemas --- .../scraped_data/atm_catalog.jsonl | 5842 ++++++++--------- 1 file changed, 2921 insertions(+), 2921 deletions(-) diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl index 6aed243..6f2dad3 100644 --- a/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl @@ -1,2924 +1,2924 @@ -{"id": "MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0", "publication_date": "2015-10-09", "description": "This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS UNCALIBRATED DATA", "volume_id": "MESSMAS_1001", "volume_name": "MESSENGER MASCS UNCALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_1001 (MESSENGER Mascs Uncalibrated Data Archive)"} -{"id": "MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0", "publication_date": "2015-10-09", "description": "This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS UNCALIBRATED DATA", "volume_id": "MESSMAS_1001", "volume_name": "MESSENGER MASCS UNCALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_1001 (MESSENGER Mascs Uncalibrated Data Archive)"} -{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V2.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101 (MESSENGER Mascs Calibrated and Derived Data Archive)"} -{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} -{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} -{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} -{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} -{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume messmas_2001 (messenger mascs calibrated data archive)"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-09-25", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2214", "volume_name": "VOLUME 14: RAW DATA 1994-10-11 TO 1994-10-12", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2214", "node": "atm", "targets": ["Venus"], "title": "ATM Volume mg_2201 , mg_2202 , mg_2203 , mg_2204 , mg_2205 , mg_2206 , mg_2207 , mg_2208 , mg_2209 , mg_2210 , mg_2211 , mg_2212 , mg_2213 , mg_2214 (Magellan Radio Occultation Raw Data Records)"} -{"id": "MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0", "publication_date": "1996-06-27", "description": "This volume contains archival data produced from dual-frequency ingress radio occultation experiments using the Magellan orbiter on three consecutive orbits (#3212 - #3214) on October 5 and 6, 1991. The data sets include vertical profiles of refractivity, temperature, pressure and density in the neutral Venus atmosphere, and vertical profiles of 13-cm and 3.6-cm absorptivity and abundance of sulfuric acid vapor (H2SO4). The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MAGELLAN OCCULTATION PROFILE DATA RECORD", "volume_id": "MG_2401", "volume_name": "MAGELLAN OCCULTATION PROFILE DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2401", "node": "atm", "targets": ["Venus"], "title": "ATM Volume mg_2401 (Magellan Venus Radio Occultation Atmospheric Profiles)"} -{"id": "PVO-V-OUVS-5-IMIDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PVO-V-OUVS-5-IMIDR-V1.0", "publication_date": "1995-09-27", "description": "This volume contains the Pioneer Venus Orbiter Inbound Monochrome Image Data Record (IMIDR) archive, a set of rectified monochromatic images of Venus acquired by the Pioneer Venus Orbiter Ultraviolet Spectrometer (PVOUVS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "volume_id": "PV01_1002", "volume_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume pv01_1001 , pv01_1002 (Pioneer Venus Orbiter OUVS Inbound Monochrome Images)"} -{"id": "VCO-V-IR1-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_0001", "volume_name": "VENUS CLIMATE ORBITER IR1 RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_0001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir1_0001 (VENUS CLIMATE ORBITER IR1 DATA)"} -{"id": "VCO-V-IR1-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_1001", "volume_name": "VENUS CLIMATE ORBITER IR1 CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir1_1001 (VENUS CLIMATE ORBITER IR1 DATA)"} -{"id": "VCO-V-IR1-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_2001", "volume_name": "VENUS CLIMATE ORBITER IR1 GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir1_2001 (VENUS CLIMATE ORBITER IR1 DATA)"} -{"id": "VCO-V-IR2-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_0001", "volume_name": "VENUS CLIMATE ORBITER IR2 RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_0001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir2_0001 (VENUS CLIMATE ORBITER IR2 DATA)"} -{"id": "VCO-V-IR2-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_1001", "volume_name": "VENUS CLIMATE ORBITER IR2 CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir2_1001 (VENUS CLIMATE ORBITER IR2 DATA)"} -{"id": "VCO-V-IR2-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_2001", "volume_name": "VENUS CLIMATE ORBITER IR2 GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcoir2_2001 (VENUS CLIMATE ORBITER IR2 DATA)"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0001", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0001 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0002", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0002 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0003", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0003 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0004", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0004 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0005", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0005 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0006", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_0006 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1001", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1001 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1002", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1002 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1003", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1003 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1004", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1004 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1005", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1005 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1006", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1006 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1007", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_1007 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2001", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2001 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2002", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2002 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2003", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2003 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2004", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2004 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2005", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2005 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2006", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2006 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2007", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcolir_2007 (VENUS CLIMATE ORBITER LIR DATA)"} -{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2017-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1001", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_1001 (VENUS CLIMATE ORBITER RS DATA)"} -{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2020-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1002", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_1002 (VENUS CLIMATE ORBITER RS DATA)"} -{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2021-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2019-02-09 to 2020-08-24.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1003", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_1003 (VENUS CLIMATE ORBITER RS DATA)"} -{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2023-06-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1004", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_1004 (VENUS CLIMATE ORBITER RS DATA)"} -{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2017-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2001", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_2001 (VENUS CLIMATE ORBITER RS DATA)"} -{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2020-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2002", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_2002 (VENUS CLIMATE ORBITER RS DATA)"} -{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2021-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2020-02-09 to 2020-08-24.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2003", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_2003 (VENUS CLIMATE ORBITER RS DATA)"} -{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2023-06-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2004", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcors_2004 (VENUS CLIMATE ORBITER RS DATA)"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0001", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0001 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0002", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0002 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0003", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0003 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0004", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0004 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0005", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0005 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0006", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0006 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0007", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_0007 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1001", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1001 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1002", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1002 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1003", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1003 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1004", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1004 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1005", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1005 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1006", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1006 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1007", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_1007 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2001", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2001 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2002", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2002", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2002 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2003", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2003", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2003 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2004", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2004", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2004 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2005", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2005", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2005 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2006", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2006", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2006 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2007", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2007", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vcouvi_2007 (VENUS CLIMATE ORBITER UVI DATA)"} -{"id": "VEGA1/VEGA2-V-2/3-VENUS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VEGA1/VEGA2-V-2/3-VENUS-V1.0", "publication_date": "2020-02-01", "description": "This volume contains Vega observations from the balloon and lander at Venus.", "volume_set_name": "VEGA VENUS DATA", "volume_id": "VEGA_5001", "volume_name": "VEGA VENUS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vega_5001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vega_5001 (VEGA VENUS DATA)"} -{"id": "VEX-V-RSS-1-ENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "VEX-V-RSS-1-ENT-V1.0", "publication_date": "2013-03-26", "description": "This volume contains raw and partially processed radio science data and ancillary files from the Venus Express mission.", "volume_set_name": "VEX: RAW DSN RADIO SCIENCE DATA EXTENDED MISSION", "volume_id": "VXRS_1104", "volume_name": "VOLUME 1104: VERA DSN RAW DATA 2012", "browse_url": "https://atmos.nmsu.edu/PDS/data/VXRS_1104/", "node": "atm", "targets": ["Venus"], "title": "ATM Volume VXRS_1101 , VXRS_1102 , VXRS_1103 , VXRS_1104 (VEX: Raw DSN Radio Science Data Extended Mission)"} -{"id": "MEX-M-PFS-2-EDR-NOMINAL-V1.0", "pds_version_id": "PDS3", "data_set_id": "MEX-M-PFS-2-EDR-NOMINAL-V1.0", "publication_date": "2008-07-10", "description": "Data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF- IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA)", "volume_set_name": "MARS EXPRESS PFS DATA", "volume_id": "MEXPFS_1001", "volume_name": "VOLUME 1: MARS EXPRESS PFS DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mexpfs_1001 (Mars Express Mars PFS EDR Nominal Mission Data)"} -{"id": "MEX-M-PFS-2-EDR-EXT1-V1.0", "pds_version_id": "PDS3", "data_set_id": "MEX-M-PFS-2-EDR-EXT1-V1.0", "publication_date": "2008-07-23", "description": "Data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF- IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA)", "volume_set_name": "MARS EXPRESS PFS DATA", "volume_id": "MEXPFS_1001", "volume_name": "VOLUME 1: MARS EXPRESS PFS DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mexpfs_1002 (Mars Express Mars PFS EDR Nominal Mission Data)"} -{"id": "MGS-M-MOC-4-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOC-4-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} -{"id": "MGS-M-MOLA-1-AEDR-L0-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-1-AEDR-L0-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} -{"id": "MGS-M-MOLA-3-PEDR-L1A-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-3-PEDR-L1A-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} -{"id": "MGS-M-MOLA-5-PEDR-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-5-PEDR-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} -{"id": "MGS-M-TES-3-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-TES-3-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} -{"id": "MGS-M-TES-5-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-TES-5-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} -{"id": "MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0", "pds_version_id": "PDS3", "data_set_id": "MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} -{"id": "MGS-M-MAG/ER-5-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MAG/ER-5-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgs_0001 (Mars Global Surveyor Sampler CD)"} -{"id": "MGS-M-ACCEL-2-EDR-V1.1", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-2-EDR-V1.1", "publication_date": "2002-05-10", "description": "This volume contains raw data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0001", "volume_name": "MGS AEROBRAKING ACCELEROMETER RAW DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgsa_0001 (Mars Global Surveyor Accelerometer Raw Data)"} -{"id": "MGS-M-ACCEL-5-PROFILE-V1.2", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-5-PROFILE-V1.2", "publication_date": "2002-05-10", "description": "This volume contains reduced data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0002", "volume_name": "MGS AEROBRAKING ACCELEROMETER REDUCED DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgsa_0002 (Mars Global Surveyor Accelerometer Reduced Data)"} -{"id": "MGS-M-ACCEL-5-ALTITUDE-V1.1", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-5-ALTITUDE-V1.1", "publication_date": "2002-05-10", "description": "This volume contains reduced data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0002", "volume_name": "MGS AEROBRAKING ACCELEROMETER REDUCED DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mgsa_0002 (Mars Global Surveyor Accelerometer Reduced Data)"} -{"id": "MODEL-M-AMES-GCM-5-LAT-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} -{"id": "MODEL-M-AMES-GCM-5-LAT-LON-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-LON-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} -{"id": "MODEL-M-AMES-GCM-5-LAT-PRES-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-PRES-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} -{"id": "MODEL-M-AMES-GCM-5-LAT-TIME-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-TIME-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} -{"id": "MODEL-M-AMES-GCM-5-TIME-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-TIME-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} -{"id": "MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mogc_0001 (Ames Mars General Circulation Model Data Record)"} -{"id": "MGS-M-RSS-1-CRU-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-CRU-V1.0", "publication_date": "1999-12-29", "description": "This volume contains raw data, partially processed data, ancillary files, and final documentation from the Mars Global Surveyor Radio Science investigation Cruise Phase.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM CRUISE", "volume_id": "MORS_0156", "volume_name": "VOLUME 0156: 1997-08-30 to 1997-09-01", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0156", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_0101 - mors_0156 (Mars Global Surveyor Radio Science Cruise Data)"} -{"id": "MGS-M-RSS-1-MOI-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-MOI-V1.0", "publication_date": "1997-10-02", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM MOI", "volume_id": "MORS_0210", "volume_name": "VOLUME 0210: 1997-09-28 to 1997-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0210", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_0201 - mors_0359 (Mars Global Surveyor Radio Science Mars Orbit Insertion (MOI) Data)"} -{"id": "MGS-M-RSS-1-MAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-MAP-V1.0", "publication_date": "1999-04-16", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM MAPPING", "volume_id": "MORS_0410", "volume_name": "VOLUME 0410: 1999-04-14 to 1999-04-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0410", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_0401 - mors_0584 (Mars Global Surveyor Radio Science Mapping Data)"} -{"id": "MGS-M-RSS-1-EXT-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-EXT-V1.0", "publication_date": "2001-03-21", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RS DATA FROM EXTENDED MISSION", "volume_id": "MORS_0610", "volume_name": "VOLUME 0610: 2001-03-11 TO 2001-03-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0610", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_0601 - mors_08xx (Mars Global Surveyor Radio Science Mapping Data)"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2007-09-25", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1038", "volume_name": "VOLUME 1038: SPC, JUL - SEP 06 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1038", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_1001 , mors_1002 , mors_1003 , mors_1004 , mors_1005 , mors_1006 , mors_1007 , mors_1008 , mors_1009 , mors_1010 , mors_1011 , mors_1012 , mors_1013 , mors_1014 , mors_1015 , mors_1016 , mors_1017 , mors_1018 , mors_1019 , mors_1020 , mors_1021 , mors_1022 , mors_1023 , mors_1024 , mors_1025 , mors_1026 , mors_1027 , mors_1028 , mors_1029 , mors_1030 , mors_1031 , mors_1032 , mors_1033 , mors_1034 , mors_1035 , mors_1036 , mors_1037 , mors_1038 (Mars Global Surveyor Radio Science Reduced Data)"} -{"id": "MGS-M-RSS-5-TPS-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-TPS-V1.0", "publication_date": "2008-06-04", "description": "MORS_1101 contains the complete collection of Mars Global Surveyor radio occultation neutral atmosphere temperature-pressure profiles reorganized into a single archival volume.", "volume_set_name": "MGS RADIO SCIENCE - SCIENCE DATA PRODUCTS", "volume_id": "MORS_1101", "volume_name": "MGS RS TPS ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1101", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_1101 (MGS RS: Atmospheric Temperature-Pressure Profiles)"} -{"id": "MGS-M-RSS-5-EDS-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-EDS-V1.0", "publication_date": "2007-09-28", "description": "MORS_1102 contains the complete collection of Mars Global Surveyor radio occultation ionosphere electron density profiles reorganized into a single archival volume.", "volume_set_name": "MGS RADIO SCIENCE - SCIENCE DATA PRODUCTS", "volume_id": "MORS_1102", "volume_name": "MGS RS EDS ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1102", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mors_1102 (MGS Radio Science - Science Data Products)"} -{"id": "MPFL-M-ASIMET-2-EDR-SURF-V1.0", "pds_version_id": "PDS3", "data_set_id": "MPFL-M-ASIMET-2-EDR-SURF-V1.0", "publication_date": "2000-08-25", "description": "This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission.", "volume_set_name": "MARS PATHFINDER: THE ASI/MET ARCHIVE", "volume_id": "MPAM_0001", "volume_name": "VOLUME 1: EDL ASI-MET AND SURFACE MET DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)"} -{"id": "MPFL-M-ASIMET-3-RDR-SURF-V1.0", "pds_version_id": "PDS3", "data_set_id": "MPFL-M-ASIMET-3-RDR-SURF-V1.0", "publication_date": "2000-08-25", "description": "This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission.", "volume_set_name": "MARS PATHFINDER: THE ASI/MET ARCHIVE", "volume_id": "MPAM_0001", "volume_name": "VOLUME 1: EDL ASI-MET AND SURFACE MET DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)"} -{"id": "MPFL-M-ASIMET-2/3-EDR/RDR-EDL-V1.0", "pds_version_id": "PDS3", "data_set_id": "MPFL-M-ASIMET-2/3-EDR/RDR-EDL-V1.0", "publication_date": "2000-08-25", "description": "This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission.", "volume_set_name": "MARS PATHFINDER: THE ASI/MET ARCHIVE", "volume_id": "MPAM_0001", "volume_name": "VOLUME 1: EDL ASI-MET AND SURFACE MET DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)"} -{"id": "MPFL-M-ASIMET-4-DDR-EDL-V1.0", "pds_version_id": "PDS3", "data_set_id": "MPFL-M-ASIMET-4-DDR-EDL-V1.0", "publication_date": "2000-08-25", "description": "This volume contains all of the housekeeping and science raw and derived data associated with the Atmospheric Structure Instrument and Meteorology Package on the Mars Pathfinder spacecraft. This includes data collected by the science and engineering accelerometers and the pressure and temperature sensors during the various subphases of Entry, Descent, and Landing (EDL), as well as the pressure, temperature, and wind data collected after the spacecraft landed, ie., during the SURFACE phase of the mission.", "volume_set_name": "MARS PATHFINDER: THE ASI/MET ARCHIVE", "volume_id": "MPAM_0001", "volume_name": "VOLUME 1: EDL ASI-MET AND SURFACE MET DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mpam_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mpam_0001 (Mars Pathfinder Atmospheric Structure Instrument / Meteorology Package)"} -{"id": "MR9-M-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MR9-M-IRIS-3-RDR-V1.0", "publication_date": "1998-03-12", "description": "This volume contains data produced from the Mariner 9 IRIS experiment. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MARINER 9 IRIS SPECTRAL OBSERVATIONS OF MARS", "volume_id": "MR9_1001", "volume_name": "MARINER 9 IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mr9_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mr9_1001 (Mariner 9 Infrared Interferometer Spectrometer (IRIS) Spectral Observations of Mars)"} -{"id": "MRO-M-ACCEL-2-ACCELDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-ACCEL-2-ACCELDATA-V1.0", "publication_date": "2010-03-08", "description": "This volume contains raw and reduced data from the MRO Accelerometer instrument.", "volume_set_name": "MARS MRO ACCELEROMETER DATA", "volume_id": "MROA_0001", "volume_name": "MRO ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mroa_0001 (MRO ACCELEROMETER DATA)"} -{"id": "MRO-M-ACCEL-5-PROFILE-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-ACCEL-5-PROFILE-V1.0", "publication_date": "2010-03-08", "description": "This volume contains raw and reduced data from the MRO Accelerometer instrument.", "volume_set_name": "MARS MRO ACCELEROMETER DATA", "volume_id": "MROA_0001", "volume_name": "MRO ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mroa_0001 (MRO ACCELEROMETER DATA)"} -{"id": "MRO-M-ACCEL-5-ALTITUDE-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-ACCEL-5-ALTITUDE-V1.0", "publication_date": "2010-03-08", "description": "This volume contains raw and reduced data from the MRO Accelerometer instrument.", "volume_set_name": "MARS MRO ACCELEROMETER DATA", "volume_id": "MROA_0001", "volume_name": "MRO ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROA_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mroa_0001 (MRO ACCELEROMETER DATA)"} -{"id": "MRO-M-MCS-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-MCS-2-EDR-V1.0", "publication_date": "2006-07-06", "description": "This volume contains uncalibrated science and engineering data from the MRO MCS instrument", "volume_set_name": "MARS CLIMATE SOUNDER EDR", "volume_id": "MROM_0227", "volume_name": "VOLUME 227: JULY 2025", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_0227", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mrom_0001 , mrom_0002 , mrom_0003 , mrom_0004 , mrom_0005 , mrom_0006 , mrom_0007 , mrom_0008 , mrom_0009 , mrom_0010 , mrom_0011 , mrom_0012 , mrom_0013 , mrom_0014 , mrom_0015 , mrom_0016 , mrom_0017 , mrom_0018 , mrom_0019 , mrom_0020 , mrom_0021 , mrom_0022 , mrom_0023 , mrom_0024 , mrom_0025 , mrom_0026 , mrom_0027 , mrom_0028 , mrom_0029 , mrom_0030 , mrom_0031 , mrom_0032 , mrom_0033 , mrom_0034 , mrom_0035 , mrom_0036 , mrom_0040 , mrom_0041 , mrom_0042 , mrom_0043 , mrom_0044 , mrom_0045 , mrom_0046 , mrom_0047 , mrom_0048 , mrom_0049 , mrom_0050 , mrom_0051 , mrom_0052 , mrom_0053 , mrom_0054 , mrom_0055 , mrom_0056 , mrom_0057 , mrom_0058 , mrom_0059 , mrom_0060 , mrom_0061 , mrom_0062 , mrom_0063 , mrom_0064 , mrom_0065 , mrom_0066 , mrom_0067 , mrom_0068 , mrom_0069 , mrom_0070 , mrom_0071 , mrom_0072 , mrom_0073 , mrom_0074 , mrom_0075 , mrom_0076 , mrom_0077 , mrom_0078 , mrom_0079 , mrom_0080 , mrom_0081 , mrom_0082 , mrom_0083 , mrom_0084 , mrom_0085 , mrom_0086 , mrom_0087 , mrom_0088 , mrom_0089 , mrom_0090 , mrom_0091 , mrom_0092 , mrom_0093 , mrom_0094 , mrom_0095 , mrom_0096 , mrom_0097 , mrom_0098 , mrom_0099 , mrom_0100 , mrom_0101 , mrom_0102 , mrom_0103 , mrom_0104 , mrom_0105 , mrom_0106 , mrom_0107 , mrom_0108 , mrom_0109 , mrom_0110 , mrom_0111 , mrom_0112 , mrom_0113 , mrom_0114 , mrom_0115 , mrom_0116 , mrom_0117 , mrom_0118 , mrom_0119 , mrom_0120 , mrom_0121 , mrom_0122 , mrom_0123 , mrom_0124 , mrom_0125 , mrom_0126 , mrom_0127 , mrom_0128 , mrom_0129 , mrom_0130 , mrom_0131 , mrom_0132 , mrom_0133 , mrom_0134 , mrom_0135 , mrom_0136 , mrom_0137 , mrom_0138 , mrom_0139 , mrom_0140 , mrom_0141 , mrom_0142 , mrom_0143 , mrom_0144 , mrom_0145 , mrom_0146 , mrom_0147 , mrom_0148 , mrom_0149 , mrom_0150 , mrom_0151 , mrom_0152 , mrom_0153 , mrom_0154 , mrom_0155 , mrom_0156 , mrom_0157 , mrom_0158 , mrom_0159 , mrom_0160 , mrom_0161 , mrom_0162 , mrom_0163 , mrom_0164 , mrom_0165 , mrom_0166 , mrom_0167 , mrom_0168 , mrom_0169 , mrom_0170 , mrom_0171 , mrom_0172 , mrom_0173 , mrom_0174 , mrom_0175 , mrom_0176 , mrom_0177 , mrom_0178 , mrom_0179 , mrom_0180 , mrom_0181 , mrom_0182 , mrom_0183 , mrom_0184 , mrom_0185 , mrom_0186 , mrom_0187 , mrom_0188 , mrom_0189 , mrom_0190 , mrom_0191 , mrom_0192 , mrom_0193 , mrom_0194 , mrom_0195 , mrom_0196 , mrom_0197 , mrom_0198 , mrom_0199 , mrom_0200 , mrom_0201 , mrom_0202 , mrom_0203 , mrom_0204 , mrom_0205 , mrom_0206 , mrom_0207 , mrom_0208 , mrom_0209 , mrom_0210 , mrom_0211 , mrom_0212 , mrom_0213 , mrom_0214 , mrom_0215 , mrom_0216 , mrom_0217 , mrom_0218 , mrom_0219 , mrom_0220 , mrom_0221 , mrom_0222 , mrom_0223 , mrom_0224 , mrom_0225 , mrom_0226 , mrom_0227 (MARS CLIMATE SOUNDER EDR)"} -{"id": "MRO-M-MCS-4-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-MCS-4-RDR-V1.0", "publication_date": "2006-07-01", "description": "This volume contains science and engineering data from the MRO MCS Instrument", "volume_set_name": "MARS CLIMATE SOUNDER RDR", "volume_id": "MROM_1227", "volume_name": "VOLUME 1227: JULY 2025", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_1227", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mrom_1001 , mrom_1002 , mrom_1003 , mrom_1004 , mrom_1005 , mrom_1006 , mrom_1007 , mrom_1008 , mrom_1009 , mrom_1010 , mrom_1011 , mrom_1012 , mrom_1013 , mrom_1014 , mrom_1015 , mrom_1016 , mrom_1017 , mrom_1018 , mrom_1019 , mrom_1020 , mrom_1021 , mrom_1022 , mrom_1023 , mrom_1024 , mrom_1025 , mrom_1026 , mrom_1027 , mrom_1028 , mrom_1029 , mrom_1030 , mrom_1031 , mrom_1032 , mrom_1033 , mrom_1034 , mrom_1035 , mrom_1036 , mrom_1040 , mrom_1041 , mrom_1042 , mrom_1043 , mrom_1044 , mrom_1045 , mrom_1046 , mrom_1047 , mrom_1048 , mrom_1049 , mrom_1050 , mrom_1051 , mrom_1052 , mrom_1053 , mrom_1054 , mrom_1055 , mrom_1056 , mrom_1057 , mrom_1058 , mrom_1059 , mrom_1060 , mrom_1061 , mrom_1062 , mrom_1063 , mrom_1064 , mrom_1065 , mrom_1066 , mrom_1067 , mrom_1068 , mrom_1069 , mrom_1070 , mrom_1071 , mrom_1072 , mrom_1073 , mrom_1074 , mrom_1075 , mrom_1076 , mrom_1077 , mrom_1078 , mrom_1079 , mrom_1080 , mrom_1081 , mrom_1082 , mrom_1083 , mrom_1084 , mrom_1085 , mrom_1086 , mrom_1087 , mrom_1088 , mrom_1089 , mrom_1090 , mrom_1091 , mrom_1092 , mrom_1093 , mrom_1094 , mrom_1095 , mrom_1096 , mrom_1097 , mrom_1098 , mrom_1099 , mrom_1099 , mrom_1100 , mrom_1101 , mrom_1102 , mrom_1103 , mrom_1104 , mrom_1105 , mrom_1106 , mrom_1107 , mrom_1108 , mrom_1109 , mrom_1110 , mrom_1111 , mrom_1112 , mrom_1113 , mrom_1114 , mrom_1115 , mrom_1116 , mrom_1117 , mrom_1118 , mrom_1119 , mrom_1120 , mrom_1121 , mrom_1122 , mrom_1123 , mrom_1124 , mrom_1125 , mrom_1126 , mrom_1127 , mrom_1128 , mrom_1129 , mrom_1130 , mrom_1131 , mrom_1132 , mrom_1133 , mrom_1134 , mrom_1135 , mrom_1136 , mrom_1137 , mrom_1138 , mrom_1139 , mrom_1140 , mrom_1141 , mrom_1142 , mrom_1143 , mrom_1144 , mrom_1145 , mrom_1146 , mrom_1147 , mrom_1148 , mrom_1149 , mrom_1150 , mrom_1151 , mrom_1152 , mrom_1153 , mrom_1154 , mrom_1155 , mrom_1156 , mrom_1157 , mrom_1158 , mrom_1159 , mrom_1160 , mrom_1161 , mrom_1162 , mrom_1163 , mrom_1164 , mrom_1165 , mrom_1166 , mrom_1167 , mrom_1168 , mrom_1169 , mrom_1170 , mrom_1171 , mrom_1172 , mrom_1173 , mrom_1174 , mrom_1175 , mrom_1176 , mrom_1177 , mrom_1178 , mrom_1179 , mrom_1180 , mrom_1181 , mrom_1182 , mrom_1183 , mrom_1184 , mrom_1185 , mrom_1186 , mrom_1187 , mrom_1188 , mrom_1189 , mrom_1190 , mrom_1191 , mrom_1192 , mrom_1193 , mrom_1194 , mrom_1195 , mrom_1196 , mrom_1197 , mrom_1198 , mrom_1199 , mrom_1200 , mrom_1201 , mrom_1202 , mrom_1203 , mrom_1204 , mrom_1205 , mrom_1206 , mrom_1207 , mrom_1208 , mrom_1209 , mrom_1210 , mrom_1211 , mrom_1212 , mrom_1213 , mrom_1214 , mrom_1215 , mrom_1216 , mrom_1217 , mrom_1218 , mrom_1219 , mrom_1220 , mrom_1221 , mrom_1222 , mrom_1223 , mrom_1224 , mrom_1225 , mrom_1226 , mrom_1227 (MARS CLIMATE SOUNDER RDR)"} -{"id": "MRO-M-MCS-5-DDR-V6.2", "pds_version_id": "PDS3", "data_set_id": "MRO-M-MCS-5-DDR-V6.2", "publication_date": "2008-05-20", "description": "This volume contains geophysical profile data from the MRO MCS Instrument", "volume_set_name": "MARS CLIMATE SOUNDER DDR", "volume_id": "MROM_2227", "volume_name": "VOLUME 2227: JULY 2025", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=MROM_2227", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mrom_2001 , mrom_2002 , mrom_2003 , mrom_2004 , mrom_2005 , mrom_2006 , mrom_2007 , mrom_2008 , mrom_2009 , mrom_2010 , mrom_2011 , mrom_2012 , mrom_2013 , mrom_2014 , mrom_2015 , mrom_2016 , mrom_2017 , mrom_2018 , mrom_2019 , mrom_2020 , mrom_2021 , mrom_2022 , mrom_2023 , mrom_2024 , mrom_2025 , mrom_2026 , mrom_2027 , mrom_2028 , mrom_2029 , mrom_2030 , mrom_2031 , mrom_2032 , mrom_2033 , mrom_2034 , mrom_2035 , mrom_2036 , mrom_2040 , mrom_2041 , mrom_2042 , mrom_2043 , mrom_2044 , mrom_2045 , mrom_2046 , mrom_2047 , mrom_2048 , mrom_2049 , mrom_2050 , mrom_2051 , mrom_2052 , mrom_2053 , mrom_2054 , mrom_2055 , mrom_2056 , mrom_2057 , mrom_2058 , mrom_2059 , mrom_2060 , mrom_2061 , mrom_2062 , mrom_2063 , mrom_2064 , mrom_2065 , mrom_2066 , mrom_2067 , mrom_2068 , mrom_2069 , mrom_2070 , mrom_2071 , mrom_2072 , mrom_2073 , mrom_2074 , mrom_2075 , mrom_2076 , mrom_2077 , mrom_2078 , mrom_2079 , mrom_2080 , mrom_2081 , mrom_2082 , mrom_2083 , mrom_2084 , mrom_2085 , mrom_2086 , mrom_2087 , mrom_2088 , mrom_2089 , mrom_2090 , mrom_2091 , mrom_2092 , mrom_2093 , mrom_2094 , mrom_2095 , mrom_2096 , mrom_2097 , mrom_2098 , mrom_2099 , mrom_2100 , mrom_2101 , mrom_2102 , mrom_2103 , mrom_2104 , mrom_2105 , mrom_2106 , mrom_2107 , mrom_2108 , mrom_2109 , mrom_2110 , mrom_2111 , mrom_2112 , mrom_2113 , mrom_2114 , mrom_2115 , mrom_2116 , mrom_2117 , mrom_2118 , mrom_2119 , mrom_2120 , mrom_2121 , mrom_2122 , mrom_2123 , mrom_2124 , mrom_2125 , mrom_2126 , mrom_2127 , mrom_2128 , mrom_2129 , mrom_2130 , mrom_2131 , mrom_2132 , mrom_2133 , mrom_2134 , mrom_2135 , mrom_2136 , mrom_2137 , mrom_2138 , mrom_2139 , mrom_2140 , mrom_2141 , mrom_2142 , mrom_2143 , mrom_2144 , mrom_2145 , mrom_2146 , mrom_2147 , mrom_2148 , mrom_2149 , mrom_2150 , mrom_2151 , mrom_2152 , mrom_2153 , mrom_2154 , mrom_2155 , mrom_2156 , mrom_2157 , mrom_2158 , mrom_2159 , mrom_2160 , mrom_2161 , mrom_2162 , mrom_2163 , mrom_2164 , mrom_2165 , mrom_2166 , mrom_2167 , mrom_2168 , mrom_2169 , mrom_2170 , mrom_2171 , mrom_2172 , mrom_2173 , mrom_2174 , mrom_2175 , mrom_2176 , mrom_2177 , mrom_2178 , mrom_2179 , mrom_2180 , mrom_2181 , mrom_2182 , mrom_2183 , mrom_2184 , mrom_2185 , mrom_2186 , mrom_2187 , mrom_2188 , mrom_2189 , mrom_2190 , mrom_2191 , mrom_2192 , mrom_2193 , mrom_2194 , mrom_2195 , mrom_2196 , mrom_2197 , mrom_2198 , mrom_2199 , mrom_2200 , mrom_2201 , mrom_2202 , mrom_2203 , mrom_2204 , mrom_2205 , mrom_2206 , mrom_2207 , mrom_2208 , mrom_2209 , mrom_2210 , mrom_2211 , mrom_2212 , mrom_2213 , mrom_2214 , mrom_2215 , mrom_2216 , mrom_2217 , mrom_2218 , mrom_2219 , mrom_2220 , mrom_2221 , mrom_2222 , mrom_2223 , mrom_2224 , mrom_2225 , mrom_2226 , mrom_2227 (Mars Climate Sounder DDR)"} -{"id": "MSL-M-REMS-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-2-EDR-V1.0", "publication_date": "2013-02-06", "description": "This volume contains raw data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS EXPERIMENT DATA RECORD", "volume_id": "MSLREM_0001", "volume_name": "REMS EDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_0001 (REMS EDR DATA)"} -{"id": "MSL-M-REMS-3-TELRDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-3-TELRDR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} -{"id": "MSL-M-REMS-4-ENVRDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-4-ENVRDR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} -{"id": "MSL-M-REMS-5-MODRDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-5-MODRDR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} -{"id": "MSL-M-REMS-6-ADR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-6-ADR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} -{"id": "MSL-M-REMS-5-UVRDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MSL-M-REMS-5-UVRDR-V1.0", "publication_date": "2013-02-27", "description": "This volume contains processed data from the Mars Science Laboratory REMS instrument.", "volume_set_name": "MSL: THE REMS REDUCED DATA RECORD", "volume_id": "MSLREM_1001", "volume_name": "REMS RDR DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mslrem_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mslrem_1001 (REMS RDR DATA)"} -{"id": "MRO-M-RSS-5-TPS-V1.0", "pds_version_id": "PDS3", "data_set_id": "MRO-M-RSS-5-TPS-V1.0", "publication_date": "2013-08-01", "description": "MRORS_2001 contains the complete collection of Mars Reconnaissance Orbiter radio occultation temperature-pressure profiles.", "volume_set_name": "MRO: DERIVED RADIO SCIENCE T-P PRODUCTS", "volume_id": "MRORS_2001", "volume_name": "MRO RS TPS ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mrors_2001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume mrors_2001 (MRO RS TPS ARCHIVE)"} -{"id": "ODY-M-ACCEL-2-ACCELDATA-V2.0", "pds_version_id": "PDS3", "data_set_id": "ODY-M-ACCEL-2-ACCELDATA-V2.0", "publication_date": "2007-12-01", "description": "This volume contains data from Mars Odyssey Accelerometer investigations.", "volume_set_name": "ODY ACCELEROMETER DATA PRODUCTS", "volume_id": "ODYA_0001", "volume_name": "ODY AEROBRAKING ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume odya_0001 (ODY Accelerometer Data)"} -{"id": "ODY-M-ACCEL-5-PROFILE-V2.0", "pds_version_id": "PDS3", "data_set_id": "ODY-M-ACCEL-5-PROFILE-V2.0", "publication_date": "2007-12-01", "description": "This volume contains data from Mars Odyssey Accelerometer investigations.", "volume_set_name": "ODY ACCELEROMETER DATA PRODUCTS", "volume_id": "ODYA_0001", "volume_name": "ODY AEROBRAKING ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume odya_0001 (ODY Accelerometer Data)"} -{"id": "ODY-M-ACCEL-5-ALTITUDE-V2.0", "pds_version_id": "PDS3", "data_set_id": "ODY-M-ACCEL-5-ALTITUDE-V2.0", "publication_date": "2007-12-01", "description": "This volume contains data from Mars Odyssey Accelerometer investigations.", "volume_set_name": "ODY ACCELEROMETER DATA PRODUCTS", "volume_id": "ODYA_0001", "volume_name": "ODY AEROBRAKING ACCELEROMETER DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume odya_0001 (ODY Accelerometer Data)"} -{"id": "ODY-M-ACCEL-5-DERIVED-V1.0", "pds_version_id": "PDS3", "data_set_id": "ODY-M-ACCEL-5-DERIVED-V1.0", "publication_date": "2009-02-13", "description": "This volume contains time ordered records of measured acceleration, ancilliary information, derived density profiles and atmospheric properties at constant altitude levels from the aerobraking of Odyssey.", "volume_set_name": "ODY ACC ATMOSPHERIC DATA ARCHIVE", "volume_id": "ODYA_1001", "volume_name": "ODY ACC ATMOSPHERIC DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=odya_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume odya_1001 (Odyssey Accelerometer Derived Data)"} -{"id": "PHX-M-MET-2-L-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-MET-2-L-EDR-V1.0", "publication_date": "2008-02-09", "description": "This volume contains measurements from the LIDAR portion of the METEOROLOGY package of the PHOENIX mission.", "volume_set_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "volume_id": "PHLD_0003", "volume_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0003", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phld_0001 , phld_0002 , phld_0003 (Phoenix Mars MET LIDAR Atmospheric Profiles)"} -{"id": "PHX-M-MET-3-L-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-MET-3-L-RDR-V1.0", "publication_date": "2008-02-09", "description": "This volume contains measurements from the LIDAR portion of the METEOROLOGY package of the PHOENIX mission.", "volume_set_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "volume_id": "PHLD_0003", "volume_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phld_0003", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phld_0001 , phld_0002 , phld_0003 (Phoenix Mars MET LIDAR Atmospheric Profiles)"} -{"id": "PHX-M-MET-2-PT-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-MET-2-PT-EDR-V1.0", "publication_date": "2008-02-23", "description": "This volume contains measurements from the pressure/temperature portion of the METEOROLOGY package of the PHOENIX mission.", "volume_set_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "volume_id": "PHMT_0003", "volume_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0003", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phmt_0001 , phmt_0002 , phmt_0003 (Phoenix Mars Meteorological Pressure / Temperature)"} -{"id": "PHX-M-MET-3-PT-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-MET-3-PT-RDR-V1.0", "publication_date": "2008-02-23", "description": "This volume contains measurements from the pressure/temperature portion of the METEOROLOGY package of the PHOENIX mission.", "volume_set_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "volume_id": "PHMT_0003", "volume_name": "PHOENIX METEOROLOGY PACKAGE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phmt_0003", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phmt_0001 , phmt_0002 , phmt_0003 (Phoenix Mars Meteorological Pressure / Temperature)"} -{"id": "PHX-M-SSI-5-ATMOS-OPACITY-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-SSI-5-ATMOS-OPACITY-V1.0", "publication_date": "2009-04-29", "description": "This volume contains the atmospheric opacity derived products from the SSI experiment of the PHOENIX mission.", "volume_set_name": "PHOENIX ATMOSPHERIC OPACITY ARCHIVE", "volume_id": "PHXAO_1001", "volume_name": "PHOENIX ATMOSPHERIC OPACITY ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxao_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phxao_1001 (PHX Mars SSI Atmospheric Opacity RDR)"} -{"id": "PHX-M-ASE-2-EDL-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-ASE-2-EDL-V1.0", "publication_date": "2008-12-23", "description": "This volume contains all ASE measurements available from the EDL phase of the PHOENIX mission.", "volume_set_name": "PHOENIX ATMOSPHERIC STRUCTURE EXPERIMENT ARCHIVE", "volume_id": "PHXASE_0001", "volume_name": "PHOENIX ATMOSPHERIC STRUCTURE EXPERIMENT ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phxase_0001 (Phoenix Mars Atmospheric Structure Experiment)"} -{"id": "PHX-M-ASE-5-EDL-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-ASE-5-EDL-RDR-V1.0", "publication_date": "2010-04-05", "description": "This volume contains time ordered records of measured acceleration, derived velocity, derived position, derived atmospheric properties and, other quantities determined from IMU (ASE) measurements recorded during the EDL of PHX.", "volume_set_name": "PHOENIX ATMOSPHERIC STRUCTURE EXPERIMENT ARCHIVE", "volume_id": "PHXASE_0002", "volume_name": "PHOENIX ATMOSPHERIC STRUCTURE EXPERIMENT ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxase_0002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phxase_0002 (Phoenix Atmospheric Structure Experiment Archive)"} -{"id": "PHX-M-TT-5-WIND-VEL-DIR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PHX-M-TT-5-WIND-VEL-DIR-V1.0", "publication_date": "2009-04-29", "description": "This volume contains wind velocity and direction measurements from the Telltale experiment of the PHOENIX mission.", "volume_set_name": "PHOENIX WIND VELOCITY & DIRECTION ARCHIVE", "volume_id": "PHXWND_0001", "volume_name": "PHOENIX WIND VELOCITY & DIRECTION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=phxwnd_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume phxwnd_0001 (Phoenix Mars Telltale Wind Velocity & Direction)"} -{"id": "VL1/VL2-M-MET-3-P-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-MET-3-P-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} -{"id": "VL1/VL2-M-MET-4-DAILY-AVG-PRESSURE-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-MET-4-DAILY-AVG-PRESSURE-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} -{"id": "VL1-M-MET-4-BINNED-P-T-V-CORR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1-M-MET-4-BINNED-P-T-V-CORR-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} -{"id": "VL1/VL2-M-MET-4-BINNED-P-T-V-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-MET-4-BINNED-P-T-V-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} -{"id": "VL1/VL2-M-LCS-5-ATMOS-OPTICAL-DEPTH-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-LCS-5-ATMOS-OPTICAL-DEPTH-V1.0", "publication_date": "1995-07-10", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The meteorology data sets were produced from the Lander Meteorology Experiment (MET). The atmospheric opacity data set was derived from the Lander Camera Subsystem (LCS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Meteorology and Opacity Data", "volume_id": "VL_1001", "volume_name": "VL1/VL2 Meteorology and Opacity Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1001 (Viking Lander Products)"} -{"id": "VL1/VL2-M-FTS-3-FOOTPAD-TEMP-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-FTS-3-FOOTPAD-TEMP-V1.0", "publication_date": "1996-03-26", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The data sets included were produced from the Lander Footpad Temperature Sensors. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Footpad Temperature Sensor Data", "volume_id": "VL_1002", "volume_name": "VL1/VL2 Footpad Temperature Sensor Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1002 (Viking Lander Products)"} -{"id": "VL1/VL2-M-FTS-4-SOL-AVG-FTPD-TEMP-V1.0", "pds_version_id": "PDS3", "data_set_id": "VL1/VL2-M-FTS-4-SOL-AVG-FTPD-TEMP-V1.0", "publication_date": "1996-03-26", "description": "This volume contains archival data produced from the Viking Lander missions to Mars. The data sets included were produced from the Lander Footpad Temperature Sensors. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "Viking Lander Footpad Temperature Sensor Data", "volume_id": "VL_1002", "volume_name": "VL1/VL2 Footpad Temperature Sensor Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vl_1002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vl_1002 (Viking Lander Products)"} -{"id": "VO1/VO2-M-MAWD-4-V1.0", "pds_version_id": "PDS3", "data_set_id": "VO1/VO2-M-MAWD-4-V1.0", "publication_date": "1995-06-30", "description": "This volume contains data from the Viking Orbiter spacecraft MAWD experiments. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VIKING ORBITER 1&2: MAWD Data", "volume_id": "VO_3001", "volume_name": "VO1/VO2 Mars Atmospheric Water Detector (MAWD) Data", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vo_3001 (Viking Orbiter MAWD)"} -{"id": "VO1/VO2-M-IRTM-5-BINNED/CLOUDS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VO1/VO2-M-IRTM-5-BINNED/CLOUDS-V1.0", "publication_date": "1995-07-20", "description": "This volume contains data derived from the Viking Orbiter spacecraft IRTM experiments. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VIKING ORBITERS INFRARED THERMAL MAPPER BINNED/CLOUDS", "volume_id": "VO_3002", "volume_name": "VO1/VO2 MARS IRTM BINNED/CLOUDS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vo_3002", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vo_3002 (Viking Orbiter IRTM)"} -{"id": "MR9/VO1/VO2-M-ISS/VIS-5-CLOUD-V1.0", "pds_version_id": "PDS3", "data_set_id": "MR9/VO1/VO2-M-ISS/VIS-5-CLOUD-V1.0", "publication_date": "1995-07-20", "description": "This volume contains data derived from the Viking Orbiter and Mariner 9 imaging (ISS) experiments. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VIKING ORBITERS AND MARINER 9 MARS CLOUD CATALOG", "volume_id": "VOMR_0001", "volume_name": "VO1/VO2/MR9 MARS CLOUD CATALOG", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vomr_0001", "node": "atm", "targets": ["Mars"], "title": "ATM Volume vomr_0001 (Mars Clouds)"} -{"id": "CO-J-CIRS-2/3/4-TSDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "CO-J-CIRS-2/3/4-TSDR-V2.0", "publication_date": "2010-01-01", "description": "This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument", "volume_set_name": "CASSINI INFRARED SPECTRA", "volume_id": "COCIRS_0306", "volume_name": "CASSINI CIRS JUPITER RAW AND CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/review/CIRSV2/COCIRS_0306", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume cocirs_0010 , cocirs_0011 , cocirs_0012 , cocirs_0101 , cocirs_0102 , cocirs_0103 , cocirs_0104 , cocirs_0107 , cocirs_0110 , cocirs_0201 , cocirs_0205 , cocirs_0207 , cocirs_0209 , cocirs_0210 , cocirs_0301 , cocirs_0304 , cocirs_0306 (Cassini Cirs Jupiter Raw and Calibrated Data Archive)"} -{"id": "CO-J-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SSB-V1.2", "publication_date": "2012-01-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0001", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-J-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0001", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-J-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0001", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-J-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-WAV-V1.2", "publication_date": "2012-01-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0001", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0001 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.2", "pds_version_id": "PDS3", "data_set_id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.2", "publication_date": null, "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "volume_set_name": "CASSINI ISS EXPERIMENT DATA RECORDS AND CALIBRATION FILES", "volume_id": "COISS_0011", "volume_name": "CASSINI ISS CALIBRATION FILES", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coiss_0011", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume coiss_0011 (CASSINI ISS EXPERIMENT DATA RECORDS AND CALIBRATION FILES)"} -{"id": "CO-J-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0002", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0002 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-J-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SSB-V1.2", "publication_date": "2012-01-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0002", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0002 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-J-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0002", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume couvis_0002 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "ESO-J/S/N/U-SPECTROPHOTOMETER-4-V2.0", "pds_version_id": "PDS3", "data_set_id": "ESO-J/S/N/U-SPECTROPHOTOMETER-4-V2.0", "publication_date": "1998-12-17", "description": "This volume contains archival data produced from ground based observations of the Jovian planets and Titan tabulating the methane absorption coefficient and the full disk albedos of the Jovian planets and Titan at wavelengths from 300 nm to 1000 nm.", "volume_set_name": "GROUND BASED ATMOSPHERIC OBSERVATIONS", "volume_id": "GBAT_0001", "volume_name": "Spectrophotometry of the Jovian Planets and Titan at 300- to 1000-nm", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gbat_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gbat_0001 (Spectrophotometry of the Jovian Planets and Titan)"} -{"id": "GO-J-PPR-2-REDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "GO-J-PPR-2-REDR-V1.0", "publication_date": "2003-01-12", "description": "This volume contains data records (R_EDRs and RDRs) for the Photopolarimeter/Radiometer (PPR) during the GEM and GMM phases of the Galileo Mission.", "volume_set_name": "GALILEO: JUPITER PPR RAW AND REDUCED DATA RECORDS", "volume_id": "GOPR_5002", "volume_name": "GALILEO PPR JUPITER GEM AND GMM RAW AND REDUCED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gopr_5001 , gopr_5002 (Galileo PPR)"} -{"id": "GO-J-PPR-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "GO-J-PPR-3-RDR-V1.0", "publication_date": "2003-01-12", "description": "This volume contains data records (R_EDRs and RDRs) for the Photopolarimeter/Radiometer (PPR) during the GEM and GMM phases of the Galileo Mission.", "volume_set_name": "GALILEO: JUPITER PPR RAW AND REDUCED DATA RECORDS", "volume_id": "GOPR_5002", "volume_name": "GALILEO PPR JUPITER GEM AND GMM RAW AND REDUCED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gopr_5002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gopr_5001 , gopr_5002 (Galileo PPR)"} -{"id": "GO-J-EUV-2-EDR-JUPITER-V1.0", "pds_version_id": "PDS3", "data_set_id": "GO-J-EUV-2-EDR-JUPITER-V1.0", "publication_date": "1999-03-19", "description": "This volume contains raw data records for the Ultraviolet Spectrometer (UVS) and Extreme Ultraviolet Spectrometer (EUV) during the Jupiter Orbital phase of the Galileo Mission.", "volume_set_name": "GALILEO ULTRAVIOLET SPECTROMETER DATA", "volume_id": "GOUV_0003", "volume_name": "GALILEO EUV/UVS JUPITER DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0003", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gouv_0002 , gouv_0003 (GALILEO ULTRAVIOLET SPECTROMETER DATA)"} -{"id": "GO-J-UVS-2-EDR-JUPITER-V1.0", "pds_version_id": "PDS3", "data_set_id": "GO-J-UVS-2-EDR-JUPITER-V1.0", "publication_date": "1999-03-19", "description": "This volume contains raw data records for the Ultraviolet Spectrometer (UVS) and Extreme Ultraviolet Spectrometer (EUV) during the Jupiter Orbital phase of the Galileo Mission.", "volume_set_name": "GALILEO ULTRAVIOLET SPECTROMETER DATA", "volume_id": "GOUV_0003", "volume_name": "GALILEO EUV/UVS JUPITER DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gouv_0003", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gouv_0002 , gouv_0003 (GALILEO ULTRAVIOLET SPECTROMETER DATA)"} -{"id": "GP-J-ASI-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-ASI-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} -{"id": "GP-J-DWE-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-DWE-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} -{"id": "GP-J-EPI-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-EPI-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} -{"id": "GP-J-HAD-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-HAD-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} -{"id": "GP-J-LRD-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-LRD-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} -{"id": "GP-J-NEP-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-NEP-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} -{"id": "GP-J-NFR-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-NFR-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} -{"id": "GP-J-NMS-3-ENTRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "GP-J-NMS-3-ENTRY-V1.0", "publication_date": "2000-01-01", "description": "This volume contains atmospheric measurements from all of the instruments on board the Galileo Entry Probe. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD.", "volume_set_name": "GALILEO PROBE ARCHIVE", "volume_id": "GP_0001", "volume_name": "VOLUME 1", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=gp_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume gp_0001 (Galileo Probe Archive)"} -{"id": "JUNO-J-RSS-1-OCRU-V1.0", "pds_version_id": "PDS3", "data_set_id": "JUNO-J-RSS-1-OCRU-V1.0", "publication_date": "2016-10-26", "description": "This archive contains raw data and ancillary files for the gravity science from the Juno spacecraft during outer cruise between the Earth Flyby in October 2013 to Orbit Insertion in July 2016.", "volume_set_name": "JUNO OUTER CRUISE RAW RS GRAVITY DATA", "volume_id": "JNOGRV_0001", "volume_name": "JUNO OUTER CRUISE RAW RS GRAVITY DATA OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnogrv_0001 (JUNO OUTER CRUISE RAW RS GRAVITY DATA)"} -{"id": "JNO-J-RSS-5-JUGR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-RSS-5-JUGR-V1.0", "publication_date": "2022-03-21", "description": "This volume contains derived gravity science data from the Juno gravity science investigation.", "volume_set_name": "JUNO GRAVITY SCIENCE INSTRUMENT DERIVED L-2 DATA", "volume_id": "JNOGRV_0002", "volume_name": "JUNO DERIVED RADIO SCIENCE GRAVITY DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_0002", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnogrv_0002 (JUNO GRAVITY SCIENCE INSTRUMENT DERIVED L-2 DATA)"} -{"id": "JNO-J-RSS-1-JUGR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-RSS-1-JUGR-V1.0", "publication_date": "2017-05-20", "description": "This archive contains raw data and ancillary files from the Juno spacecraft during the science mission phase starting in July 2016.", "volume_set_name": "JUNO JUPITER RAW RS GRAVITY DATA", "volume_id": "JNOGRV_1001", "volume_name": "JUNO JUPITER RAW RS GRAVITY DATA OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnogrv_1001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnogrv_1001 (JUNO JUPITER RAW RS GRAVITY DATA)"} -{"id": "JNO-L-JIRAM-2-EDR-V3.0", "pds_version_id": "PDS3", "data_set_id": "JNO-L-JIRAM-2-EDR-V3.0", "publication_date": "2015-11-16", "description": "This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_1000", "volume_name": "JUNO JIRAM EDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1000", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_1000 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-2-EDR-V1.0", "publication_date": "2025-06-25", "description": "This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_1068", "volume_name": "JUNO JIRAM EDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_1068", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_1001 , jnojir_1002 , jnojir_1003 , jnojir_1004 , jnojir_1005 , jnojir_1006 , jnojir_1007 , jnojir_1008 , jnojir_1009 , jnojir_1010 , jnojir_1011 , jnojir_1012 , jnojir_1013 , jnojir_1014 , jnojir_1015 , jnojir_1016 , jnojir_1017 , jnojir_1018 , jnojir_1019 , jnojir_1020 , jnojir_1021 , jnojir_1022 , jnojir_1023 , jnojir_1024 , jnojir_1025 , jnojir_1026 , jnojir_1027 , jnojir_1028 , jnojir_1029 , jnojir_1030 , jnojir_1031 , jnojir_1032 , jnojir_1033 , jnojir_1034 , jnojir_1035 , jnojir_1036 , jnojir_1037 , jnojir_1038 , jnojir_1039 , jnojir_1040 , jnojir_1041 , jnojir_1042 , jnojir_1043 , jnojir_1044 , jnojir_1045 , jnojir_1046 , jnojir_1047 , jnojir_1048 , jnojir_1049 , jnojir_1050 , jnojir_1051 , jnojir_1052 , jnojir_1053 , jnojir_1054 , jnojir_1055 , jnojir_1056 , jnojir_1057 , jnojir_1058 , jnojir_1060 , jnojir_1061 , jnojir_1062 , jnojir_1063 , jnojir_1064 , jnojir_1065 , jnojir_1066 , jnojir_1067 , jnojir_1068 (JUNO JIRAM DATA)"} -{"id": "JNO-L-JIRAM-3-RDR-V3.0", "pds_version_id": "PDS3", "data_set_id": "JNO-L-JIRAM-3-RDR-V3.0", "publication_date": "2015-11-16", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2013-10-09.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2000", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2000", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2000 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2017-06-20", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2016-08-26 to 2016-08-28.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2003", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2003", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2001 , jnojir_2002 , jnojir_2003 , (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2017-12-14", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-02-01 to 2017-02-03.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2004", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2004", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2004 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-01-10", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-03-26 to 2017-03-27.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2005", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2005", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2005 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-01-12", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-05-18 to 2017-05-22.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2006", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2006", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2006 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-03-09", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-07-10 to 2017-07-11.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2008", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2008", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2007 , jnojir_2008 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-05-31", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2017-10-23 to 2017-10-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2010", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2010", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2009 , jnojir_2010 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-08-23", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-02-06 to 2018-02-08.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2011", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2011", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2011 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2018-08-29", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-03-31 to 2018-04-01.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2012", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2012", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2012 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2019-02-05", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-05-23 to 2018-05-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2014", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2014", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2013 , jnojir_2014 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2019-10-09", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-09-06 to 2018-09-07.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2015", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2015", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2015 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2019-10-28", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2018-10-29.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2016", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2016", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2016 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-01-10", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2018-12-20 to 2018-12-21.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2017", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2017", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2017 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2019-10-28", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2019-02-12.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2018", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2018", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2018 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-03-29", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-04-05 and 2019-04-06.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2019", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2019", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2019 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-04-08", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-05-28 and 2019-05-29.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2020", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2020", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2020 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-05-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-07-20 and 2019-07-21.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2021", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2021", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2021 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-05-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-09-11T and 2019-09-12.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2022", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2022", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2022 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-08-06", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2019-11-03 and 2019-11-04.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2023", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2023", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2023 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-08-31", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2020-02-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2024", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2024", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2024 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-08-24", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2019-12-26.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2027", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2027", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2025 , jnojir_2026 , jnojir_2027 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2020-12-16", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-07-24 and 2020-07-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2028", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2028", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2028 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-03-10", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-09-15 and 2020-09-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2029", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2029", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2029 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-03-22", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2020-11-07 and 2020-11-08.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2031", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2031", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2030 , jnojir_2031 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-03-28", "description": "This volume contains all JIRAM Level 2 data, that have been calibrated, for spacecraft event time (SCET) date 2021-04-14.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2032", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2032", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2032 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-10-22", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-04-15 and 2021-04-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2033", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2033", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2033 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2021-10-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-06-07 and 2021-07-19.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2034", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2034", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2034 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-01-17", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-07-20 and 2021-07-21.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2035", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2035", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2035 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-01-23", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2021-09-02 and 2021-09-03.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2036", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2036", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2036 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-04-11", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2021-10-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2037", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2037", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2037 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-04-11", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2021-11-29.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2038", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2038", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2038 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-07-12", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2022-01-12.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2039", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2039", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2039 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-07-12", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates between 2022-02-24 and 2022-02-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2040", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2040", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2040 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-10-24", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) date 2022-04-09.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2041", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2041", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2041 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2022-10-24", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-05-22 and 2022-05-23.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2042", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2042", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2042 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-01-04", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-07-04 and 2022-07-05.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2043", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2043", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2043 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-01-07", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-08-16 and 2022-08-18.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2044", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2044", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2044 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-03-16", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-09-29 and 2022-09-30.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2045", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2045", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2045 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-03-17", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-11-06 and 2022-11-07.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2046", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2046", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2046 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-04-19", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2022-12-14 and 2022-12-15.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2047", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2047", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2047 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-04-19", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-01-21 and 2023-01-22.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2048", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2048", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2048 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-09-05", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-02-28 and 2023-03-01.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2049", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2049", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2049 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-09-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-04-08 and 2023-05-02.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2050", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2050", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2050 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-12-11", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-05-15 and 2023-05-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2051", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2051", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2051 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-12-15", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-06-22 and 2023-06-26.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2052", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2052", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2052 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2023-12-18", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-07-31 and 2023-08-02.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2053", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2053", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2053 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-03-21", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-09-07 and 2023-09-09.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2054", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2054", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2054 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-03-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-10-14 and 2023-10-16.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2055", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2055", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2055 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-03-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates 2023-11-23.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2056", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2056", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2056 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-05-28", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)dates between 2023-12-30 and 2024-01-08.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2057", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2057", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2057 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2024-05-28", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date 2024-02-03.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2058", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2058", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2058 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-01-20", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date 2024-05-12.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2061", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2061", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2061 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-01-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-06-13 and 2024-06-14.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2062", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2062", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2062 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-02-25", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-07-16 and 2024-07-17.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2063", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2063", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2063 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-02-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date 2024-08-18.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2064", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2064", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2064 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-02-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date 2024-09-20.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2065", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2065", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2065 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-05-26", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-10-22 and 2024-10-23.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2066", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2066", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2066 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-05-27", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-11-24 and 2024-11-25.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2067", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2067", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2067 (JUNO JIRAM DATA)"} -{"id": "JNO-J-JIRAM-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-JIRAM-3-RDR-V1.0", "publication_date": "2025-05-27", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET)date between 2024-12-27 and 2024-12-28.", "volume_set_name": "JUNO JIRAM DATA", "volume_id": "JNOJIR_2068", "volume_name": "JUNO JIRAM RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnojir_2068", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnojir_2068 (JUNO JIRAM DATA)"} -{"id": "JNO-X-MWR-2-EDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "JNO-X-MWR-2-EDR-V2.0", "publication_date": "2020-05-03", "description": "This volume contains documentation and all available Juno MWR telemetry for spacecraft event times (SCET) 2011-08-24 to 2016-06-29. These are raw data and are not intended for use by the wider community. The companion volume JNOMWR_1000 contains calibrated useful for the wider public.", "volume_set_name": "JUNO MWR CRUISE STANDARD RAW PRODUCTS", "volume_id": "JNOMWR_0000", "volume_name": "JUNO MWR CRUISE STANDARD RAW PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0000", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_0000 (JUNO MWR)"} -{"id": "JNO-J-MWR-2-EDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-2-EDR-V2.0", "publication_date": "2020-05-10", "description": "This volume contains documentation and all available Juno MWR telemetry starting from spacecraft event time (SCET) 2016-07-06 to the end of the mission. The single dataset in this volume is an accumulating set of data, and eventually it will contain all raw data from the orbit for the entire mission. These are raw data and are not intended for use by the wider community. The companion volume JNOMWR_1100 contains calibrated useful for the wider public.", "volume_set_name": "JUNO MWR JUPITER STANDARD RAW PRODUCTS", "volume_id": "JNOMWR_0100", "volume_name": "JUNO MWR JUPITER STANDARD RAW PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_0100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_0100 (JUNO MWR JUPITER STANDARD RAW PRODUCTS)"} -{"id": "JNO-X-MWR-3-RDR-V3.0", "pds_version_id": "PDS3", "data_set_id": "JNO-X-MWR-3-RDR-V3.0", "publication_date": "2020-05-03", "description": "This volume contains documentation and all available Juno MWR telemetry for spacecraft event times (SCET) 2011-08-24 to 2016-06-29. These are calibrated data and are intended for use by the wider community.", "volume_set_name": "JUNO MWR CRUISE STANDARD CALIBRATED PRODUCTS", "volume_id": "JNOMWR_1000", "volume_name": "JUNO MWR CRUISE STANDARD CALIBRATED PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1000", "node": "atm", "targets": [], "title": "ATM Volume jnomwr_1000 (JUNO MWR)"} -{"id": "JNO-J-MWR-3-RDR-V2.1", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-3-RDR-V2.1", "publication_date": "2020-05-10", "description": "This volume contains documentation and all available Juno MWR calibrated science data records from spacecraft event time (SCET) 2016-07-06 to the end of the mission. The single dataset in this volume is an accumulating set of data, and eventually it will contain all calibrated science data from the orbit for the entire mission. These are calibrated data and are intended for use by the wider community.", "volume_set_name": "JUNO MWR JUPITER STANDARD CALIBRATED PRODUCTS", "volume_id": "JNOMWR_1100", "volume_name": "JUNO MWR JUPITER STANDARD CALIBRATED PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_1100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_1100 (JUNO MWR JUPITER STANDARD CALIBRATED PRODUCTS)"} -{"id": "JNO-J-MWR-4-ANTENNA-TEMP-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-4-ANTENNA-TEMP-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} -{"id": "JNO-J-MWR-4-SYNCHROTRON-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-4-SYNCHROTRON-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} -{"id": "JNO-J-MWR-5-NH3-DISTRIBUTION-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-5-NH3-DISTRIBUTION-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} -{"id": "JNO-J-MWR-5-H2O-DISTRIBUTION-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-5-H2O-DISTRIBUTION-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} -{"id": "JNO-J-MWR-5-ATM-BRIGHT-TEMP-VS-LAT-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-MWR-5-ATM-BRIGHT-TEMP-VS-LAT-V1.0", "publication_date": "2024-06-01", "description": "This volume contains documentation and all available Juno MWR high level products based on MWR perijove data. The volume contains two CODMAC Level-4 accumulating and three CODMAC Level-5 non-accumulating datasets. The accumulating datasets will grow to cover all perijoves from spacecraft event time (SCET) 2016-07-06 to the end of the mission. One Level-4 dataset contains accumulating antenna temperature vs latitude and emission angle with synchroton emission removed, and the other Level-4 dataset contains accumulating synchrotron emission with Jupiter removed. Non-accumulating Level-5 products contain ammonia distribution vs pressure/latitude, water distribution vs pressure/latitude and atmospheric brightness temperatures (and their angular dependence) as a function of latitude.", "volume_set_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "volume_id": "JNOMWR_2100", "volume_name": "JUNO MWR JUPITER HIGH LEVEL PRODUCTS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnomwr_2100", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnomwr_2100 (JUNO MWR JUPITER HIGH LEVEL PRODUCTS)"} -{"id": "JNO-J-UVS-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-UVS-2-EDR-V1.0", "publication_date": "2014-10-22", "description": "This volume contains experiment data record (EDR) data acquired by the Juno Ultraviolet Spectrograph.The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "volume_set_name": "JUNO UVS OBSERVATIONS", "volume_id": "JNOUVS_2001", "volume_name": "JUNO UVS EDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnouvs_2001 (JUNO UVS OBSERVATIONS)"} -{"id": "JNO-J-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-UVS-3-RDR-V1.0", "publication_date": "2014-10-22", "description": "This volume contains reduced data record (RDR) data acquired by the Juno Ultraviolet Spectrograph.The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "volume_set_name": "JUNO UVS OBSERVATIONS", "volume_id": "JNOUVS_3001", "volume_name": "JUNO UVS RDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_3001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnouvs_3001 (JUNO UVS OBSERVATIONS)"} -{"id": "JNO-J-UVS-5-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "JNO-J-UVS-5-DDR-V1.0", "publication_date": "2023-07-07", "description": "This volume contains derived data record (DDR) data acquired by the Juno Ultraviolet Spectrograph. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "volume_set_name": "JUNO UVS OBSERVATIONS", "volume_id": "JNOUVS_5001", "volume_name": "JUNO UVS DDR OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=jnouvs_5001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume jnouvs_5001 (JUNO UVS OBSERVATIONS)"} -{"id": "HST-J-WFPC2-3-SL9-IMPACT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HST-J-WFPC2-3-SL9-IMPACT-V1.0", "publication_date": "1998-06-17", "description": "This volume contains observations of Jupiter during the Comet Shoemaker-Levy 9 impact events by the Hubble Space Telescope in July 1994. These data consist of images by the Wide Field Planetary Camera 2 (WFPC2).", "volume_set_name": "SHOEMAKER-LEVY 9 IMPACT EVENTS - SELECT", "volume_id": "SL9_0006", "volume_name": "VOLUME 6", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0006", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume sl9_0005 , sl9_0006 (Shoemaker-Levy 9 Impact Observations from Hubble Space Telescope WFPC2)"} -{"id": "EAR-J-AAT-3-EDR-SL9-V1.0", "pds_version_id": "PDS3", "data_set_id": "EAR-J-AAT-3-EDR-SL9-V1.0", "publication_date": "1998-03-19", "description": "This volume contains observations of Jupiter during the Comet Shoemaker-Levy 9 fragment W impact events from the Anglo-Australian Observatory.", "volume_set_name": "SHOEMAKER-LEVY 9 IMPACT EVENTS - SELECT", "volume_id": "SL9_0012", "volume_name": "VOLUME 12", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=sl9_0012", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume sl9_0008 , sl9_0009 , sl9_0010 , sl9_0011 , sl9_0012 (Shoemaker-Levy 9 Impact Observations from the Anglo Australian Observatory)"} -{"id": "VG1/VG2-J-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-J-IRIS-3-RDR-V1.0", "publication_date": "1995-07-26", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS FULL RESOLUTION SPECTRA", "volume_id": "VG_2001", "volume_name": "VOYAGER IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2001 (Voyager IRIS)"} -{"id": "VG1/VG2-S-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-S-IRIS-3-RDR-V1.0", "publication_date": "1995-07-26", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS FULL RESOLUTION SPECTRA", "volume_id": "VG_2001", "volume_name": "VOYAGER IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2001 (Voyager IRIS)"} -{"id": "VG2-U-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-U-IRIS-3-RDR-V1.0", "publication_date": "1995-07-26", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS FULL RESOLUTION SPECTRA", "volume_id": "VG_2001", "volume_name": "VOYAGER IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2001 (Voyager IRIS)"} -{"id": "VG2-N-IRIS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-N-IRIS-3-RDR-V1.0", "publication_date": "1995-07-26", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS FULL RESOLUTION SPECTRA", "volume_id": "VG_2001", "volume_name": "VOYAGER IRIS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2001", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2001 (Voyager IRIS)"} -{"id": "VG1/VG2-J-UVS-5-BRIGHTNESS-N/S-MAPS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-J-UVS-5-BRIGHTNESS-N/S-MAPS-V1.0", "publication_date": "1995-08-10", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "UVS DERIVED NORTH/SOUTH MAPS", "volume_id": "VG_2101", "volume_name": "VOYAGER UVS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2101", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2101 (Voyager UVS)"} -{"id": "VG1/VG2-S-UVS-5-BRIGHTNESS-N/S-MAPS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-S-UVS-5-BRIGHTNESS-N/S-MAPS-V1.0", "publication_date": "1995-08-10", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "UVS DERIVED NORTH/SOUTH MAPS", "volume_id": "VG_2101", "volume_name": "VOYAGER UVS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2101", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2101 (Voyager UVS)"} -{"id": "VG1/VG2-J-IRIS-5-NS-ATMOS-PARAMS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-J-IRIS-5-NS-ATMOS-PARAMS-V1.0", "publication_date": "1995-08-31", "description": "This volume contains data produced from the Voyager IRIS experiments. Atmospheric parameters derived from IRIS spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS DERIVED ATMOSPHERIC PARAMETERS", "volume_id": "VG_2102", "volume_name": "VOYAGER IRIS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2102 (Voyager IRIS Derived N/S & GRS Parameters)"} -{"id": "VG1/VG2-J-IRIS-5-GRS-ATMOS-PARAMS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-J-IRIS-5-GRS-ATMOS-PARAMS-V1.0", "publication_date": "1995-08-31", "description": "This volume contains data produced from the Voyager IRIS experiments. Atmospheric parameters derived from IRIS spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS DERIVED ATMOSPHERIC PARAMETERS", "volume_id": "VG_2102", "volume_name": "VOYAGER IRIS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2102 (Voyager IRIS Derived N/S & GRS Parameters)"} -{"id": "VG1/VG2-S-IRIS-5-NS-ATMOS-PARAMS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1/VG2-S-IRIS-5-NS-ATMOS-PARAMS-V1.0", "publication_date": "1995-08-31", "description": "This volume contains data produced from the Voyager IRIS experiments. Atmospheric parameters derived from IRIS spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "IRIS DERIVED ATMOSPHERIC PARAMETERS", "volume_id": "VG_2102", "volume_name": "VOYAGER IRIS OBSERVATIONS (DERIVED)", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=vg_2102", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2102 (Voyager IRIS Derived N/S & GRS Parameters)"} -{"id": "VG1-J-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1-J-UVS-3-RDR-V1.0", "publication_date": "1997-06-20", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2203", "volume_name": "VOYAGER 1 JUPITER ENCOUNTER:1979-03-07 TO 1979-04-09", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2203", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2201 , vg_2202 , vg_2203 (Voyager 1 UVS)"} -{"id": "VG2-J-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-J-UVS-3-RDR-V1.0", "publication_date": "1997-06-20", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2206", "volume_name": "VOYAGER 2 JUPITER ENCOUNTER:1979-07-12 TO 1979-08-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2206", "node": "atm", "targets": ["Jupiter"], "title": "ATM Volume vg_2204 , vg_2205 , vg_2206 (Voyager 2 UVS)"} -{"id": "CO-S-CIRS-2/3/4-TSDR-V4.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-CIRS-2/3/4-TSDR-V4.0", "publication_date": "2018-04-01", "description": "This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument", "volume_set_name": "CASSINI INFRARED SPECTRA", "volume_id": "COCIRS_1709", "volume_name": "CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1709", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cocirs_0401 , cocirs_0402 , cocirs_0403 , cocirs_0404 , cocirs_0405 , cocirs_0406 , cocirs_0407 , cocirs_0408 , cocirs_0409 , cocirs_0410 , cocirs_0411 , cocirs_0412 , cocirs_0501 , cocirs_0502 , cocirs_0503 , cocirs_0504 , cocirs_0505 , cocirs_0506 , cocirs_0507 , cocirs_0508 , cocirs_0509 , cocirs_0510 , cocirs_0511 , cocirs_0512 , cocirs_0601 , cocirs_0602 , cocirs_0603 , cocirs_0604 , cocirs_0605 , cocirs_0606 , cocirs_0607 , cocirs_0608 , cocirs_0609 , cocirs_0610 , cocirs_0611 , cocirs_0612 , cocirs_0701 , cocirs_0702 , cocirs_0703 , cocirs_0704 , cocirs_0705 , cocirs_0706 , cocirs_0707 , cocirs_0708 , cocirs_0709 , cocirs_0710 , cocirs_0711 , cocirs_0712 , cocirs_0801 , cocirs_0802 , cocirs_0803 , cocirs_0804 , cocirs_0805 , cocirs_0806 , cocirs_0807 , cocirs_0808 , cocirs_0809 , cocirs_0810 , cocirs_0811 , cocirs_0812 , cocirs_0901 , cocirs_0902 , cocirs_0903 , cocirs_0904 , cocirs_0905 , cocirs_0906 , cocirs_0907 , cocirs_0908 , cocirs_0909 , cocirs_0910 , cocirs_0911 , cocirs_0912 , cocirs_1001 , cocirs_1002 , cocirs_1004 , cocirs_1005 , cocirs_1006 , cocirs_1007 , cocirs_1008 , cocirs_1009 , cocirs_1010 , cocirs_1011 , cocirs_1012 , cocirs_1101 , cocirs_1102 , cocirs_1103 , cocirs_1104 , cocirs_1105 , cocirs_1106 , cocirs_1107 , cocirs_1108 , cocirs_1109 , cocirs_1110 , cocirs_1111 , cocirs_1112 , cocirs_1201 , cocirs_1202 , cocirs_1203 , cocirs_1204 , cocirs_1205 , cocirs_1206 , cocirs_1207 , cocirs_1208 , cocirs_1209 , cocirs_1210 , cocirs_1211 , cocirs_1212 , cocirs_1301 , cocirs_1302 , cocirs_1303 , cocirs_1304 , cocirs_1305 , cocirs_1306 , cocirs_1307 , cocirs_1308 , cocirs_1309 , cocirs_1310 , cocirs_1311 , cocirs_1312 , cocirs_1401 , cocirs_1402 , cocirs_1403 , cocirs_1404 , cocirs_1405 , cocirs_1406 , cocirs_1407 , cocirs_1408 , cocirs_1409 , cocirs_1410 , cocirs_1411 , cocirs_1412 , cocirs_1501 , cocirs_1502 , cocirs_1503 , cocirs_1504 , cocirs_1505 , cocirs_1506 , cocirs_1507 , cocirs_1508 , cocirs_1509 , cocirs_1510 , cocirs_1511 , cocirs_1512 , cocirs_1601 , cocirs_1602 , cocirs_1603 , cocirs_1604 , cocirs_1605 , cocirs_1606 , cocirs_1607 , cocirs_1608 , cocirs_1609 , cocirs_1610 , cocirs_1611 , cocirs_1612 , cocirs_1701 , cocirs_1702 , cocirs_1703 , cocirs_1704 , cocirs_1705 , cocirs_1706 , cocirs_1707 , cocirs_1708 , cocirs_1709 (Cassini Infrared Spectra)"} -{"id": "CO-S-CIRS-5-CUBES-V2.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-CIRS-5-CUBES-V2.0", "publication_date": "2018-04-01", "description": "This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument", "volume_set_name": "CASSINI INFRARED SPECTRA", "volume_id": "COCIRS_1709", "volume_name": "CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cocirs_1709", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cocirs_0401 , cocirs_0402 , cocirs_0403 , cocirs_0404 , cocirs_0405 , cocirs_0406 , cocirs_0407 , cocirs_0408 , cocirs_0409 , cocirs_0410 , cocirs_0411 , cocirs_0412 , cocirs_0501 , cocirs_0502 , cocirs_0503 , cocirs_0504 , cocirs_0505 , cocirs_0506 , cocirs_0507 , cocirs_0508 , cocirs_0509 , cocirs_0510 , cocirs_0511 , cocirs_0512 , cocirs_0601 , cocirs_0602 , cocirs_0603 , cocirs_0604 , cocirs_0605 , cocirs_0606 , cocirs_0607 , cocirs_0608 , cocirs_0609 , cocirs_0610 , cocirs_0611 , cocirs_0612 , cocirs_0701 , cocirs_0702 , cocirs_0703 , cocirs_0704 , cocirs_0705 , cocirs_0706 , cocirs_0707 , cocirs_0708 , cocirs_0709 , cocirs_0710 , cocirs_0711 , cocirs_0712 , cocirs_0801 , cocirs_0802 , cocirs_0803 , cocirs_0804 , cocirs_0805 , cocirs_0806 , cocirs_0807 , cocirs_0808 , cocirs_0809 , cocirs_0810 , cocirs_0811 , cocirs_0812 , cocirs_0901 , cocirs_0902 , cocirs_0903 , cocirs_0904 , cocirs_0905 , cocirs_0906 , cocirs_0907 , cocirs_0908 , cocirs_0909 , cocirs_0910 , cocirs_0911 , cocirs_0912 , cocirs_1001 , cocirs_1002 , cocirs_1004 , cocirs_1005 , cocirs_1006 , cocirs_1007 , cocirs_1008 , cocirs_1009 , cocirs_1010 , cocirs_1011 , cocirs_1012 , cocirs_1101 , cocirs_1102 , cocirs_1103 , cocirs_1104 , cocirs_1105 , cocirs_1106 , cocirs_1107 , cocirs_1108 , cocirs_1109 , cocirs_1110 , cocirs_1111 , cocirs_1112 , cocirs_1201 , cocirs_1202 , cocirs_1203 , cocirs_1204 , cocirs_1205 , cocirs_1206 , cocirs_1207 , cocirs_1208 , cocirs_1209 , cocirs_1210 , cocirs_1211 , cocirs_1212 , cocirs_1301 , cocirs_1302 , cocirs_1303 , cocirs_1304 , cocirs_1305 , cocirs_1306 , cocirs_1307 , cocirs_1308 , cocirs_1309 , cocirs_1310 , cocirs_1311 , cocirs_1312 , cocirs_1401 , cocirs_1402 , cocirs_1403 , cocirs_1404 , cocirs_1405 , cocirs_1406 , cocirs_1407 , cocirs_1408 , cocirs_1409 , cocirs_1410 , cocirs_1411 , cocirs_1412 , cocirs_1501 , cocirs_1502 , cocirs_1503 , cocirs_1504 , cocirs_1505 , cocirs_1506 , cocirs_1507 , cocirs_1508 , cocirs_1509 , cocirs_1510 , cocirs_1511 , cocirs_1512 , cocirs_1601 , cocirs_1602 , cocirs_1603 , cocirs_1604 , cocirs_1605 , cocirs_1606 , cocirs_1607 , cocirs_1608 , cocirs_1609 , cocirs_1610 , cocirs_1611 , cocirs_1612 , cocirs_1701 , cocirs_1702 , cocirs_1703 , cocirs_1704 , cocirs_1705 , cocirs_1706 , cocirs_1707 , cocirs_1708 , cocirs_1709 (Cassini Infrared Spectra)"} -{"id": "CO-S-RADAR-5-RADIOMETRY-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RADAR-5-RADIOMETRY-V1.0", "publication_date": "2013-05-01", "description": "This volume contains Saturn global mapping radiometry scans.", "volume_set_name": "CASSINI RADAR THERMAL EMISSION MAPS", "volume_id": "CORADR_5001", "volume_name": "Saturn Cassini RADAR Radiometry", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=coradr_5001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume coradr_5001 , (Saturn Cassini RADAR Radiometry)"} -{"id": "CO-X-RSS-1-GWE1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-X-RSS-1-GWE1-V1.0", "publication_date": "2005-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the first Cassini Gravitational Wave Experiment.", "volume_set_name": "CASSINI: RAW RS GWE1 DATA", "volume_id": "CORS_0010", "volume_name": "VOLUME 0010: 2002-01-01 TO 2002-01-05", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0001 , cors_0002 , cors_0003 , cors_0004 , cors_0005 , cors_0006 , cors_0007 , cors_0008 , cors_0009 , cors_0010 (Cassini RSS Raw Data Set - GWE1)"} -{"id": "CO-SS-RSS-1-SCE1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCE1-V1.0", "publication_date": "2005-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the first Cassini Solar Conjunction Experiment.", "volume_set_name": "CASSINI: RAW RS SCE1 DATA", "volume_id": "CORS_0028", "volume_name": "VOLUME 0028: 2002-07-04 TO 2002-07-05", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0028", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0021 , cors_0022 , cors_0023 , cors_0024 , cors_0025 , cors_0026 , cors_0027 , cors_0028 (Cassini RSS Raw Data Set - SCE1)"} -{"id": "CO-X-RSS-1-GWE2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-X-RSS-1-GWE2-V1.0", "publication_date": "2005-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the second Cassini Gravitational Wave Experiment.", "volume_set_name": "CASSINI: RAW RS GWE2 DATA", "volume_id": "CORS_0050", "volume_name": "VOLUME 0050: 2003-01-11 TO 2003-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0050", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0041 , cors_0042 , cors_0043 , cors_0044 , cors_0045 , cors_0046 , cors_0047 , cors_0048 , cors_0049 , cors_0050 (Cassini RSS Raw Data Set - GWE2)"} -{"id": "CO-X-RSS-1-GWE3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-X-RSS-1-GWE3-V1.0", "publication_date": "2005-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the third Cassini Gravitational Wave Experiment.", "volume_set_name": "CASSINI: RAW RS GWE3 DATA", "volume_id": "CORS_0085", "volume_name": "VOLUME 0085: 2003-11-26 TO 2003-11-29", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0085", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0081 , cors_0082 , cors_0083 , cors_0084 , cors_0085 (Cassini RSS Raw Data Set - GWE3)"} -{"id": "CO-SSA-RSS-1-ENGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR1-V1.0", "publication_date": "2006-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Enceladus Gravity Experiment on February 16-17 2005.", "volume_set_name": "CASSINI: RAW RS ENGR1 DATA", "volume_id": "CORS_0101", "volume_name": "VOLUME 0101: 2005-02-16 TO 2005-02-17", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0101", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0101 (Cassini RSS Raw Data Set - ENGR1)"} -{"id": "CO-SSA-RSS-1-TIGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR1-V1.0", "publication_date": "2006-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Titan Gravity Science Enhancement Experiment on March 30 2005.", "volume_set_name": "CASSINI: RAW RS TIGR1 DATA", "volume_id": "CORS_0102", "volume_name": "VOLUME 0102: 2005-03-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0102", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0102 (Cassini RSS Raw Data Set - TIGR1)"} -{"id": "CO-S-RSS-1-SAGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR1-V1.0", "publication_date": "2006-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Saturn Gravity Science Enhancement Experiments on May 2, May 4, June 6, June 9, June 26 and June 27, 2005.", "volume_set_name": "CASSINI: RAW RS SAGR1 DATA", "volume_id": "CORS_0103", "volume_name": "VOLUME 0103: 2005-04-01 TO 2005-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0103", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0103 (Cassini RSS Raw Data Set - SAGR1 V1.0)"} -{"id": "CO-S-RSS-1-SROC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC1-V1.0", "publication_date": "2006-04-01", "description": "This volume contains raw data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on May 3, May 21, June 8, and June 27, 2005.", "volume_set_name": "CASSINI: RAW RS SROC1 DATA", "volume_id": "CORS_0116", "volume_name": "VOLUME 0116: 2005-04-01 TO 2005-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0116", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0104 , cors_0105 , cors_0106 , cors_0107 , cors_0108 , cors_0109 , cors_0110 , cors_0111 , cors_0112 , cors_0113 , cors_0114 , cors_0115 , cors_0116 (Cassini RSS Raw Data Set - SROC1 V1.0)"} -{"id": "CO-S-RSS-1-SROC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC2-V1.0", "publication_date": "2006-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on July 15, August 2, August 20, and September 5, 2005.", "volume_set_name": "CASSINI: RAW RS SROC2 DATA", "volume_id": "CORS_0126", "volume_name": "VOLUME 0126: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0126", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0117 , cors_0118 , cors_0119 , cors_0120 , cors_0121 , cors_0122 , cors_0123 , cors_0124 , cors_0125 , cors_0126 (Cassini RSS Raw Data Set - SROC2)"} -{"id": "CO-S-RSS-1-SAGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR2-V1.0", "publication_date": "2006-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Saturn Gravity Science Enhancement Experiments on July 13, July 15, August 1, August 2, August 20, August 21, August 23, September 5, and September 6, 2005.", "volume_set_name": "CASSINI: RAW RS SAGR2 DATA", "volume_id": "CORS_0127", "volume_name": "VOLUME 0127: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0127", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0127 (Cassini RSS Raw Data Set - SAGR2)"} -{"id": "CO-SSA-RSS-1-HYGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-HYGR1-V1.0", "publication_date": "2006-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Hyperion Gravity Science Experiments on September 25 and September 26, 2005 OBJECT = DATA_PRODUCER INSTITUTION_NAME =", "volume_set_name": "CASSINI: RAW RS HYGR1 DATA", "volume_id": "CORS_0128", "volume_name": "VOLUME 0128: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0128", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0128 (Cassini RSS Raw Data Set - HYGR1)"} -{"id": "CO-SS-RSS-1-SCC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC1-V1.0", "publication_date": "2006-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Solar Corona Characterization Experiment on July 15, July 17, July 21, July 22, July 23, July 24, and July 25, 2005 OBJECT = DATA_PRODUCER INSTITUTION_NAME =", "volume_set_name": "CASSINI: RAW RS SCC1 DATA", "volume_id": "CORS_0129", "volume_name": "VOLUME 0129: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0129", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0129 (Cassini RSS Raw Data Set - SCC1)"} -{"id": "CO-SSA-RSS-1-TIGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR2-V1.0", "publication_date": "2006-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Titan Gravity Science Enhancement Experiments on October 27, October 29, December 25, December 27, and December 28 2005.", "volume_set_name": "CASSINI: RAW RS TIGR2 DATA", "volume_id": "CORS_0130", "volume_name": "VOLUME 0130: 2005-10-01 TO 2005-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0130", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0130 (Cassini RSS Raw Data Set - TIGR2)"} -{"id": "CO-SSA-RSS-1-DIGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR1-V1.0", "publication_date": "2006-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Dione Gravity Science Experiments on October 10, 11, and 12 2005.", "volume_set_name": "CASSINI: RAW RS DIGR1 DATA", "volume_id": "CORS_0131", "volume_name": "VOLUME 0131: 2005-10-01 TO 2005-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0131", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0131 (Cassini RSS Raw Data Set - DIGR1)"} -{"id": "CO-SSA-RSS-1-RHGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-RHGR1-V1.0", "publication_date": "2006-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Radio Science Rhea Gravity Science Experiments on November 25, 26, and 27 2005.", "volume_set_name": "CASSINI: RAW RS RHGR1 DATA", "volume_id": "CORS_0132", "volume_name": "VOLUME 0132: 2005-10-01 TO 2005-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0132", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0132 (Cassini RSS Raw Data Set - RHGR1)"} -{"id": "CO-SSA-RSS-1-TIGR3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR3-V1.0", "publication_date": "2007-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on February 27, March 1, 18 and 19, 2006.", "volume_set_name": "CASSINI: RAW RS TIGR3 DATA", "volume_id": "CORS_0133", "volume_name": "VOLUME 0133: 2006-01-01 TO 2006-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0133", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0133 (Cassini RSS Raw Data Set - TIGR3)"} -{"id": "CO-SSA-RSS-1-TBOC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC1-V1.0", "publication_date": "2007-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on March 18, and 19, 2006.", "volume_set_name": "CASSINI: RAW RS TBOC1 DATA", "volume_id": "CORS_0140", "volume_name": "VOLUME 0140: 2006-01-01 TO 2006-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0140", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0134 , cors_0135 , cors_0136 , cors_0137 , cors_0138 , cors_0139 , cors_0140 (Cassini RSS Raw Data Set - TBOC1)"} -{"id": "CO-SSA-RSS-1-TIGR4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR4-V1.0", "publication_date": "2007-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on April 29, May 1, 19 and 21, 2006.", "volume_set_name": "CASSINI: RAW RS TIGR4 DATA", "volume_id": "CORS_0141", "volume_name": "VOLUME 0141: 2006-04-01 TO 2006-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0141", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0141 (Cassini RSS Raw Data Set - TIGR4)"} -{"id": "CO-SSA-RSS-1-TBOC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC2-V1.0", "publication_date": "2007-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 20, 2006.", "volume_set_name": "CASSINI: RAW RS TBOC2 DATA", "volume_id": "CORS_0145", "volume_name": "VOLUME 0145: 2006-04-01 TO 2006-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0145", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0142 , cors_0143 , cors_0144 , cors_0145 (Cassini RSS Raw Data Set - TBOC2)"} -{"id": "CO-SSA-RSS-1-TIGR5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR5-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on July 1 and July 2, 2006.", "volume_set_name": "CASSINI: RAW RS TIGR5 DATA", "volume_id": "CORS_0146", "volume_name": "VOLUME 0146: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0146", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0146 (Cassini Rss Raw Data Set - TIGR5)"} -{"id": "CO-S-RSS-1-SAGR3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR3-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on September 8 and 17, 2006 and the Saturn Gravity Field Determination experiment on September 9, 2006.", "volume_set_name": "CASSINI: RAW RS SAGR3 DATA", "volume_id": "CORS_0147", "volume_name": "VOLUME 0147: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0147", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0147 (Cassini Rss Raw Data Set - SAGR3 V1.0)"} -{"id": "CO-SSA-RSS-1-ENOC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENOC1-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Enceladus Occultation experiment on September 15, 2006.", "volume_set_name": "CASSINI: RAW RS ENOC1 DATA", "volume_id": "CORS_0148", "volume_name": "VOLUME 0148: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0148", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0148 (Cassini Rss Raw Data Set - ENOC1)"} -{"id": "CO-S-RSS-1-SROC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC3-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on September 15-17, 2006.", "volume_set_name": "CASSINI: RAW RS SROC3 DATA", "volume_id": "CORS_0163", "volume_name": "VOLUME 0163: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0163", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0149 , cors_0150 , cors_0151 , cors_0152 , cors_0153 , cors_0154 , cors_0155 , cors_0156 , cors_0157 , cors_0158 , cors_0159 , cors_0160 , cors_0161 , cors_0162 , cors_0163 (Cassini Rss Raw Data Set - SROC3)"} -{"id": "CO-SS-RSS-1-SCC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC2-V1.0", "publication_date": "2007-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from July 22 until August 21, 2006.", "volume_set_name": "CASSINI: RAW RS SCC2 DATA", "volume_id": "CORS_0167", "volume_name": "VOLUME 0167: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0167", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0164 , cors_0165 , cors_0166 , cors_0167 (Cassini Rss Raw Data Set - SCC2)"} -{"id": "CO-SSA-RSS-1-TIGR6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR6-V1.0", "publication_date": "2007-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on December 27 and 28, 2006.", "volume_set_name": "CASSINI: RAW RS TIGR6 DATA", "volume_id": "CORS_0168", "volume_name": "VOLUME 0168: 2006-10-01 TO 2006-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0168", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0168 (Cassini Rss Raw Data Set - TIGR6)"} -{"id": "CO-SSA-RSS-1-TIGR7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR7-V1.0", "publication_date": "2008-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on January 28 and 30, and March 25, 26, 2007.", "volume_set_name": "CASSINI: RAW RS TIGR7 DATA", "volume_id": "CORS_0169", "volume_name": "VOLUME 0169: 2007-01-01 TO 2007-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0169", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0169 (Cassini Rss Raw Data Set - TIGR7)"} -{"id": "CO-SSA-RSS-1-TBOC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC3-V1.0", "publication_date": "2008-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on March 25-26, 2007.", "volume_set_name": "CASSINI: RAW RS TBOC3 DATA", "volume_id": "CORS_0175", "volume_name": "VOLUME 0175: 2007-01-01 TO 2007-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0175", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0170 , cors_0171 , cors_0172 , cors_0173 , cors_0174 , cors_0175 (Cassini Rss Raw Data Set - TBOC3)"} -{"id": "CO-SSA-RSS-1-TIGR8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR8-V1.0", "publication_date": "2008-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on May 27, 29 and June 28, 29 and 30, 2007.", "volume_set_name": "CASSINI: RAW RS TIGR8 DATA", "volume_id": "CORS_0176", "volume_name": "VOLUME 0176: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0176", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0176 (CASSINI RSS RAW DATA SET - TIGR8)"} -{"id": "CO-S-RSS-1-SAGR4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR4-V1.0", "publication_date": "2008-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on May 10 and June 12, 2007.", "volume_set_name": "CASSINI: RAW RS SAGR4 DATA", "volume_id": "CORS_0177", "volume_name": "VOLUME 0177: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0177", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0177 (Cassini Rss Raw Data Set - SAGR4)"} -{"id": "CO-S-RSS-1-SROC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC4-V1.0", "publication_date": "2008-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on May 10 and June 11, 2007.", "volume_set_name": "CASSINI: RAW RS SROC3 DATA", "volume_id": "CORS_0182", "volume_name": "VOLUME 0182: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0182", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0178 , cors_0179 , cors_0180 , cors_0181 , cors_0182 (Cassini Rss Raw Data Set - SROC4)"} -{"id": "CO-SSA-RSS-1-TOCC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TOCC1-V1.0", "publication_date": "2008-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Occultation experiment on May 28, 2007.", "volume_set_name": "CASSINI: RAW RS TOCC1 DATA", "volume_id": "CORS_0186", "volume_name": "VOLUME 0186: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0186", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0183 , cors_0184 , cors_0185 , cors_0186 (Cassini RSS Raw Data Set - TOCC1)"} -{"id": "CO-SSA-RSS-1-TIGR9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR9-V1.0", "publication_date": "2008-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on July 17 and July 19, 2007.", "volume_set_name": "CASSINI: RAW RS TIGR9 DATA", "volume_id": "CORS_0187", "volume_name": "VOLUME 0187: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0187", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0187 (Cassini RSS Raw Data Set - TIGR9)"} -{"id": "CO-SSA-RSS-1-IAGR1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-IAGR1-V1.0", "publication_date": "2008-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Iapetus Gravity Science experiments on September 10, 2007.", "volume_set_name": "CASSINI: RAW RS IAGR1 DATA", "volume_id": "CORS_0188", "volume_name": "VOLUME 0188: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0188", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0188 (Cassini Rss Raw Data Set - IAGR1)"} -{"id": "CO-SSA-RSS-1-TBIS1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS1-V1.0", "publication_date": "2008-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic experiment on July 18, 2007.", "volume_set_name": "CASSINI: RAW RS TOCC1 DATA", "volume_id": "CORS_0195", "volume_name": "VOLUME 0195: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0195", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0189 , cors_0190 , cors_0191 , cors_0192 , cors_0193 , cors_0194 , cors_0195 (Cassini Rss Raw Data Set - TBIS1)"} -{"id": "CO-SS-RSS-1-SCC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC3-V1.0", "publication_date": "2008-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from August 7 until September 4, 2007.", "volume_set_name": "CASSINI: RAW RS SCC3 DATA", "volume_id": "CORS_0199", "volume_name": "VOLUME 0199: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0199", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0196 , cors_0197 , cors_0198 , cors_0199 (Cassini Rss Raw Data Set - SCC3)"} -{"id": "CO-SSA-RSS-1-TIGR10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR10-V1.0", "publication_date": "2008-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on December 4 and December 6, 2007.", "volume_set_name": "CASSINI: RAW RS TIGR10 DATA", "volume_id": "CORS_0200", "volume_name": "VOLUME 0200: 2007-10-01 TO 2007-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0200", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0200 (Cassini Rss Raw Data Set - TIGR10)"} -{"id": "CO-S-RSS-1-SAGR5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR5-V1.0", "publication_date": "2008-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on October 23 and 24, 2007.", "volume_set_name": "CASSINI: RAW RS SAGR3 DATA", "volume_id": "CORS_0201", "volume_name": "VOLUME 0201: 2007-10-01 TO 2007-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0201", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0201 (Cassini Rss Raw Data Set - SAGR5)"} -{"id": "CO-S-RSS-1-SROC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC5-V1.0", "publication_date": "2008-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on October 24, December 3 and 19, 2007.", "volume_set_name": "CASSINI: RAW RS SROC5 DATA", "volume_id": "CORS_0209", "volume_name": "VOLUME 0209: 2007-10-01 TO 2007-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0209", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0202 cors_0203 , cors_0204 , cors_0205 , cors_0206 , cors_0207 , cors_0208 , cors_0209 (Cassini Rss Raw Data Set - SROC5)"} -{"id": "CO-S-RSS-1-SAGR6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR6-V1.0", "publication_date": "2009-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on January 14, February 7, February 9, and March 31, 2008.", "volume_set_name": "CASSINI: RAW RS SAGR6 DATA", "volume_id": "CORS_0210", "volume_name": "VOLUME 0210: 2008-01-01 TO 2008-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0210", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0210 (Cassini RSS Raw Data Set - SAGR6)"} -{"id": "CO-SSA-RSS-1-ENGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR2-V1.0", "publication_date": "2009-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science Enhancement experiments on March 11 and 13, 2008.", "volume_set_name": "CASSINI: RAW RS ENGR2 DATA", "volume_id": "CORS_0211", "volume_name": "VOLUME 0211: 2008-01-01 TO 2008-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0211", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0211 (Cassini RSS Raw Data Set - ENGR2 )"} -{"id": "CO-S-RSS-1-SROC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC6-V1.0", "publication_date": "2009-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on January 15, January 27, February 8, and March 2, 2008.", "volume_set_name": "CASSINI: RAW RS SROC6 DATA", "volume_id": "CORS_0220", "volume_name": "VOLUME 0220: 2008-01-01 TO 2008-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0220", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0212 , cors_0213 , cors_0214 , cors_0215 , cors_0216 , cors_0217 , cors_0218 , cors_0219 , cors_0220 (Cassini RSS Raw Data Set - SROC6)"} -{"id": "CO-S-RSS-1-SAGR7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR7-V1.0", "publication_date": "2009-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Field experiment on May 17, 2008 and the Gravity Science Enhancement experiments on April 2, June 8, 9, 14, 16, 21, and 29, 2008.", "volume_set_name": "CASSINI: RAW RS SAGR7 DATA", "volume_id": "CORS_0221", "volume_name": "VOLUME 0221: 2008-04-01 TO 2008-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0221", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0221 (Cassini RSS Raw Data Set - SAGR7)"} -{"id": "CO-S-RSS-1-SROC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC7-V1.0", "publication_date": "2009-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on April 1, 11, May 9, 17, June 1, 16, and June 23, 2008.", "volume_set_name": "CASSINI: RAW RS SROC7 DATA", "volume_id": "CORS_0236", "volume_name": "VOLUME 0236: 2008-04-01 TO 2008-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0236", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0222 , cors_0223 , cors_0224 , cors_0225 , cors_0226 , cors_0227 , cors_0228 , cors_0229 , cors_0230 , cors_0231 , cors_0232 , cors_0233 , cors_0234 , cors_0235 , cors_0236 (Cassini RSS Raw Data Set - SROC7)"} -{"id": "CO-S-RSS-1-SAGR8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR8-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on July 1, August 17, 19, 24, 27, September 9, 11, 16, 18, 24, 25, 2008.", "volume_set_name": "CASSINI: RAW RS SAGR8 DATA", "volume_id": "CORS_0238", "volume_name": "VOLUME 0238: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0238", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0237 , cors_0238 (CASSINI RSS RAW DATA SET - SAGR8)"} -{"id": "CO-SSA-RSS-1-TIGR11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR11-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Field experiments on July 30, 31, 2008 and the Titan Gravity Science Enhancement experiments on July 29, 31, 2008.", "volume_set_name": "CASSINI: RAW RS TIGR11 DATA", "volume_id": "CORS_0239", "volume_name": "VOLUME 0239: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0239", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0239 (CASSINI RSS RAW DATA SET - TIGR11 V1.0)"} -{"id": "CO-SSA-RSS-1-ENGR3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR3-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science Enhancement experiments on August 10 and 12, 2008 and the Enceladus Gravity Field experiments on August 11 and 12, 2008.", "volume_set_name": "CASSINI: RAW RS ENGR3 DATA", "volume_id": "CORS_0240", "volume_name": "VOLUME 0240: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0240", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0240 (CASSINI RSS RAW DATA SET - ENGR3)"} -{"id": "CO-SS-RSS-1-SCC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC4-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from August 20 until September 15, 2008.", "volume_set_name": "CASSINI: RAW RS SCC4 DATA", "volume_id": "CORS_0243", "volume_name": "VOLUME 0243: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0243", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0241 , cors_0242 , cors_0243 (CASSINI RSS RAW DATA SET - SCC4)"} -{"id": "CO-S-RSS-1-SROC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC8-V1.0", "publication_date": "2009-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on July 7, August 4, 19, 26, and September 10, 2008.", "volume_set_name": "CASSINI: RAW RS SROC8 DATA", "volume_id": "CORS_0252", "volume_name": "VOLUME 0252: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0252", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0244 , cors_0245 , cors_0246 , cors_0247 , cors_0248 , cors_0249 , cors_0250 , cors_0251 , cors_0252 (CASSINI RSS RAW DATA SET - SROC8)"} -{"id": "CO-S-RSS-1-SAGR9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR9-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on October 8, 10, 23, 25, 2008 and the Gravity Field experiment on November 16, 2008.", "volume_set_name": "CASSINI: RAW RS SAGR9 DATA", "volume_id": "CORS_0253", "volume_name": "VOLUME 0253: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0253", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0253 (CASSINI RSS RAW DATA SET - SAGR9)"} -{"id": "CO-SSA-RSS-1-ENGR4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR4-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science Enhancement experiment on November 1, 2008 and the Enceladus Gravity Field experiment on October 31 and November 1, 2008.", "volume_set_name": "CASSINI: RAW RS ENGR4 DATA", "volume_id": "CORS_0254", "volume_name": "VOLUME 0254: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0254", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0254 (CASSINI RSS RAW DATA SET - ENGR4)"} -{"id": "CO-SSA-RSS-1-TIGR12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR12-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science Enhancement experiments on November 2 and 4, 2008.", "volume_set_name": "CASSINI: RAW RS TIGR12 DATA", "volume_id": "CORS_0255", "volume_name": "VOLUME 0255: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0255", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0255 (CASSINI RSS RAW DATA SET - TIGR12)"} -{"id": "CO-SSA-RSS-1-TBOC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC4-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on November 3, 2008.", "volume_set_name": "CASSINI: RAW RS TBOC4 DATA", "volume_id": "CORS_0260", "volume_name": "VOLUME 0260: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0260", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0256 , cors_0257 , cors_0258 , cors_0259 , cors_0260 (CASSINI RSS RAW DATA SET - TBOC4)"} -{"id": "CO-S-RSS-1-SROC9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC9-V1.0", "publication_date": "2009-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring Occultation experiment on October 17, 2008.", "volume_set_name": "CASSINI: RAW RS SROC8 DATA", "volume_id": "CORS_0262", "volume_name": "VOLUME 0262: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0262", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0261 , cors_0262 (CASSINI RSS RAW DATA SET - SROC9)"} -{"id": "CO-SSA-RSS-1-TIGR13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR13-V1.0", "publication_date": "2010-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science Enhancement experiments on March 26 and 28, 2009.", "volume_set_name": "CASSINI: RAW RS TIGR13 DATA", "volume_id": "CORS_0263", "volume_name": "VOLUME 0263: 2009-01-01 TO 2009-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0263", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0263 (CASSINI RSS RAW DATA SET - TIGR13 V1.0)"} -{"id": "CO-SSA-RSS-1-TBIS2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS2-V1.0", "publication_date": "2010-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic experiment on March 27, 2009.", "volume_set_name": "CASSINI: RAW RS TBOC4 DATA", "volume_id": "CORS_0266", "volume_name": "VOLUME 0266: 2009-01-01 TO 2009-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0266", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0264 , cors_0265 , cors_0266 (CASSINI RSS RAW DATA SET - TBIS2 V1.0)"} -{"id": "CO-SSA-RSS-1-TIGR14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR14-V1.0", "publication_date": "2010-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science Enhancement experiments on April 3, 5, June 21 and 23, 2009.", "volume_set_name": "CASSINI: RAW RS TIGR14 DATA", "volume_id": "CORS_0267", "volume_name": "VOLUME 0267: 2009-04-01 TO 2009-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0267", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume cors_0267 (Cassini: Raw Rs TIGR14 Data)"} -{"id": "CO-SSA-RSS-1-TBOC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC5-V1.0", "publication_date": "2010-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and occultation experiments conducted on April 4 and June 22, 2009.", "volume_set_name": "CASSINI: RAW RS TBOC5 DATA", "volume_id": "CORS_0278", "volume_name": "VOLUME 0278: 2009-04-01 TO 2009-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0278", "node": "atm", "targets": [], "title": "ATM Volume cors_0268 , cors_0269 , cors_0270 , cors_0271 , cors_0272 , cors_0273 , cors_0274 , cors_0275 , cors_0276 , cors_0277 , cors_0278 (Cassini: Raw RS TBOC5 Data)"} -{"id": "CO-SS-RSS-1-SCC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC5-V1.0", "publication_date": "2010-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from September 2 until September 30, 2009.", "volume_set_name": "CASSINI: RAW RS SCC5 DATA", "volume_id": "CORS_0285", "volume_name": "VOLUME 0285: 2009-07-01 TO 2009-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0285", "node": "atm", "targets": [], "title": "ATM Volume cors_0279 , cors_0280 , cors_0281 , cors_0282 , cors_0283 , cors_0284 , cors_0285 (CASSINI: RAW RS SCC5 DATA)"} -{"id": "CO-SSA-RSS-1-ENGR5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR5-V1.0", "publication_date": "2010-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science Enhancement experiments on November 1, 2, 20 and 21, 2009.", "volume_set_name": "CASSINI: RAW RS ENGR5 DATA", "volume_id": "CORS_0286", "volume_name": "VOLUME 0286: 2009-10-01 TO 2009-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0286", "node": "atm", "targets": [], "title": "ATM Volume cors_0286 (CASSINI: RAW RS ENGR5 DATA)"} -{"id": "CO-S-RSS-1-SROC10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC10-V1.0", "publication_date": "2010-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on November 1, 20, December 9 and 25-26, 2009.", "volume_set_name": "CASSINI: RAW RS SROC10 DATA", "volume_id": "CORS_0305", "volume_name": "VOLUME 0305: 2009-10-01 TO 2009-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0305", "node": "atm", "targets": [], "title": "ATM Volume cors_0287 , cors_0288 , cors_0289 , cors_0290 , cors_0291 , cors_0292 , cors_0293 , cors_0294 , cors_0295 , cors_0296 , cors_0297 , cors_0298 , cors_0299 , cors_0300 , cors_0301 , cors_0302 , cors_0303 , cors_0304 , cors_0305 (CASSINI: RAW RS SROC10 DATA)"} -{"id": "CO-S-RSS-1-SAGR10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR10-V1.0", "publication_date": "2011-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity experiment on January 10-11, 2010 and the Gravity Science Enhancement experiment on January 12, 2010.", "volume_set_name": "CASSINI: RAW RS ENGR5 DATA", "volume_id": "CORS_0306", "volume_name": "VOLUME 0306: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0306", "node": "atm", "targets": [], "title": "ATM Volume cors_0306 (CASSINI: RAW RS ENGR5 DATA)"} -{"id": "CO-SSA-RSS-1-ENOC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENOC2-V1.0", "publication_date": "2011-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Enceladus Occultation experiment on January 26, 2010.", "volume_set_name": "CASSINI: RAW RS ENOC2 DATA", "volume_id": "CORS_0309", "volume_name": "VOLUME 0309: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0309", "node": "atm", "targets": [], "title": "ATM Volume cors_0307 , cors_0308 , cors_0309 (CASSINI: RAW RS ENOC2 DATA)"} -{"id": "CO-S-RSS-1-SROC11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC11-V1.0", "publication_date": "2011-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on January 26-27, 2010.", "volume_set_name": "CASSINI: RAW RS SROC11 DATA", "volume_id": "CORS_0316", "volume_name": "VOLUME 0316: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0316", "node": "atm", "targets": [], "title": "ATM Volume cors_0310 , cors_0311 , cors_0312 , cors_0313 , cors_0314 , cors_0315 , cors_0316 (Cassini: Raw RS SROC11 Data)"} -{"id": "CO-SSA-RSS-1-DIGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR2-V1.0", "publication_date": "2011-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Dione Gravity Science experiments on April 6 and 7, 2010.", "volume_set_name": "CASSINI: RAW RS DIGR2 DATA", "volume_id": "CORS_0317", "volume_name": "VOLUME 0317: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0317", "node": "atm", "targets": [], "title": "ATM Volume cors_0317 (Cassini: Raw RS DIGR2 Data)"} -{"id": "CO-SSA-RSS-1-ENGR6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR6-V1.0", "publication_date": "2011-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science experiments on April 27 and 28, 2010.", "volume_set_name": "CASSINI: RAW RS ENGR6 DATA", "volume_id": "CORS_0319", "volume_name": "VOLUME 0319: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0319", "node": "atm", "targets": [], "title": "ATM Volume cors_0318 , cors_0319 (Cassini: Raw RS ENGR6 Data)"} -{"id": "CO-SSA-RSS-1-TIGR15-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR15-V1.0", "publication_date": "2011-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on May 18, 19 and 20, 2010.", "volume_set_name": "CASSINI: RAW RS TIGR15 DATA", "volume_id": "CORS_0320", "volume_name": "VOLUME 0320: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0320", "node": "atm", "targets": [], "title": "ATM Volume cors_0320 (Cassini: Raw RS TIGR15 Data)"} -{"id": "CO-S-RSS-1-SROC12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC12-V1.0", "publication_date": "2011-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on April 27, 2010 and June 18, 2010.", "volume_set_name": "CASSINI: RAW RS SROC12 DATA", "volume_id": "CORS_0334", "volume_name": "VOLUME 0334: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0334", "node": "atm", "targets": [], "title": "ATM Volume cors_0321 , cors_0322 , cors_0323 , cors_0324 , cors_0325 , cors_0326 , cors_0327 , cors_0328 , cors_0329 , cors_0330 , cors_0331 , cors_0332 , cors_0333 , cors_0334 (Cassini: RAW RS SROC12 Data)"} -{"id": "CO-S-RSS-1-SAGR11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR11-V1.0", "publication_date": "2011-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on July 23 and September 1, 2010.", "volume_set_name": "CASSINI: RAW RS SAGR11 DATA", "volume_id": "CORS_0335", "volume_name": "VOLUME 0335: 2010-07-01 TO 2010-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0335", "node": "atm", "targets": [], "title": "ATM Volume cors_0335 (CASSINI: RAW RS SAGR11 Data)"} -{"id": "CO-S-RSS-1-SROC13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC13-V1.0", "publication_date": "2011-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on July 24 and September 2, 2010.", "volume_set_name": "CASSINI: RAW RS SROC13 DATA", "volume_id": "CORS_0343", "volume_name": "VOLUME 0343: 2010-07-01 TO 2010-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0343", "node": "atm", "targets": [], "title": "ATM Volume cors_0336 , cors_0337 , cors_0338 , cors_0339 , cors_0340 , cors_0341 , cors_0342 , cors_0343 (CASSINI: RAW RS SROC13 Data)"} -{"id": "CO-SS-RSS-1-SCC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC6-V1.0", "publication_date": "2011-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from September 18 until September 30, 2010.", "volume_set_name": "CASSINI: RAW RS SCC6 DATA", "volume_id": "CORS_0345", "volume_name": "VOLUME 0345: 2010-07-01 TO 2010-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0345", "node": "atm", "targets": [], "title": "ATM Volume cors_0344 , cors_0345 (CASSINI: RAW RS SCC6 Data)"} -{"id": "CO-SS-RSS-1-SCC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC7-V1.0", "publication_date": "2011-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from October 1 until October 13, 2010.", "volume_set_name": "CASSINI: RAW RS SCC7 DATA", "volume_id": "CORS_0347", "volume_name": "VOLUME 0347: 2010-10-01 TO 2010-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0347", "node": "atm", "targets": [], "title": "ATM Volume cors_0346 , cors_0347 (CASSINI: RAW RS SCC7 DATA)"} -{"id": "CO-SSA-RSS-1-ENGR7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR7-V1.0", "publication_date": "2011-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science experiments on November 29 and 30, 2010.", "volume_set_name": "CASSINI: RAW RS ENGR7 DATA", "volume_id": "CORS_0348", "volume_name": "VOLUME 0348: 2010-10-01 TO 2010-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0348", "node": "atm", "targets": [], "title": "ATM Volume cors_0348 (CASSINI: RAW RS ENGR7 DATA)"} -{"id": "CO-SSA-RSS-1-TIGR16-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR16-V1.0", "publication_date": "2012-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on February 17, 18 and 19, 2011.", "volume_set_name": "CASSINI: RAW RS TIGR16 DATA", "volume_id": "CORS_0350", "volume_name": "VOLUME 0350: 2011-01-01 TO 2011-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0350", "node": "atm", "targets": [], "title": "ATM Volume cors_0349 cors_0350 (CASSINI: RAW RS TIGR16 DATA)"} -{"id": "CO-S-RSS-1-SAGR12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR12-V1.0", "publication_date": "2012-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on July 31 and August 2, 2011.", "volume_set_name": "CASSINI: RAW RS SAGR12 DATA", "volume_id": "CORS_0351", "volume_name": "VOLUME 0351: 2011-07-01 TO 2011-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0351", "node": "atm", "targets": [], "title": "ATM Volume cors_0351 (CASSINI: RAW RS SAGR12 DATA)"} -{"id": "CO-SS-RSS-1-SCC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC8-V1.0", "publication_date": "2012-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from September 27 until September 30, 2011.", "volume_set_name": "CASSINI: RAW RS SCC8 DATA", "volume_id": "CORS_0352", "volume_name": "VOLUME 0352: 2011-07-01 TO 2011-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0352", "node": "atm", "targets": [], "title": "ATM Volume cors_0352 (CASSINI: RAW RS SCC8 DATA)"} -{"id": "CO-S-RSS-1-SROC14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC14-V1.0", "publication_date": "2012-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Atmospheric Occultation experiment on August 1, 2011.", "volume_set_name": "CASSINI: RAW RS SROC14 DATA", "volume_id": "CORS_0358", "volume_name": "VOLUME 0358: 2011-07-01 TO 2011-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0358", "node": "atm", "targets": [], "title": "ATM Volume cors_0353 cors_0354 cors_0355 cors_0356 cors_0357 cors_0358 (CASSINI: RAW RS SROC14 DATA)"} -{"id": "CO-SSA-RSS-1-DIGR3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR3-V1.0", "publication_date": "2012-10-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Dione Gravity Science experiments on December 11, and 12, 2012.", "volume_set_name": "CASSINI: RAW RS DIGR3 DATA", "volume_id": "CORS_0359", "volume_name": "VOLUME 0359: 2011-10-01 TO 2011-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0359", "node": "atm", "targets": [], "title": "ATM Volume cors_0359 (CASSINI: RAW RS DIGR3 DATA)"} -{"id": "CO-SS-RSS-1-SCC9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC9-V1.0", "publication_date": "2012-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from October 2 until October 27, 2011.", "volume_set_name": "CASSINI: RAW RS SCC9 DATA", "volume_id": "CORS_0363", "volume_name": "VOLUME 0363: 2011-10-01 TO 2011-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0363", "node": "atm", "targets": [], "title": "ATM Volume cors_0360 cors_0361 cors_0362 cors_0363 (CASSINI: RAW RS SCC9 DATA)"} -{"id": "CO-S-RSS-1-SAGR13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR13-V1.0", "publication_date": "2013-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on June 6, 27 and 29, 2012.", "volume_set_name": "CASSINI: RAW RS SAGR13 DATA", "volume_id": "CORS_0364", "volume_name": "VOLUME 0364: 2012-04-01 TO 2012-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0364", "node": "atm", "targets": [], "title": "ATM Volume cors_0364 (CASSINI: RAW RS SAGR13 DATA)"} -{"id": "CO-SSA-RSS-1-ENGR8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENGR8-V1.0", "publication_date": "2013-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Enceladus Gravity Science experiments on May 1, 2, and 3, 2012.", "volume_set_name": "CASSINI: RAW RS ENGR8 DATA", "volume_id": "CORS_0365", "volume_name": "VOLUME 0365: 2012-04-01 TO 2012-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0365", "node": "atm", "targets": [], "title": "ATM Volume cors_0365 (CASSINI: RAW RS ENGR8 DATA)"} -{"id": "CO-S-RSS-1-SROC15-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC15-V1.0", "publication_date": "2013-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring Occultation experiments on June 4 and 28, 2012.", "volume_set_name": "CASSINI: RAW RS SROC15 DATA", "volume_id": "CORS_0372", "volume_name": "VOLUME 0372: 2012-04-01 TO 2012-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0372", "node": "atm", "targets": [], "title": "ATM Volume cors_0366 cors_0367 cors_0368 cors_0369 cors_0370 cors_0371 cors_0372 (CASSINI: RAW RS SROC15 DATA)"} -{"id": "CO-S-RSS-1-SAGR14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR14-V1.0", "publication_date": "2013-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on July 23, August 12, and September 1, 2012.", "volume_set_name": "CASSINI: RAW RS SAGR14 DATA", "volume_id": "CORS_0373", "volume_name": "VOLUME 0373: 2012-07-01 TO 2012-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0373", "node": "atm", "targets": [], "title": "ATM Volume cors_0373 (CASSINI: RAW RS SAGR14 DATA)"} -{"id": "CO-S-RSS-1-SROC16-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC16-V1.0", "publication_date": "2013-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on July 22, August 12, and September 2, 2012.", "volume_set_name": "CASSINI: RAW RS SROC16 DATA", "volume_id": "CORS_0384", "volume_name": "VOLUME 0384: 2012-07-01 TO 2012-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0384", "node": "atm", "targets": [], "title": "ATM Volume cors_0374 , cors_0375 , cors_0376 , cors_0377 , cors_0378 , cors_0379 , cors_0380 , cors_0381 , cors_0382 , cors_0383 , cors_0384 (CASSINI: RAW RS SROC16 DATA)"} -{"id": "CO-SS-RSS-1-SCC10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC10-V1.0", "publication_date": "2013-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from October 5 until November 14, 2012.", "volume_set_name": "CASSINI: RAW RS SCC10 DATA", "volume_id": "CORS_0388", "volume_name": "VOLUME 0388: 2012-10-01 TO 2012-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0388", "node": "atm", "targets": [], "title": "ATM Volume cors_0385 , cors_0386 , cors_0387 , cors_0388 (CASSINI: RAW RS SCC10 DATA)"} -{"id": "CO-S-RSS-1-SROC17-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC17-V1.0", "publication_date": "2013-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Ring Occultation experiment on November 10, 2012.", "volume_set_name": "CASSINI: RAW RS SROC17 DATA", "volume_id": "CORS_0391", "volume_name": "VOLUME 0391: 2012-10-01 TO 2012-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0391", "node": "atm", "targets": [], "title": "ATM Volume cors_0389 , cors_0390 , cors_0391 (CASSINI: RAW RS SROC17 DATA)"} -{"id": "CO-S-RSS-1-SAGR15-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR15-V1.0", "publication_date": "2014-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on January 17 and 19, 2013.", "volume_set_name": "CASSINI: RAW RS SAGR15 DATA", "volume_id": "CORS_0392", "volume_name": "VOLUME 0392: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0392", "node": "atm", "targets": [], "title": "ATM Volume cors_0392 , (CASSINI: RAW RS SAGR15 DATA)"} -{"id": "CO-SSA-RSS-1-RHGR2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-RHGR2-V1.0", "publication_date": "2014-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Rhea Gravity Science experiments on March 8, 9 and 10, 2013.", "volume_set_name": "CASSINI: RAW RS RHGR2 DATA", "volume_id": "CORS_0393", "volume_name": "VOLUME 0393: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0393", "node": "atm", "targets": [], "title": "ATM Volume cors_0393 , (CASSINI: RAW RS RHGR2 DATA)"} -{"id": "CO-SSA-RSS-1-TIGR17-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR17-V1.0", "publication_date": "2014-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on February 15, 16 and 17, 2013.", "volume_set_name": "CASSINI: RAW RS TIGR17 DATA", "volume_id": "CORS_0395", "volume_name": "VOLUME 0395: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0395", "node": "atm", "targets": [], "title": "ATM Volume cors_0394 , cors_0395 (CASSINI: RAW RS TIGR17 DATA)"} -{"id": "CO-S-RSS-1-SROC18-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC18-V1.0", "publication_date": "2014-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on January 5, 8, 31 and February 25, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC18 DATA", "volume_id": "CORS_0413", "volume_name": "VOLUME 0413: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0413", "node": "atm", "targets": [], "title": "ATM Volume cors_0396 , cors_0397 , cors_0398 , cors_0399 , cors_0400 , cors_0401 , cors_0402 , cors_0403 , cors_0404 , cors_0405 , cors_0406 , cors_0407 , cors_0408 , cors_0409 , cors_0410 , cors_0411 , cors_0412 , cors_0413 , (Cassini: Raw RS SROC18 Data)"} -{"id": "CO-S-RSS-1-SAGR16-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR16-V1.0", "publication_date": "2014-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiments on May 30, 31, June 23 and 24, 2013.", "volume_set_name": "CASSINI: RAW RS SAGR16 DATA", "volume_id": "CORS_0414", "volume_name": "VOLUME 0414: 2013-04-01 TO 2013-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0414", "node": "atm", "targets": [], "title": "ATM Volume cors_0414 (CASSINI: RAW RS SAGR16 DATA)"} -{"id": "CO-S-RSS-1-SROC19-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC19-V1.0", "publication_date": "2014-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on April 12, May 10, 20, 31, June 24, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC19 DATA", "volume_id": "CORS_0455", "volume_name": "VOLUME 0455: 2013-04-01 TO 2013-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0455", "node": "atm", "targets": [], "title": "ATM Volume cors_0415 , cors_0416 , cors_0417 , cors_0418 , cors_0419 , cors_0420 , cors_0421 , cors_0422 , cors_0423 , cors_0424 , cors_0425 , cors_0426 , cors_0427 , cors_0428 , cors_0429 , cors_0430 , cors_0431 , cors_0432 , cors_0433 , cors_0434 , cors_0435 , cors_0436 , cors_0437 , cors_0438 , cors_0439 , cors_0440 , cors_0441 , cors_0442 , cors_0443 , cors_0444 , cors_0445 , cors_0446 , cors_0447 , cors_0448 , cors_0449 , cors_0450 , cors_0451 , cors_0452 , cors_0453 , cors_0454 , cors_0455 (CASSINI: RAW RS SROC19 DATA)"} -{"id": "CO-S-RSS-1-SAGR17-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR17-V1.0", "publication_date": "2014-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Saturn Gravity Science Enhancement experiment on July 5, 2013.", "volume_set_name": "CASSINI: RAW RS SAGR17 DATA", "volume_id": "CORS_0456", "volume_name": "VOLUME 0456: 2013-07-01 TO 2013-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0456", "node": "atm", "targets": [], "title": "ATM Volume cors_0456 (CASSINI: RAW RS SAGR17 DATA)"} -{"id": "CO-S-RSS-1-SROC20-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC20-V1.0", "publication_date": "2014-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on July 6, August 8, September 1, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC20 DATA", "volume_id": "CORS_0481", "volume_name": "VOLUME 0481: 2013-07-01 TO 2013-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0481", "node": "atm", "targets": [], "title": "ATM Volume cors_0457 , cors_0458 , cors_0459 , cors_0460 , cors_0461 , cors_0462 , cors_0463 , cors_0464 , cors_0465 , cors_0466 , cors_0467 , cors_0468 , cors_0469 , cors_0470 , cors_0471 , cors_0472 , cors_0473 , cors_0474 , cors_0475 , cors_0476 , cors_0477 , cors_0478 , cors_0479 , cors_0480 , cors_0481 (CASSINI: RAW RS SROC20 DATA)"} -{"id": "CO-SS-RSS-1-SCC11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC11-V1.0", "publication_date": "2014-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from October 24 until November 20, 2013.", "volume_set_name": "CASSINI: RAW RS SCC11 DATA", "volume_id": "CORS_0486", "volume_name": "VOLUME 0486: 2013-10-01 TO 2013-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0486", "node": "atm", "targets": [], "title": "ATM Volume cors_0482 , cors_0483 , cors_0484 , cors_0485 , cors_0486 (CASSINI: RAW RS SCC11 DATA)"} -{"id": "CO-SSA-RSS-1-TIGR18-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR18-V1.0", "publication_date": "2015-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on March 5, 6 and 7, 2014.", "volume_set_name": "CASSINI: RAW RS TIGR18 DATA", "volume_id": "CORS_0488", "volume_name": "VOLUME 0488: 2014-01-01 TO 2014-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0488", "node": "atm", "targets": [], "title": "ATM Volume cors_0487 , cors_0488 (CASSINI: RAW RS TIGR18 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC6-V1.0", "publication_date": "2015-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 17 and June 18, 2014.", "volume_set_name": "CASSINI: RAW RS TBOC6 DATA", "volume_id": "CORS_0507", "volume_name": "VOLUME 0507: 2014-04-01 TO 2014-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0507", "node": "atm", "targets": [], "title": "ATM Volume cors_0489 , cors_0490 , cors_0491 , cors_0492 , cors_0493 , cors_0494 , cors_0495 , cors_0496 , cors_0497 , cors_0498 , cors_0499 , cors_0500 , cors_0501 , cors_0502 , cors_0503 , cors_0504 , cors_0505 , cors_0506 , cors_0507 (CASSINI: RAW RS TBOC6 DATA)"} -{"id": "CO-SS-RSS-1-SCC12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC12-V1.0", "publication_date": "2015-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from November 4 until December 1, 2014.", "volume_set_name": "CASSINI: RAW RS SCC12 DATA", "volume_id": "CORS_0512", "volume_name": "VOLUME 0512: 2014-10-01 TO 2014-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0512", "node": "atm", "targets": [], "title": "ATM Volume cors_0508 , cors_0509 , cors_0510 , cors_0511 , cors_0512 (CASSINI: RAW RS SCC12 DATA)"} -{"id": "CO-SSA-RSS-1-TBIS3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS3-V1.0", "publication_date": "2015-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic experiment on October 23 and 24, 2014.", "volume_set_name": "CASSINI: RAW RS TBIS3 DATA", "volume_id": "CORS_0524", "volume_name": "VOLUME 0524: 2014-10-01 TO 2014-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0524", "node": "atm", "targets": [], "title": "ATM Volume cors_0513 , cors_0514 , cors_0515 , cors_0516 , cors_0517 , cors_0518 , cors_0519 , cors_0520 , cors_0521 , cors_0522 , cors_0523 , cors_0524 (CASSINI: RAW RS TBIS3 DATA)"} -{"id": "CO-SSA-RSS-1-TIGR19-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR19-V1.0", "publication_date": "2016-01-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science LGA Titan Gravity Science experiment on March 16, 2015.", "volume_set_name": "CASSINI: RAW RS TIGR19 DATA", "volume_id": "CORS_0525", "volume_name": "VOLUME 0525: 2015-01-01 TO 2015-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0525", "node": "atm", "targets": [], "title": "ATM Volume cors_0525 (CASSINI: RAW RS TIGR19 DATA)"} -{"id": "CO-SSA-RSS-1-DIGR4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR4-V1.0", "publication_date": "2016-04-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Dione Gravity Science experiment on June 15, 16, and 17, 2015.", "volume_set_name": "CASSINI: RAW RS DIGR4 DATA", "volume_id": "CORS_0526", "volume_name": "VOLUME 0526: 2015-04-01 TO 2015-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0526", "node": "atm", "targets": [], "title": "ATM Volume cors_0526 (CASSINI: RAW RS DIGR4 DATA)"} -{"id": "CO-SSA-RSS-1-DIGR5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-DIGR5-V1.0", "publication_date": "2016-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Dione Gravity Science experiment on August 16, 17, and 18, 2015.", "volume_set_name": "CASSINI: RAW RS DIGR5 DATA", "volume_id": "CORS_0527", "volume_name": "VOLUME 0527: 2015-07-01 TO 2015-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0527", "node": "atm", "targets": [], "title": "ATM Volume cors_0527 (CASSINI: RAW RS DIGR5 DATA)"} -{"id": "CO-SS-RSS-1-SCC13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC13-V1.0", "publication_date": "2016-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from November 18 until December 14, 2015.", "volume_set_name": "CASSINI: RAW RS SCC13 DATA", "volume_id": "CORS_0531", "volume_name": "VOLUME 0531: 2015-10-01 TO 2015-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0531", "node": "atm", "targets": [], "title": "ATM Volume cors_0528 , cors_0529 , cors_0530 , cors_0531 (CASSINI: RAW RS SCC13 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC7-V1.0", "publication_date": "2017-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on February 16, 2016.", "volume_set_name": "CASSINI: RAW RS TBOC7 DATA", "volume_id": "CORS_0538", "volume_name": "VOLUME 0538: 2016-01-01 TO 2016-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0538", "node": "atm", "targets": [], "title": "ATM Volume cors_0532 , cors_0533 , cors_0534 , cors_0535 , cors_0536 , cors_0537 , cors_0538 (CASSINI: RAW RS TBOC7 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC8-V1.0", "publication_date": "2017-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 6, 2016.", "volume_set_name": "CASSINI: RAW RS TBOC8 DATA", "volume_id": "CORS_0545", "volume_name": "VOLUME 0545: 2016-04-01 TO 2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0545", "node": "atm", "targets": [], "title": "ATM Volume cors_0539 , cors_0540 , cors_0541 , cors_0542 , cors_0543 , cors_0544 , cors_0545 (CASSINI: RAW RS TBOC8 DATA)"} -{"id": "CO-S-RSS-1-SROC21-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC21-V1.0", "publication_date": "2017-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on June 6 and June 30, 2016.", "volume_set_name": "CASSINI: RAW RS SROC21 DATA", "volume_id": "CORS_0562", "volume_name": "VOLUME 0562: 2016-04-01 TO 2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0562", "node": "atm", "targets": [], "title": "ATM Volume cors_0546 , cors_0547 , cors_0548 , cors_0549 , cors_0550 , cors_0551 , cors_0552 , cors_0553 , cors_0554 , cors_0555 , cors_0556 , cors_0557 , cors_0558 , cors_0559 , cors_0560 , cors_0561 , cors_0562 (CASSINI: RAW RS SROC21 DATA)"} -{"id": "CO-S-RSS-1-SROC4B-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC4B-V1.0", "publication_date": "2017-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on June 28, 2007.", "volume_set_name": "CASSINI: RAW RS SROC4B DATA", "volume_id": "CORS_0565", "volume_name": "VOLUME 0565: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0565", "node": "atm", "targets": [], "title": "ATM Volume cors_0563 , cors_0564 , cors_0565 (CASSINI: RAW RS SROC4B DATA)"} -{"id": "CO-SSA-RSS-1-TIGR20-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TIGR20-V1.0", "publication_date": "2017-07-01", "description": "This volume contains raw data and ancillary files from the Cassini Radio Science investigations during the Radio Science Titan Gravity Science experiments on August 9, 10, and 11, 2016.", "volume_set_name": "CASSINI: RAW RS TIGR20 DATA", "volume_id": "CORS_0567", "volume_name": "VOLUME 0567: 2016-07-01 TO 2016-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0567", "node": "atm", "targets": [], "title": "ATM Volume cors_0566 , cors_0567 (CASSINI: RAW RS TIGR20 DATA)"} -{"id": "CO-S-RSS-1-SROC22-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC22-V1.0", "publication_date": "2017-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on July 24, 2016.", "volume_set_name": "CASSINI: RAW RS SROC22 DATA", "volume_id": "CORS_0587", "volume_name": "VOLUME 0587: 2016-07-01 TO 2016-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0587", "node": "atm", "targets": [], "title": "ATM Volume cors_0568 , cors_0569 , cors_0570 , cors_0571 , cors_0572 , cors_0573 , cors_0574 , cors_0575 , cors_0576 , cors_0577 , cors_0578 , cors_0579 , cors_0580 , cors_0581 , cors_0582 , cors_0583 , cors_0584 , cors_0585 , cors_0586 , cors_0587 (CASSINI: RAW RS SROC21 DATA)"} -{"id": "CO-SS-RSS-1-SCC14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SS-RSS-1-SCC14-V1.0", "publication_date": "2017-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Solar Corona Characterization experiment, conducted from November 26 until December 25, 2016.", "volume_set_name": "CASSINI: RAW RS SCC14 DATA", "volume_id": "CORS_0594", "volume_name": "VOLUME 0594: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0594", "node": "atm", "targets": [], "title": "ATM Volume cors_0588 , cors_0589 , cors_0590 , cors_0591 , cors_0592 , cors_0593 , cors_0594 (CASSINI: RAW RS SCC14 DATA)"} -{"id": "CO-SSA-RSS-1-TBIS4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS4-V1.0", "publication_date": "2017-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Titan Bistatic experiment on November 13 and 14, 2016.", "volume_set_name": "CASSINI: RAW RS TBIS4 DATA", "volume_id": "CORS_0601", "volume_name": "VOLUME 0601: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0601", "node": "atm", "targets": [], "title": "ATM Volume cors_0595 , cors_0596 , cors_0597 , cors_0598 , cors_0599 , cors_0600 , cors_0601 (CASSINI: RAW RS TBIS4 DATA)"} -{"id": "CO-S-RSS-1-SROC23-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC23-V1.0", "publication_date": "2017-10-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on November 2, 12, 28, and on December 5 and 19, 2016.", "volume_set_name": "CASSINI: RAW RS SROC23 DATA", "volume_id": "CORS_0630", "volume_name": "VOLUME 0630: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0630", "node": "atm", "targets": [], "title": "ATM Volume cors_0602 , cors_0603 , cors_0604 , cors_0605 , cors_0606 , cors_0607 , cors_0608 , cors_0609 , cors_0610 , cors_0611 , cors_0612 , cors_0613 , cors_0614 , cors_0615 , cors_0616 , cors_0617 , cors_0618 , cors_0619 , cors_0620 , cors_0621 , cors_0622 , cors_0623 , cors_0624 , cors_0625 , cors_0626 , cors_0627 , cors_0628 , cors_0629 , cors_0630 (CASSINI: RAW RS SROC23 DATA)"} -{"id": "CO-S-RSS-1-SROC24-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC24-V1.0", "publication_date": "2018-01-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on January 2, 10, 17, and on March 22, 2017.", "volume_set_name": "CASSINI: RAW RS SROC24 DATA", "volume_id": "CORS_0650", "volume_name": "VOLUME 0650: 2017-01-01 TO 2017-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0650", "node": "atm", "targets": [], "title": "ATM Volume cors_0631 , cors_0632 , cors_0633 , cors_0634 , cors_0635 , cors_0636 , cors_0637 , cors_0638 , cors_0639 , cors_0640 , cors_0641 , cors_0642 , cors_0643 , cors_0644 , cors_0645 , cors_0646 , cors_0647 , cors_0648 , cors_0649 , cors_0650 (CASSINI: RAW RS SROC24 DATA)"} -{"id": "CO-S-RSS-1-SAGR18-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR18-V1.0", "publication_date": "2018-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Gravity and Ring Occultation experiments on May 8, 15, 21, June 9, and 22, 2017.", "volume_set_name": "CASSINI: RAW RS SAGR18 DATA", "volume_id": "CORS_0680", "volume_name": "VOLUME 0680: 2017-04-01 TO 2017-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0680", "node": "atm", "targets": [], "title": "ATM Volume cors_0651 , cors_0652 , cors_0653 , cors_0654 , cors_0655 , cors_0656 , cors_0657 , cors_0658 , cors_0659 , cors_0660 , cors_0661 , cors_0662 , cors_0663 , cors_0664 , cors_0665 , cors_0666 , cors_0667 , cors_0668 , cors_0669 , cors_0670 , cors_0671 , cors_0672 , cors_0673 , cors_0674 , cors_0675 , cors_0676 , cors_0677 , cors_0678 , cors_0679 , cors_0680 (CASSINI: RAW RS SAGR18 DATA)"} -{"id": "CO-S-RSS-1-SROC25-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC25-V1.0", "publication_date": "2018-04-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on April 6, 20, and May 28, 2017.", "volume_set_name": "CASSINI: RAW RS SROC25 DATA", "volume_id": "CORS_0703", "volume_name": "VOLUME 0703: 2017-04-01 TO 2017-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0703", "node": "atm", "targets": [], "title": "ATM Volume cors_0681 , cors_0682 , cors_0683 , cors_0684 , cors_0685 , cors_0686 , cors_0687 , cors_0688 , cors_0689 , cors_0690 , cors_0691 , cors_0692 , cors_0693 , cors_0694 , cors_0695 , cors_0696 , cors_0697 , cors_0698 , cors_0699 , cors_0700 , cors_0701 , cors_0702 , cors_0703 (CASSINI: RAW RS SROC25 DATA)"} -{"id": "CO-S-RSS-1-SAGR19-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SAGR19-V1.0", "publication_date": "2018-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Gravity and Ring Occultation experiments on July 18 and 19, 2017.", "volume_set_name": "CASSINI: RAW RS SAGR18 DATA", "volume_id": "CORS_0708", "volume_name": "VOLUME 0708: 2017-07-01 TO 2017-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0708", "node": "atm", "targets": [], "title": "ATM Volume cors_0704 , cors_0705 , cors_0706 , cors_0707 , cors_0708 (CASSINI: RAW RS SAGR18 DATA)"} -{"id": "CO-S-RSS-1-SROC26-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC26-V1.0", "publication_date": "2018-07-01", "description": "This volume contains raw data and ancillary files from the Cassini radio science investigations during the Saturn Occultation experiments on July 6 and September 15, 2017.", "volume_set_name": "CASSINI: RAW RS SROC26 DATA", "volume_id": "CORS_0726", "volume_name": "VOLUME 0726: 2017-07-01 TO 2017-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0726", "node": "atm", "targets": [], "title": "ATM Volume cors_0709 , cors_0710 , cors_0711 , cors_0712 , cors_0713 , cors_0714 , cors_0715 , cors_0716 , cors_0717 , cors_0718 , cors_0719 , cors_0720 , cors_0721 , cors_0722 , cors_0723 , cors_0724 , cors_0725 , cors_0726 (CASSINI: RAW RS SROC26 DATA)"} -{"id": "CO-S-RSS-1-SROC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on May 3, May 21, June 8, and June 27, 2005.", "volume_set_name": "CASSINI: RAW RS SROC1 DATA", "volume_id": "CORS_0728", "volume_name": "VOLUME 0728: 2005-04-01 TO 2005-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0728", "node": "atm", "targets": [], "title": "ATM Volume cors_0727 , cors_0728 (CASSINI: RAW RS SROC1 DATA)"} -{"id": "CO-S-RSS-1-SROC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC2-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on July 15, August 2, August 20, and September 5, 2005.", "volume_set_name": "CASSINI: RAW RS SROC2 DATA", "volume_id": "CORS_0729", "volume_name": "VOLUME 0729: 2005-07-01 TO 2005-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0729", "node": "atm", "targets": [], "title": "ATM Volume cors_0729 (CASSINI: RAW RS SROC2 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on March 18, and 19, 2006.", "volume_set_name": "CASSINI: RAW RS TBOC1 DATA", "volume_id": "CORS_0730", "volume_name": "VOLUME 0730: 2006-01-01 TO 2006-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0730", "node": "atm", "targets": [], "title": "ATM Volume cors_0730 (CASSINI: RAW RS TBOC1 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC2-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 20, 2006.", "volume_set_name": "CASSINI: RAW RS TBOC2 DATA", "volume_id": "CORS_0731", "volume_name": "VOLUME 0731: 2006-04-01 TO 2006-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0731", "node": "atm", "targets": [], "title": "ATM Volume cors_0731 (CASSINI: RAW RS TBOC2 DATA)"} -{"id": "CO-SSA-RSS-1-ENOC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENOC1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Enceladus Occultation experiment on September 15, 2006.", "volume_set_name": "CASSINI: RAW RS ENOC1 DATA", "volume_id": "CORS_0732", "volume_name": "VOLUME 0732: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0732", "node": "atm", "targets": [], "title": "ATM Volume cors_0732 (CASSINI: RAW RS ENOC1 DATA)"} -{"id": "CO-S-RSS-1-SROC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC3-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on September 15-17, 2006.", "volume_set_name": "CASSINI: RAW RS SROC3 DATA", "volume_id": "CORS_0734", "volume_name": "VOLUME 0734: 2006-07-01 TO 2006-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0734", "node": "atm", "targets": [], "title": "ATM Volume cors_0733 , cors_0734 (CASSINI: RAW RS ENOC1 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC3-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on March 25-26, 2007.", "volume_set_name": "CASSINI: RAW RS TBOC3 DATA", "volume_id": "CORS_0735", "volume_name": "VOLUME 0735: 2007-01-01 TO 2007-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0735", "node": "atm", "targets": [], "title": "ATM Volume cors_0735 (CASSINI: RAW RS TBOC3 DATA)"} -{"id": "CO-S-RSS-1-SROC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC4-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on May 10 and June 11, 2007.", "volume_set_name": "CASSINI: RAW RS SROC4 DATA", "volume_id": "CORS_0736", "volume_name": "VOLUME 0736: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0736", "node": "atm", "targets": [], "title": "ATM Volume cors_0736 (CASSINI: RAW RS SROC4 DATA)"} -{"id": "CO-SSA-RSS-1-TOCC1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TOCC1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Occultation experiment on May 28, 2007.", "volume_set_name": "CASSINI: RAW RS TOCC1 DATA", "volume_id": "CORS_0737", "volume_name": "VOLUME 0737: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0737", "node": "atm", "targets": [], "title": "ATM Volume cors_0737 (CASSINI: RAW RS TOCC1 DATA)"} -{"id": "CO-S-RSS-1-SROC4B-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC4B-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on June 28, 2007.", "volume_set_name": "CASSINI: RAW RS SROC4B DATA", "volume_id": "CORS_0738", "volume_name": "VOLUME 0738: 2007-04-01 TO 2007-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0738", "node": "atm", "targets": [], "title": "ATM Volume cors_0738 (CASSINI: RAW RS SROC4B DATA)"} -{"id": "CO-SSA-RSS-1-TBIS1-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS1-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic experiment on July 18, 2007.", "volume_set_name": "CASSINI: RAW RS TOCC1 DATA", "volume_id": "CORS_0739", "volume_name": "VOLUME 0739: 2007-07-01 TO 2007-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0739", "node": "atm", "targets": [], "title": "ATM Volume cors_0739 (CASSINI: RAW RS TOCC1 DATA)"} -{"id": "CO-S-RSS-1-SROC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC5-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on October 24, December 3 and 19, 2007.", "volume_set_name": "CASSINI: RAW RS SROC5 DATA", "volume_id": "CORS_0740", "volume_name": "VOLUME 0740: 2007-10-01 TO 2007-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0740", "node": "atm", "targets": [], "title": "ATM Volume cors_0740 (CASSINI: RAW RS SROC5 DATA)"} -{"id": "CO-S-RSS-1-SROC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC6-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on January 15, January 27, February 8, and March 2, 2008.", "volume_set_name": "CASSINI: RAW RS SROC6 DATA", "volume_id": "CORS_0741", "volume_name": "VOLUME 0741: 2008-01-01 TO 2008-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0741", "node": "atm", "targets": [], "title": "ATM Volume cors_0741 (CASSINI: RAW RS SROC6 DATA)"} -{"id": "CO-S-RSS-1-SROC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC7-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on April 1, 11, May 9, 17, June 1, 16, and June 23, 2008.", "volume_set_name": "CASSINI: RAW RS SROC7 DATA", "volume_id": "CORS_0744", "volume_name": "VOLUME 0744: 2008-04-01 TO 2008-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0744", "node": "atm", "targets": [], "title": "ATM Volume cors_0742 , cors_0743 , cors_0744 (CASSINI: RAW RS SROC7 DATA)"} -{"id": "CO-S-RSS-1-SROC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC8-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn and Ring Occultation experiments on July 7, August 4, 19, 26, and September 10, 2008.", "volume_set_name": "CASSINI: RAW RS SROC8 DATA", "volume_id": "CORS_0745", "volume_name": "VOLUME 0745: 2008-07-01 TO 2008-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0745", "node": "atm", "targets": [], "title": "ATM Volume cors_0745 (CASSINI: RAW RS SROC8 DATA)"} -{"id": "CO-S-RSS-1-SROC9-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC9-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring Occultation experiment on October 17, 2008.", "volume_set_name": "CASSINI: RAW RS SROC9 DATA", "volume_id": "CORS_0746", "volume_name": "VOLUME 0746: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0746", "node": "atm", "targets": [], "title": "ATM Volume cors_0746 (CASSINI: RAW RS SROC9 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC4-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on November 3, 2008.", "volume_set_name": "CASSINI: RAW RS TBOC4 DATA", "volume_id": "CORS_0747", "volume_name": "VOLUME 0747: 2008-10-01 TO 2008-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0747", "node": "atm", "targets": [], "title": "ATM Volume cors_0747 (CASSINI: RAW RS TBOC4 DATA)"} -{"id": "CO-SSA-RSS-1-TBIS2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS2-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic experiment on March 27, 2009.", "volume_set_name": "CASSINI: RAW RS TBIS2 DATA", "volume_id": "CORS_0748", "volume_name": "VOLUME 0748: 2009-01-01 TO 2009-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0748", "node": "atm", "targets": [], "title": "ATM Volume cors_0748 (CASSINI: RAW RS TBIS2 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC5-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC5-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and occultation experiments conducted on April 4 and June 22, 2009.", "volume_set_name": "CASSINI: RAW RS TBOC5 DATA", "volume_id": "CORS_0749", "volume_name": "VOLUME 0749: 2009-04-01 TO 2009-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0749", "node": "atm", "targets": [], "title": "ATM Volume cors_0749 (CASSINI: RAW RS TBOC5 DATA)"} -{"id": "CO-S-RSS-1-SROC10-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC10-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on November 1, 20, December 9 and 25-26, 2009.", "volume_set_name": "CASSINI: RAW RS SROC10 DATA", "volume_id": "CORS_0751", "volume_name": "VOLUME 0751: 2009-10-01 TO 2009-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0751", "node": "atm", "targets": [], "title": "ATM Volume cors_0750 , cors_0751 (CASSINI: RAW RS SROC10 DATA)"} -{"id": "CO-SSA-RSS-1-ENOC2-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-ENOC2-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Enceladus Occultation experiment on January 26, 2010.", "volume_set_name": "CASSINI: RAW RS ENOC2 DATA", "volume_id": "CORS_0752", "volume_name": "VOLUME 0752: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0752", "node": "atm", "targets": [], "title": "ATM Volume cors_0752 (CASSINI: RAW RS ENOC2 DATA)"} -{"id": "CO-S-RSS-1-SROC11-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC11-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on January 26-27, 2010.", "volume_set_name": "CASSINI: RAW RS SROC11 DATA", "volume_id": "CORS_0753", "volume_name": "VOLUME 0753: 2010-01-01 TO 2010-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0753", "node": "atm", "targets": [], "title": "ATM Volume cors_0753 (CASSINI: RAW RS SROC11 DATA)"} -{"id": "CO-S-RSS-1-SROC12-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC12-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on April 27, 2010 and June 18, 2010.", "volume_set_name": "CASSINI: RAW RS SROC12 DATA", "volume_id": "CORS_0754", "volume_name": "VOLUME 0754: 2010-04-01 TO 2010-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0754", "node": "atm", "targets": [], "title": "ATM Volume cors_0754 (CASSINI: RAW RS SROC12 DATA)"} -{"id": "CO-S-RSS-1-SROC13-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC13-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on July 24 and September 2, 2010.", "volume_set_name": "CASSINI: RAW RS SROC13 DATA", "volume_id": "CORS_0755", "volume_name": "VOLUME 0755: 2010-07-01 TO 2010-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0755", "node": "atm", "targets": [], "title": "ATM Volume cors_0755 (CASSINI: RAW RS SROC13 DATA)"} -{"id": "CO-S-RSS-1-SROC14-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC14-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Atmospheric Occultation experiment on August 1, 2011.", "volume_set_name": "CASSINI: RAW RS SROC14 DATA", "volume_id": "CORS_0756", "volume_name": "VOLUME 0756: 2011-07-01 TO 2011-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0756", "node": "atm", "targets": [], "title": "ATM Volume cors_0756 (CASSINI: RAW RS SROC14 DATA)"} -{"id": "CO-S-RSS-1-SROC15-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC15-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring Occultation experiments on June 4 and 28, 2012.", "volume_set_name": "CASSINI: RAW RS SROC15 DATA", "volume_id": "CORS_0757", "volume_name": "VOLUME 0757: 2012-04-01 TO 2012-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0757", "node": "atm", "targets": [], "title": "ATM Volume cors_0757 (CASSINI: RAW RS SROC15 DATA)"} -{"id": "CO-S-RSS-1-SROC16-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC16-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring and Atmospheric Occultation experiments on July 22, August 12, and September 2, 2012.", "volume_set_name": "CASSINI: RAW RS SROC16 DATA", "volume_id": "CORS_0760", "volume_name": "VOLUME 0760: 2012-07-01 TO 2012-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0760", "node": "atm", "targets": [], "title": "ATM Volume cors_0758 , cors_0759 , cors_0760 (CASSINI: RAW RS SROC16 DATA)"} -{"id": "CO-S-RSS-1-SROC17-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC17-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Ring Occultation experiment on November 10, 2012.", "volume_set_name": "CASSINI: RAW RS SROC17 DATA", "volume_id": "CORS_0761", "volume_name": "VOLUME 0761: 2012-10-01 TO 2012-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0761", "node": "atm", "targets": [], "title": "ATM Volume cors_0761 (CASSINI: RAW RS SROC17 DATA)"} -{"id": "CO-S-RSS-1-SROC18-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC18-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on January 5, 8, 31 and February 25, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC18 DATA", "volume_id": "CORS_0764", "volume_name": "VOLUME 0764: 2013-01-01 TO 2013-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0764", "node": "atm", "targets": [], "title": "ATM Volume cors_0762 , cors_0763 , cors_0764 (CASSINI: RAW RS SROC18 DATA)"} -{"id": "CO-S-RSS-1-SROC19-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC19-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on April 12, May 10, 20, 31, June 24, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC19 DATA", "volume_id": "CORS_0769", "volume_name": "VOLUME 0769: 2013-04-01 TO 2013-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0769", "node": "atm", "targets": [], "title": "ATM Volume cors_0765 , cors_0766 , cors_0767 , cors_0768 , cors_0769 (CASSINI: RAW RS SROC19 DATA)"} -{"id": "CO-S-RSS-1-SROC20-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC20-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on July 6, August 8, September 1, 2013 .", "volume_set_name": "CASSINI: RAW RS SROC20 DATA", "volume_id": "CORS_0775", "volume_name": "VOLUME 0775: 2013-07-01 TO 2013-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0775", "node": "atm", "targets": [], "title": "ATM Volume cors_0770 , cors_0771 , cors_0772 , cors_0773 , cors_0774 , cors_0775 (CASSINI: RAW RS SROC20 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC6-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC6-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 17 and June 18, 2014.", "volume_set_name": "CASSINI: RAW RS TBOC6 DATA", "volume_id": "CORS_0776", "volume_name": "VOLUME 0776: 2014-04-01 TO 2014-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0776", "node": "atm", "targets": [], "title": "ATM Volume cors_0776 (CASSINI: RAW RS TBOC6 DATA)"} -{"id": "CO-SSA-RSS-1-TBIS3-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS3-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic experiment on October 23 and 24, 2014.", "volume_set_name": "CASSINI: RAW RS TBIS3 DATA", "volume_id": "CORS_0777", "volume_name": "VOLUME 0777: 2014-10-01 TO 2014-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0777", "node": "atm", "targets": [], "title": "ATM Volume cors_0777 (CASSINI: RAW RS TBIS3 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC7-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC7-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on February 16, 2016.", "volume_set_name": "CASSINI: RAW RS TBOC7 DATA", "volume_id": "CORS_0778", "volume_name": "VOLUME 0778: 2016-01-01 TO 2016-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0778", "node": "atm", "targets": [], "title": "ATM Volume cors_0778 (CASSINI: RAW RS TBOC7 DATA)"} -{"id": "CO-SSA-RSS-1-TBOC8-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBOC8-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic and Occultation experiments on May 6, 2016.", "volume_set_name": "CASSINI: RAW RS TBOC8 DATA", "volume_id": "CORS_0779", "volume_name": "VOLUME 0779: 2016-04-01 TO 2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0779", "node": "atm", "targets": [], "title": "ATM Volume cors_0779 (CASSINI: RAW RS TBOC8 DATA)"} -{"id": "CO-S-RSS-1-SROC21-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC21-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on June 6 and June 30, 2016.", "volume_set_name": "CASSINI: RAW RS SROC21 DATA", "volume_id": "CORS_0783", "volume_name": "VOLUME 0783: 2016-04-01 TO 2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0783", "node": "atm", "targets": [], "title": "ATM Volume cors_0780 , cors_0781 , cors_0782 , cors_0783 (CASSINI: RAW RS TBOC21 DATA)"} -{"id": "CO-S-RSS-1-SROC22-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC22-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on July 24, 2016.", "volume_set_name": "CASSINI: RAW RS SROC22 DATA", "volume_id": "CORS_0785", "volume_name": "VOLUME 0785: 2016-07-01 TO 2016-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0785", "node": "atm", "targets": [], "title": "ATM Volume cors_0784 , cors_0785 (CASSINI: RAW RS SROC22 DATA)"} -{"id": "CO-S-RSS-1-SROC23-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC23-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on November 2, 12, 28, and on December 5 and 19, 2016.", "volume_set_name": "CASSINI: RAW RS SROC23 DATA", "volume_id": "CORS_0795", "volume_name": "VOLUME 0795: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0795", "node": "atm", "targets": [], "title": "ATM Volume cors_0786 , cors_0787 , cors_0788 , cors_0789 , cors_0790 , cors_0791 , cors_0792 , cors_0793 , cors_0794 , cors_0795 (CASSINI: RAW RS SROC23 DATA)"} -{"id": "CO-SSA-RSS-1-TBIS4-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-SSA-RSS-1-TBIS4-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Titan Bistatic experiment on November 13 and 14, 2016.", "volume_set_name": "CASSINI: RAW RS TBIS4 DATA", "volume_id": "CORS_0796", "volume_name": "VOLUME 0796: 2016-10-01 TO 2016-12-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0796", "node": "atm", "targets": [], "title": "ATM Volume cors_0796 (CASSINI: RAW RS TBIS4 DATA)"} -{"id": "CO-S-RSS-1-SROC24-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC24-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on January 2, 10, 17, and on March 22, 2017.", "volume_set_name": "CASSINI: RAW RS SROC24 DATA", "volume_id": "CORS_0800", "volume_name": "VOLUME 0800: 2017-01-01 TO 2017-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0800", "node": "atm", "targets": [], "title": "ATM Volume cors_0797 , cors_0798 , cors_0799 , cors_0800 (CASSINI: RAW RS SROC24 DATA)"} -{"id": "CO-S-RSS-1-SROC25-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC25-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on April 6, 20, and May 28, 2017.", "volume_set_name": "CASSINI: RAW RS SROC25 DATA", "volume_id": "CORS_0805", "volume_name": "VOLUME 0805: 2017-04-01 TO 2017-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0805", "node": "atm", "targets": [], "title": "ATM Volume cors_0801 , cors_0802 , cors_0803 , cors_0804 , cors_0805 (CASSINI: RAW RS SROC25 DATA)"} -{"id": "CO-S-RSS-1-SROC26-V1.0", "pds_version_id": "PDS3", "data_set_id": "CO-S-RSS-1-SROC26-V1.0", "publication_date": "2018-09-30", "description": "This volume contains 1KHz RSR data from the Cassini radio science investigations during the Saturn Occultation experiments on July 6 and September 15, 2017.", "volume_set_name": "CASSINI: RAW RS SROC26 DATA", "volume_id": "CORS_0808", "volume_name": "VOLUME 0808: 2017-07-01 TO 2017-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=cors_0808", "node": "atm", "targets": [], "title": "ATM Volume cors_0806 , cors_0807 , cors_0808 (CASSINI: RAW RS SROC26 DATA)"} -{"id": "CO-J-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SSB-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-X-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-X-UVIS-2-SSB-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-J-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-J-UVIS-2-SPEC-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-X-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-X-UVIS-2-SPEC-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-X-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-X-UVIS-2-CUBE-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-X-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-X-UVIS-2-WAV-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-WAV-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-02-01", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-091...2002-046 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0003", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0003", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0003 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0004", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0004", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0004", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-WAV-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0004", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0004", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0004 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-WAV-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-WAV-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0005", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0005", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0005 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0006", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0006", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0006", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-01-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0006", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0006", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0006 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-24", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0007", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0007 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-24", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0007", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0007 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-24", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0007", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0007", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0007 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0008", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0008", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0008", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-01-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-183...2004-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0008", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0008", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0008 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-01-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0009", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-01-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0009", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-01-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0009", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-01-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0009", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0009", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0009 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-001...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0010", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-001...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0010", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-001...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0010", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-001...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0010", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0010", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0010 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0011", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0011", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0011", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-19", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-091...2005-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0011", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0011", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0011 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0012", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0012", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0012", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-181...2005-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0012", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0012", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0012 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0013", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0013", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0013", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0013", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0013", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0013 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0014", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0014", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0014", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-001...2006-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0014", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0014", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0014 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0015", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0015", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0015", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-15", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-091...2006-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0015", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0015", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0015 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0016", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0016", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0016", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-182...2006-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0016", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0016", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0016 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2007-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0017", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2007-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0017", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2007-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0017", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2006-274...2007-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0017", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0017", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0017 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-001...2007-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0018", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0018 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-001...2007-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0018", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0018 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-13", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-001...2007-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0018", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0018", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0018 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-182...2007-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0020", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-182...2007-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0020", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-182...2007-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0020", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-182...2007-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0020", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0020", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0019 , couvis_0020 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0021", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0021", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0021", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-12", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2007-274...2008-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0021", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0021", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0021 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-02-22", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-092...2008-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0023", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-02-22", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-092...2008-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0023", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-02-22", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-092...2008-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0023", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-02-22", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-092...2008-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0023", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0023", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0022 , couvis_0023 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0024", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0024", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0024", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-183...2008-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0024", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0024", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0024 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0025", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0025", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0025", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-09", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2008-275...2009-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0025", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0025", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0025 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-002...2009-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0026", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0026 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-002...2009-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0026", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0026 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-002...2009-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0026", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0026", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0026 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0027", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0027", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0027", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-08", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-091...2009-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0027", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0027", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0027 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-07", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-182...2009-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0028", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0028 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-07", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-182...2009-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0028", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0028 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-07", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-182...2009-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0028", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0028", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0028 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-06", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0029", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-06", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0029", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-06", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0029", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-06", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2009-274...2009-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0029", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0029", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0029 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-07-16", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0030", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-07-16", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0030", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-07-16", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0030", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-07-16", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-002...2010-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0030", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0030", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0030 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0031", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0031", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0031", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-091...2010-152 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0031", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0031", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0031 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-06-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-185...2010-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0032", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0032 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-06-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-185...2010-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0032", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0032 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-06-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-185...2010-273 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0032", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0032", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0032 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2011-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0033", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2011-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0033", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2011-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0033", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2011-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2010-276...2010-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0033", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0033", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0033 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-06-14", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-182...2011-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0036", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-06-14", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-182...2011-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0036", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-06-14", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-182...2011-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0036", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-06-14", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-182...2011-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0036", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0036", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0034 couvis_0035 couvis_0036 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-09-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0037", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-09-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0037", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-09-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0037", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-09-25", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2011-274...2012-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0037", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0037", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0037 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2012-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0038", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2012-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0038", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2012-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0038", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2012-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-001...2012-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0038", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0038", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0038 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2013-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0039", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2013-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0039", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2013-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0039", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2013-03-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-093...2012-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0039", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0039", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0039 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2013-06-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0040", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2013-06-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0040", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2013-06-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0040", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2013-06-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-183...2012-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0040", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0040", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0040 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.2", "publication_date": "2013-09-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0041", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.2", "publication_date": "2013-09-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0041", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.2", "publication_date": "2013-09-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0041", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CALIB-V1.2", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CALIB-V1.2", "publication_date": "2013-09-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2012-276...2012-366 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0041", "volume_name": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0041", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0041 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-CUBE-V1.3", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-CUBE-V1.3", "publication_date": "2013-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0042", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SSB-V1.3", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SSB-V1.3", "publication_date": "2013-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0042", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "CO-S-UVIS-2-SPEC-V1.3", "pds_version_id": null, "data_set_id": "CO-S-UVIS-2-SPEC-V1.3", "publication_date": "2013-12-31", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0042", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2014-03-28", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0043", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0043 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2014-06-20", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-182...2013-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0044", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0044 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2014-09-23", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-274...2014-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0045", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0045 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2014-12-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-001...2014-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0046", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0046 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2015-03-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-091...2014-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0047", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0047 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2015-06-30", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-182...2014-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0048", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0048 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "publication_date": "2015-09-29", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Oct 1, 2014...Jan 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0049", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0049 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0050", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0050 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Apr 1, 2015...Jul 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0051", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0051 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-182...2015-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0052", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0052 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-274...2016-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0053", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0053 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-001...2016-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0054", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0054 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-092...2016-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0055", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0055 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-183...2016-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0056", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0056 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-275...2017-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0057", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0057 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-001...2017-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0058", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0058 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-091...2017-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0059", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0059 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "pds_version_id": "PDS3", "data_set_id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "publication_date": "2018-11-05", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-182...2017-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "volume_set_name": "CASSINI ULTRAVIOLET IMAGING SPECTROGRAPH DATA", "volume_id": "COUVIS_0060", "volume_name": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume couvis_0060 (Cassini Ultraviolet Imaging Spectrograph Data)"} -{"id": "HP-SSA-ACP-3-DESCENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-ACP-3-DESCENT-V1.0", "publication_date": "2006-07-17", "description": "N/A", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPACP_0001", "volume_name": "HUYGENS ACP DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpacp_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpacp_0001 (Huygens ACP Calibrated Engineering & Science Data)"} -{"id": "HP-SSA-DISR-2/3-EDR/RDR-V1.3", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-DISR-2/3-EDR/RDR-V1.3", "publication_date": "2006-07-15", "description": "This volume contains datasets from the Descent Imager and Spectral Radiometer (DISR) instrument taken during the descent of the Huygens probe through Titan's atmosphere and onto its surface on 14 January 2005. The data includes images, spectra, and illumination intensity looking both upward and downward during the probe's descent. The volume also contains documentation and index files to support access and use of the data.", "volume_set_name": "N/A", "volume_id": "HPDISR_0001", "volume_name": "N/A", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdisr_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpdisr_0001 (Huygens Probe DISR Results)"} -{"id": "HP-SSA-DTWG-6-TRAJECTORY-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-DTWG-6-TRAJECTORY-V1.0", "publication_date": "2007-03-07", "description": "N/A", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPDTWG_0001", "volume_name": "HUYGENS TRAJECTORY", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdtwg_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpdtwg_0001 (Huygens Trajectory)"} -{"id": "HP-SSA-DWE-2-3-DESCENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-DWE-2-3-DESCENT-V1.0", "publication_date": "2006-07-17", "description": "N/A", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPDWE_0001", "volume_name": "HUYGENS PROBE TITAN DWE DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdwe_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpdwe_0001 (Huygens Probe DWE Results)"} -{"id": "HP-SSA-GCMS-3-FCO/DESCENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-GCMS-3-FCO/DESCENT-V1.0", "publication_date": "2006-06-20", "description": "N/A", "volume_set_name": "N/A", "volume_id": "HPGCMS_0001", "volume_name": "N/A", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpgcms_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpgcms_0001 (Huygens Titan Gas Chromatograph)"} -{"id": "HP-SSA-HASI-2-3-4-MISSION-V1.1", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-HASI-2-3-4-MISSION-V1.1", "publication_date": "2006-10-12", "description": "N/A", "volume_set_name": "N/A", "volume_id": "HPHASI_0001", "volume_name": "N/A", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphasi_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hphasi_0001 (Huygens HASI Mission Raw and Calibrated Data V1.1)"} -{"id": "HP-SSA-HK-2/3-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-HK-2/3-V1.0", "publication_date": "2006-07-17", "description": "N/A", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPHK_0001", "volume_name": "HUYGENS PROBE TITAN ENGINEERING DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hphk_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hphk_0001 (Huygens Engineering Data)"} -{"id": "HP-SSA-SSP-3/4-DESCENT-V1.0", "pds_version_id": "PDS3", "data_set_id": "HP-SSA-SSP-3/4-DESCENT-V1.0", "publication_date": "2006-07-14", "description": "This volume contains data from HM Surface Science Package from the Huygens Probe", "volume_set_name": "HUYGENS PROBE ARCHIVE", "volume_id": "HPSSP_0001", "volume_name": "HUYGENS PROBE TITAN SURFACE SCIENCE PACKAGE DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpssp_0001", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume hpssp_0001 (Huygens Entry, Descent and Surface Data)"} -{"id": "VG1-S-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG1-S-UVS-3-RDR-V1.0", "publication_date": "1997-06-27", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2210", "volume_name": "VOYAGER 1 SATURN ENCOUNTER:1980-11-13 TO 1980-12-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2210", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume vg_2207 , vg_2208 , vg_2209 , vg_2210 (Voyager 1 UVS)"} -{"id": "VG2-S-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-S-UVS-3-RDR-V1.0", "publication_date": "1997-10-01", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2213", "volume_name": "VOYAGER 2 SATURN ENCOUNTER:1981-07-31 TO 1981-08-25", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2213", "node": "atm", "targets": ["Saturn"], "title": "ATM Volume vg_2211 , vg_2212 , vg_2213 (Voyager 2 UVS)"} -{"id": "VG2-U-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-U-UVS-3-RDR-V1.0", "publication_date": "1997-10-06", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2215", "volume_name": "VOYAGER 2 URANUS ENCOUNTER:1986-01-25 TO 1986-02-15", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2215", "node": "atm", "targets": ["Uranus"], "title": "ATM Volume vg_2214 , vg_2215 (Voyager 2 UVS)"} -{"id": "VG2-N-UVS-3-RDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-N-UVS-3-RDR-V1.0", "publication_date": "1997-06-10", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "VOYAGER 1 AND 2 UVS RDR DATA", "volume_id": "VG_2216", "volume_name": "VOYAGER 2 NEPTUNE ENCOUNTER: 1989-08-13 TO 1986-09-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2216", "node": "atm", "targets": ["Neptune"], "title": "ATM Volume vg_2216 (Voyager 2 UVS)"} -{"id": "VG2-NSA-RSS-5-ROCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VG2-NSA-RSS-5-ROCC-V1.0", "publication_date": "1998-04-01", "description": "This volume contains results from Voyager 2 radio occultation measurements at Triton.", "volume_set_name": "VOYAGER RADIO OCCULTATION REDUCED DATA", "volume_id": "VG_2499", "volume_name": "VOLUME 1: VOYAGER 2 TRITON RADIO OCCULTATION", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2499", "node": "atm", "targets": ["Neptune"], "title": "ATM Volume vg_2499 (Voyager 2 Triton Radio Occultations)"} -{"id": "MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-2-UVVS-EDR-V1.0", "publication_date": "2015-10-09", "description": "This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS UNCALIBRATED DATA", "volume_id": "MESSMAS_1001", "volume_name": "MESSENGER MASCS UNCALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_1001"} -{"id": "MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-2-VIRS-EDR-V1.0", "publication_date": "2015-10-09", "description": "This volume contains MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS UNCALIBRATED DATA", "volume_id": "MESSMAS_1001", "volume_name": "MESSENGER MASCS UNCALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_1001"} -{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} -{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} -{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} -{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} -{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V1.0", "publication_date": "2016-05-06", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2001", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2001"} -{"id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-UVVS-CDR-CALDATA-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} -{"id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-3-VIRS-CDR-CALDATA-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} -{"id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS-DDR-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} -{"id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V2.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-VIRS-DDR-V2.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} -{"id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-5-VIRS-DAP-V2.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} -{"id": "MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "MESS-E/V/H-MASCS-4-UVVS/VIRS-DDR-V1.0", "publication_date": "2017-05-12", "description": "This volume contains calibrated and derived MESSENGER MASCS data collected by the UVVS and VIRS detectors at Earth, Venus and Mercury over the interval 2004-240 (27-Aug) to 2015-120 (30-Apr).", "volume_set_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA", "volume_id": "MESSMAS_2101", "volume_name": "MESSENGER MASCS CALIBRATED AND DERIVED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=messmas_2101", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume messmas_2101"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-21", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2201", "volume_name": "VOLUME 01: RAW DATA 1991-10-05 THROUGH 1992-02-21", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2201", "node": "atm", "targets": [], "title": "ATM Volume mg_2201"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-21", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2202", "volume_name": "VOLUME 02: RAW DATA 1992-03-07 THROUGH 1992-03-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2202", "node": "atm", "targets": [], "title": "ATM Volume mg_2202"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-22", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2203", "volume_name": "VOLUME 03: RAW DATA 1992-12-07 THROUGH 06:52:08", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2203", "node": "atm", "targets": [], "title": "ATM Volume mg_2203"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-23", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2204", "volume_name": "VOLUME 04: RAW DATA 1992-12-07 AND 1994-06-24", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2204", "node": "atm", "targets": [], "title": "ATM Volume mg_2204"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-23", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2205", "volume_name": "VOLUME 05: RAW DATA 1994-06-24 TO 1994-07-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2205", "node": "atm", "targets": [], "title": "ATM Volume mg_2205"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-24", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2206", "volume_name": "VOLUME 06: RAW DATA 1994-07-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2206", "node": "atm", "targets": [], "title": "ATM Volume mg_2206"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-24", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2207", "volume_name": "VOLUME 07: RAW DATA 1994-07-30 TO 1994-10-01", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2207", "node": "atm", "targets": [], "title": "ATM Volume mg_2207"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-25", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2208", "volume_name": "VOLUME 08: RAW DATA 1994-10-01", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2208", "node": "atm", "targets": [], "title": "ATM Volume mg_2208"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-28", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2209", "volume_name": "VOLUME 09: RAW DATA 1994-10-01 THROUGH 1994-10-02", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2209", "node": "atm", "targets": [], "title": "ATM Volume mg_2209"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-28", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2210", "volume_name": "VOLUME 10: RAW DATA 1994-10-06 TO 1994-10-08", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2210", "node": "atm", "targets": [], "title": "ATM Volume mg_2210"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-29", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2211", "volume_name": "VOLUME 11: RAW DATA 1994-10-08 TO 1994-10-10", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2211", "node": "atm", "targets": [], "title": "ATM Volume mg_2211"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-29", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2212", "volume_name": "VOLUME 12: RAW DATA 1994-10-10 TO 1994-10-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2212", "node": "atm", "targets": [], "title": "ATM Volume mg_2212"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-05-30", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2213", "volume_name": "VOLUME 13: RAW DATA 1994-10-11", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2213", "node": "atm", "targets": [], "title": "ATM Volume mg_2213"} -{"id": "MGN-V-RSS-1-ROCC-V2.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-1-ROCC-V2.0", "publication_date": "1996-09-25", "description": "This volume contains raw data, partially processed data, and ancillary files from Magellan radio occultation experiments.", "volume_set_name": "MAGELLAN: RADIO OCCULTATION RAW DATA", "volume_id": "MG_2214", "volume_name": "VOLUME 14: RAW DATA 1994-10-11 TO 1994-10-12", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2214", "node": "atm", "targets": [], "title": "ATM Volume mg_2214"} -{"id": "MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGN-V-RSS-5-OCC-PROF-ABS-H2SO4-V1.0", "publication_date": "1996-06-27", "description": "This volume contains archival data produced from dual-frequency ingress radio occultation experiments using the Magellan orbiter on three consecutive orbits (#3212 - #3214) on October 5 and 6, 1991. The data sets include vertical profiles of refractivity, temperature, pressure and density in the neutral Venus atmosphere, and vertical profiles of 13-cm and 3.6-cm absorptivity and abundance of sulfuric acid vapor (H2SO4). The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MAGELLAN OCCULTATION PROFILE DATA RECORD", "volume_id": "MG_2401", "volume_name": "MAGELLAN OCCULTATION PROFILE DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mg_2401", "node": "atm", "targets": [], "title": "ATM Volume mg_2401"} -{"id": "PVO-V-OUVS-5-IMIDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PVO-V-OUVS-5-IMIDR-V1.0", "publication_date": "1995-09-08", "description": "This volume contains the Pioneer Venus Orbiter Inbound Monochrome Image Data Record (IMIDR) archive, a set of rectified monochromatic images of Venus acquired by the Pioneer Venus Orbiter Ultraviolet Spectrometer (PVOUVS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "volume_id": "PV01_1001", "volume_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1001", "node": "atm", "targets": [], "title": "ATM Volume pv01_1001"} -{"id": "PVO-V-OUVS-5-IMIDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "PVO-V-OUVS-5-IMIDR-V1.0", "publication_date": "1995-09-27", "description": "This volume contains the Pioneer Venus Orbiter Inbound Monochrome Image Data Record (IMIDR) archive, a set of rectified monochromatic images of Venus acquired by the Pioneer Venus Orbiter Ultraviolet Spectrometer (PVOUVS). It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "volume_id": "PV01_1002", "volume_name": "PVO OUVS INBOUND MONOCHROME IMAGES", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=browse&volume=pv01_1002", "node": "atm", "targets": [], "title": "ATM Volume pv01_1002"} -{"id": "VCO-V-IR1-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_0001", "volume_name": "VENUS CLIMATE ORBITER IR1 RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_0001", "node": "atm", "targets": [], "title": "ATM Volume vcoir1_0001"} -{"id": "VCO-V-IR1-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_1001", "volume_name": "VENUS CLIMATE ORBITER IR1 CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_1001", "node": "atm", "targets": [], "title": "ATM Volume vcoir1_1001"} -{"id": "VCO-V-IR1-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR1-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR1 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR1 DATA", "volume_id": "VCOIR1_2001", "volume_name": "VENUS CLIMATE ORBITER IR1 GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir1_2001", "node": "atm", "targets": [], "title": "ATM Volume vcoir1_2001"} -{"id": "VCO-V-IR2-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_0001", "volume_name": "VENUS CLIMATE ORBITER IR2 RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_0001", "node": "atm", "targets": [], "title": "ATM Volume vcoir2_0001"} -{"id": "VCO-V-IR2-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_1001", "volume_name": "VENUS CLIMATE ORBITER IR2 CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_1001", "node": "atm", "targets": [], "title": "ATM Volume vcoir2_1001"} -{"id": "VCO-V-IR2-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-IR2-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the IR2 instrument over the interval 2010-05-21 to 2016-12-09.", "volume_set_name": "VENUS CLIMATE ORBITER IR2 DATA", "volume_id": "VCOIR2_2001", "volume_name": "VENUS CLIMATE ORBITER IR2 GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcoir2_2001", "node": "atm", "targets": [], "title": "ATM Volume vcoir2_2001"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0001", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0001", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0001"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0002", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0002", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0002"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0003", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0003", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0003"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0004", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0004", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0004"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0005", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0005", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0005"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0006", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0006", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0006"} -{"id": "VCO-V-LIR-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-2-EDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_0007", "volume_name": "VENUS CLIMATE ORBITER LIR RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_0007", "node": "atm", "targets": [], "title": "ATM Volume vcolir_0007"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1001", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1001", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1001"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1002", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1002", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1002"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1003", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1003", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1003"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1004", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1004", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1004"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1005", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1005", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1005"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1006", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1006", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1006"} -{"id": "VCO-V-LIR-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-CDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_1007", "volume_name": "VENUS CLIMATE ORBITER LIR CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_1007", "node": "atm", "targets": [], "title": "ATM Volume vcolir_1007"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2001", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2001", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2001"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2002", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2002", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2002"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2018-12-07 to 2019-12-04.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2003", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2003", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2003"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2019-12-04 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2004", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2004", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2004"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2005", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2005", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2005"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2006", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2006", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2006"} -{"id": "VCO-V-LIR-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-LIR-3-SEDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the LIR instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER LIR DATA", "volume_id": "VCOLIR_2007", "volume_name": "VENUS CLIMATE ORBITER LIR GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcolir_2007", "node": "atm", "targets": [], "title": "ATM Volume vcolir_2007"} -{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2017-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1001", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1001", "node": "atm", "targets": [], "title": "ATM Volume vcors_1001"} -{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2020-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1002", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1002", "node": "atm", "targets": [], "title": "ATM Volume vcors_1002"} -{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2021-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2019-02-09 to 2020-08-24.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1003", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1003", "node": "atm", "targets": [], "title": "ATM Volume vcors_1003"} -{"id": "VCO-V-RS-3-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-3-OCC-V1.0", "publication_date": "2023-06-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_1004", "volume_name": "VENUS CLIMATE ORBITER RS DOPPLER PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_1004", "node": "atm", "targets": [], "title": "ATM Volume vcors_1004"} -{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2017-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2016-03-03 to 2017-08-11.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2001", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2001", "node": "atm", "targets": [], "title": "ATM Volume vcors_2001"} -{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2020-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2018-02-03 to 2019-07-26.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2002", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2002", "node": "atm", "targets": [], "title": "ATM Volume vcors_2002"} -{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2021-12-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2020-02-09 to 2020-08-24.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2003", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2003", "node": "atm", "targets": [], "title": "ATM Volume vcors_2003"} -{"id": "VCO-V-RS-5-OCC-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-RS-5-OCC-V1.0", "publication_date": "2023-06-01", "description": "This volume contains data obtained by radio science experiments (RS) using Ultra-Stable Oscillator (USO) onboard the Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) over the interval 2021-01-04 to 2022-12-13.", "volume_set_name": "VENUS CLIMATE ORBITER RS DATA", "volume_id": "VCORS_2004", "volume_name": "VENUS CLIMATE ORBITER RS TEMP-PRESSURE PROFILES DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcors_2004", "node": "atm", "targets": [], "title": "ATM Volume vcors_2004"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0001", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0001", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0001"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0002", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0002", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0002"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0003", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0003", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0003"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0004", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0004", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0004"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0005", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0005", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0005"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0006", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0006", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0006"} -{"id": "VCO-V-UVI-2-EDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-2-EDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_0007", "volume_name": "VENUS CLIMATE ORBITER UVI RAW DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_0007", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_0007"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1001", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1001", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1001"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1002", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1002", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1002"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1003", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1003", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1003"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1004", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1004", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1004"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1005", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1005", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1005"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1006", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1006", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1006"} -{"id": "VCO-V-UVI-3-CDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-CDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_1007", "volume_name": "VENUS CLIMATE ORBITER UVI CALIBRATED DATA ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_1007", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_1007"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2010-05-21 to 2018-06-03.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2001", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2001", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2001"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2019-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-06-03 to 2018-12-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2002", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2002", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2002"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2020-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2018-12-07 to 2019-08-06.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2003", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2003", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2003"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2021-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2019-09-17 to 2020-06-08.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2004", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2004", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2004"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2021-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-06-09 to 2020-12-01.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2005", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2005", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2005"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2022-06-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2020-12-01 to 2021-06-07.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2006", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2006", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2006"} -{"id": "VCO-V-UVI-3-SEDR-V1.0", "pds_version_id": "PDS3", "data_set_id": "VCO-V-UVI-3-SEDR-V1.0", "publication_date": "2022-12-01", "description": "This volume contains geometry information files associated with Venus Climate Orbiter (VCO, also known as PLANET-C and AKATSUKI) data collected by the UVI instrument over the interval 2021-06-07 to 2021-12-02.", "volume_set_name": "VENUS CLIMATE ORBITER UVI DATA", "volume_id": "VCOUVI_2007", "volume_name": "VENUS CLIMATE ORBITER UVI GEOMETRY INFORMATION ARCHIVE", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vcouvi_2007", "node": "atm", "targets": [], "title": "ATM Volume vcouvi_2007"} -{"id": "VEGA1/VEGA2-V-2/3-VENUS-V1.0", "pds_version_id": "PDS3", "data_set_id": "VEGA1/VEGA2-V-2/3-VENUS-V1.0", "publication_date": "2020-02-01", "description": "This volume contains Vega observations from the balloon and lander at Venus.", "volume_set_name": "VEGA VENUS DATA", "volume_id": "VEGA_5001", "volume_name": "VEGA VENUS OBSERVATIONS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vega_5001", "node": "atm", "targets": ["Venus"], "title": "ATM Volume vega_5001"} -{"id": "MEX-M-PFS-2-EDR-NOMINAL-V1.0", "pds_version_id": "PDS3", "data_set_id": "MEX-M-PFS-2-EDR-NOMINAL-V1.0", "publication_date": "2008-07-10", "description": "Data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF- IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA)", "volume_set_name": "MARS EXPRESS PFS DATA", "volume_id": "MEXPFS_1001", "volume_name": "VOLUME 1: MARS EXPRESS PFS DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1001", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume mexpfs_1001"} -{"id": "MEX-M-PFS-2-EDR-EXT1-V1.0", "pds_version_id": "PDS3", "data_set_id": "MEX-M-PFS-2-EDR-EXT1-V1.0", "publication_date": "2008-07-23", "description": "Data from the Planetary Fourier Spectrometer (PFS) instrument, onboard the Mars Express spacecraft.The dataset contains uncalibrated data acquired from both the PFS channels, i.e.the Long Wavelenght Channel (LWC) and Short Wavelenght Channel (LWC), during the nominal phase of the Mars Express mission. The PFS Principal Investigator is Dr. Vittorio Formisano, INAF- IFSI, Italy. The primary source for PFS data is the ESA Planetary Science Archive (PSA)", "volume_set_name": "MARS EXPRESS PFS DATA", "volume_id": "MEXPFS_1001", "volume_name": "VOLUME 1: MARS EXPRESS PFS DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=INDEX&volume=mexpfs_1002", "node": "atm", "targets": ["Mercury"], "title": "ATM Volume mexpfs_1002"} -{"id": "MGS-M-MOC-4-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOC-4-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} -{"id": "MGS-M-MOLA-1-AEDR-L0-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-1-AEDR-L0-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} -{"id": "MGS-M-MOLA-3-PEDR-L1A-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-3-PEDR-L1A-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} -{"id": "MGS-M-MOLA-5-PEDR-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MOLA-5-PEDR-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} -{"id": "MGS-M-TES-3-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-TES-3-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} -{"id": "MGS-M-TES-5-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-TES-5-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} -{"id": "MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0", "pds_version_id": "PDS3", "data_set_id": "MR9/VO1/VO2-M-RSS-5-SHGADR-L2-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} -{"id": "MGS-M-MAG/ER-5-SAMPLER-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-MAG/ER-5-SAMPLER-V1.0", "publication_date": "1998-06-26", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "volume_set_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "volume_id": "MGS_0001", "volume_name": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgs_0001", "node": "atm", "targets": [], "title": "ATM Volume mgs_0001"} -{"id": "MGS-M-ACCEL-2-EDR-V1.1", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-2-EDR-V1.1", "publication_date": "2002-05-10", "description": "This volume contains raw data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0001", "volume_name": "MGS AEROBRAKING ACCELEROMETER RAW DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0001", "node": "atm", "targets": [], "title": "ATM Volume mgsa_0001"} -{"id": "MGS-M-ACCEL-5-PROFILE-V1.2", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-5-PROFILE-V1.2", "publication_date": "2002-05-10", "description": "This volume contains reduced data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0002", "volume_name": "MGS AEROBRAKING ACCELEROMETER REDUCED DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002", "node": "atm", "targets": [], "title": "ATM Volume mgsa_0002"} -{"id": "MGS-M-ACCEL-5-ALTITUDE-V1.1", "pds_version_id": "PDS3", "data_set_id": "MGS-M-ACCEL-5-ALTITUDE-V1.1", "publication_date": "2002-05-10", "description": "This volume contains reduced data from Mars Global Surveyor Accelerometer investigations.", "volume_set_name": "MGS ACCELEROMETER DATA PRODUCTS", "volume_id": "MGSA_0002", "volume_name": "MGS AEROBRAKING ACCELEROMETER REDUCED DATA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mgsa_0002", "node": "atm", "targets": [], "title": "ATM Volume mgsa_0002"} -{"id": "MODEL-M-AMES-GCM-5-LAT-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} -{"id": "MODEL-M-AMES-GCM-5-LAT-LON-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-LON-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} -{"id": "MODEL-M-AMES-GCM-5-LAT-PRES-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-PRES-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} -{"id": "MODEL-M-AMES-GCM-5-LAT-TIME-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-LAT-TIME-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} -{"id": "MODEL-M-AMES-GCM-5-TIME-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-TIME-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} -{"id": "MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0", "pds_version_id": "PDS3", "data_set_id": "MODEL-M-AMES-GCM-5-TOPOGRAPHY-V1.0", "publication_date": "1996-12-01", "description": "This volume contains archival data produced from the Ames General Circulation Model. This data collection is composed of 20 to 30 day averages of the data resulting from model runs simulating martian dust opacity conditions for four Ls periods starting in Earth year 1977 (corresponding to the first Martian year of the Viking missions). Areocentric longitudes included are Ls 10-24, 94-103, 202-220, and 267-286. The volume also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "volume_set_name": "MODEL: AMES MARS GENERAL CIRCULATION MODEL", "volume_id": "MOGC_0001", "volume_name": "AMES MARS GENERAL CIRCULATION MODEL DATA RECORD", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?dir=catalog&volume=mogc_0001", "node": "atm", "targets": [], "title": "ATM Volume mogc_0001"} -{"id": "MGS-M-RSS-1-CRU-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-CRU-V1.0", "publication_date": "1999-12-29", "description": "This volume contains raw data, partially processed data, ancillary files, and final documentation from the Mars Global Surveyor Radio Science investigation Cruise Phase.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM CRUISE", "volume_id": "MORS_0156", "volume_name": "VOLUME 0156: 1997-08-30 to 1997-09-01", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0156", "node": "atm", "targets": [], "title": "ATM Volume mors_0156"} -{"id": "MGS-M-RSS-1-MOI-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-MOI-V1.0", "publication_date": "1997-10-02", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM MOI", "volume_id": "MORS_0210", "volume_name": "VOLUME 0210: 1997-09-28 to 1997-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0210", "node": "atm", "targets": [], "title": "ATM Volume mors_0210"} -{"id": "MGS-M-RSS-1-MAP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-MAP-V1.0", "publication_date": "1999-04-16", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RADIO SCIENCE DATA FROM MAPPING", "volume_id": "MORS_0410", "volume_name": "VOLUME 0410: 1999-04-14 to 1999-04-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0410", "node": "atm", "targets": [], "title": "ATM Volume mors_0410"} -{"id": "MGS-M-RSS-1-EXT-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-1-EXT-V1.0", "publication_date": "2001-03-21", "description": "This volume contains raw data, partially processed data, and ancillary files from the Mars Global Surveyor Radio Science investigation.", "volume_set_name": "MGS: RAW RS DATA FROM EXTENDED MISSION", "volume_id": "MORS_0610", "volume_name": "VOLUME 0610: 2001-03-11 TO 2001-03-14", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_0610", "node": "atm", "targets": [], "title": "ATM Volume mors_0610"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "1999-09-08", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1001", "volume_name": "VOLUME 1001: 1998-01-24 to 1998-04-28", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1001", "node": "atm", "targets": [], "title": "ATM Volume mors_1001"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "1999-12-30", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1002", "volume_name": "VOLUME 1002: 1998-04-29 to 1998-09-30", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1002", "node": "atm", "targets": [], "title": "ATM Volume mors_1002"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2000-01-07", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1003", "volume_name": "VOLUME 1003: 1998-10-01 to 1999-03-31", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1003", "node": "atm", "targets": [], "title": "ATM Volume mors_1003"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2000-03-09", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1004", "volume_name": "VOLUME 1004: 1999-04-01 to 1999-11-08", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1004", "node": "atm", "targets": [], "title": "ATM Volume mors_1004"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2000-05-26", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1005", "volume_name": "VOLUME 1005: 1999-03-09 to 1999-03-27", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1005", "node": "atm", "targets": [], "title": "ATM Volume mors_1005"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2000-09-28", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1006", "volume_name": "VOLUME 1006: 1999-03-09 to 2000-03-27", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1006", "node": "atm", "targets": [], "title": "ATM Volume mors_1006"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-03-21", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1007", "volume_name": "VOLUME 1007: 1998-12-24 TO 1999-05-29 SPDP", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1007", "node": "atm", "targets": [], "title": "ATM Volume mors_1007"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-03-21", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1008", "volume_name": "VOLUME 1008: 1999-05-06 TO 2000-02-29", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1008", "node": "atm", "targets": [], "title": "ATM Volume mors_1008"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-03-22", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1009", "volume_name": "VOLUME 1009: MGS75E GRAVITY MODEL", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1009", "node": "atm", "targets": [], "title": "ATM Volume mors_1009"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-06-30", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1010", "volume_name": "VOLUME 1010: 1999 EDS, EARLY 2000 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1010", "node": "atm", "targets": [], "title": "ATM Volume mors_1010"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-06-28", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1011", "volume_name": "VOLUME 1011: NOV-DEC 2000 EDS AND TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1011", "node": "atm", "targets": [], "title": "ATM Volume mors_1011"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-10-02", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1012", "volume_name": "VOLUME 1012: 1999-12-19 TO 2000-01-31 SRX", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1012", "node": "atm", "targets": [], "title": "ATM Volume mors_1012"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-10-03", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1013", "volume_name": "VOLUME 1013: 2000 FEB-APR SRX, AUG-OCT TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1013", "node": "atm", "targets": [], "title": "ATM Volume mors_1013"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2001-10-04", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1014", "volume_name": "VOLUME 1014: 2001-01-01 TO 2001-03-31 SRX", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1014", "node": "atm", "targets": [], "title": "ATM Volume mors_1014"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-03-20", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1015", "volume_name": "VOLUME 1015: GRAVITY THRU SUMMER 2001", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1015", "node": "atm", "targets": [], "title": "ATM Volume mors_1015"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-04-15", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1016", "volume_name": "VOLUME 1016: 1999 SRA AND 2000-01 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1016", "node": "atm", "targets": [], "title": "ATM Volume mors_1016"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-04-20", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1017", "volume_name": "VOLUME 1017: 2000 TPS 1999-2000 SRA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1017", "node": "atm", "targets": [], "title": "ATM Volume mors_1017"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-07-09", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1018", "volume_name": "VOLUME 1018: 2001 02-06 TPS, 01-03 SRA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1018", "node": "atm", "targets": [], "title": "ATM Volume mors_1018"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2002-11-09", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1019", "volume_name": "VOLUME 1019: TPS EDS and 85H2 SHA", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1019", "node": "atm", "targets": [], "title": "ATM Volume mors_1019"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2003-02-06", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1020", "volume_name": "VOLUME 1020: TPS 2000 AND 2002", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1020", "node": "atm", "targets": [], "title": "ATM Volume mors_1020"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2003-11-26", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1021", "volume_name": "VOLUME 1021: MGM1041C AND TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1021", "node": "atm", "targets": [], "title": "ATM Volume mors_1021"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2003-11-26", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1022", "volume_name": "VOLUME 1022: MAY-JULY 2002 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1022", "node": "atm", "targets": [], "title": "ATM Volume mors_1022"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2003-11-27", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1023", "volume_name": "VOLUME 1023: 2000 EDS AND 2002 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1023", "node": "atm", "targets": [], "title": "ATM Volume mors_1023"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-02-25", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1024", "volume_name": "VOLUME 1024: MGS95I, 01 EDS, 02-03 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1024", "node": "atm", "targets": [], "title": "ATM Volume mors_1024"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-03-05", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1025", "volume_name": "VOLUME 1025: MARCH-JUNE 2003 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1025", "node": "atm", "targets": [], "title": "ATM Volume mors_1025"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-04-06", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1026", "volume_name": "VOLUME 1026: JUNE-SEPTEMBER 2003 TPS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1026", "node": "atm", "targets": [], "title": "ATM Volume mors_1026"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-12-08", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1027", "volume_name": "VOLUME 1027: 2002-03 EGR TPS, LATE 02 EDS", "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=mors_1027", "node": "atm", "targets": [], "title": "ATM Volume mors_1027"} -{"id": "MGS-M-RSS-5-SDP-V1.0", "pds_version_id": "PDS3", "data_set_id": "MGS-M-RSS-5-SDP-V1.0", "publication_date": "2004-12-08", "description": "This volume contains reduced data from Mars Global Surveyor Radio Science investigations.", "volume_set_name": "MGS RST SCIENCE DATA PRODUCTS", "volume_id": "MORS_1028", "volume_name": "VOLUME 1028: SEP-OCT 03 TPS, JAN- Date: Fri, 27 Feb 2026 13:15:41 -0600 Subject: [PATCH 13/16] Add unit tests and integrations tests for pds --- tests/tools/pds/__init__.py | 1 + tests/tools/pds/test_img.py | 794 ++++++++ tests/tools/pds/test_img_integration.py | 191 ++ tests/tools/pds/test_ode.py | 1645 +++++++++++++++++ tests/tools/pds/test_ode_integration.py | 335 ++++ tests/tools/pds/test_opus.py | 1388 ++++++++++++++ tests/tools/pds/test_opus_integration.py | 217 +++ tests/tools/pds/test_pds4.py | 845 +++++++++ tests/tools/pds/test_pds4_integration.py | 358 ++++ tests/tools/pds/test_pds_catalog.py | 918 +++++++++ .../tools/pds/test_pds_catalog_integration.py | 472 +++++ tests/tools/pds/test_sbn.py | 1343 ++++++++++++++ tests/tools/pds/test_sbn_integration.py | 185 ++ 13 files changed, 8692 insertions(+) create mode 100644 tests/tools/pds/__init__.py create mode 100644 tests/tools/pds/test_img.py create mode 100644 tests/tools/pds/test_img_integration.py create mode 100644 tests/tools/pds/test_ode.py create mode 100644 tests/tools/pds/test_ode_integration.py create mode 100644 tests/tools/pds/test_opus.py create mode 100644 tests/tools/pds/test_opus_integration.py create mode 100644 tests/tools/pds/test_pds4.py create mode 100644 tests/tools/pds/test_pds4_integration.py create mode 100644 tests/tools/pds/test_pds_catalog.py create mode 100644 tests/tools/pds/test_pds_catalog_integration.py create mode 100644 tests/tools/pds/test_sbn.py create mode 100644 tests/tools/pds/test_sbn_integration.py diff --git a/tests/tools/pds/__init__.py b/tests/tools/pds/__init__.py new file mode 100644 index 0000000..e5fa163 --- /dev/null +++ b/tests/tools/pds/__init__.py @@ -0,0 +1 @@ +"""PDS tool tests.""" diff --git a/tests/tools/pds/test_img.py b/tests/tools/pds/test_img.py new file mode 100644 index 0000000..a583bfb --- /dev/null +++ b/tests/tools/pds/test_img.py @@ -0,0 +1,794 @@ +"""Unit tests for IMG Atlas tools.""" + +from unittest.mock import AsyncMock, patch + +import pytest + +from akd_ext.tools.pds.img.search import ( + IMGImageSize, + IMGProductSummary, + IMGSearchInputSchema, + IMGSearchOutputSchema, + IMGSearchTool, + IMGSearchToolConfig, +) +from akd_ext.tools.pds.img.count import ( + IMGCountInputSchema, + IMGCountOutputSchema, + IMGCountTool, + IMGCountToolConfig, +) +from akd_ext.tools.pds.img.get_product import ( + IMGGetProductInputSchema, + IMGGetProductOutputSchema, + IMGGetProductTool, + IMGGetProductToolConfig, + IMGProductDetailURLs, +) +from akd_ext.tools.pds.img.get_facets import ( + IMGFacetValueItem, + IMGGetFacetsInputSchema, + IMGGetFacetsOutputSchema, + IMGGetFacetsTool, + IMGGetFacetsToolConfig, +) +from akd_ext.tools.pds.utils.img_client import IMGAtlasClientError + +# Patch paths – must match where IMGAtlasClient is looked up at runtime +_SEARCH_CLIENT = "akd_ext.tools.pds.img.search.IMGAtlasClient" +_COUNT_CLIENT = "akd_ext.tools.pds.img.count.IMGAtlasClient" +_GET_PRODUCT_CLIENT = "akd_ext.tools.pds.img.get_product.IMGAtlasClient" +_GET_FACETS_CLIENT = "akd_ext.tools.pds.img.get_facets.IMGAtlasClient" + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + + +def _make_mock_product(**overrides): + """Create a mock IMGProduct with sensible defaults.""" + from unittest.mock import MagicMock + + product = MagicMock() + product.uuid = overrides.get("uuid", "abc-123-def") + product.target = overrides.get("target", "Mars") + product.mission_name = overrides.get("mission_name", "MARS SCIENCE LABORATORY") + product.spacecraft_name = overrides.get("spacecraft_name", "CURIOSITY") + product.instrument_name = overrides.get("instrument_name", "MASTCAM") + product.product_type = overrides.get("product_type", "RDR") + product.start_time = overrides.get("start_time", "2020-01-01T00:00:00Z") + product.stop_time = overrides.get("stop_time", "2020-01-01T00:01:00Z") + product.planet_day_number = overrides.get("planet_day_number", 2650) + product.lines = overrides.get("lines", 1200) + product.line_samples = overrides.get("line_samples", 1600) + product.data_url = overrides.get("data_url", "https://example.com/data.img") + product.label_url = overrides.get("label_url", "https://example.com/data.lbl") + product.browse_url = overrides.get("browse_url", "https://example.com/browse.jpg") + product.thumbnail_url = overrides.get("thumbnail_url", "https://example.com/thumb.jpg") + product.product_id = overrides.get("product_id", "MSL_MASTCAM_001") + product.pds_standard = overrides.get("pds_standard", "PDS3") + product.product_creation_time = overrides.get("product_creation_time", "2020-06-01T00:00:00Z") + product.local_true_solar_time = overrides.get("local_true_solar_time", "12:00:00") + product.solar_azimuth = overrides.get("solar_azimuth", 180.0) + product.solar_elevation = overrides.get("solar_elevation", 45.0) + product.exposure_duration = overrides.get("exposure_duration", 50.0) + product.compression_ratio = overrides.get("compression_ratio", 8.0) + product.frame_type = overrides.get("frame_type", "FULL") + product.center_latitude = overrides.get("center_latitude", -4.5) + product.center_longitude = overrides.get("center_longitude", 137.4) + return product + + +def _make_mock_search_response(**overrides): + """Create a mock search response.""" + from unittest.mock import MagicMock + + response = MagicMock() + response.status = overrides.get("status", "success") + response.num_found = overrides.get("num_found", 1) + response.start = overrides.get("start", 0) + response.query_time_ms = overrides.get("query_time_ms", 15) + response.products = overrides.get("products", [_make_mock_product()]) + response.error = overrides.get("error", None) + return response + + +def _make_mock_count_response(**overrides): + """Create a mock count response.""" + from unittest.mock import MagicMock + + response = MagicMock() + response.status = overrides.get("status", "success") + response.count = overrides.get("count", 500) + response.query_time_ms = overrides.get("query_time_ms", 5) + response.error = overrides.get("error", None) + return response + + +def _make_mock_facet_response(**overrides): + """Create a mock facet response.""" + from unittest.mock import MagicMock + + facet_value = MagicMock() + facet_value.value = "Mars" + facet_value.count = 10000 + + response = MagicMock() + response.status = overrides.get("status", "success") + response.facet_field = overrides.get("facet_field", "TARGET") + response.query_time_ms = overrides.get("query_time_ms", 3) + response.values = overrides.get("values", [facet_value]) + response.error = overrides.get("error", None) + return response + + +# --------------------------------------------------------------------------- +# IMGSearchTool +# --------------------------------------------------------------------------- + + +class TestIMGSearchTool: + """Tests for IMGSearchTool.""" + + async def test_basic_search(self): + """Basic search returns products.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema()) + + assert isinstance(result, IMGSearchOutputSchema) + assert result.status == "success" + assert result.num_found == 1 + assert len(result.products) == 1 + + async def test_search_with_target_filter(self): + """Target filter is forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema(target="Mars")) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["target"] == "Mars" + assert result.status == "success" + + async def test_search_with_mission_filter(self): + """Mission filter is forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema(mission="MARS SCIENCE LABORATORY")) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["mission"] == "MARS SCIENCE LABORATORY" + + async def test_search_with_instrument_filter(self): + """Instrument filter is forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema(instrument="MASTCAM")) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["instrument"] == "MASTCAM" + + async def test_search_with_time_range(self): + """Time range filters are forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + await tool.arun( + IMGSearchInputSchema( + start_time="2020-01-01T00:00:00Z", + stop_time="2020-12-31T23:59:59Z", + ) + ) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["start_time"] == "2020-01-01T00:00:00Z" + assert call_kwargs["stop_time"] == "2020-12-31T23:59:59Z" + + async def test_search_with_sol_range(self): + """Sol range filters are forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + await tool.arun(IMGSearchInputSchema(sol_min=100, sol_max=200)) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["sol_min"] == 100 + assert call_kwargs["sol_max"] == 200 + + async def test_search_with_product_type(self): + """Product type filter is forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + await tool.arun(IMGSearchInputSchema(product_type="EDR")) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["product_type"] == "EDR" + + async def test_search_with_sort(self): + """Sort parameters are built and forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + await tool.arun(IMGSearchInputSchema(sort_by="START_TIME", sort_order="asc")) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["sort"] == "START_TIME asc" + + async def test_search_pagination(self): + """Pagination parameters are forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(num_found=100) + ) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema(rows=10, start=20)) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["rows"] == 10 + assert call_kwargs["start"] == 20 + assert result.start == 0 # from the response start + + async def test_search_product_fields(self): + """Product summaries contain expected fields.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema()) + + product = result.products[0] + assert isinstance(product, IMGProductSummary) + assert product.uuid == "abc-123-def" + assert product.target == "Mars" + assert product.mission == "MARS SCIENCE LABORATORY" + assert product.instrument == "MASTCAM" + assert product.sol == 2650 + assert product.image_size is not None + assert isinstance(product.image_size, IMGImageSize) + assert product.image_size.lines == 1200 + assert product.image_size.samples == 1600 + + async def test_search_empty_results(self): + """Empty search results return num_found=0 and empty products list.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(num_found=0, products=[]) + ) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema()) + + assert result.status == "success" + assert result.num_found == 0 + assert result.products == [] + + async def test_search_error_response(self): + """Error response from API returns error status.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(status="error", error="Bad request", products=[]) + ) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema()) + + assert result.status == "error" + assert result.error == "Bad request" + + async def test_search_client_error_returns_error_status(self): + """IMGAtlasClientError returns error status (not raised).""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(side_effect=IMGAtlasClientError("connection failed")) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema()) + + assert result.status == "error" + assert "connection failed" in result.error + + async def test_search_unexpected_error_returns_error_status(self): + """Unexpected exceptions return error status (not raised).""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(side_effect=TypeError("bad type")) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema()) + + assert result.status == "error" + assert "Internal error" in result.error + + async def test_search_product_without_image_size(self): + """Product with None lines/samples has None image_size.""" + product = _make_mock_product(lines=None, line_samples=None) + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(products=[product]) + ) + + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema()) + + assert result.products[0].image_size is None + + async def test_search_all_filters_combined(self): + """All filters combined are forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = IMGSearchTool() + await tool.arun( + IMGSearchInputSchema( + target="Mars", + mission="MARS SCIENCE LABORATORY", + instrument="MASTCAM", + spacecraft="CURIOSITY", + start_time="2020-01-01T00:00:00Z", + stop_time="2020-12-31T23:59:59Z", + sol_min=100, + sol_max=200, + product_type="RDR", + filter_name="L0", + frame_type="FULL", + exposure_min=10.0, + exposure_max=100.0, + local_solar_time="12:00", + sort_by="START_TIME", + sort_order="asc", + rows=50, + start=10, + ) + ) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["target"] == "Mars" + assert call_kwargs["mission"] == "MARS SCIENCE LABORATORY" + assert call_kwargs["instrument"] == "MASTCAM" + assert call_kwargs["spacecraft"] == "CURIOSITY" + assert call_kwargs["product_type"] == "RDR" + assert call_kwargs["filter_name"] == "L0" + assert call_kwargs["frame_type"] == "FULL" + assert call_kwargs["sol_min"] == 100 + assert call_kwargs["sol_max"] == 200 + assert call_kwargs["rows"] == 50 + + async def test_search_with_config(self): + """Custom config is used for the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + config = IMGSearchToolConfig(base_url="https://custom.url/", timeout=60.0) + tool = IMGSearchTool(config=config) + await tool.arun(IMGSearchInputSchema()) + + MockClient.assert_called_once_with( + base_url="https://custom.url/", + timeout=60.0, + max_retries=3, + retry_delay=1.0, + ) + + +# --------------------------------------------------------------------------- +# IMGCountTool +# --------------------------------------------------------------------------- + + +class TestIMGCountTool: + """Tests for IMGCountTool.""" + + async def test_basic_count(self): + """Count returns total matching products.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response()) + + tool = IMGCountTool() + result = await tool.arun(IMGCountInputSchema()) + + assert isinstance(result, IMGCountOutputSchema) + assert result.status == "success" + assert result.count == 500 + + async def test_count_with_target_filter(self): + """Target filter is forwarded and reflected in filters.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response()) + + tool = IMGCountTool() + result = await tool.arun(IMGCountInputSchema(target="Mars")) + + assert result.filters["target"] == "Mars" + + async def test_count_with_mission_and_instrument(self): + """Multiple filters are forwarded.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response(count=1500)) + + tool = IMGCountTool() + result = await tool.arun( + IMGCountInputSchema(mission="MARS SCIENCE LABORATORY", instrument="MASTCAM") + ) + + call_kwargs = mock_client.count_products.call_args.kwargs + assert call_kwargs["mission"] == "MARS SCIENCE LABORATORY" + assert call_kwargs["instrument"] == "MASTCAM" + assert result.count == 1500 + + async def test_count_error_response(self): + """Error response from API returns error status.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock( + return_value=_make_mock_count_response(status="error", error="Invalid query", count=0) + ) + + tool = IMGCountTool() + result = await tool.arun(IMGCountInputSchema()) + + assert result.status == "error" + assert result.count == 0 + + async def test_count_client_error_returns_error_status(self): + """IMGAtlasClientError returns error status.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(side_effect=IMGAtlasClientError("timeout")) + + tool = IMGCountTool() + result = await tool.arun(IMGCountInputSchema()) + + assert result.status == "error" + assert "timeout" in result.error + + async def test_count_unexpected_error(self): + """Unexpected exceptions return error status.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(side_effect=ValueError("bad")) + + tool = IMGCountTool() + result = await tool.arun(IMGCountInputSchema()) + + assert result.status == "error" + assert "Internal error" in result.error + + +# --------------------------------------------------------------------------- +# IMGGetProductTool +# --------------------------------------------------------------------------- + + +class TestIMGGetProductTool: + """Tests for IMGGetProductTool.""" + + async def test_get_product_found(self): + """Existing product returns success with full metadata.""" + product = _make_mock_product() + with patch(_GET_PRODUCT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_product = AsyncMock( + return_value=_make_mock_search_response(products=[product]) + ) + + tool = IMGGetProductTool() + result = await tool.arun(IMGGetProductInputSchema(product_id="abc-123-def")) + + assert isinstance(result, IMGGetProductOutputSchema) + assert result.status == "success" + assert result.uuid == "abc-123-def" + assert result.target == "Mars" + assert result.mission == "MARS SCIENCE LABORATORY" + assert result.instrument == "MASTCAM" + assert result.sol == 2650 + assert result.urls is not None + assert isinstance(result.urls, IMGProductDetailURLs) + assert result.urls.data == "https://example.com/data.img" + + async def test_get_product_not_found(self): + """Non-existent product returns not_found status.""" + with patch(_GET_PRODUCT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_product = AsyncMock( + return_value=_make_mock_search_response(products=[]) + ) + + tool = IMGGetProductTool() + result = await tool.arun(IMGGetProductInputSchema(product_id="nonexistent")) + + assert result.status == "not_found" + assert "nonexistent" in result.message + + async def test_get_product_error_response(self): + """Error response from API returns error status.""" + with patch(_GET_PRODUCT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_product = AsyncMock( + return_value=_make_mock_search_response(status="error", error="server error", products=[]) + ) + + tool = IMGGetProductTool() + result = await tool.arun(IMGGetProductInputSchema(product_id="any")) + + assert result.status == "error" + assert result.error == "server error" + + async def test_get_product_client_error(self): + """IMGAtlasClientError returns error status.""" + with patch(_GET_PRODUCT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_product = AsyncMock(side_effect=IMGAtlasClientError("connection error")) + + tool = IMGGetProductTool() + result = await tool.arun(IMGGetProductInputSchema(product_id="any")) + + assert result.status == "error" + assert "connection error" in result.error + + async def test_get_product_full_metadata(self): + """Product response includes all metadata fields.""" + product = _make_mock_product() + with patch(_GET_PRODUCT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_product = AsyncMock( + return_value=_make_mock_search_response(products=[product]) + ) + + tool = IMGGetProductTool() + result = await tool.arun(IMGGetProductInputSchema(product_id="abc-123-def")) + + assert result.product_id == "MSL_MASTCAM_001" + assert result.pds_standard == "PDS3" + assert result.spacecraft == "CURIOSITY" + assert result.local_solar_time == "12:00:00" + assert result.solar_azimuth == 180.0 + assert result.solar_elevation == 45.0 + assert result.exposure_duration_ms == 50.0 + assert result.compression_ratio == 8.0 + assert result.frame_type == "FULL" + assert result.center_latitude == -4.5 + assert result.center_longitude == 137.4 + + +# --------------------------------------------------------------------------- +# IMGGetFacetsTool +# --------------------------------------------------------------------------- + + +class TestIMGGetFacetsTool: + """Tests for IMGGetFacetsTool.""" + + async def test_get_facets_target(self): + """Get TARGET facet values returns targets with counts.""" + with patch(_GET_FACETS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_facets = AsyncMock(return_value=_make_mock_facet_response()) + + tool = IMGGetFacetsTool() + result = await tool.arun(IMGGetFacetsInputSchema(facet_field="TARGET")) + + assert isinstance(result, IMGGetFacetsOutputSchema) + assert result.status == "success" + assert result.facet_field == "TARGET" + assert result.count == 1 + assert len(result.values) == 1 + assert isinstance(result.values[0], IMGFacetValueItem) + assert result.values[0].value == "Mars" + assert result.values[0].count == 10000 + + async def test_get_facets_with_target_filter(self): + """Target filter narrows facet results.""" + with patch(_GET_FACETS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_facets = AsyncMock(return_value=_make_mock_facet_response()) + + tool = IMGGetFacetsTool() + await tool.arun( + IMGGetFacetsInputSchema(facet_field="ATLAS_INSTRUMENT_NAME", target="Mars") + ) + + call_kwargs = mock_client.get_facets.call_args.kwargs + assert call_kwargs["target"] == "Mars" + assert call_kwargs["facet_field"] == "ATLAS_INSTRUMENT_NAME" + + async def test_get_facets_with_limit(self): + """Limit parameter is forwarded.""" + with patch(_GET_FACETS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_facets = AsyncMock(return_value=_make_mock_facet_response()) + + tool = IMGGetFacetsTool() + await tool.arun(IMGGetFacetsInputSchema(facet_field="TARGET", limit=5)) + + call_kwargs = mock_client.get_facets.call_args.kwargs + assert call_kwargs["limit"] == 5 + + async def test_get_facets_error_response(self): + """Error response from API returns error status.""" + with patch(_GET_FACETS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_facets = AsyncMock( + return_value=_make_mock_facet_response(status="error", error="bad field", values=[]) + ) + + tool = IMGGetFacetsTool() + result = await tool.arun(IMGGetFacetsInputSchema(facet_field="TARGET")) + + assert result.status == "error" + assert result.count == 0 + + async def test_get_facets_client_error(self): + """IMGAtlasClientError returns error status.""" + with patch(_GET_FACETS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_facets = AsyncMock(side_effect=IMGAtlasClientError("timeout")) + + tool = IMGGetFacetsTool() + result = await tool.arun(IMGGetFacetsInputSchema(facet_field="TARGET")) + + assert result.status == "error" + assert "timeout" in result.error + + +# --------------------------------------------------------------------------- +# Schema validation tests +# --------------------------------------------------------------------------- + + +class TestIMGSchemaValidation: + """Tests for IMG input schema validation.""" + + def test_search_input_defaults(self): + """SearchInputSchema has correct defaults.""" + schema = IMGSearchInputSchema() + assert schema.target is None + assert schema.mission is None + assert schema.instrument is None + assert schema.rows == 100 + assert schema.start == 0 + assert schema.sort_order == "desc" + + def test_search_input_invalid_target(self): + """Invalid target raises validation error.""" + with pytest.raises(Exception): + IMGSearchInputSchema(target="InvalidPlanet") + + def test_search_input_invalid_mission(self): + """Invalid mission raises validation error.""" + with pytest.raises(Exception): + IMGSearchInputSchema(mission="INVALID MISSION") + + def test_search_input_invalid_instrument(self): + """Invalid instrument raises validation error.""" + with pytest.raises(Exception): + IMGSearchInputSchema(instrument="INVALID_INSTRUMENT") + + def test_search_input_rows_bounds(self): + """Rows must be between 1 and 1000.""" + with pytest.raises(Exception): + IMGSearchInputSchema(rows=0) + with pytest.raises(Exception): + IMGSearchInputSchema(rows=1001) + + def test_count_input_defaults(self): + """CountInputSchema has correct defaults.""" + schema = IMGCountInputSchema() + assert schema.target is None + assert schema.mission is None + + def test_get_product_input_requires_id(self): + """GetProductInputSchema requires product_id.""" + with pytest.raises(Exception): + IMGGetProductInputSchema() + + def test_get_facets_input_requires_field(self): + """GetFacetsInputSchema requires facet_field.""" + with pytest.raises(Exception): + IMGGetFacetsInputSchema() + + def test_get_facets_input_defaults(self): + """GetFacetsInputSchema has correct defaults.""" + schema = IMGGetFacetsInputSchema(facet_field="TARGET") + assert schema.limit == 100 + assert schema.target is None + assert schema.mission is None diff --git a/tests/tools/pds/test_img_integration.py b/tests/tools/pds/test_img_integration.py new file mode 100644 index 0000000..b0819ce --- /dev/null +++ b/tests/tools/pds/test_img_integration.py @@ -0,0 +1,191 @@ +"""Integration tests for IMG Atlas tools using the actual IMG Atlas API.""" + +import pytest + +from akd_ext.tools.pds.img.search import ( + IMGSearchInputSchema, + IMGSearchOutputSchema, + IMGSearchTool, +) +from akd_ext.tools.pds.img.count import ( + IMGCountInputSchema, + IMGCountOutputSchema, + IMGCountTool, +) +from akd_ext.tools.pds.img.get_facets import ( + IMGGetFacetsInputSchema, + IMGGetFacetsOutputSchema, + IMGGetFacetsTool, +) + + +# --------------------------------------------------------------------------- +# IMGSearchTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestIMGSearchIntegration: + """Integration tests for IMGSearchTool against the real IMG Atlas API.""" + + async def test_search_mars_images(self): + """Search for Mars images returns results.""" + tool = IMGSearchTool() + result = await tool.arun(IMGSearchInputSchema(target="Mars", rows=5)) + + assert isinstance(result, IMGSearchOutputSchema) + assert result.status == "success" + assert result.num_found > 0 + assert len(result.products) <= 5 + for product in result.products: + assert product.target == "Mars" + + async def test_search_by_mission(self): + """Search by mission returns matching results.""" + tool = IMGSearchTool() + result = await tool.arun( + IMGSearchInputSchema(mission="MARS SCIENCE LABORATORY", rows=5) + ) + + assert result.status == "success" + assert result.num_found > 0 + for product in result.products: + assert product.mission == "MARS SCIENCE LABORATORY" + + async def test_search_by_instrument(self): + """Search by instrument returns matching results.""" + tool = IMGSearchTool() + result = await tool.arun( + IMGSearchInputSchema(target="Mars", instrument="MASTCAM", rows=5) + ) + + assert result.status == "success" + assert result.num_found > 0 + for product in result.products: + assert product.instrument == "MASTCAM" + + async def test_search_by_product_type(self): + """Search by product type filters correctly.""" + tool = IMGSearchTool() + result = await tool.arun( + IMGSearchInputSchema(target="Mars", product_type="EDR", rows=5) + ) + + assert result.status == "success" + assert result.num_found > 0 + for product in result.products: + assert product.product_type == "EDR" + + async def test_search_pagination(self): + """Pagination returns different pages of results.""" + tool = IMGSearchTool() + + page1 = await tool.arun(IMGSearchInputSchema(target="Mars", rows=5, start=0)) + page2 = await tool.arun(IMGSearchInputSchema(target="Mars", rows=5, start=5)) + + assert page1.status == "success" + assert page2.status == "success" + + page1_uuids = {p.uuid for p in page1.products} + page2_uuids = {p.uuid for p in page2.products} + assert page1_uuids.isdisjoint(page2_uuids), "Paginated pages should not overlap" + + async def test_search_saturn_cassini(self): + """Search for Cassini Saturn images.""" + tool = IMGSearchTool() + result = await tool.arun( + IMGSearchInputSchema(target="Saturn", mission="CASSINI-HUYGENS", rows=5) + ) + + assert result.status == "success" + assert result.num_found > 0 + + +# --------------------------------------------------------------------------- +# IMGCountTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestIMGCountIntegration: + """Integration tests for IMGCountTool against the real IMG Atlas API.""" + + async def test_count_mars_images(self): + """Count Mars images returns large count.""" + tool = IMGCountTool() + result = await tool.arun(IMGCountInputSchema(target="Mars")) + + assert isinstance(result, IMGCountOutputSchema) + assert result.status == "success" + assert result.count > 1000 + + async def test_count_by_mission_and_instrument(self): + """Count by mission + instrument returns results.""" + tool = IMGCountTool() + result = await tool.arun( + IMGCountInputSchema( + mission="MARS SCIENCE LABORATORY", + instrument="MASTCAM", + ) + ) + + assert result.status == "success" + assert result.count > 0 + + async def test_count_by_product_type(self): + """Count EDR products returns results.""" + tool = IMGCountTool() + result = await tool.arun( + IMGCountInputSchema(target="Mars", product_type="EDR") + ) + + assert result.status == "success" + assert result.count > 0 + + +# --------------------------------------------------------------------------- +# IMGGetFacetsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestIMGGetFacetsIntegration: + """Integration tests for IMGGetFacetsTool against the real IMG Atlas API.""" + + async def test_get_target_facets(self): + """Get TARGET facets returns known targets.""" + tool = IMGGetFacetsTool() + result = await tool.arun(IMGGetFacetsInputSchema(facet_field="TARGET")) + + assert isinstance(result, IMGGetFacetsOutputSchema) + assert result.status == "success" + assert result.count > 0 + target_names = [v.value for v in result.values] + assert "Mars" in target_names + + async def test_get_mission_facets(self): + """Get ATLAS_MISSION_NAME facets returns known missions.""" + tool = IMGGetFacetsTool() + result = await tool.arun( + IMGGetFacetsInputSchema(facet_field="ATLAS_MISSION_NAME") + ) + + assert result.status == "success" + assert result.count > 0 + mission_names = [v.value for v in result.values] + assert "MARS SCIENCE LABORATORY" in mission_names + + async def test_get_instrument_facets_filtered_by_target(self): + """Get instrument facets filtered by target.""" + tool = IMGGetFacetsTool() + result = await tool.arun( + IMGGetFacetsInputSchema( + facet_field="ATLAS_INSTRUMENT_NAME", + target="Mars", + ) + ) + + assert result.status == "success" + assert result.count > 0 + instrument_names = [v.value for v in result.values] + assert "MASTCAM" in instrument_names diff --git a/tests/tools/pds/test_ode.py b/tests/tools/pds/test_ode.py new file mode 100644 index 0000000..7d095e7 --- /dev/null +++ b/tests/tools/pds/test_ode.py @@ -0,0 +1,1645 @@ +"""Unit tests for ODE (Orbital Data Explorer) tools.""" + +from unittest.mock import AsyncMock, MagicMock, patch + +import pytest + +from akd_ext.tools.pds.ode.search_products import ( + ODESearchProductsInputSchema, + ODESearchProductsOutputSchema, + ODESearchProductsTool, + ODESearchProductsToolConfig, +) +from akd_ext.tools.pds.ode.count_products import ( + ODECountProductsInputSchema, + ODECountProductsOutputSchema, + ODECountProductsTool, + ODECountProductsToolConfig, +) +from akd_ext.tools.pds.ode.list_instruments import ( + ODEInstrumentSummary, + ODEListInstrumentsInputSchema, + ODEListInstrumentsOutputSchema, + ODEListInstrumentsTool, + ODEListInstrumentsToolConfig, +) +from akd_ext.tools.pds.ode.list_feature_classes import ( + ODEListFeatureClassesInputSchema, + ODEListFeatureClassesOutputSchema, + ODEListFeatureClassesTool, + ODEListFeatureClassesToolConfig, +) +from akd_ext.tools.pds.ode.list_feature_names import ( + ODEListFeatureNamesInputSchema, + ODEListFeatureNamesOutputSchema, + ODEListFeatureNamesTool, + ODEListFeatureNamesToolConfig, +) +from akd_ext.tools.pds.ode.get_feature_bounds import ( + ODEGetFeatureBoundsInputSchema, + ODEGetFeatureBoundsOutputSchema, + ODEGetFeatureBoundsTool, + ODEGetFeatureBoundsToolConfig, +) +from akd_ext.tools.pds.utils.ode_client import ODEClientError + +# Patch paths – must match where ODEClient is looked up at runtime +_SEARCH_CLIENT = "akd_ext.tools.pds.ode.search_products.ODEClient" +_COUNT_CLIENT = "akd_ext.tools.pds.ode.count_products.ODEClient" +_LIST_INSTRUMENTS_CLIENT = "akd_ext.tools.pds.ode.list_instruments.ODEClient" +_LIST_FEATURE_CLASSES_CLIENT = "akd_ext.tools.pds.ode.list_feature_classes.ODEClient" +_LIST_FEATURE_NAMES_CLIENT = "akd_ext.tools.pds.ode.list_feature_names.ODEClient" +_GET_FEATURE_BOUNDS_CLIENT = "akd_ext.tools.pds.ode.get_feature_bounds.ODEClient" + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + + +def _make_mock_product_file(**overrides): + """Create a mock ODEProductFile with sensible defaults.""" + f = MagicMock() + f.file_name = overrides.get("file_name", "product.img") + f.url = overrides.get("url", "https://ode.example.com/product.img") + f.file_type = overrides.get("file_type", "Product") + f.kbytes = overrides.get("kbytes", "1024") + return f + + +def _make_mock_product(**overrides): + """Create a mock ODEProduct with sensible defaults.""" + product = MagicMock() + product.pdsid = overrides.get("pdsid", "ESP_012600_1655_RED") + product.ode_id = overrides.get("ode_id", "12345") + product.data_set_id = overrides.get("data_set_id", "MRO-M-HIRISE-3-RDR-V1.1") + product.ihid = overrides.get("ihid", "MRO") + product.iid = overrides.get("iid", "HIRISE") + product.pt = overrides.get("pt", "RDRV11") + product.center_latitude = overrides.get("center_latitude", -14.5) + product.center_longitude = overrides.get("center_longitude", 175.5) + product.observation_time = overrides.get("observation_time", "2009-04-06T12:00:00") + product.minimum_latitude = overrides.get("minimum_latitude", -14.8) + product.maximum_latitude = overrides.get("maximum_latitude", -14.2) + product.westernmost_longitude = overrides.get("westernmost_longitude", 175.2) + product.easternmost_longitude = overrides.get("easternmost_longitude", 175.8) + product.emission_angle = overrides.get("emission_angle", 2.5) + product.incidence_angle = overrides.get("incidence_angle", 55.0) + product.phase_angle = overrides.get("phase_angle", 57.5) + product.map_scale = overrides.get("map_scale", 0.25) + product.label_url = overrides.get("label_url", "https://ode.example.com/label.lbl") + product.product_files = overrides.get("product_files", [_make_mock_product_file()]) + return product + + +def _make_mock_search_response(**overrides): + """Create a mock ODEProductSearchResponse.""" + response = MagicMock() + response.status = overrides.get("status", "OK") + response.count = overrides.get("count", 1) + response.products = overrides.get("products", [_make_mock_product()]) + response.error = overrides.get("error", None) + return response + + +def _make_mock_count_response(**overrides): + """Create a mock ODEProductCountResponse.""" + response = MagicMock() + response.status = overrides.get("status", "OK") + response.count = overrides.get("count", 42) + response.error = overrides.get("error", None) + return response + + +def _make_mock_instrument_info(**overrides): + """Create a mock ODEInstrumentInfo.""" + inst = MagicMock() + inst.ihid = overrides.get("ihid", "MRO") + inst.instrument_host_name = overrides.get("instrument_host_name", "Mars Reconnaissance Orbiter") + inst.iid = overrides.get("iid", "HIRISE") + inst.instrument_name = overrides.get("instrument_name", "High Resolution Imaging Science Experiment") + inst.pt = overrides.get("pt", "RDRV11") + inst.pt_name = overrides.get("pt_name", "RDR V1.1") + inst.number_products = overrides.get("number_products", 50000) + return inst + + +def _make_mock_instruments_response(**overrides): + """Create a mock ODEIIPTResponse.""" + response = MagicMock() + response.status = overrides.get("status", "OK") + response.instruments = overrides.get("instruments", [_make_mock_instrument_info()]) + response.error = overrides.get("error", None) + return response + + +def _make_mock_feature_classes_response(**overrides): + """Create a mock ODEFeatureClassesResponse.""" + response = MagicMock() + response.status = overrides.get("status", "OK") + response.feature_classes = overrides.get("feature_classes", ["crater", "chasma", "mons", "vallis"]) + response.error = overrides.get("error", None) + return response + + +def _make_mock_feature_names_response(**overrides): + """Create a mock ODEFeatureNamesResponse.""" + response = MagicMock() + response.status = overrides.get("status", "OK") + response.feature_names = overrides.get("feature_names", ["Gale", "Jezero", "Holden"]) + response.error = overrides.get("error", None) + return response + + +def _make_mock_feature(**overrides): + """Create a mock ODEFeature.""" + feature = MagicMock() + feature.feature_class = overrides.get("feature_class", "crater") + feature.feature_name = overrides.get("feature_name", "Gale") + feature.min_lat = overrides.get("min_lat", -6.0) + feature.max_lat = overrides.get("max_lat", -3.5) + feature.west_lon = overrides.get("west_lon", 136.5) + feature.east_lon = overrides.get("east_lon", 138.5) + return feature + + +def _make_mock_feature_data_response(**overrides): + """Create a mock ODEFeatureDataResponse.""" + response = MagicMock() + response.status = overrides.get("status", "OK") + response.features = overrides.get("features", [_make_mock_feature()]) + response.error = overrides.get("error", None) + return response + + +def _patch_ode_client(patch_target, mock_client): + """Set up the patch for an ODE client async context manager. + + Returns: + The patcher context manager result (MockClient). + """ + patcher = patch(patch_target) + MockClient = patcher.start() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + return MockClient, patcher + + +# --------------------------------------------------------------------------- +# ODESearchProductsTool +# --------------------------------------------------------------------------- + + +class TestODESearchProductsTool: + """Tests for ODESearchProductsTool.""" + + async def test_basic_search(self): + """Basic search with required target returns products.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + assert isinstance(result, ODESearchProductsOutputSchema) + assert result.status == "success" + assert result.target == "mars" + assert result.count == 1 + assert result.total_available == 1 + assert len(result.products) == 1 + + async def test_search_product_fields(self): + """Product summaries contain expected fields.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + product = result.products[0] + assert product.pdsid == "ESP_012600_1655_RED" + assert product.ode_id == "12345" + assert product.data_set_id == "MRO-M-HIRISE-3-RDR-V1.1" + assert product.instrument_host == "MRO" + assert product.instrument == "HIRISE" + assert product.product_type == "RDRV11" + assert product.center_latitude == -14.5 + assert product.center_longitude == 175.5 + assert product.observation_time == "2009-04-06T12:00:00" + assert product.min_latitude == -14.8 + assert product.max_latitude == -14.2 + assert product.west_longitude == 175.2 + assert product.east_longitude == 175.8 + assert product.emission_angle == 2.5 + assert product.incidence_angle == 55.0 + assert product.phase_angle == 57.5 + assert product.map_scale == 0.25 + assert product.label_url == "https://ode.example.com/label.lbl" + + async def test_search_product_files(self): + """Product files are included in summary.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + product = result.products[0] + assert len(product.files) == 1 + assert product.files[0].name == "product.img" + assert product.files[0].url == "https://ode.example.com/product.img" + assert product.files[0].type == "Product" + assert product.files[0].size_kb == "1024" + + async def test_search_files_truncated(self): + """Products with more than MAX_FILES_PER_PRODUCT files are truncated.""" + files = [_make_mock_product_file(file_name=f"file_{i}.img") for i in range(5)] + product = _make_mock_product(product_files=files) + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(products=[product]) + ) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + p = result.products[0] + assert len(p.files) == 3 # MAX_FILES_PER_PRODUCT + assert p.files_truncated is True + assert p.total_files == 5 + + async def test_search_with_pdsid(self): + """Search by PDS ID forwards pdsid to client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", pdsid="ESP_012600_1655_RED") + ) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["pdsid"] == "ESP_012600_1655_RED" + assert result.status == "success" + + async def test_search_with_latlon_bounds(self): + """Lat/lon bounds are forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + await tool.arun( + ODESearchProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + minlat=-15.0, + maxlat=-14.0, + westlon=175.0, + eastlon=176.0, + ) + ) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["minlat"] == -15.0 + assert call_kwargs["maxlat"] == -14.0 + assert call_kwargs["westlon"] == 175.0 + assert call_kwargs["eastlon"] == 176.0 + + async def test_search_with_time_bounds(self): + """Observation time bounds are forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + await tool.arun( + ODESearchProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + minobtime="2018-05-01", + maxobtime="2018-08-31", + ) + ) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["minobtime"] == "2018-05-01" + assert call_kwargs["maxobtime"] == "2018-08-31" + + async def test_search_all_filters_combined(self): + """All filters combined are forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + minlat=-15.0, + maxlat=-14.0, + westlon=175.0, + eastlon=176.0, + minobtime="2018-05-01", + maxobtime="2018-08-31", + limit=5, + offset=10, + ) + ) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["target"] == "mars" + assert call_kwargs["ihid"] == "MRO" + assert call_kwargs["iid"] == "HIRISE" + assert call_kwargs["pt"] == "RDRV11" + assert call_kwargs["minlat"] == -15.0 + assert call_kwargs["maxlat"] == -14.0 + assert call_kwargs["westlon"] == 175.0 + assert call_kwargs["eastlon"] == 176.0 + assert call_kwargs["minobtime"] == "2018-05-01" + assert call_kwargs["maxobtime"] == "2018-08-31" + assert call_kwargs["limit"] == 5 + assert call_kwargs["offset"] == 10 + assert result.status == "success" + + async def test_search_pagination_has_more(self): + """has_more is True when more products are available.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + # 1 product returned but 50 total available + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(count=50, products=[_make_mock_product()]) + ) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", limit=1, offset=0) + ) + + assert result.count == 1 + assert result.total_available == 50 + assert result.offset == 0 + assert result.has_more is True + + async def test_search_pagination_no_more(self): + """has_more is False when all results are returned.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(count=1, products=[_make_mock_product()]) + ) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", limit=10, offset=0) + ) + + assert result.has_more is False + + async def test_search_pagination_with_offset(self): + """Offset is correctly used in has_more computation.""" + products = [_make_mock_product(), _make_mock_product(pdsid="PSP_001234_1234_RED")] + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(count=5, products=products) + ) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", limit=2, offset=2) + ) + + assert result.count == 2 + assert result.total_available == 5 + assert result.offset == 2 + assert result.has_more is True # offset(2) + count(2) = 4 < 5 + + async def test_search_limit_capped_at_max(self): + """Limit is capped at MAX_SEARCH_LIMIT (10).""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + # Schema allows max 10, so test with exactly 10 + await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", limit=10) + ) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["limit"] == 10 + + async def test_search_empty_results(self): + """Empty search results return count=0 and empty products list.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(count=0, products=[]) + ) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + assert result.status == "success" + assert result.count == 0 + assert result.total_available == 0 + assert result.products == [] + assert result.has_more is False + + async def test_search_api_error_returns_error_schema(self): + """API error response (status=ERROR) returns error output schema.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock( + return_value=_make_mock_search_response(status="ERROR", error="Invalid query parameters", products=[]) + ) + + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + assert result.status == "error" + assert result.error == "Invalid query parameters" + assert result.count == 0 + assert result.total_available == 0 + assert result.has_more is False + + async def test_search_client_error_raises(self): + """ODEClientError is re-raised.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(side_effect=ODEClientError("connection failed")) + + tool = ODESearchProductsTool() + with pytest.raises(ODEClientError, match="connection failed"): + await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + async def test_search_value_error_raises(self): + """ValueError is re-raised.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(side_effect=ValueError("bad param")) + + tool = ODESearchProductsTool() + with pytest.raises(ValueError, match="bad param"): + await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + async def test_search_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(side_effect=TypeError("bad type")) + + tool = ODESearchProductsTool() + with pytest.raises(RuntimeError, match="Internal error during product search"): + await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + async def test_search_with_config(self): + """Custom config values are passed to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + config = ODESearchProductsToolConfig( + base_url="https://custom.ode.example.com/", timeout=60.0, max_retries=5 + ) + tool = ODESearchProductsTool(config=config) + await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + MockClient.assert_called_once_with( + base_url="https://custom.ode.example.com/", timeout=60.0, max_retries=5 + ) + + async def test_search_results_fpc_forwarded(self): + """The results='fpc' parameter is forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_products = AsyncMock(return_value=_make_mock_search_response()) + + tool = ODESearchProductsTool() + await tool.arun( + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + call_kwargs = mock_client.search_products.call_args.kwargs + assert call_kwargs["results"] == "fpc" + + +# --------------------------------------------------------------------------- +# ODECountProductsTool +# --------------------------------------------------------------------------- + + +class TestODECountProductsTool: + """Tests for ODECountProductsTool.""" + + async def test_basic_count(self): + """Basic count returns product count.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response()) + + tool = ODECountProductsTool() + result = await tool.arun( + ODECountProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + assert isinstance(result, ODECountProductsOutputSchema) + assert result.status == "success" + assert result.count == 42 + assert result.target == "mars" + assert result.instrument_host == "MRO" + assert result.instrument == "HIRISE" + assert result.product_type == "RDRV11" + + async def test_count_with_latlon_filters(self): + """Lat/lon filters are forwarded to the client.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response(count=10)) + + tool = ODECountProductsTool() + await tool.arun( + ODECountProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + minlat=-15.0, + maxlat=-14.0, + westlon=175.0, + eastlon=176.0, + ) + ) + + call_kwargs = mock_client.count_products.call_args.kwargs + assert call_kwargs["minlat"] == -15.0 + assert call_kwargs["maxlat"] == -14.0 + assert call_kwargs["westlon"] == 175.0 + assert call_kwargs["eastlon"] == 176.0 + + async def test_count_with_time_filters(self): + """Observation time filters are forwarded to the client.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response()) + + tool = ODECountProductsTool() + await tool.arun( + ODECountProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + minobtime="2020-01-01", + maxobtime="2020-12-31", + ) + ) + + call_kwargs = mock_client.count_products.call_args.kwargs + assert call_kwargs["minobtime"] == "2020-01-01" + assert call_kwargs["maxobtime"] == "2020-12-31" + + async def test_count_zero_results(self): + """Zero count returns success with count=0.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response(count=0)) + + tool = ODECountProductsTool() + result = await tool.arun( + ODECountProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + assert result.status == "success" + assert result.count == 0 + + async def test_count_api_error_returns_error_schema(self): + """API error response returns error output schema.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock( + return_value=_make_mock_count_response(status="ERROR", error="Bad instrument ID", count=0) + ) + + tool = ODECountProductsTool() + result = await tool.arun( + ODECountProductsInputSchema(target="mars", ihid="MRO", iid="INVALID", pt="RDRV11") + ) + + assert result.status == "error" + assert result.error == "Bad instrument ID" + assert result.count == 0 + + async def test_count_client_error_raises(self): + """ODEClientError is re-raised.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(side_effect=ODEClientError("timeout")) + + tool = ODECountProductsTool() + with pytest.raises(ODEClientError, match="timeout"): + await tool.arun( + ODECountProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + async def test_count_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(side_effect=KeyError("missing key")) + + tool = ODECountProductsTool() + with pytest.raises(RuntimeError, match="Internal error during product count"): + await tool.arun( + ODECountProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + async def test_count_with_config(self): + """Custom config values are passed to the client.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response()) + + config = ODECountProductsToolConfig( + base_url="https://custom.ode.example.com/", timeout=45.0, max_retries=2 + ) + tool = ODECountProductsTool(config=config) + await tool.arun( + ODECountProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + ) + + MockClient.assert_called_once_with( + base_url="https://custom.ode.example.com/", timeout=45.0, max_retries=2 + ) + + async def test_count_all_filters_combined(self): + """All filters are forwarded to the client.""" + with patch(_COUNT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.count_products = AsyncMock(return_value=_make_mock_count_response(count=5)) + + tool = ODECountProductsTool() + result = await tool.arun( + ODECountProductsInputSchema( + target="moon", + ihid="LRO", + iid="LROC", + pt="EDR", + minlat=-20.0, + maxlat=20.0, + westlon=0.0, + eastlon=180.0, + minobtime="2010-01-01", + maxobtime="2020-12-31", + ) + ) + + call_kwargs = mock_client.count_products.call_args.kwargs + assert call_kwargs["target"] == "moon" + assert call_kwargs["ihid"] == "LRO" + assert call_kwargs["iid"] == "LROC" + assert call_kwargs["pt"] == "EDR" + assert call_kwargs["minlat"] == -20.0 + assert call_kwargs["maxlat"] == 20.0 + assert call_kwargs["westlon"] == 0.0 + assert call_kwargs["eastlon"] == 180.0 + assert call_kwargs["minobtime"] == "2010-01-01" + assert call_kwargs["maxobtime"] == "2020-12-31" + assert result.count == 5 + + +# --------------------------------------------------------------------------- +# ODEListInstrumentsTool +# --------------------------------------------------------------------------- + + +class TestODEListInstrumentsTool: + """Tests for ODEListInstrumentsTool.""" + + async def test_basic_list_instruments(self): + """Basic list instruments returns instrument summaries.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock(return_value=_make_mock_instruments_response()) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars")) + + assert isinstance(result, ODEListInstrumentsOutputSchema) + assert result.status == "success" + assert result.target == "mars" + assert result.count == 1 + assert result.total_available == 1 + assert len(result.instruments) == 1 + + async def test_list_instruments_fields(self): + """Instrument summaries contain expected fields.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock(return_value=_make_mock_instruments_response()) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars")) + + inst = result.instruments[0] + assert isinstance(inst, ODEInstrumentSummary) + assert inst.ihid == "MRO" + assert inst.instrument_host_name == "Mars Reconnaissance Orbiter" + assert inst.iid == "HIRISE" + assert inst.instrument_name == "High Resolution Imaging Science Experiment" + assert inst.pt == "RDRV11" + assert inst.product_type_name == "RDR V1.1" + assert inst.number_products == 50000 + + async def test_list_instruments_with_ihid_filter(self): + """IHID filter is applied client-side.""" + instruments = [ + _make_mock_instrument_info(ihid="MRO", iid="HIRISE", pt="RDRV11"), + _make_mock_instrument_info(ihid="MRO", iid="CTX", pt="EDR"), + _make_mock_instrument_info(ihid="ODY", iid="THEMIS", pt="EDR"), + ] + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock( + return_value=_make_mock_instruments_response(instruments=instruments) + ) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars", ihid="MRO")) + + assert result.count == 2 + assert result.total_available == 2 + for inst in result.instruments: + assert inst.ihid == "MRO" + + async def test_list_instruments_with_iid_filter(self): + """IID filter is applied client-side.""" + instruments = [ + _make_mock_instrument_info(ihid="MRO", iid="HIRISE", pt="RDRV11"), + _make_mock_instrument_info(ihid="MRO", iid="HIRISE", pt="EDR"), + _make_mock_instrument_info(ihid="MRO", iid="CTX", pt="EDR"), + ] + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock( + return_value=_make_mock_instruments_response(instruments=instruments) + ) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars", iid="HIRISE")) + + assert result.count == 2 + for inst in result.instruments: + assert inst.iid == "HIRISE" + + async def test_list_instruments_with_ihid_and_iid_filter(self): + """Combined IHID and IID filter narrows results.""" + instruments = [ + _make_mock_instrument_info(ihid="MRO", iid="HIRISE", pt="RDRV11"), + _make_mock_instrument_info(ihid="MRO", iid="CTX", pt="EDR"), + _make_mock_instrument_info(ihid="ODY", iid="HIRISE", pt="EDR"), + ] + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock( + return_value=_make_mock_instruments_response(instruments=instruments) + ) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars", ihid="MRO", iid="HIRISE")) + + assert result.count == 1 + assert result.instruments[0].ihid == "MRO" + assert result.instruments[0].iid == "HIRISE" + + async def test_list_instruments_with_limit(self): + """Limit parameter truncates results and sets has_more.""" + instruments = [ + _make_mock_instrument_info(ihid="MRO", iid="HIRISE", pt="RDRV11"), + _make_mock_instrument_info(ihid="MRO", iid="CTX", pt="EDR"), + _make_mock_instrument_info(ihid="MRO", iid="CRISM", pt="TRDR"), + ] + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock( + return_value=_make_mock_instruments_response(instruments=instruments) + ) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars", limit=2)) + + assert result.count == 2 + assert result.total_available == 3 + assert result.has_more is True + + async def test_list_instruments_has_more_false(self): + """has_more is False when all instruments fit within limit.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock(return_value=_make_mock_instruments_response()) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars")) + + assert result.has_more is False + + async def test_list_instruments_empty(self): + """Empty instruments list returns count=0.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock( + return_value=_make_mock_instruments_response(instruments=[]) + ) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars")) + + assert result.status == "success" + assert result.count == 0 + assert result.total_available == 0 + assert result.instruments == [] + assert result.has_more is False + + async def test_list_instruments_api_error_returns_error_schema(self): + """API error response returns error output schema.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock( + return_value=_make_mock_instruments_response(status="ERROR", error="Invalid target", instruments=[]) + ) + + tool = ODEListInstrumentsTool() + result = await tool.arun(ODEListInstrumentsInputSchema(target="mars")) + + assert result.status == "error" + assert result.error == "Invalid target" + assert result.count == 0 + + async def test_list_instruments_client_error_raises(self): + """ODEClientError is re-raised.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock(side_effect=ODEClientError("network error")) + + tool = ODEListInstrumentsTool() + with pytest.raises(ODEClientError, match="network error"): + await tool.arun(ODEListInstrumentsInputSchema(target="mars")) + + async def test_list_instruments_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock(side_effect=IndexError("out of range")) + + tool = ODEListInstrumentsTool() + with pytest.raises(RuntimeError, match="Internal error during instruments query"): + await tool.arun(ODEListInstrumentsInputSchema(target="mars")) + + async def test_list_instruments_with_config(self): + """Custom config values are passed to the client.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock(return_value=_make_mock_instruments_response()) + + config = ODEListInstrumentsToolConfig( + base_url="https://custom.ode.example.com/", timeout=20.0, max_retries=1 + ) + tool = ODEListInstrumentsTool(config=config) + await tool.arun(ODEListInstrumentsInputSchema(target="mars")) + + MockClient.assert_called_once_with( + base_url="https://custom.ode.example.com/", timeout=20.0, max_retries=1 + ) + + async def test_list_instruments_target_forwarded(self): + """Target is forwarded to the client.""" + with patch(_LIST_INSTRUMENTS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_instruments = AsyncMock(return_value=_make_mock_instruments_response()) + + tool = ODEListInstrumentsTool() + await tool.arun(ODEListInstrumentsInputSchema(target="moon")) + + mock_client.list_instruments.assert_called_once_with("moon") + + +# --------------------------------------------------------------------------- +# ODEListFeatureClassesTool +# --------------------------------------------------------------------------- + + +class TestODEListFeatureClassesTool: + """Tests for ODEListFeatureClassesTool.""" + + async def test_basic_list_feature_classes(self): + """Basic list feature classes returns class names.""" + with patch(_LIST_FEATURE_CLASSES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_classes = AsyncMock(return_value=_make_mock_feature_classes_response()) + + tool = ODEListFeatureClassesTool() + result = await tool.arun(ODEListFeatureClassesInputSchema(target="mars")) + + assert isinstance(result, ODEListFeatureClassesOutputSchema) + assert result.status == "success" + assert result.target == "mars" + assert result.count == 4 + assert result.feature_classes == ["crater", "chasma", "mons", "vallis"] + + async def test_list_feature_classes_different_target(self): + """Feature classes for a different target are returned correctly.""" + moon_classes = ["crater", "mare", "mons", "lacus", "oceanus"] + with patch(_LIST_FEATURE_CLASSES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_classes = AsyncMock( + return_value=_make_mock_feature_classes_response(feature_classes=moon_classes) + ) + + tool = ODEListFeatureClassesTool() + result = await tool.arun(ODEListFeatureClassesInputSchema(target="moon")) + + assert result.target == "moon" + assert result.count == 5 + assert "mare" in result.feature_classes + mock_client.list_feature_classes.assert_called_once_with("moon") + + async def test_list_feature_classes_empty(self): + """Empty feature classes returns count=0.""" + with patch(_LIST_FEATURE_CLASSES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_classes = AsyncMock( + return_value=_make_mock_feature_classes_response(feature_classes=[]) + ) + + tool = ODEListFeatureClassesTool() + result = await tool.arun(ODEListFeatureClassesInputSchema(target="venus")) + + assert result.status == "success" + assert result.count == 0 + assert result.feature_classes == [] + + async def test_list_feature_classes_api_error_returns_error_schema(self): + """API error response returns error output schema.""" + with patch(_LIST_FEATURE_CLASSES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_classes = AsyncMock( + return_value=_make_mock_feature_classes_response( + status="ERROR", error="Service unavailable", feature_classes=[] + ) + ) + + tool = ODEListFeatureClassesTool() + result = await tool.arun(ODEListFeatureClassesInputSchema(target="mars")) + + assert result.status == "error" + assert result.error == "Service unavailable" + assert result.count == 0 + + async def test_list_feature_classes_client_error_raises(self): + """ODEClientError is re-raised.""" + with patch(_LIST_FEATURE_CLASSES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_classes = AsyncMock(side_effect=ODEClientError("rate limited")) + + tool = ODEListFeatureClassesTool() + with pytest.raises(ODEClientError, match="rate limited"): + await tool.arun(ODEListFeatureClassesInputSchema(target="mars")) + + async def test_list_feature_classes_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_LIST_FEATURE_CLASSES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_classes = AsyncMock(side_effect=AttributeError("no attribute")) + + tool = ODEListFeatureClassesTool() + with pytest.raises(RuntimeError, match="Internal error during feature classes query"): + await tool.arun(ODEListFeatureClassesInputSchema(target="mars")) + + async def test_list_feature_classes_with_config(self): + """Custom config values are passed to the client.""" + with patch(_LIST_FEATURE_CLASSES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_classes = AsyncMock(return_value=_make_mock_feature_classes_response()) + + config = ODEListFeatureClassesToolConfig( + base_url="https://custom.ode.example.com/", timeout=15.0, max_retries=1 + ) + tool = ODEListFeatureClassesTool(config=config) + await tool.arun(ODEListFeatureClassesInputSchema(target="mars")) + + MockClient.assert_called_once_with( + base_url="https://custom.ode.example.com/", timeout=15.0, max_retries=1 + ) + + +# --------------------------------------------------------------------------- +# ODEListFeatureNamesTool +# --------------------------------------------------------------------------- + + +class TestODEListFeatureNamesTool: + """Tests for ODEListFeatureNamesTool.""" + + async def test_basic_list_feature_names(self): + """Basic list feature names returns names for a feature class.""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock(return_value=_make_mock_feature_names_response()) + + tool = ODEListFeatureNamesTool() + result = await tool.arun( + ODEListFeatureNamesInputSchema(target="mars", feature_class="crater") + ) + + assert isinstance(result, ODEListFeatureNamesOutputSchema) + assert result.status == "success" + assert result.target == "mars" + assert result.feature_class == "crater" + assert result.count == 3 + assert result.feature_names == ["Gale", "Jezero", "Holden"] + + async def test_list_feature_names_with_limit(self): + """Limit parameter is forwarded to the client.""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock( + return_value=_make_mock_feature_names_response(feature_names=["Gale"]) + ) + + tool = ODEListFeatureNamesTool() + await tool.arun( + ODEListFeatureNamesInputSchema(target="mars", feature_class="crater", limit=1) + ) + + call_kwargs = mock_client.list_feature_names.call_args.kwargs + assert call_kwargs["limit"] == 1 + + async def test_list_feature_names_limit_capped(self): + """Limit is capped at MAX_FEATURE_NAMES_LIMIT (50).""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock(return_value=_make_mock_feature_names_response()) + + tool = ODEListFeatureNamesTool() + # Schema allows max 50, so test with exactly 50 + await tool.arun( + ODEListFeatureNamesInputSchema(target="mars", feature_class="crater", limit=50) + ) + + call_kwargs = mock_client.list_feature_names.call_args.kwargs + assert call_kwargs["limit"] == 50 + + async def test_list_feature_names_target_and_class_forwarded(self): + """Target and feature_class are forwarded to the client.""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock( + return_value=_make_mock_feature_names_response(feature_names=["Tycho", "Copernicus"]) + ) + + tool = ODEListFeatureNamesTool() + await tool.arun( + ODEListFeatureNamesInputSchema(target="moon", feature_class="crater") + ) + + call_kwargs = mock_client.list_feature_names.call_args.kwargs + assert call_kwargs["target"] == "moon" + assert call_kwargs["feature_class"] == "crater" + + async def test_list_feature_names_empty(self): + """Empty feature names returns count=0.""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock( + return_value=_make_mock_feature_names_response(feature_names=[]) + ) + + tool = ODEListFeatureNamesTool() + result = await tool.arun( + ODEListFeatureNamesInputSchema(target="mars", feature_class="labyrinthus") + ) + + assert result.status == "success" + assert result.count == 0 + assert result.feature_names == [] + + async def test_list_feature_names_api_error_returns_error_schema(self): + """API error response returns error output schema.""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock( + return_value=_make_mock_feature_names_response( + status="ERROR", error="Unknown feature class", feature_names=[] + ) + ) + + tool = ODEListFeatureNamesTool() + result = await tool.arun( + ODEListFeatureNamesInputSchema(target="mars", feature_class="nonexistent") + ) + + assert result.status == "error" + assert result.error == "Unknown feature class" + assert result.count == 0 + + async def test_list_feature_names_client_error_raises(self): + """ODEClientError is re-raised.""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock(side_effect=ODEClientError("server error")) + + tool = ODEListFeatureNamesTool() + with pytest.raises(ODEClientError, match="server error"): + await tool.arun( + ODEListFeatureNamesInputSchema(target="mars", feature_class="crater") + ) + + async def test_list_feature_names_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock(side_effect=IOError("disk failure")) + + tool = ODEListFeatureNamesTool() + with pytest.raises(RuntimeError, match="Internal error during feature names query"): + await tool.arun( + ODEListFeatureNamesInputSchema(target="mars", feature_class="crater") + ) + + async def test_list_feature_names_with_config(self): + """Custom config values are passed to the client.""" + with patch(_LIST_FEATURE_NAMES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_feature_names = AsyncMock(return_value=_make_mock_feature_names_response()) + + config = ODEListFeatureNamesToolConfig( + base_url="https://custom.ode.example.com/", timeout=10.0, max_retries=2 + ) + tool = ODEListFeatureNamesTool(config=config) + await tool.arun( + ODEListFeatureNamesInputSchema(target="mars", feature_class="crater") + ) + + MockClient.assert_called_once_with( + base_url="https://custom.ode.example.com/", timeout=10.0, max_retries=2 + ) + + +# --------------------------------------------------------------------------- +# ODEGetFeatureBoundsTool +# --------------------------------------------------------------------------- + + +class TestODEGetFeatureBoundsTool: + """Tests for ODEGetFeatureBoundsTool.""" + + async def test_basic_get_feature_bounds(self): + """Basic get feature bounds returns bounds dictionary.""" + with patch(_GET_FEATURE_BOUNDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_feature_bounds = AsyncMock(return_value=_make_mock_feature_data_response()) + + tool = ODEGetFeatureBoundsTool() + result = await tool.arun( + ODEGetFeatureBoundsInputSchema(target="mars", feature_class="crater", feature_name="Gale") + ) + + assert isinstance(result, ODEGetFeatureBoundsOutputSchema) + assert result.status == "success" + assert result.target == "mars" + assert result.feature_class == "crater" + assert result.feature_name == "Gale" + assert result.bounds is not None + assert result.bounds["min_lat"] == -6.0 + assert result.bounds["max_lat"] == -3.5 + assert result.bounds["west_lon"] == 136.5 + assert result.bounds["east_lon"] == 138.5 + + async def test_get_feature_bounds_params_forwarded(self): + """Target, feature_class, and feature_name are forwarded to the client.""" + with patch(_GET_FEATURE_BOUNDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_feature_bounds = AsyncMock(return_value=_make_mock_feature_data_response()) + + tool = ODEGetFeatureBoundsTool() + await tool.arun( + ODEGetFeatureBoundsInputSchema(target="moon", feature_class="crater", feature_name="Tycho") + ) + + call_kwargs = mock_client.get_feature_bounds.call_args.kwargs + assert call_kwargs["target"] == "moon" + assert call_kwargs["feature_class"] == "crater" + assert call_kwargs["feature_name"] == "Tycho" + + async def test_get_feature_bounds_not_found(self): + """Feature not found returns not_found status.""" + with patch(_GET_FEATURE_BOUNDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_feature_bounds = AsyncMock( + return_value=_make_mock_feature_data_response(features=[]) + ) + + tool = ODEGetFeatureBoundsTool() + result = await tool.arun( + ODEGetFeatureBoundsInputSchema(target="mars", feature_class="crater", feature_name="Nonexistent") + ) + + assert result.status == "not_found" + assert result.bounds is None + assert result.message is not None + assert "Nonexistent" in result.message + assert "crater" in result.message + assert "mars" in result.message + + async def test_get_feature_bounds_api_error_returns_error_schema(self): + """API error response returns error output schema.""" + with patch(_GET_FEATURE_BOUNDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_feature_bounds = AsyncMock( + return_value=_make_mock_feature_data_response(status="ERROR", error="Malformed request", features=[]) + ) + + tool = ODEGetFeatureBoundsTool() + result = await tool.arun( + ODEGetFeatureBoundsInputSchema(target="mars", feature_class="crater", feature_name="Gale") + ) + + assert result.status == "error" + assert result.error == "Malformed request" + + async def test_get_feature_bounds_client_error_raises(self): + """ODEClientError is re-raised.""" + with patch(_GET_FEATURE_BOUNDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_feature_bounds = AsyncMock(side_effect=ODEClientError("API down")) + + tool = ODEGetFeatureBoundsTool() + with pytest.raises(ODEClientError, match="API down"): + await tool.arun( + ODEGetFeatureBoundsInputSchema(target="mars", feature_class="crater", feature_name="Gale") + ) + + async def test_get_feature_bounds_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_GET_FEATURE_BOUNDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_feature_bounds = AsyncMock(side_effect=ValueError("parse error")) + + tool = ODEGetFeatureBoundsTool() + with pytest.raises(RuntimeError, match="Internal error during feature bounds query"): + await tool.arun( + ODEGetFeatureBoundsInputSchema(target="mars", feature_class="crater", feature_name="Gale") + ) + + async def test_get_feature_bounds_with_config(self): + """Custom config values are passed to the client.""" + with patch(_GET_FEATURE_BOUNDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_feature_bounds = AsyncMock(return_value=_make_mock_feature_data_response()) + + config = ODEGetFeatureBoundsToolConfig( + base_url="https://custom.ode.example.com/", timeout=25.0, max_retries=4 + ) + tool = ODEGetFeatureBoundsTool(config=config) + await tool.arun( + ODEGetFeatureBoundsInputSchema(target="mars", feature_class="crater", feature_name="Gale") + ) + + MockClient.assert_called_once_with( + base_url="https://custom.ode.example.com/", timeout=25.0, max_retries=4 + ) + + async def test_get_feature_bounds_uses_first_feature(self): + """When multiple features returned, uses the first one.""" + features = [ + _make_mock_feature(feature_name="Gale", min_lat=-6.0, max_lat=-3.5), + _make_mock_feature(feature_name="Gale (duplicate)", min_lat=-7.0, max_lat=-2.0), + ] + with patch(_GET_FEATURE_BOUNDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.get_feature_bounds = AsyncMock( + return_value=_make_mock_feature_data_response(features=features) + ) + + tool = ODEGetFeatureBoundsTool() + result = await tool.arun( + ODEGetFeatureBoundsInputSchema(target="mars", feature_class="crater", feature_name="Gale") + ) + + assert result.status == "success" + assert result.bounds["min_lat"] == -6.0 + assert result.bounds["max_lat"] == -3.5 + + +# --------------------------------------------------------------------------- +# Schema validation tests +# --------------------------------------------------------------------------- + + +class TestODESchemaValidation: + """Tests for ODE input schema validation.""" + + # -- ODESearchProductsInputSchema -- + + def test_search_input_requires_target(self): + """SearchInputSchema requires target.""" + with pytest.raises(Exception): + ODESearchProductsInputSchema() + + def test_search_input_defaults(self): + """SearchInputSchema has correct defaults for optional fields.""" + schema = ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + assert schema.target == "mars" + assert schema.ihid == "MRO" + assert schema.iid == "HIRISE" + assert schema.pt == "RDRV11" + assert schema.pdsid is None + assert schema.minlat is None + assert schema.maxlat is None + assert schema.westlon is None + assert schema.eastlon is None + assert schema.minobtime is None + assert schema.maxobtime is None + assert schema.limit == 10 + assert schema.offset == 0 + + def test_search_input_invalid_target(self): + """Invalid target raises validation error.""" + with pytest.raises(Exception): + ODESearchProductsInputSchema(target="pluto", ihid="MRO", iid="HIRISE", pt="RDRV11") + + def test_search_input_limit_bounds(self): + """Limit must be between 1 and 10.""" + with pytest.raises(Exception): + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", limit=0) + with pytest.raises(Exception): + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", limit=11) + + def test_search_input_offset_non_negative(self): + """Offset must be >= 0.""" + with pytest.raises(Exception): + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", offset=-1) + + def test_search_input_latitude_bounds(self): + """Latitude must be between -90 and 90.""" + with pytest.raises(Exception): + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", minlat=-91) + with pytest.raises(Exception): + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", maxlat=91) + + def test_search_input_longitude_bounds(self): + """Longitude must be between 0 and 360.""" + with pytest.raises(Exception): + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", westlon=-1) + with pytest.raises(Exception): + ODESearchProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11", eastlon=361) + + def test_search_input_valid_targets(self): + """All valid targets are accepted.""" + for t in ("mars", "moon", "mercury", "phobos", "deimos", "venus"): + schema = ODESearchProductsInputSchema(target=t, ihid="X", iid="Y", pt="Z") + assert schema.target == t + + # -- ODECountProductsInputSchema -- + + def test_count_input_requires_all_fields(self): + """CountInputSchema requires target, ihid, iid, and pt.""" + with pytest.raises(Exception): + ODECountProductsInputSchema(target="mars") + with pytest.raises(Exception): + ODECountProductsInputSchema(target="mars", ihid="MRO") + with pytest.raises(Exception): + ODECountProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE") + + def test_count_input_defaults(self): + """CountInputSchema has correct defaults.""" + schema = ODECountProductsInputSchema(target="mars", ihid="MRO", iid="HIRISE", pt="RDRV11") + assert schema.minlat is None + assert schema.maxlat is None + assert schema.westlon is None + assert schema.eastlon is None + assert schema.minobtime is None + assert schema.maxobtime is None + + # -- ODEListInstrumentsInputSchema -- + + def test_list_instruments_input_requires_target(self): + """ListInstrumentsInputSchema requires target.""" + with pytest.raises(Exception): + ODEListInstrumentsInputSchema() + + def test_list_instruments_input_defaults(self): + """ListInstrumentsInputSchema has correct defaults.""" + schema = ODEListInstrumentsInputSchema(target="mars") + assert schema.ihid is None + assert schema.iid is None + assert schema.limit == 25 + + def test_list_instruments_input_limit_bounds(self): + """Limit must be between 1 and 25.""" + with pytest.raises(Exception): + ODEListInstrumentsInputSchema(target="mars", limit=0) + with pytest.raises(Exception): + ODEListInstrumentsInputSchema(target="mars", limit=26) + + # -- ODEListFeatureClassesInputSchema -- + + def test_list_feature_classes_input_requires_target(self): + """ListFeatureClassesInputSchema requires target.""" + with pytest.raises(Exception): + ODEListFeatureClassesInputSchema() + + # -- ODEListFeatureNamesInputSchema -- + + def test_list_feature_names_input_requires_target_and_class(self): + """ListFeatureNamesInputSchema requires target and feature_class.""" + with pytest.raises(Exception): + ODEListFeatureNamesInputSchema() + with pytest.raises(Exception): + ODEListFeatureNamesInputSchema(target="mars") + + def test_list_feature_names_input_defaults(self): + """ListFeatureNamesInputSchema has correct defaults.""" + schema = ODEListFeatureNamesInputSchema(target="mars", feature_class="crater") + assert schema.limit == 50 + + def test_list_feature_names_input_limit_bounds(self): + """Limit must be between 1 and 50.""" + with pytest.raises(Exception): + ODEListFeatureNamesInputSchema(target="mars", feature_class="crater", limit=0) + with pytest.raises(Exception): + ODEListFeatureNamesInputSchema(target="mars", feature_class="crater", limit=51) + + # -- ODEGetFeatureBoundsInputSchema -- + + def test_get_feature_bounds_input_requires_all_fields(self): + """GetFeatureBoundsInputSchema requires target, feature_class, and feature_name.""" + with pytest.raises(Exception): + ODEGetFeatureBoundsInputSchema() + with pytest.raises(Exception): + ODEGetFeatureBoundsInputSchema(target="mars") + with pytest.raises(Exception): + ODEGetFeatureBoundsInputSchema(target="mars", feature_class="crater") diff --git a/tests/tools/pds/test_ode_integration.py b/tests/tools/pds/test_ode_integration.py new file mode 100644 index 0000000..021ad2f --- /dev/null +++ b/tests/tools/pds/test_ode_integration.py @@ -0,0 +1,335 @@ +"""Integration tests for ODE tools using the real ODE REST API.""" + +import pytest + +from akd_ext.tools.pds.ode.search_products import ( + ODESearchProductsInputSchema, + ODESearchProductsOutputSchema, + ODESearchProductsTool, +) +from akd_ext.tools.pds.ode.count_products import ( + ODECountProductsInputSchema, + ODECountProductsOutputSchema, + ODECountProductsTool, +) +from akd_ext.tools.pds.ode.list_instruments import ( + ODEListInstrumentsInputSchema, + ODEListInstrumentsOutputSchema, + ODEListInstrumentsTool, +) +from akd_ext.tools.pds.ode.list_feature_classes import ( + ODEListFeatureClassesInputSchema, + ODEListFeatureClassesOutputSchema, + ODEListFeatureClassesTool, +) +from akd_ext.tools.pds.ode.list_feature_names import ( + ODEListFeatureNamesInputSchema, + ODEListFeatureNamesOutputSchema, + ODEListFeatureNamesTool, +) +from akd_ext.tools.pds.ode.get_feature_bounds import ( + ODEGetFeatureBoundsInputSchema, + ODEGetFeatureBoundsOutputSchema, + ODEGetFeatureBoundsTool, +) + + +# --------------------------------------------------------------------------- +# ODESearchProductsTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestODESearchProductsIntegration: + """Integration tests for ODESearchProductsTool against the real ODE REST API.""" + + async def test_search_mars_hirise(self): + """Search Mars MRO HIRISE RDRV11 returns products.""" + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + limit=3, + ) + ) + + assert isinstance(result, ODESearchProductsOutputSchema) + assert result.status == "success" + assert result.count > 0 + assert len(result.products) <= 3 + assert result.total_available > 0 + for product in result.products: + assert product.pdsid is not None + + async def test_search_by_pdsid(self): + """Search by a specific PDS product ID returns that product.""" + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema( + target="mars", + pdsid="ESP_012600_1655_RED", + ) + ) + + assert result.status == "success" + assert result.count >= 1 + pdsids = [p.pdsid for p in result.products] + assert "ESP_012600_1655_RED" in pdsids + + async def test_search_with_geographic_bounds(self): + """Search with lat/lon bounds for Gale crater area returns products.""" + tool = ODESearchProductsTool() + result = await tool.arun( + ODESearchProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + minlat=-6, + maxlat=-3, + westlon=136, + eastlon=138, + limit=5, + ) + ) + + assert result.status == "success" + assert result.count > 0 + for product in result.products: + assert product.pdsid is not None + + async def test_search_pagination(self): + """Pagination returns different products on page 1 vs page 2.""" + tool = ODESearchProductsTool() + + page1 = await tool.arun( + ODESearchProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + limit=3, + offset=0, + ) + ) + page2 = await tool.arun( + ODESearchProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + limit=3, + offset=3, + ) + ) + + assert page1.status == "success" + assert page2.status == "success" + + page1_pdsids = {p.pdsid for p in page1.products} + page2_pdsids = {p.pdsid for p in page2.products} + assert page1_pdsids.isdisjoint(page2_pdsids), "Paginated pages should not overlap" + + +# --------------------------------------------------------------------------- +# ODECountProductsTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestODECountProductsIntegration: + """Integration tests for ODECountProductsTool against the real ODE REST API.""" + + async def test_count_mars_hirise(self): + """Count Mars MRO HIRISE RDRV11 returns a positive count.""" + tool = ODECountProductsTool() + result = await tool.arun( + ODECountProductsInputSchema( + target="mars", + ihid="MRO", + iid="HIRISE", + pt="RDRV11", + ) + ) + + assert isinstance(result, ODECountProductsOutputSchema) + assert result.status == "success" + assert result.count > 0 + + async def test_count_moon_lroc(self): + """Count Moon LRO LROC EDR returns a positive count.""" + tool = ODECountProductsTool() + result = await tool.arun( + ODECountProductsInputSchema( + target="moon", + ihid="LRO", + iid="LROC", + pt="EDR", + ) + ) + + assert isinstance(result, ODECountProductsOutputSchema) + assert result.status == "success" + assert result.count > 0 + + +# --------------------------------------------------------------------------- +# ODEListInstrumentsTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestODEListInstrumentsIntegration: + """Integration tests for ODEListInstrumentsTool against the real ODE REST API.""" + + async def test_list_mars_instruments(self): + """Listing Mars instruments returns a substantial set including MRO HIRISE.""" + tool = ODEListInstrumentsTool() + result = await tool.arun( + ODEListInstrumentsInputSchema(target="mars") + ) + + assert isinstance(result, ODEListInstrumentsOutputSchema) + assert result.status == "success" + assert result.count > 5 + + # MRO HIRISE should be among the known instruments + ihid_iid_pairs = {(inst.ihid, inst.iid) for inst in result.instruments} + assert ("MRO", "HIRISE") in ihid_iid_pairs + + async def test_list_moon_instruments(self): + """Listing Moon instruments returns results.""" + tool = ODEListInstrumentsTool() + result = await tool.arun( + ODEListInstrumentsInputSchema(target="moon") + ) + + assert result.status == "success" + assert result.count > 0 + + async def test_list_instruments_with_ihid_filter(self): + """Filtering Mars instruments by ihid='MRO' returns only MRO instruments.""" + tool = ODEListInstrumentsTool() + result = await tool.arun( + ODEListInstrumentsInputSchema(target="mars", ihid="MRO") + ) + + assert result.status == "success" + assert result.count > 0 + for inst in result.instruments: + assert inst.ihid == "MRO" + + +# --------------------------------------------------------------------------- +# ODEListFeatureClassesTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestODEListFeatureClassesIntegration: + """Integration tests for ODEListFeatureClassesTool against the real ODE REST API.""" + + async def test_list_mars_feature_classes(self): + """Listing Mars feature classes includes 'crater'.""" + tool = ODEListFeatureClassesTool() + result = await tool.arun( + ODEListFeatureClassesInputSchema(target="mars") + ) + + assert isinstance(result, ODEListFeatureClassesOutputSchema) + assert result.status == "success" + assert result.count > 0 + + # Normalize to lowercase for comparison + lowercase_classes = [fc.lower() for fc in result.feature_classes] + assert "crater" in lowercase_classes + + async def test_list_moon_feature_classes(self): + """Listing Moon feature classes returns results.""" + tool = ODEListFeatureClassesTool() + result = await tool.arun( + ODEListFeatureClassesInputSchema(target="moon") + ) + + assert result.status == "success" + assert result.count > 0 + + +# --------------------------------------------------------------------------- +# ODEListFeatureNamesTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestODEListFeatureNamesIntegration: + """Integration tests for ODEListFeatureNamesTool against the real ODE REST API.""" + + async def test_list_mars_craters(self): + """Listing Mars craters returns known craters like Gale or Jezero.""" + tool = ODEListFeatureNamesTool() + result = await tool.arun( + ODEListFeatureNamesInputSchema( + target="mars", + feature_class="crater", + limit=50, + ) + ) + + assert isinstance(result, ODEListFeatureNamesOutputSchema) + assert result.status == "success" + assert result.count > 0 + + # At least one of the well-known craters should appear + feature_names_lower = [name.lower() for name in result.feature_names] + known_craters = {"gale", "jezero"} + assert known_craters & set(feature_names_lower), ( + f"Expected at least one of {known_craters} in feature names, got: {result.feature_names[:10]}" + ) + + +# --------------------------------------------------------------------------- +# ODEGetFeatureBoundsTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestODEGetFeatureBoundsIntegration: + """Integration tests for ODEGetFeatureBoundsTool against the real ODE REST API.""" + + async def test_get_gale_crater_bounds(self): + """Getting bounds for Gale crater returns reasonable coordinates.""" + tool = ODEGetFeatureBoundsTool() + result = await tool.arun( + ODEGetFeatureBoundsInputSchema( + target="mars", + feature_class="crater", + feature_name="Gale", + ) + ) + + assert isinstance(result, ODEGetFeatureBoundsOutputSchema) + assert result.status == "success" + assert result.bounds is not None + + # Gale crater is approximately at -5.4 lat, 137.8 lon + assert -10 < result.bounds["min_lat"] < 0 + assert -10 < result.bounds["max_lat"] < 5 + assert 130 < result.bounds["west_lon"] < 145 + assert 130 < result.bounds["east_lon"] < 145 + + async def test_get_nonexistent_feature(self): + """Getting bounds for a nonexistent feature returns not_found status.""" + tool = ODEGetFeatureBoundsTool() + result = await tool.arun( + ODEGetFeatureBoundsInputSchema( + target="mars", + feature_class="crater", + feature_name="NonexistentXYZ123", + ) + ) + + assert isinstance(result, ODEGetFeatureBoundsOutputSchema) + assert result.status == "not_found" diff --git a/tests/tools/pds/test_opus.py b/tests/tools/pds/test_opus.py new file mode 100644 index 0000000..0a07177 --- /dev/null +++ b/tests/tools/pds/test_opus.py @@ -0,0 +1,1388 @@ +"""Unit tests for OPUS (Outer Planets Unified Search) tools.""" + +from unittest.mock import AsyncMock, MagicMock, patch + +import pytest + +from akd_ext.tools.pds.opus.opus_search import ( + OPUSObservationSummary, + OPUSSearchInputSchema, + OPUSSearchOutputSchema, + OPUSSearchTool, + OPUSSearchToolConfig, +) +from akd_ext.tools.pds.opus.opus_count import ( + OPUSCountInputSchema, + OPUSCountOutputSchema, + OPUSCountTool, + OPUSCountToolConfig, +) +from akd_ext.tools.pds.opus.opus_get_metadata import ( + OPUSGetMetadataInputSchema, + OPUSGetMetadataOutputSchema, + OPUSGetMetadataTool, + OPUSGetMetadataToolConfig, +) +from akd_ext.tools.pds.opus.opus_get_files import ( + OPUSBrowseImages, + OPUSGetFilesInputSchema, + OPUSGetFilesOutputSchema, + OPUSGetFilesTool, + OPUSGetFilesToolConfig, +) +from akd_ext.tools.pds.opus.types import OPUS_INSTRUMENTS, OPUS_MISSIONS, OPUS_PLANETS +from akd_ext.tools.pds.utils.opus_client import OPUSClient, OPUSClientError + +# Patch paths -- must match where OPUSClient is looked up at runtime +_SEARCH_CLIENT = "akd_ext.tools.pds.opus.opus_search.OPUSClient" +_COUNT_CLIENT = "akd_ext.tools.pds.opus.opus_count.OPUSClient" +_GET_METADATA_CLIENT = "akd_ext.tools.pds.opus.opus_get_metadata.OPUSClient" +_GET_FILES_CLIENT = "akd_ext.tools.pds.opus.opus_get_files.OPUSClient" + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + + +def _make_mock_observation(**overrides): + """Create a mock OPUSObservation with sensible defaults.""" + obs = MagicMock() + obs.opusid = overrides.get("opusid", "co-iss-n1460960653") + obs.instrument = overrides.get("instrument", "Cassini ISS") + obs.target = overrides.get("target", "Saturn") + obs.mission = overrides.get("mission", "Cassini") + obs.planet = overrides.get("planet", "Saturn") + obs.time1 = overrides.get("time1", "2004-04-18T00:00:00.000") + obs.time2 = overrides.get("time2", "2004-04-18T00:01:00.000") + obs.observation_duration = overrides.get("observation_duration", 60.0) + return obs + + +def _make_mock_search_response(**overrides): + """Create a mock search response.""" + response = MagicMock() + response.status = overrides.get("status", "success") + response.available = overrides.get("available", 1) + response.start_obs = overrides.get("start_obs", 1) + response.limit = overrides.get("limit", 100) + response.count = overrides.get("count", 1) + response.observations = overrides.get("observations", [_make_mock_observation()]) + response.error = overrides.get("error", None) + return response + + +def _make_mock_count_response(**overrides): + """Create a mock count response.""" + response = MagicMock() + response.status = overrides.get("status", "success") + response.count = overrides.get("count", 42000) + response.error = overrides.get("error", None) + return response + + +def _make_mock_metadata(**overrides): + """Create a mock OPUSMetadata.""" + metadata = MagicMock() + metadata.opusid = overrides.get("opusid", "co-iss-n1460960653") + metadata.general_constraints = overrides.get( + "general_constraints", + {"planet": "Saturn", "target": "Saturn", "mission": "Cassini", "instrument": "Cassini ISS"}, + ) + metadata.pds_constraints = overrides.get( + "pds_constraints", + {"bundle_id": "co-iss_0xxx", "dataset_id": "COISS_2001"}, + ) + metadata.image_constraints = overrides.get( + "image_constraints", + {"image_type": "Frame", "width": 1024, "height": 1024}, + ) + metadata.wavelength_constraints = overrides.get( + "wavelength_constraints", + {"wavelength1": 0.38, "wavelength2": 1.05}, + ) + metadata.ring_geometry_constraints = overrides.get( + "ring_geometry_constraints", + {"ring_radius1": 74500.0, "ring_radius2": 140220.0}, + ) + metadata.surface_geometry_constraints = overrides.get( + "surface_geometry_constraints", + {"center_latitude": -15.0, "center_longitude": 120.0}, + ) + metadata.instrument_constraints = overrides.get( + "instrument_constraints", + {"filter1": "CL1", "filter2": "CL2", "camera": "Narrow Angle"}, + ) + return metadata + + +def _make_mock_metadata_response(**overrides): + """Create a mock metadata response.""" + response = MagicMock() + response.status = overrides.get("status", "success") + response.metadata = overrides.get("metadata", _make_mock_metadata()) + response.error = overrides.get("error", None) + return response + + +def _make_mock_files(**overrides): + """Create a mock OPUSFiles.""" + files = MagicMock() + files.opusid = overrides.get("opusid", "co-iss-n1460960653") + files.raw_files = overrides.get("raw_files", ["https://opus.pds-rings.seti.org/holdings/raw/data.img"]) + files.calibrated_files = overrides.get( + "calibrated_files", ["https://opus.pds-rings.seti.org/holdings/calibrated/data.img"] + ) + files.browse_thumb = overrides.get("browse_thumb", "https://opus.pds-rings.seti.org/holdings/thumb.jpg") + files.browse_small = overrides.get("browse_small", "https://opus.pds-rings.seti.org/holdings/small.jpg") + files.browse_medium = overrides.get("browse_medium", "https://opus.pds-rings.seti.org/holdings/medium.jpg") + files.browse_full = overrides.get("browse_full", "https://opus.pds-rings.seti.org/holdings/full.jpg") + files.all_files = overrides.get( + "all_files", + { + "raw_image": ["https://opus.pds-rings.seti.org/holdings/raw/data.img"], + "calibrated_image": ["https://opus.pds-rings.seti.org/holdings/calibrated/data.img"], + }, + ) + return files + + +def _make_mock_files_response(**overrides): + """Create a mock files response.""" + response = MagicMock() + response.status = overrides.get("status", "success") + response.files = overrides.get("files", _make_mock_files()) + response.error = overrides.get("error", None) + return response + + +def _patch_opus_client(patch_path): + """Set up mock OPUSClient with async context manager support. + + Returns (patcher, mock_client) -- caller must use patcher as context manager. + The mock_client can then have methods assigned, e.g.: + mock_client.search_observations = AsyncMock(return_value=...) + """ + patcher = patch(patch_path) + MockClient = patcher.start() + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + return patcher, MockClient, mock_client + + +# --------------------------------------------------------------------------- +# OPUSSearchTool +# --------------------------------------------------------------------------- + + +class TestOPUSSearchTool: + """Tests for OPUSSearchTool.""" + + async def test_basic_search(self): + """Basic search returns observations.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + tool = OPUSSearchTool() + result = await tool.arun(OPUSSearchInputSchema()) + finally: + patcher.stop() + + assert isinstance(result, OPUSSearchOutputSchema) + assert result.status == "success" + assert result.count == 1 + assert result.available == 1 + assert len(result.observations) == 1 + + async def test_search_observation_fields(self): + """Observation summaries contain expected fields.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + tool = OPUSSearchTool() + result = await tool.arun(OPUSSearchInputSchema()) + finally: + patcher.stop() + + obs = result.observations[0] + assert isinstance(obs, OPUSObservationSummary) + assert obs.opusid == "co-iss-n1460960653" + assert obs.instrument == "Cassini ISS" + assert obs.target == "Saturn" + assert obs.mission == "Cassini" + assert obs.planet == "Saturn" + assert obs.time_start == "2004-04-18T00:00:00.000" + assert obs.time_end == "2004-04-18T00:01:00.000" + assert obs.duration_seconds == 60.0 + + async def test_search_with_target_filter(self): + """Target filter is forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + tool = OPUSSearchTool() + await tool.arun(OPUSSearchInputSchema(target="Titan")) + finally: + patcher.stop() + + call_kwargs = mock_client.search_observations.call_args.kwargs + assert call_kwargs["target"] == "Titan" + + async def test_search_with_mission_filter(self): + """Mission filter is forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + tool = OPUSSearchTool() + await tool.arun(OPUSSearchInputSchema(mission="Cassini")) + finally: + patcher.stop() + + call_kwargs = mock_client.search_observations.call_args.kwargs + assert call_kwargs["mission"] == "Cassini" + + async def test_search_with_instrument_filter(self): + """Instrument filter is forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + tool = OPUSSearchTool() + await tool.arun(OPUSSearchInputSchema(instrument="Cassini ISS")) + finally: + patcher.stop() + + call_kwargs = mock_client.search_observations.call_args.kwargs + assert call_kwargs["instrument"] == "Cassini ISS" + + async def test_search_with_planet_filter(self): + """Planet filter is forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + tool = OPUSSearchTool() + await tool.arun(OPUSSearchInputSchema(planet="Saturn")) + finally: + patcher.stop() + + call_kwargs = mock_client.search_observations.call_args.kwargs + assert call_kwargs["planet"] == "Saturn" + + async def test_search_with_time_range(self): + """Time range filters are forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + tool = OPUSSearchTool() + await tool.arun( + OPUSSearchInputSchema( + time_min="2004-01-01", + time_max="2004-12-31", + ) + ) + finally: + patcher.stop() + + call_kwargs = mock_client.search_observations.call_args.kwargs + assert call_kwargs["time_min"] == "2004-01-01" + assert call_kwargs["time_max"] == "2004-12-31" + + async def test_search_with_limit_and_startobs(self): + """Limit and startobs are forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock( + return_value=_make_mock_search_response(start_obs=50, limit=25, count=25, available=200) + ) + + tool = OPUSSearchTool() + result = await tool.arun(OPUSSearchInputSchema(limit=25, startobs=50)) + finally: + patcher.stop() + + call_kwargs = mock_client.search_observations.call_args.kwargs + assert call_kwargs["limit"] == 25 + assert call_kwargs["startobs"] == 50 + assert result.start_obs == 50 + assert result.limit == 25 + + async def test_search_pagination(self): + """Pagination returns correct metadata when more results are available.""" + obs_list = [_make_mock_observation(opusid=f"co-iss-obs-{i}") for i in range(10)] + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock( + return_value=_make_mock_search_response( + observations=obs_list, + count=10, + available=500, + start_obs=1, + limit=10, + ) + ) + + tool = OPUSSearchTool() + result = await tool.arun(OPUSSearchInputSchema(limit=10, startobs=1)) + finally: + patcher.stop() + + assert result.count == 10 + assert result.available == 500 + assert result.start_obs == 1 + assert result.limit == 10 + assert len(result.observations) == 10 + + async def test_search_all_filters_combined(self): + """All filters combined are forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + tool = OPUSSearchTool() + await tool.arun( + OPUSSearchInputSchema( + target="Titan", + mission="Cassini", + instrument="Cassini ISS", + planet="Saturn", + time_min="2004-01-01", + time_max="2017-09-15", + limit=50, + startobs=10, + ) + ) + finally: + patcher.stop() + + call_kwargs = mock_client.search_observations.call_args.kwargs + assert call_kwargs["target"] == "Titan" + assert call_kwargs["mission"] == "Cassini" + assert call_kwargs["instrument"] == "Cassini ISS" + assert call_kwargs["planet"] == "Saturn" + assert call_kwargs["time_min"] == "2004-01-01" + assert call_kwargs["time_max"] == "2017-09-15" + assert call_kwargs["limit"] == 50 + assert call_kwargs["startobs"] == 10 + + async def test_search_empty_results(self): + """Empty search results return count=0 and empty observations list.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock( + return_value=_make_mock_search_response( + count=0, available=0, observations=[] + ) + ) + + tool = OPUSSearchTool() + result = await tool.arun(OPUSSearchInputSchema(target="Nonexistent")) + finally: + patcher.stop() + + assert result.status == "success" + assert result.count == 0 + assert result.available == 0 + assert result.observations == [] + + async def test_search_error_response(self): + """Error response from API returns error status.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock( + return_value=_make_mock_search_response( + status="error", error="Bad request", count=0, available=0, observations=[] + ) + ) + + tool = OPUSSearchTool() + result = await tool.arun(OPUSSearchInputSchema()) + finally: + patcher.stop() + + assert result.status == "error" + assert result.count == 0 + assert result.available == 0 + assert result.observations == [] + + async def test_search_client_error_raises(self): + """OPUSClientError is re-raised.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock( + side_effect=OPUSClientError("connection failed") + ) + + tool = OPUSSearchTool() + with pytest.raises(OPUSClientError, match="connection failed"): + await tool.arun(OPUSSearchInputSchema()) + finally: + patcher.stop() + + async def test_search_unexpected_error_raises_runtime_error(self): + """Unexpected exceptions are wrapped in RuntimeError.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock( + side_effect=TypeError("bad type") + ) + + tool = OPUSSearchTool() + with pytest.raises(RuntimeError, match="Internal error"): + await tool.arun(OPUSSearchInputSchema()) + finally: + patcher.stop() + + async def test_search_with_config(self): + """Custom config is passed to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock(return_value=_make_mock_search_response()) + + config = OPUSSearchToolConfig( + base_url="https://custom.opus.url/api/", + timeout=60.0, + max_retries=5, + ) + tool = OPUSSearchTool(config=config) + await tool.arun(OPUSSearchInputSchema()) + finally: + patcher.stop() + + MockClient.assert_called_once_with( + base_url="https://custom.opus.url/api/", + timeout=60.0, + max_retries=5, + ) + + async def test_search_multiple_observations(self): + """Search returns multiple observations correctly.""" + obs1 = _make_mock_observation(opusid="co-iss-n1460960653", target="Saturn") + obs2 = _make_mock_observation(opusid="co-vims-v1460961000", target="Titan", instrument="Cassini VIMS") + patcher, MockClient, mock_client = _patch_opus_client(_SEARCH_CLIENT) + try: + mock_client.search_observations = AsyncMock( + return_value=_make_mock_search_response( + observations=[obs1, obs2], + count=2, + available=2, + ) + ) + + tool = OPUSSearchTool() + result = await tool.arun(OPUSSearchInputSchema()) + finally: + patcher.stop() + + assert result.count == 2 + assert len(result.observations) == 2 + assert result.observations[0].opusid == "co-iss-n1460960653" + assert result.observations[1].opusid == "co-vims-v1460961000" + assert result.observations[1].instrument == "Cassini VIMS" + + +# --------------------------------------------------------------------------- +# OPUSCountTool +# --------------------------------------------------------------------------- + + +class TestOPUSCountTool: + """Tests for OPUSCountTool.""" + + async def test_basic_count(self): + """Count returns total matching observations.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock(return_value=_make_mock_count_response()) + + tool = OPUSCountTool() + result = await tool.arun(OPUSCountInputSchema()) + finally: + patcher.stop() + + assert isinstance(result, OPUSCountOutputSchema) + assert result.status == "success" + assert result.count == 42000 + + async def test_count_with_target_filter(self): + """Target filter is forwarded and reflected in filters.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock( + return_value=_make_mock_count_response(count=15000) + ) + + tool = OPUSCountTool() + result = await tool.arun(OPUSCountInputSchema(target="Saturn")) + finally: + patcher.stop() + + call_kwargs = mock_client.count_observations.call_args.kwargs + assert call_kwargs["target"] == "Saturn" + assert result.count == 15000 + assert result.filters["target"] == "Saturn" + + async def test_count_with_mission_filter(self): + """Mission filter is forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock(return_value=_make_mock_count_response()) + + tool = OPUSCountTool() + result = await tool.arun(OPUSCountInputSchema(mission="Cassini")) + finally: + patcher.stop() + + call_kwargs = mock_client.count_observations.call_args.kwargs + assert call_kwargs["mission"] == "Cassini" + assert result.filters["mission"] == "Cassini" + + async def test_count_with_instrument_filter(self): + """Instrument filter is forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock(return_value=_make_mock_count_response()) + + tool = OPUSCountTool() + result = await tool.arun(OPUSCountInputSchema(instrument="Cassini ISS")) + finally: + patcher.stop() + + call_kwargs = mock_client.count_observations.call_args.kwargs + assert call_kwargs["instrument"] == "Cassini ISS" + assert result.filters["instrument"] == "Cassini ISS" + + async def test_count_with_planet_filter(self): + """Planet filter is forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock(return_value=_make_mock_count_response()) + + tool = OPUSCountTool() + result = await tool.arun(OPUSCountInputSchema(planet="Jupiter")) + finally: + patcher.stop() + + call_kwargs = mock_client.count_observations.call_args.kwargs + assert call_kwargs["planet"] == "Jupiter" + assert result.filters["planet"] == "Jupiter" + + async def test_count_with_time_range(self): + """Time range filters are forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock(return_value=_make_mock_count_response()) + + tool = OPUSCountTool() + result = await tool.arun( + OPUSCountInputSchema(time_min="2004-01-01", time_max="2004-12-31") + ) + finally: + patcher.stop() + + call_kwargs = mock_client.count_observations.call_args.kwargs + assert call_kwargs["time_min"] == "2004-01-01" + assert call_kwargs["time_max"] == "2004-12-31" + assert result.filters["time_min"] == "2004-01-01" + assert result.filters["time_max"] == "2004-12-31" + + async def test_count_all_filters_combined(self): + """All filters combined are forwarded to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock(return_value=_make_mock_count_response(count=100)) + + tool = OPUSCountTool() + result = await tool.arun( + OPUSCountInputSchema( + target="Titan", + mission="Cassini", + instrument="Cassini ISS", + planet="Saturn", + time_min="2004-01-01", + time_max="2017-09-15", + ) + ) + finally: + patcher.stop() + + call_kwargs = mock_client.count_observations.call_args.kwargs + assert call_kwargs["target"] == "Titan" + assert call_kwargs["mission"] == "Cassini" + assert call_kwargs["instrument"] == "Cassini ISS" + assert call_kwargs["planet"] == "Saturn" + assert call_kwargs["time_min"] == "2004-01-01" + assert call_kwargs["time_max"] == "2017-09-15" + assert result.count == 100 + + async def test_count_filters_dict_populated(self): + """Filters dict in output contains all applied filters.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock(return_value=_make_mock_count_response()) + + tool = OPUSCountTool() + result = await tool.arun( + OPUSCountInputSchema(target="Saturn", mission="Cassini") + ) + finally: + patcher.stop() + + assert result.filters["target"] == "Saturn" + assert result.filters["mission"] == "Cassini" + assert result.filters["instrument"] is None + assert result.filters["planet"] is None + assert result.filters["time_min"] is None + assert result.filters["time_max"] is None + + async def test_count_error_response(self): + """Error response from API returns error status.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock( + return_value=_make_mock_count_response(status="error", error="Bad request", count=0) + ) + + tool = OPUSCountTool() + result = await tool.arun(OPUSCountInputSchema()) + finally: + patcher.stop() + + assert result.status == "error" + assert result.count == 0 + + async def test_count_client_error_raises(self): + """OPUSClientError is re-raised.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock( + side_effect=OPUSClientError("timeout") + ) + + tool = OPUSCountTool() + with pytest.raises(OPUSClientError, match="timeout"): + await tool.arun(OPUSCountInputSchema()) + finally: + patcher.stop() + + async def test_count_unexpected_error_raises_runtime_error(self): + """Unexpected exceptions are wrapped in RuntimeError.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock( + side_effect=ValueError("bad value") + ) + + tool = OPUSCountTool() + with pytest.raises(RuntimeError, match="Internal error"): + await tool.arun(OPUSCountInputSchema()) + finally: + patcher.stop() + + async def test_count_with_config(self): + """Custom config is passed to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_COUNT_CLIENT) + try: + mock_client.count_observations = AsyncMock(return_value=_make_mock_count_response()) + + config = OPUSCountToolConfig( + base_url="https://custom.opus.url/api/", + timeout=45.0, + max_retries=2, + ) + tool = OPUSCountTool(config=config) + await tool.arun(OPUSCountInputSchema()) + finally: + patcher.stop() + + MockClient.assert_called_once_with( + base_url="https://custom.opus.url/api/", + timeout=45.0, + max_retries=2, + ) + + +# --------------------------------------------------------------------------- +# OPUSGetMetadataTool +# --------------------------------------------------------------------------- + + +class TestOPUSGetMetadataTool: + """Tests for OPUSGetMetadataTool.""" + + async def test_get_metadata_found(self): + """Existing observation returns success with full metadata.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert isinstance(result, OPUSGetMetadataOutputSchema) + assert result.status == "success" + assert result.opusid == "co-iss-n1460960653" + + async def test_get_metadata_general_constraints(self): + """General constraints are populated in the output.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.general is not None + assert result.general["planet"] == "Saturn" + assert result.general["target"] == "Saturn" + assert result.general["mission"] == "Cassini" + + async def test_get_metadata_pds_constraints(self): + """PDS constraints are populated in the output.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.pds is not None + assert result.pds["bundle_id"] == "co-iss_0xxx" + + async def test_get_metadata_image_constraints(self): + """Image constraints are populated in the output.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.image is not None + assert result.image["image_type"] == "Frame" + assert result.image["width"] == 1024 + + async def test_get_metadata_wavelength_constraints(self): + """Wavelength constraints are populated in the output.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.wavelength is not None + assert result.wavelength["wavelength1"] == 0.38 + + async def test_get_metadata_ring_geometry_constraints(self): + """Ring geometry constraints are populated in the output.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.ring_geometry is not None + assert result.ring_geometry["ring_radius1"] == 74500.0 + + async def test_get_metadata_surface_geometry_constraints(self): + """Surface geometry constraints are populated in the output.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.surface_geometry is not None + assert result.surface_geometry["center_latitude"] == -15.0 + + async def test_get_metadata_instrument_constraints(self): + """Instrument-specific constraints are populated in the output.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.instrument_specific is not None + assert result.instrument_specific["filter1"] == "CL1" + assert result.instrument_specific["camera"] == "Narrow Angle" + + async def test_get_metadata_not_found(self): + """Missing metadata returns not_found status.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock( + return_value=_make_mock_metadata_response(metadata=None) + ) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="nonexistent-obs") + ) + finally: + patcher.stop() + + assert result.status == "not_found" + assert result.opusid == "nonexistent-obs" + + async def test_get_metadata_error_response(self): + """Error response from API returns error status.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock( + return_value=_make_mock_metadata_response( + status="error", error="server error", metadata=MagicMock() + ) + ) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.status == "error" + assert result.opusid == "co-iss-n1460960653" + + async def test_get_metadata_client_error_raises(self): + """OPUSClientError is re-raised.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock( + side_effect=OPUSClientError("connection refused") + ) + + tool = OPUSGetMetadataTool() + with pytest.raises(OPUSClientError, match="connection refused"): + await tool.arun(OPUSGetMetadataInputSchema(opusid="any")) + finally: + patcher.stop() + + async def test_get_metadata_unexpected_error_raises_runtime_error(self): + """Unexpected exceptions are wrapped in RuntimeError.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock( + side_effect=KeyError("missing key") + ) + + tool = OPUSGetMetadataTool() + with pytest.raises(RuntimeError, match="Internal error"): + await tool.arun(OPUSGetMetadataInputSchema(opusid="any")) + finally: + patcher.stop() + + async def test_get_metadata_with_config(self): + """Custom config is passed to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock(return_value=_make_mock_metadata_response()) + + config = OPUSGetMetadataToolConfig( + base_url="https://custom.opus.url/api/", + timeout=15.0, + max_retries=1, + ) + tool = OPUSGetMetadataTool(config=config) + await tool.arun(OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653")) + finally: + patcher.stop() + + MockClient.assert_called_once_with( + base_url="https://custom.opus.url/api/", + timeout=15.0, + max_retries=1, + ) + + async def test_get_metadata_empty_constraints_are_none(self): + """Empty constraint dicts are returned as None.""" + metadata = _make_mock_metadata( + general_constraints={"planet": "Saturn"}, + pds_constraints={}, + image_constraints={}, + wavelength_constraints={}, + ring_geometry_constraints={}, + surface_geometry_constraints={}, + instrument_constraints={}, + ) + patcher, MockClient, mock_client = _patch_opus_client(_GET_METADATA_CLIENT) + try: + mock_client.get_metadata = AsyncMock( + return_value=_make_mock_metadata_response(metadata=metadata) + ) + + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.status == "success" + assert result.general == {"planet": "Saturn"} + # Empty dicts evaluate to falsy, so the tool returns None for them + assert result.pds is None + assert result.image is None + assert result.wavelength is None + assert result.ring_geometry is None + assert result.surface_geometry is None + assert result.instrument_specific is None + + +# --------------------------------------------------------------------------- +# OPUSGetFilesTool +# --------------------------------------------------------------------------- + + +class TestOPUSGetFilesTool: + """Tests for OPUSGetFilesTool.""" + + async def test_get_files_found(self): + """Existing observation returns success with file URLs.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock(return_value=_make_mock_files_response()) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert isinstance(result, OPUSGetFilesOutputSchema) + assert result.status == "success" + assert result.opusid == "co-iss-n1460960653" + + async def test_get_files_raw_files(self): + """Raw file URLs are populated.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock(return_value=_make_mock_files_response()) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.raw_files is not None + assert len(result.raw_files) == 1 + assert "raw" in result.raw_files[0] + + async def test_get_files_calibrated_files(self): + """Calibrated file URLs are populated.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock(return_value=_make_mock_files_response()) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.calibrated_files is not None + assert len(result.calibrated_files) == 1 + assert "calibrated" in result.calibrated_files[0] + + async def test_get_files_browse_images(self): + """Browse images at various resolutions are populated.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock(return_value=_make_mock_files_response()) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.browse_images is not None + assert isinstance(result.browse_images, OPUSBrowseImages) + assert result.browse_images.thumbnail == "https://opus.pds-rings.seti.org/holdings/thumb.jpg" + assert result.browse_images.small == "https://opus.pds-rings.seti.org/holdings/small.jpg" + assert result.browse_images.medium == "https://opus.pds-rings.seti.org/holdings/medium.jpg" + assert result.browse_images.full == "https://opus.pds-rings.seti.org/holdings/full.jpg" + + async def test_get_files_all_file_categories(self): + """All file categories dict is populated.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock(return_value=_make_mock_files_response()) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.all_file_categories is not None + assert "raw_image" in result.all_file_categories + assert "calibrated_image" in result.all_file_categories + + async def test_get_files_not_found(self): + """Missing files returns not_found status.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock( + return_value=_make_mock_files_response(files=None) + ) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="nonexistent-obs") + ) + finally: + patcher.stop() + + assert result.status == "not_found" + assert result.opusid == "nonexistent-obs" + + async def test_get_files_error_response(self): + """Error response from API returns error status.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock( + return_value=_make_mock_files_response( + status="error", error="server error", files=MagicMock() + ) + ) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.status == "error" + assert result.opusid == "co-iss-n1460960653" + + async def test_get_files_client_error_raises(self): + """OPUSClientError is re-raised.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock( + side_effect=OPUSClientError("network error") + ) + + tool = OPUSGetFilesTool() + with pytest.raises(OPUSClientError, match="network error"): + await tool.arun(OPUSGetFilesInputSchema(opusid="any")) + finally: + patcher.stop() + + async def test_get_files_unexpected_error_raises_runtime_error(self): + """Unexpected exceptions are wrapped in RuntimeError.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock( + side_effect=IOError("disk error") + ) + + tool = OPUSGetFilesTool() + with pytest.raises(RuntimeError, match="Internal error"): + await tool.arun(OPUSGetFilesInputSchema(opusid="any")) + finally: + patcher.stop() + + async def test_get_files_with_config(self): + """Custom config is passed to the client.""" + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock(return_value=_make_mock_files_response()) + + config = OPUSGetFilesToolConfig( + base_url="https://custom.opus.url/api/", + timeout=20.0, + max_retries=4, + ) + tool = OPUSGetFilesTool(config=config) + await tool.arun(OPUSGetFilesInputSchema(opusid="co-iss-n1460960653")) + finally: + patcher.stop() + + MockClient.assert_called_once_with( + base_url="https://custom.opus.url/api/", + timeout=20.0, + max_retries=4, + ) + + async def test_get_files_no_browse_images(self): + """Files without browse images return None for browse_images.""" + files = _make_mock_files( + browse_thumb=None, + browse_small=None, + browse_medium=None, + browse_full=None, + ) + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock( + return_value=_make_mock_files_response(files=files) + ) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.status == "success" + assert result.browse_images is None + + async def test_get_files_empty_raw_calibrated(self): + """Files with empty raw/calibrated lists return None for those fields.""" + files = _make_mock_files(raw_files=[], calibrated_files=[], all_files={}) + patcher, MockClient, mock_client = _patch_opus_client(_GET_FILES_CLIENT) + try: + mock_client.get_files = AsyncMock( + return_value=_make_mock_files_response(files=files) + ) + + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + finally: + patcher.stop() + + assert result.status == "success" + # Empty lists are falsy, so the tool returns None + assert result.raw_files is None + assert result.calibrated_files is None + assert result.all_file_categories is None + + +# --------------------------------------------------------------------------- +# Schema validation tests +# --------------------------------------------------------------------------- + + +class TestOPUSSchemaValidation: + """Tests for OPUS input schema validation.""" + + # --- OPUSSearchInputSchema --- + + def test_search_input_defaults(self): + """SearchInputSchema has correct defaults.""" + schema = OPUSSearchInputSchema() + assert schema.target is None + assert schema.mission is None + assert schema.instrument is None + assert schema.planet is None + assert schema.time_min is None + assert schema.time_max is None + assert schema.limit == 100 + assert schema.startobs == 1 + + def test_search_input_limit_bounds_low(self): + """Limit below 1 raises validation error.""" + with pytest.raises(Exception): + OPUSSearchInputSchema(limit=0) + + def test_search_input_limit_bounds_high(self): + """Limit above 1000 raises validation error.""" + with pytest.raises(Exception): + OPUSSearchInputSchema(limit=1001) + + def test_search_input_limit_valid_min(self): + """Limit of 1 is valid.""" + schema = OPUSSearchInputSchema(limit=1) + assert schema.limit == 1 + + def test_search_input_limit_valid_max(self): + """Limit of 1000 is valid.""" + schema = OPUSSearchInputSchema(limit=1000) + assert schema.limit == 1000 + + def test_search_input_startobs_below_one(self): + """Startobs below 1 raises validation error.""" + with pytest.raises(Exception): + OPUSSearchInputSchema(startobs=0) + + def test_search_input_startobs_valid(self): + """Startobs of 1 is valid.""" + schema = OPUSSearchInputSchema(startobs=1) + assert schema.startobs == 1 + + def test_search_input_invalid_mission(self): + """Invalid mission raises validation error.""" + with pytest.raises(Exception): + OPUSSearchInputSchema(mission="Invalid Mission") + + def test_search_input_invalid_instrument(self): + """Invalid instrument raises validation error.""" + with pytest.raises(Exception): + OPUSSearchInputSchema(instrument="Invalid Instrument") + + def test_search_input_invalid_planet(self): + """Invalid planet raises validation error.""" + with pytest.raises(Exception): + OPUSSearchInputSchema(planet="Mars") + + def test_search_input_valid_missions(self): + """All valid missions are accepted.""" + for mission in ["Cassini", "Voyager 1", "Voyager 2", "Galileo", "New Horizons", "Juno", "Hubble"]: + schema = OPUSSearchInputSchema(mission=mission) + assert schema.mission == mission + + def test_search_input_valid_planets(self): + """All valid planets are accepted.""" + for planet in ["Jupiter", "Saturn", "Uranus", "Neptune", "Pluto", "Other"]: + schema = OPUSSearchInputSchema(planet=planet) + assert schema.planet == planet + + def test_search_input_valid_instruments(self): + """Sample valid instruments are accepted.""" + for instrument in ["Cassini ISS", "Cassini VIMS", "Voyager ISS", "Galileo SSI", "Hubble WFC3"]: + schema = OPUSSearchInputSchema(instrument=instrument) + assert schema.instrument == instrument + + # --- OPUSCountInputSchema --- + + def test_count_input_defaults(self): + """CountInputSchema has correct defaults.""" + schema = OPUSCountInputSchema() + assert schema.target is None + assert schema.mission is None + assert schema.instrument is None + assert schema.planet is None + assert schema.time_min is None + assert schema.time_max is None + + def test_count_input_invalid_mission(self): + """Invalid mission raises validation error.""" + with pytest.raises(Exception): + OPUSCountInputSchema(mission="Invalid Mission") + + def test_count_input_invalid_planet(self): + """Invalid planet raises validation error.""" + with pytest.raises(Exception): + OPUSCountInputSchema(planet="Mars") + + def test_count_input_invalid_instrument(self): + """Invalid instrument raises validation error.""" + with pytest.raises(Exception): + OPUSCountInputSchema(instrument="Bad Instrument") + + # --- OPUSGetMetadataInputSchema --- + + def test_get_metadata_input_requires_opusid(self): + """GetMetadataInputSchema requires opusid.""" + with pytest.raises(Exception): + OPUSGetMetadataInputSchema() + + def test_get_metadata_input_valid(self): + """GetMetadataInputSchema accepts a valid opusid.""" + schema = OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + assert schema.opusid == "co-iss-n1460960653" + + # --- OPUSGetFilesInputSchema --- + + def test_get_files_input_requires_opusid(self): + """GetFilesInputSchema requires opusid.""" + with pytest.raises(Exception): + OPUSGetFilesInputSchema() + + def test_get_files_input_valid(self): + """GetFilesInputSchema accepts a valid opusid.""" + schema = OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + assert schema.opusid == "co-iss-n1460960653" + + +# --------------------------------------------------------------------------- +# Config validation tests +# --------------------------------------------------------------------------- + + +class TestOPUSConfigValidation: + """Tests for OPUS tool config defaults and validation.""" + + def test_search_config_defaults(self): + """SearchToolConfig has correct defaults.""" + config = OPUSSearchToolConfig() + assert "opus" in config.base_url.lower() + assert config.timeout == 30.0 + assert config.max_retries == 3 + + def test_count_config_defaults(self): + """CountToolConfig has correct defaults.""" + config = OPUSCountToolConfig() + assert "opus" in config.base_url.lower() + assert config.timeout == 30.0 + assert config.max_retries == 3 + + def test_get_metadata_config_defaults(self): + """GetMetadataToolConfig has correct defaults.""" + config = OPUSGetMetadataToolConfig() + assert "opus" in config.base_url.lower() + assert config.timeout == 30.0 + assert config.max_retries == 3 + + def test_get_files_config_defaults(self): + """GetFilesToolConfig has correct defaults.""" + config = OPUSGetFilesToolConfig() + assert "opus" in config.base_url.lower() + assert config.timeout == 30.0 + assert config.max_retries == 3 + + def test_search_config_custom_values(self): + """SearchToolConfig accepts custom values.""" + config = OPUSSearchToolConfig( + base_url="https://custom.url/", + timeout=120.0, + max_retries=10, + ) + assert config.base_url == "https://custom.url/" + assert config.timeout == 120.0 + assert config.max_retries == 10 diff --git a/tests/tools/pds/test_opus_integration.py b/tests/tools/pds/test_opus_integration.py new file mode 100644 index 0000000..ed47185 --- /dev/null +++ b/tests/tools/pds/test_opus_integration.py @@ -0,0 +1,217 @@ +"""Integration tests for OPUS tools using the real OPUS API.""" + +import pytest + +from akd_ext.tools.pds.opus.opus_search import ( + OPUSObservationSummary, + OPUSSearchInputSchema, + OPUSSearchOutputSchema, + OPUSSearchTool, +) +from akd_ext.tools.pds.opus.opus_count import ( + OPUSCountInputSchema, + OPUSCountOutputSchema, + OPUSCountTool, +) +from akd_ext.tools.pds.opus.opus_get_metadata import ( + OPUSGetMetadataInputSchema, + OPUSGetMetadataOutputSchema, + OPUSGetMetadataTool, +) +from akd_ext.tools.pds.opus.opus_get_files import ( + OPUSGetFilesInputSchema, + OPUSGetFilesOutputSchema, + OPUSGetFilesTool, +) + + +# --------------------------------------------------------------------------- +# OPUSSearchTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestOPUSSearchIntegration: + """Integration tests for OPUSSearchTool against the real OPUS API.""" + + async def test_search_saturn_cassini(self): + """Search for Saturn observations from Cassini returns results.""" + tool = OPUSSearchTool() + result = await tool.arun( + OPUSSearchInputSchema(planet="Saturn", mission="Cassini", limit=5) + ) + + assert isinstance(result, OPUSSearchOutputSchema) + assert result.status == "success" + assert result.count > 0 + assert len(result.observations) <= 5 + for obs in result.observations: + assert isinstance(obs, OPUSObservationSummary) + assert obs.opusid + + async def test_search_by_target(self): + """Search by target returns observations for that target.""" + tool = OPUSSearchTool() + result = await tool.arun( + OPUSSearchInputSchema(target="Titan", limit=5) + ) + + assert result.status == "success" + assert result.count > 0 + for obs in result.observations: + assert obs.target == "Titan" + + async def test_search_by_instrument(self): + """Search by instrument returns observations from that instrument.""" + tool = OPUSSearchTool() + result = await tool.arun( + OPUSSearchInputSchema(instrument="Cassini ISS", limit=5) + ) + + assert result.status == "success" + assert result.count > 0 + for obs in result.observations: + assert obs.instrument == "Cassini ISS" + + async def test_search_with_time_range(self): + """Search with a time range returns results within that window.""" + tool = OPUSSearchTool() + result = await tool.arun( + OPUSSearchInputSchema( + time_min="2010-01-01", + time_max="2010-12-31", + limit=5, + ) + ) + + assert result.status == "success" + assert result.count > 0 + assert len(result.observations) <= 5 + + async def test_search_pagination(self): + """Paginated searches return different sets of observations.""" + tool = OPUSSearchTool() + + page1 = await tool.arun( + OPUSSearchInputSchema(planet="Saturn", limit=5, startobs=1) + ) + page2 = await tool.arun( + OPUSSearchInputSchema(planet="Saturn", limit=5, startobs=6) + ) + + assert page1.status == "success" + assert page2.status == "success" + + page1_ids = {obs.opusid for obs in page1.observations} + page2_ids = {obs.opusid for obs in page2.observations} + assert page1_ids.isdisjoint(page2_ids), "Paginated pages should not overlap" + + +# --------------------------------------------------------------------------- +# OPUSCountTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestOPUSCountIntegration: + """Integration tests for OPUSCountTool against the real OPUS API.""" + + async def test_count_all_saturn(self): + """Counting Saturn observations returns a large number.""" + tool = OPUSCountTool() + result = await tool.arun(OPUSCountInputSchema(planet="Saturn")) + + assert isinstance(result, OPUSCountOutputSchema) + assert result.status == "success" + assert result.count > 1000 + + async def test_count_cassini_iss(self): + """Counting Cassini ISS observations returns a positive number.""" + tool = OPUSCountTool() + result = await tool.arun( + OPUSCountInputSchema(instrument="Cassini ISS") + ) + + assert result.status == "success" + assert result.count > 0 + + async def test_count_with_mission(self): + """Counting observations for a mission returns a positive number.""" + tool = OPUSCountTool() + result = await tool.arun(OPUSCountInputSchema(mission="Cassini")) + + assert result.status == "success" + assert result.count > 0 + + +# --------------------------------------------------------------------------- +# OPUSGetMetadataTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestOPUSGetMetadataIntegration: + """Integration tests for OPUSGetMetadataTool against the real OPUS API.""" + + async def test_get_metadata_known_observation(self): + """Getting metadata for a known observation returns detailed data.""" + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="co-iss-n1460960653") + ) + + assert isinstance(result, OPUSGetMetadataOutputSchema) + assert result.status == "success" + assert result.opusid == "co-iss-n1460960653" + assert result.general is not None + assert len(result.general) > 0 + + async def test_get_metadata_nonexistent(self): + """Getting metadata for a nonexistent observation returns not_found or error.""" + tool = OPUSGetMetadataTool() + result = await tool.arun( + OPUSGetMetadataInputSchema(opusid="nonexistent-obs-id-xyz") + ) + + assert isinstance(result, OPUSGetMetadataOutputSchema) + assert result.status in ("not_found", "error") + + +# --------------------------------------------------------------------------- +# OPUSGetFilesTool -- integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestOPUSGetFilesIntegration: + """Integration tests for OPUSGetFilesTool against the real OPUS API.""" + + async def test_get_files_known_observation(self): + """Getting files for a known observation returns file URLs.""" + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="co-iss-n1460960653") + ) + + assert isinstance(result, OPUSGetFilesOutputSchema) + assert result.status == "success" + assert result.opusid == "co-iss-n1460960653" + + # At least one category of files should be present + has_files = ( + (result.raw_files is not None and len(result.raw_files) > 0) + or (result.calibrated_files is not None and len(result.calibrated_files) > 0) + or (result.all_file_categories is not None and len(result.all_file_categories) > 0) + or result.browse_images is not None + ) + assert has_files, "Expected at least one category of files for a known observation" + + async def test_get_files_nonexistent(self): + """Getting files for a nonexistent observation returns not_found or error.""" + tool = OPUSGetFilesTool() + result = await tool.arun( + OPUSGetFilesInputSchema(opusid="nonexistent-obs-id-xyz") + ) + + assert isinstance(result, OPUSGetFilesOutputSchema) + assert result.status in ("not_found", "error") diff --git a/tests/tools/pds/test_pds4.py b/tests/tools/pds/test_pds4.py new file mode 100644 index 0000000..f6c63f3 --- /dev/null +++ b/tests/tools/pds/test_pds4.py @@ -0,0 +1,845 @@ +"""Unit tests for PDS4 Registry tools.""" + +from unittest.mock import AsyncMock, MagicMock, patch + +import pytest + +from akd_ext.tools.pds.pds4.crawl_context_product import ( + PDS4CrawlContextProductInputSchema, + PDS4CrawlContextProductOutputSchema, + PDS4CrawlContextProductTool, +) +from akd_ext.tools.pds.pds4.get_product import ( + PDS4GetProductInputSchema, + PDS4GetProductOutputSchema, + PDS4GetProductTool, +) +from akd_ext.tools.pds.pds4.search_bundles import ( + BundleSummary, + PDS4SearchBundlesInputSchema, + PDS4SearchBundlesOutputSchema, + PDS4SearchBundlesTool, + PDS4SearchBundlesToolConfig, +) +from akd_ext.tools.pds.pds4.search_investigations import ( + InvestigationSummary, + PDS4SearchInvestigationsInputSchema, + PDS4SearchInvestigationsOutputSchema, + PDS4SearchInvestigationsTool, +) +from akd_ext.tools.pds.pds4.search_products import ( + PDS4SearchProductsInputSchema, + PDS4SearchProductsOutputSchema, + PDS4SearchProductsTool, + ProductSummary, +) +from akd_ext.tools.pds.utils.pds4_client import PDS4ClientError + +# Patch paths -- must match where PDS4Client is looked up at runtime +_SEARCH_BUNDLES_CLIENT = "akd_ext.tools.pds.pds4.search_bundles.PDS4Client" +_SEARCH_PRODUCTS_CLIENT = "akd_ext.tools.pds.pds4.search_products.PDS4Client" +_SEARCH_COLLECTIONS_CLIENT = "akd_ext.tools.pds.pds4.search_collections.PDS4Client" +_SEARCH_INVESTIGATIONS_CLIENT = "akd_ext.tools.pds.pds4.search_investigations.PDS4Client" +_SEARCH_TARGETS_CLIENT = "akd_ext.tools.pds.pds4.search_targets.PDS4Client" +_SEARCH_INSTRUMENT_HOSTS_CLIENT = "akd_ext.tools.pds.pds4.search_instrument_hosts.PDS4Client" +_SEARCH_INSTRUMENTS_CLIENT = "akd_ext.tools.pds.pds4.search_instruments.PDS4Client" +_CRAWL_CLIENT = "akd_ext.tools.pds.pds4.crawl_context_product.PDS4Client" +_GET_PRODUCT_CLIENT = "akd_ext.tools.pds.pds4.get_product.PDS4Client" + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + + +def _make_mock_product(**overrides): + """Build a mock PDS4Product with sensible defaults.""" + product = MagicMock() + product.id = overrides.get("id", "urn:nasa:pds:cassini_iss::1.0") + product.lid = overrides.get("lid", "urn:nasa:pds:cassini_iss") + product.lidvid = overrides.get("lidvid", "urn:nasa:pds:cassini_iss::1.0") + product.title = overrides.get("title", "Cassini ISS Raw Data Bundle") + + # Model objects with model_dump support + inv_area = MagicMock() + inv_area.model_dump.return_value = {"name": "Cassini-Huygens", "type": "Mission"} + product.investigation_area = overrides.get("investigation_area", inv_area) + + ident_area = MagicMock() + ident_area.model_dump.return_value = {"title": "Cassini ISS Raw Data Bundle"} + product.identification_area = overrides.get("identification_area", ident_area) + + target_id = MagicMock() + target_id.model_dump.return_value = {"name": "Saturn", "type": "Planet"} + product.target_identification = overrides.get("target_identification", target_id) + + time_coords = MagicMock() + time_coords.model_dump.return_value = { + "start_date_time": "2004-06-30T00:00:00Z", + "stop_date_time": "2017-09-15T00:00:00Z", + } + product.time_coordinates = overrides.get("time_coordinates", time_coords) + + harvest_info = MagicMock() + harvest_info.model_dump.return_value = {"node_name": "img"} + product.harvest_info = overrides.get("harvest_info", harvest_info) + + # For products search + product.ref_lid_target = overrides.get("ref_lid_target", "urn:nasa:pds:context:target:planet.saturn") + product.properties = overrides.get("properties", {}) + + # For investigations search + investigation = MagicMock() + investigation.model_dump.return_value = { + "start_date": "1997-10-15", + "stop_date": "2017-09-15", + "type": "Mission", + } + product.investigation = overrides.get("investigation", investigation) + + label_file_info = MagicMock() + label_file_info.model_dump.return_value = {"file_ref": "/data/pds4/cassini_iss/bundle.xml"} + product.label_file_info = overrides.get("label_file_info", label_file_info) + + return product + + +def _make_mock_search_response(products=None, hits=None, took=50, q="test query", facets=None): + """Build a mock PDS4SearchResponse.""" + if products is None: + products = [_make_mock_product()] + response = MagicMock() + response.summary.hits = hits if hits is not None else len(products) + response.summary.took = took + response.summary.q = q + response.data = products + response.facets = facets or [] + return response + + +def _patch_client_context(patch_path, method_name, return_value=None, side_effect=None): + """Create a patch context for a PDS4Client async context manager. + + Returns: + A tuple (patcher, setup_func) where setup_func configures the mock. + """ + patcher = patch(patch_path) + + def setup(mock_cls): + mock_instance = AsyncMock() + mock_cls.return_value.__aenter__ = AsyncMock(return_value=mock_instance) + mock_cls.return_value.__aexit__ = AsyncMock(return_value=False) + method = getattr(mock_instance, method_name) + if side_effect is not None: + method.side_effect = side_effect + else: + method.return_value = return_value + return mock_instance + + return patcher, setup + + +# --------------------------------------------------------------------------- +# PDS4SearchBundlesTool +# --------------------------------------------------------------------------- + + +class TestPDS4SearchBundlesTool: + """Tests for PDS4SearchBundlesTool.""" + + async def test_basic_search(self): + """Search with defaults returns bundles.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context(_SEARCH_BUNDLES_CLIENT, "search_bundles", mock_response) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchBundlesTool() + result = await tool.arun(PDS4SearchBundlesInputSchema()) + + assert isinstance(result, PDS4SearchBundlesOutputSchema) + assert result.total_hits == 1 + assert result.query_time_ms == 50 + assert result.query == "test query" + assert len(result.bundles) == 1 + assert isinstance(result.bundles[0], BundleSummary) + assert result.bundles[0].id == "urn:nasa:pds:cassini_iss::1.0" + + async def test_search_with_title_query(self): + """title_query is forwarded to the client.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context(_SEARCH_BUNDLES_CLIENT, "search_bundles", mock_response) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchBundlesTool() + await tool.arun(PDS4SearchBundlesInputSchema(title_query="Lunar")) + + mock_instance.search_bundles.assert_called_once() + call_kwargs = mock_instance.search_bundles.call_args.kwargs + assert call_kwargs["title_query"] == "Lunar" + + async def test_search_with_filters(self): + """All filter parameters are forwarded to the client.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context(_SEARCH_BUNDLES_CLIENT, "search_bundles", mock_response) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchBundlesTool() + await tool.arun( + PDS4SearchBundlesInputSchema( + title_query="Mars", + start_time="2020-01-01T00:00:00Z", + end_time="2023-01-01T00:00:00Z", + processing_level="Calibrated", + limit=50, + ) + ) + + call_kwargs = mock_instance.search_bundles.call_args.kwargs + assert call_kwargs["title_query"] == "Mars" + assert call_kwargs["start_time"] == "2020-01-01T00:00:00Z" + assert call_kwargs["end_time"] == "2023-01-01T00:00:00Z" + assert call_kwargs["processing_level"] == "Calibrated" + assert call_kwargs["limit"] == 50 + + async def test_search_with_facets(self): + """Facet fields are parsed and forwarded, facet response is formatted.""" + mock_facet = MagicMock() + mock_facet.property = "pds:Identification_Area.pds:title" + mock_facet.counts = {"Cassini ISS": 5, "Juno JunoCam": 3} + mock_response = _make_mock_search_response(products=[], hits=0, facets=[mock_facet]) + + patcher, setup = _patch_client_context(_SEARCH_BUNDLES_CLIENT, "search_bundles", mock_response) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchBundlesTool() + result = await tool.arun( + PDS4SearchBundlesInputSchema( + limit=0, + facet_fields="pds:Identification_Area.pds:title,lidvid", + facet_limit=50, + ) + ) + + call_kwargs = mock_instance.search_bundles.call_args.kwargs + assert call_kwargs["facet_fields"] == ["pds:Identification_Area.pds:title", "lidvid"] + assert call_kwargs["facet_limit"] == 50 + + assert "pds:Identification_Area.pds:title" in result.facets + assert result.facets["pds:Identification_Area.pds:title"]["Cassini ISS"] == 5 + + async def test_search_empty_results(self): + """Empty search results return total_hits=0 and empty bundles list.""" + mock_response = _make_mock_search_response(products=[], hits=0) + patcher, setup = _patch_client_context(_SEARCH_BUNDLES_CLIENT, "search_bundles", mock_response) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchBundlesTool() + result = await tool.arun(PDS4SearchBundlesInputSchema(title_query="nonexistent")) + + assert result.total_hits == 0 + assert result.bundles == [] + assert result.facets == {} + + async def test_search_client_error_raised(self): + """PDS4ClientError is re-raised.""" + patcher, setup = _patch_client_context( + _SEARCH_BUNDLES_CLIENT, "search_bundles", side_effect=PDS4ClientError("API timeout") + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchBundlesTool() + with pytest.raises(PDS4ClientError, match="API timeout"): + await tool.arun(PDS4SearchBundlesInputSchema()) + + async def test_search_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + patcher, setup = _patch_client_context( + _SEARCH_BUNDLES_CLIENT, "search_bundles", side_effect=TypeError("bad type") + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchBundlesTool() + with pytest.raises(RuntimeError, match="Internal error during bundle search"): + await tool.arun(PDS4SearchBundlesInputSchema()) + + async def test_search_bundle_fields_populated(self): + """Bundle summary fields are populated from product model_dump.""" + product = _make_mock_product( + id="urn:nasa:pds:lro_lroc::1.0", + lid="urn:nasa:pds:lro_lroc", + lidvid="urn:nasa:pds:lro_lroc::1.0", + title="LRO LROC Data Bundle", + ) + mock_response = _make_mock_search_response(products=[product]) + patcher, setup = _patch_client_context(_SEARCH_BUNDLES_CLIENT, "search_bundles", mock_response) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchBundlesTool() + result = await tool.arun(PDS4SearchBundlesInputSchema()) + + bundle = result.bundles[0] + assert bundle.id == "urn:nasa:pds:lro_lroc::1.0" + assert bundle.lid == "urn:nasa:pds:lro_lroc" + assert bundle.title == "LRO LROC Data Bundle" + assert bundle.investigation_area is not None + assert bundle.time_coordinates is not None + + +# --------------------------------------------------------------------------- +# PDS4SearchProductsTool +# --------------------------------------------------------------------------- + + +class TestPDS4SearchProductsTool: + """Tests for PDS4SearchProductsTool.""" + + async def test_basic_search(self): + """Search with defaults returns products.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context(_SEARCH_PRODUCTS_CLIENT, "search_products_advanced", mock_response) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchProductsTool() + result = await tool.arun(PDS4SearchProductsInputSchema()) + + assert isinstance(result, PDS4SearchProductsOutputSchema) + assert result.total_hits == 1 + assert len(result.products) == 1 + + async def test_search_with_keywords(self): + """Keywords filter is forwarded to the client.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context(_SEARCH_PRODUCTS_CLIENT, "search_products_advanced", mock_response) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchProductsTool() + await tool.arun(PDS4SearchProductsInputSchema(keywords="HiRISE")) + + call_kwargs = mock_instance.search_products_advanced.call_args.kwargs + assert call_kwargs["keywords"] == "HiRISE" + + async def test_search_with_bbox_and_target(self): + """Bounding box and target filters are forwarded.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context(_SEARCH_PRODUCTS_CLIENT, "search_products_advanced", mock_response) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchProductsTool() + await tool.arun( + PDS4SearchProductsInputSchema( + bbox_north=45.0, + bbox_south=-45.0, + bbox_east=180.0, + bbox_west=-180.0, + ref_lid_target="urn:nasa:pds:context:target:planet.mars", + ) + ) + + call_kwargs = mock_instance.search_products_advanced.call_args.kwargs + assert call_kwargs["bbox_north"] == 45.0 + assert call_kwargs["bbox_south"] == -45.0 + assert call_kwargs["bbox_east"] == 180.0 + assert call_kwargs["bbox_west"] == -180.0 + assert call_kwargs["ref_lid_target"] == "urn:nasa:pds:context:target:planet.mars" + + async def test_search_with_temporal_and_processing(self): + """Temporal and processing level filters are forwarded.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context(_SEARCH_PRODUCTS_CLIENT, "search_products_advanced", mock_response) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchProductsTool() + await tool.arun( + PDS4SearchProductsInputSchema( + start_time="2020-01-01T00:00:00Z", + end_time="2021-01-01T00:00:00Z", + processing_level="Raw", + limit=50, + ) + ) + + call_kwargs = mock_instance.search_products_advanced.call_args.kwargs + assert call_kwargs["start_time"] == "2020-01-01T00:00:00Z" + assert call_kwargs["end_time"] == "2021-01-01T00:00:00Z" + assert call_kwargs["processing_level"] == "Raw" + assert call_kwargs["limit"] == 50 + + async def test_search_empty_results(self): + """Empty search results return total_hits=0 and empty products list.""" + mock_response = _make_mock_search_response(products=[], hits=0) + patcher, setup = _patch_client_context(_SEARCH_PRODUCTS_CLIENT, "search_products_advanced", mock_response) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchProductsTool() + result = await tool.arun(PDS4SearchProductsInputSchema(keywords="nonexistent")) + + assert result.total_hits == 0 + assert result.products == [] + + async def test_search_with_processing_level_in_properties(self): + """Processing level extracted from product properties.""" + product = _make_mock_product( + properties={ + "pds:Primary_Result_Summary.pds:processing_level": ["Calibrated"], + } + ) + mock_response = _make_mock_search_response(products=[product]) + patcher, setup = _patch_client_context(_SEARCH_PRODUCTS_CLIENT, "search_products_advanced", mock_response) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchProductsTool() + result = await tool.arun(PDS4SearchProductsInputSchema()) + + assert result.products[0].processing_level == "Calibrated" + + async def test_search_client_error_raised(self): + """PDS4ClientError is re-raised.""" + patcher, setup = _patch_client_context( + _SEARCH_PRODUCTS_CLIENT, "search_products_advanced", side_effect=PDS4ClientError("connection refused") + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchProductsTool() + with pytest.raises(PDS4ClientError, match="connection refused"): + await tool.arun(PDS4SearchProductsInputSchema()) + + async def test_search_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + patcher, setup = _patch_client_context( + _SEARCH_PRODUCTS_CLIENT, "search_products_advanced", side_effect=KeyError("missing") + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchProductsTool() + with pytest.raises(RuntimeError, match="Internal error during product search"): + await tool.arun(PDS4SearchProductsInputSchema()) + + +# --------------------------------------------------------------------------- +# PDS4SearchInvestigationsTool +# --------------------------------------------------------------------------- + + +class TestPDS4SearchInvestigationsTool: + """Tests for PDS4SearchInvestigationsTool.""" + + async def test_basic_search(self): + """Search with defaults returns investigations.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context( + _SEARCH_INVESTIGATIONS_CLIENT, "search_context_investigations", mock_response + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchInvestigationsTool() + result = await tool.arun(PDS4SearchInvestigationsInputSchema()) + + assert isinstance(result, PDS4SearchInvestigationsOutputSchema) + assert result.total_hits == 1 + assert len(result.investigations) == 1 + assert isinstance(result.investigations[0], InvestigationSummary) + + async def test_search_with_keywords(self): + """Keywords filter is forwarded to the client.""" + mock_response = _make_mock_search_response() + patcher, setup = _patch_client_context( + _SEARCH_INVESTIGATIONS_CLIENT, "search_context_investigations", mock_response + ) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchInvestigationsTool() + await tool.arun(PDS4SearchInvestigationsInputSchema(keywords="mars rover")) + + call_kwargs = mock_instance.search_context_investigations.call_args.kwargs + assert call_kwargs["keywords"] == "mars rover" + + async def test_search_with_limit(self): + """Limit parameter is forwarded to the client.""" + mock_response = _make_mock_search_response(products=[], hits=0) + patcher, setup = _patch_client_context( + _SEARCH_INVESTIGATIONS_CLIENT, "search_context_investigations", mock_response + ) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4SearchInvestigationsTool() + await tool.arun(PDS4SearchInvestigationsInputSchema(limit=50)) + + call_kwargs = mock_instance.search_context_investigations.call_args.kwargs + assert call_kwargs["limit"] == 50 + + async def test_search_empty_results(self): + """Empty search results return total_hits=0 and empty investigations list.""" + mock_response = _make_mock_search_response(products=[], hits=0) + patcher, setup = _patch_client_context( + _SEARCH_INVESTIGATIONS_CLIENT, "search_context_investigations", mock_response + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchInvestigationsTool() + result = await tool.arun(PDS4SearchInvestigationsInputSchema(keywords="nonexistent")) + + assert result.total_hits == 0 + assert result.investigations == [] + + async def test_search_investigation_fields_populated(self): + """Investigation summary fields are populated from the product.""" + product = _make_mock_product( + id="urn:nasa:pds:context:investigation:mission.juno", + lid="urn:nasa:pds:context:investigation:mission.juno", + title="Juno Mission", + ) + mock_response = _make_mock_search_response(products=[product]) + patcher, setup = _patch_client_context( + _SEARCH_INVESTIGATIONS_CLIENT, "search_context_investigations", mock_response + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchInvestigationsTool() + result = await tool.arun(PDS4SearchInvestigationsInputSchema()) + + inv = result.investigations[0] + assert inv.id == "urn:nasa:pds:context:investigation:mission.juno" + assert inv.title == "Juno Mission" + assert inv.investigation is not None + assert inv.label_file_info is not None + + async def test_search_client_error_raised(self): + """PDS4ClientError is re-raised.""" + patcher, setup = _patch_client_context( + _SEARCH_INVESTIGATIONS_CLIENT, + "search_context_investigations", + side_effect=PDS4ClientError("server error"), + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchInvestigationsTool() + with pytest.raises(PDS4ClientError, match="server error"): + await tool.arun(PDS4SearchInvestigationsInputSchema()) + + async def test_search_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + patcher, setup = _patch_client_context( + _SEARCH_INVESTIGATIONS_CLIENT, + "search_context_investigations", + side_effect=OSError("network down"), + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4SearchInvestigationsTool() + with pytest.raises(RuntimeError, match="Internal error during investigation search"): + await tool.arun(PDS4SearchInvestigationsInputSchema()) + + +# --------------------------------------------------------------------------- +# PDS4GetProductTool +# --------------------------------------------------------------------------- + + +class TestPDS4GetProductTool: + """Tests for PDS4GetProductTool.""" + + async def test_get_product_basic(self): + """Get a product by URN returns raw product data.""" + mock_product_data = { + "id": "urn:nasa:pds:context:investigation:mission.juno", + "title": "Juno Mission", + "investigations": [{"id": "urn:nasa:pds:context:investigation:mission.juno"}], + } + patcher, setup = _patch_client_context(_GET_PRODUCT_CLIENT, "get_product", mock_product_data) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4GetProductTool() + result = await tool.arun( + PDS4GetProductInputSchema(urn="urn:nasa:pds:context:investigation:mission.juno") + ) + + assert isinstance(result, PDS4GetProductOutputSchema) + assert result.product["id"] == "urn:nasa:pds:context:investigation:mission.juno" + assert result.product["title"] == "Juno Mission" + + async def test_get_product_urn_forwarded(self): + """URN is forwarded to the client.""" + patcher, setup = _patch_client_context(_GET_PRODUCT_CLIENT, "get_product", {"id": "test"}) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4GetProductTool() + await tool.arun(PDS4GetProductInputSchema(urn="urn:nasa:pds:cassini_iss")) + + mock_instance.get_product.assert_called_once_with("urn:nasa:pds:cassini_iss") + + async def test_get_product_complex_data(self): + """Complex product data is returned as-is.""" + mock_data = { + "id": "urn:nasa:pds:cassini_iss::1.0", + "title": "Cassini ISS Raw Data", + "properties": { + "pds:Identification_Area.pds:title": ["Cassini ISS Raw Data"], + "pds:Time_Coordinates.pds:start_date_time": ["2004-06-30T00:00:00Z"], + }, + "investigations": [{"id": "urn:nasa:pds:context:investigation:mission.cassini-huygens"}], + "targets": [{"id": "urn:nasa:pds:context:target:planet.saturn"}], + } + patcher, setup = _patch_client_context(_GET_PRODUCT_CLIENT, "get_product", mock_data) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4GetProductTool() + result = await tool.arun(PDS4GetProductInputSchema(urn="urn:nasa:pds:cassini_iss")) + + assert result.product["properties"]["pds:Identification_Area.pds:title"] == ["Cassini ISS Raw Data"] + assert len(result.product["investigations"]) == 1 + assert len(result.product["targets"]) == 1 + + async def test_get_product_client_error_raised(self): + """PDS4ClientError is re-raised.""" + patcher, setup = _patch_client_context( + _GET_PRODUCT_CLIENT, "get_product", side_effect=PDS4ClientError("product not found") + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4GetProductTool() + with pytest.raises(PDS4ClientError, match="product not found"): + await tool.arun(PDS4GetProductInputSchema(urn="urn:nasa:pds:nonexistent:bundle")) + + async def test_get_product_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + patcher, setup = _patch_client_context( + _GET_PRODUCT_CLIENT, "get_product", side_effect=IOError("disk error") + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4GetProductTool() + with pytest.raises(RuntimeError, match="Internal error during product retrieval"): + await tool.arun(PDS4GetProductInputSchema(urn="urn:nasa:pds:cassini_iss")) + + +# --------------------------------------------------------------------------- +# PDS4CrawlContextProductTool +# --------------------------------------------------------------------------- + + +class TestPDS4CrawlContextProductTool: + """Tests for PDS4CrawlContextProductTool.""" + + async def test_crawl_basic(self): + """Crawl returns associated context products.""" + mock_crawl_result = { + "investigations": { + "urn:nasa:pds:context:investigation:mission.juno": { + "id": "urn:nasa:pds:context:investigation:mission.juno", + "title": "Juno Mission", + } + }, + "observing_system_components": { + "urn:nasa:pds:context:instrument:juno.jiram": { + "id": "urn:nasa:pds:context:instrument:juno.jiram", + "title": "JIRAM", + } + }, + "targets": { + "urn:nasa:pds:context:target:planet.jupiter": { + "id": "urn:nasa:pds:context:target:planet.jupiter", + "title": "Jupiter", + } + }, + } + patcher, setup = _patch_client_context(_CRAWL_CLIENT, "crawl_context_product", mock_crawl_result) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4CrawlContextProductTool() + result = await tool.arun( + PDS4CrawlContextProductInputSchema(urn="urn:nasa:pds:context:investigation:mission.juno") + ) + + assert isinstance(result, PDS4CrawlContextProductOutputSchema) + assert "urn:nasa:pds:context:investigation:mission.juno" in result.investigations + assert result.investigations["urn:nasa:pds:context:investigation:mission.juno"]["title"] == "Juno Mission" + assert "urn:nasa:pds:context:instrument:juno.jiram" in result.observing_system_components + assert "urn:nasa:pds:context:target:planet.jupiter" in result.targets + assert result.errors is None + + async def test_crawl_urn_forwarded(self): + """URN is forwarded to the client.""" + mock_result = {"investigations": {}, "observing_system_components": {}, "targets": {}} + patcher, setup = _patch_client_context(_CRAWL_CLIENT, "crawl_context_product", mock_result) + with patcher as MockClient: + mock_instance = setup(MockClient) + + tool = PDS4CrawlContextProductTool() + await tool.arun( + PDS4CrawlContextProductInputSchema(urn="urn:nasa:pds:context:target:planet.mars") + ) + + mock_instance.crawl_context_product.assert_called_once_with("urn:nasa:pds:context:target:planet.mars") + + async def test_crawl_with_errors(self): + """Crawl result with errors passes them through.""" + mock_result = { + "investigations": {}, + "observing_system_components": {}, + "targets": {}, + "errors": ["Failed to fetch urn:nasa:pds:context:instrument:juno.jade: connection timeout"], + } + patcher, setup = _patch_client_context(_CRAWL_CLIENT, "crawl_context_product", mock_result) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4CrawlContextProductTool() + result = await tool.arun( + PDS4CrawlContextProductInputSchema(urn="urn:nasa:pds:context:investigation:mission.juno") + ) + + assert result.errors is not None + assert len(result.errors) == 1 + assert "connection timeout" in result.errors[0] + + async def test_crawl_empty_results(self): + """Crawl with no related products returns empty dicts.""" + mock_result = {"investigations": {}, "observing_system_components": {}, "targets": {}} + patcher, setup = _patch_client_context(_CRAWL_CLIENT, "crawl_context_product", mock_result) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4CrawlContextProductTool() + result = await tool.arun( + PDS4CrawlContextProductInputSchema(urn="urn:nasa:pds:context:target:planet.pluto") + ) + + assert result.investigations == {} + assert result.observing_system_components == {} + assert result.targets == {} + assert result.errors is None + + async def test_crawl_client_error_raised(self): + """PDS4ClientError is re-raised.""" + patcher, setup = _patch_client_context( + _CRAWL_CLIENT, "crawl_context_product", side_effect=PDS4ClientError("invalid URN") + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4CrawlContextProductTool() + with pytest.raises(PDS4ClientError, match="invalid URN"): + await tool.arun(PDS4CrawlContextProductInputSchema(urn="urn:nasa:pds:context:target:planet.mars")) + + async def test_crawl_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + patcher, setup = _patch_client_context( + _CRAWL_CLIENT, "crawl_context_product", side_effect=ValueError("unexpected") + ) + with patcher as MockClient: + setup(MockClient) + + tool = PDS4CrawlContextProductTool() + with pytest.raises(RuntimeError, match="Internal error during context product crawl"): + await tool.arun(PDS4CrawlContextProductInputSchema(urn="urn:nasa:pds:context:target:planet.mars")) + + +# --------------------------------------------------------------------------- +# Schema validation tests +# --------------------------------------------------------------------------- + + +class TestPDS4SchemaValidation: + """Tests for PDS4 input schema validation.""" + + def test_bundles_input_defaults(self): + """SearchBundlesInputSchema has correct defaults.""" + schema = PDS4SearchBundlesInputSchema() + assert schema.title_query is None + assert schema.start_time is None + assert schema.end_time is None + assert schema.processing_level is None + assert schema.limit == 0 + assert schema.facet_fields is None + assert schema.facet_limit == 25 + + def test_bundles_input_limit_bounds(self): + """Bundle limit must be between 0 and 100.""" + with pytest.raises(Exception): + PDS4SearchBundlesInputSchema(limit=-1) + with pytest.raises(Exception): + PDS4SearchBundlesInputSchema(limit=101) + + def test_bundles_input_valid_processing_level(self): + """Valid processing levels are accepted.""" + schema = PDS4SearchBundlesInputSchema(processing_level="Raw") + assert schema.processing_level == "Raw" + schema = PDS4SearchBundlesInputSchema(processing_level="Calibrated") + assert schema.processing_level == "Calibrated" + schema = PDS4SearchBundlesInputSchema(processing_level="Derived") + assert schema.processing_level == "Derived" + + def test_bundles_input_invalid_processing_level(self): + """Invalid processing level raises validation error.""" + with pytest.raises(Exception): + PDS4SearchBundlesInputSchema(processing_level="invalid") + + def test_products_input_defaults(self): + """SearchProductsInputSchema has correct defaults.""" + schema = PDS4SearchProductsInputSchema() + assert schema.keywords is None + assert schema.start_time is None + assert schema.end_time is None + assert schema.processing_level is None + assert schema.bbox_north is None + assert schema.bbox_south is None + assert schema.bbox_east is None + assert schema.bbox_west is None + assert schema.ref_lid_target is None + assert schema.limit == 100 + + def test_products_input_bbox_bounds(self): + """Bounding box coordinates must be within valid range.""" + with pytest.raises(Exception): + PDS4SearchProductsInputSchema(bbox_north=91) + with pytest.raises(Exception): + PDS4SearchProductsInputSchema(bbox_south=-91) + with pytest.raises(Exception): + PDS4SearchProductsInputSchema(bbox_east=181) + with pytest.raises(Exception): + PDS4SearchProductsInputSchema(bbox_west=-181) + + def test_investigations_input_defaults(self): + """SearchInvestigationsInputSchema has correct defaults.""" + schema = PDS4SearchInvestigationsInputSchema() + assert schema.keywords is None + assert schema.limit == 10 + + def test_get_product_input_requires_urn(self): + """GetProductInputSchema requires urn.""" + with pytest.raises(Exception): + PDS4GetProductInputSchema() + + def test_crawl_input_requires_urn(self): + """CrawlContextProductInputSchema requires urn.""" + with pytest.raises(Exception): + PDS4CrawlContextProductInputSchema() diff --git a/tests/tools/pds/test_pds4_integration.py b/tests/tools/pds/test_pds4_integration.py new file mode 100644 index 0000000..81eccca --- /dev/null +++ b/tests/tools/pds/test_pds4_integration.py @@ -0,0 +1,358 @@ +"""Integration tests for PDS4 Registry tools using the real PDS4 API.""" + +import pytest + +from akd_ext.tools.pds.pds4.search_bundles import ( + PDS4SearchBundlesInputSchema, + PDS4SearchBundlesOutputSchema, + PDS4SearchBundlesTool, +) +from akd_ext.tools.pds.pds4.search_products import ( + PDS4SearchProductsInputSchema, + PDS4SearchProductsOutputSchema, + PDS4SearchProductsTool, +) +from akd_ext.tools.pds.pds4.search_collections import ( + PDS4SearchCollectionsInputSchema, + PDS4SearchCollectionsOutputSchema, + PDS4SearchCollectionsTool, +) +from akd_ext.tools.pds.pds4.search_investigations import ( + PDS4SearchInvestigationsInputSchema, + PDS4SearchInvestigationsOutputSchema, + PDS4SearchInvestigationsTool, +) +from akd_ext.tools.pds.pds4.search_targets import ( + PDS4SearchTargetsInputSchema, + PDS4SearchTargetsOutputSchema, + PDS4SearchTargetsTool, +) +from akd_ext.tools.pds.pds4.search_instrument_hosts import ( + PDS4SearchInstrumentHostsInputSchema, + PDS4SearchInstrumentHostsOutputSchema, + PDS4SearchInstrumentHostsTool, +) +from akd_ext.tools.pds.pds4.search_instruments import ( + PDS4SearchInstrumentsInputSchema, + PDS4SearchInstrumentsOutputSchema, + PDS4SearchInstrumentsTool, +) +from akd_ext.tools.pds.pds4.crawl_context_product import ( + PDS4CrawlContextProductInputSchema, + PDS4CrawlContextProductOutputSchema, + PDS4CrawlContextProductTool, +) +from akd_ext.tools.pds.pds4.get_product import ( + PDS4GetProductInputSchema, + PDS4GetProductOutputSchema, + PDS4GetProductTool, +) + + +# --------------------------------------------------------------------------- +# PDS4SearchBundlesTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4SearchBundlesIntegration: + """Integration tests for PDS4SearchBundlesTool against the real PDS4 API.""" + + async def test_search_all_bundles(self): + """Search with limit=5 returns bundles and a positive total_hits.""" + tool = PDS4SearchBundlesTool() + result = await tool.arun(PDS4SearchBundlesInputSchema(limit=5)) + + assert isinstance(result, PDS4SearchBundlesOutputSchema) + assert result.total_hits > 0 + assert len(result.bundles) <= 5 + assert len(result.bundles) > 0 + for bundle in result.bundles: + assert bundle.id + + async def test_search_bundles_by_title(self): + """Search with title_query='Mars' returns Mars-related bundles.""" + tool = PDS4SearchBundlesTool() + result = await tool.arun(PDS4SearchBundlesInputSchema(title_query="Mars", limit=5)) + + assert result.total_hits > 0 + assert len(result.bundles) > 0 + # At least one bundle should have 'mars' in its title or id + has_mars = any( + "mars" in (bundle.title or "").lower() or "mars" in bundle.id.lower() for bundle in result.bundles + ) + assert has_mars, f"Expected at least one Mars-related bundle, got: {[b.title for b in result.bundles]}" + + async def test_search_bundles_facets_only(self): + """Search with limit=0 and facet_fields returns facets without bundles.""" + tool = PDS4SearchBundlesTool() + result = await tool.arun( + PDS4SearchBundlesInputSchema( + limit=0, + facet_fields="pds:Identification_Area.pds:title", + ) + ) + + assert result.total_hits > 0 + assert len(result.bundles) == 0 + assert len(result.facets) > 0 + assert "pds:Identification_Area.pds:title" in result.facets + + +# --------------------------------------------------------------------------- +# PDS4SearchProductsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4SearchProductsIntegration: + """Integration tests for PDS4SearchProductsTool against the real PDS4 API.""" + + async def test_search_products(self): + """Search with keywords='Mars' returns products.""" + tool = PDS4SearchProductsTool() + result = await tool.arun(PDS4SearchProductsInputSchema(keywords="Mars", limit=5)) + + assert isinstance(result, PDS4SearchProductsOutputSchema) + assert result.total_hits > 0 + assert len(result.products) <= 5 + assert len(result.products) > 0 + for product in result.products: + assert product.id + + async def test_search_products_by_target(self): + """Search by ref_lid_target for Mars returns Mars-related products.""" + tool = PDS4SearchProductsTool() + result = await tool.arun( + PDS4SearchProductsInputSchema( + ref_lid_target="urn:nasa:pds:context:target:planet.mars", + limit=5, + ) + ) + + assert isinstance(result, PDS4SearchProductsOutputSchema) + assert result.total_hits > 0 + assert len(result.products) <= 5 + assert len(result.products) > 0 + + +# --------------------------------------------------------------------------- +# PDS4SearchCollectionsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4SearchCollectionsIntegration: + """Integration tests for PDS4SearchCollectionsTool against the real PDS4 API.""" + + async def test_search_all_collections(self): + """Search with default params returns collections.""" + tool = PDS4SearchCollectionsTool() + result = await tool.arun(PDS4SearchCollectionsInputSchema(limit=5)) + + assert isinstance(result, PDS4SearchCollectionsOutputSchema) + assert result.total_hits > 0 + assert len(result.collections) <= 5 + assert len(result.collections) > 0 + for collection in result.collections: + assert collection.id + + async def test_search_collections_by_target(self): + """Search by ref_lid_target for Mars returns Mars-related collections.""" + tool = PDS4SearchCollectionsTool() + result = await tool.arun( + PDS4SearchCollectionsInputSchema( + ref_lid_target="urn:nasa:pds:context:target:planet.mars", + limit=5, + ) + ) + + assert result.total_hits > 0 + assert len(result.collections) > 0 + + +# --------------------------------------------------------------------------- +# PDS4SearchInvestigationsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4SearchInvestigationsIntegration: + """Integration tests for PDS4SearchInvestigationsTool against the real PDS4 API.""" + + async def test_search_all_investigations(self): + """Search with limit=5 returns investigations.""" + tool = PDS4SearchInvestigationsTool() + result = await tool.arun(PDS4SearchInvestigationsInputSchema(limit=5)) + + assert isinstance(result, PDS4SearchInvestigationsOutputSchema) + assert result.total_hits > 0 + assert len(result.investigations) <= 5 + assert len(result.investigations) > 0 + for investigation in result.investigations: + assert investigation.id + + async def test_search_investigations_by_keyword(self): + """Search with keywords='Juno' returns Juno-related investigations.""" + tool = PDS4SearchInvestigationsTool() + result = await tool.arun(PDS4SearchInvestigationsInputSchema(keywords="Juno", limit=5)) + + assert result.total_hits > 0 + assert len(result.investigations) > 0 + # At least one investigation should be Juno-related + has_juno = any( + "juno" in (inv.title or "").lower() or "juno" in inv.id.lower() for inv in result.investigations + ) + assert has_juno, ( + f"Expected at least one Juno-related investigation, got: {[i.title for i in result.investigations]}" + ) + + +# --------------------------------------------------------------------------- +# PDS4SearchTargetsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4SearchTargetsIntegration: + """Integration tests for PDS4SearchTargetsTool against the real PDS4 API.""" + + async def test_search_all_targets(self): + """Search with limit=5 returns targets.""" + tool = PDS4SearchTargetsTool() + result = await tool.arun(PDS4SearchTargetsInputSchema(limit=5)) + + assert isinstance(result, PDS4SearchTargetsOutputSchema) + assert result.total_hits > 0 + assert len(result.targets) <= 5 + assert len(result.targets) > 0 + for target in result.targets: + assert target.id + + async def test_search_targets_by_type(self): + """Search with target_type='Planet' returns planet targets.""" + tool = PDS4SearchTargetsTool() + result = await tool.arun(PDS4SearchTargetsInputSchema(target_type="Planet", limit=5)) + + assert result.total_hits > 0 + assert len(result.targets) <= 5 + assert len(result.targets) > 0 + + +# --------------------------------------------------------------------------- +# PDS4SearchInstrumentHostsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4SearchInstrumentHostsIntegration: + """Integration tests for PDS4SearchInstrumentHostsTool against the real PDS4 API.""" + + async def test_search_all_instrument_hosts(self): + """Search with limit=5 returns instrument hosts.""" + tool = PDS4SearchInstrumentHostsTool() + result = await tool.arun(PDS4SearchInstrumentHostsInputSchema(limit=5)) + + assert isinstance(result, PDS4SearchInstrumentHostsOutputSchema) + assert result.total_hits > 0 + assert len(result.instrument_hosts) <= 5 + assert len(result.instrument_hosts) > 0 + for host in result.instrument_hosts: + assert host.id + + async def test_search_instrument_hosts_by_type(self): + """Search with instrument_host_type='Spacecraft' returns spacecraft hosts.""" + tool = PDS4SearchInstrumentHostsTool() + result = await tool.arun( + PDS4SearchInstrumentHostsInputSchema(instrument_host_type="Spacecraft", limit=5) + ) + + assert result.total_hits > 0 + assert len(result.instrument_hosts) > 0 + + +# --------------------------------------------------------------------------- +# PDS4SearchInstrumentsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4SearchInstrumentsIntegration: + """Integration tests for PDS4SearchInstrumentsTool against the real PDS4 API.""" + + async def test_search_all_instruments(self): + """Search with limit=5 returns instruments.""" + tool = PDS4SearchInstrumentsTool() + result = await tool.arun(PDS4SearchInstrumentsInputSchema(limit=5)) + + assert isinstance(result, PDS4SearchInstrumentsOutputSchema) + assert result.total_hits > 0 + assert len(result.instruments) <= 5 + assert len(result.instruments) > 0 + for instrument in result.instruments: + assert instrument.id + + async def test_search_instruments_by_type(self): + """Search with instrument_type='Imager' returns imager instruments.""" + tool = PDS4SearchInstrumentsTool() + result = await tool.arun(PDS4SearchInstrumentsInputSchema(instrument_type="Imager", limit=5)) + + assert result.total_hits > 0 + assert len(result.instruments) <= 5 + assert len(result.instruments) > 0 + + +# --------------------------------------------------------------------------- +# PDS4CrawlContextProductTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4CrawlContextProductIntegration: + """Integration tests for PDS4CrawlContextProductTool against the real PDS4 API.""" + + async def test_crawl_investigation(self): + """Crawling the Juno investigation returns associated context products.""" + tool = PDS4CrawlContextProductTool() + result = await tool.arun( + PDS4CrawlContextProductInputSchema(urn="urn:nasa:pds:context:investigation:mission.juno") + ) + + assert isinstance(result, PDS4CrawlContextProductOutputSchema) + # Juno should have associated targets and/or observing system components + has_related = ( + len(result.targets) > 0 or len(result.observing_system_components) > 0 or len(result.investigations) > 0 + ) + assert has_related, "Expected Juno investigation to have related context products" + + +# --------------------------------------------------------------------------- +# PDS4GetProductTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDS4GetProductIntegration: + """Integration tests for PDS4GetProductTool against the real PDS4 API.""" + + async def test_get_known_product(self): + """Get the Juno investigation product by URN returns a populated product dict.""" + tool = PDS4GetProductTool() + result = await tool.arun( + PDS4GetProductInputSchema(urn="urn:nasa:pds:context:investigation:mission.juno") + ) + + assert isinstance(result, PDS4GetProductOutputSchema) + assert isinstance(result.product, dict) + assert len(result.product) > 0 + + async def test_get_target_product(self): + """Get the Mars target product by URN returns a populated product dict.""" + tool = PDS4GetProductTool() + result = await tool.arun( + PDS4GetProductInputSchema(urn="urn:nasa:pds:context:target:planet.mars") + ) + + assert isinstance(result, PDS4GetProductOutputSchema) + assert isinstance(result.product, dict) + assert len(result.product) > 0 diff --git a/tests/tools/pds/test_pds_catalog.py b/tests/tools/pds/test_pds_catalog.py new file mode 100644 index 0000000..cb0495b --- /dev/null +++ b/tests/tools/pds/test_pds_catalog.py @@ -0,0 +1,918 @@ +"""Unit tests for PDS Catalog tools.""" + +from datetime import date +from unittest.mock import AsyncMock, patch + +import pytest + +from akd_ext.tools.pds.pds_catalog.get_dataset import ( + PDSCatalogGetDatasetInputSchema, + PDSCatalogGetDatasetOutputSchema, + PDSCatalogGetDatasetTool, + PDSCatalogGetDatasetToolConfig, +) +from akd_ext.tools.pds.pds_catalog.list_missions import ( + PDSCatalogListMissionsInputSchema, + PDSCatalogListMissionsOutputSchema, + PDSCatalogListMissionsTool, + PDSCatalogListMissionsToolConfig, + PDSCatalogMissionItem, +) +from akd_ext.tools.pds.pds_catalog.list_targets import ( + PDSCatalogListTargetsInputSchema, + PDSCatalogListTargetsOutputSchema, + PDSCatalogListTargetsTool, + PDSCatalogListTargetsToolConfig, + PDSCatalogTargetItem, +) +from akd_ext.tools.pds.pds_catalog.search import ( + PDSCatalogSearchInputSchema, + PDSCatalogSearchOutputSchema, + PDSCatalogSearchTool, + PDSCatalogSearchToolConfig, +) +from akd_ext.tools.pds.pds_catalog.stats import ( + PDSCatalogStatsInputSchema, + PDSCatalogStatsOutputSchema, + PDSCatalogStatsTool, + PDSCatalogStatsToolConfig, +) +from akd_ext.tools.pds.utils.pds_catalog_api_models import DatasetType, PDSDataset, PDSNode, PDSVersion +from akd_ext.tools.pds.utils.pds_catalog_client import PDSCatalogClientError + +# Patch paths – must match where PDSCatalogClient is looked up at runtime +_SEARCH_CLIENT = "akd_ext.tools.pds.pds_catalog.search.PDSCatalogClient" +_GET_DATASET_CLIENT = "akd_ext.tools.pds.pds_catalog.get_dataset.PDSCatalogClient" +_LIST_MISSIONS_CLIENT = "akd_ext.tools.pds.pds_catalog.list_missions.PDSCatalogClient" +_LIST_TARGETS_CLIENT = "akd_ext.tools.pds.pds_catalog.list_targets.PDSCatalogClient" +_STATS_CLIENT = "akd_ext.tools.pds.pds_catalog.stats.PDSCatalogClient" + + +# --------------------------------------------------------------------------- +# Fixtures +# --------------------------------------------------------------------------- + + +def _make_dataset(**overrides) -> PDSDataset: + """Helper to build a PDSDataset with sensible defaults.""" + defaults = { + "id": "urn:nasa:pds:cassini_iss::1.0", + "title": "Cassini ISS Images of Saturn", + "description": "Images from the Cassini ISS camera", + "node": PDSNode.IMG, + "pds_version": PDSVersion.PDS4, + "type": DatasetType.BUNDLE, + "missions": ["Cassini"], + "targets": ["Saturn"], + "instruments": ["ISS"], + "instrument_hosts": ["Cassini Orbiter"], + "data_types": ["images"], + "start_date": date(2004, 6, 30), + "stop_date": date(2017, 9, 15), + "browse_url": "https://pds.nasa.gov/browse/cassini_iss", + "source_url": "https://pds.nasa.gov/source/cassini_iss", + "keywords": ["saturn", "rings", "imaging"], + "processing_level": "Raw", + } + defaults.update(overrides) + return PDSDataset(**defaults) + + +@pytest.fixture +def sample_dataset(): + return _make_dataset() + + +@pytest.fixture +def sample_dataset_pds3(): + return _make_dataset( + id="GO_0017", + title="Galileo SSI Jupiter Images", + description="Galileo SSI images of Jupiter", + node=PDSNode.IMG, + pds_version=PDSVersion.PDS3, + type=DatasetType.VOLUME, + missions=["Galileo"], + targets=["Jupiter"], + instruments=["SSI"], + instrument_hosts=["Galileo Orbiter"], + start_date=date(1996, 6, 1), + stop_date=date(2003, 9, 21), + browse_url="https://pds.nasa.gov/browse/GO_0017", + source_url="https://pds.nasa.gov/source/GO_0017", + keywords=["jupiter", "galileo"], + processing_level="Calibrated", + ) + + +@pytest.fixture +def sample_datasets(sample_dataset, sample_dataset_pds3): + return [sample_dataset, sample_dataset_pds3] + + +# --------------------------------------------------------------------------- +# PDSCatalogSearchTool +# --------------------------------------------------------------------------- + + +class TestPDSCatalogSearchTool: + """Tests for PDSCatalogSearchTool.""" + + async def test_basic_search(self, sample_datasets): + """Search with no filters returns all datasets.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=(sample_datasets, 2)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema()) + + assert isinstance(result, PDSCatalogSearchOutputSchema) + assert result.status == "success" + assert result.count == 2 + assert result.total == 2 + assert result.has_more is False + assert len(result.datasets) == 2 + + async def test_search_with_query(self, sample_dataset): + """Search with a text query is forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(query="cassini saturn")) + + mock_client.search.assert_called_once() + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["query"] == "cassini saturn" + assert result.count == 1 + + async def test_search_with_node_filter(self, sample_dataset): + """Search with node filter passes node to client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(node="img")) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["node"] == "img" + assert result.status == "success" + + async def test_search_with_mission_filter(self, sample_dataset): + """Search with mission filter passes mission to client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(mission="Cassini")) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["mission"] == "Cassini" + assert result.count == 1 + + async def test_search_with_target_filter(self, sample_dataset): + """Search with target filter passes target to client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(target="Saturn")) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["target"] == "Saturn" + + async def test_search_with_instrument_filter(self, sample_dataset): + """Search with instrument filter passes instrument to client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(instrument="ISS")) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["instrument"] == "ISS" + + async def test_search_with_pds_version_filter(self, sample_dataset): + """Search with PDS version filter passes pds_version to client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(pds_version="PDS4")) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["pds_version"] == "PDS4" + + async def test_search_with_dataset_type_filter(self, sample_dataset): + """Search with dataset type filter passes dataset_type to client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(dataset_type="bundle")) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["dataset_type"] == "bundle" + + async def test_search_with_date_filters(self, sample_dataset): + """Search with date filters parses ISO strings and passes date objects.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun( + PDSCatalogSearchInputSchema( + start_date="2005-01-01", + stop_date="2010-12-31", + ) + ) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["start_date"] == date(2005, 1, 1) + assert call_kwargs["stop_date"] == date(2010, 12, 31) + + async def test_search_invalid_date_raises_value_error(self): + """Invalid date format raises ValueError.""" + with patch(_SEARCH_CLIENT): + tool = PDSCatalogSearchTool() + with pytest.raises(ValueError, match="Invalid date format"): + await tool.arun(PDSCatalogSearchInputSchema(start_date="not-a-date")) + + async def test_search_pagination(self, sample_dataset): + """Pagination parameters (offset, limit) are forwarded and has_more computed.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + # Return 1 dataset but report 5 total to trigger has_more=True + mock_client.search = AsyncMock(return_value=([sample_dataset], 5)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(limit=1, offset=0)) + + assert result.count == 1 + assert result.total == 5 + assert result.limit == 1 + assert result.offset == 0 + assert result.has_more is True + + async def test_search_pagination_no_more(self, sample_datasets): + """has_more is False when all results are returned.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=(sample_datasets, 2)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(limit=10, offset=0)) + + assert result.has_more is False + + async def test_search_limit_capped_at_max(self, sample_datasets): + """Limit exceeding MAX_RESULTS_LIMIT (50) is capped.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=(sample_datasets, 2)) + + tool = PDSCatalogSearchTool() + # Pydantic le=50 validation prevents >50, so test with exactly 50 + result = await tool.arun(PDSCatalogSearchInputSchema(limit=50)) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["limit"] == 50 + + async def test_search_essential_fields(self, sample_dataset): + """Essential field profile returns only id, title, node, browse_url.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(fields="essential")) + + assert result.fields == "essential" + ds = result.datasets[0] + assert "id" in ds + assert "title" in ds + assert "node" in ds + assert "browse_url" in ds + # Summary/full fields should not be present + assert "missions" not in ds + assert "description" not in ds + + async def test_search_summary_fields(self, sample_dataset): + """Summary field profile includes essential + missions, targets, etc.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(fields="summary")) + + ds = result.datasets[0] + assert "id" in ds + assert "missions" in ds + assert "targets" in ds + assert "instruments" in ds + assert "pds_version" in ds + assert "type" in ds + # Description only appears in full profile + assert "description" not in ds + + async def test_search_full_fields(self, sample_dataset): + """Full field profile includes description, dates, keywords, etc.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(fields="full")) + + ds = result.datasets[0] + assert "id" in ds + assert "description" in ds + assert "start_date" in ds + assert "stop_date" in ds + assert "keywords" in ds + assert "processing_level" in ds + + async def test_search_empty_results(self): + """Empty search results return count=0 and empty datasets list.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([], 0)) + + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(query="nonexistent")) + + assert result.status == "success" + assert result.count == 0 + assert result.total == 0 + assert result.datasets == [] + assert result.has_more is False + + async def test_search_catalog_client_error(self): + """PDSCatalogClientError is re-raised.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(side_effect=PDSCatalogClientError("catalog broken")) + + tool = PDSCatalogSearchTool() + with pytest.raises(PDSCatalogClientError, match="catalog broken"): + await tool.arun(PDSCatalogSearchInputSchema()) + + async def test_search_unexpected_error_wrapped(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(side_effect=TypeError("bad type")) + + tool = PDSCatalogSearchTool() + with pytest.raises(RuntimeError, match="Internal error during catalog search"): + await tool.arun(PDSCatalogSearchInputSchema()) + + async def test_search_with_config(self, sample_dataset): + """Custom catalog_dir config is passed to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + config = PDSCatalogSearchToolConfig(catalog_dir="/custom/path") + tool = PDSCatalogSearchTool(config=config) + await tool.arun(PDSCatalogSearchInputSchema()) + + MockClient.assert_called_once_with(catalog_dir="/custom/path") + + async def test_search_all_filters_combined(self, sample_dataset): + """All filters combined are forwarded to the client.""" + with patch(_SEARCH_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.search = AsyncMock(return_value=([sample_dataset], 1)) + + tool = PDSCatalogSearchTool() + result = await tool.arun( + PDSCatalogSearchInputSchema( + query="saturn images", + node="img", + mission="Cassini", + instrument="ISS", + target="Saturn", + pds_version="PDS4", + dataset_type="bundle", + start_date="2005-01-01", + stop_date="2015-12-31", + limit=10, + offset=5, + fields="full", + ) + ) + + call_kwargs = mock_client.search.call_args.kwargs + assert call_kwargs["query"] == "saturn images" + assert call_kwargs["node"] == "img" + assert call_kwargs["mission"] == "Cassini" + assert call_kwargs["instrument"] == "ISS" + assert call_kwargs["target"] == "Saturn" + assert call_kwargs["pds_version"] == "PDS4" + assert call_kwargs["dataset_type"] == "bundle" + assert call_kwargs["start_date"] == date(2005, 1, 1) + assert call_kwargs["stop_date"] == date(2015, 12, 31) + assert call_kwargs["limit"] == 10 + assert call_kwargs["offset"] == 5 + assert result.fields == "full" + + +# --------------------------------------------------------------------------- +# PDSCatalogGetDatasetTool +# --------------------------------------------------------------------------- + + +class TestPDSCatalogGetDatasetTool: + """Tests for PDSCatalogGetDatasetTool.""" + + async def test_get_dataset_found(self, sample_dataset): + """Existing dataset returns success with full metadata.""" + with patch(_GET_DATASET_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_dataset = AsyncMock(return_value=sample_dataset) + + tool = PDSCatalogGetDatasetTool() + result = await tool.arun( + PDSCatalogGetDatasetInputSchema(dataset_id="urn:nasa:pds:cassini_iss::1.0") + ) + + assert isinstance(result, PDSCatalogGetDatasetOutputSchema) + assert result.status == "success" + assert result.dataset is not None + assert result.error is None + assert result.dataset["id"] == "urn:nasa:pds:cassini_iss::1.0" + assert result.dataset["title"] == "Cassini ISS Images of Saturn" + + async def test_get_dataset_full_fields_returned(self, sample_dataset): + """Dataset response uses the full field profile.""" + with patch(_GET_DATASET_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_dataset = AsyncMock(return_value=sample_dataset) + + tool = PDSCatalogGetDatasetTool() + result = await tool.arun( + PDSCatalogGetDatasetInputSchema(dataset_id="urn:nasa:pds:cassini_iss::1.0") + ) + + ds = result.dataset + assert "id" in ds + assert "title" in ds + assert "description" in ds + assert "missions" in ds + assert "targets" in ds + assert "instruments" in ds + assert "start_date" in ds + assert "stop_date" in ds + assert "keywords" in ds + assert "processing_level" in ds + + async def test_get_dataset_not_found(self): + """Non-existent dataset returns not_found status.""" + with patch(_GET_DATASET_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_dataset = AsyncMock(return_value=None) + + tool = PDSCatalogGetDatasetTool() + result = await tool.arun( + PDSCatalogGetDatasetInputSchema(dataset_id="nonexistent_id") + ) + + assert result.status == "not_found" + assert result.dataset is None + assert result.error is not None + assert "nonexistent_id" in result.error + + async def test_get_dataset_pds3_volume(self, sample_dataset_pds3): + """PDS3 volume dataset is retrieved successfully.""" + with patch(_GET_DATASET_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_dataset = AsyncMock(return_value=sample_dataset_pds3) + + tool = PDSCatalogGetDatasetTool() + result = await tool.arun( + PDSCatalogGetDatasetInputSchema(dataset_id="GO_0017") + ) + + assert result.status == "success" + assert result.dataset["id"] == "GO_0017" + assert result.dataset["pds_version"] == "PDS3" + assert result.dataset["type"] == "volume" + + async def test_get_dataset_catalog_client_error(self): + """PDSCatalogClientError is re-raised.""" + with patch(_GET_DATASET_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_dataset = AsyncMock(side_effect=PDSCatalogClientError("load failed")) + + tool = PDSCatalogGetDatasetTool() + with pytest.raises(PDSCatalogClientError, match="load failed"): + await tool.arun(PDSCatalogGetDatasetInputSchema(dataset_id="any")) + + async def test_get_dataset_unexpected_error(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_GET_DATASET_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_dataset = AsyncMock(side_effect=IOError("disk error")) + + tool = PDSCatalogGetDatasetTool() + with pytest.raises(RuntimeError, match="Internal error retrieving dataset"): + await tool.arun(PDSCatalogGetDatasetInputSchema(dataset_id="any")) + + async def test_get_dataset_with_config(self, sample_dataset): + """Custom catalog_dir config is passed to the client.""" + with patch(_GET_DATASET_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_dataset = AsyncMock(return_value=sample_dataset) + + config = PDSCatalogGetDatasetToolConfig(catalog_dir="/my/catalog") + tool = PDSCatalogGetDatasetTool(config=config) + await tool.arun(PDSCatalogGetDatasetInputSchema(dataset_id="any")) + + MockClient.assert_called_once_with(catalog_dir="/my/catalog") + + +# --------------------------------------------------------------------------- +# PDSCatalogListMissionsTool +# --------------------------------------------------------------------------- + + +class TestPDSCatalogListMissionsTool: + """Tests for PDSCatalogListMissionsTool.""" + + async def test_list_missions_basic(self): + """List missions returns formatted mission items.""" + mock_missions = [ + {"name": "Cassini", "count": 42, "nodes": ["img", "ppi"]}, + {"name": "Juno", "count": 15, "nodes": ["ppi"]}, + ] + with patch(_LIST_MISSIONS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_missions = AsyncMock(return_value=mock_missions) + + tool = PDSCatalogListMissionsTool() + result = await tool.arun(PDSCatalogListMissionsInputSchema()) + + assert isinstance(result, PDSCatalogListMissionsOutputSchema) + assert result.status == "success" + assert result.count == 2 + assert len(result.missions) == 2 + + cassini = result.missions[0] + assert isinstance(cassini, PDSCatalogMissionItem) + assert cassini.name == "Cassini" + assert cassini.count == 42 + assert cassini.nodes == ["img", "ppi"] + + async def test_list_missions_with_node_filter(self): + """Node filter is forwarded to the client.""" + mock_missions = [{"name": "Juno", "count": 15, "nodes": ["ppi"]}] + with patch(_LIST_MISSIONS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_missions = AsyncMock(return_value=mock_missions) + + tool = PDSCatalogListMissionsTool() + result = await tool.arun(PDSCatalogListMissionsInputSchema(node="ppi")) + + mock_client.list_missions.assert_called_once_with(node="ppi", limit=50) + assert result.count == 1 + + async def test_list_missions_with_limit(self): + """Limit parameter is forwarded to the client.""" + with patch(_LIST_MISSIONS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_missions = AsyncMock(return_value=[]) + + tool = PDSCatalogListMissionsTool() + await tool.arun(PDSCatalogListMissionsInputSchema(limit=5)) + + mock_client.list_missions.assert_called_once_with(node=None, limit=5) + + async def test_list_missions_empty(self): + """Empty results return count=0 and empty missions list.""" + with patch(_LIST_MISSIONS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_missions = AsyncMock(return_value=[]) + + tool = PDSCatalogListMissionsTool() + result = await tool.arun(PDSCatalogListMissionsInputSchema()) + + assert result.status == "success" + assert result.count == 0 + assert result.missions == [] + + async def test_list_missions_catalog_client_error(self): + """PDSCatalogClientError is re-raised.""" + with patch(_LIST_MISSIONS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_missions = AsyncMock(side_effect=PDSCatalogClientError("broken")) + + tool = PDSCatalogListMissionsTool() + with pytest.raises(PDSCatalogClientError, match="broken"): + await tool.arun(PDSCatalogListMissionsInputSchema()) + + async def test_list_missions_unexpected_error(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_LIST_MISSIONS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_missions = AsyncMock(side_effect=KeyError("missing key")) + + tool = PDSCatalogListMissionsTool() + with pytest.raises(RuntimeError, match="Internal error listing missions"): + await tool.arun(PDSCatalogListMissionsInputSchema()) + + async def test_list_missions_with_config(self): + """Custom catalog_dir config is passed to the client.""" + with patch(_LIST_MISSIONS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_missions = AsyncMock(return_value=[]) + + config = PDSCatalogListMissionsToolConfig(catalog_dir="/data/catalog") + tool = PDSCatalogListMissionsTool(config=config) + await tool.arun(PDSCatalogListMissionsInputSchema()) + + MockClient.assert_called_once_with(catalog_dir="/data/catalog") + + +# --------------------------------------------------------------------------- +# PDSCatalogListTargetsTool +# --------------------------------------------------------------------------- + + +class TestPDSCatalogListTargetsTool: + """Tests for PDSCatalogListTargetsTool.""" + + async def test_list_targets_basic(self): + """List targets returns formatted target items.""" + mock_targets = [ + {"name": "Mars", "count": 100, "nodes": ["geo", "img", "atm"]}, + {"name": "Saturn", "count": 50, "nodes": ["img", "ppi", "rms"]}, + {"name": "Enceladus", "count": 12, "nodes": ["img"]}, + ] + with patch(_LIST_TARGETS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_targets = AsyncMock(return_value=mock_targets) + + tool = PDSCatalogListTargetsTool() + result = await tool.arun(PDSCatalogListTargetsInputSchema()) + + assert isinstance(result, PDSCatalogListTargetsOutputSchema) + assert result.status == "success" + assert result.count == 3 + assert len(result.targets) == 3 + + mars = result.targets[0] + assert isinstance(mars, PDSCatalogTargetItem) + assert mars.name == "Mars" + assert mars.count == 100 + assert "geo" in mars.nodes + + async def test_list_targets_with_node_filter(self): + """Node filter is forwarded to the client.""" + mock_targets = [{"name": "Saturn", "count": 50, "nodes": ["rms"]}] + with patch(_LIST_TARGETS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_targets = AsyncMock(return_value=mock_targets) + + tool = PDSCatalogListTargetsTool() + result = await tool.arun(PDSCatalogListTargetsInputSchema(node="rms")) + + mock_client.list_targets.assert_called_once_with(node="rms", limit=50) + assert result.count == 1 + + async def test_list_targets_with_limit(self): + """Limit parameter is forwarded to the client.""" + with patch(_LIST_TARGETS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_targets = AsyncMock(return_value=[]) + + tool = PDSCatalogListTargetsTool() + await tool.arun(PDSCatalogListTargetsInputSchema(limit=10)) + + mock_client.list_targets.assert_called_once_with(node=None, limit=10) + + async def test_list_targets_empty(self): + """Empty results return count=0 and empty targets list.""" + with patch(_LIST_TARGETS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_targets = AsyncMock(return_value=[]) + + tool = PDSCatalogListTargetsTool() + result = await tool.arun(PDSCatalogListTargetsInputSchema()) + + assert result.status == "success" + assert result.count == 0 + assert result.targets == [] + + async def test_list_targets_catalog_client_error(self): + """PDSCatalogClientError is re-raised.""" + with patch(_LIST_TARGETS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_targets = AsyncMock(side_effect=PDSCatalogClientError("error")) + + tool = PDSCatalogListTargetsTool() + with pytest.raises(PDSCatalogClientError, match="error"): + await tool.arun(PDSCatalogListTargetsInputSchema()) + + async def test_list_targets_unexpected_error(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_LIST_TARGETS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_targets = AsyncMock(side_effect=ValueError("bad")) + + tool = PDSCatalogListTargetsTool() + with pytest.raises(RuntimeError, match="Internal error listing targets"): + await tool.arun(PDSCatalogListTargetsInputSchema()) + + async def test_list_targets_with_config(self): + """Custom catalog_dir config is passed to the client.""" + with patch(_LIST_TARGETS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.list_targets = AsyncMock(return_value=[]) + + config = PDSCatalogListTargetsToolConfig(catalog_dir="/targets/dir") + tool = PDSCatalogListTargetsTool(config=config) + await tool.arun(PDSCatalogListTargetsInputSchema()) + + MockClient.assert_called_once_with(catalog_dir="/targets/dir") + + +# --------------------------------------------------------------------------- +# PDSCatalogStatsTool +# --------------------------------------------------------------------------- + + +class TestPDSCatalogStatsTool: + """Tests for PDSCatalogStatsTool.""" + + @pytest.fixture + def mock_stats(self): + return { + "total_datasets": 500, + "by_node": {"img": 150, "ppi": 100, "sbn": 80, "geo": 70, "atm": 40, "rms": 35, "naif": 25}, + "by_pds_version": {"PDS3": 200, "PDS4": 300}, + "by_type": {"volume": 200, "bundle": 150, "collection": 150}, + "missions_count": 45, + "targets_count": 120, + } + + async def test_stats_basic(self, mock_stats): + """Stats tool returns all catalog statistics.""" + with patch(_STATS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_stats = AsyncMock(return_value=mock_stats) + + tool = PDSCatalogStatsTool() + result = await tool.arun(PDSCatalogStatsInputSchema()) + + assert isinstance(result, PDSCatalogStatsOutputSchema) + assert result.status == "success" + assert result.total_datasets == 500 + assert result.by_node == {"img": 150, "ppi": 100, "sbn": 80, "geo": 70, "atm": 40, "rms": 35, "naif": 25} + assert result.by_pds_version == {"PDS3": 200, "PDS4": 300} + assert result.by_type == {"volume": 200, "bundle": 150, "collection": 150} + assert result.missions_count == 45 + assert result.targets_count == 120 + + async def test_stats_empty_catalog(self): + """Stats for an empty catalog.""" + empty_stats = { + "total_datasets": 0, + "by_node": {}, + "by_pds_version": {}, + "by_type": {}, + "missions_count": 0, + "targets_count": 0, + } + with patch(_STATS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_stats = AsyncMock(return_value=empty_stats) + + tool = PDSCatalogStatsTool() + result = await tool.arun(PDSCatalogStatsInputSchema()) + + assert result.status == "success" + assert result.total_datasets == 0 + assert result.missions_count == 0 + assert result.targets_count == 0 + + async def test_stats_catalog_client_error(self): + """PDSCatalogClientError is re-raised.""" + with patch(_STATS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_stats = AsyncMock(side_effect=PDSCatalogClientError("stats error")) + + tool = PDSCatalogStatsTool() + with pytest.raises(PDSCatalogClientError, match="stats error"): + await tool.arun(PDSCatalogStatsInputSchema()) + + async def test_stats_unexpected_error(self): + """Generic exceptions are wrapped in RuntimeError.""" + with patch(_STATS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_stats = AsyncMock(side_effect=OSError("io problem")) + + tool = PDSCatalogStatsTool() + with pytest.raises(RuntimeError, match="Internal error retrieving stats"): + await tool.arun(PDSCatalogStatsInputSchema()) + + async def test_stats_with_config(self, mock_stats): + """Custom catalog_dir config is passed to the client.""" + with patch(_STATS_CLIENT) as MockClient: + mock_client = MockClient.return_value + mock_client.get_stats = AsyncMock(return_value=mock_stats) + + config = PDSCatalogStatsToolConfig(catalog_dir="/stats/dir") + tool = PDSCatalogStatsTool(config=config) + await tool.arun(PDSCatalogStatsInputSchema()) + + MockClient.assert_called_once_with(catalog_dir="/stats/dir") + + +# --------------------------------------------------------------------------- +# Schema validation tests +# --------------------------------------------------------------------------- + + +class TestSchemaValidation: + """Tests for input schema validation.""" + + def test_search_input_defaults(self): + """SearchInputSchema has correct defaults.""" + schema = PDSCatalogSearchInputSchema() + assert schema.query is None + assert schema.node is None + assert schema.mission is None + assert schema.instrument is None + assert schema.target is None + assert schema.pds_version is None + assert schema.dataset_type is None + assert schema.start_date is None + assert schema.stop_date is None + assert schema.limit == 20 + assert schema.offset == 0 + assert schema.fields == "summary" + + def test_search_input_invalid_node(self): + """Invalid node value raises validation error.""" + with pytest.raises(Exception): + PDSCatalogSearchInputSchema(node="invalid_node") + + def test_search_input_invalid_pds_version(self): + """Invalid pds_version raises validation error.""" + with pytest.raises(Exception): + PDSCatalogSearchInputSchema(pds_version="PDS5") + + def test_search_input_invalid_dataset_type(self): + """Invalid dataset_type raises validation error.""" + with pytest.raises(Exception): + PDSCatalogSearchInputSchema(dataset_type="invalid_type") + + def test_search_input_invalid_fields(self): + """Invalid fields value raises validation error.""" + with pytest.raises(Exception): + PDSCatalogSearchInputSchema(fields="invalid_profile") + + def test_search_input_limit_bounds(self): + """Limit must be between 1 and 50.""" + with pytest.raises(Exception): + PDSCatalogSearchInputSchema(limit=0) + with pytest.raises(Exception): + PDSCatalogSearchInputSchema(limit=51) + + def test_search_input_offset_non_negative(self): + """Offset must be >= 0.""" + with pytest.raises(Exception): + PDSCatalogSearchInputSchema(offset=-1) + + def test_list_missions_input_defaults(self): + """ListMissionsInputSchema has correct defaults.""" + schema = PDSCatalogListMissionsInputSchema() + assert schema.node is None + assert schema.limit == 50 + + def test_list_targets_input_defaults(self): + """ListTargetsInputSchema has correct defaults.""" + schema = PDSCatalogListTargetsInputSchema() + assert schema.node is None + assert schema.limit == 50 + + def test_get_dataset_input_requires_id(self): + """GetDatasetInputSchema requires dataset_id.""" + with pytest.raises(Exception): + PDSCatalogGetDatasetInputSchema() + + def test_stats_input_no_params(self): + """StatsInputSchema takes no parameters.""" + schema = PDSCatalogStatsInputSchema() + assert schema is not None diff --git a/tests/tools/pds/test_pds_catalog_integration.py b/tests/tools/pds/test_pds_catalog_integration.py new file mode 100644 index 0000000..a055de9 --- /dev/null +++ b/tests/tools/pds/test_pds_catalog_integration.py @@ -0,0 +1,472 @@ +"""Integration tests for PDS Catalog tools using the actual scraped dataset.""" + +import pytest + +from akd_ext.tools.pds.pds_catalog.get_dataset import ( + PDSCatalogGetDatasetInputSchema, + PDSCatalogGetDatasetOutputSchema, + PDSCatalogGetDatasetTool, +) +from akd_ext.tools.pds.pds_catalog.list_missions import ( + PDSCatalogListMissionsInputSchema, + PDSCatalogListMissionsOutputSchema, + PDSCatalogListMissionsTool, + PDSCatalogMissionItem, +) +from akd_ext.tools.pds.pds_catalog.list_targets import ( + PDSCatalogListTargetsInputSchema, + PDSCatalogListTargetsOutputSchema, + PDSCatalogListTargetsTool, + PDSCatalogTargetItem, +) +from akd_ext.tools.pds.pds_catalog.search import ( + PDSCatalogSearchInputSchema, + PDSCatalogSearchOutputSchema, + PDSCatalogSearchTool, +) +from akd_ext.tools.pds.pds_catalog.stats import ( + PDSCatalogStatsInputSchema, + PDSCatalogStatsOutputSchema, + PDSCatalogStatsTool, +) + + +# --------------------------------------------------------------------------- +# PDSCatalogSearchTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDSCatalogSearchIntegration: + """Integration tests for PDSCatalogSearchTool against real catalog data.""" + + async def test_search_no_filters(self): + """Unfiltered search returns datasets from the catalog.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(limit=5)) + + assert isinstance(result, PDSCatalogSearchOutputSchema) + assert result.status == "success" + assert result.count > 0 + assert result.total > 0 + assert len(result.datasets) <= 5 + + async def test_search_by_node(self): + """Filtering by node returns datasets only from that node.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(node="ppi", limit=10)) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + assert ds["node"] == "ppi" + + async def test_search_by_mission_voyager(self): + """Searching by mission 'Voyager' finds Voyager datasets.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(mission="Voyager", limit=10, fields="summary")) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + title_lower = ds.get("title", "").lower() + missions_lower = [m.lower() for m in ds.get("missions", [])] + ds_id_lower = ds.get("id", "").lower() + assert ( + any("voyager" in m for m in missions_lower) + or "voyager" in title_lower + or "vg1" in ds_id_lower + or "vg2" in ds_id_lower + ), f"Dataset {ds.get('id')} does not appear to be a Voyager dataset" + + async def test_search_by_target_mars(self): + """Searching by target 'Mars' finds Mars datasets.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(target="Mars", limit=10, fields="summary")) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + targets_lower = [t.lower() for t in ds.get("targets", [])] + assert any("mars" in t for t in targets_lower), f"Dataset {ds.get('id')} does not target Mars" + + async def test_search_by_pds_version_pds4(self): + """Filtering by PDS4 returns only PDS4 datasets.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(pds_version="PDS4", limit=10, fields="summary")) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + assert ds["pds_version"] == "PDS4" + + async def test_search_by_pds_version_pds3(self): + """Filtering by PDS3 returns only PDS3 datasets.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(pds_version="PDS3", limit=10, fields="summary")) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + assert ds["pds_version"] == "PDS3" + + async def test_search_by_dataset_type_bundle(self): + """Filtering by dataset type 'bundle' returns only bundles.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(dataset_type="bundle", limit=10, fields="summary")) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + assert ds["type"] == "bundle" + + async def test_search_by_dataset_type_volume(self): + """Filtering by dataset type 'volume' returns only PDS3 volumes.""" + tool = PDSCatalogSearchTool() + result = await tool.arun( + PDSCatalogSearchInputSchema(dataset_type="volume", limit=10, fields="summary") + ) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + assert ds["type"] == "volume" + assert ds["pds_version"] == "PDS3" + + async def test_search_with_text_query(self): + """Text query search returns relevant results.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(query="plasma wave", limit=10)) + + assert result.status == "success" + assert result.count > 0 + + async def test_search_with_date_filter(self): + """Date-filtered search narrows to datasets overlapping the range.""" + tool = PDSCatalogSearchTool() + result = await tool.arun( + PDSCatalogSearchInputSchema( + start_date="2020-01-01", + stop_date="2025-12-31", + limit=10, + fields="full", + ) + ) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + # If the dataset has dates, verify temporal overlap + if ds.get("stop_date"): + assert ds["stop_date"] >= "2020-01-01" + if ds.get("start_date"): + assert ds["start_date"] <= "2025-12-31" + + async def test_search_combined_node_and_mission(self): + """Combining node + mission filters narrows results correctly.""" + tool = PDSCatalogSearchTool() + result = await tool.arun( + PDSCatalogSearchInputSchema(node="ppi", mission="Juno", limit=10, fields="summary") + ) + + assert result.status == "success" + assert result.count > 0 + for ds in result.datasets: + assert ds["node"] == "ppi" + + async def test_search_pagination(self): + """Pagination returns different pages of results.""" + tool = PDSCatalogSearchTool() + + page1 = await tool.arun(PDSCatalogSearchInputSchema(limit=5, offset=0)) + page2 = await tool.arun(PDSCatalogSearchInputSchema(limit=5, offset=5)) + + assert page1.status == "success" + assert page2.status == "success" + + page1_ids = {ds["id"] for ds in page1.datasets} + page2_ids = {ds["id"] for ds in page2.datasets} + # Pages should contain different datasets + assert page1_ids.isdisjoint(page2_ids), "Paginated pages should not overlap" + + async def test_search_essential_fields_profile(self): + """Essential fields profile returns only minimal fields.""" + tool = PDSCatalogSearchTool() + result = await tool.arun(PDSCatalogSearchInputSchema(limit=3, fields="essential")) + + assert result.fields == "essential" + for ds in result.datasets: + assert "id" in ds + assert "title" in ds + assert "node" in ds + assert "browse_url" in ds + # These should NOT be present in essential + assert "description" not in ds + + async def test_search_full_fields_profile(self): + """Full fields profile returns extended metadata.""" + tool = PDSCatalogSearchTool() + result = await tool.arun( + PDSCatalogSearchInputSchema(target="Mars", limit=3, fields="full") + ) + + assert result.fields == "full" + for ds in result.datasets: + assert "id" in ds + assert "title" in ds + assert "node" in ds + # Full profile includes additional fields when populated + assert "targets" in ds + + async def test_search_no_results(self): + """Obscure query returns zero results gracefully.""" + tool = PDSCatalogSearchTool() + result = await tool.arun( + PDSCatalogSearchInputSchema(query="xyznonexistent123456", limit=5) + ) + + assert result.status == "success" + assert result.count == 0 + assert result.datasets == [] + assert result.has_more is False + + +# --------------------------------------------------------------------------- +# PDSCatalogGetDatasetTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDSCatalogGetDatasetIntegration: + """Integration tests for PDSCatalogGetDatasetTool against real catalog data.""" + + async def test_get_pds4_dataset_by_lidvid(self): + """Retrieve a known PDS4 bundle by its LIDVID.""" + tool = PDSCatalogGetDatasetTool() + result = await tool.arun( + PDSCatalogGetDatasetInputSchema(dataset_id="urn:nasa:pds:mars2020_mission::4.0") + ) + + assert isinstance(result, PDSCatalogGetDatasetOutputSchema) + assert result.status == "success" + assert result.dataset is not None + assert result.error is None + assert result.dataset["id"] == "urn:nasa:pds:mars2020_mission::4.0" + assert "Mars" in result.dataset["title"] or "mars" in result.dataset["title"].lower() + assert result.dataset["pds_version"] == "PDS4" + assert result.dataset["type"] == "bundle" + assert result.dataset["node"] == "geo" + + async def test_get_pds3_dataset_by_volume_id(self): + """Retrieve a known PDS3 volume by its VOLUME_ID.""" + tool = PDSCatalogGetDatasetTool() + result = await tool.arun( + PDSCatalogGetDatasetInputSchema(dataset_id="CO-S-ISSNA/ISSWA-5-MIDR-V1.0") + ) + + assert result.status == "success" + assert result.dataset is not None + assert result.dataset["id"] == "CO-S-ISSNA/ISSWA-5-MIDR-V1.0" + assert result.dataset["pds_version"] == "PDS3" + assert result.dataset["type"] == "volume" + assert result.dataset["node"] == "img" + + async def test_get_dataset_returns_full_fields(self): + """Retrieved dataset includes all full-profile fields when present.""" + tool = PDSCatalogGetDatasetTool() + result = await tool.arun( + PDSCatalogGetDatasetInputSchema(dataset_id="urn:nasa:pds:mars2020_mission::4.0") + ) + + ds = result.dataset + assert "id" in ds + assert "title" in ds + assert "node" in ds + assert "pds_version" in ds + assert "type" in ds + assert "browse_url" in ds + assert "source_url" in ds + # Populated optional fields for this dataset + assert "targets" in ds + assert "missions" in ds + assert "instruments" in ds + + async def test_get_nonexistent_dataset(self): + """Non-existent dataset ID returns not_found.""" + tool = PDSCatalogGetDatasetTool() + result = await tool.arun( + PDSCatalogGetDatasetInputSchema(dataset_id="urn:nasa:pds:totally_fake::99.99") + ) + + assert result.status == "not_found" + assert result.dataset is None + assert result.error is not None + + +# --------------------------------------------------------------------------- +# PDSCatalogListMissionsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDSCatalogListMissionsIntegration: + """Integration tests for PDSCatalogListMissionsTool against real catalog data.""" + + async def test_list_all_missions(self): + """Listing missions without filters returns many missions.""" + tool = PDSCatalogListMissionsTool() + result = await tool.arun(PDSCatalogListMissionsInputSchema()) + + assert isinstance(result, PDSCatalogListMissionsOutputSchema) + assert result.status == "success" + assert result.count > 10 # The catalog has 176 unique missions + for mission in result.missions: + assert isinstance(mission, PDSCatalogMissionItem) + assert mission.name + assert mission.count > 0 + assert len(mission.nodes) > 0 + + async def test_list_missions_filtered_by_node(self): + """Filtering by node only returns missions with data at that node.""" + tool = PDSCatalogListMissionsTool() + result = await tool.arun(PDSCatalogListMissionsInputSchema(node="ppi")) + + assert result.status == "success" + assert result.count > 0 + for mission in result.missions: + assert "ppi" in mission.nodes, f"Mission '{mission.name}' should have ppi in its nodes" + + async def test_list_missions_with_limit(self): + """Limit caps the number of missions returned.""" + tool = PDSCatalogListMissionsTool() + result = await tool.arun(PDSCatalogListMissionsInputSchema(limit=5)) + + assert result.status == "success" + assert result.count <= 5 + assert len(result.missions) <= 5 + + async def test_well_known_missions_present(self): + """Well-known missions exist in the catalog (filtered by ppi node).""" + tool = PDSCatalogListMissionsTool() + # Use ppi node where Voyager 1/2 are known to exist + result = await tool.arun(PDSCatalogListMissionsInputSchema(node="ppi")) + + mission_names_lower = [m.name.lower() for m in result.missions] + assert any("voyager" in name for name in mission_names_lower), ( + f"Expected a Voyager mission in ppi node, got: {mission_names_lower[:10]}" + ) + + +# --------------------------------------------------------------------------- +# PDSCatalogListTargetsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDSCatalogListTargetsIntegration: + """Integration tests for PDSCatalogListTargetsTool against real catalog data.""" + + async def test_list_all_targets(self): + """Listing targets without filters returns many targets.""" + tool = PDSCatalogListTargetsTool() + result = await tool.arun(PDSCatalogListTargetsInputSchema()) + + assert isinstance(result, PDSCatalogListTargetsOutputSchema) + assert result.status == "success" + assert result.count > 10 # The catalog has 4330 unique targets + for target in result.targets: + assert isinstance(target, PDSCatalogTargetItem) + assert target.name + assert target.count > 0 + assert len(target.nodes) > 0 + + async def test_list_targets_filtered_by_node(self): + """Filtering by node only returns targets at that node.""" + tool = PDSCatalogListTargetsTool() + result = await tool.arun(PDSCatalogListTargetsInputSchema(node="rms")) + + assert result.status == "success" + assert result.count > 0 + for target in result.targets: + assert "rms" in target.nodes, f"Target '{target.name}' should have rms in its nodes" + + async def test_list_targets_with_limit(self): + """Limit caps the number of targets returned.""" + tool = PDSCatalogListTargetsTool() + result = await tool.arun(PDSCatalogListTargetsInputSchema(limit=10)) + + assert result.status == "success" + assert result.count <= 10 + assert len(result.targets) <= 10 + + async def test_well_known_targets_present(self): + """Well-known celestial bodies exist in the catalog (via search).""" + # list_targets is capped at 50 and sorted alphabetically, so well-known + # targets like "Mars" or "Saturn" may not appear in the first page. + # Instead, verify via the search tool which uses target as a filter. + search_tool = PDSCatalogSearchTool() + result = await search_tool.arun( + PDSCatalogSearchInputSchema(target="Saturn", limit=1, fields="summary") + ) + assert result.count > 0, "Expected datasets targeting Saturn in the catalog" + assert any("saturn" in t.lower() for t in result.datasets[0].get("targets", [])) + + +# --------------------------------------------------------------------------- +# PDSCatalogStatsTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestPDSCatalogStatsIntegration: + """Integration tests for PDSCatalogStatsTool against real catalog data.""" + + async def test_stats_returns_totals(self): + """Stats tool returns non-zero totals from the real catalog.""" + tool = PDSCatalogStatsTool() + result = await tool.arun(PDSCatalogStatsInputSchema()) + + assert isinstance(result, PDSCatalogStatsOutputSchema) + assert result.status == "success" + assert result.total_datasets > 1000 # Catalog has 12631 datasets + assert result.missions_count > 10 + assert result.targets_count > 100 + + async def test_stats_by_node(self): + """Stats include breakdowns by node covering all 7 PDS nodes.""" + tool = PDSCatalogStatsTool() + result = await tool.arun(PDSCatalogStatsInputSchema()) + + expected_nodes = {"atm", "geo", "img", "naif", "ppi", "rms", "sbn"} + assert expected_nodes == set(result.by_node.keys()) + for node, count in result.by_node.items(): + assert count > 0, f"Node '{node}' should have at least one dataset" + + async def test_stats_by_pds_version(self): + """Stats include breakdowns by PDS version (PDS3 and PDS4).""" + tool = PDSCatalogStatsTool() + result = await tool.arun(PDSCatalogStatsInputSchema()) + + assert "PDS3" in result.by_pds_version + assert "PDS4" in result.by_pds_version + assert result.by_pds_version["PDS3"] > 0 + assert result.by_pds_version["PDS4"] > 0 + assert result.by_pds_version["PDS3"] + result.by_pds_version["PDS4"] == result.total_datasets + + async def test_stats_by_type(self): + """Stats include breakdowns by dataset type.""" + tool = PDSCatalogStatsTool() + result = await tool.arun(PDSCatalogStatsInputSchema()) + + expected_types = {"volume", "bundle", "collection"} + assert expected_types == set(result.by_type.keys()) + total_by_type = sum(result.by_type.values()) + assert total_by_type == result.total_datasets + + async def test_stats_consistency(self): + """Node counts sum to total_datasets.""" + tool = PDSCatalogStatsTool() + result = await tool.arun(PDSCatalogStatsInputSchema()) + + total_by_node = sum(result.by_node.values()) + assert total_by_node == result.total_datasets diff --git a/tests/tools/pds/test_sbn.py b/tests/tools/pds/test_sbn.py new file mode 100644 index 0000000..cf4a16b --- /dev/null +++ b/tests/tools/pds/test_sbn.py @@ -0,0 +1,1343 @@ +"""Unit tests for SBN CATCH (Small Bodies Node) tools.""" + +from unittest.mock import AsyncMock, MagicMock, patch + +import pytest + +from akd_ext.tools.pds.sbn.search_object import ( + SBNSearchObjectInputSchema, + SBNSearchObjectOutputSchema, + SBNSearchObjectTool, + SBNSearchObjectToolConfig, +) +from akd_ext.tools.pds.sbn.search_coordinates import ( + SBNSearchCoordinatesInputSchema, + SBNSearchCoordinatesOutputSchema, + SBNSearchCoordinatesTool, + SBNSearchCoordinatesToolConfig, +) +from akd_ext.tools.pds.sbn.list_sources import ( + SBNListSourcesInputSchema, + SBNListSourcesOutputSchema, + SBNListSourcesTool, + SBNListSourcesToolConfig, + SBNSourceSummary, +) +from akd_ext.tools.pds.sbn.types import ESSENTIAL_FIELDS, FIELD_PROFILES, SUMMARY_FIELDS, filter_observation +from akd_ext.tools.pds.utils.sbn_client import SBNCatchClientError + +# Patch paths – must match where SBNCatchClient is looked up at runtime +_SEARCH_OBJECT_CLIENT = "akd_ext.tools.pds.sbn.search_object.SBNCatchClient" +_SEARCH_COORDS_CLIENT = "akd_ext.tools.pds.sbn.search_coordinates.SBNCatchClient" +_LIST_SOURCES_CLIENT = "akd_ext.tools.pds.sbn.list_sources.SBNCatchClient" + + +# --------------------------------------------------------------------------- +# Helpers +# --------------------------------------------------------------------------- + + +def _make_mock_observation(**overrides): + """Create a mock CatchObservation with sensible defaults. + + Returns a MagicMock that behaves like a Pydantic CatchObservation, + with model_dump(exclude_none=True) returning a dict of observation fields. + """ + defaults = { + "product_id": "neat_obs_001", + "source": "neat_palomar_tricam", + "date": "2020-01-15", + "archive_url": "https://example.com/archive/neat_obs_001", + "ra": 123.45, + "dec": -30.5, + "vmag": 18.5, + "filter": "V", + "exposure": 60.0, + } + defaults.update(overrides) + + obs = MagicMock() + for key, value in defaults.items(): + setattr(obs, key, value) + + obs.model_dump = MagicMock(return_value={k: v for k, v in defaults.items() if v is not None}) + return obs + + +def _make_mock_source_status(**overrides): + """Create a mock CatchSourceStatus.""" + defaults = { + "source": "neat_palomar_tricam", + "status": "success", + "count": 5, + } + defaults.update(overrides) + + status = MagicMock() + for key, value in defaults.items(): + setattr(status, key, value) + return status + + +def _make_mock_results_response(**overrides): + """Create a mock CatchResultsResponse for search_and_wait.""" + response = MagicMock() + response.error = overrides.get("error", None) + response.observations = overrides.get("observations", [_make_mock_observation()]) + response.source_status = overrides.get("source_status", [_make_mock_source_status()]) + return response + + +def _make_mock_fixed_response(**overrides): + """Create a mock CatchFixedResponse for search_fixed_target.""" + response = MagicMock() + response.error = overrides.get("error", None) + response.observations = overrides.get("observations", [_make_mock_observation()]) + return response + + +def _make_mock_catch_source(**overrides): + """Create a mock CatchSource for list_sources.""" + defaults = { + "source": "neat_palomar_tricam", + "source_name": "NEAT Palomar Tri-Cam", + "count": 12345, + "start_date": "1999-01-01", + "stop_date": "2007-12-31", + "nights": 2500, + "updated": "2024-06-01T00:00:00Z", + } + defaults.update(overrides) + + src = MagicMock() + for key, value in defaults.items(): + setattr(src, key, value) + return src + + +def _make_mock_sources_response(**overrides): + """Create a mock CatchSourcesResponse for list_sources.""" + response = MagicMock() + response.error = overrides.get("error", None) + response.sources = overrides.get("sources", [_make_mock_catch_source()]) + return response + + +# --------------------------------------------------------------------------- +# SBNSearchObjectTool +# --------------------------------------------------------------------------- + + +class TestSBNSearchObjectTool: + """Tests for SBNSearchObjectTool.""" + + async def test_basic_search(self): + """Basic search returns observations for a target.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock(return_value=_make_mock_results_response()) + + tool = SBNSearchObjectTool() + result = await tool.arun(SBNSearchObjectInputSchema(target="65803")) + + assert isinstance(result, SBNSearchObjectOutputSchema) + assert result.target == "65803" + assert result.count == 1 + assert result.total_available == 1 + assert result.has_more is False + assert len(result.observations) == 1 + + async def test_search_forwards_target(self): + """Target designation is forwarded to the client.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock(return_value=_make_mock_results_response()) + + tool = SBNSearchObjectTool() + await tool.arun(SBNSearchObjectInputSchema(target="1P/Halley")) + + call_kwargs = mock_client.search_and_wait.call_args.kwargs + assert call_kwargs["target"] == "1P/Halley" + + async def test_search_forwards_sources(self): + """Sources filter is forwarded to the client.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock(return_value=_make_mock_results_response()) + + tool = SBNSearchObjectTool() + await tool.arun( + SBNSearchObjectInputSchema(target="Ceres", sources=["neat_palomar_tricam", "ps1dr2"]) + ) + + call_kwargs = mock_client.search_and_wait.call_args.kwargs + assert call_kwargs["sources"] == ["neat_palomar_tricam", "ps1dr2"] + + async def test_search_forwards_date_range(self): + """Date range filters are forwarded to the client.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock(return_value=_make_mock_results_response()) + + tool = SBNSearchObjectTool() + await tool.arun( + SBNSearchObjectInputSchema( + target="Didymos", + start_date="2020-01-01", + stop_date="2020-12-31", + ) + ) + + call_kwargs = mock_client.search_and_wait.call_args.kwargs + assert call_kwargs["start_date"] == "2020-01-01" + assert call_kwargs["stop_date"] == "2020-12-31" + + async def test_search_forwards_cached_and_timeout(self): + """Cached and timeout parameters are forwarded to the client.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock(return_value=_make_mock_results_response()) + + tool = SBNSearchObjectTool() + await tool.arun( + SBNSearchObjectInputSchema(target="Vesta", cached=False, timeout=300.0) + ) + + call_kwargs = mock_client.search_and_wait.call_args.kwargs + assert call_kwargs["cached"] is False + assert call_kwargs["timeout"] == 300.0 + + async def test_search_essential_fields(self): + """Essential field profile filters observations to minimal fields.""" + obs = _make_mock_observation( + rh=2.5, + delta=1.8, + phase=15.0, + ) + # Add the extra fields to model_dump output + dump = obs.model_dump.return_value + dump["rh"] = 2.5 + dump["delta"] = 1.8 + dump["phase"] = 15.0 + + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(observations=[obs]) + ) + + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema(target="65803", fields="essential") + ) + + assert result.fields == "essential" + obs_dict = result.observations[0] + assert "product_id" in obs_dict + assert "source" in obs_dict + assert "date" in obs_dict + assert "archive_url" in obs_dict + # Summary/full fields should not be present + assert "ra" not in obs_dict + assert "vmag" not in obs_dict + assert "rh" not in obs_dict + + async def test_search_summary_fields(self): + """Summary field profile includes essential + ra, dec, vmag, filter, exposure.""" + obs = _make_mock_observation(rh=2.5, delta=1.8) + dump = obs.model_dump.return_value + dump["rh"] = 2.5 + dump["delta"] = 1.8 + + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(observations=[obs]) + ) + + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema(target="65803", fields="summary") + ) + + assert result.fields == "summary" + obs_dict = result.observations[0] + assert "product_id" in obs_dict + assert "ra" in obs_dict + assert "dec" in obs_dict + assert "vmag" in obs_dict + assert "filter" in obs_dict + assert "exposure" in obs_dict + # Full-only fields should not be present + assert "rh" not in obs_dict + assert "delta" not in obs_dict + + async def test_search_full_fields(self): + """Full field profile includes all available fields.""" + obs = _make_mock_observation( + rh=2.5, delta=1.8, phase=15.0, dra=0.5, ddec=-0.3, + seeing=2.1, airmass=1.3, maglimit=21.0, cutout_url="https://example.com/cutout", + preview_url="https://example.com/preview", mjd_start=58863.5, + ) + dump = obs.model_dump.return_value + dump.update({ + "rh": 2.5, "delta": 1.8, "phase": 15.0, "dra": 0.5, "ddec": -0.3, + "seeing": 2.1, "airmass": 1.3, "maglimit": 21.0, + "cutout_url": "https://example.com/cutout", + "preview_url": "https://example.com/preview", "mjd_start": 58863.5, + }) + + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(observations=[obs]) + ) + + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema(target="65803", fields="full") + ) + + assert result.fields == "full" + obs_dict = result.observations[0] + assert "product_id" in obs_dict + assert "ra" in obs_dict + assert "rh" in obs_dict + assert "delta" in obs_dict + assert "phase" in obs_dict + assert "seeing" in obs_dict + assert "airmass" in obs_dict + assert "maglimit" in obs_dict + assert "cutout_url" in obs_dict + assert "preview_url" in obs_dict + assert "mjd_start" in obs_dict + + async def test_search_pagination_has_more(self): + """Pagination with more results available sets has_more=True.""" + observations = [_make_mock_observation(product_id=f"obs_{i}") for i in range(5)] + for i, obs in enumerate(observations): + obs.model_dump.return_value = { + "product_id": f"obs_{i}", + "source": "neat_palomar_tricam", + "date": "2020-01-15", + "archive_url": f"https://example.com/obs_{i}", + "ra": 123.45, + "dec": -30.5, + "vmag": 18.5, + "filter": "V", + "exposure": 60.0, + } + + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(observations=observations) + ) + + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema(target="65803", limit=2, offset=0) + ) + + assert result.count == 2 + assert result.total_available == 5 + assert result.limit == 2 + assert result.offset == 0 + assert result.has_more is True + + async def test_search_pagination_no_more(self): + """Pagination at end of results sets has_more=False.""" + observations = [_make_mock_observation(product_id=f"obs_{i}") for i in range(3)] + for i, obs in enumerate(observations): + obs.model_dump.return_value = { + "product_id": f"obs_{i}", + "source": "neat_palomar_tricam", + "date": "2020-01-15", + "archive_url": f"https://example.com/obs_{i}", + "ra": 123.45, + "dec": -30.5, + } + + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(observations=observations) + ) + + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema(target="65803", limit=10, offset=0) + ) + + assert result.count == 3 + assert result.total_available == 3 + assert result.has_more is False + + async def test_search_pagination_with_offset(self): + """Offset skips first N observations.""" + observations = [_make_mock_observation(product_id=f"obs_{i}") for i in range(5)] + for i, obs in enumerate(observations): + obs.model_dump.return_value = { + "product_id": f"obs_{i}", + "source": "neat_palomar_tricam", + "date": "2020-01-15", + "archive_url": f"https://example.com/obs_{i}", + "ra": 123.45, + "dec": -30.5, + } + + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(observations=observations) + ) + + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema(target="65803", limit=2, offset=3) + ) + + assert result.count == 2 + assert result.total_available == 5 + assert result.offset == 3 + assert result.has_more is False + assert result.observations[0]["product_id"] == "obs_3" + assert result.observations[1]["product_id"] == "obs_4" + + async def test_search_source_status(self): + """Source status is included in the response.""" + source_statuses = [ + _make_mock_source_status(source="neat_palomar_tricam", status="success", count=3), + _make_mock_source_status(source="ps1dr2", status="success", count=2), + ] + + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(source_status=source_statuses) + ) + + tool = SBNSearchObjectTool() + result = await tool.arun(SBNSearchObjectInputSchema(target="65803")) + + assert len(result.source_status) == 2 + assert result.source_status[0].source == "neat_palomar_tricam" + assert result.source_status[0].status == "success" + assert result.source_status[0].count == 3 + assert result.source_status[1].source == "ps1dr2" + + async def test_search_empty_results(self): + """Empty search returns count=0 and empty observations list.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(observations=[], source_status=[]) + ) + + tool = SBNSearchObjectTool() + result = await tool.arun(SBNSearchObjectInputSchema(target="nonexistent_object")) + + assert result.count == 0 + assert result.total_available == 0 + assert result.observations == [] + assert result.has_more is False + + async def test_search_response_error_raises(self): + """Response with error field raises SBNCatchClientError.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + return_value=_make_mock_results_response(error="Target not found") + ) + + tool = SBNSearchObjectTool() + with pytest.raises(SBNCatchClientError, match="Target not found"): + await tool.arun(SBNSearchObjectInputSchema(target="bad_target")) + + async def test_search_client_error_raises(self): + """SBNCatchClientError from client is re-raised.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock( + side_effect=SBNCatchClientError("connection failed") + ) + + tool = SBNSearchObjectTool() + with pytest.raises(SBNCatchClientError, match="connection failed"): + await tool.arun(SBNSearchObjectInputSchema(target="65803")) + + async def test_search_unexpected_error_raises_runtime_error(self): + """Unexpected exceptions are wrapped in RuntimeError.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock(side_effect=TypeError("bad type")) + + tool = SBNSearchObjectTool() + with pytest.raises(RuntimeError, match="Internal error"): + await tool.arun(SBNSearchObjectInputSchema(target="65803")) + + async def test_search_with_config(self): + """Custom config values are passed to the client.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock(return_value=_make_mock_results_response()) + + config = SBNSearchObjectToolConfig( + base_url="https://custom.api.url/", + timeout=30.0, + max_retries=5, + ) + tool = SBNSearchObjectTool(config=config) + await tool.arun(SBNSearchObjectInputSchema(target="65803")) + + MockClient.assert_called_once_with( + base_url="https://custom.api.url/", + timeout=30.0, + max_retries=5, + ) + + async def test_search_all_filters_combined(self): + """All search parameters are forwarded to the client.""" + with patch(_SEARCH_OBJECT_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_and_wait = AsyncMock(return_value=_make_mock_results_response()) + + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema( + target="1P/Halley", + sources=["neat_palomar_tricam"], + start_date="2000-01-01", + stop_date="2010-12-31", + cached=False, + timeout=180.0, + limit=5, + offset=2, + fields="full", + ) + ) + + call_kwargs = mock_client.search_and_wait.call_args.kwargs + assert call_kwargs["target"] == "1P/Halley" + assert call_kwargs["sources"] == ["neat_palomar_tricam"] + assert call_kwargs["start_date"] == "2000-01-01" + assert call_kwargs["stop_date"] == "2010-12-31" + assert call_kwargs["cached"] is False + assert call_kwargs["timeout"] == 180.0 + assert result.fields == "full" + assert result.offset == 2 + assert result.limit == 5 + + +# --------------------------------------------------------------------------- +# SBNSearchCoordinatesTool +# --------------------------------------------------------------------------- + + +class TestSBNSearchCoordinatesTool: + """Tests for SBNSearchCoordinatesTool.""" + + async def test_basic_search(self): + """Basic coordinate search returns observations.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock(return_value=_make_mock_fixed_response()) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema(ra="12:34:56.7", dec="-30:15:00.0") + ) + + assert isinstance(result, SBNSearchCoordinatesOutputSchema) + assert result.ra == "12:34:56.7" + assert result.dec == "-30:15:00.0" + assert result.radius == 10.0 # default + assert result.count == 1 + assert result.total_available == 1 + assert result.has_more is False + assert len(result.observations) == 1 + + async def test_search_forwards_coordinates(self): + """RA, Dec, and radius are forwarded to the client.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock(return_value=_make_mock_fixed_response()) + + tool = SBNSearchCoordinatesTool() + await tool.arun( + SBNSearchCoordinatesInputSchema(ra="185.5", dec="45.2", radius=30.0) + ) + + call_kwargs = mock_client.search_fixed_target.call_args.kwargs + assert call_kwargs["ra"] == "185.5" + assert call_kwargs["dec"] == "45.2" + assert call_kwargs["radius"] == 30.0 + + async def test_search_forwards_sources(self): + """Sources filter is forwarded to the client.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock(return_value=_make_mock_fixed_response()) + + tool = SBNSearchCoordinatesTool() + await tool.arun( + SBNSearchCoordinatesInputSchema( + ra="123.45", dec="-30.5", sources=["ps1dr2", "skymapper_dr4"] + ) + ) + + call_kwargs = mock_client.search_fixed_target.call_args.kwargs + assert call_kwargs["sources"] == ["ps1dr2", "skymapper_dr4"] + + async def test_search_forwards_date_range(self): + """Date range filters are forwarded to the client.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock(return_value=_make_mock_fixed_response()) + + tool = SBNSearchCoordinatesTool() + await tool.arun( + SBNSearchCoordinatesInputSchema( + ra="123.45", + dec="-30.5", + start_date="2015-01-01", + stop_date="2020-12-31", + ) + ) + + call_kwargs = mock_client.search_fixed_target.call_args.kwargs + assert call_kwargs["start_date"] == "2015-01-01" + assert call_kwargs["stop_date"] == "2020-12-31" + + async def test_search_essential_fields(self): + """Essential field profile filters to minimal fields.""" + obs = _make_mock_observation(rh=2.5, vmag=18.5) + dump = obs.model_dump.return_value + dump["rh"] = 2.5 + + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + return_value=_make_mock_fixed_response(observations=[obs]) + ) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", fields="essential") + ) + + assert result.fields == "essential" + obs_dict = result.observations[0] + assert "product_id" in obs_dict + assert "source" in obs_dict + assert "date" in obs_dict + assert "archive_url" in obs_dict + assert "ra" not in obs_dict + assert "vmag" not in obs_dict + assert "rh" not in obs_dict + + async def test_search_summary_fields(self): + """Summary field profile includes essential + key observation fields.""" + obs = _make_mock_observation(rh=2.5) + dump = obs.model_dump.return_value + dump["rh"] = 2.5 + + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + return_value=_make_mock_fixed_response(observations=[obs]) + ) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", fields="summary") + ) + + obs_dict = result.observations[0] + assert "product_id" in obs_dict + assert "ra" in obs_dict + assert "dec" in obs_dict + assert "vmag" in obs_dict + assert "filter" in obs_dict + assert "exposure" in obs_dict + assert "rh" not in obs_dict + + async def test_search_full_fields(self): + """Full field profile includes all available fields.""" + obs = _make_mock_observation( + rh=2.5, delta=1.8, phase=15.0, seeing=2.1, airmass=1.3, + maglimit=21.0, mjd_start=58863.5, + ) + dump = obs.model_dump.return_value + dump.update({ + "rh": 2.5, "delta": 1.8, "phase": 15.0, + "seeing": 2.1, "airmass": 1.3, "maglimit": 21.0, "mjd_start": 58863.5, + }) + + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + return_value=_make_mock_fixed_response(observations=[obs]) + ) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", fields="full") + ) + + obs_dict = result.observations[0] + assert "rh" in obs_dict + assert "delta" in obs_dict + assert "phase" in obs_dict + assert "seeing" in obs_dict + assert "airmass" in obs_dict + assert "maglimit" in obs_dict + assert "mjd_start" in obs_dict + + async def test_search_pagination_has_more(self): + """Pagination with more results sets has_more=True.""" + observations = [_make_mock_observation(product_id=f"fixed_{i}") for i in range(5)] + for i, obs in enumerate(observations): + obs.model_dump.return_value = { + "product_id": f"fixed_{i}", + "source": "ps1dr2", + "date": "2018-06-15", + "archive_url": f"https://example.com/fixed_{i}", + "ra": 185.5, + "dec": 45.2, + } + + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + return_value=_make_mock_fixed_response(observations=observations) + ) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema(ra="185.5", dec="45.2", limit=2, offset=0) + ) + + assert result.count == 2 + assert result.total_available == 5 + assert result.has_more is True + + async def test_search_pagination_no_more(self): + """Pagination at end of results sets has_more=False.""" + observations = [_make_mock_observation(product_id=f"fixed_{i}") for i in range(3)] + for i, obs in enumerate(observations): + obs.model_dump.return_value = { + "product_id": f"fixed_{i}", + "source": "ps1dr2", + "date": "2018-06-15", + "archive_url": f"https://example.com/fixed_{i}", + } + + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + return_value=_make_mock_fixed_response(observations=observations) + ) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema(ra="185.5", dec="45.2", limit=10, offset=0) + ) + + assert result.count == 3 + assert result.total_available == 3 + assert result.has_more is False + + async def test_search_pagination_with_offset(self): + """Offset skips first N observations.""" + observations = [_make_mock_observation(product_id=f"fixed_{i}") for i in range(5)] + for i, obs in enumerate(observations): + obs.model_dump.return_value = { + "product_id": f"fixed_{i}", + "source": "ps1dr2", + "date": "2018-06-15", + "archive_url": f"https://example.com/fixed_{i}", + "ra": 185.5, + "dec": 45.2, + } + + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + return_value=_make_mock_fixed_response(observations=observations) + ) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema(ra="185.5", dec="45.2", limit=2, offset=4) + ) + + assert result.count == 1 + assert result.total_available == 5 + assert result.offset == 4 + assert result.has_more is False + assert result.observations[0]["product_id"] == "fixed_4" + + async def test_search_empty_results(self): + """Empty search returns count=0 and empty observations.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + return_value=_make_mock_fixed_response(observations=[]) + ) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema(ra="0.0", dec="90.0") + ) + + assert result.count == 0 + assert result.total_available == 0 + assert result.observations == [] + assert result.has_more is False + + async def test_search_response_error_raises(self): + """Response with error field raises SBNCatchClientError.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + return_value=_make_mock_fixed_response(error="Invalid coordinates") + ) + + tool = SBNSearchCoordinatesTool() + with pytest.raises(SBNCatchClientError, match="Invalid coordinates"): + await tool.arun( + SBNSearchCoordinatesInputSchema(ra="bad", dec="bad") + ) + + async def test_search_client_error_raises(self): + """SBNCatchClientError from client is re-raised.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock( + side_effect=SBNCatchClientError("API timeout") + ) + + tool = SBNSearchCoordinatesTool() + with pytest.raises(SBNCatchClientError, match="API timeout"): + await tool.arun( + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5") + ) + + async def test_search_unexpected_error_raises_runtime_error(self): + """Unexpected exceptions are wrapped in RuntimeError.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock(side_effect=ValueError("bad value")) + + tool = SBNSearchCoordinatesTool() + with pytest.raises(RuntimeError, match="Internal error"): + await tool.arun( + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5") + ) + + async def test_search_with_config(self): + """Custom config values are passed to the client.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock(return_value=_make_mock_fixed_response()) + + config = SBNSearchCoordinatesToolConfig( + base_url="https://custom.url/", + timeout=90.0, + max_retries=2, + ) + tool = SBNSearchCoordinatesTool(config=config) + await tool.arun(SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5")) + + MockClient.assert_called_once_with( + base_url="https://custom.url/", + timeout=90.0, + max_retries=2, + ) + + async def test_search_all_filters_combined(self): + """All search parameters are forwarded to the client.""" + with patch(_SEARCH_COORDS_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.search_fixed_target = AsyncMock(return_value=_make_mock_fixed_response()) + + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema( + ra="12:34:56.7", + dec="+45:30:00.0", + radius=60.0, + sources=["neat_palomar_tricam", "catalina_bigelow"], + start_date="2005-01-01", + stop_date="2015-12-31", + limit=5, + offset=3, + fields="essential", + ) + ) + + call_kwargs = mock_client.search_fixed_target.call_args.kwargs + assert call_kwargs["ra"] == "12:34:56.7" + assert call_kwargs["dec"] == "+45:30:00.0" + assert call_kwargs["radius"] == 60.0 + assert call_kwargs["sources"] == ["neat_palomar_tricam", "catalina_bigelow"] + assert call_kwargs["start_date"] == "2005-01-01" + assert call_kwargs["stop_date"] == "2015-12-31" + assert result.fields == "essential" + assert result.offset == 3 + assert result.limit == 5 + + +# --------------------------------------------------------------------------- +# SBNListSourcesTool +# --------------------------------------------------------------------------- + + +class TestSBNListSourcesTool: + """Tests for SBNListSourcesTool.""" + + async def test_basic_list(self): + """List sources returns available data sources.""" + sources = [ + _make_mock_catch_source( + source="neat_palomar_tricam", + source_name="NEAT Palomar Tri-Cam", + count=12345, + start_date="1999-01-01", + stop_date="2007-12-31", + nights=2500, + updated="2024-06-01T00:00:00Z", + ), + _make_mock_catch_source( + source="ps1dr2", + source_name="Pan-STARRS 1 DR2", + count=98765, + start_date="2010-05-01", + stop_date="2014-03-31", + nights=1200, + updated="2024-06-15T00:00:00Z", + ), + ] + + with patch(_LIST_SOURCES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_sources = AsyncMock( + return_value=_make_mock_sources_response(sources=sources) + ) + + tool = SBNListSourcesTool() + result = await tool.arun(SBNListSourcesInputSchema()) + + assert isinstance(result, SBNListSourcesOutputSchema) + assert result.total_sources == 2 + assert len(result.sources) == 2 + + neat = result.sources[0] + assert isinstance(neat, SBNSourceSummary) + assert neat.source == "neat_palomar_tricam" + assert neat.source_name == "NEAT Palomar Tri-Cam" + assert neat.count == 12345 + assert neat.start_date == "1999-01-01" + assert neat.stop_date == "2007-12-31" + assert neat.nights == 2500 + assert neat.updated == "2024-06-01T00:00:00Z" + + ps1 = result.sources[1] + assert ps1.source == "ps1dr2" + assert ps1.source_name == "Pan-STARRS 1 DR2" + assert ps1.count == 98765 + + async def test_list_empty_sources(self): + """Empty sources list returns total_sources=0.""" + with patch(_LIST_SOURCES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_sources = AsyncMock( + return_value=_make_mock_sources_response(sources=[]) + ) + + tool = SBNListSourcesTool() + result = await tool.arun(SBNListSourcesInputSchema()) + + assert result.total_sources == 0 + assert result.sources == [] + + async def test_list_response_error_raises(self): + """Response with error field raises SBNCatchClientError.""" + with patch(_LIST_SOURCES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_sources = AsyncMock( + return_value=_make_mock_sources_response(error="Service unavailable") + ) + + tool = SBNListSourcesTool() + with pytest.raises(SBNCatchClientError, match="Service unavailable"): + await tool.arun(SBNListSourcesInputSchema()) + + async def test_list_client_error_raises(self): + """SBNCatchClientError from client is re-raised.""" + with patch(_LIST_SOURCES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_sources = AsyncMock( + side_effect=SBNCatchClientError("request failed") + ) + + tool = SBNListSourcesTool() + with pytest.raises(SBNCatchClientError, match="request failed"): + await tool.arun(SBNListSourcesInputSchema()) + + async def test_list_unexpected_error_raises_runtime_error(self): + """Unexpected exceptions are wrapped in RuntimeError.""" + with patch(_LIST_SOURCES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_sources = AsyncMock(side_effect=OSError("network error")) + + tool = SBNListSourcesTool() + with pytest.raises(RuntimeError, match="Internal error"): + await tool.arun(SBNListSourcesInputSchema()) + + async def test_list_with_config(self): + """Custom config values are passed to the client.""" + with patch(_LIST_SOURCES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_sources = AsyncMock(return_value=_make_mock_sources_response()) + + config = SBNListSourcesToolConfig( + base_url="https://custom.catch.url/", + timeout=45.0, + max_retries=1, + ) + tool = SBNListSourcesTool(config=config) + await tool.arun(SBNListSourcesInputSchema()) + + MockClient.assert_called_once_with( + base_url="https://custom.catch.url/", + timeout=45.0, + max_retries=1, + ) + + async def test_list_source_with_none_optional_fields(self): + """Sources with None optional fields are handled gracefully.""" + src = _make_mock_catch_source( + source="spacewatch_0.9m", + source_name=None, + count=500, + start_date=None, + stop_date=None, + nights=None, + updated=None, + ) + + with patch(_LIST_SOURCES_CLIENT) as MockClient: + mock_client = AsyncMock() + MockClient.return_value.__aenter__ = AsyncMock(return_value=mock_client) + MockClient.return_value.__aexit__ = AsyncMock(return_value=False) + mock_client.list_sources = AsyncMock( + return_value=_make_mock_sources_response(sources=[src]) + ) + + tool = SBNListSourcesTool() + result = await tool.arun(SBNListSourcesInputSchema()) + + assert result.total_sources == 1 + source = result.sources[0] + assert source.source == "spacewatch_0.9m" + assert source.source_name is None + assert source.count == 500 + assert source.start_date is None + assert source.stop_date is None + assert source.nights is None + assert source.updated is None + + +# --------------------------------------------------------------------------- +# Schema validation tests +# --------------------------------------------------------------------------- + + +class TestSBNSchemaValidation: + """Tests for SBN input schema validation.""" + + def test_search_object_input_requires_target(self): + """SBNSearchObjectInputSchema requires target.""" + with pytest.raises(Exception): + SBNSearchObjectInputSchema() + + def test_search_object_input_defaults(self): + """SBNSearchObjectInputSchema has correct defaults.""" + schema = SBNSearchObjectInputSchema(target="65803") + assert schema.target == "65803" + assert schema.sources is None + assert schema.start_date is None + assert schema.stop_date is None + assert schema.cached is True + assert schema.timeout == 120.0 + assert schema.limit == 10 + assert schema.offset == 0 + assert schema.fields == "summary" + + def test_search_object_input_limit_bounds(self): + """Limit must be between 1 and 10.""" + with pytest.raises(Exception): + SBNSearchObjectInputSchema(target="65803", limit=0) + with pytest.raises(Exception): + SBNSearchObjectInputSchema(target="65803", limit=11) + + def test_search_object_input_offset_non_negative(self): + """Offset must be >= 0.""" + with pytest.raises(Exception): + SBNSearchObjectInputSchema(target="65803", offset=-1) + + def test_search_object_input_invalid_fields(self): + """Invalid fields value raises validation error.""" + with pytest.raises(Exception): + SBNSearchObjectInputSchema(target="65803", fields="invalid") + + def test_search_object_input_timeout_bounds(self): + """Timeout must be > 0 and <= 600.""" + with pytest.raises(Exception): + SBNSearchObjectInputSchema(target="65803", timeout=0) + with pytest.raises(Exception): + SBNSearchObjectInputSchema(target="65803", timeout=601) + + def test_search_coordinates_input_requires_ra_dec(self): + """SBNSearchCoordinatesInputSchema requires ra and dec.""" + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema() + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema(ra="123.45") + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema(dec="-30.5") + + def test_search_coordinates_input_defaults(self): + """SBNSearchCoordinatesInputSchema has correct defaults.""" + schema = SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5") + assert schema.ra == "123.45" + assert schema.dec == "-30.5" + assert schema.radius == 10.0 + assert schema.sources is None + assert schema.start_date is None + assert schema.stop_date is None + assert schema.limit == 10 + assert schema.offset == 0 + assert schema.fields == "summary" + + def test_search_coordinates_input_limit_bounds(self): + """Limit must be between 1 and 10.""" + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", limit=0) + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", limit=11) + + def test_search_coordinates_input_radius_bounds(self): + """Radius must be > 0 and <= 120.""" + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", radius=0) + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", radius=121) + + def test_search_coordinates_input_offset_non_negative(self): + """Offset must be >= 0.""" + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", offset=-1) + + def test_search_coordinates_input_invalid_fields(self): + """Invalid fields value raises validation error.""" + with pytest.raises(Exception): + SBNSearchCoordinatesInputSchema(ra="123.45", dec="-30.5", fields="invalid") + + def test_list_sources_input_no_params(self): + """SBNListSourcesInputSchema takes no parameters.""" + schema = SBNListSourcesInputSchema() + assert schema is not None + + +# --------------------------------------------------------------------------- +# Types and helpers tests +# --------------------------------------------------------------------------- + + +class TestSBNTypes: + """Tests for SBN shared types and helper functions.""" + + def test_field_profiles_keys(self): + """FIELD_PROFILES contains essential, summary, and full profiles.""" + assert "essential" in FIELD_PROFILES + assert "summary" in FIELD_PROFILES + assert "full" in FIELD_PROFILES + + def test_essential_fields_subset_of_summary(self): + """Essential fields are a subset of summary fields.""" + assert ESSENTIAL_FIELDS.issubset(SUMMARY_FIELDS) + + def test_summary_fields_subset_of_full(self): + """Summary fields are a subset of full fields.""" + full_fields = FIELD_PROFILES["full"] + assert SUMMARY_FIELDS.issubset(full_fields) + + def test_filter_observation_essential(self): + """filter_observation with essential fields returns only essential keys.""" + obs_dict = { + "product_id": "obs_001", + "source": "neat_palomar_tricam", + "date": "2020-01-15", + "archive_url": "https://example.com", + "ra": 123.45, + "dec": -30.5, + "vmag": 18.5, + "rh": 2.5, + } + filtered = filter_observation(obs_dict, ESSENTIAL_FIELDS) + assert set(filtered.keys()) == {"product_id", "source", "date", "archive_url"} + + def test_filter_observation_excludes_none(self): + """filter_observation excludes None values.""" + obs_dict = { + "product_id": "obs_001", + "source": "neat_palomar_tricam", + "date": None, + "archive_url": "https://example.com", + } + filtered = filter_observation(obs_dict, ESSENTIAL_FIELDS) + assert "date" not in filtered + assert "product_id" in filtered + + def test_filter_observation_summary(self): + """filter_observation with summary fields returns essential + summary keys.""" + obs_dict = { + "product_id": "obs_001", + "source": "neat_palomar_tricam", + "date": "2020-01-15", + "archive_url": "https://example.com", + "ra": 123.45, + "dec": -30.5, + "vmag": 18.5, + "filter": "V", + "exposure": 60.0, + "rh": 2.5, + "delta": 1.8, + } + filtered = filter_observation(obs_dict, SUMMARY_FIELDS) + assert "product_id" in filtered + assert "ra" in filtered + assert "vmag" in filtered + assert "filter" in filtered + assert "exposure" in filtered + assert "rh" not in filtered + assert "delta" not in filtered + + def test_filter_observation_full(self): + """filter_observation with full fields returns all recognized keys.""" + full_fields = FIELD_PROFILES["full"] + obs_dict = { + "product_id": "obs_001", + "source": "neat_palomar_tricam", + "date": "2020-01-15", + "archive_url": "https://example.com", + "ra": 123.45, + "dec": -30.5, + "vmag": 18.5, + "rh": 2.5, + "delta": 1.8, + "phase": 15.0, + "dra": 0.5, + "ddec": -0.3, + "seeing": 2.1, + "airmass": 1.3, + "maglimit": 21.0, + "cutout_url": "https://example.com/cutout", + "preview_url": "https://example.com/preview", + "mjd_start": 58863.5, + "unknown_field": "should_be_excluded", + } + filtered = filter_observation(obs_dict, full_fields) + assert "rh" in filtered + assert "delta" in filtered + assert "phase" in filtered + assert "seeing" in filtered + assert "airmass" in filtered + assert "maglimit" in filtered + assert "cutout_url" in filtered + assert "preview_url" in filtered + assert "mjd_start" in filtered + assert "unknown_field" not in filtered diff --git a/tests/tools/pds/test_sbn_integration.py b/tests/tools/pds/test_sbn_integration.py new file mode 100644 index 0000000..2d43d4b --- /dev/null +++ b/tests/tools/pds/test_sbn_integration.py @@ -0,0 +1,185 @@ +"""Integration tests for SBN CATCH tools using the real CATCH API.""" + +import pytest + +from akd_ext.tools.pds.sbn.list_sources import ( + SBNListSourcesInputSchema, + SBNListSourcesOutputSchema, + SBNListSourcesTool, + SBNSourceSummary, +) +from akd_ext.tools.pds.sbn.search_object import ( + SBNSearchObjectInputSchema, + SBNSearchObjectOutputSchema, + SBNSearchObjectTool, +) +from akd_ext.tools.pds.sbn.search_coordinates import ( + SBNSearchCoordinatesInputSchema, + SBNSearchCoordinatesOutputSchema, + SBNSearchCoordinatesTool, +) + + +# --------------------------------------------------------------------------- +# SBNListSourcesTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestSBNListSourcesIntegration: + """Integration tests for SBNListSourcesTool against the real CATCH API.""" + + async def test_list_all_sources(self): + """List sources returns a non-trivial number of sources with expected fields.""" + tool = SBNListSourcesTool() + result = await tool.arun(SBNListSourcesInputSchema()) + + assert isinstance(result, SBNListSourcesOutputSchema) + assert result.total_sources > 5 + assert len(result.sources) == result.total_sources + for source in result.sources: + assert isinstance(source, SBNSourceSummary) + assert source.source + assert source.count >= 0 + + async def test_known_sources_present(self): + """Well-known sources like neat_palomar_tricam or ps1dr2 are in the list.""" + tool = SBNListSourcesTool() + result = await tool.arun(SBNListSourcesInputSchema()) + + source_names = [s.source for s in result.sources] + known_sources = {"neat_palomar_tricam", "ps1dr2"} + found = known_sources & set(source_names) + assert len(found) > 0, ( + f"Expected at least one of {known_sources} in source list, got: {source_names}" + ) + + +# --------------------------------------------------------------------------- +# SBNSearchObjectTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestSBNSearchObjectIntegration: + """Integration tests for SBNSearchObjectTool against the real CATCH API.""" + + async def test_search_known_asteroid(self): + """Search for Didymos (65803) returns observations.""" + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema( + target="65803", + cached=True, + limit=5, + timeout=120, + ) + ) + + assert isinstance(result, SBNSearchObjectOutputSchema) + assert result.target == "65803" + assert result.count > 0 + assert result.total_available >= result.count + assert len(result.observations) == result.count + assert len(result.observations) <= 5 + + async def test_search_known_comet(self): + """Search for Halley's Comet (1P) returns observations.""" + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema( + target="1P", + cached=True, + limit=5, + timeout=120, + ) + ) + + assert isinstance(result, SBNSearchObjectOutputSchema) + assert result.target == "1P" + assert result.count >= 0 + assert result.total_available >= result.count + + async def test_search_with_essential_fields(self): + """Search with essential field profile returns product_id, source, date.""" + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema( + target="65803", + cached=True, + limit=5, + timeout=120, + fields="essential", + ) + ) + + assert result.fields == "essential" + for obs in result.observations: + assert "product_id" in obs + assert "source" in obs + assert "date" in obs + # Summary-only fields should not be present in essential profile + for extra_field in ("vmag", "filter", "exposure"): + assert extra_field not in obs + + async def test_search_no_results(self): + """Search for a target unlikely to have observations returns count=0.""" + tool = SBNSearchObjectTool() + result = await tool.arun( + SBNSearchObjectInputSchema( + target="9999999", + cached=True, + limit=5, + timeout=120, + ) + ) + + assert isinstance(result, SBNSearchObjectOutputSchema) + assert result.count == 0 + assert result.observations == [] + + +# --------------------------------------------------------------------------- +# SBNSearchCoordinatesTool – integration +# --------------------------------------------------------------------------- + + +@pytest.mark.integration +class TestSBNSearchCoordinatesIntegration: + """Integration tests for SBNSearchCoordinatesTool against the real CATCH API.""" + + async def test_search_known_coordinates(self): + """Search at a well-covered sky position returns observations.""" + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema( + ra="12:00:00", + dec="+10:00:00", + radius=30, + ) + ) + + assert isinstance(result, SBNSearchCoordinatesOutputSchema) + assert result.ra == "12:00:00" + assert result.dec == "+10:00:00" + assert result.radius == 30 + assert result.count > 0 + assert result.total_available >= result.count + assert len(result.observations) == result.count + + async def test_search_with_summary_fields(self): + """Search with summary field profile includes ra and dec fields.""" + tool = SBNSearchCoordinatesTool() + result = await tool.arun( + SBNSearchCoordinatesInputSchema( + ra="12:00:00", + dec="+10:00:00", + radius=30, + fields="summary", + ) + ) + + assert result.fields == "summary" + for obs in result.observations: + assert "ra" in obs + assert "dec" in obs From fecaebadcd30b24a3204d6ca5f513ae90463ef29 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Tue, 17 Mar 2026 18:21:43 -0500 Subject: [PATCH 14/16] Remove extra bracket in identifiers --- .../scraped_data/atm_catalog.jsonl | 1032 +- .../scraped_data/img_catalog.jsonl | 430 +- .../scraped_data/rms_catalog.jsonl | 2100 +-- .../scraped_data/sbn_catalog.jsonl | 10986 ++++++++-------- 4 files changed, 7274 insertions(+), 7274 deletions(-) diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl index 6f2dad3..a52acc6 100644 --- a/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/atm_catalog.jsonl @@ -559,24 +559,24 @@ {"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559659", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "CO-S-UVIS-2-SSB-V1.3", "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559659", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "CO-S-UVIS-2-SPEC-V1.3", "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559659", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0043 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0044 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-182...2013-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0045 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-274...2014-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0046 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-001...2014-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0047 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-091...2014-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0048 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-182...2014-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0049 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Oct 1, 2014... Jan 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559706", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0050 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559712", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0051 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations^M taken by the UVIS instrument during the Apr 1, 2015...Jul 1, 2015 time period. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559719", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0052 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-182...2015-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559726", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0053 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-274...2016-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559732", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0054 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-001...2016-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0055 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-092...2016-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0056 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-183...2016-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0057 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-275...2017-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0058 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-001...2017-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0059 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-091...2017-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0060 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-182...2017-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559781", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0043 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0044 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-182...2013-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0045 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-274...2014-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0046 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-001...2014-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0047 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-091...2014-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0048 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-182...2014-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0049 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Oct 1, 2014... Jan 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559706", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0050 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559712", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0051 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations^M taken by the UVIS instrument during the Apr 1, 2015...Jul 1, 2015 time period. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559719", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0052 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-182...2015-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559726", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0053 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-274...2016-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559732", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0054 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-001...2016-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0055 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-092...2016-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0056 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-183...2016-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0057 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-275...2017-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0058 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-001...2017-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0059 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-091...2017-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0060 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-182...2017-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559781", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "HP-SSA-ACP-3-DESCENT-V1.0", "title": "ATM Volume hpacp_0001 (Huygens ACP Calibrated Engineering & Science Data)", "description": "The Huygens Aerosol Collector and Pyrolyzer (ACP) was designed for the chemical analysis of Titan's atmospheric aerosols. 1.HP-SSA-ACP-3-DESCENT-V1.0 It sampled the aerosols during the descent to Titan's surface and prepared the collected material (by evaporation, pyrolysis, and gas products transfer) for analysis by the Huygens GCMS instrument.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpacp_0001", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559787", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "HP-SSA-DISR-2/3-EDR/RDR-V1.3", "title": "ATM Volume hpdisr_0001 (Huygens Probe DISR Results)", "description": "This dataset contains data obtained by the Descent Imager Spectral Radiometer(DISR) aboard the Huygens probe, which was released from the Cassini Spacecraft. 1.HP-SSA-DISR-2/3-EDR/RDR-V1.0 The Huygens Descent Imager and Spectral Radiometer (DISR) made measurements of solar radiation as it traveled through Titan's atmosphere and landed on the surface. Its suite of seven instruments includes photodiodes, a charge-coupled device (CCD), and two near-infrared linear array detectors. The interaction of sunlight with Titan's surface and atmospheric aerosols and gases will provide insight into the nature of Titan's surface and the composition, meteorology, thermal balance, and clouds and aerosols in Titan's atmosphere. The data was obtained on January 14 during the primary descent phase of the Cassini-Huygens mission.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdisr_0001", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559794", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "HP-SSA-DTWG-6-TRAJECTORY-V1.0", "title": "ATM Volume hpdtwg_0001 (Huygens Trajectory)", "description": "The Huygens Descent Trajectory Working Group (DTWG) data set contains the trajectory data of the Huygens Probe in the atmosphere of Titan. 1.HP-SSA-DTWG-6-TRAJECTORY-V1.0 This data set consists of seven data products that describe both the entry phase and the descent phase of the Probe's mission.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdtwg_0001", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559800", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} @@ -2882,24 +2882,24 @@ {"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559659", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "CO-S-UVIS-2-SSB-V1.3", "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559659", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "CO-S-UVIS-2-SPEC-V1.3", "title": "ATM Volume couvis_0042 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.\" 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0042", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559659", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0043 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0044 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-182...2013-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0045 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-274...2014-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0046 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-001...2014-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0047 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-091...2014-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0048 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-182...2014-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.3\",", "title": "ATM Volume couvis_0049 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Oct 1, 2014... Jan 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559706", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0050 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559712", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0051 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations^M taken by the UVIS instrument during the Apr 1, 2015...Jul 1, 2015 time period. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559719", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0052 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-182...2015-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559726", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0053 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-274...2016-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559732", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0054 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-001...2016-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0055 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-092...2016-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0056 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-183...2016-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0057 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-275...2017-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0058 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-001...2017-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0059 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-091...2017-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id": "(\"CO-S-UVIS-2-CUBE-V1.4\",", "title": "ATM Volume couvis_0060 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-182...2017-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559781", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0043 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0043", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0044 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-182...2013-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0044", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0045 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-274...2014-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0045", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0046 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-001...2014-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0046", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0047 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-091...2014-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0047", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0048 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2014-182...2014-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0048", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "ATM Volume couvis_0049 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Oct 1, 2014... Jan 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.3 2. CO-S-UVIS-2-SSB-V1.3 3. CO-S-UVIS-2-SPEC-V1.3 4. CO-S-UVIS-2-CALIB-V1.3", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0049", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559706", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0050 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0050", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559712", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0051 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations^M taken by the UVIS instrument during the Apr 1, 2015...Jul 1, 2015 time period. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0051", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559719", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0052 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-182...2015-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0052", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559726", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0053 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2015-274...2016-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0053", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559732", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0054 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-001...2016-092 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0054", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0055 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-092...2016-183 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0055", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0056 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-183...2016-275 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0056", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0057 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2016-275...2017-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0057", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0058 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-001...2017-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0058", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0059 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-091...2017-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0059", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "ATM Volume couvis_0060 (Cassini Ultraviolet Imaging Spectrograph Data)", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2017-182...2017-274 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume. 1. CO-S-UVIS-2-CUBE-V1.4 2. CO-S-UVIS-2-SSB-V1.4 3. CO-S-UVIS-2-SPEC-V1.4 4. CO-S-UVIS-2-CALIB-V1.4", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=couvis_0060", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559781", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "HP-SSA-ACP-3-DESCENT-V1.0", "title": "ATM Volume hpacp_0001 (Huygens ACP Calibrated Engineering & Science Data)", "description": "The Huygens Aerosol Collector and Pyrolyzer (ACP) was designed for the chemical analysis of Titan's atmospheric aerosols. 1.HP-SSA-ACP-3-DESCENT-V1.0 It sampled the aerosols during the descent to Titan's surface and prepared the collected material (by evaporation, pyrolysis, and gas products transfer) for analysis by the Huygens GCMS instrument.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpacp_0001", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559787", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "HP-SSA-DISR-2/3-EDR/RDR-V1.3", "title": "ATM Volume hpdisr_0001 (Huygens Probe DISR Results)", "description": "This dataset contains data obtained by the Descent Imager Spectral Radiometer(DISR) aboard the Huygens probe, which was released from the Cassini Spacecraft. 1.HP-SSA-DISR-2/3-EDR/RDR-V1.0 The Huygens Descent Imager and Spectral Radiometer (DISR) made measurements of solar radiation as it traveled through Titan's atmosphere and landed on the surface. Its suite of seven instruments includes photodiodes, a charge-coupled device (CCD), and two near-infrared linear array detectors. The interaction of sunlight with Titan's surface and atmospheric aerosols and gases will provide insight into the nature of Titan's surface and the composition, meteorology, thermal balance, and clouds and aerosols in Titan's atmosphere. The data was obtained on January 14 during the primary descent phase of the Cassini-Huygens mission.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdisr_0001", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559794", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "HP-SSA-DTWG-6-TRAJECTORY-V1.0", "title": "ATM Volume hpdtwg_0001 (Huygens Trajectory)", "description": "The Huygens Descent Trajectory Working Group (DTWG) data set contains the trajectory data of the Huygens Probe in the atmosphere of Titan. 1.HP-SSA-DTWG-6-TRAJECTORY-V1.0 This data set consists of seven data products that describe both the entry phase and the descent phase of the Probe's mission.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Saturn"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=hpdtwg_0001", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559800", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} @@ -2919,483 +2919,483 @@ {"id": "VG2-U-UVS-3-RDR-V1.0", "title": "ATM Volume vg_2214 , vg_2215 (Voyager 2 UVS)", "description": "These volumes contain data produced from the Voyager UVS experiments. UVS derived spectral data are included. They also contain documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-U-UVS-3-RDR-V1.0 These volumes contain reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Uranus.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Uranus"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2215", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559886", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "VG2-N-UVS-3-RDR-V1.0", "title": "ATM Volume vg_2216 (Voyager 2 UVS)", "description": "This volume contains data produced from the Voyager UVS experiments. UVS derived spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM. 1. VG2-N-UVS-3-RDR-V1.0 This volume contains reformatted Voyager 2 UVS spectral data records with merged ancillary information derived from the footprint SEDR files. All data for which footprint SEDR information was available are included, except for certain high background noise time periods near closest approach to Neptune.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Neptune"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2216", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559909", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} {"id": "VG2-NSA-RSS-5-ROCC-V1.0", "title": "ATM Volume vg_2499 (Voyager 2 Triton Radio Occultations)", "description": "This volume contains results from Voyager 2 radio occultation measurements at Triton. It contains the following data sets and ancillary documentation to support access of the data on this CD-WO. 1. VOYAGER 2 TRITON RADIO OCCULTATION REDUCED DATA V1.0 This data set contains processed data acquired from the Voyager 2 Triton radio occultation experiment. Observations were carried out using the Voyager 2 spacecraft and facilities of the NASA Deep Space Network (DSN); they were designed to detect and measure the structure of Triton's atmosphere.", "node": "atm", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": ["Neptune"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/cgi-bin/getdir.pl?&volume=vg_2499", "download_url": null, "label_url": null, "source_url": "https://pds-atmospheres.nmsu.edu/data_and_services/atmospheres_data/catalog.htm", "scraped_at": "2026-02-02T21:41:28.559915", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra::1.1","title":"Laboratory Study of Hydrocarbon IR Spectra Bundle","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":"2017-01-01","stop_date":"2021-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml","scraped_at":"2026-02-25T20:02:10.736633Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie::1.1","title":"Mars 2020 MOXIE Bundle","description":"Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":[],"start_date":"2021-02-22","stop_date":"2021-08-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","scraped_at":"2026-02-25T20:02:10.736798Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv::1.0","title":"Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015","description":"Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":[],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/bundle_eldorado_nv_dd_ptv.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/bundle_eldorado_nv_dd_ptv.xml","scraped_at":"2026-02-25T20:02:10.736808Z","keywords":["dust devil","field campaign"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl::1.0","title":"InSight EDL Bundle","description":"This PDS4 bundle contains the InSight EDL atmospheric reconstruction","node":"atm","pds_version":"PDS4","type":"bundle","missions":["InSight"],"targets":["Mars"],"instruments":["EDL"],"instrument_hosts":["InSight"],"data_types":[],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/bundle_insightedl.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/bundle_insightedl.xml","scraped_at":"2026-02-25T20:02:10.736817Z","keywords":["Atmospheric Reconstruction"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Bundle","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"bundle","missions":["McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["McMath-Pierce Solar Telescope Main 1.61-m Reflector","Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":[],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/bundle_mcmath-pierce_mercury.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/bundle_mcmath-pierce_mercury.xml","scraped_at":"2026-02-25T20:02:10.736824Z","keywords":["McMath-Pierce Solar Telescope","spectra","Mercury"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim::1.0","title":"IMP Opacities Bundle","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Pathfinder"],"data_types":[],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/bundle_lemmon.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/bundle_lemmon.xml","scraped_at":"2026-02-25T20:02:10.736828Z","keywords":["opacities"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl::1.1","title":"MSLEDL Bundle","description":"This PDS4 file contains the MSL EDL atmospheric reconstruction","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/bundle_msledl.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/bundle_msledl.xml","scraped_at":"2026-02-25T20:02:10.736833Z","keywords":["Atmospheric Reconstruction"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere::1.0","title":"Saturn Ionosphere Bundle","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/bundle_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/bundle_corss_saturn_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.736839Z","keywords":["Cassini Orbiter","RSS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Bundle","description":"Molecular hydrogen and temperature profiles of Saturn's thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/bundle_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/bundle_saturn_thermosphere_h2_density_temp.xml","scraped_at":"2026-02-25T20:02:10.736847Z","keywords":["Cassini Orbiter","UVIS","CIRS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden::1.0","title":"Viking Orbiters 1 and 2 Radio Occultation Electron Density Document Collection","description":"Derived data products from Viking Orbiter 1 and 2 radio occultations at Mars and their accompanying documentation. Derived data products are electron density profiles from occultations.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Viking Orbiters 1 and 2"],"targets":["Mars"],"instruments":["Radio Science Subsystem","Radio Science Subsystem"],"instrument_hosts":["Viking Orbiter 1","Viking Orbiter 2"],"data_types":[],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/bundle_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/bundle_voroelden.xml","scraped_at":"2026-02-25T20:02:10.736855Z","keywords":["radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Bundle","description":"2.2 cm thermal emission maps of Saturn obtained using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/bundle_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/bundle_cassini_saturn_radar_maps.xml","scraped_at":"2026-02-25T20:02:10.736861Z","keywords":["Cassini Orbiter","RADAR","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Mole fractions during the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/bundle_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/bundle_cocirs_c2h4abund.xml","scraped_at":"2026-02-25T20:02:10.736867Z","keywords":["abundances"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds::1.0","title":"Saturn Zonal Winds Bundle","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/bundle_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/bundle_coiss_zonal_winds.xml","scraped_at":"2026-02-25T20:02:10.736873Z","keywords":["Cassini Orbiter","ISS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape::1.0","title":"Hot Ion Atmospheric Escape Data","description":"This bundle contains collated hot ion atmospheric escape data from multiple published sources","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Hot Ion Atmospheric Escape Data"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"2015-01-01","stop_date":"2019-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/bundle_hot_ion_atmos_escape.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/bundle_hot_ion_atmos_escape.xml","scraped_at":"2026-02-25T20:02:10.736877Z","keywords":["crossection"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry::1.0","title":"InfraRed Telescope Facility Io Photometry Bundle","description":"IRTF Photometry of Io","node":"atm","pds_version":"PDS4","type":"bundle","missions":["IRTF Photometry of Io"],"targets":["Io"],"instruments":["IRTF 3.0-Meter Telescope"],"instrument_hosts":["irtf"],"data_types":[],"start_date":"1983-02-09","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/bundle_irtf_io_photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/bundle_irtf_io_photometry.xml","scraped_at":"2026-02-25T20:02:10.736904Z","keywords":["IRTF","photometry","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Bundle","description":"Photometric observations of Uranus and Neptune (1972-2016) in the b (472 nm) and y (551 nm) filters of the Strömgren photometric system at Lowell Observatory. Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune from 1972-2016.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":["Lowell 21-in Reflector"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/bundle_lowell_uranus-neptune_photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/bundle_lowell_uranus-neptune_photometry.xml","scraped_at":"2026-02-25T20:02:10.736909Z","keywords":["uranus","neptune","photometry"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Bundle","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":[],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/bundle_mgs-rss_nocturnal-mixed-layers.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/bundle_mgs-rss_nocturnal-mixed-layers.xml","scraped_at":"2026-02-25T20:02:10.736917Z","keywords":["radio occultation","nighttime convection","polar clouds"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos::2.0","title":"Mars Global Surveyor Thermal Emission Spectrometer Atmospheric Recalibration Bundle","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml","scraped_at":"2026-02-25T20:02:10.736923Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp::2.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Bundle","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/bundle_corsstpp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/bundle_corsstpp.xml","scraped_at":"2026-02-25T20:02:10.736929Z","keywords":["Titan","radio"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wt_threshold_speed::1.0","title":"Wind Tunnel Threshold Speed Document Bundle","description":"Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Planetary Aeolian Laboratory Wind Tunnel Threshold Speed"],"targets":["Mars Analog","Venus Analog","Titan Analog","Earth Analog"],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":["Planetary Aeolian Laboratory","Iowa State University Department of Aeorospace Engineering","Aarhus University Mars Simulation Lab","Trent University Trent Environmental Wind Tunnel Facility","Hydraulics Laboratory Imperial College, London","The High Plains Wind Erosion Laboratory, Kansas State University","Wind Erosion Laboratory, Dept. Geography, University of Guelph","Richmond Field Station, University of California,","Department of Agricultural Engineering, Texas Tech University","Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy","Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium","Whitehead Aeronautical Laboratory, Queen Mary University of London, UK","Center for Eremology, Ghent University, Belgium","USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"],"data_types":[],"start_date":"1970-01-01","stop_date":"2017-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/bundle_wt_threshold_speed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/bundle_wt_threshold_speed.xml","scraped_at":"2026-02-25T20:02:10.736941Z","keywords":["Wind Tunnel","threshold speed"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie::3.0","title":"Mars 2020 MOXIE Bundle","description":"Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":[],"start_date":"2021-02-22","stop_date":"2021-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","scraped_at":"2026-02-25T20:02:10.736946Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins::3.0","title":"APSS TWINS Data","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml","scraped_at":"2026-02-25T20:02:10.736950Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps::3.0","title":"APSS PS Data","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml","scraped_at":"2026-02-25T20:02:10.736953Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse::1.0","title":"Pioneer Venus Orbiter Radio Occultation Profiles","description":"Derived data products from Pioneer Venus Orbiter radio occultations at Venus and their accompanying documentation. Derived data products include: (A) frequency data from the NSSDC, (B) Venus ionospheric electron density profiles from the NSSDC, (C) Venus neutral atmospheric profiles from the NSSDC, (D) Venus ionospheric electron density profiles from graphical sources, and (E) Venus neutral atmospheric profiles from graphical sources.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Radio Science Experiment"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":[],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/bundle_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/bundle_pvoro.xml","scraped_at":"2026-02-25T20:02:10.736958Z","keywords":["radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps::3.1","title":"APSS PS Data","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml","scraped_at":"2026-02-25T20:02:10.738165Z","keywords":["Mars","weather","meteorology","environment","pressure"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins::3.1","title":"APSS TWINS Data","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml","scraped_at":"2026-02-25T20:02:10.738170Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_mission_bundle::1.0","title":"LADEE Mission Bundle","description":"The LADEE bundle was created by the PDS Atmospheres node in 2014","node":"atm","pds_version":"PDS4","type":"bundle","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS","UVS","LDEX"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/LADEE_Bundle_1101.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/LADEE_Bundle_1101.xml","scraped_at":"2026-02-25T20:02:10.738174Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_acc::1.1","title":"MAVEN Accelerometer Data","description":"This bundle contains the data collected by the Accelerometers and Reaction Wheels (ACCEL) aboard the Mars Atmosphere and Volatile EvolutioN (MAVEN) satellite, along with the documents and other information necessary for the interpretation of that data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["MAVEN"],"targets":["Mars"],"instruments":["ACCEL"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/bundle_maven__accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/bundle_maven__accel.xml","scraped_at":"2026-02-25T20:02:10.738178Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) for GO Bundle","description":"This version of the Ultraviolet Spectrometer (UVS) for GO bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Io Plasma Torus","STAR"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/bundle_gouvs.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/bundle_gouvs.xml","scraped_at":"2026-02-25T20:02:10.738181Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) for VG Bundle","description":"This version of the Ultraviolet Spectrometer (UVS) for Voyager (VG) bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["VOYAGER"],"targets":["JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS","UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/bundle_vguvs.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/bundle_vguvs.xml","scraped_at":"2026-02-25T20:02:10.738187Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) for GO Bundle","description":"This version of the Photopolarimeter Radiometer (PPR) for GO bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","Amalthea","GLL PCT","PPR RCT"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/bundle_goppr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/bundle_goppr.xml","scraped_at":"2026-02-25T20:02:10.738191Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims::1.0","title":"MAVEN Neutral Gas and Ion Mass Spectrometer Data","description":"This bundle contains the data collected by the Neutral Gas and Ion Mass Spectrometer (NGIMS) instrument aboard the Mars Atmosphere and Volatile EvolutioN (MAVEN) satellite, along with the documents and other information necessary for the interpretation of that data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["MAVEN"],"targets":["Mars"],"instruments":["NGIMS"],"instrument_hosts":["MAVEN"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/bundle_maven_ngims.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/bundle_maven_ngims.xml","scraped_at":"2026-02-25T20:02:10.738195Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vo_irtm::1.0","title":"Viking Orbiter Infrared Thermal Mapper (IRTM) for VO Bundle","description":"This version of the Infrared Thermal Mapper (IRTM) for Viking Orbiter (VO) bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["VIKING ORBITER"],"targets":["MARS"],"instruments":["IRTM","IRTM"],"instrument_hosts":["VIKING ORBITER 1","VIKING ORBITER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/bundle_voirtm.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/bundle_voirtm.xml","scraped_at":"2026-02-25T20:02:10.738268Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie::6.0","title":"Mars 2020 MOXIE Bundle","description":"Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":[],"start_date":"2021-02-22","stop_date":"2022-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","scraped_at":"2026-02-25T20:02:10.738281Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms::1.0","title":"LADEE Neutral Mass Spectrometer Data","description":"This bundle contains the data collected by the Neutral Mass Spectrometer (NMS) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) satellite, along with the documents and other information necessary for the interpretation of that data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/bundle_ladee_nms.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/bundle_ladee_nms.xml","scraped_at":"2026-02-25T20:02:10.738323Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie::7.0","title":"Mars 2020 MOXIE Bundle","description":"Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":[],"start_date":"2021-02-22","stop_date":"2023-04-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","scraped_at":"2026-02-25T20:02:10.738328Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps::3.2","title":"APSS PS Data","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-05-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml","scraped_at":"2026-02-25T20:02:10.738333Z","keywords":["Mars","weather","meteorology","environment","pressure"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins::3.2","title":"APSS TWINS Data","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml","scraped_at":"2026-02-25T20:02:10.738338Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vo_mawd::1.0","title":"Viking Orbiter Mars Atmospheric Water Detector (MAWD) for VO Bundle","description":"This version of the Mars Atmospheric Water Detector (MAWD) for Viking Orbiter (VO) bundle was created by the PDS Atmospheres node in 2022","node":"atm","pds_version":"PDS4","type":"bundle","missions":["VIKING ORBITER"],"targets":["MARS"],"instruments":["MAWD","MAWD"],"instrument_hosts":["VIKING ORBITER 1","VIKING ORBITER 2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/bundle_vomawd.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/bundle_vomawd.xml","scraped_at":"2026-02-25T20:02:10.738342Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn","description":"description","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Name"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":[],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/bundle_co_iss_global-maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/bundle_co_iss_global-maps.xml","scraped_at":"2026-02-25T20:02:10.738347Z","keywords":["Cassini","ISS","Jupiter","Saturn","global maps"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere::1.0","title":"Titan Ionosphere Bundle","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/bundle_corss_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/bundle_corss_titan_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.738352Z","keywords":["Cassini Orbiter","RSS","Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra::4.0","title":"Laboratory Study of Hydrocarbon IR Spectra Bundle","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":[],"start_date":"2017-01-01","stop_date":"2022-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml","scraped_at":"2026-02-25T20:02:10.738359Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs::2.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Archive Bundle","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["LADEE"],"targets":["Moon"],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/bundle_ladee_uvs.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/bundle_ladee_uvs.xml","scraped_at":"2026-02-25T20:02:10.738363Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice::1.0","title":"Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) Atmospheric Column Optical Depths for Dust and Water Ice Bundle","description":"This bundle contains atmospheric column optical depth data for dust and water ice as well as daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["MGS"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/bundle_mgs_tes_atmos_dust-ice.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/bundle_mgs_tes_atmos_dust-ice.xml","scraped_at":"2026-02-25T20:02:10.738374Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos::3.0","title":"Mars Global Surveyor Thermal Emission Spectrometer Atmospheric Recalibration Bundle","description":null,"node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":[],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml","scraped_at":"2026-02-25T20:02:10.738379Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ao::2.0","title":"AO SSI Bundle","description":"The original PHX AO dataset was submitted in 2009 by Mark Lemmon","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Phoenix"],"targets":["Mars"],"instruments":["Atmospheric Opacity"],"instrument_hosts":["Phoenix"],"data_types":[],"start_date":"2008-05-25","stop_date":"2008-10-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/bundle_phx_ao.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/bundle_phx_ao.xml","scraped_at":"2026-02-25T20:02:10.738384Z","keywords":["Phoenix","Atmospheric Opacity","SURFACE STEREO IMAGER","SSI","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_met::2.0","title":"MET Bundle","description":"The original PHX MET dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Phoenix"],"targets":["MARS"],"instruments":["MET"],"instrument_hosts":["PHOENIX"],"data_types":[],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/bundle_phx_met.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/bundle_phx_met.xml","scraped_at":"2026-02-25T20:02:10.738389Z","keywords":["Phoenix","Meterology","Temperature","Pressure","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_tt::2.0","title":"TELLTALE Bundle","description":"The original PHX TT dataset was submitted in 2009","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Phoenix"],"targets":["MARS"],"instruments":["TT"],"instrument_hosts":["PHOENIX"],"data_types":[],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/bundle_phx_tt.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/bundle_phx_tt.xml","scraped_at":"2026-02-25T20:02:10.738395Z","keywords":["Phoenix","Telltale","TT","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vl_met::1.0","title":"Viking Lander MET Bundle","description":"This version of the Viking Lander MET bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Viking Lander"],"targets":["Mars"],"instruments":["MET","MET"],"instrument_hosts":["Viking Lander","Viking Lander"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/bundle_vl_met.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/bundle_vl_met.xml","scraped_at":"2026-02-25T20:02:10.738399Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vl_ftpd::1.0","title":"Viking Lander FTPD Bundle","description":"This version of the Viking Lander FTPD bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Viking Lander"],"targets":["Mars"],"instruments":["MET","MET"],"instrument_hosts":["Viking Lander","Viking Lander"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/bundle_vl_ftpd.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/bundle_vl_ftpd.xml","scraped_at":"2026-02-25T20:02:10.738404Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ase::2.0","title":"ASE Bundle","description":"The original PHX LIDAR dataset was submitted in 2008","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Phoenix"],"targets":["MARS"],"instruments":["ASE"],"instrument_hosts":["PHOENIX"],"data_types":[],"start_date":"2008-05-25","stop_date":"2008-05-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/bundle_phx_ase.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/bundle_phx_ase.xml","scraped_at":"2026-02-25T20:02:10.738409Z","keywords":["Phoenix","ASE","Atmospheric Structure","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp::1.0","title":"Galileo Probe (GP) Bundle","description":"This version of the GP bundle was created by the PDS Atmospheres node in 2024","node":"atm","pds_version":"PDS4","type":"bundle","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI","DWE","EPI","GPMS","HAD","LRD","NEP","NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/bundle_gp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/bundle_gp.xml","scraped_at":"2026-02-25T20:02:10.738439Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad::1.0","title":"Galileo NIMS Hot Spot Spectral Radiance Bundle","description":"Hot spot spectral radiance derived from Galileo NIMS observations of Io","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Galileo Mission"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":[],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/bundle_go_nims_io_rad.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/bundle_go_nims_io_rad.xml","scraped_at":"2026-02-25T20:02:10.738458Z","keywords":["Galileo","NIMS","radiance","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex::1.0","title":"InSight Vortex Data","description":"InSight Vortex data for dust devil detections","node":"atm","pds_version":"PDS4","type":"bundle","missions":["InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS","SEIS"],"instrument_hosts":["InSight"],"data_types":[],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/bundle_insight_vortex.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/bundle_insight_vortex.xml","scraped_at":"2026-02-25T20:02:10.738462Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_disr::1.0","title":"Descent Imager/Spectral Radiometer (DISR) for HP Bundle","description":"This version of the Descent Imager/Spectral Radiometer (DISR) for HP bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DISR"],"instrument_hosts":["Huygens Probe"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/bundle_hpdisr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/bundle_hpdisr.xml","scraped_at":"2026-02-25T20:02:10.738475Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_acp::1.0","title":"Huygens Aerosol Collector and Pyrolyser (ACP) Bundle","description":"This version of the Huygens Aerosol Collector and Pyrolyser (ACP) bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["ACP"],"instrument_hosts":["Huygens Probe"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/bundle_hpacp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/bundle_hpacp.xml","scraped_at":"2026-02-25T20:02:10.738478Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dtwg::1.0","title":"Huygens Reconstructed Entry and Descent Trajectory (DTWG) Bundle","description":"This version of the Huygens Reconstructed Entry and Descent Trajectory (DTWG) bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE","DISR","GCMS","SSP","HASI"],"instrument_hosts":["Huygens Probe"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/bundle_hpdtwg.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/bundle_hpdtwg.xml","scraped_at":"2026-02-25T20:02:10.738482Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dwe::1.0","title":"Huygens Doppler Wind Experiment (DWE) Bundle","description":"This version of the Huygens Doppler Wind Experiment (DWE) bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE"],"instrument_hosts":["Huygens Probe"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/bundle_hpdwe.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/bundle_hpdwe.xml","scraped_at":"2026-02-25T20:02:10.738486Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_gcms::1.0","title":"Huygens Gas Chromatograph and Mass Spectrometer (GCMS) Bundle","description":"This version of the Huygens Gas Chromatograph and Mass Spectrometer (GCMS) bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["GCMS"],"instrument_hosts":["Huygens Probe"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/bundle_hpgcms.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/bundle_hpgcms.xml","scraped_at":"2026-02-25T20:02:10.738489Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_hasi::1.0","title":"Huygens Atmosphere Structure Instrument (HASI) Bundle","description":"This version of the Huygens Atmosphere Structure Instrument (HASI) bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["HASI"],"instrument_hosts":["Huygens Probe"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/bundle_hphasi.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/bundle_hphasi.xml","scraped_at":"2026-02-25T20:02:10.738493Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_hk::1.0","title":"Huygens Probe Housekeeping (HK) for HP Bundle","description":"This version of the Huygens Probe Housekeeping (HK) for HP bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["HK"],"instrument_hosts":["Huygens Probe"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/bundle_hphk.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/bundle_hphk.xml","scraped_at":"2026-02-25T20:02:10.738497Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_ssp::1.0","title":"Surface Science Package (SSP) for HP Bundle","description":"This version of the Surface Science Package (SSP) for HP bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["SSP"],"instrument_hosts":["Huygens Probe"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/bundle_hpssp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/bundle_hpssp.xml","scraped_at":"2026-02-25T20:02:10.738501Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density","description":"Derived data products from Cassini radio occultations at Titan and their accompanying documentation. Derived data products include: (A) time series of the frequency of the radio signal received at Earth during an occultation; (B) individual electron density profiles from occultations; (C) average electron density profiles from occultations; and (D) summary of average electron density profiles.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/bundle_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/bundle_corss_occul_el_dens.xml","scraped_at":"2026-02-25T20:02:10.738505Z","keywords":["radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie::8.0","title":"Mars 2020 MOXIE Bundle","description":"Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":[],"start_date":"2021-02-22","stop_date":"2023-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml","scraped_at":"2026-02-25T20:02:10.738510Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_lidar::2.0","title":"LIDAR Bundle","description":"The original PHX LIDAR dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Phoenix"],"targets":["MARS"],"instruments":["LIDAR"],"instrument_hosts":["PHOENIX"],"data_types":[],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/bundle_phx_lidar.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/bundle_phx_lidar.xml","scraped_at":"2026-02-25T20:02:10.738514Z","keywords":["Phoenix","Lidar","Meterology","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library::1.0","title":"Cassini UVIS Titan Library Bundle","description":"Cassini UVIS spectral library for Titan","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/bundle_cassini-uvis_titan-library.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/bundle_cassini-uvis_titan-library.xml","scraped_at":"2026-02-25T20:02:10.738518Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_mission::2.0","title":"LADEE Mission Bundle","description":"The LADEE bundle was created by the PDS Atmospheres node in 2014","node":"atm","pds_version":"PDS4","type":"bundle","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS","UVS","LDEX"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/bundle_ladee_mission.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/bundle_ladee_mission.xml","scraped_at":"2026-02-25T20:02:10.738522Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_ldex::2.0","title":"LADEE LUNAR DUST EXPERIMENT","description":"This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["LADEE"],"targets":["Dust","Moon"],"instruments":["LUNAR DUST EXPERIMENT"],"instrument_hosts":["LADEE"],"data_types":[],"start_date":"2013-10-24","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/bundle_ladee_ldex.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/bundle_ladee_ldex.xml","scraped_at":"2026-02-25T20:02:10.738526Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs::3.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Archive Bundle","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["LADEE"],"targets":["Moon"],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/bundle_ladee_uvs.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/bundle_ladee_uvs.xml","scraped_at":"2026-02-25T20:02:10.738547Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_erp::1.0","title":"InSight APSS TWINS and PS ERP and NEMO Data","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) And Pressure Sensor (PS) ERP and NEMO Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Insight"],"targets":["Mars"],"instruments":["Auxiliary Payload Sensor Subsystem Temperatures and Wind Sensor for InSight","Auxiliary Payload Sensor Subsystem Pressure Sensor"],"instrument_hosts":["Insight"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/erp_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/erp_bundle/bundle_insight_erp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/erp_bundle/bundle_insight_erp.xml","scraped_at":"2026-02-25T20:02:10.738552Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mer_imu::1.1","title":"Mars Exploration Rover IMU Bundle","description":"This version of the MERIMU bundle was created by the PDS Atmospheres node in 2014","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Exploration Rover"],"targets":["Mars"],"instruments":["Inertial Measurement Unit 1","Inertial Measurement Unit 2"],"instrument_hosts":["mer1","mer2"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/bundle_mer_imu.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/bundle_mer_imu.xml","scraped_at":"2026-02-25T20:02:10.738556Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_mwr::1.0","title":"Juno MWR Bundle","description":"This version of the Juno MWR bundle was created by the PDS Atmospheres node in 2017","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["Jupiter"],"instruments":["MWR"],"instrument_hosts":["Juno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/bundle_juno_mwr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/bundle_juno_mwr.xml","scraped_at":"2026-02-25T20:02:10.738560Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel::1.0","title":"MRO Accel Bundle","description":"This version of the MRO ACCEL bundle was created by the PDS Atmospheres node in 2016","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Reconnaissance orbiter"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["MRO"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/bundle_mro_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/bundle_mro_accel.xml","scraped_at":"2026-02-25T20:02:10.738716Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel::1.0","title":"ODYA Bundle","description":"This version of the ODYA bundle was created by the PDS Atmospheres node in 2015","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Odyssey"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["Odyssey"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/bundle_ody_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/bundle_ody_accel.xml","scraped_at":"2026-02-25T20:02:10.738735Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Bundle","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":[],"start_date":"2006-01-01","stop_date":"2024-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/bundle.mro-crism_atmos-db.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/bundle.mro-crism_atmos-db.xml","scraped_at":"2026-02-25T20:02:10.738819Z","keywords":["atmosphere","Mars","MRO","CRISM"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram::1.1","title":"Juno JIRAM Bundle","description":"This version of the Juno JIRAM bundle was created by the PDS Atmospheres node in 2019","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Juno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/bundle_juno_jiram.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/bundle_juno_jiram.xml","scraped_at":"2026-02-25T20:02:10.738967Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda::6.0","title":"Mars 2020 MEDA Bundle","description":"Mars 2020 Perseverance Rover Mars Environmental Dynamics Analyzer (MEDA) Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products Archive Bundle","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/bundle.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/bundle.xml","scraped_at":"2026-02-25T20:02:10.739389Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel::1.0","title":"MGS Accel Bundle","description":"This version of the MGS ACCEL bundle was created by the PDS Atmospheres node in 2015","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Mars Global Surveyor"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["MGS"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/bundle_mgs_accel.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/bundle_mgs_accel.xml","scraped_at":"2026-02-25T20:02:10.739394Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed::1.0","title":"Pioneer Venus Special Events Data (SED) Bundle","description":"This bundle contains the Pioneer Venus Special Events Data (SED) extracted from NSSDCA dataset PSPA-00034 and reformatted as ASCII CSV products. The SED data consist of separate files for a number of instruments on the Pioneer Venus orbiter as well as the four atmospheric probes (Multiprobes). Data products include: Multiprobe Atmospheric Structure pressure and temperature data during entry and descent; Orbiter Gas Chromatograph lower atmospheric composition data; Large Probe Infrared Radiometer pre-entry and descent data; Large Probe Solar Flux Radiometer lower atmospheric up, down, and net flux data, Multiprobe Nephelometer atmospheric backscatter, temperature, UV and VIS background data, and spectral functions; Pioneer Venus Atmospheric Drag model and density data; Orbiter Solar Wind Plasma Analyzer proton parameters outside the bow shock; and Small Probes Net Flux Radiometer atmospheric data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":[],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/bundle_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/bundle_pv_sed.xml","scraped_at":"2026-02-25T20:02:10.739476Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Bundle","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/bundle_co-rss_slepian-grav-coeff.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/bundle_co-rss_slepian-grav-coeff.xml","scraped_at":"2026-02-25T20:02:10.739700Z","keywords":["Saturn","gravity"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr::1.0","title":"Juno Gravity Bundle","description":"This version of the Juno Gravity bundle was created by the PDS Atmospheres node in 2020","node":"atm","pds_version":"PDS4","type":"bundle","missions":["Juno"],"targets":["Jupiter"],"instruments":["Gravity"],"instrument_hosts":["Juno"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/bundle_juno_grav.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/bundle_juno_grav.xml","scraped_at":"2026-02-25T20:02:10.739704Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms::2.0","title":"LADEE Neutral Mass Spectrometer Data","description":"This bundle contains the data collected by the Neutral Mass Spectrometer (NMS) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) satellite, along with the documents and other information necessary for the interpretation of that data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/bundle_ladee_nms.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/bundle_ladee_nms.xml","scraped_at":"2026-02-25T20:02:10.739798Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms::1.0","title":"CLPS Task Order 2AB Peregrine Ion-Trap Mass Spectrometer (PITMS) for Lunar Surface Volatiles","description":"This bundle contains the data collected by the Peregine Ion Trap Mass Spectormeter aboard the Peregrine lander, along with the documents and other information necessary for the interpretation of that data.","node":"atm","pds_version":"PDS4","type":"bundle","missions":["CLPS 2AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["Peregrine Lunar Lander"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/bundle_pitms.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/bundle_pitms.xml","scraped_at":"2026-02-25T20:02:10.739802Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:context::1.1","title":"Laboratory Study of Hydrocarbon IR Spectra Context Collection","description":"Context collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":["Context"],"start_date":"2016-01-01","stop_date":"2021-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml","scraped_at":"2026-02-25T20:02:10.749892Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:document::1.1","title":"Laboratory Study of Hydrocarbon IR Spectra Document Collection","description":"Document collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility","Bruker IFS 125HR Fourier Transform Spectrometer"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":["Document"],"start_date":"2016-01-01","stop_date":"2021-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/collection_lab.hydrocarbon_spectra_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/collection_lab.hydrocarbon_spectra_document.xml","scraped_at":"2026-02-25T20:02:10.749906Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:xml_schema::1.0","title":"Laboratory Study of Hydrocarbon IR Spectra XML Schema Collection","description":"XML schema collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":["XML Schema"],"start_date":"2016-01-01","stop_date":"2021-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.749913Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:data::2.0","title":"Laboratory Study of Hydrocarbon IR Spectra Data Collection","description":"Data collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":["Data"],"start_date":"2016-01-01","stop_date":"2021-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml","scraped_at":"2026-02-25T20:02:10.749919Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:context::1.1","title":"Mars 2020 MOXIE Context Collection","description":"Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Context"],"start_date":"2021-02-22","stop_date":"2021-08-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","scraped_at":"2026-02-25T20:02:10.749924Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_derived::1.1","title":"Mars 2020 MOXIE Derived Data Collection","description":"Mars 2020 MOXIE Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2021-08-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","scraped_at":"2026-02-25T20:02:10.749930Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_calibrated::1.1","title":"Mars 2020 MOXIE Calibrated Data Collection","description":"Mars 2020 MOXIE Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2021-08-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.749934Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:document::1.1","title":"Mars 2020 MOXIE Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":"2021-02-22","stop_date":"2021-08-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","scraped_at":"2026-02-25T20:02:10.749939Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_raw::1.1","title":"Mars 2020 MOXIE Raw Data Collection","description":"Mars 2020 MOXIE Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2021-08-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","scraped_at":"2026-02-25T20:02:10.749944Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:context::1.0","title":"Jackson and Lorenz Dust Devil Field Campaign Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dust Devil Field Observation Campaign"],"targets":[],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":["Context"],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/collection_eldorado_nv_dd_ptv_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/collection_eldorado_nv_dd_ptv_context.xml","scraped_at":"2026-02-25T20:02:10.749948Z","keywords":["dust devil","field campaign"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:data_derived::1.0","title":"Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015","description":"Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/collection_eldorado_nv_dd_ptv_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/collection_eldorado_nv_dd_ptv_data_derived.xml","scraped_at":"2026-02-25T20:02:10.749953Z","keywords":["dust devil","field campaign"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:document::1.0","title":"Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015","description":"Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/document/collection_eldorado_nv_dd_ptv_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/document/collection_eldorado_nv_dd_ptv_document.xml","scraped_at":"2026-02-25T20:02:10.749957Z","keywords":["dust devil","field campaign"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:eldorado_nv_dd_ptv:xml_schema::1.0","title":"Jackson and Lorenz Dust Devil Field Campaign XML Schema Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dust Devil Field Observation Campaign"],"targets":["Earth"],"instruments":["Lorenz Meteorology Station Data Logger"],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":"2012-05-21","stop_date":"2013-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/collection_eldorado_nv_dd_ptv_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/collection_eldorado_nv_dd_ptv_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.749962Z","keywords":["dust devil","field campaign"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl:context::1.0","title":"InSight EDL Context","description":"This is a PDS4 Context Collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["EDL"],"instrument_hosts":["InSight"],"data_types":["Context"],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/collection_insightedl_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/collection_insightedl_context.xml","scraped_at":"2026-02-25T20:02:10.749967Z","keywords":["Atmospheric Reconstruction"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl:schema::1.0","title":"InSight EDL Schema","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["InSight"],"data_types":["XML Schema"],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/collection_insightedl_xmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/collection_insightedl_xmlschema.xml","scraped_at":"2026-02-25T20:02:10.749972Z","keywords":["Atmospheric Reconstruction"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl:data::1.0","title":"InSight EDL Data Collection Inventory","description":"This is a PDS4 data collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["EDL"],"instrument_hosts":["InSight"],"data_types":["Data"],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/collection_insightedl_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/collection_insightedl_data.xml","scraped_at":"2026-02-25T20:02:10.749976Z","keywords":["Atmospheric Reconstruction"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_edl:document::1.0","title":"InSight EDL Documents","description":"This is a PDS4 document collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["EDL"],"instrument_hosts":["InSight"],"data_types":["Document"],"start_date":"2018-11-26","stop_date":"2018-11-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/document/collection_insightedl_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/document/collection_insightedl_document.xml","scraped_at":"2026-02-25T20:02:10.749981Z","keywords":["Atmospheric Reconstruction"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury:browse::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Browse Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["McMath-Pierce Solar Telescope Main 1.61-m Reflector","Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":["Browse"],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/browse/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/browse/collection_mcmath-pierce_mercury_browse.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/browse/collection_mcmath-pierce_mercury_browse.xml","scraped_at":"2026-02-25T20:02:10.749986Z","keywords":["McMath-Pierce Solar Telescope","spectra","Mercury"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury:data_calibrated::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Data-Calibrated Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["McMath-Pierce Solar Telescope Main 1.61-m Reflector","Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":["Data"],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/collection_mcmath-pierce_mercury_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/collection_mcmath-pierce_mercury_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.749991Z","keywords":["McMath-Pierce Solar Telescope","spectra","Mercury"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury:document::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Document Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["McMath-Pierce Solar Telescope Main 1.61-m Reflector","Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":["Document"],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/document/collection_mcmath-pierce_mercury_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/document/collection_mcmath-pierce_mercury_document.xml","scraped_at":"2026-02-25T20:02:10.749997Z","keywords":["McMath-Pierce Solar Telescope","spectra","Mercury"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury:context::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury Context Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["McMath-Pierce Solar Telescope Main 1.61-m Reflector","Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":["Context"],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/collection_mcmath-pierce_mercury_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/collection_mcmath-pierce_mercury_context.xml","scraped_at":"2026-02-25T20:02:10.750008Z","keywords":["McMath-Pierce Solar Telescope","spectra","Mercury"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mcmath-pierce_mercury:xml_schema::1.0","title":"KPNO McMath-Pierce Solar Telescope Observations of Mercury XML Schema Collection","description":"McMath-Pierce Solar Telescope spectral characterization of Mercury","node":"atm","pds_version":"PDS4","type":"collection","missions":["McMath-Pierce Solar Telescope Spectra of Mercury"],"targets":["Mercury"],"instruments":["McMath-Pierce Solar Telescope Main 1.61-m Reflector","Vacuum Spectrograph at McMath-Pierce"],"instrument_hosts":["McMath-Pierce Solar Telescope Facility"],"data_types":["XML Schema"],"start_date":"2011-01-08","stop_date":"2013-04-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/collection_mcmath-pierce_mercury_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/collection_mcmath-pierce_mercury_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.750015Z","keywords":["McMath-Pierce Solar Telescope","spectra","Mercury"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim:context::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Pathfinder"],"data_types":["Document"],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/collection_lemmoncontext.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/collection_lemmoncontext.xml","scraped_at":"2026-02-25T20:02:10.750019Z","keywords":["opacities"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim:document::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Pathfinder"],"data_types":["Document"],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/document/collection_lemmondoc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/document/collection_lemmondoc.xml","scraped_at":"2026-02-25T20:02:10.750023Z","keywords":["opacities"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim:derived::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"Derived opacities from Mars Pathfinder","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Pathfinder"],"data_types":["Data"],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/collection_lemmondata.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/collection_lemmondata.xml","scraped_at":"2026-02-25T20:02:10.750027Z","keywords":["opacities"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mpf_mpim:schema::1.0","title":"Mars Pathfinder Atmospheric Opacities","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pathfinder"],"targets":["Mars"],"instruments":["mpim"],"instrument_hosts":["Pathfinder"],"data_types":["XML Schema"],"start_date":"1997-07-04","stop_date":"1997-07-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/collection_lemmonxmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/collection_lemmonxmlschema.xml","scraped_at":"2026-02-25T20:02:10.750031Z","keywords":["opacities"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl:document::1.1","title":"MSLEDL Documents","description":"This is a PDS4 document collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Document"],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/document/collection_msledl_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/document/collection_msledl_document.xml","scraped_at":"2026-02-25T20:02:10.750037Z","keywords":["Atmospheric Reconstruction"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl:data::1.1","title":"MSLEDL Collection","description":"MSL EDL Reconstructed Atmospheric Profiles","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2015-08-06","stop_date":"2015-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/collection_msledl_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/collection_msledl_data.xml","scraped_at":"2026-02-25T20:02:10.750043Z","keywords":["Mars Science Laboratory","EDL","Reconstruction","Atmospheric Profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl:context::1.0","title":"MSLEDL Context","description":"This is a PDS4 Context Collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Document"],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/collection_msledl_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/collection_msledl_context.xml","scraped_at":"2026-02-25T20:02:10.750047Z","keywords":["Atmospheric Reconstruction"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msledl:schema::1.1","title":"MSLEDL Schema","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Science Laboratory"],"targets":["Mars"],"instruments":["Accelerometer"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["XML Schema"],"start_date":"2012-08-06","stop_date":"2012-08-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/collection_msledl_xmlschema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/collection_msledl_xmlschema.xml","scraped_at":"2026-02-25T20:02:10.750052Z","keywords":["Atmospheric Reconstruction"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere:data_derived::1.1","title":"Saturn Ionosphere Observations Collection","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/collection_data_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/collection_data_corss_saturn_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.750057Z","keywords":["Cassini Orbiter","RSS","Saturn"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere:document::1.1","title":"Saturn Ionosphere Document Collection","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/document/collection_document_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/document/collection_document_corss_saturn_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.750062Z","keywords":["Cassini Orbiter","RSS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere:context::1.1","title":"Saturn Ionosphere Context Collection","description":"Cassini radio occultations of the Saturn ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":"2005-05-03","stop_date":"2013-05-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/collection_context_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/collection_context_corss_saturn_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.750067Z","keywords":["Cassini Orbiter","RSS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_saturn_ionosphere:schema::1.0","title":"Saturn Ionosphere Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["cors"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/collection_schema_corss_saturn_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/collection_schema_corss_saturn_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.750071Z","keywords":["Cassini Orbiter","RSS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:context::1.1","title":"Structure of Saturn's Thermosphere from Stellar Occultations Context Collection","description":"Molecular hydrogen and temperature profiles of Saturn's thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/collection_context_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/collection_context_saturn_thermosphere_h2_density_temp.xml","scraped_at":"2026-02-25T20:02:10.750076Z","keywords":["Cassini Orbiter","UVIS","CIRS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:data::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Derived Data Collection","description":"Molecular hydrogen and temperature profiles of Saturn's thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/collection_data_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/collection_data_saturn_thermosphere_h2_density_temp.xml","scraped_at":"2026-02-25T20:02:10.750081Z","keywords":["Cassini Orbiter","UVIS","CIRS","Saturn"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:document::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Document Collection","description":"Molecular hydrogen and temperature profiles of Saturn's thermosphere from stellar occultations by Cassini/UVIS and CIRS","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2005-04-13","stop_date":"2017-08-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/document/collection_document_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/document/collection_document_saturn_thermosphere_h2_density_temp.xml","scraped_at":"2026-02-25T20:02:10.750086Z","keywords":["Cassini Orbiter","UVIS","CIRS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_thermosphere_h2_density_temp:schema::1.0","title":"Structure of Saturn's Thermosphere from Stellar Occultations Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["ULTRAVIOLET IMAGING SPECTROGRAPH for CO","COMPOSITE INFRARED SPECTROMETER for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/collection_schema_saturn_thermosphere_h2_density_temp.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/collection_schema_saturn_thermosphere_h2_density_temp.xml","scraped_at":"2026-02-25T20:02:10.750092Z","keywords":["Cassini Orbiter","UVIS","CIRS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden:context::1.0","title":"Viking Orbiter 1 and 2 Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking Orbiter"],"targets":["Mars"],"instruments":["Radio Science Subsystem","Radio Science Subsystem"],"instrument_hosts":["Viking Orbiter","Viking Orbiter"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/collection_context_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/collection_context_voroelden.xml","scraped_at":"2026-02-25T20:02:10.750097Z","keywords":["Viking Orbiter","RSS","Mars","radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden:xml_schema::1.0","title":"Viking Orbiter 1 and 2 Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking"],"targets":["Mars"],"instruments":["Radio Science Subsystem","Radio Science Subsystem"],"instrument_hosts":["Viking Orbiter","Viking Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/collection_schema_voroelden.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/collection_schema_voroelden.xml","scraped_at":"2026-02-25T20:02:10.750103Z","keywords":["Viking Orbiter","RSS","Mars","radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden:data_derived::1.0","title":"Viking Orbiters 1 and 2 Radio Occultation Electron Density Derived Data Collection","description":"Derived data products from Viking Orbiter 1 and 2 radio occultations at Mars. Derived data products are electron density profiles from occultations.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking Orbiters 1 and 2"],"targets":["Mars"],"instruments":["Radio Science Subsystem","Radio Science Subsystem"],"instrument_hosts":["Viking Orbiter 1","Viking Orbiter 2"],"data_types":["Data"],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/collection_voroelden_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/collection_voroelden_data_derived.xml","scraped_at":"2026-02-25T20:02:10.750107Z","keywords":["radio occultation"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voroelden:document::1.0","title":"Viking Orbiters 1 and 2 Radio Occultation Electron Density Document Collection","description":"Documentation for derived data products from Viking Orbiter 1 and 2 radio occultations at Mars. Derived data products are electron density profiles from occultations.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking Orbiters 1 and 2"],"targets":["Mars"],"instruments":["Radio Science Subsystem","Radio Science Subsystem"],"instrument_hosts":["Viking Orbiter 1","Viking Orbiter 2"],"data_types":["Document"],"start_date":"1977-01-17","stop_date":"1978-08-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/document/collection_voroelden_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/document/collection_voroelden_document.xml","scraped_at":"2026-02-25T20:02:10.750112Z","keywords":["radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps:context::1.1","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Context Collection","description":"2.2 cm thermal emission maps of Saturn obtained using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":"2005-04-13","stop_date":"2015-12-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/collection_context_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/collection_context_cassini_saturn_radar_maps.xml","scraped_at":"2026-02-25T20:02:10.750117Z","keywords":["Cassini Orbiter","RADAR","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps:data::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Derived Data Collection","description":"2.2 cm thermal emission maps of Saturn obtained using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/collection_data_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/collection_data_cassini_saturn_radar_maps.xml","scraped_at":"2026-02-25T20:02:10.750122Z","keywords":["Cassini Orbiter","RADAR","map","Saturn"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps:document::1.1","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Document Collection","description":"2.2 cm thermal emission maps of Saturn obtained using Cassini's RADAR radiometer","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2005-09-23","stop_date":"2011-03-20","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/document/collection_document_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/document/collection_document_cassini_saturn_radar_maps.xml","scraped_at":"2026-02-25T20:02:10.750126Z","keywords":["Cassini Orbiter","RADAR","map","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_saturn_radar_maps:schema::1.0","title":"Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["RADAR for CO"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/collection_schema_cassini_saturn_radar_maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/collection_schema_cassini_saturn_radar_maps.xml","scraped_at":"2026-02-25T20:02:10.750132Z","keywords":["Cassini Orbiter","RADAR","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund:data_derived::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Ethylene (C2H4) mole fractions after the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/collection_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/collection_cocirs_c2h4abund.xml","scraped_at":"2026-02-25T20:02:10.750137Z","keywords":["abundances"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund:context::1.1","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Ethylene (C2H4) mole fractions after the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/collection_context_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/collection_context_cocirs_c2h4abund.xml","scraped_at":"2026-02-25T20:02:10.750141Z","keywords":["abundances"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund:xml_schema::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"This is a PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/collection_schema_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/collection_schema_cocirs_c2h4abund.xml","scraped_at":"2026-02-25T20:02:10.750145Z","keywords":["abundances"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cocirs_c2h4abund:document::1.0","title":"C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm","description":"Ethylene (C2H4) mole fractions after the 2010 Saturn Storm","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["cocirs"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2011-03-03","stop_date":"2012-04-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/document/collection_document_cocirs_c2h4abund.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/document/collection_document_cocirs_c2h4abund.xml","scraped_at":"2026-02-25T20:02:10.750149Z","keywords":["abundances"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds:document::1.0","title":"Saturn Zonal Winds Document Collection","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/document/collection_document_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/document/collection_document_coiss_zonal_winds.xml","scraped_at":"2026-02-25T20:02:10.750154Z","keywords":["Cassini Orbiter","ISS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds:schema::1.0","title":"Saturn Zonal Winds Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/collection_schema_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/collection_schema_coiss_zonal_winds.xml","scraped_at":"2026-02-25T20:02:10.750159Z","keywords":["Cassini Orbiter","ISS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds:context::1.0","title":"Saturn Zonal Winds Context Collection","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/collection_context_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/collection_context_coiss_zonal_winds.xml","scraped_at":"2026-02-25T20:02:10.750163Z","keywords":["Cassini Orbiter","ISS","Saturn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:coiss_zonal_winds:data_derived::1.0","title":"Saturn Zonal Winds Observarions Collection","description":"Saturn's zonal wind profile in 2004-2009 from Cassini ISS images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle","Imaging Science Subsystem - Wide Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-09-06","stop_date":"2009-01-12","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/collection_data_coiss_zonal_winds.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/collection_data_coiss_zonal_winds.xml","scraped_at":"2026-02-25T20:02:10.750169Z","keywords":["Cassini Orbiter","ISS","Saturn"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape:context::1.0","title":"Hot Ion Atmospheric Escape Data Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmospheric Escape Data"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":"2015-01-01","stop_date":"2019-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/collection_hot_ion_atmos_escape_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/collection_hot_ion_atmos_escape_context.xml","scraped_at":"2026-02-25T20:02:10.750173Z","keywords":["context"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape:data_derived::1.0","title":"Collated Hot Ion Atmospheric Escape Data Derived Data Collection","description":"Collection of derived data (from model fits and laboratory experiments) pertaining to hot ion collisions and atmospheric escape","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmospheric Escape Data"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"2015-01-01","stop_date":"2019-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/collection_hot_ion_atmos_escape_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/collection_hot_ion_atmos_escape_data_derived.xml","scraped_at":"2026-02-25T20:02:10.750177Z","keywords":["Calibrated Data"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape:document::1.0","title":"Hot Ion Atmospheric Escape Data Document Collection","description":"Collection of documents pertaining to hot ion collisions and atmospheric escape","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmospheric Escape Data"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"2015-01-01","stop_date":"2019-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/document/collection_hot_ion_atmos_escape_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/document/collection_hot_ion_atmos_escape_document.xml","scraped_at":"2026-02-25T20:02:10.750180Z","keywords":["Document"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hot_ion_atmos_escape:xml_schema::1.0","title":"Hot Ion Atmospheric Escape Data XML Schema Collection","description":"XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Hot Ion Atmospheric Escape Data"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":"2015-01-01","stop_date":"2019-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/collection_hot_ion_atmos_escape_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/collection_hot_ion_atmos_escape_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.750184Z","keywords":["context"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry:context::1.0","title":"IRTF Io Photometry Context Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["IRTF Io Photometry"],"targets":["Io"],"instruments":["IRTF 3.0-Meter Telescope"],"instrument_hosts":["irtf"],"data_types":["Context"],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/collection_irtf_io_photometry_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/collection_irtf_io_photometry_context.xml","scraped_at":"2026-02-25T20:02:10.750236Z","keywords":["IRTF","photometry","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry:data_derived::1.1","title":"IRTF Io Photometry Data Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["IRTF Io Photometry"],"targets":["Io"],"instruments":["IRTF 3.0-Meter Telescope"],"instrument_hosts":["irtf"],"data_types":["Data"],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/collection_irtf_io_photometry_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/collection_irtf_io_photometry_data_derived.xml","scraped_at":"2026-02-25T20:02:10.750247Z","keywords":["IRTF","photometry","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry:document::1.0","title":"IRTF Io Photometry Document Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["IRTF Io Photometry"],"targets":["Io"],"instruments":["IRTF 3.0-Meter Telescope"],"instrument_hosts":["irtf"],"data_types":["Document"],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/document/collection_irtf_io_photometry_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/document/collection_irtf_io_photometry_document.xml","scraped_at":"2026-02-25T20:02:10.750253Z","keywords":["IRTF","photometry","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:irtf_io_photometry:schema::1.0","title":"IRTF Io Photometry XML Schema Collection","description":"IRTF photometry of Io","node":"atm","pds_version":"PDS4","type":"collection","missions":["IRTF Io Photometry"],"targets":["Io"],"instruments":["IRTF 3.0-Meter Telescope"],"instrument_hosts":["irtf"],"data_types":["XML Schema"],"start_date":"1983-02-18","stop_date":"1993-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/collection_irtf_io_photometry_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/collection_irtf_io_photometry_schema.xml","scraped_at":"2026-02-25T20:02:10.750258Z","keywords":["IRTF","photometry","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:context::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Context Collection","description":"Context collection for photometric observations of Uranus and Neptune (1972-2016) in the Strömgren b (472 nm) and y (551 nm) filters at Lowell Observatory. Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune from 1972-2016.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":["Lowell 21-in Reflector"],"instrument_hosts":["Lowell Observatory"],"data_types":["Context"],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/collection_lowell_uranus-neptune-photometry_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/collection_lowell_uranus-neptune-photometry_context.xml","scraped_at":"2026-02-25T20:02:10.750264Z","keywords":["uranus","neptune","photometry"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:data::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Data Collection","description":"Data collection for photometric observations of Uranus and Neptune (1972-2016) in the Strömgren b (472 nm) and y (551 nm) filters at Lowell Observatory. Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune from 1972-2016.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":["Lowell 21-in Reflector"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/collection_lowell_uranus-neptune-photometry_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/collection_lowell_uranus-neptune-photometry_data.xml","scraped_at":"2026-02-25T20:02:10.750268Z","keywords":["uranus","neptune","photometry"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:document::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Document Collection","description":"Document collection for photometric observations of Uranus and Neptune (1972-2016) in the Strömgren b (472 nm) and y (551 nm) filters at Lowell Observatory. Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune from 1972-2016.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":["Lowell 21-in Reflector"],"instrument_hosts":["Lowell Observatory"],"data_types":["Document"],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/document/collection_lowell_uranus-neptune-photometry_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/document/collection_lowell_uranus-neptune-photometry_document.xml","scraped_at":"2026-02-25T20:02:10.750273Z","keywords":["uranus","neptune","photometry"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lowell_uranus-neptune-photometry:schema::1.0","title":"Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Uranus and Neptune Photometry"],"targets":["Uranus","Neptune"],"instruments":["Lowell 21-in Reflector"],"instrument_hosts":["Lowell Observatory"],"data_types":["XML Schema"],"start_date":"1972-01-17","stop_date":"2016-10-05","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/collection_schema_lowell_uranus-neptune-photometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/collection_schema_lowell_uranus-neptune-photometry.xml","scraped_at":"2026-02-25T20:02:10.750278Z","keywords":["Uranus","Neptune","Photometry"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:context::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Context Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":["Context"],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/collection_mgs-rss_nocturnal-mixed-layers_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/collection_mgs-rss_nocturnal-mixed-layers_context.xml","scraped_at":"2026-02-25T20:02:10.750285Z","keywords":["radio occultation","nighttime convection","polar clouds"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:data_derived::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Derived Data Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/collection_mgs-rss_nocturnal-mixed-layers_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/collection_mgs-rss_nocturnal-mixed-layers_data_derived.xml","scraped_at":"2026-02-25T20:02:10.750292Z","keywords":["radio occultation","nighttime convection","polar clouds"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:document::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Derived Document Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":["Document"],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/document/collection_mgs-rss_nocturnal-mixed-layers_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/document/collection_mgs-rss_nocturnal-mixed-layers_document.xml","scraped_at":"2026-02-25T20:02:10.750300Z","keywords":["radio occultation","nighttime convection","polar clouds"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:xml_schema::1.0","title":"Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties XML Schema Collection","description":"Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":["Mars"],"instruments":["Radio Science Subsystem","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Mars Global Surveyor","NASA Deep Space Network"],"data_types":["XML Schema"],"start_date":"2004-10-10","stop_date":"2005-02-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/collection_mgs-rss_nocturnal-mixed-layers_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/collection_mgs-rss_nocturnal-mixed-layers_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.750306Z","keywords":["radio occultation","nighttime convection","polar clouds"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:calibration::1.0","title":"MGS TES Atmospheric Recalibration Calibration Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Calibration"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/collection_mgs_tes_recalib_atmos_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/collection_mgs_tes_recalib_atmos_calibration.xml","scraped_at":"2026-02-25T20:02:10.750311Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:document::1.3","title":"MGS TES Atmospheric Recalibration Document Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Document"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/collection_mgs_tes_recalib_atmos_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/collection_mgs_tes_recalib_atmos_document.xml","scraped_at":"2026-02-25T20:02:10.750316Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_calibrated::1.0","title":"MGS TES Atmospheric Recalibration Calibrated Data Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Data"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/collection_mgs_tes_recalib_atmos_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/collection_mgs_tes_recalib_atmos_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.750321Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:context::1.0","title":"MGS TES Atmospheric Recalibration Context Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Context"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/collection_mgs_tes_recalib_atmos_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/collection_mgs_tes_recalib_atmos_context.xml","scraped_at":"2026-02-25T20:02:10.750325Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:xml_schema::1.0","title":"MGS TES Atmospheric Recalibration XML Schema Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["XML Schema"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/collection_mgs_tes_recalib_atmos_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/collection_mgs_tes_recalib_atmos_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.750330Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_atmos-opacity::1.0","title":"MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Data"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml","scraped_at":"2026-02-25T20:02:10.750334Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_surf-emissivity::1.0","title":"MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Data"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml","scraped_at":"2026-02-25T20:02:10.750339Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp:document::2.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Document Collection","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/document/collection_corsstpp_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/document/collection_corsstpp_document.xml","scraped_at":"2026-02-25T20:02:10.750344Z","keywords":["Titan","radio"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp:schema::1.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/collection_corsstpp_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/collection_corsstpp_schema.xml","scraped_at":"2026-02-25T20:02:10.750375Z","keywords":["Cassini Orbiter","RSS","Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp:context::1.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Context Collection","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/collection_corsstppcontext.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/collection_corsstppcontext.xml","scraped_at":"2026-02-25T20:02:10.750379Z","keywords":["Titan","radio"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corsstpp:data_derived::2.0","title":"Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Derived Data Collection","description":"Atmospheric profiles of Titan","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["cors"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2006-03-19","stop_date":"2009-06-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/collection_corsstppdata.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/collection_corsstppdata.xml","scraped_at":"2026-02-25T20:02:10.750384Z","keywords":["Titan","radio"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wt_threshold_speed:context::1.0","title":"Wind Tunnel Threshold Speed Context Collection","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Planetary Boundary Layer Wind Tunnel Particle Threshold"],"targets":[],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":["Planetary Aeolian Laboratory","Iowa State University Department of Aeorospace Engineering","Aarhus University Mars Simulation Lab","Trent University Trent Environmental Wind Tunnel Facility","Hydraulics Laboratory Imperial College, London","The High Plains Wind Erosion Laboratory, Kansas State University","Wind Erosion Laboratory, Dept. Geography, University of Guelph","Richmond Field Station, University of California,","Department of Agricultural Engineering, Texas Tech University","Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy","Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium","Whitehead Aeronautical Laboratory, Queen Mary University of London, UK","Center for Eremology, Ghent University, Belgium","USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"],"data_types":["Context"],"start_date":"1970-01-01","stop_date":"2017-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/collection_wt_threshold_speed_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/collection_wt_threshold_speed_context.xml","scraped_at":"2026-02-25T20:02:10.750394Z","keywords":["Wind Tunnel","threshold speed"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wt_threshold_speed:data::1.0","title":"Wind Tunnel Threshold Speed Document Collection","description":"Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels","node":"atm","pds_version":"PDS4","type":"collection","missions":["Planetary Boundary Layer Wind Tunnel Particle Threshold"],"targets":[],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":["Planetary Aeolian Laboratory","Iowa State University Department of Aeorospace Engineering","Aarhus University Mars Simulation Lab","Trent University Trent Environmental Wind Tunnel Facility","Hydraulics Laboratory Imperial College, London","The High Plains Wind Erosion Laboratory, Kansas State University","Wind Erosion Laboratory, Dept. Geography, University of Guelph","Richmond Field Station, University of California,","Department of Agricultural Engineering, Texas Tech University","Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy","Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium","Whitehead Aeronautical Laboratory, Queen Mary University of London, UK","Center for Eremology, Ghent University, Belgium","USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"],"data_types":["Data"],"start_date":"1970-01-01","stop_date":"2017-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/collection_wt_threshold_speed_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/collection_wt_threshold_speed_data.xml","scraped_at":"2026-02-25T20:02:10.750403Z","keywords":["Wind Tunnel","threshold speed"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wt_threshold_speed:document::1.0","title":"Wind Tunnel Threshold Speed Document Collection","description":"Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels","node":"atm","pds_version":"PDS4","type":"collection","missions":["Planetary Boundary Layer Wind Tunnel Particle Threshold"],"targets":[],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":["Planetary Aeolian Laboratory","Iowa State University Department of Aeorospace Engineering","Aarhus University Mars Simulation Lab","Trent University Trent Environmental Wind Tunnel Facility","Hydraulics Laboratory Imperial College, London","The High Plains Wind Erosion Laboratory, Kansas State University","Wind Erosion Laboratory, Dept. Geography, University of Guelph","Richmond Field Station, University of California,","Department of Agricultural Engineering, Texas Tech University","Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy","Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium","Whitehead Aeronautical Laboratory, Queen Mary University of London, UK","Center for Eremology, Ghent University, Belgium","USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"],"data_types":["Data"],"start_date":"1970-01-01","stop_date":"2017-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document/collection_wt_threshold_speed_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document/collection_wt_threshold_speed_document.xml","scraped_at":"2026-02-25T20:02:10.750412Z","keywords":["Wind Tunnel","threshold speed"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wt_threshold_speed:document_scans::1.0","title":"Wind Tunnel Threshold Speed Document Collection","description":"Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels","node":"atm","pds_version":"PDS4","type":"collection","missions":["Planetary Boundary Layer Wind Tunnel Particle Threshold"],"targets":[],"instruments":["Mars Wind Tunnel","Titan Wind Tunnel","Venus Wind Tunnel","Carousel Wind Tunnel","Iowa State University Wind Tunnel","Aarhus Mars Wind Tunnel (AWTSI-2004)","Aarhus Mars Wind Tunnel (AWTSII-2010)","Aarhus Sloped Tunnel","Trent University, Trent Environmental Wind Tunnel","Bagnold Tunnel","Chepil Tunnel","Guelph Tunnel","Belly Tunnel","Texas Tech Tunnel","Shapotou Tunnel","Logie Tunnel","Pietersma Portable Tunnel","Butterfield Tunnel","ICE Tunnel","Dunhuang Portable Tunnel","USDA-ARS Tunnel"],"instrument_hosts":["Planetary Aeolian Laboratory","Iowa State University Department of Aeorospace Engineering","Aarhus University Mars Simulation Lab","Trent University Trent Environmental Wind Tunnel Facility","Hydraulics Laboratory Imperial College, London","The High Plains Wind Erosion Laboratory, Kansas State University","Wind Erosion Laboratory, Dept. Geography, University of Guelph","Richmond Field Station, University of California,","Department of Agricultural Engineering, Texas Tech University","Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy","Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium","Whitehead Aeronautical Laboratory, Queen Mary University of London, UK","Center for Eremology, Ghent University, Belgium","USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"],"data_types":["Data"],"start_date":"1970-01-01","stop_date":"2017-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document_scans/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document_scans/collection_wt_threshold_speed_document_scans.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document_scans/collection_wt_threshold_speed_document_scans.xml","scraped_at":"2026-02-25T20:02:10.750423Z","keywords":["Wind Tunnel","threshold speed"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_calibrated::3.0","title":"Mars 2020 MOXIE Calibrated Data Collection","description":"Mars 2020 MOXIE Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2021-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.750428Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:context::3.0","title":"Mars 2020 MOXIE Context Collection","description":"Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Context"],"start_date":"2021-02-22","stop_date":"2021-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","scraped_at":"2026-02-25T20:02:10.750433Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_derived::3.0","title":"Mars 2020 MOXIE Derived Data Collection","description":"Mars 2020 MOXIE Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2021-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","scraped_at":"2026-02-25T20:02:10.750437Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:document::3.0","title":"Mars 2020 MOXIE Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":"2021-02-22","stop_date":"2021-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","scraped_at":"2026-02-25T20:02:10.750442Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_raw::3.0","title":"Mars 2020 MOXIE Raw Data Collection","description":"Mars 2020 MOXIE Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2021-11-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","scraped_at":"2026-02-25T20:02:10.750446Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:document::13.0","title":"APSS TWINS Document Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml","scraped_at":"2026-02-25T20:02:10.750450Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_raw::13.0","title":"APSS TWINS Raw Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.750453Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_calibrated::13.0","title":"APSS TWINS Calibrated Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.750458Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_derived::13.0","title":"APSS TWINS Derived Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml","scraped_at":"2026-02-25T20:02:10.750461Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:document::13.0","title":"APSS PS Document Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml","scraped_at":"2026-02-25T20:02:10.750465Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:data_raw::13.0","title":"APSS PS Raw Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-12-11","stop_date":"2022-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.750468Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:data_calibrated::13.0","title":"APSS PS Calibrated Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-12-11","stop_date":"2022-03-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.750472Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse:context::1.0","title":"Pioneer Venus Orbiter Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus Orbiter"],"targets":["Venus"],"instruments":["Orbiter Radio Science Experiment"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/collection_context_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/collection_context_pvoro.xml","scraped_at":"2026-02-25T20:02:10.750476Z","keywords":["Viking Orbiter","RSS","Mars","radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse:xml_schema::1.0","title":"Pioneer Venus Orbiter Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus Orbiter"],"targets":["Venus"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/collection_schema_pvoro.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/collection_schema_pvoro.xml","scraped_at":"2026-02-25T20:02:10.750482Z","keywords":["Pioneer Venus Orbiter","RSS","Venus","radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse:document::1.0","title":"Pioneer Venus Orbiter Radio Occultation Profiles Document Collection","description":"Documentation for derived data products from Pioneer Venus Orbiter radio occultations at Venus. Derived data products include: (A) frequency data from the NSSDC, (B) Venus ionospheric electron density profiles from the NSSDC, (C) Venus neutral atmospheric profiles from the NSSDC, (D) Venus ionospheric electron density profiles from graphical sources, and (E) Venus neutral atmospheric profiles from graphical sources.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Radio Science Experiment"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/document/collection_pvoro_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/document/collection_pvoro_document.xml","scraped_at":"2026-02-25T20:02:10.750486Z","keywords":["radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pvo.orse:data_derived::1.0","title":"Pioneer Venus Orbiter Radio Occultation Profiles Derived Data Collection","description":"Derived data products from Pioneer Venus Orbiter radio occultations at Venus. Derived data products include: (A) frequency data from the NSSDC, (B) Venus ionospheric electron density profiles from the NSSDC, (C) Venus neutral atmospheric profiles from the NSSDC, (D) Venus ionospheric electron density profiles from graphical sources, and (E) Venus neutral atmospheric profiles from graphical sources.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Pioneer Venus"],"targets":["Venus"],"instruments":["Radio Science Experiment"],"instrument_hosts":["Pioneer Venus Orbiter"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1989-10-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/collection_pvoro_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/collection_pvoro_data_derived.xml","scraped_at":"2026-02-25T20:02:10.750492Z","keywords":["radio occultation"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:document::14.0","title":"APSS PS Document Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml","scraped_at":"2026-02-25T20:02:10.753422Z","keywords":["Mars","weather","meteorology","environment","pressure"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:data_raw::14.0","title":"APSS PS Raw Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-12-11","stop_date":"2022-05-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.753428Z","keywords":["Mars","weather","meteorology","environment","pressure"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:data_calibrated::14.0","title":"APSS PS Calibrated Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-12-11","stop_date":"2022-05-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.753433Z","keywords":["Mars","weather","meteorology","environment","pressure"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:document::14.0","title":"APSS TWINS Document Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml","scraped_at":"2026-02-25T20:02:10.753438Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_raw::14.0","title":"APSS TWINS Raw Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.753445Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_calibrated::14.0","title":"APSS TWINS Calibrated Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.753450Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_derived::14.0","title":"APSS TWINS Derived Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml","scraped_at":"2026-02-25T20:02:10.753455Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_mission:document_collection::1.0","title":"PDS4 LADEE Mission Document Collection","description":"LADEE Mission Document Collection created by ATMOS in 2014","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon","Dust"],"instruments":["UVS","NMS","LDEX"],"instrument_hosts":["LADEE"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/collection_mission_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/collection_mission_document.xml","scraped_at":"2026-02-25T20:02:10.753459Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_mission:xml_schema_collection::1.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) XML Schema Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon","Dust"],"instruments":["LDEX","UVS","NMS"],"instrument_hosts":["LADEE"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/collection_mission_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/collection_mission_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.753464Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_mission:context_collection::1.0","title":"LADEE Mission Context Collection","description":"This is the context collection for the LADEE Mission bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon","Dust"],"instruments":["LDEX","UVS","NMS"],"instrument_hosts":["LADEE"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/collection_mission_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/collection_mission_context.xml","scraped_at":"2026-02-25T20:02:10.753469Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_acc:context::1.0","title":"PDS4 MAVEN ACC Context Collection","description":"This PDS4 context_collection file was created in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":["MARS"],"instruments":["ACC"],"instrument_hosts":["MAVEN"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/context/collection_maven_acc_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/context/collection_maven_acc_context.xml","scraped_at":"2026-02-25T20:02:10.753473Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_acc:document::1.0","title":"MAVEN ACC Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the MAVEN ACC bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/document/collection_acc_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/document/collection_acc_document.xml","scraped_at":"2026-02-25T20:02:10.753477Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_acc:xml_schema::1.0","title":"MAVEN ACC xml_schema Collection","description":"Collection of schemas and schematron files used in this archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.753482Z","keywords":["Accelerometer","MAVEN","Mars","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_acc:profile::2.0","title":"ACCEL L3 Data Collection","description":"Data acquired from the IMU and RWA during the MAVEN mission and processed by the ACCEL team.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":["Mars"],"instruments":["ACCEL"],"instrument_hosts":["MAVEN"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/l3/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/l3/collection_accel_l3_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/l3/collection_accel_l3_inventory.xml","scraped_at":"2026-02-25T20:02:10.753486Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:calibration::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer Calibration Collection","description":"Calibration collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/calibration_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/calibration_collection.xml","scraped_at":"2026-02-25T20:02:10.753489Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:document::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer Document Collection","description":"Document collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/document/document_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/document/document_collection.xml","scraped_at":"2026-02-25T20:02:10.753492Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:data_euv::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) data_euv collection file","description":"EUV data collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1995-12-08","stop_date":"2002-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/data_gouvs_euv_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/data_gouvs_euv_collection.xml","scraped_at":"2026-02-25T20:02:10.753496Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:geometry_uvs_foot::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) geometry_uvs_foot collection file","description":"GEOMETRY UVS FOOT collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Geometry"],"start_date":"1995-12-08","stop_date":"1999-06-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_uvs_foot_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_uvs_foot_collection.xml","scraped_at":"2026-02-25T20:02:10.753500Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:geometry_uvs_geo::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) geometry_uvs_geo collection file","description":"GEOMETRY UVS GEO collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Geometry"],"start_date":"1995-12-08","stop_date":"1999-06-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_uvs_geo_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_uvs_geo_collection.xml","scraped_at":"2026-02-25T20:02:10.753504Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:geometry_euv::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) geometry_euv collection file","description":"GEOMETRY EUV collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Geometry"],"start_date":"1995-12-08","stop_date":"2002-09-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_euv_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_euv_collection.xml","scraped_at":"2026-02-25T20:02:10.753507Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_uvs:data_uvs_dat::1.0","title":"Galileo Orbiter Ultraviolet Spectrometer (UVS) data_uvs_dat collection file","description":"UVS DAT data collection for the Galileo Orbiter UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1995-12-08","stop_date":"1999-06-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/data_uvs_dat_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/data_uvs_dat_collection.xml","scraped_at":"2026-02-25T20:02:10.753511Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs:calibration::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) Calibration Collection","description":"Calibration collection for Voyager 1 UVS and Voyager 2 UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["VOYAGER"],"targets":["JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS","UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/calibration_vguvs_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/calibration_vguvs_collection.xml","scraped_at":"2026-02-25T20:02:10.753516Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs:data_raw::1.0","title":"Voyager Ultraviolet Spectrometer (UVS) Data collection","description":"Data collection for Voyager 1 UVS and Voyager 2 UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["VOYAGER"],"targets":["JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS","UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":["Data"],"start_date":"1977-08-20","stop_date":"1989-10-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/data_vguvs_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/data_vguvs_collection.xml","scraped_at":"2026-02-25T20:02:10.753521Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vg_uvs:document::1.0","title":"Voyager 1 and 2 Ultraviolet Spectrometer Document Collection","description":"Document collection for the Voyager 1 and 2 UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["VOYAGER"],"targets":["JUPITER","SATURN","URANUS","NEPTUNE"],"instruments":["UVS","UVS"],"instrument_hosts":["VOYAGER 1","VOYAGER 2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/document/document_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/document/document_collection.xml","scraped_at":"2026-02-25T20:02:10.753527Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:document::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer Document Collection","description":"Document collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/document/document_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/document/document_collection.xml","scraped_at":"2026-02-25T20:02:10.753532Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:geometry::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) geometry collection file","description":"GEOMETRY collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Geometry"],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/geometry_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/geometry_collection.xml","scraped_at":"2026-02-25T20:02:10.753537Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:data_rdr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) data_rdr collection file","description":"RDR data collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","GLL PCT","PPR RCT"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/data_rdr_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/data_rdr_collection.xml","scraped_at":"2026-02-25T20:02:10.753542Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_ppr:data_redr::1.0","title":"Galileo Orbiter Photopolarimeter Radiometer (PPR) data_redr collection file","description":"R_EDR data collection for the Galileo Orbiter PPR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO ORBITER"],"targets":["Jupiter","Callisto","Europa","Ganymede","Io","GLL PCT","PPR RCT"],"instruments":["PPR"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1996-06-26","stop_date":"1997-11-08","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/data_redr_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/data_redr_collection.xml","scraped_at":"2026-02-25T20:02:10.753547Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims:l1a::1.0","title":"NGIMS Raw Data Collection","description":"Raw data acquired from the NGIMS instrument during its primary mission. No calibrations, corrections, or interpretations are applied.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":["Mars"],"instruments":["NGIMS"],"instrument_hosts":["MAVEN"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1a/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1a/collection_ngims_l1a_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1a/collection_ngims_l1a_inventory.xml","scraped_at":"2026-02-25T20:02:10.753553Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims:context::1.0","title":"MAVEN NGIMS Context Collection","description":"Collection of labels describing the context of the NGIMS data (e.g., the MAVEN mission and spacecraft, the NGIMS instrument). These labels are really just pointers to other documents.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":["Mars"],"instruments":["NGIMS"],"instrument_hosts":["MAVEN"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/context/collection_ngims_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/context/collection_ngims_context.xml","scraped_at":"2026-02-25T20:02:10.753558Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims:xml_schema::1.0","title":"NGIMS XML Schema Collection","description":"Collection of schemas and schematron files used in this archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/xml_schema/collection_ngims_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/xml_schema/collection_ngims_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.753563Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims:calibration::1.0","title":"NGIMS Calibration Data Collection","description":"Raw data acquired during MAVEN NGIMS pre-launch Integration and Testing, used to define the calibration techniques for flight data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":["Mars"],"instruments":["NGIMS"],"instrument_hosts":["MAVEN"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/calibration/collection_ngims_calibration_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/calibration/collection_ngims_calibration_inventory.xml","scraped_at":"2026-02-25T20:02:10.753566Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims:l1b::1.0","title":"NGIMS Calibration Data Collection","description":"Raw data acquired during MAVEN NGIMS pre-launch Integration and Testing, used to define the calibration techniques for flight data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":["Mars"],"instruments":["NGIMS"],"instrument_hosts":["MAVEN"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1b/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1b/collection_ngims_l1b_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1b/collection_ngims_l1b_inventory.xml","scraped_at":"2026-02-25T20:02:10.753570Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims:l2::1.0","title":"NGIMS L2 Data Collection","description":"Data acquired from the NGIMS instrument during its primary mission, with corrections and interpretations applied.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":["Mars"],"instruments":["NGIMS"],"instrument_hosts":["MAVEN"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l2/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l2/collection_ngims_l2_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l2/collection_ngims_l2_inventory.xml","scraped_at":"2026-02-25T20:02:10.753573Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims:l3::1.0","title":"NGIMS L3 Data Collection","description":"Data acquired from the NGIMS instrument during its primary mission, with corrections and interpretations applied.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MAVEN"],"targets":["Mars"],"instruments":["NGIMS"],"instrument_hosts":["MAVEN"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l3/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l3/collection_ngims_l3_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l3/collection_ngims_l3_inventory.xml","scraped_at":"2026-02-25T20:02:10.753576Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:maven_ngims:document::1.0","title":"MAVEN NGIMS Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the MAVEN NGIMS bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/document/collection_ngims_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/document/collection_ngims_document.xml","scraped_at":"2026-02-25T20:02:10.753579Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:document::15.0","title":"APSS TWINS Document Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml","scraped_at":"2026-02-25T20:02:10.753874Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_raw::15.0","title":"APSS TWINS Raw Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.753880Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_calibrated::15.0","title":"APSS TWINS Calibrated Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.753885Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_derived::15.0","title":"APSS TWINS Derived Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml","scraped_at":"2026-02-25T20:02:10.753890Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vo_irtm:data::1.0","title":"Viking Orbiter Infrared Thermal Mapper (IRTM) Data collection","description":"Data collection for Viking Orbiter 1 IRTM and Viking Orbiter 2 IRTM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["VIKING ORBITER"],"targets":["MARS"],"instruments":["IRTM","IRTM"],"instrument_hosts":["VIKING ORBITER 1","VIKING ORBITER 2"],"data_types":["Data"],"start_date":"1976-06-19","stop_date":"1979-02-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/data/data_voirtm_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/data/data_voirtm_collection.xml","scraped_at":"2026-02-25T20:02:10.753923Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vo_irtm:document::1.0","title":"Viking Orbiter Infrared Thermal Mapper (IRTM) Document Collection","description":"Document collection for the Viking Orbiter 1 IRTM and Viking Orbiter 2 IRTM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["VIKING ORBITER"],"targets":["MARS"],"instruments":["IRTM","IRTM"],"instrument_hosts":["VIKING ORBITER 1","VIKING ORBITER 2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/document/document_voirtm_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/document/document_voirtm_collection.xml","scraped_at":"2026-02-25T20:02:10.753927Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:context::6.0","title":"Mars 2020 MOXIE Context Collection","description":"Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Context"],"start_date":"2021-02-22","stop_date":"2022-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","scraped_at":"2026-02-25T20:02:10.753954Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_derived::6.0","title":"Mars 2020 MOXIE Derived Data Collection","description":"Mars 2020 MOXIE Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2022-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","scraped_at":"2026-02-25T20:02:10.753958Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_calibrated::6.0","title":"Mars 2020 MOXIE Calibrated Data Collection","description":"Mars 2020 MOXIE Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2022-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753963Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:document::6.0","title":"Mars 2020 MOXIE Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":"2021-02-22","stop_date":"2022-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","scraped_at":"2026-02-25T20:02:10.753968Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_raw::6.0","title":"Mars 2020 MOXIE Raw Data Collection","description":"Mars 2020 MOXIE Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2022-11-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753973Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:data_calibrated::1.0","title":"NMS Calibrated Data Collection","description":"Data acquired from the NMS instrument during its primary mission, with corrections and interpretations applied.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/collection_nms_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/collection_nms_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.754453Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:calibration::1.0","title":"NMS Calibration Data Collection","description":"Raw data acquired during LADEE NMS pre-launch Integration and Testing, used to define the calibration techniques for flight data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/collection_nms_calibration_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/collection_nms_calibration_inventory.xml","scraped_at":"2026-02-25T20:02:10.754456Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:context::1.0","title":"LADEE NMS Context Collection","description":"Collection of context products for the NMS data (e.g., the LADEE mission and spacecraft, the NMS instrument).","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/collection_nms_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/collection_nms_context.xml","scraped_at":"2026-02-25T20:02:10.754460Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:xml_schema::1.0","title":"NMS XML Schema Collection","description":"Collection of schemas and schematron files used in this archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/collection_nms_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/collection_nms_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754463Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:data_raw::1.0","title":"NMS Raw Data Collection","description":"Raw data acquired from the NMS instrument during its primary mission. No calibrations, corrections, or interpretations are applied.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/collection_nms_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/collection_nms_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.754466Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:document::1.0","title":"LADEE NMS Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the LADEE NMS bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/collection_nms_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/collection_nms_document.xml","scraped_at":"2026-02-25T20:02:10.754470Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:data_derived::1.0","title":"NMS Derived Data Collection","description":"Data acquired from the NMS instrument during its primary mission, resampled for Argon, Helium and Neon abundances.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/collection_nms_data_derived_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/collection_nms_data_derived_inventory.xml","scraped_at":"2026-02-25T20:02:10.754473Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:context::7.0","title":"Mars 2020 MOXIE Context Collection","description":"Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Context"],"start_date":"2021-02-22","stop_date":"2023-04-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","scraped_at":"2026-02-25T20:02:10.754487Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_derived::7.0","title":"Mars 2020 MOXIE Derived Data Collection","description":"Mars 2020 MOXIE Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2023-04-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","scraped_at":"2026-02-25T20:02:10.754492Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_calibrated::7.0","title":"Mars 2020 MOXIE Calibrated Data Collection","description":"Mars 2020 MOXIE Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2023-04-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.754496Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:document::7.0","title":"Mars 2020 MOXIE Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":"2021-02-22","stop_date":"2023-04-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","scraped_at":"2026-02-25T20:02:10.754502Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_raw::7.0","title":"Mars 2020 MOXIE Raw Data Collection","description":"Mars 2020 MOXIE Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2023-04-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","scraped_at":"2026-02-25T20:02:10.754507Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:context::1.0","title":"APSS PS Context Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/context/collection_ps_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/context/collection_ps_context.xml","scraped_at":"2026-02-25T20:02:10.754537Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:document::15.0","title":"APSS PS Document Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml","scraped_at":"2026-02-25T20:02:10.754542Z","keywords":["Mars","weather","meteorology","environment","pressure"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:data_raw::15.0","title":"APSS PS Raw Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.754547Z","keywords":["Mars","weather","meteorology","environment","pressure"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:xml_schema::1.0","title":"APSS PS Schema Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/xml_schema/collection_ps_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/xml_schema/collection_ps_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754550Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_ps:data_calibrated::15.0","title":"APSS PS Calibrated Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS PS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-05-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.754555Z","keywords":["Mars","weather","meteorology","environment","pressure"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:context::1.0","title":"APSS TWINS Context Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/context/collection_twins_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/context/collection_twins_context.xml","scraped_at":"2026-02-25T20:02:10.754559Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:document::16.0","title":"APSS TWINS Document Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml","scraped_at":"2026-02-25T20:02:10.754564Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_raw::16.0","title":"APSS TWINS Raw Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.754569Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:xml_schema::1.0","title":"APSS TWINS Schema Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/xml_schema/collection_twins_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/xml_schema/collection_twins_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754573Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_calibrated::16.0","title":"APSS TWINS Calibrated Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.754578Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_twins:data_derived::16.0","title":"APSS TWINS Derived Data Collection","description":"Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Insight"],"targets":["Mars"],"instruments":["APSS TWINS"],"instrument_hosts":["Insight"],"data_types":["Data"],"start_date":"2018-11-30","stop_date":"2022-08-27","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml","scraped_at":"2026-02-25T20:02:10.754585Z","keywords":["Mars","weather","meteorology","environment","wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vo_mawd:data::1.0","title":"Viking Orbiter Mars Atmospheric Water Detector (MAWD) Data collection","description":"Data collection for Viking Orbiter 1 MAWD and Viking Orbiter 2 MAWD PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["VIKING ORBITER"],"targets":["MARS"],"instruments":["MAWD","MAWD"],"instrument_hosts":["VIKING ORBITER 1","VIKING ORBITER 2"],"data_types":["Data"],"start_date":"1976-06-19","stop_date":"1979-02-26","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/data/data_vomawd_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/data/data_vomawd_collection.xml","scraped_at":"2026-02-25T20:02:10.754589Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vo_mawd:document::1.0","title":"Viking Orbiter Mars Atmospheric Water Detector (MAWD) Document Collection","description":"Document collection for the Viking Orbiter 1 MAWD and Viking Orbiter 2 MAWD PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["VIKING ORBITER"],"targets":["MARS"],"instruments":["MAWD","MAWD"],"instrument_hosts":["VIKING ORBITER 1","VIKING ORBITER 2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/document/document_vomawd_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/document/document_vomawd_collection.xml","scraped_at":"2026-02-25T20:02:10.754593Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps:context::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived Context Collection","description":"Global Maps of Jupiter and Saturn based on Cassini ISS Images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":["Context"],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/collection_co_iss_global-maps_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/collection_co_iss_global-maps_context.xml","scraped_at":"2026-02-25T20:02:10.754598Z","keywords":["Cassini","ISS","Jupiter","Saturn","global maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps:data_derived::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived Data Collection","description":"Cassini ISS Global Maps of Jupiter and Saturn","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":["Data"],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/collection_co_iss_global-maps_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/collection_co_iss_global-maps_data_derived.xml","scraped_at":"2026-02-25T20:02:10.754603Z","keywords":["Cassini","ISS","Juptier","Saturn","global maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps:document::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived Document Collection","description":"Cassini ISS Global Maps of Jupiter and Saturn","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":["Document"],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/document/collection_co_iss_global-maps_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/document/collection_co_iss_global-maps_document.xml","scraped_at":"2026-02-25T20:02:10.754608Z","keywords":["Cassini","ISS","Jupiter","Saturn","global maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps:browse::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived Browse Collection","description":"Global Maps of Jupiter and Saturn based on Cassini ISS Images","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":["Browse"],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/browse/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/browse/collection_co_iss_global-maps_browse.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/browse/collection_co_iss_global-maps_browse.xml","scraped_at":"2026-02-25T20:02:10.754615Z","keywords":["Cassini","ISS","Jupiter","Saturn","global maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co_iss_global-maps:xml_schema::1.0","title":"Cassini ISS Global Maps of Jupiter and Saturn Derived XML Schema Collection","description":"Cassini ISS Global Maps of Jupiter and Saturn","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens Mission"],"targets":["Jupiter","Saturn"],"instruments":["Imaging Science Subsystem - Narrow Angle for CO","Imaging Science Subsystem - Wide Angle for CO"],"instrument_hosts":["Cassini"],"data_types":["XML Schema"],"start_date":"2000-12-06","stop_date":"2011-08-11","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/collection_co_iss_global-maps_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/collection_co_iss_global-maps_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754622Z","keywords":["Cassini","ISS","Jupiter","Saturn","global maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere:context::1.0","title":"Titan Ionosphere Context Collection","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/collection_context_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/collection_context_titan_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.754626Z","keywords":["Cassini Orbiter","RSS","Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere:data_derived::1.1","title":"Titan Ionosphere Observations Collection","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/collection_data_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/collection_data_titan_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.754632Z","keywords":["Cassini Orbiter","RSS","Titan"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere:document::1.0","title":"Titan Ionosphere Document Collection","description":"Cassini radio occultations of the Titan ionosphere","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2006-03-18","stop_date":"2016-05-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/document/collection_document_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/document/collection_document_titan_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.754636Z","keywords":["Cassini Orbiter","RSS","Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_titan_ionosphere:schema::1.0","title":"Titan Ionosphere Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/collection_schema_titan_ionosphere.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/collection_schema_titan_ionosphere.xml","scraped_at":"2026-02-25T20:02:10.754641Z","keywords":["Cassini Orbiter","RSS","Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:context::2.1","title":"Laboratory Study of Hydrocarbon IR Spectra Context Collection","description":"Context collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":["Context"],"start_date":"2016-01-01","stop_date":"2022-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml","scraped_at":"2026-02-25T20:02:10.754667Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:data::4.0","title":"Laboratory Study of Hydrocarbon IR Spectra Data Collection","description":"Data collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":["Data"],"start_date":"2016-01-01","stop_date":"2022-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml","scraped_at":"2026-02-25T20:02:10.754674Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:document::4.0","title":"Laboratory Study of Hydrocarbon IR Spectra Document Collection","description":"Document collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility","Bruker IFS 125HR Fourier Transform Spectrometer"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":["Document"],"start_date":"2016-01-01","stop_date":"2022-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/collection_lab.hydrocarbon_spectra_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/collection_lab.hydrocarbon_spectra_document.xml","scraped_at":"2026-02-25T20:02:10.754681Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lab.hydrocarbon_spectra:xml_schema::2.1","title":"Laboratory Study of Hydrocarbon IR Spectra XML Schema Collection","description":"XML schema collection label","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"],"targets":["Laboratory Analog Jupiter","Laboratory Analog Saturn","Laboratory Analog Titan"],"instruments":["Bruker IFS 125HR Fourier Transform Spectrometer","Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility","Far-Infrared Beamline at the Canadian Light Source Facility"],"instrument_hosts":["Australian Synchrotron Facility","Canadian Light Source Facility","Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"],"data_types":["XML Schema"],"start_date":"2016-01-01","stop_date":"2022-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754686Z","keywords":["hydrocarbon infrared spectra","gas giants and Titan"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs:calibration::2.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Calibration Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Calibration Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/calibration/collection_uvs_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/calibration/collection_uvs_calibration.xml","scraped_at":"2026-02-25T20:02:10.754690Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs:context::2.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Context Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":[],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/context/collection_uvs_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/context/collection_uvs_context.xml","scraped_at":"2026-02-25T20:02:10.754694Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs:cal::2.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Calibrated-level Data Product Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Calibrated-level Data Product Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_calibrated/collection_uvs_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_calibrated/collection_uvs_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.754697Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs:derived::1.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Derived-level Data Product Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Derived-level Data Product Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_derived/collection_uvs_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_derived/collection_uvs_data_derived.xml","scraped_at":"2026-02-25T20:02:10.754701Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs:raw::2.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Raw-level Data Product Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Raw-level Data Product Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_raw/collection_uvs_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_raw/collection_uvs_data_raw.xml","scraped_at":"2026-02-25T20:02:10.754704Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs:document::2.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Document Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":[],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/document/collection_uvs_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/document/collection_uvs_document.xml","scraped_at":"2026-02-25T20:02:10.754707Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_uvs:xml_schema::2.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Schema Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":[],"instruments":["UVS"],"instrument_hosts":["Lunar Atmosphere and Dust Environment Explorer (LADEE)"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/xml_schema/collection_uvs_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/xml_schema/collection_uvs_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754711Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:browse-maps::1.0","title":"Thumbnails of atmospheric infrared column dust optical depth global maps reconstructed from gridding of MGS TES single retrievals.","description":"Thumbnails of the global maps of atmospheric column dust optical depth (at a reference infrared wavelength of 9.3 micron in absorption and normalized to the reference pressure of 610 Pa) reconstructed from gridding of MGS TES single retrievals.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["MGS"],"data_types":["Browse"],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/browse_maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/browse_maps/collection_mgs_tes_atmos_dust-ice_browse-maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/browse_maps/collection_mgs_tes_atmos_dust-ice_browse-maps.xml","scraped_at":"2026-02-25T20:02:10.754715Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:context::1.0","title":"MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Context Collection","description":"Context for the atmospheric column optical depth data for dust and water ice as well as the daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["MGS"],"data_types":["Context"],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/collection_mgs_tes_atmos_dust-ice_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/collection_mgs_tes_atmos_dust-ice_context.xml","scraped_at":"2026-02-25T20:02:10.754718Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_ir-aerosol-optical-depth::1.0","title":"MGS TES Infrared Column Aerosol Optical Depth Derived Data Collection","description":"Atmospheric infrared column dust and water ice optical depths retrieved from MGS TES observations. Absorption infrared optical depths are retrieved from thermal infrared observations in nadir-viewing mode and reported at a reference wavelength of 9.3 micron for the dust and 12.1 micron for the water ice.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["MGS"],"data_types":["Data"],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_ir-aerosol-optical-depth.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_ir-aerosol-optical-depth.xml","scraped_at":"2026-02-25T20:02:10.754722Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_maps::1.0","title":"MGS TES Infrared Column Dust Optical Depth Maps Derived Data Collection","description":"Daily global maps of atmospheric infrared column dust optical depth reconstructed from gridding of MGS TES single retrievals. Maps provided at a reference infrared wavelength of 9.3 micron in absorption are reconstructed from gridding of single retrievals of column dust optical depth from thermal infrared observations in nadir-viewing mode.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["MGS"],"data_types":["Data"],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/collection_mgs_tes_atmos_dust-ice_data_derived_ir-dust-optical-depth-maps.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/collection_mgs_tes_atmos_dust-ice_data_derived_ir-dust-optical-depth-maps.xml","scraped_at":"2026-02-25T20:02:10.754726Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_vis-dust-optical-depth::1.0","title":"MGS TES Visible Column Dust Optical Depth Derived Data Collection","description":"Atmospheric visible column dust optical depths retrieved from MGS TES observations. Visible optical depths are retrieved from solar band emergence phase function sequences and reported at a reference wavelength of 0.67 micron.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["MGS"],"data_types":["Data"],"start_date":"1999-03-12","stop_date":"2004-08-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_vis-dust-optical-depth.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_vis-dust-optical-depth.xml","scraped_at":"2026-02-25T20:02:10.754730Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:document::1.0","title":"MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Document Collection","description":"Documentation for the atmospheric column optical depth data for dust and water ice as well as for the daily maps of column dust optical depth, derived from observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["MGS"],"data_types":["Document"],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/document/collection_mgs_tes_atmos_dust-ice_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/document/collection_mgs_tes_atmos_dust-ice_document.xml","scraped_at":"2026-02-25T20:02:10.754734Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_atmos_dust-ice:xml_schema::1.0","title":"MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Schema Collection","description":"Schema collection for the atmospheric column optical depth data for dust and water ice as well as the daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["Mars"],"instruments":["TES"],"instrument_hosts":["MGS"],"data_types":["XML Schema"],"start_date":"1999-02-28","stop_date":"2004-08-31","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/collection_mgs_tes_atmos_dust-ice_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/collection_mgs_tes_atmos_dust-ice_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754737Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_atmos-opacity::1.1","title":"MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Data"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml","scraped_at":"2026-02-25T20:02:10.754743Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_surf-emissivity::1.1","title":"MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Data"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml","scraped_at":"2026-02-25T20:02:10.754748Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_tes_recalib_atmos:document::1.4","title":"MGS TES Atmospheric Recalibration Document Collection","description":null,"node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor (MGS)"],"targets":["Mars"],"instruments":["Thermal Emission Spectrometer (TES)"],"instrument_hosts":["Mars Global Surveyor (MGS)"],"data_types":["Document"],"start_date":"1999-02-28","stop_date":"2005-02-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/collection_mgs_tes_recalib_atmos_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/collection_mgs_tes_recalib_atmos_document.xml","scraped_at":"2026-02-25T20:02:10.754753Z","keywords":["Mars","Atmosphere","Spectroscopy"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ao:context::1.0","title":"PDS4 Phoenix AO context Collection","description":"The original PHX AO dataset was submitted in 2009 by Mark Lemmon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["Mars"],"instruments":["Lidar"],"instrument_hosts":["Phoenix"],"data_types":["Context"],"start_date":"2008-05-25","stop_date":"2008-10-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/context/collection_ao_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/context/collection_ao_context.xml","scraped_at":"2026-02-25T20:02:10.754758Z","keywords":["Phoenix","Atmospheric Opacity","SURFACE STEREO IMAGER","SSI","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ao:data_derived::1.0","title":"PDS4 Phoenix AO derived data Collection","description":"The original PHX AO dataset was submitted in 2009 by Mark Lemmon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["Mars"],"instruments":["Atmospheric Opacity"],"instrument_hosts":["Phoenix"],"data_types":["Data"],"start_date":"2008-05-25","stop_date":"2008-10-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/data-derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/data-derived/collection_ao_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/data-derived/collection_ao_data_derived.xml","scraped_at":"2026-02-25T20:02:10.754764Z","keywords":["Phoenix","Atmospheric Opacity","SURFACE STEREO IMAGER","SSI","Mars"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ao:document::1.0","title":"PDS4 Phoenix AO Document Collection","description":"The original PHX AO dataset was submitted in 2009 by Mark Lemmon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["Mars"],"instruments":["SSI"],"instrument_hosts":["Phoenix"],"data_types":["Document"],"start_date":"2008-05-25","stop_date":"2008-10-28","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/document/collection_ao_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/document/collection_ao_document.xml","scraped_at":"2026-02-25T20:02:10.754769Z","keywords":["Phoenix","Atmospheric Opacity","SURFACE STEREO IMAGER","SSI","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ao:xml_schema::1.0","title":"PDS4 Phoenix xml_schema Collection","description":"This PDS4 xml_schema_collection file was submitted in 2013","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754773Z","keywords":["Lidar","Phoenix","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_met:context::1.0","title":"PDS4 Phoenix MET context Collection","description":"The original PHX MET dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["MARS"],"instruments":["MET"],"instrument_hosts":["PHOENIX"],"data_types":["Context"],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/context/collection_met_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/context/collection_met_context.xml","scraped_at":"2026-02-25T20:02:10.754779Z","keywords":["Phoenix","Meterology","Temperature","Pressure","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_met:raw::1.0","title":"PDS4 Phoenix MET raw data Collection","description":"The original PHX MET dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["MARS"],"instruments":["MET"],"instrument_hosts":["PHOENIX"],"data_types":["Data"],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_raw/collection_met_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_raw/collection_met_data_raw.xml","scraped_at":"2026-02-25T20:02:10.754785Z","keywords":["Phoenix","Meterology","Temperature","Pressure","Mars"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_met:reduced::1.0","title":"PDS4 Phoenix MET reduced data Collection","description":"The original PHX MET dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["MARS"],"instruments":["MET"],"instrument_hosts":["PHOENIX"],"data_types":["Data"],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_reduced/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_reduced/collection_met_data_reduced.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_reduced/collection_met_data_reduced.xml","scraped_at":"2026-02-25T20:02:10.754790Z","keywords":["Phoenix","Meterology","Temperature","Pressure","Mars"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_met:document::1.0","title":"PDS4 Phoenix MET Document Collection","description":"The original PHX MET dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["MARS"],"instruments":["MET"],"instrument_hosts":["PHOENIX"],"data_types":["Document"],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/document/collection_met_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/document/collection_met_document.xml","scraped_at":"2026-02-25T20:02:10.754795Z","keywords":["Phoenix","Meterology","Temperature","Pressure","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_met:xml_schema::1.0","title":"PDS4 Phoenix xml_schema Collection","description":"The original PHX MET dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754800Z","keywords":["Phoenix","Meterology","Temperature","Pressure","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_tt:context::1.0","title":"PDS4 Phoenix TT context Collection","description":"The original PHX TT dataset was submitted in 2009 by Mark Lemmon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["MARS"],"instruments":["TT"],"instrument_hosts":["PHOENIX"],"data_types":["Context"],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/context/collection_tt_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/context/collection_tt_context.xml","scraped_at":"2026-02-25T20:02:10.754804Z","keywords":["Phoenix","TT","TellTale","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_tt:data_derived::1.0","title":"PDS4 Phoenix TT derived data Collection","description":"This PDS4 tt_context_collection file was submitted in 2013","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/data-derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/data-derived/collection_tt_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/data-derived/collection_tt_data_derived.xml","scraped_at":"2026-02-25T20:02:10.754808Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_tt:document::1.0","title":"PDS4 Phoenix TT Document Collection","description":"The original PHX TT dataset was submitted in 2009 by Mark Lemmon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["MARS"],"instruments":["TT"],"instrument_hosts":["PHOENIX"],"data_types":["Document"],"start_date":"2008-05-26","stop_date":"2008-06-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/document/collection_tt_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/document/collection_tt_document.xml","scraped_at":"2026-02-25T20:02:10.754812Z","keywords":["Phoenix","TT","TellTale","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_tt:xml_schema::1.0","title":"PDS4 Phoenix xml_schema Collection","description":"This PDS4 xml_schema_collection file was submitted in 2013","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754816Z","keywords":["TT","TellTale","Phoenix","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vl_met:data::1.0","title":"Viking Lander Meteorology (MET) data_vl_met collection file","description":"VL 1001 data collection for the Viking Lander MET PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking Lander"],"targets":["Mars"],"instruments":["MET","MET"],"instrument_hosts":["Viking Lander","Viking Lander"],"data_types":["Data"],"start_date":"1976-07-20","stop_date":"1982-11-13","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/data/collection_data_vl_met.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/data/collection_data_vl_met.xml","scraped_at":"2026-02-25T20:02:10.754821Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vl_met:document::1.0","title":"Viking Lander MET Document Collection","description":"Document collection for the Viking Lander MET PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking Lander"],"targets":["Mars"],"instruments":["MET","MET"],"instrument_hosts":["Viking Lander","Viking Lander"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.754826Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vl_ftpd:data::1.0","title":"Viking Lander Footpad Temp (FTPD) data_vl_ftpd collection file","description":"VL 1002 data collection for the Viking Lander FTPD PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking Lander"],"targets":["Mars"],"instruments":["MET","MET"],"instrument_hosts":["Viking Lander","Viking Lander"],"data_types":["Data"],"start_date":"1976-07-20","stop_date":"1982-11-13","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/data/collection_data_vl_ftpd.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/data/collection_data_vl_ftpd.xml","scraped_at":"2026-02-25T20:02:10.754831Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:vl_ftpd:document::1.0","title":"Viking Lander MET Document Collection","description":"Document collection for the Viking Lander MET PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Viking Lander"],"targets":["Mars"],"instruments":["MET","MET"],"instrument_hosts":["Viking Lander","Viking Lander"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.754834Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ase:context::1.0","title":"PDS4 Phoenix ASE context Collection","description":"This PDS4 xml_schema_collection file was submitted in 2013","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/context/collection_ase_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/context/collection_ase_context.xml","scraped_at":"2026-02-25T20:02:10.754838Z","keywords":["ASE","Phoenix","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ase:data::1.0","title":"PDS4 Phoenix ASE data Collection","description":"This PDS4 data collection file was submitted in 2013","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/data/collection_ase_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/data/collection_ase_data.xml","scraped_at":"2026-02-25T20:02:10.754842Z","keywords":["ASE","Phoenix","Data"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ase:document::1.0","title":"PDS4 Phoenix ASE Document Collection","description":"This PDS4 document_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"2008-05-25","stop_date":"2008-05-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/document/collection_ase_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/document/collection_ase_document.xml","scraped_at":"2026-02-25T20:02:10.754847Z","keywords":["ASE","Atmospheric Structure","Phoenix"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_ase:xml_schema::1.0","title":"PDS4 Phoenix ase xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":"2008-05-25","stop_date":"2008-05-25","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754852Z","keywords":["ASE","Atmospheric Structure","Phoenix","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_had::1.0","title":"Galileo Probe Helium Abundance Detector (HAD) data_gphad collection file","description":"GPHAD data collection for the Galileo Probe HAD PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["HAD"],"instrument_hosts":["GALILEO PROBE"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/collection_gphad_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/collection_gphad_data.xml","scraped_at":"2026-02-25T20:02:10.754872Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_nep::1.0","title":"Galileo Probe Nephelometer (NEP) data_gpnep collection file","description":"GPNEP data collection for the Galileo Probe NEP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["NEP"],"instrument_hosts":["GALILEO PROBE"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/collection_gpnep_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/collection_gpnep_data.xml","scraped_at":"2026-02-25T20:02:10.754875Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_nfr::1.0","title":"Galileo Probe Net Flux Radiometer (NFR) data_gpnfr collection file","description":"GPNFR data collection for the Galileo Probe NFR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/collection_gpnfr_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/collection_gpnfr_data.xml","scraped_at":"2026-02-25T20:02:10.754879Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_nms::1.0","title":"Galileo Probe Mass Spectrometer (GPMS) data_gpnms collection file","description":"GPMS data collection for the Galileo Probe NMS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["GPMS"],"instrument_hosts":["GALILEO PROBE"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/collection_gpnms_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/collection_gpnms_data.xml","scraped_at":"2026-02-25T20:02:10.754882Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_asi::1.0","title":"Galileo Probe Atmospheric Structure Instrument (ASI) data_gpasi collection file","description":"GPASI data collection for the Galileo Probe ASI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI"],"instrument_hosts":["GALILEO PROBE"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/collection_gpasi_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/collection_gpasi_data.xml","scraped_at":"2026-02-25T20:02:10.754886Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_dwe::1.0","title":"Galileo Probe Doppler Wind Experiment (DWE) data_gpdwe collection file","description":"GPDWE data collection for the Galileo Probe DWE PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["DWE"],"instrument_hosts":["GALILEO PROBE"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/collection_gpdwe_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/collection_gpdwe_data.xml","scraped_at":"2026-02-25T20:02:10.754890Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:data_epi::1.0","title":"Galileo Probe Energetic Particles Instrument (EPI) data_gpepi collection file","description":"GPEPI data collection for the Galileo Probe EPI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["EPI"],"instrument_hosts":["GALILEO PROBE"],"data_types":["Data"],"start_date":"1995-12-07","stop_date":"1995-12-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/collection_gpepi_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/collection_gpepi_data.xml","scraped_at":"2026-02-25T20:02:10.754893Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gp:document::1.0","title":"Galileo Probe Document Collection","description":"Document collection for the Galileo Probe PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["GALILEO PROBE"],"targets":["Jupiter"],"instruments":["ASI","DWE","EPI","GPMS","HAD","LRD","NEP","NFR"],"instrument_hosts":["GALILEO PROBE"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/document/collection_gp_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/document/collection_gp_document.xml","scraped_at":"2026-02-25T20:02:10.754897Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad:context::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance Context Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Context"],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/collection_go_nims_io_rad_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/collection_go_nims_io_rad_context.xml","scraped_at":"2026-02-25T20:02:10.754940Z","keywords":["Galileo","NIMS","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad:data_derived::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance Derived Data Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Data"],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/collection_go_nims_io_rad_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/collection_go_nims_io_rad_data_derived.xml","scraped_at":"2026-02-25T20:02:10.754944Z","keywords":["Galileo","NIMS","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad:document::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance Document Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["Document"],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/document/collection_go_nims_io_rad_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/document/collection_go_nims_io_rad_document.xml","scraped_at":"2026-02-25T20:02:10.754949Z","keywords":["Galileo","NIMS","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:go_nims_io_rad:xml_schema::1.0","title":"Galileo NIMS Observations of Io Hot Spot Spectral Radiance XML Schema Collection","description":"NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted","node":"atm","pds_version":"PDS4","type":"collection","missions":["NIMS Io Spectroscopy"],"targets":["Io"],"instruments":["Near Infrared Mapping Spectrometer"],"instrument_hosts":["Galileo Orbiter"],"data_types":["XML Schema"],"start_date":"1996-06-28","stop_date":"2001-10-16","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/collection_go_nims_io_rad_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/collection_go_nims_io_rad_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754954Z","keywords":["Galileo","NIMS","Io"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:context::1.0","title":"InSight Vortex Data Context Collection","description":"InSight Vortex data for dust devil detections Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["InSight"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/collection_insight_vortex_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/collection_insight_vortex_context.xml","scraped_at":"2026-02-25T20:02:10.754958Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:data_seis::1.0","title":"InSight Vortex SEIS Data Collection","description":"InSight SEIS data for dust devil detections. Data are additionally archived on the IPSL InSight archive: https://data.ipsl.fr/catalog/srv/eng/catalog.search#/metadata/2ddaba56-cf61-4d5b-83b7-e4a079ed836b","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["SEIS"],"instrument_hosts":["InSight"],"data_types":["Data"],"start_date":"2018-12-12","stop_date":"2020-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/collection_insight_vortex_seis_data_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/collection_insight_vortex_seis_data_inventory.xml","scraped_at":"2026-02-25T20:02:10.754961Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:data_vortex::1.0","title":"InSight Vortex Data Collection","description":"InSight Vortex data for dust devil detections","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["InSight"],"data_types":["Data"],"start_date":"2018-12-12","stop_date":"2020-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/collection_insight_vortex_data_catalog_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/collection_insight_vortex_data_catalog_inventory.xml","scraped_at":"2026-02-25T20:02:10.754965Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:document::1.0","title":"InSight Vortex Data Document Collection","description":"InSight Vortex data for dust devil detections Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS","SEIS"],"instrument_hosts":["InSight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document/collection_insight_vortex_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document/collection_insight_vortex_document.xml","scraped_at":"2026-02-25T20:02:10.754969Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:document_plots::1.0","title":"InSight Vortex Data Plots Collection?","description":"InSight Vortex atmospheric data plots for dust devil detections Document Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["InSight"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document_plots/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document_plots/collection_insight_vortex_plots.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document_plots/collection_insight_vortex_plots.xml","scraped_at":"2026-02-25T20:02:10.754972Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:insight_vortex:xml_schema::1.0","title":"InSight Vortex Data Schema Collection","description":"InSight Vortex data for dust devil detections Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["InSight"],"targets":["Mars"],"instruments":["APSS PS","APSS TWINS"],"instrument_hosts":["InSight"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/collection_insight_vortex_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/collection_insight_vortex_schema.xml","scraped_at":"2026-02-25T20:02:10.754976Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_disr:data_derived::1.0","title":"Huygens Descent Imager/Spectral Radiometer data_derived collection file","description":"Derived Data Products data collection for the Huygens DISR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DISR"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_derived/collection_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_derived/collection_data_derived.xml","scraped_at":"2026-02-25T20:02:10.755064Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_disr:data_raw::1.0","title":"Huygens Descent Imager/Spectral Radiometer data_raw collection file","description":"Raw Data Products data collection for the Huygens DISR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DISR"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_raw/collection_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755068Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_disr:document::1.0","title":"Huygens Descent Imager/Spectral Radiometer Document collection file","description":"Document Products data collection for the Huygens DISR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DISR"],"instrument_hosts":["Huygens Probe"],"data_types":["Document"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.755072Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_disr:browse::1.0","title":"Huygens Descent Imager/Spectral Radiometer Browse collection file","description":"Browse Products data collection for the Huygens DISR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DISR"],"instrument_hosts":["Huygens Probe"],"data_types":["Browse"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/browse/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/browse/collection_browse.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.755075Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_disr:calibration::1.0","title":"Huygens Descent Imager/Spectral Radiometer Calibration collection file","description":"Calibration Products data collection for the Huygens DISR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DISR"],"instrument_hosts":["Huygens Probe"],"data_types":["Calibration"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/calibration/collection_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.755078Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_acp:data_raw::1.0","title":"Huygens Aerosol Collector and Pyrolyser data_hpacp collection file","description":"HPACP data collection for the Huygens ACP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["ACP"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DATA/collection_hpacp_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DATA/collection_hpacp_data.xml","scraped_at":"2026-02-25T20:02:10.755082Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_acp:document::1.0","title":"Huygens Aerosol Collector and Pyrolyser Document Collection","description":"Document collection for the Huygens ACP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["ACP"],"instrument_hosts":["Huygens Probe"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DOCUMENT/collection_hpacp_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DOCUMENT/collection_hpacp_document.xml","scraped_at":"2026-02-25T20:02:10.755085Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dtwg:data_derived::1.0","title":"Huygens Reconstructed Entry and Descent Trajectory data_hpdtwg collection file","description":"HPDTWG data collection for the Huygens DTWG PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE","DISR","GCMS","SSP","HASI"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DATA/collection_hpdtwg_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DATA/collection_hpdtwg_data.xml","scraped_at":"2026-02-25T20:02:10.755089Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dtwg:document::1.0","title":"Huygens Reconstructed Entry and Descent Trajectory Document Collection","description":"Document collection for the Huygens DTWG PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE","DISR","GCMS","SSP","HASI"],"instrument_hosts":["Huygens Probe"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DOCUMENT/collection_hpdtwg_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DOCUMENT/collection_hpdtwg_document.xml","scraped_at":"2026-02-25T20:02:10.755092Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dtwg:geometry::1.0","title":"Huygens Reconstructed Entry and Descent Trajectory (DTWG) Geometry collection file","description":"Geometry collection for the Huygens DTWG PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE","DISR","GCMS","SSP","HASI"],"instrument_hosts":["Huygens Probe"],"data_types":["Geometry"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/GEOMETRY/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/GEOMETRY/collection_hpdtwg_geometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/GEOMETRY/collection_hpdtwg_geometry.xml","scraped_at":"2026-02-25T20:02:10.755097Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dtwg:browse::1.0","title":"Huygens Reconstructed Entry and Descent Trajectory Browse Collection","description":"Browse collection for the Huygens DTWG PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE","DISR","GCMS","SSP","HASI"],"instrument_hosts":["Huygens Probe"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/BROWSE/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/BROWSE/collection_hpdtwg_browse.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/BROWSE/collection_hpdtwg_browse.xml","scraped_at":"2026-02-25T20:02:10.755102Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dwe:calibration::1.0","title":"Huygens Doppler Wind Experiment Calibration Collection","description":"Calibration collection for the Huygens DWE PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE"],"instrument_hosts":["Huygens Probe"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/CALIB/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/CALIB/collection_hpdwe_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/CALIB/collection_hpdwe_calibration.xml","scraped_at":"2026-02-25T20:02:10.755105Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dwe:data_raw::1.0","title":"Huygens Doppler Wind Experiment (DWE) data_hpdwe collection file","description":"HPDWE data collection for the Huygens DWE PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DATA/collection_hpdwe_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DATA/collection_hpdwe_data.xml","scraped_at":"2026-02-25T20:02:10.755109Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dwe:document::1.0","title":"Huygens Doppler Wind Experiment Document Collection","description":"Document collection for the Huygens DWE PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE"],"instrument_hosts":["Huygens Probe"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DOCUMENT/collection_hpdwe_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DOCUMENT/collection_hpdwe_document.xml","scraped_at":"2026-02-25T20:02:10.755112Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_dwe:geometry::1.0","title":"Huygens Doppler Wind Experiment (DWE) Geometry collection file","description":"Geometry collection for the Huygens DWE PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["DWE"],"instrument_hosts":["Huygens Probe"],"data_types":["Geometry"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/GEOMETRY/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/GEOMETRY/collection_hpdwe_geometry.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/GEOMETRY/collection_hpdwe_geometry.xml","scraped_at":"2026-02-25T20:02:10.755115Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_gcms:document::1.0","title":"Huygens Gas Chromatograph and Mass Spectrometer Document Collection","description":"Document collection for the Huygens GCMS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["GCMS"],"instrument_hosts":["Huygens Probe"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DOCUMENT/collection_hpgcms_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DOCUMENT/collection_hpgcms_document.xml","scraped_at":"2026-02-25T20:02:10.755118Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_gcms:calibration::1.0","title":"Huygens Gas Chromatograph and Mass Spectrometer Pre Launch Calibration Collection","description":"Pre Launch Calibration collection for the Huygens GCMS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["GCMS"],"instrument_hosts":["Huygens Probe"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/PRELAUNCH_CALIBRATION/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/PRELAUNCH_CALIBRATION/collection_hpgcms_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/PRELAUNCH_CALIBRATION/collection_hpgcms_calibration.xml","scraped_at":"2026-02-25T20:02:10.755122Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_gcms:data_raw::1.0","title":"Huygens Gas Chromatograph and Mass Spectrometer (GCMS) data collection file","description":"HPGCMS data collection for the Huygens GCMS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["GCMS"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DATA/collection_hpgcms_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DATA/collection_hpgcms_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755126Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_hasi:calibration::1.0","title":"Huygens Atmosphere Structure Instrument ACC Calibration Collection","description":"ACC calibration collection for the Huygens HASI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["HASI"],"instrument_hosts":["Huygens Probe"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/CALIB/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/CALIB/collection_hphasi_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/CALIB/collection_hphasi_calibration.xml","scraped_at":"2026-02-25T20:02:10.755129Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_hasi:data_raw::1.0","title":"Huygens Atmosphere Structure Instrument (HASI) data_hphasi_acc collection file","description":"Huygens Probe ACC data collection for the Huygens HASI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["HASI"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DATA/collection_hphasi_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DATA/collection_hphasi_data.xml","scraped_at":"2026-02-25T20:02:10.755132Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_hasi:document::1.0","title":"Huygens Atmosphere Structure Instrument Document Collection","description":"Document collection for the Huygens HASI PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["HASI"],"instrument_hosts":["Huygens Probe"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DOCUMENT/collection_hphasi_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DOCUMENT/collection_hphasi_document.xml","scraped_at":"2026-02-25T20:02:10.755136Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_hk:calibration::1.0","title":"Huygens Probe Housekeeping (HK) for HP Calibration Collection","description":"Calibration collection for the Huygens HK PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["HK"],"instrument_hosts":["Huygens Probe"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/CALIB/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/CALIB/collection_hphk_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/CALIB/collection_hphk_calibration.xml","scraped_at":"2026-02-25T20:02:10.755139Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_hk:data_raw::1.0","title":"Huygens Probe Housekeeping (HK) for HP data_hphk_spinrate collection file","description":"Huygens Probe Spin Rate data collection for the Huygens HK PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["HK"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DATA/collection_hphk_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DATA/collection_hphk_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755142Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_hk:document::1.0","title":"Huygens Housekeeping (HK) for HP Document Collection","description":"Document collection for the Huygens HK for HP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["HK"],"instrument_hosts":["Huygens Probe"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DOCUMENT/collection_hphk_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DOCUMENT/collection_hphk_document.xml","scraped_at":"2026-02-25T20:02:10.755146Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_ssp:calibration::1.0","title":"Surface Science Package (SSP) for HP Calibration Collection","description":"Calibration collection for the Huygens SSP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["SSP"],"instrument_hosts":["Huygens Probe"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/CALIB/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/CALIB/collection_hpssp_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/CALIB/collection_hpssp_calibration.xml","scraped_at":"2026-02-25T20:02:10.755150Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_ssp:data_raw::1.0","title":"Huygens Surface Science Package (SSP) for HP data_hpssp_raw_acce collection file","description":"Huygens Probe RAW ACCE data collection for the Huygens SSP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["SSP"],"instrument_hosts":["Huygens Probe"],"data_types":["Data"],"start_date":"2005-01-14","stop_date":"2005-01-14","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DATA/collection_hpssp_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DATA/collection_hpssp_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755154Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hp_ssp:document::1.0","title":"Surface Science Package (SSP) for HP Document Collection","description":"Document collection for the Huygens SSP for HP PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Huygens Probe"],"targets":["Titan"],"instruments":["SSP"],"instrument_hosts":["Huygens Probe"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DOCUMENT/collection_hpssp_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DOCUMENT/collection_hpssp_document.xml","scraped_at":"2026-02-25T20:02:10.755157Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens:context::1.1","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/collection_context_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/collection_context_corss_occul_el_dens.xml","scraped_at":"2026-02-25T20:02:10.755162Z","keywords":["Cassini Orbiter","RSS","Satura","radio occultationn"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens:data_derived::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Derived Data Collection","description":"Derived data products from Cassini radio occultations at Titan. Derived data products include: (A) time series of the frequency of the radio signal received at Earth during an occultation; (B) individual electron density profiles from occultations; (C) average electron density profiles from occultations; and (D) summary of average electron density profiles.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/collection_corss_occul_el_dens_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/collection_corss_occul_el_dens_data_derived.xml","scraped_at":"2026-02-25T20:02:10.755167Z","keywords":["radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens:document::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Document Collection","description":"Documentation for derived data products from Cassini radio occultations at Titan. Derived data products include: (A) time series of the frequency of the radio signal received at Earth during an occultation; (B) individual electron density profiles from occultations; (C) average electron density profiles from occultations; and (D) summary of average electron density profiles.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2005-05-03","stop_date":"2016-06-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/document/collection_corss_occul_el_dens_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/document/collection_corss_occul_el_dens_document.xml","scraped_at":"2026-02-25T20:02:10.755173Z","keywords":["radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:corss_occul_el_dens:xml_schema::1.0","title":"Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Schema Collection","description":"PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini"],"targets":["Titan"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/collection_schema_corss_occul_el_dens.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/collection_schema_corss_occul_el_dens.xml","scraped_at":"2026-02-25T20:02:10.755178Z","keywords":["Cassini Orbiter","RSS","Saturn","radio occultation"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:context::8.0","title":"Mars 2020 MOXIE Context Collection","description":"Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Context"],"start_date":"2021-02-22","stop_date":"2023-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml","scraped_at":"2026-02-25T20:02:10.755184Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_derived::8.0","title":"Mars 2020 MOXIE Derived Data Collection","description":"Mars 2020 MOXIE Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2023-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml","scraped_at":"2026-02-25T20:02:10.755188Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:xml_schema::1.0","title":"MOXIE XML Schema Collection","description":"Collection of schemas and schematron files used in this archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/xml_schema/collection_moxie_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/xml_schema/collection_moxie_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755192Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_calibrated::8.0","title":"Mars 2020 MOXIE Calibrated Data Collection","description":"Mars 2020 MOXIE Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2023-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.755197Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:document::8.0","title":"Mars 2020 MOXIE Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":"2021-02-22","stop_date":"2023-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml","scraped_at":"2026-02-25T20:02:10.755202Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_moxie:data_raw::8.0","title":"Mars 2020 MOXIE Raw Data Collection","description":"Mars 2020 MOXIE Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Oxygen In-Situ Resource Utilization Experiment"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2023-09-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755206Z","keywords":["Mars","oxygen","carbon dioxide"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_raw_env::9.0","title":"Mars 2020 MEDA Environmental Raw Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-01-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml","scraped_at":"2026-02-25T20:02:10.755211Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_calibrated_env::9.0","title":"Mars 2020 MEDA Environmental Calibrated Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-01-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml","scraped_at":"2026-02-25T20:02:10.755216Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_partially_processed_env::9.0","title":"Mars 2020 MEDA Environmental Partially Processed Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Partially Processed Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-01-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml","scraped_at":"2026-02-25T20:02:10.755220Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:document::9.0","title":"Mars 2020 MEDA Document Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) collection of DOCUMENT products","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.755225Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_derived_env::9.0","title":"Mars 2020 MEDA Environmental Derived Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-01-02","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml","scraped_at":"2026-02-25T20:02:10.755231Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_lidar:context::1.0","title":"PDS4 Phoenix LIDAR context Collection","description":"The original PHX Lidar dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["Mars"],"instruments":["Lidar"],"instrument_hosts":["Phoenix"],"data_types":["Context"],"start_date":"2008-05-28","stop_date":"2008-06-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/context/collection_lidar_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/context/collection_lidar_context.xml","scraped_at":"2026-02-25T20:02:10.755235Z","keywords":["Phoenix","Meterology","Lidar","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_lidar:raw::1.0","title":"PDS4 Phoenix LIDAR raw data Collection","description":"The original PHX Lidar dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["Mars"],"instruments":["Lidar"],"instrument_hosts":["Phoenix"],"data_types":["Data"],"start_date":"2008-05-28","stop_date":"2008-06-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_raw/collection_lidar_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_raw/collection_lidar_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755240Z","keywords":["Phoenix","Meterology","Lidar","Mars"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_lidar:reduced::1.0","title":"PDS4 Phoenix LIDAR reduced data Collection","description":"The original PHX Lidar dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["Mars"],"instruments":["Lidar"],"instrument_hosts":["Phoenix"],"data_types":["Data"],"start_date":"2008-05-28","stop_date":"2008-06-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_reduced/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_reduced/collection_lidar_data_reduced.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_reduced/collection_lidar_data_reduced.xml","scraped_at":"2026-02-25T20:02:10.755244Z","keywords":["Phoenix","Meterology","Lidar","Mars"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_lidar:document::1.0","title":"PDS4 Phoenix LIDAR Document Collection","description":"The original PHX Lidar dataset was submitted in 2008 by Cameron Dickinon","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":["Mars"],"instruments":["Lidar"],"instrument_hosts":["Phoenix"],"data_types":["Document"],"start_date":"2008-05-28","stop_date":"2008-06-24","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/document/collection_lidar_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/document/collection_lidar_document.xml","scraped_at":"2026-02-25T20:02:10.755249Z","keywords":["Phoenix","Meterology","Lidar","Mars"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:phx_lidar:xml_schema::1.0","title":"PDS4 Phoenix xml_schema Collection","description":"This PDS4 xml_schema_collection file was submitted in 2013","node":"atm","pds_version":"PDS4","type":"collection","missions":["Phoenix"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755253Z","keywords":["Lidar","Phoenix","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library:document::1.0","title":"Cassini UVIS Titan Library Document collection file","description":"Document collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/document/collection_cassini-uvis_titan-library_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/document/collection_cassini-uvis_titan-library_document.xml","scraped_at":"2026-02-25T20:02:10.755257Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library:xml_schema::1.0","title":"Cassini UVIS Titan Library XML Schema collection file","description":"XML Schema collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/collection_cassini-uvis_titan-library_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/collection_cassini-uvis_titan-library_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755260Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library:context::1.0","title":"Cassini UVIS Titan Library Context collection file","description":"Context collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/collection_cassini-uvis_titan-library_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/collection_cassini-uvis_titan-library_context.xml","scraped_at":"2026-02-25T20:02:10.755264Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini-uvis_titan-library:data_derived::1.0","title":"Cassini UVIS Titan Library Derived Data collection file","description":"Data collection for the Cassini UVIS Titan Library bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Titan"],"instruments":["UVIS"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2018-01-01","stop_date":"2018-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/collection_cassini-uvis_titan-library_data.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/collection_cassini-uvis_titan-library_data.xml","scraped_at":"2026-02-25T20:02:10.755268Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_mission:context::2.0","title":"LADEE Mission Context Collection","description":"This is the context collection for the LADEE Mission bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon","Dust"],"instruments":["LDEX","UVS","NMS"],"instrument_hosts":["LADEE"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/collection_mission_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/collection_mission_context.xml","scraped_at":"2026-02-25T20:02:10.755272Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_mission:document::2.0","title":"PDS4 LADEE Mission Document Collection","description":"LADEE Mission Document Collection created by ATMOS in 2014","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon","Dust"],"instruments":["UVS","NMS","LDEX"],"instrument_hosts":["LADEE"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/collection_mission_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/collection_mission_document.xml","scraped_at":"2026-02-25T20:02:10.755277Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_mission:xml_schema::2.0","title":"Lunar Atmosphere and Dust Environment Explorer (LADEE) XML Schema Collection","description":"Lunar Atmosphere and Dust Environment Explorer (LADEE) XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon","Dust"],"instruments":["LDEX","UVS","NMS"],"instrument_hosts":["LADEE"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/collection_mission_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/collection_mission_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755280Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_ldex:context::2.0","title":"context collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle","description":"This is the context collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Dust","Moon"],"instruments":["LUNAR DUST EXPERIMENT"],"instrument_hosts":["LADEE"],"data_types":["Context"],"start_date":"2013-10-24","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/context/collection_ldex_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/context/collection_ldex_context.xml","scraped_at":"2026-02-25T20:02:10.755284Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_ldex:data_calibrated::2.0","title":"data_calibrated collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle","description":"This is the data_calibrated collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Dust","Moon"],"instruments":["LUNAR DUST EXPERIMENT"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":"2013-10-24","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_calibrated/collection_ldex_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_calibrated/collection_ldex_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.755288Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_ldex:data_derived::2.0","title":"data_derived collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle","description":"This is the data_derived collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Dust","Moon"],"instruments":["LUNAR DUST EXPERIMENT"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":"2013-10-24","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_derived/collection_ldex_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_derived/collection_ldex_data_derived.xml","scraped_at":"2026-02-25T20:02:10.755292Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_ldex:data_housekeeping::2.0","title":"data_housekeeping collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle","description":"This is the data_housekeeping collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Dust","Moon"],"instruments":["LUNAR DUST EXPERIMENT"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":"2013-10-24","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_housekeeping/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_housekeeping/collection_ldex_data_housekeeping.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_housekeeping/collection_ldex_data_housekeeping.xml","scraped_at":"2026-02-25T20:02:10.755297Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_ldex:data_reduced::2.0","title":"data_reduced collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle","description":"This is the data_reduced collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Dust","Moon"],"instruments":["LUNAR DUST EXPERIMENT"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":"2013-10-24","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_reduced/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_reduced/collection_ldex_data_reduced.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_reduced/collection_ldex_data_reduced.xml","scraped_at":"2026-02-25T20:02:10.755300Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_ldex:document::2.0","title":"document collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle","description":"This is the document collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Dust","Moon"],"instruments":["LUNAR DUST EXPERIMENT"],"instrument_hosts":["LADEE"],"data_types":["Document"],"start_date":"2013-10-24","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/document/collection_ldex_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/document/collection_ldex_document.xml","scraped_at":"2026-02-25T20:02:10.755305Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_ldex:xml_schema::2.0","title":"XML Schema Collection","description":"This is the xml_schema collection that is intended to hold all XML schema files used in the creation of this bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/xml_schema/collection_ldex_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/xml_schema/collection_ldex_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755308Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_mwr:data_raw::2.0","title":"Juno MWR Raw Data collection file","description":"Raw data collection for the Juno MWR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["MWR"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2011-08-24","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/data_raw/collection_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755312Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_mwr:data_ancillary::1.0","title":"Juno MWR Ancillary Data collection file","description":"Ancillary data collection for the Juno MWR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["MWR"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2011-08-25","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/ANCILLARY/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/ANCILLARY/collection_data_ancillary.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/ANCILLARY/collection_data_ancillary.xml","scraped_at":"2026-02-25T20:02:10.755316Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_mwr:context_collection::1.0","title":"Juno MWR Context collection file","description":"Context collection for the Juno MWR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["MWR"],"instrument_hosts":["Juno"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/Context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/Context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/Context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.755319Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_mwr:data_calibrated::2.1","title":"Juno MWR Calibrated Data collection file","description":"Calibrated data collection for the Juno MWR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["MWR"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2011-08-25","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DATA/collection_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DATA/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.755323Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_mwr:document::1.0","title":"Juno MWR Document collection file","description":"Document collection for the Juno MWR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["MWR"],"instrument_hosts":["Juno"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DOCUMENT/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DOCUMENT/collection_document.xml","scraped_at":"2026-02-25T20:02:10.755327Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_mwr:xml_schema_collection::1.0","title":"Juno MWR XML Schema collection file","description":"XML Schema collection for the Juno MWR PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["MWR"],"instrument_hosts":["Juno"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/XML_Schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/XML_Schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/XML_Schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755331Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel:context::1.0","title":"PDS4 MRO ACCEL Context Collection","description":"This PDS4 collection_mro_accel_context file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["MRO"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["MRO"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/collection_mro_accel_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/collection_mro_accel_context.xml","scraped_at":"2026-02-25T20:02:10.755762Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel:altitude::1.0","title":"PDS4 MRO accel altitude data Collection","description":"This PDS4 file was submitted in 2016","node":"atm","pds_version":"PDS4","type":"collection","missions":["MRO"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["MRO"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/ALTITUDE_DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/ALTITUDE_DATA/collection_mro_accel_data_altitude.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/ALTITUDE_DATA/collection_mro_accel_data_altitude.xml","scraped_at":"2026-02-25T20:02:10.755765Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel:profile::1.0","title":"PDS4 mro accel profile data Collection","description":"This PDS4 file was submitted in 2016","node":"atm","pds_version":"PDS4","type":"collection","missions":["mro"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["mro"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/PROFILE_DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/PROFILE_DATA/collection_mro_accel_data_profile.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/PROFILE_DATA/collection_mro_accel_data_profile.xml","scraped_at":"2026-02-25T20:02:10.755769Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel:raw::1.0","title":"PDS4 mro accel raw data Collection","description":"This PDS4 file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["mro"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["mro"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/RAW_DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/RAW_DATA/collection_mro_accel_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/RAW_DATA/collection_mro_accel_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755772Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel:document::1.0","title":"PDS4 MRO ACCEL Document Collection","description":"This PDS4 collection_mro_accel_document file was submitted in 2016","node":"atm","pds_version":"PDS4","type":"collection","missions":["MRO"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["MRO"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Document/collection_mro_accel_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Document/collection_mro_accel_document.xml","scraped_at":"2026-02-25T20:02:10.755775Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro_accel:xml_schema::1.0","title":"PDS4 MRO Accelerometer xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Reconnaissance Orbiter"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":"2006-04-02","stop_date":"2006-08-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755782Z","keywords":["Accelerometer","Mars Reconnaissance Orbiter","Mars","MRO ACCEL","MRO","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:context::1.0","title":"PDS4 ODYSSEY ACCELEROMETER Context Collection","description":"This PDS4 odya_context_collection file was submitted in 2014","node":"atm","pds_version":"PDS4","type":"collection","missions":["ODY"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["ODY"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/collection_odya_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/collection_odya_context.xml","scraped_at":"2026-02-25T20:02:10.755833Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:altitude::1.0","title":"PDS4 Mars Odyssey accelerometer altitude data Collection","description":"The original ODY Accelerometer data was submitted in 2007","node":"atm","pds_version":"PDS4","type":"collection","missions":["ODY"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["ODY"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ALTITUDE_DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ALTITUDE_DATA/collection_odya_data_altitude.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ALTITUDE_DATA/collection_odya_data_altitude.xml","scraped_at":"2026-02-25T20:02:10.755836Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:anc::1.0","title":"PDS4 ODYSSEY accelerometer anc data Collection","description":"The original ODY Accelerometer data was submitted in 2007","node":"atm","pds_version":"PDS4","type":"collection","missions":["ODYSSEY"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["ODY"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ANC/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ANC/collection_odya_data_anc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ANC/collection_odya_data_anc.xml","scraped_at":"2026-02-25T20:02:10.755840Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:calt::1.0","title":"PDS4 MARS ODYSSEY accelerometer calt data Collection","description":"The original ODY Accelerometer data was submitted in 2007","node":"atm","pds_version":"PDS4","type":"collection","missions":["ODYSSEY"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["ODY"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/CALT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/CALT/collection_odya_data_calt.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/CALT/collection_odya_data_calt.xml","scraped_at":"2026-02-25T20:02:10.755844Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:profile::1.0","title":"PDS4 ODY accel profile data Collection","description":"The original ODY Accelerometer data was submitted in 2007","node":"atm","pds_version":"PDS4","type":"collection","missions":["ODY"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["ODY"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/PROFILE_DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/PROFILE_DATA/collection_odya_data_profile.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/PROFILE_DATA/collection_odya_data_profile.xml","scraped_at":"2026-02-25T20:02:10.755847Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:raw::1.0","title":"PDS4 ODY accel raw data Collection","description":"The original ODY Accelerometer data was submitted in 2007","node":"atm","pds_version":"PDS4","type":"collection","missions":["ODY"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["ODY"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/RAW_DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/RAW_DATA/collection_odya_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/RAW_DATA/collection_odya_data_raw.xml","scraped_at":"2026-02-25T20:02:10.755851Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:document::1.0","title":"PDS4 ODYSSEY ACCEL Document Collection","description":"The original ODY Accelerometer data was submitted in 2007","node":"atm","pds_version":"PDS4","type":"collection","missions":["ODY"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["ODY"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Document/collection_odya_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Document/collection_odya_document.xml","scraped_at":"2026-02-25T20:02:10.755854Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ody_accel:xml_schema::1.0","title":"PDS4 Odyssey Accelerometer xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["2001 Mars Odyssey"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":"2006-04-02","stop_date":"2006-08-30","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755860Z","keywords":["Accelerometer","Mars Odyssey","Mars","ODY ACCEL","ODY","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_raw_env::10.0","title":"Mars 2020 MEDA Environmental Raw Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-05-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml","scraped_at":"2026-02-25T20:02:10.756066Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_calibrated_env::10.0","title":"Mars 2020 MEDA Environmental Calibrated Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-05-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml","scraped_at":"2026-02-25T20:02:10.756072Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_partially_processed_env::10.0","title":"Mars 2020 MEDA Environmental Partially Processed Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Partially Processed Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-05-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml","scraped_at":"2026-02-25T20:02:10.756076Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:document::10.0","title":"Mars 2020 MEDA Document Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) collection of DOCUMENT products","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.756081Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_derived_env::10.0","title":"Mars 2020 MEDA Environmental Derived Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-05-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml","scraped_at":"2026-02-25T20:02:10.756087Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db:context::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Context Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":["Context"],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/collection_mro-crism_atmos-db_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/collection_mro-crism_atmos-db_context.xml","scraped_at":"2026-02-25T20:02:10.756119Z","keywords":["atmosphere","Mars","MRO","CRISM"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db:data_derived::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Derived Data Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":["Data"],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/collection_mro-crism_atmos-db_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/collection_mro-crism_atmos-db_data_derived.xml","scraped_at":"2026-02-25T20:02:10.756124Z","keywords":["atmosphere","Mars","MRO","CRISM"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db:document::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM Document Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":["Document"],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/document/collection_mro-crism_atmos-db_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/document/collection_mro-crism_atmos-db_document.xml","scraped_at":"2026-02-25T20:02:10.756130Z","keywords":["atmosphere","Mars","MRO","CRISM"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mro-crism_atmos-db:xml_schema::1.0","title":"Atmospheric Retrievals for Mars Integrated from MRO-CRISM XML Schema Collection","description":"Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MARS RECONNAISSANCE ORBITER"],"targets":["Mars"],"instruments":["Compact Reconnaissance Imaging Spectrometer For Mars"],"instrument_hosts":["Mars Reconnaissance Orbiter"],"data_types":["XML Schema"],"start_date":"2006-01-01","stop_date":"2023-01-01","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/collection_mro-crism_atmos-db_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/collection_mro-crism_atmos-db_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.756136Z","keywords":["atmosphere","Mars","MRO","CRISM"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:data_raw::1.0","title":"Juno JIRAM Raw Data collection file","description":"Raw (lv.2) data collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/collection_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.756670Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:document::1.0","title":"Juno JIRAM Document collection file","description":"Document collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Juno"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.756673Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:xml_schema::1.0","title":"Juno JIRAM XML Schema collection file","description":"XML Schema collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Juno"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.756677Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:calibration::1.0","title":"Juno JIRAM Calibration collection file","description":"Calibration collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Juno"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/collection_calibration.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.756680Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:context::1.0","title":"Juno JIRAM Context collection file","description":"Context collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Juno"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.756684Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_jiram:data_calibrated::1.0","title":"Juno JIRAM Calibrated Data collection file","description":"Calibrated (lv. 3) data collection for the Juno JIRAM PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["JIRAM"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/collection_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.756687Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_raw_env::11.0","title":"Mars 2020 MEDA Environmental Raw Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml","scraped_at":"2026-02-25T20:02:10.757539Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_calibrated_env::11.0","title":"Mars 2020 MEDA Environmental Calibrated Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml","scraped_at":"2026-02-25T20:02:10.757544Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_partially_processed_env::11.0","title":"Mars 2020 MEDA Environmental Partially Processed Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Partially Processed Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml","scraped_at":"2026-02-25T20:02:10.757550Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:document::11.0","title":"Mars 2020 MEDA Document Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) collection of DOCUMENT products","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.757555Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:xml_schema::1.0","title":"Mars 2020 MEDA Schema Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/xml_schema/collection_meda_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/xml_schema/collection_meda_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.757560Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:browse_skycam::1.0","title":"Collection of browse products: PDS4 Mars 2020 Perseverance Rover Mars Environmental Dynamics Analyzer (MEDA) Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of BROWSE products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mars Environmental Dynamics Analyzer (MEDA)"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/browse_skycam/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/browse_skycam/collection_browse_skycam.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/browse_skycam/collection_browse_skycam.xml","scraped_at":"2026-02-25T20:02:10.757566Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_derived_env::11.0","title":"Mars 2020 MEDA Environmental Derived Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Derived Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2024-09-03","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml","scraped_at":"2026-02-25T20:02:10.757571Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_skycam::1.0","title":"Collection of data products: PDS4 Mars 2020 Perseverance Rover Mars Environmental Dynamics Analyzer (MEDA) Skycam Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of DATA products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mars Environmental Dynamics Analyzer (MEDA)"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2024-05-04","stop_date":"2024-09-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_skycam/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_skycam/collection_data_skycam.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_skycam/collection_data_skycam.xml","scraped_at":"2026-02-25T20:02:10.757576Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel:context::1.0","title":"PDS4 MGS ACCEL Context Collection","description":"This PDS4 mgs_accel_context_collection file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["MGS"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/collection_mgs_accel_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/collection_mgs_accel_context.xml","scraped_at":"2026-02-25T20:02:10.757580Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel:altitude::1.0","title":"PDS4 mgs accel altitude data Collection","description":"This PDS4 file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["mgs"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["mgs"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/ALTITUDE/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/ALTITUDE/collection_mgs_accel_data_altitude.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/ALTITUDE/collection_mgs_accel_data_altitude.xml","scraped_at":"2026-02-25T20:02:10.757583Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel:profile::1.0","title":"PDS4 mgs accel profile data Collection","description":"This PDS4 file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["mgs"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["mgs"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/PROFILE/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/PROFILE/collection_mgs_accel_data_profile.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/PROFILE/collection_mgs_accel_data_profile.xml","scraped_at":"2026-02-25T20:02:10.757587Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel:raw::1.0","title":"PDS4 mgs accel raw data Collection","description":"This PDS4 file was submitted in 2015","node":"atm","pds_version":"PDS4","type":"collection","missions":["mgs"],"targets":["MARS"],"instruments":["ACCEL"],"instrument_hosts":["mgs"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/RAW/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/RAW/collection_mgs_accel_data_raw.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/RAW/collection_mgs_accel_data_raw.xml","scraped_at":"2026-02-25T20:02:10.757590Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel:document::1.0","title":"PDS4 MGS ACCEL Document Collection","description":"The PDS4 mgs_accel document collection was created in 2015.","node":"atm","pds_version":"PDS4","type":"collection","missions":["MGS"],"targets":["Mars"],"instruments":["ACCEL"],"instrument_hosts":["MGS"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/document/collection_mgs_accel_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/document/collection_mgs_accel_document.xml","scraped_at":"2026-02-25T20:02:10.757594Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mgs_accel:xml_schema::1.0","title":"PDS4 MGS ACCEL xml_schema Collection","description":"This PDS4 xml_schema_collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars Global Surveyor"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":"1997-11-13","stop_date":"1999-02-04","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.757599Z","keywords":["Accelerometer","Mars Global Surveyor","Mars","MGS ACCEL","XML Schema"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_lir::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Infrared Radiometer Data Collection","description":"This collection contains atmospheric data from the Infrared Radiometer on board the Pioneer Venus Large Probe during pre-entry and descent to the surface of Venus. This collection also includes onboard calibration data. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE INFRARED RADIOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":["Data"],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/collection_data_lir.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/collection_data_lir.xml","scraped_at":"2026-02-25T20:02:10.757817Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_oad::1.0","title":"Pioneer Venus Special Events Data (SED) - Orbiter Atmospheric Drag Observations and Model Data Collection","description":"This collection contains one file of observations acquired by the Atmospheric Drag Experiment during orbits 5-246 (1978-12-09 to 1979-08-07) of the Pioneer Venus Orbiter and one file of output from the Pioneer Venus Drag Atmospheric Model. The observational data include altitude, density, scale height, exospheric temperature, local solar time, and Venus longitude. The model data include local solar time, altitude, density, number density of atomic oxygen, ratio of number densities of O/CO2, and temperature. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS"],"instrument_hosts":["PIONEER VENUS ORBITER"],"data_types":["Data"],"start_date":"1978-12-09","stop_date":"1979-08-07","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/collection_data_oad.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/collection_data_oad.xml","scraped_at":"2026-02-25T20:02:10.757821Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_lsfr::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Solar Flux Radiometer Data Collection","description":"This collection contains lower atmospheric solar down, up, and net flux data from the Solar Flux Radiometer on board the Pioneer Venus Large Probe during descent to the surface of Venus. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":["Data"],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/collection_data_lsfr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/collection_data_lsfr.xml","scraped_at":"2026-02-25T20:02:10.757824Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:context::1.0","title":"Pioneer Venus Special Events Data (SED) - Context Collection","description":"PDS4 context collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/collection_context_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/collection_context_pv_sed.xml","scraped_at":"2026-02-25T20:02:10.757831Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_snfr::1.0","title":"Pioneer Venus Special Events Data (SED) - Small Probes Net Flux Radiometers Data Collection","description":"This collection contains lower atmospheric data (66-13 km) from the Net Flux Radiometers on board the Pioneer Venus Small Day, Night, and North Probes during descent to the surface of Venus. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER"],"instrument_hosts":["PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":["Data"],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/collection_data_snfr.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/collection_data_snfr.xml","scraped_at":"2026-02-25T20:02:10.757836Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:document::1.0","title":"Pioneer Venus Special Events Data (SED) - Document Collection","description":"This collection contains documentation for the Pioneer Venus Special Events Data (SED) extracted from NSSDCA dataset PSPA-00034 and reformatted as ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":["Document"],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.757843Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_opa::1.0","title":"Pioneer Venus Special Events Data (SED) - Orbiter Solar Wind Plasma Analyzer Data Collection","description":"This collection contains reduced solar wind flow speed and proton number density observed by the Solar Wind Plasma Analyzer just before the (first) inbound crossing of the bow shock of Venus, and the same quantities just after the (last) outbound crossing by the Pioneer Venus Orbiter. This collection also contains one file of 9-minute solar wind proton bulk velocities while the orbiter was outside bow shock and before beginning inbound proton measurements during orbit 7 on 1978-12-11. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS"],"instrument_hosts":["PIONEER VENUS ORBITER"],"data_types":["Data"],"start_date":"1978-12-05","stop_date":"1981-10-21","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/collection_data_opa.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/collection_data_opa.xml","scraped_at":"2026-02-25T20:02:10.757847Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_neph::1.0","title":"Pioneer Venus Special Events Data (SED) - Multiprobes Nephelometer Data Collection","description":"This collection contains nephelometer data from each of the four Pioneer Venus atmospheric probes. The data include: 1) backscatter channel data; 2) ambient background radiation channels and spectral functions; and 3) time vs. temperature. These data were extracted from NSSDCA data set PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":["Data"],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/collection_data_neph.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/collection_data_neph.xml","scraped_at":"2026-02-25T20:02:10.757852Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_atm_struct::1.0","title":"Pioneer Venus Special Events Data (SED) - Multiprobes Atmospheric Structure Data Collection","description":"This collection contains middle and low atmospheric state properties from observations performed by the Atmospheric Structure Experiments on board the Pioneer Venus Large Probe and the Small Day, Night, and North Probes during entry and descent to the surface of Venus. Small Probe data from middle altitude observations include trajectory parameters. This collection also includes a Night Probe data file that extends the state properties to higher altitudes. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":["Data"],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/collection_data_atm_struct.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/collection_data_atm_struct.xml","scraped_at":"2026-02-25T20:02:10.757858Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:xml_schema::1.0","title":"Pioneer Venus Special Events Data (SED) - Schema Collection","description":"PDS4 xml_schema collection file","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS","SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS","PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT","PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH","PIONEER VENUS LARGE PROBE INFRARED RADIOMETER","PIONEER VENUS LARGE PROBE NEPHELOMETER","PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER","PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT","PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER","PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"],"instrument_hosts":["PIONEER VENUS ORBITER","PIONEER VENUS LARGE PROBE","PIONEER VENUS SMALL PROBE (DAY)","PIONEER VENUS SMALL PROBE (NIGHT)","PIONEER VENUS SMALL PROBE (NORTH)"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/collection_schema_pv_sed.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/collection_schema_pv_sed.xml","scraped_at":"2026-02-25T20:02:10.757864Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:pv_sed:data_lgc::1.0","title":"Pioneer Venus Special Events Data (SED) - Large Probe Gas Chromatograph Data Collection","description":"This collection contains atmospheric composition data from the Gas Chromatograph on board the Pioneer Venus Large Probe during descent to the surface of Venus. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.","node":"atm","pds_version":"PDS4","type":"collection","missions":["PIONEER VENUS"],"targets":["Venus"],"instruments":["PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH"],"instrument_hosts":["PIONEER VENUS LARGE PROBE"],"data_types":["Data"],"start_date":"1978-12-09","stop_date":"1978-12-09","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/collection_data_lgc.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/collection_data_lgc.xml","scraped_at":"2026-02-25T20:02:10.757868Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:context::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Context Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Context"],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/collection_co-rss_slepian-grav-coeff_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/collection_co-rss_slepian-grav-coeff_context.xml","scraped_at":"2026-02-25T20:02:10.758825Z","keywords":["Saturn","gravity"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:data_derived::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Derived Data Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/collection_co-rss_slepian-grav-coeff_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/collection_co-rss_slepian-grav-coeff_data_derived.xml","scraped_at":"2026-02-25T20:02:10.758829Z","keywords":["Saturn","gravity"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:document::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Document Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/document/collection_co-rss_slepian-grav-coeff_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/document/collection_co-rss_slepian-grav-coeff_document.xml","scraped_at":"2026-02-25T20:02:10.758833Z","keywords":["Saturn","gravity"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:co-rss_slepian-grav-coeff:xml_schema::1.0","title":"Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions XML Schema Collection","description":"Saturn gravity coefficients derived from Cassini Radio Science data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["Cassini Orbiter"],"data_types":["XML Schema"],"start_date":"2022-06-14","stop_date":"2024-09-29","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/collection_co-rss_slepian-grav-coeff_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/collection_co-rss_slepian-grav-coeff_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.758838Z","keywords":["Saturn","gravity"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_raw_env::12.0","title":"Mars 2020 MEDA Environmental Raw Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Raw Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2025-01-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml","scraped_at":"2026-02-25T20:02:10.758847Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:data_calibrated_env::12.0","title":"Mars 2020 MEDA Environmental Calibrated Data Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Calibrated Data Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2025-01-06","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml","scraped_at":"2026-02-25T20:02:10.758852Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_meda:document::12.0","title":"Mars 2020 MEDA Document Collection","description":"Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) collection of DOCUMENT products","node":"atm","pds_version":"PDS4","type":"collection","missions":["Mars 2020"],"targets":["Mars"],"instruments":["Mars Environmental Dynamics Analyzer"],"instrument_hosts":["Mars 2020"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758856Z","keywords":["Mars","weather","meteorology","environment"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:calib.amc::1.0","title":"Juno Gravity AMC Calibration collection file","description":"AMC Calibration collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/AMC/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/AMC/calib_amc_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/AMC/calib_amc_collection.xml","scraped_at":"2026-02-25T20:02:10.758860Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:calib.eop::1.0","title":"Juno Gravity EOP Calibration collection file","description":"EOP Calibration collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/EOP/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/EOP/calib_eop_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/EOP/calib_eop_collection.xml","scraped_at":"2026-02-25T20:02:10.758864Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:calib.ion::1.0","title":"Juno Gravity ION Calibration collection file","description":"ION Calibration collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/ION/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/ION/calib_ion_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/ION/calib_ion_collection.xml","scraped_at":"2026-02-25T20:02:10.758867Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:calib.sff::1.0","title":"Juno Gravity SFF Calibration collection file","description":"SFF Calibration collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/SFF/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/SFF/calib_sff_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/SFF/calib_sff_collection.xml","scraped_at":"2026-02-25T20:02:10.758870Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:calib.tro::1.0","title":"Juno Gravity TRO Calibration collection file","description":"TRO Calibration collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/TRO/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/TRO/calib_tro_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/TRO/calib_tro_collection.xml","scraped_at":"2026-02-25T20:02:10.758874Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:calib.wea::1.0","title":"Juno Gravity WEA Calibration collection file","description":"WEA Calibration collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/WEA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/WEA/calib_wea_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/WEA/calib_wea_collection.xml","scraped_at":"2026-02-25T20:02:10.758878Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:data.odf::1.0","title":"Juno Gravity ODF Data collection file","description":"ODF data collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/ODF/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/ODF/data_odf_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/ODF/data_odf_collection.xml","scraped_at":"2026-02-25T20:02:10.758882Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:data.rsr::1.0","title":"Juno Gravity RSR Data collection file","description":"RSR data collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/RSR/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/RSR/data_rsr_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/RSR/data_rsr_collection.xml","scraped_at":"2026-02-25T20:02:10.758885Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:data.tnf::1.0","title":"Juno Gravity TNF Data collection file","description":"TNF data collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["Radio Science"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2016-07-10","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/TNF/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/TNF/data_tnf_collection.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/TNF/data_tnf_collection.xml","scraped_at":"2026-02-25T20:02:10.758888Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:document::1.0","title":"Juno Gravity Document collection file","description":"Document collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["RSS"],"instrument_hosts":["Juno"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DOCUMENT/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DOCUMENT/collection_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DOCUMENT/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758891Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:context_collection::1.0","title":"Juno Gravity Context collection file","description":"Context collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/context/collection_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.758894Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:jno.rss.raw.jugr:xml_schema_collection::1.0","title":"Juno Gravity XML Schema collection file","description":"XML Schema collection for the Juno Gravity PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["RSS"],"instrument_hosts":["Juno"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/xml_schema/collection_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.758897Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dd_nnss-nv:data_derived::1.0","title":"Seven years of convective vortex recordings in the Mojave desert Derived Data Collection","description":"Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion microbarometers","node":"atm","pds_version":"PDS4","type":"collection","missions":["Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"],"targets":["Earth"],"instruments":["Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)","Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2012-07-13","stop_date":"2019-12-22","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/collection_dd_nnss-nv_data_derived.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/collection_dd_nnss-nv_data_derived.xml","scraped_at":"2026-02-25T20:02:10.758963Z","keywords":["dust devil","field campaign"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:juno_uvs:data_calibrated::1.0","title":"Juno UVS Calibrated Data collection file","description":"Calibrated (lv. 3) data collection for the Juno UVS PDS4 bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["Juno"],"targets":["Jupiter"],"instruments":["UVS"],"instrument_hosts":["Juno"],"data_types":["Data"],"start_date":"2012-10-24","stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnouvs_3001/DATA/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnouvs_3001/DATA/collection_data_calibrated.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/jnouvs_3001/DATA/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.759009Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:calib::2.0","title":"NMS Calibration Data Collection","description":"Raw data acquired during LADEE NMS pre-launch Integration and Testing, used to define the calibration techniques for flight data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":"2011-10-28","stop_date":"2013-05-17","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/collection_nms_calibration_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/collection_nms_calibration_inventory.xml","scraped_at":"2026-02-25T20:02:10.759020Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:context::2.0","title":"LADEE NMS Context Collection","description":"Collection of context products for the NMS data (e.g., the LADEE mission and spacecraft, the NMS instrument).","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/collection_nms_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/collection_nms_context.xml","scraped_at":"2026-02-25T20:02:10.759023Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:data_calibrated::2.0","title":"NMS Calibrated Data Collection","description":"Data acquired from the NMS instrument during its primary mission, with corrections and interpretations applied.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":"2013-09-14","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/collection_nms_data_calibrated_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/collection_nms_data_calibrated_inventory.xml","scraped_at":"2026-02-25T20:02:10.759027Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:data_derived::2.0","title":"NMS Derived Data Collection","description":"Data acquired from the NMS instrument during its primary mission, resampled for Argon, Helium and Neon abundances.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":"2013-09-14","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/collection_nms_data_derived_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/collection_nms_data_derived_inventory.xml","scraped_at":"2026-02-25T20:02:10.759030Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:data_raw::2.0","title":"NMS Raw Data Collection","description":"Raw data acquired from the NMS instrument during its primary mission. No calibrations, corrections, or interpretations are applied.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Data"],"start_date":"2013-09-14","stop_date":"2014-04-18","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/collection_nms_data_raw_inventory.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/collection_nms_data_raw_inventory.xml","scraped_at":"2026-02-25T20:02:10.759034Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:document::2.0","title":"LADEE NMS Document Collection","description":"Collection of documents related to the meaning, structure, and interpretation of data found within the LADEE NMS bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/collection_nms_document.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/collection_nms_document.xml","scraped_at":"2026-02-25T20:02:10.759045Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ladee_nms:xml_schema::2.0","title":"NMS XML Schema Collection","description":"Collection of schemas and schematron files used in this archive.","node":"atm","pds_version":"PDS4","type":"collection","missions":["LADEE"],"targets":["Moon"],"instruments":["NMS"],"instrument_hosts":["LADEE"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/collection_nms_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/collection_nms_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.759048Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_derived::1.0","title":"collection_PITMS_DER_INVENTORY","description":"This collection contains all the PITMS derived data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Data"],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/collection_PITMS_DER_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/collection_PITMS_DER_INVENTORY.xml","scraped_at":"2026-02-25T20:02:10.759052Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:context::1.0","title":"collection PITMS Context","description":"Context Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/collection_pitms_context.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/collection_pitms_context.xml","scraped_at":"2026-02-25T20:02:10.759056Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:xml_schema::1.0","title":"collection PITMS XML Schema","description":"XML Schema Collection","node":"atm","pds_version":"PDS4","type":"collection","missions":["CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/collection_pitms_xml_schema.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/collection_pitms_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.759059Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_calibrated::1.0","title":"collection_PITMS_CAL_INVENTORY","description":"This collection contains all the PITMS calibrated data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Data"],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/collection_PITMS_CAL_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/collection_PITMS_CAL_INVENTORY.xml","scraped_at":"2026-02-25T20:02:10.759063Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:data_raw::1.0","title":"collection_PITMS_RAW_INVENTORY","description":"This collection contains all the PITMS raw data.","node":"atm","pds_version":"PDS4","type":"collection","missions":["CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Data"],"start_date":"2024-01-09","stop_date":"2024-01-15","browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/collection_PITMS_RAW_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/collection_PITMS_RAW_INVENTORY.xml","scraped_at":"2026-02-25T20:02:10.759086Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clps_to_2ab_pll.pitms:document::1.0","title":"collection_PITMS_DOC_INVENTORY","description":"Document on the meaning, structure, and interpretation of data found within the PITMS bundle.","node":"atm","pds_version":"PDS4","type":"collection","missions":["CLPS Task Order 2 AB"],"targets":["Moon"],"instruments":["PITMS"],"instrument_hosts":["CLPS Task Order 2 AB Peregrine Lunar Lander"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/document/","download_url":null,"label_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/document/collection_PITMS_DOC_INVENTORY.xml","source_url":"https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/document/collection_PITMS_DOC_INVENTORY.xml","scraped_at":"2026-02-25T20:02:10.759090Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra::1.1", "title": "Laboratory Study of Hydrocarbon IR Spectra Bundle", "description": null, "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Bruker IFS 125HR Fourier Transform Spectrometer", "Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": [], "start_date": "2017-01-01", "stop_date": "2021-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml", "scraped_at": "2026-02-25T20:02:10.736633Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie::1.1", "title": "Mars 2020 MOXIE Bundle", "description": "Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": [], "start_date": "2021-02-22", "stop_date": "2021-08-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "scraped_at": "2026-02-25T20:02:10.736798Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:eldorado_nv_dd_ptv::1.0", "title": "Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015", "description": "Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Dust Devil Field Observation Campaign"], "targets": ["Earth"], "instruments": ["Lorenz Meteorology Station Data Logger"], "instrument_hosts": [], "data_types": [], "start_date": "2012-05-21", "stop_date": "2013-09-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/bundle_eldorado_nv_dd_ptv.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/bundle_eldorado_nv_dd_ptv.xml", "scraped_at": "2026-02-25T20:02:10.736808Z", "keywords": ["dust devil", "field campaign"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_edl::1.0", "title": "InSight EDL Bundle", "description": "This PDS4 bundle contains the InSight EDL atmospheric reconstruction", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["EDL"], "instrument_hosts": ["InSight"], "data_types": [], "start_date": "2018-11-26", "stop_date": "2018-11-26", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/bundle_insightedl.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/bundle_insightedl.xml", "scraped_at": "2026-02-25T20:02:10.736817Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mcmath-pierce_mercury::1.0", "title": "KPNO McMath-Pierce Solar Telescope Observations of Mercury Bundle", "description": "McMath-Pierce Solar Telescope spectral characterization of Mercury", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["McMath-Pierce Solar Telescope Spectra of Mercury"], "targets": ["Mercury"], "instruments": ["McMath-Pierce Solar Telescope Main 1.61-m Reflector", "Vacuum Spectrograph at McMath-Pierce"], "instrument_hosts": ["McMath-Pierce Solar Telescope Facility"], "data_types": [], "start_date": "2011-01-08", "stop_date": "2013-04-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/bundle_mcmath-pierce_mercury.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/bundle_mcmath-pierce_mercury.xml", "scraped_at": "2026-02-25T20:02:10.736824Z", "keywords": ["McMath-Pierce Solar Telescope", "spectra", "Mercury"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mpf_mpim::1.0", "title": "IMP Opacities Bundle", "description": "Derived opacities from Mars Pathfinder", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Pathfinder"], "targets": ["Mars"], "instruments": ["mpim"], "instrument_hosts": ["Pathfinder"], "data_types": [], "start_date": "1997-07-04", "stop_date": "1997-07-17", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/bundle_lemmon.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/bundle_lemmon.xml", "scraped_at": "2026-02-25T20:02:10.736828Z", "keywords": ["opacities"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msledl::1.1", "title": "MSLEDL Bundle", "description": "This PDS4 file contains the MSL EDL atmospheric reconstruction", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars Science Laboratory"], "targets": ["Mars"], "instruments": ["Accelerometer"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": [], "start_date": "2012-08-06", "stop_date": "2012-08-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/bundle_msledl.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/bundle_msledl.xml", "scraped_at": "2026-02-25T20:02:10.736833Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_saturn_ionosphere::1.0", "title": "Saturn Ionosphere Bundle", "description": "Cassini radio occultations of the Saturn ionosphere", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2005-05-03", "stop_date": "2013-05-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/bundle_corss_saturn_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/bundle_corss_saturn_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.736839Z", "keywords": ["Cassini Orbiter", "RSS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:saturn_thermosphere_h2_density_temp::1.0", "title": "Structure of Saturn's Thermosphere from Stellar Occultations Bundle", "description": "Molecular hydrogen and temperature profiles of Saturn's thermosphere from stellar occultations by Cassini/UVIS and CIRS", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["ULTRAVIOLET IMAGING SPECTROGRAPH for CO", "COMPOSITE INFRARED SPECTROMETER for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2005-04-13", "stop_date": "2017-08-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/bundle_saturn_thermosphere_h2_density_temp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/bundle_saturn_thermosphere_h2_density_temp.xml", "scraped_at": "2026-02-25T20:02:10.736847Z", "keywords": ["Cassini Orbiter", "UVIS", "CIRS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voroelden::1.0", "title": "Viking Orbiters 1 and 2 Radio Occultation Electron Density Document Collection", "description": "Derived data products from Viking Orbiter 1 and 2 radio occultations at Mars and their accompanying documentation. Derived data products are electron density profiles from occultations.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Viking Orbiters 1 and 2"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "Radio Science Subsystem"], "instrument_hosts": ["Viking Orbiter 1", "Viking Orbiter 2"], "data_types": [], "start_date": "1977-01-17", "stop_date": "1978-08-20", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/bundle_voroelden.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/bundle_voroelden.xml", "scraped_at": "2026-02-25T20:02:10.736855Z", "keywords": ["radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_saturn_radar_maps::1.0", "title": "Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Bundle", "description": "2.2 cm thermal emission maps of Saturn obtained using Cassini's RADAR radiometer", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["RADAR for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2005-09-23", "stop_date": "2011-03-20", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/bundle_cassini_saturn_radar_maps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/bundle_cassini_saturn_radar_maps.xml", "scraped_at": "2026-02-25T20:02:10.736861Z", "keywords": ["Cassini Orbiter", "RADAR", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cocirs_c2h4abund::1.0", "title": "C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm", "description": "Mole fractions during the 2010 Saturn Storm", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["cocirs"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2011-03-03", "stop_date": "2012-04-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/bundle_cocirs_c2h4abund.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/bundle_cocirs_c2h4abund.xml", "scraped_at": "2026-02-25T20:02:10.736867Z", "keywords": ["abundances"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:coiss_zonal_winds::1.0", "title": "Saturn Zonal Winds Bundle", "description": "Saturn's zonal wind profile in 2004-2009 from Cassini ISS images", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle", "Imaging Science Subsystem - Wide Angle"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2004-09-06", "stop_date": "2009-01-12", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/bundle_coiss_zonal_winds.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/bundle_coiss_zonal_winds.xml", "scraped_at": "2026-02-25T20:02:10.736873Z", "keywords": ["Cassini Orbiter", "ISS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hot_ion_atmos_escape::1.0", "title": "Hot Ion Atmospheric Escape Data", "description": "This bundle contains collated hot ion atmospheric escape data from multiple published sources", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Hot Ion Atmospheric Escape Data"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": "2015-01-01", "stop_date": "2019-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/bundle_hot_ion_atmos_escape.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/bundle_hot_ion_atmos_escape.xml", "scraped_at": "2026-02-25T20:02:10.736877Z", "keywords": ["crossection"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:irtf_io_photometry::1.0", "title": "InfraRed Telescope Facility Io Photometry Bundle", "description": "IRTF Photometry of Io", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["IRTF Photometry of Io"], "targets": ["Io"], "instruments": ["IRTF 3.0-Meter Telescope"], "instrument_hosts": ["irtf"], "data_types": [], "start_date": "1983-02-09", "stop_date": "1993-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/bundle_irtf_io_photometry.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/bundle_irtf_io_photometry.xml", "scraped_at": "2026-02-25T20:02:10.736904Z", "keywords": ["IRTF", "photometry", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lowell_uranus-neptune-photometry::1.0", "title": "Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Bundle", "description": "Photometric observations of Uranus and Neptune (1972-2016) in the b (472 nm) and y (551 nm) filters of the Str\u00f6mgren photometric system at Lowell Observatory. Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune from 1972-2016.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Uranus and Neptune Photometry"], "targets": ["Uranus", "Neptune"], "instruments": ["Lowell 21-in Reflector"], "instrument_hosts": ["Lowell Observatory"], "data_types": [], "start_date": "1972-01-17", "stop_date": "2016-10-05", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/bundle_lowell_uranus-neptune_photometry.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/bundle_lowell_uranus-neptune_photometry.xml", "scraped_at": "2026-02-25T20:02:10.736909Z", "keywords": ["uranus", "neptune", "photometry"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs-rss_nocturnal-mixed-layers::1.0", "title": "Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Bundle", "description": "Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars Global Surveyor"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Mars Global Surveyor", "NASA Deep Space Network"], "data_types": [], "start_date": "2004-10-10", "stop_date": "2005-02-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/bundle_mgs-rss_nocturnal-mixed-layers.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/bundle_mgs-rss_nocturnal-mixed-layers.xml", "scraped_at": "2026-02-25T20:02:10.736917Z", "keywords": ["radio occultation", "nighttime convection", "polar clouds"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos::2.0", "title": "Mars Global Surveyor Thermal Emission Spectrometer Atmospheric Recalibration Bundle", "description": null, "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": [], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml", "scraped_at": "2026-02-25T20:02:10.736923Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corsstpp::2.0", "title": "Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Bundle", "description": "Atmospheric profiles of Titan", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["cors"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2006-03-19", "stop_date": "2009-06-22", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/bundle_corsstpp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/bundle_corsstpp.xml", "scraped_at": "2026-02-25T20:02:10.736929Z", "keywords": ["Titan", "radio"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wt_threshold_speed::1.0", "title": "Wind Tunnel Threshold Speed Document Bundle", "description": "Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Planetary Aeolian Laboratory Wind Tunnel Threshold Speed"], "targets": ["Mars Analog", "Venus Analog", "Titan Analog", "Earth Analog"], "instruments": ["Mars Wind Tunnel", "Titan Wind Tunnel", "Venus Wind Tunnel", "Carousel Wind Tunnel", "Iowa State University Wind Tunnel", "Aarhus Mars Wind Tunnel (AWTSI-2004)", "Aarhus Mars Wind Tunnel (AWTSII-2010)", "Aarhus Sloped Tunnel", "Trent University, Trent Environmental Wind Tunnel", "Bagnold Tunnel", "Chepil Tunnel", "Guelph Tunnel", "Belly Tunnel", "Texas Tech Tunnel", "Shapotou Tunnel", "Logie Tunnel", "Pietersma Portable Tunnel", "Butterfield Tunnel", "ICE Tunnel", "Dunhuang Portable Tunnel", "USDA-ARS Tunnel"], "instrument_hosts": ["Planetary Aeolian Laboratory", "Iowa State University Department of Aeorospace Engineering", "Aarhus University Mars Simulation Lab", "Trent University Trent Environmental Wind Tunnel Facility", "Hydraulics Laboratory Imperial College, London", "The High Plains Wind Erosion Laboratory, Kansas State University", "Wind Erosion Laboratory, Dept. Geography, University of Guelph", "Richmond Field Station, University of California,", "Department of Agricultural Engineering, Texas Tech University", "Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy", "Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium", "Whitehead Aeronautical Laboratory, Queen Mary University of London, UK", "Center for Eremology, Ghent University, Belgium", "USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"], "data_types": [], "start_date": "1970-01-01", "stop_date": "2017-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/bundle_wt_threshold_speed.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/bundle_wt_threshold_speed.xml", "scraped_at": "2026-02-25T20:02:10.736941Z", "keywords": ["Wind Tunnel", "threshold speed"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie::3.0", "title": "Mars 2020 MOXIE Bundle", "description": "Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": [], "start_date": "2021-02-22", "stop_date": "2021-11-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "scraped_at": "2026-02-25T20:02:10.736946Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins::3.0", "title": "APSS TWINS Data", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml", "scraped_at": "2026-02-25T20:02:10.736950Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps::3.0", "title": "APSS PS Data", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml", "scraped_at": "2026-02-25T20:02:10.736953Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pvo.orse::1.0", "title": "Pioneer Venus Orbiter Radio Occultation Profiles", "description": "Derived data products from Pioneer Venus Orbiter radio occultations at Venus and their accompanying documentation. Derived data products include: (A) frequency data from the NSSDC, (B) Venus ionospheric electron density profiles from the NSSDC, (C) Venus neutral atmospheric profiles from the NSSDC, (D) Venus ionospheric electron density profiles from graphical sources, and (E) Venus neutral atmospheric profiles from graphical sources.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Pioneer Venus"], "targets": ["Venus"], "instruments": ["Radio Science Experiment"], "instrument_hosts": ["Pioneer Venus Orbiter"], "data_types": [], "start_date": "1978-12-05", "stop_date": "1989-10-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/bundle_pvoro.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/bundle_pvoro.xml", "scraped_at": "2026-02-25T20:02:10.736958Z", "keywords": ["radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps::3.1", "title": "APSS PS Data", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml", "scraped_at": "2026-02-25T20:02:10.738165Z", "keywords": ["Mars", "weather", "meteorology", "environment", "pressure"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins::3.1", "title": "APSS TWINS Data", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml", "scraped_at": "2026-02-25T20:02:10.738170Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_mission_bundle::1.0", "title": "LADEE Mission Bundle", "description": "The LADEE bundle was created by the PDS Atmospheres node in 2014", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS", "UVS", "LDEX"], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/LADEE_Bundle_1101.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/LADEE_Bundle_1101.xml", "scraped_at": "2026-02-25T20:02:10.738174Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_acc::1.1", "title": "MAVEN Accelerometer Data", "description": "This bundle contains the data collected by the Accelerometers and Reaction Wheels (ACCEL) aboard the Mars Atmosphere and Volatile EvolutioN (MAVEN) satellite, along with the documents and other information necessary for the interpretation of that data.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["ACCEL"], "instrument_hosts": ["MAVEN"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/bundle_maven__accel.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/bundle_maven__accel.xml", "scraped_at": "2026-02-25T20:02:10.738178Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_uvs::1.0", "title": "Galileo Orbiter Ultraviolet Spectrometer (UVS) for GO Bundle", "description": "This version of the Ultraviolet Spectrometer (UVS) for GO bundle was created by the PDS Atmospheres node in 2022", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter", "Callisto", "Europa", "Ganymede", "Io", "Io Plasma Torus", "STAR"], "instruments": ["UVS"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/bundle_gouvs.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/bundle_gouvs.xml", "scraped_at": "2026-02-25T20:02:10.738181Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vg_uvs::1.0", "title": "Voyager Ultraviolet Spectrometer (UVS) for VG Bundle", "description": "This version of the Ultraviolet Spectrometer (UVS) for Voyager (VG) bundle was created by the PDS Atmospheres node in 2022", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["VOYAGER"], "targets": ["JUPITER", "SATURN", "URANUS", "NEPTUNE"], "instruments": ["UVS", "UVS"], "instrument_hosts": ["VOYAGER 1", "VOYAGER 2"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/bundle_vguvs.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/bundle_vguvs.xml", "scraped_at": "2026-02-25T20:02:10.738187Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_ppr::1.0", "title": "Galileo Orbiter Photopolarimeter Radiometer (PPR) for GO Bundle", "description": "This version of the Photopolarimeter Radiometer (PPR) for GO bundle was created by the PDS Atmospheres node in 2022", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter", "Callisto", "Europa", "Ganymede", "Io", "Amalthea", "GLL PCT", "PPR RCT"], "instruments": ["PPR"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/bundle_goppr.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/bundle_goppr.xml", "scraped_at": "2026-02-25T20:02:10.738191Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims::1.0", "title": "MAVEN Neutral Gas and Ion Mass Spectrometer Data", "description": "This bundle contains the data collected by the Neutral Gas and Ion Mass Spectrometer (NGIMS) instrument aboard the Mars Atmosphere and Volatile EvolutioN (MAVEN) satellite, along with the documents and other information necessary for the interpretation of that data.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["NGIMS"], "instrument_hosts": ["MAVEN"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/bundle_maven_ngims.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/bundle_maven_ngims.xml", "scraped_at": "2026-02-25T20:02:10.738195Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vo_irtm::1.0", "title": "Viking Orbiter Infrared Thermal Mapper (IRTM) for VO Bundle", "description": "This version of the Infrared Thermal Mapper (IRTM) for Viking Orbiter (VO) bundle was created by the PDS Atmospheres node in 2022", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["VIKING ORBITER"], "targets": ["MARS"], "instruments": ["IRTM", "IRTM"], "instrument_hosts": ["VIKING ORBITER 1", "VIKING ORBITER 2"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/bundle_voirtm.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/bundle_voirtm.xml", "scraped_at": "2026-02-25T20:02:10.738268Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie::6.0", "title": "Mars 2020 MOXIE Bundle", "description": "Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": [], "start_date": "2021-02-22", "stop_date": "2022-11-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "scraped_at": "2026-02-25T20:02:10.738281Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms::1.0", "title": "LADEE Neutral Mass Spectrometer Data", "description": "This bundle contains the data collected by the Neutral Mass Spectrometer (NMS) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) satellite, along with the documents and other information necessary for the interpretation of that data.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/bundle_ladee_nms.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/bundle_ladee_nms.xml", "scraped_at": "2026-02-25T20:02:10.738323Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie::7.0", "title": "Mars 2020 MOXIE Bundle", "description": "Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": [], "start_date": "2021-02-22", "stop_date": "2023-04-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "scraped_at": "2026-02-25T20:02:10.738328Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps::3.2", "title": "APSS PS Data", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": [], "start_date": "2018-11-30", "stop_date": "2022-05-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/bundle_insight_ps.xml", "scraped_at": "2026-02-25T20:02:10.738333Z", "keywords": ["Mars", "weather", "meteorology", "environment", "pressure"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins::3.2", "title": "APSS TWINS Data", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": [], "start_date": "2018-11-30", "stop_date": "2022-08-27", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/bundle_insight_twins.xml", "scraped_at": "2026-02-25T20:02:10.738338Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vo_mawd::1.0", "title": "Viking Orbiter Mars Atmospheric Water Detector (MAWD) for VO Bundle", "description": "This version of the Mars Atmospheric Water Detector (MAWD) for Viking Orbiter (VO) bundle was created by the PDS Atmospheres node in 2022", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["VIKING ORBITER"], "targets": ["MARS"], "instruments": ["MAWD", "MAWD"], "instrument_hosts": ["VIKING ORBITER 1", "VIKING ORBITER 2"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/bundle_vomawd.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/bundle_vomawd.xml", "scraped_at": "2026-02-25T20:02:10.738342Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co_iss_global-maps::1.0", "title": "Cassini ISS Global Maps of Jupiter and Saturn", "description": "description", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Name"], "targets": ["Jupiter", "Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle for CO", "Imaging Science Subsystem - Wide Angle for CO"], "instrument_hosts": ["Cassini"], "data_types": [], "start_date": "2000-12-06", "stop_date": "2011-08-11", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/bundle_co_iss_global-maps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/bundle_co_iss_global-maps.xml", "scraped_at": "2026-02-25T20:02:10.738347Z", "keywords": ["Cassini", "ISS", "Jupiter", "Saturn", "global maps"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_titan_ionosphere::1.0", "title": "Titan Ionosphere Bundle", "description": "Cassini radio occultations of the Titan ionosphere", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2006-03-18", "stop_date": "2016-05-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/bundle_corss_titan_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/bundle_corss_titan_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.738352Z", "keywords": ["Cassini Orbiter", "RSS", "Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra::4.0", "title": "Laboratory Study of Hydrocarbon IR Spectra Bundle", "description": null, "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Bruker IFS 125HR Fourier Transform Spectrometer", "Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": [], "start_date": "2017-01-01", "stop_date": "2022-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/bundle.lab.hydrocarbon_spectra.xml", "scraped_at": "2026-02-25T20:02:10.738359Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs::2.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Archive Bundle", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/bundle_ladee_uvs.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/bundle_ladee_uvs.xml", "scraped_at": "2026-02-25T20:02:10.738363Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_atmos_dust-ice::1.0", "title": "Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) Atmospheric Column Optical Depths for Dust and Water Ice Bundle", "description": "This bundle contains atmospheric column optical depth data for dust and water ice as well as daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["TES"], "instrument_hosts": ["MGS"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/bundle_mgs_tes_atmos_dust-ice.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/bundle_mgs_tes_atmos_dust-ice.xml", "scraped_at": "2026-02-25T20:02:10.738374Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos::3.0", "title": "Mars Global Surveyor Thermal Emission Spectrometer Atmospheric Recalibration Bundle", "description": null, "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": [], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/bundle_mgs_tes_recalib_atmos.xml", "scraped_at": "2026-02-25T20:02:10.738379Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ao::2.0", "title": "AO SSI Bundle", "description": "The original PHX AO dataset was submitted in 2009 by Mark Lemmon", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Phoenix"], "targets": ["Mars"], "instruments": ["Atmospheric Opacity"], "instrument_hosts": ["Phoenix"], "data_types": [], "start_date": "2008-05-25", "stop_date": "2008-10-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/bundle_phx_ao.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/bundle_phx_ao.xml", "scraped_at": "2026-02-25T20:02:10.738384Z", "keywords": ["Phoenix", "Atmospheric Opacity", "SURFACE STEREO IMAGER", "SSI", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_met::2.0", "title": "MET Bundle", "description": "The original PHX MET dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["MET"], "instrument_hosts": ["PHOENIX"], "data_types": [], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/bundle_phx_met.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/bundle_phx_met.xml", "scraped_at": "2026-02-25T20:02:10.738389Z", "keywords": ["Phoenix", "Meterology", "Temperature", "Pressure", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_tt::2.0", "title": "TELLTALE Bundle", "description": "The original PHX TT dataset was submitted in 2009", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["TT"], "instrument_hosts": ["PHOENIX"], "data_types": [], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/bundle_phx_tt.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/bundle_phx_tt.xml", "scraped_at": "2026-02-25T20:02:10.738395Z", "keywords": ["Phoenix", "Telltale", "TT", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vl_met::1.0", "title": "Viking Lander MET Bundle", "description": "This version of the Viking Lander MET bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Viking Lander"], "targets": ["Mars"], "instruments": ["MET", "MET"], "instrument_hosts": ["Viking Lander", "Viking Lander"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/bundle_vl_met.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/bundle_vl_met.xml", "scraped_at": "2026-02-25T20:02:10.738399Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vl_ftpd::1.0", "title": "Viking Lander FTPD Bundle", "description": "This version of the Viking Lander FTPD bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Viking Lander"], "targets": ["Mars"], "instruments": ["MET", "MET"], "instrument_hosts": ["Viking Lander", "Viking Lander"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/bundle_vl_ftpd.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/bundle_vl_ftpd.xml", "scraped_at": "2026-02-25T20:02:10.738404Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ase::2.0", "title": "ASE Bundle", "description": "The original PHX LIDAR dataset was submitted in 2008", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["ASE"], "instrument_hosts": ["PHOENIX"], "data_types": [], "start_date": "2008-05-25", "stop_date": "2008-05-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/bundle_phx_ase.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/bundle_phx_ase.xml", "scraped_at": "2026-02-25T20:02:10.738409Z", "keywords": ["Phoenix", "ASE", "Atmospheric Structure", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp::1.0", "title": "Galileo Probe (GP) Bundle", "description": "This version of the GP bundle was created by the PDS Atmospheres node in 2024", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["ASI", "DWE", "EPI", "GPMS", "HAD", "LRD", "NEP", "NFR"], "instrument_hosts": ["GALILEO PROBE"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/bundle_gp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/bundle_gp.xml", "scraped_at": "2026-02-25T20:02:10.738439Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_nims_io_rad::1.0", "title": "Galileo NIMS Hot Spot Spectral Radiance Bundle", "description": "Hot spot spectral radiance derived from Galileo NIMS observations of Io", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Galileo Mission"], "targets": ["Io"], "instruments": ["Near Infrared Mapping Spectrometer"], "instrument_hosts": ["Galileo Orbiter"], "data_types": [], "start_date": "1996-06-28", "stop_date": "2001-10-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/bundle_go_nims_io_rad.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/bundle_go_nims_io_rad.xml", "scraped_at": "2026-02-25T20:02:10.738458Z", "keywords": ["Galileo", "NIMS", "radiance", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_vortex::1.0", "title": "InSight Vortex Data", "description": "InSight Vortex data for dust devil detections", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["APSS PS", "APSS TWINS", "SEIS"], "instrument_hosts": ["InSight"], "data_types": [], "start_date": "2018-11-30", "stop_date": "2022-08-27", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/bundle_insight_vortex.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/bundle_insight_vortex.xml", "scraped_at": "2026-02-25T20:02:10.738462Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_disr::1.0", "title": "Descent Imager/Spectral Radiometer (DISR) for HP Bundle", "description": "This version of the Descent Imager/Spectral Radiometer (DISR) for HP bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DISR"], "instrument_hosts": ["Huygens Probe"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/bundle_hpdisr.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/bundle_hpdisr.xml", "scraped_at": "2026-02-25T20:02:10.738475Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_acp::1.0", "title": "Huygens Aerosol Collector and Pyrolyser (ACP) Bundle", "description": "This version of the Huygens Aerosol Collector and Pyrolyser (ACP) bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["ACP"], "instrument_hosts": ["Huygens Probe"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/bundle_hpacp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/bundle_hpacp.xml", "scraped_at": "2026-02-25T20:02:10.738478Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dtwg::1.0", "title": "Huygens Reconstructed Entry and Descent Trajectory (DTWG) Bundle", "description": "This version of the Huygens Reconstructed Entry and Descent Trajectory (DTWG) bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE", "DISR", "GCMS", "SSP", "HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/bundle_hpdtwg.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/bundle_hpdtwg.xml", "scraped_at": "2026-02-25T20:02:10.738482Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dwe::1.0", "title": "Huygens Doppler Wind Experiment (DWE) Bundle", "description": "This version of the Huygens Doppler Wind Experiment (DWE) bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE"], "instrument_hosts": ["Huygens Probe"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/bundle_hpdwe.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/bundle_hpdwe.xml", "scraped_at": "2026-02-25T20:02:10.738486Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_gcms::1.0", "title": "Huygens Gas Chromatograph and Mass Spectrometer (GCMS) Bundle", "description": "This version of the Huygens Gas Chromatograph and Mass Spectrometer (GCMS) bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["GCMS"], "instrument_hosts": ["Huygens Probe"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/bundle_hpgcms.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/bundle_hpgcms.xml", "scraped_at": "2026-02-25T20:02:10.738489Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_hasi::1.0", "title": "Huygens Atmosphere Structure Instrument (HASI) Bundle", "description": "This version of the Huygens Atmosphere Structure Instrument (HASI) bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/bundle_hphasi.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/bundle_hphasi.xml", "scraped_at": "2026-02-25T20:02:10.738493Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_hk::1.0", "title": "Huygens Probe Housekeeping (HK) for HP Bundle", "description": "This version of the Huygens Probe Housekeeping (HK) for HP bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["HK"], "instrument_hosts": ["Huygens Probe"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/bundle_hphk.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/bundle_hphk.xml", "scraped_at": "2026-02-25T20:02:10.738497Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_ssp::1.0", "title": "Surface Science Package (SSP) for HP Bundle", "description": "This version of the Surface Science Package (SSP) for HP bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["SSP"], "instrument_hosts": ["Huygens Probe"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/bundle_hpssp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/bundle_hpssp.xml", "scraped_at": "2026-02-25T20:02:10.738501Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_occul_el_dens::1.0", "title": "Cassini Orbiter Radio Science Subsystem Occultation and Electron Density", "description": "Derived data products from Cassini radio occultations at Titan and their accompanying documentation. Derived data products include: (A) time series of the frequency of the radio signal received at Earth during an occultation; (B) individual electron density profiles from occultations; (C) average electron density profiles from occultations; and (D) summary of average electron density profiles.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2005-05-03", "stop_date": "2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/bundle_corss_occul_el_dens.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/bundle_corss_occul_el_dens.xml", "scraped_at": "2026-02-25T20:02:10.738505Z", "keywords": ["radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie::8.0", "title": "Mars 2020 MOXIE Bundle", "description": "Bundle for the Mars 2020 Mars In-Situ Resource Utilization (ISRU) Experiment (MOXIE)", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": [], "start_date": "2021-02-22", "stop_date": "2023-09-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/bundle_moxie.xml", "scraped_at": "2026-02-25T20:02:10.738510Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_lidar::2.0", "title": "LIDAR Bundle", "description": "The original PHX LIDAR dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["LIDAR"], "instrument_hosts": ["PHOENIX"], "data_types": [], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/bundle_phx_lidar.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/bundle_phx_lidar.xml", "scraped_at": "2026-02-25T20:02:10.738514Z", "keywords": ["Phoenix", "Lidar", "Meterology", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini-uvis_titan-library::1.0", "title": "Cassini UVIS Titan Library Bundle", "description": "Cassini UVIS spectral library for Titan", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["Titan"], "instruments": ["UVIS"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/bundle_cassini-uvis_titan-library.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/bundle_cassini-uvis_titan-library.xml", "scraped_at": "2026-02-25T20:02:10.738518Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_mission::2.0", "title": "LADEE Mission Bundle", "description": "The LADEE bundle was created by the PDS Atmospheres node in 2014", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS", "UVS", "LDEX"], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/bundle_ladee_mission.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/bundle_ladee_mission.xml", "scraped_at": "2026-02-25T20:02:10.738522Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_ldex::2.0", "title": "LADEE LUNAR DUST EXPERIMENT", "description": "This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["LADEE"], "targets": ["Dust", "Moon"], "instruments": ["LUNAR DUST EXPERIMENT"], "instrument_hosts": ["LADEE"], "data_types": [], "start_date": "2013-10-24", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/bundle_ladee_ldex.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/bundle_ladee_ldex.xml", "scraped_at": "2026-02-25T20:02:10.738526Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs::3.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Archive Bundle", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/bundle_ladee_uvs.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/bundle_ladee_uvs.xml", "scraped_at": "2026-02-25T20:02:10.738547Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_erp::1.0", "title": "InSight APSS TWINS and PS ERP and NEMO Data", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) And Pressure Sensor (PS) ERP and NEMO Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["Auxiliary Payload Sensor Subsystem Temperatures and Wind Sensor for InSight", "Auxiliary Payload Sensor Subsystem Pressure Sensor"], "instrument_hosts": ["Insight"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/erp_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/erp_bundle/bundle_insight_erp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/erp_bundle/bundle_insight_erp.xml", "scraped_at": "2026-02-25T20:02:10.738552Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mer_imu::1.1", "title": "Mars Exploration Rover IMU Bundle", "description": "This version of the MERIMU bundle was created by the PDS Atmospheres node in 2014", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars Exploration Rover"], "targets": ["Mars"], "instruments": ["Inertial Measurement Unit 1", "Inertial Measurement Unit 2"], "instrument_hosts": ["mer1", "mer2"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/bundle_mer_imu.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/merimu_bundle/bundle_mer_imu.xml", "scraped_at": "2026-02-25T20:02:10.738556Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_mwr::1.0", "title": "Juno MWR Bundle", "description": "This version of the Juno MWR bundle was created by the PDS Atmospheres node in 2017", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["MWR"], "instrument_hosts": ["Juno"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/bundle_juno_mwr.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/bundle_juno_mwr.xml", "scraped_at": "2026-02-25T20:02:10.738560Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro_accel::1.0", "title": "MRO Accel Bundle", "description": "This version of the MRO ACCEL bundle was created by the PDS Atmospheres node in 2016", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars Reconnaissance orbiter"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["MRO"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/bundle_mro_accel.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/bundle_mro_accel.xml", "scraped_at": "2026-02-25T20:02:10.738716Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel::1.0", "title": "ODYA Bundle", "description": "This version of the ODYA bundle was created by the PDS Atmospheres node in 2015", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars Odyssey"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["Odyssey"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/bundle_ody_accel.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/bundle_ody_accel.xml", "scraped_at": "2026-02-25T20:02:10.738735Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro-crism_atmos-db::1.0", "title": "Atmospheric Retrievals for Mars Integrated from MRO-CRISM Bundle", "description": "Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["MARS RECONNAISSANCE ORBITER"], "targets": ["Mars"], "instruments": ["Compact Reconnaissance Imaging Spectrometer For Mars"], "instrument_hosts": ["Mars Reconnaissance Orbiter"], "data_types": [], "start_date": "2006-01-01", "stop_date": "2024-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/bundle.mro-crism_atmos-db.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/bundle.mro-crism_atmos-db.xml", "scraped_at": "2026-02-25T20:02:10.738819Z", "keywords": ["atmosphere", "Mars", "MRO", "CRISM"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_jiram::1.1", "title": "Juno JIRAM Bundle", "description": "This version of the Juno JIRAM bundle was created by the PDS Atmospheres node in 2019", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["JIRAM"], "instrument_hosts": ["Juno"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/bundle_juno_jiram.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/bundle_juno_jiram.xml", "scraped_at": "2026-02-25T20:02:10.738967Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda::6.0", "title": "Mars 2020 MEDA Bundle", "description": "Mars 2020 Perseverance Rover Mars Environmental Dynamics Analyzer (MEDA) Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products Archive Bundle", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/bundle.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739389Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_accel::1.0", "title": "MGS Accel Bundle", "description": "This version of the MGS ACCEL bundle was created by the PDS Atmospheres node in 2015", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars Global Surveyor"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["MGS"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/bundle_mgs_accel.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/bundle_mgs_accel.xml", "scraped_at": "2026-02-25T20:02:10.739394Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed::1.0", "title": "Pioneer Venus Special Events Data (SED) Bundle", "description": "This bundle contains the Pioneer Venus Special Events Data (SED) extracted from NSSDCA dataset PSPA-00034 and reformatted as ASCII CSV products. The SED data consist of separate files for a number of instruments on the Pioneer Venus orbiter as well as the four atmospheric probes (Multiprobes). Data products include: Multiprobe Atmospheric Structure pressure and temperature data during entry and descent; Orbiter Gas Chromatograph lower atmospheric composition data; Large Probe Infrared Radiometer pre-entry and descent data; Large Probe Solar Flux Radiometer lower atmospheric up, down, and net flux data, Multiprobe Nephelometer atmospheric backscatter, temperature, UV and VIS background data, and spectral functions; Pioneer Venus Atmospheric Drag model and density data; Orbiter Solar Wind Plasma Analyzer proton parameters outside the bow shock; and Small Probes Net Flux Radiometer atmospheric data.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS", "SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS", "PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT", "PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH", "PIONEER VENUS LARGE PROBE INFRARED RADIOMETER", "PIONEER VENUS LARGE PROBE NEPHELOMETER", "PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"], "instrument_hosts": ["PIONEER VENUS ORBITER", "PIONEER VENUS LARGE PROBE", "PIONEER VENUS SMALL PROBE (DAY)", "PIONEER VENUS SMALL PROBE (NIGHT)", "PIONEER VENUS SMALL PROBE (NORTH)"], "data_types": [], "start_date": "1978-12-05", "stop_date": "1981-10-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/bundle_pv_sed.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/bundle_pv_sed.xml", "scraped_at": "2026-02-25T20:02:10.739476Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co-rss_slepian-grav-coeff::1.0", "title": "Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Bundle", "description": "Saturn gravity coefficients derived from Cassini Radio Science data.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2022-06-14", "stop_date": "2024-09-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/bundle_co-rss_slepian-grav-coeff.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/bundle_co-rss_slepian-grav-coeff.xml", "scraped_at": "2026-02-25T20:02:10.739700Z", "keywords": ["Saturn", "gravity"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr::1.0", "title": "Juno Gravity Bundle", "description": "This version of the Juno Gravity bundle was created by the PDS Atmospheres node in 2020", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Gravity"], "instrument_hosts": ["Juno"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/bundle_juno_grav.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/bundle_juno_grav.xml", "scraped_at": "2026-02-25T20:02:10.739704Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms::2.0", "title": "LADEE Neutral Mass Spectrometer Data", "description": "This bundle contains the data collected by the Neutral Mass Spectrometer (NMS) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) satellite, along with the documents and other information necessary for the interpretation of that data.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/bundle_ladee_nms.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/bundle_ladee_nms.xml", "scraped_at": "2026-02-25T20:02:10.739798Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clps_to_2ab_pll.pitms::1.0", "title": "CLPS Task Order 2AB Peregrine Ion-Trap Mass Spectrometer (PITMS) for Lunar Surface Volatiles", "description": "This bundle contains the data collected by the Peregine Ion Trap Mass Spectormeter aboard the Peregrine lander, along with the documents and other information necessary for the interpretation of that data.", "node": "atm", "pds_version": "PDS4", "type": "bundle", "missions": ["CLPS 2AB"], "targets": ["Moon"], "instruments": ["PITMS"], "instrument_hosts": ["Peregrine Lunar Lander"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/bundle_pitms.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/bundle_pitms.xml", "scraped_at": "2026-02-25T20:02:10.739802Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra:context::1.1", "title": "Laboratory Study of Hydrocarbon IR Spectra Context Collection", "description": "Context collection label", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Bruker IFS 125HR Fourier Transform Spectrometer", "Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": ["Context"], "start_date": "2016-01-01", "stop_date": "2021-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml", "scraped_at": "2026-02-25T20:02:10.749892Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra:document::1.1", "title": "Laboratory Study of Hydrocarbon IR Spectra Document Collection", "description": "Document collection label", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility", "Bruker IFS 125HR Fourier Transform Spectrometer"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": ["Document"], "start_date": "2016-01-01", "stop_date": "2021-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/collection_lab.hydrocarbon_spectra_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/collection_lab.hydrocarbon_spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.749906Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra:xml_schema::1.0", "title": "Laboratory Study of Hydrocarbon IR Spectra XML Schema Collection", "description": "XML schema collection label", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Bruker IFS 125HR Fourier Transform Spectrometer", "Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": ["XML Schema"], "start_date": "2016-01-01", "stop_date": "2021-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.749913Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra:data::2.0", "title": "Laboratory Study of Hydrocarbon IR Spectra Data Collection", "description": "Data collection label", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Bruker IFS 125HR Fourier Transform Spectrometer", "Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": ["Data"], "start_date": "2016-01-01", "stop_date": "2021-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.749919Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:context::1.1", "title": "Mars 2020 MOXIE Context Collection", "description": "Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Context"], "start_date": "2021-02-22", "stop_date": "2021-08-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "scraped_at": "2026-02-25T20:02:10.749924Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_derived::1.1", "title": "Mars 2020 MOXIE Derived Data Collection", "description": "Mars 2020 MOXIE Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2021-08-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.749930Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_calibrated::1.1", "title": "Mars 2020 MOXIE Calibrated Data Collection", "description": "Mars 2020 MOXIE Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2021-08-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.749934Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:document::1.1", "title": "Mars 2020 MOXIE Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": "2021-02-22", "stop_date": "2021-08-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "scraped_at": "2026-02-25T20:02:10.749939Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_raw::1.1", "title": "Mars 2020 MOXIE Raw Data Collection", "description": "Mars 2020 MOXIE Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2021-08-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.749944Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:eldorado_nv_dd_ptv:context::1.0", "title": "Jackson and Lorenz Dust Devil Field Campaign Context Collection", "description": "Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Dust Devil Field Observation Campaign"], "targets": [], "instruments": ["Lorenz Meteorology Station Data Logger"], "instrument_hosts": [], "data_types": ["Context"], "start_date": "2012-05-21", "stop_date": "2013-09-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/collection_eldorado_nv_dd_ptv_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/context/collection_eldorado_nv_dd_ptv_context.xml", "scraped_at": "2026-02-25T20:02:10.749948Z", "keywords": ["dust devil", "field campaign"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:eldorado_nv_dd_ptv:data_derived::1.0", "title": "Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015", "description": "Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Dust Devil Field Observation Campaign"], "targets": ["Earth"], "instruments": ["Lorenz Meteorology Station Data Logger"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2012-05-21", "stop_date": "2013-09-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/collection_eldorado_nv_dd_ptv_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/data_derived/collection_eldorado_nv_dd_ptv_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.749953Z", "keywords": ["dust devil", "field campaign"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:eldorado_nv_dd_ptv:document::1.0", "title": "Dust Devil Field Study in El Dorado Valley, Nevada, Jackson and Lorenz, 2015", "description": "Dust devil field campaign in El Dorado Playa, Nevada, USA using automated logger stations", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Dust Devil Field Observation Campaign"], "targets": ["Earth"], "instruments": ["Lorenz Meteorology Station Data Logger"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2012-05-21", "stop_date": "2013-09-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/document/collection_eldorado_nv_dd_ptv_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/document/collection_eldorado_nv_dd_ptv_document.xml", "scraped_at": "2026-02-25T20:02:10.749957Z", "keywords": ["dust devil", "field campaign"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:eldorado_nv_dd_ptv:xml_schema::1.0", "title": "Jackson and Lorenz Dust Devil Field Campaign XML Schema Collection", "description": "Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Dust Devil Field Observation Campaign"], "targets": ["Earth"], "instruments": ["Lorenz Meteorology Station Data Logger"], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": "2012-05-21", "stop_date": "2013-09-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/collection_eldorado_nv_dd_ptv_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/eldorado_nv_dd_ptv/xml_schema/collection_eldorado_nv_dd_ptv_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.749962Z", "keywords": ["dust devil", "field campaign"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_edl:context::1.0", "title": "InSight EDL Context", "description": "This is a PDS4 Context Collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["EDL"], "instrument_hosts": ["InSight"], "data_types": ["Context"], "start_date": "2018-11-26", "stop_date": "2018-11-26", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/collection_insightedl_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/context/collection_insightedl_context.xml", "scraped_at": "2026-02-25T20:02:10.749967Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_edl:schema::1.0", "title": "InSight EDL Schema", "description": "This is a PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["Accelerometer"], "instrument_hosts": ["InSight"], "data_types": ["XML Schema"], "start_date": "2018-11-26", "stop_date": "2018-11-26", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/collection_insightedl_xmlschema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/xml_schema/collection_insightedl_xmlschema.xml", "scraped_at": "2026-02-25T20:02:10.749972Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_edl:data::1.0", "title": "InSight EDL Data Collection Inventory", "description": "This is a PDS4 data collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["EDL"], "instrument_hosts": ["InSight"], "data_types": ["Data"], "start_date": "2018-11-26", "stop_date": "2018-11-26", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/collection_insightedl_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/data/collection_insightedl_data.xml", "scraped_at": "2026-02-25T20:02:10.749976Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_edl:document::1.0", "title": "InSight EDL Documents", "description": "This is a PDS4 document collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["EDL"], "instrument_hosts": ["InSight"], "data_types": ["Document"], "start_date": "2018-11-26", "stop_date": "2018-11-26", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/document/collection_insightedl_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/insight_edl_bundle/document/collection_insightedl_document.xml", "scraped_at": "2026-02-25T20:02:10.749981Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mcmath-pierce_mercury:browse::1.0", "title": "KPNO McMath-Pierce Solar Telescope Observations of Mercury Browse Collection", "description": "McMath-Pierce Solar Telescope spectral characterization of Mercury", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["McMath-Pierce Solar Telescope Spectra of Mercury"], "targets": ["Mercury"], "instruments": ["McMath-Pierce Solar Telescope Main 1.61-m Reflector", "Vacuum Spectrograph at McMath-Pierce"], "instrument_hosts": ["McMath-Pierce Solar Telescope Facility"], "data_types": ["Browse"], "start_date": "2011-01-08", "stop_date": "2013-04-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/browse/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/browse/collection_mcmath-pierce_mercury_browse.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/browse/collection_mcmath-pierce_mercury_browse.xml", "scraped_at": "2026-02-25T20:02:10.749986Z", "keywords": ["McMath-Pierce Solar Telescope", "spectra", "Mercury"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mcmath-pierce_mercury:data_calibrated::1.0", "title": "KPNO McMath-Pierce Solar Telescope Observations of Mercury Data-Calibrated Collection", "description": "McMath-Pierce Solar Telescope spectral characterization of Mercury", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["McMath-Pierce Solar Telescope Spectra of Mercury"], "targets": ["Mercury"], "instruments": ["McMath-Pierce Solar Telescope Main 1.61-m Reflector", "Vacuum Spectrograph at McMath-Pierce"], "instrument_hosts": ["McMath-Pierce Solar Telescope Facility"], "data_types": ["Data"], "start_date": "2011-01-08", "stop_date": "2013-04-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/collection_mcmath-pierce_mercury_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/data_calibrated/collection_mcmath-pierce_mercury_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.749991Z", "keywords": ["McMath-Pierce Solar Telescope", "spectra", "Mercury"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mcmath-pierce_mercury:document::1.0", "title": "KPNO McMath-Pierce Solar Telescope Observations of Mercury Document Collection", "description": "McMath-Pierce Solar Telescope spectral characterization of Mercury", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["McMath-Pierce Solar Telescope Spectra of Mercury"], "targets": ["Mercury"], "instruments": ["McMath-Pierce Solar Telescope Main 1.61-m Reflector", "Vacuum Spectrograph at McMath-Pierce"], "instrument_hosts": ["McMath-Pierce Solar Telescope Facility"], "data_types": ["Document"], "start_date": "2011-01-08", "stop_date": "2013-04-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/document/collection_mcmath-pierce_mercury_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/document/collection_mcmath-pierce_mercury_document.xml", "scraped_at": "2026-02-25T20:02:10.749997Z", "keywords": ["McMath-Pierce Solar Telescope", "spectra", "Mercury"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mcmath-pierce_mercury:context::1.0", "title": "KPNO McMath-Pierce Solar Telescope Observations of Mercury Context Collection", "description": "McMath-Pierce Solar Telescope spectral characterization of Mercury", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["McMath-Pierce Solar Telescope Spectra of Mercury"], "targets": ["Mercury"], "instruments": ["McMath-Pierce Solar Telescope Main 1.61-m Reflector", "Vacuum Spectrograph at McMath-Pierce"], "instrument_hosts": ["McMath-Pierce Solar Telescope Facility"], "data_types": ["Context"], "start_date": "2011-01-08", "stop_date": "2013-04-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/collection_mcmath-pierce_mercury_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/context/collection_mcmath-pierce_mercury_context.xml", "scraped_at": "2026-02-25T20:02:10.750008Z", "keywords": ["McMath-Pierce Solar Telescope", "spectra", "Mercury"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mcmath-pierce_mercury:xml_schema::1.0", "title": "KPNO McMath-Pierce Solar Telescope Observations of Mercury XML Schema Collection", "description": "McMath-Pierce Solar Telescope spectral characterization of Mercury", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["McMath-Pierce Solar Telescope Spectra of Mercury"], "targets": ["Mercury"], "instruments": ["McMath-Pierce Solar Telescope Main 1.61-m Reflector", "Vacuum Spectrograph at McMath-Pierce"], "instrument_hosts": ["McMath-Pierce Solar Telescope Facility"], "data_types": ["XML Schema"], "start_date": "2011-01-08", "stop_date": "2013-04-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/collection_mcmath-pierce_mercury_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mcmath-pierce_mercury/xml_schema/collection_mcmath-pierce_mercury_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.750015Z", "keywords": ["McMath-Pierce Solar Telescope", "spectra", "Mercury"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mpf_mpim:context::1.0", "title": "Mars Pathfinder Atmospheric Opacities", "description": "Derived opacities from Mars Pathfinder", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Pathfinder"], "targets": ["Mars"], "instruments": ["mpim"], "instrument_hosts": ["Pathfinder"], "data_types": ["Document"], "start_date": "1997-07-04", "stop_date": "1997-07-17", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/collection_lemmoncontext.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/context/collection_lemmoncontext.xml", "scraped_at": "2026-02-25T20:02:10.750019Z", "keywords": ["opacities"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mpf_mpim:document::1.0", "title": "Mars Pathfinder Atmospheric Opacities", "description": "Derived opacities from Mars Pathfinder", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Pathfinder"], "targets": ["Mars"], "instruments": ["mpim"], "instrument_hosts": ["Pathfinder"], "data_types": ["Document"], "start_date": "1997-07-04", "stop_date": "1997-07-17", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/document/collection_lemmondoc.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/document/collection_lemmondoc.xml", "scraped_at": "2026-02-25T20:02:10.750023Z", "keywords": ["opacities"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mpf_mpim:derived::1.0", "title": "Mars Pathfinder Atmospheric Opacities", "description": "Derived opacities from Mars Pathfinder", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Pathfinder"], "targets": ["Mars"], "instruments": ["mpim"], "instrument_hosts": ["Pathfinder"], "data_types": ["Data"], "start_date": "1997-07-04", "stop_date": "1997-07-17", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/collection_lemmondata.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/data/collection_lemmondata.xml", "scraped_at": "2026-02-25T20:02:10.750027Z", "keywords": ["opacities"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mpf_mpim:schema::1.0", "title": "Mars Pathfinder Atmospheric Opacities", "description": "This is a PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Pathfinder"], "targets": ["Mars"], "instruments": ["mpim"], "instrument_hosts": ["Pathfinder"], "data_types": ["XML Schema"], "start_date": "1997-07-04", "stop_date": "1997-07-17", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/collection_lemmonxmlschema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mpf_mpim_bundle/xml_schema/collection_lemmonxmlschema.xml", "scraped_at": "2026-02-25T20:02:10.750031Z", "keywords": ["opacities"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msledl:document::1.1", "title": "MSLEDL Documents", "description": "This is a PDS4 document collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Science Laboratory"], "targets": ["Mars"], "instruments": ["Accelerometer"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Document"], "start_date": "2012-08-06", "stop_date": "2012-08-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/document/collection_msledl_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/document/collection_msledl_document.xml", "scraped_at": "2026-02-25T20:02:10.750037Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msledl:data::1.1", "title": "MSLEDL Collection", "description": "MSL EDL Reconstructed Atmospheric Profiles", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Science Laboratory"], "targets": ["Mars"], "instruments": ["Accelerometer"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Data"], "start_date": "2015-08-06", "stop_date": "2015-08-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/collection_msledl_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/data/collection_msledl_data.xml", "scraped_at": "2026-02-25T20:02:10.750043Z", "keywords": ["Mars Science Laboratory", "EDL", "Reconstruction", "Atmospheric Profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msledl:context::1.0", "title": "MSLEDL Context", "description": "This is a PDS4 Context Collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Science Laboratory"], "targets": ["Mars"], "instruments": ["Accelerometer"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Document"], "start_date": "2012-08-06", "stop_date": "2012-08-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/collection_msledl_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/context/collection_msledl_context.xml", "scraped_at": "2026-02-25T20:02:10.750047Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msledl:schema::1.1", "title": "MSLEDL Schema", "description": "This is a PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Science Laboratory"], "targets": ["Mars"], "instruments": ["Accelerometer"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["XML Schema"], "start_date": "2012-08-06", "stop_date": "2012-08-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/collection_msledl_xmlschema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/msledl_bundle/xml_schema/collection_msledl_xmlschema.xml", "scraped_at": "2026-02-25T20:02:10.750052Z", "keywords": ["Atmospheric Reconstruction"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_saturn_ionosphere:data_derived::1.1", "title": "Saturn Ionosphere Observations Collection", "description": "Cassini radio occultations of the Saturn ionosphere", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2005-05-03", "stop_date": "2013-05-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/collection_data_corss_saturn_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/data/collection_data_corss_saturn_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.750057Z", "keywords": ["Cassini Orbiter", "RSS", "Saturn"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_saturn_ionosphere:document::1.1", "title": "Saturn Ionosphere Document Collection", "description": "Cassini radio occultations of the Saturn ionosphere", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2005-05-03", "stop_date": "2013-05-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/document/collection_document_corss_saturn_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/document/collection_document_corss_saturn_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.750062Z", "keywords": ["Cassini Orbiter", "RSS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_saturn_ionosphere:context::1.1", "title": "Saturn Ionosphere Context Collection", "description": "Cassini radio occultations of the Saturn ionosphere", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": "2005-05-03", "stop_date": "2013-05-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/collection_context_corss_saturn_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/context/collection_context_corss_saturn_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.750067Z", "keywords": ["Cassini Orbiter", "RSS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_saturn_ionosphere:schema::1.0", "title": "Saturn Ionosphere Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["cors"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/collection_schema_corss_saturn_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_iono/xml_schema/collection_schema_corss_saturn_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.750071Z", "keywords": ["Cassini Orbiter", "RSS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:saturn_thermosphere_h2_density_temp:context::1.1", "title": "Structure of Saturn's Thermosphere from Stellar Occultations Context Collection", "description": "Molecular hydrogen and temperature profiles of Saturn's thermosphere from stellar occultations by Cassini/UVIS and CIRS", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["ULTRAVIOLET IMAGING SPECTROGRAPH for CO", "COMPOSITE INFRARED SPECTROMETER for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": "2005-04-13", "stop_date": "2017-08-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/collection_context_saturn_thermosphere_h2_density_temp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/context/collection_context_saturn_thermosphere_h2_density_temp.xml", "scraped_at": "2026-02-25T20:02:10.750076Z", "keywords": ["Cassini Orbiter", "UVIS", "CIRS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:saturn_thermosphere_h2_density_temp:data::1.0", "title": "Structure of Saturn's Thermosphere from Stellar Occultations Derived Data Collection", "description": "Molecular hydrogen and temperature profiles of Saturn's thermosphere from stellar occultations by Cassini/UVIS and CIRS", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["ULTRAVIOLET IMAGING SPECTROGRAPH for CO", "COMPOSITE INFRARED SPECTROMETER for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2005-04-13", "stop_date": "2017-08-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/collection_data_saturn_thermosphere_h2_density_temp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/data/collection_data_saturn_thermosphere_h2_density_temp.xml", "scraped_at": "2026-02-25T20:02:10.750081Z", "keywords": ["Cassini Orbiter", "UVIS", "CIRS", "Saturn"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:saturn_thermosphere_h2_density_temp:document::1.0", "title": "Structure of Saturn's Thermosphere from Stellar Occultations Document Collection", "description": "Molecular hydrogen and temperature profiles of Saturn's thermosphere from stellar occultations by Cassini/UVIS and CIRS", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["ULTRAVIOLET IMAGING SPECTROGRAPH for CO", "COMPOSITE INFRARED SPECTROMETER for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2005-04-13", "stop_date": "2017-08-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/document/collection_document_saturn_thermosphere_h2_density_temp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/document/collection_document_saturn_thermosphere_h2_density_temp.xml", "scraped_at": "2026-02-25T20:02:10.750086Z", "keywords": ["Cassini Orbiter", "UVIS", "CIRS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:saturn_thermosphere_h2_density_temp:schema::1.0", "title": "Structure of Saturn's Thermosphere from Stellar Occultations Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["ULTRAVIOLET IMAGING SPECTROGRAPH for CO", "COMPOSITE INFRARED SPECTROMETER for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/collection_schema_saturn_thermosphere_h2_density_temp.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/saturn_thermosphere/xml_schema/collection_schema_saturn_thermosphere_h2_density_temp.xml", "scraped_at": "2026-02-25T20:02:10.750092Z", "keywords": ["Cassini Orbiter", "UVIS", "CIRS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voroelden:context::1.0", "title": "Viking Orbiter 1 and 2 Radio Science Subsystem Occultation and Electron Density Context Collection", "description": "PDS4 context collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Viking Orbiter"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "Radio Science Subsystem"], "instrument_hosts": ["Viking Orbiter", "Viking Orbiter"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/collection_context_voroelden.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/context/collection_context_voroelden.xml", "scraped_at": "2026-02-25T20:02:10.750097Z", "keywords": ["Viking Orbiter", "RSS", "Mars", "radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voroelden:xml_schema::1.0", "title": "Viking Orbiter 1 and 2 Radio Science Subsystem Occultation and Electron Density Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Viking"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "Radio Science Subsystem"], "instrument_hosts": ["Viking Orbiter", "Viking Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/collection_schema_voroelden.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/xml_schema/collection_schema_voroelden.xml", "scraped_at": "2026-02-25T20:02:10.750103Z", "keywords": ["Viking Orbiter", "RSS", "Mars", "radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voroelden:data_derived::1.0", "title": "Viking Orbiters 1 and 2 Radio Occultation Electron Density Derived Data Collection", "description": "Derived data products from Viking Orbiter 1 and 2 radio occultations at Mars. Derived data products are electron density profiles from occultations.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Viking Orbiters 1 and 2"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "Radio Science Subsystem"], "instrument_hosts": ["Viking Orbiter 1", "Viking Orbiter 2"], "data_types": ["Data"], "start_date": "1977-01-17", "stop_date": "1978-08-20", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/collection_voroelden_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/data/collection_voroelden_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.750107Z", "keywords": ["radio occultation"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voroelden:document::1.0", "title": "Viking Orbiters 1 and 2 Radio Occultation Electron Density Document Collection", "description": "Documentation for derived data products from Viking Orbiter 1 and 2 radio occultations at Mars. Derived data products are electron density profiles from occultations.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Viking Orbiters 1 and 2"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "Radio Science Subsystem"], "instrument_hosts": ["Viking Orbiter 1", "Viking Orbiter 2"], "data_types": ["Document"], "start_date": "1977-01-17", "stop_date": "1978-08-20", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/document/collection_voroelden_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/voroelden/document/collection_voroelden_document.xml", "scraped_at": "2026-02-25T20:02:10.750112Z", "keywords": ["radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_saturn_radar_maps:context::1.1", "title": "Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Context Collection", "description": "2.2 cm thermal emission maps of Saturn obtained using Cassini's RADAR radiometer", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["RADAR for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": "2005-04-13", "stop_date": "2015-12-20", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/collection_context_cassini_saturn_radar_maps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/context/collection_context_cassini_saturn_radar_maps.xml", "scraped_at": "2026-02-25T20:02:10.750117Z", "keywords": ["Cassini Orbiter", "RADAR", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_saturn_radar_maps:data::1.0", "title": "Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Derived Data Collection", "description": "2.2 cm thermal emission maps of Saturn obtained using Cassini's RADAR radiometer", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["RADAR for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2005-09-23", "stop_date": "2011-03-20", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/collection_data_cassini_saturn_radar_maps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/data/collection_data_cassini_saturn_radar_maps.xml", "scraped_at": "2026-02-25T20:02:10.750122Z", "keywords": ["Cassini Orbiter", "RADAR", "map", "Saturn"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_saturn_radar_maps:document::1.1", "title": "Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Document Collection", "description": "2.2 cm thermal emission maps of Saturn obtained using Cassini's RADAR radiometer", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["RADAR for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2005-09-23", "stop_date": "2011-03-20", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/document/collection_document_cassini_saturn_radar_maps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/document/collection_document_cassini_saturn_radar_maps.xml", "scraped_at": "2026-02-25T20:02:10.750126Z", "keywords": ["Cassini Orbiter", "RADAR", "map", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_saturn_radar_maps:schema::1.0", "title": "Saturn's Thermal Emission at 2.2-cm from Cassini RADAR Radiometry Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["RADAR for CO"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/collection_schema_cassini_saturn_radar_maps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini_saturn_radar_maps/xml_schema/collection_schema_cassini_saturn_radar_maps.xml", "scraped_at": "2026-02-25T20:02:10.750132Z", "keywords": ["Cassini Orbiter", "RADAR", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cocirs_c2h4abund:data_derived::1.0", "title": "C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm", "description": "Ethylene (C2H4) mole fractions after the 2010 Saturn Storm", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["cocirs"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2011-03-03", "stop_date": "2012-04-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/collection_cocirs_c2h4abund.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/data/collection_cocirs_c2h4abund.xml", "scraped_at": "2026-02-25T20:02:10.750137Z", "keywords": ["abundances"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cocirs_c2h4abund:context::1.1", "title": "C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm", "description": "Ethylene (C2H4) mole fractions after the 2010 Saturn Storm", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["cocirs"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": "2011-03-03", "stop_date": "2012-04-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/collection_context_cocirs_c2h4abund.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/context/collection_context_cocirs_c2h4abund.xml", "scraped_at": "2026-02-25T20:02:10.750141Z", "keywords": ["abundances"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cocirs_c2h4abund:xml_schema::1.0", "title": "C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm", "description": "This is a PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["cocirs"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": "2011-03-03", "stop_date": "2012-04-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/collection_schema_cocirs_c2h4abund.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/xml_schema/collection_schema_cocirs_c2h4abund.xml", "scraped_at": "2026-02-25T20:02:10.750145Z", "keywords": ["abundances"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cocirs_c2h4abund:document::1.0", "title": "C2H4 mole fraction and temperature profiles after the 2010 Saturn Storm", "description": "Ethylene (C2H4) mole fractions after the 2010 Saturn Storm", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["cocirs"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2011-03-03", "stop_date": "2012-04-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/document/collection_document_cocirs_c2h4abund.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cocirs_c2h4abund/document/collection_document_cocirs_c2h4abund.xml", "scraped_at": "2026-02-25T20:02:10.750149Z", "keywords": ["abundances"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:coiss_zonal_winds:document::1.0", "title": "Saturn Zonal Winds Document Collection", "description": "Saturn's zonal wind profile in 2004-2009 from Cassini ISS images", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle", "Imaging Science Subsystem - Wide Angle"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2004-09-06", "stop_date": "2009-01-12", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/document/collection_document_coiss_zonal_winds.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/document/collection_document_coiss_zonal_winds.xml", "scraped_at": "2026-02-25T20:02:10.750154Z", "keywords": ["Cassini Orbiter", "ISS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:coiss_zonal_winds:schema::1.0", "title": "Saturn Zonal Winds Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle", "Imaging Science Subsystem - Wide Angle"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/collection_schema_coiss_zonal_winds.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/xml_schema/collection_schema_coiss_zonal_winds.xml", "scraped_at": "2026-02-25T20:02:10.750159Z", "keywords": ["Cassini Orbiter", "ISS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:coiss_zonal_winds:context::1.0", "title": "Saturn Zonal Winds Context Collection", "description": "Saturn's zonal wind profile in 2004-2009 from Cassini ISS images", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle", "Imaging Science Subsystem - Wide Angle"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": "2004-09-06", "stop_date": "2009-01-12", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/collection_context_coiss_zonal_winds.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/context/collection_context_coiss_zonal_winds.xml", "scraped_at": "2026-02-25T20:02:10.750163Z", "keywords": ["Cassini Orbiter", "ISS", "Saturn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:coiss_zonal_winds:data_derived::1.0", "title": "Saturn Zonal Winds Observarions Collection", "description": "Saturn's zonal wind profile in 2004-2009 from Cassini ISS images", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle", "Imaging Science Subsystem - Wide Angle"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2004-09-06", "stop_date": "2009-01-12", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/collection_data_coiss_zonal_winds.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/coiss_zonal_winds/data/collection_data_coiss_zonal_winds.xml", "scraped_at": "2026-02-25T20:02:10.750169Z", "keywords": ["Cassini Orbiter", "ISS", "Saturn"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hot_ion_atmos_escape:context::1.0", "title": "Hot Ion Atmospheric Escape Data Context Collection", "description": "Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Hot Ion Atmospheric Escape Data"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": "2015-01-01", "stop_date": "2019-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/collection_hot_ion_atmos_escape_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/context/collection_hot_ion_atmos_escape_context.xml", "scraped_at": "2026-02-25T20:02:10.750173Z", "keywords": ["context"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hot_ion_atmos_escape:data_derived::1.0", "title": "Collated Hot Ion Atmospheric Escape Data Derived Data Collection", "description": "Collection of derived data (from model fits and laboratory experiments) pertaining to hot ion collisions and atmospheric escape", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Hot Ion Atmospheric Escape Data"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2015-01-01", "stop_date": "2019-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/collection_hot_ion_atmos_escape_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/data_derived/collection_hot_ion_atmos_escape_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.750177Z", "keywords": ["Calibrated Data"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hot_ion_atmos_escape:document::1.0", "title": "Hot Ion Atmospheric Escape Data Document Collection", "description": "Collection of documents pertaining to hot ion collisions and atmospheric escape", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Hot Ion Atmospheric Escape Data"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "2015-01-01", "stop_date": "2019-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/document/collection_hot_ion_atmos_escape_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/document/collection_hot_ion_atmos_escape_document.xml", "scraped_at": "2026-02-25T20:02:10.750180Z", "keywords": ["Document"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hot_ion_atmos_escape:xml_schema::1.0", "title": "Hot Ion Atmospheric Escape Data XML Schema Collection", "description": "XML Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Hot Ion Atmospheric Escape Data"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": "2015-01-01", "stop_date": "2019-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/collection_hot_ion_atmos_escape_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/hot_ion_atmos_escape/xml_schema/collection_hot_ion_atmos_escape_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.750184Z", "keywords": ["context"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:irtf_io_photometry:context::1.0", "title": "IRTF Io Photometry Context Collection", "description": "IRTF photometry of Io", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["IRTF Io Photometry"], "targets": ["Io"], "instruments": ["IRTF 3.0-Meter Telescope"], "instrument_hosts": ["irtf"], "data_types": ["Context"], "start_date": "1983-02-18", "stop_date": "1993-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/collection_irtf_io_photometry_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/context/collection_irtf_io_photometry_context.xml", "scraped_at": "2026-02-25T20:02:10.750236Z", "keywords": ["IRTF", "photometry", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:irtf_io_photometry:data_derived::1.1", "title": "IRTF Io Photometry Data Collection", "description": "IRTF photometry of Io", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["IRTF Io Photometry"], "targets": ["Io"], "instruments": ["IRTF 3.0-Meter Telescope"], "instrument_hosts": ["irtf"], "data_types": ["Data"], "start_date": "1983-02-18", "stop_date": "1993-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/collection_irtf_io_photometry_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/data_derived/collection_irtf_io_photometry_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.750247Z", "keywords": ["IRTF", "photometry", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:irtf_io_photometry:document::1.0", "title": "IRTF Io Photometry Document Collection", "description": "IRTF photometry of Io", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["IRTF Io Photometry"], "targets": ["Io"], "instruments": ["IRTF 3.0-Meter Telescope"], "instrument_hosts": ["irtf"], "data_types": ["Document"], "start_date": "1983-02-18", "stop_date": "1993-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/document/collection_irtf_io_photometry_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/document/collection_irtf_io_photometry_document.xml", "scraped_at": "2026-02-25T20:02:10.750253Z", "keywords": ["IRTF", "photometry", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:irtf_io_photometry:schema::1.0", "title": "IRTF Io Photometry XML Schema Collection", "description": "IRTF photometry of Io", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["IRTF Io Photometry"], "targets": ["Io"], "instruments": ["IRTF 3.0-Meter Telescope"], "instrument_hosts": ["irtf"], "data_types": ["XML Schema"], "start_date": "1983-02-18", "stop_date": "1993-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/collection_irtf_io_photometry_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/irtf_io_photometry/schema/collection_irtf_io_photometry_schema.xml", "scraped_at": "2026-02-25T20:02:10.750258Z", "keywords": ["IRTF", "photometry", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lowell_uranus-neptune-photometry:context::1.0", "title": "Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Context Collection", "description": "Context collection for photometric observations of Uranus and Neptune (1972-2016) in the Str\u00f6mgren b (472 nm) and y (551 nm) filters at Lowell Observatory. Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune from 1972-2016.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Uranus and Neptune Photometry"], "targets": ["Uranus", "Neptune"], "instruments": ["Lowell 21-in Reflector"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["Context"], "start_date": "1972-01-17", "stop_date": "2016-10-05", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/collection_lowell_uranus-neptune-photometry_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/context/collection_lowell_uranus-neptune-photometry_context.xml", "scraped_at": "2026-02-25T20:02:10.750264Z", "keywords": ["uranus", "neptune", "photometry"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lowell_uranus-neptune-photometry:data::1.0", "title": "Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Data Collection", "description": "Data collection for photometric observations of Uranus and Neptune (1972-2016) in the Str\u00f6mgren b (472 nm) and y (551 nm) filters at Lowell Observatory. Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune from 1972-2016.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Uranus and Neptune Photometry"], "targets": ["Uranus", "Neptune"], "instruments": ["Lowell 21-in Reflector"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["Data"], "start_date": "1972-01-17", "stop_date": "2016-10-05", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/collection_lowell_uranus-neptune-photometry_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/data/collection_lowell_uranus-neptune-photometry_data.xml", "scraped_at": "2026-02-25T20:02:10.750268Z", "keywords": ["uranus", "neptune", "photometry"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lowell_uranus-neptune-photometry:document::1.0", "title": "Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Document Collection", "description": "Document collection for photometric observations of Uranus and Neptune (1972-2016) in the Str\u00f6mgren b (472 nm) and y (551 nm) filters at Lowell Observatory. Observations recorded mainly seasonal variations of disk-integrated albedos of these objects. This bundle includes 360 observations of Uranus and 433 observations of Neptune from 1972-2016.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Uranus and Neptune Photometry"], "targets": ["Uranus", "Neptune"], "instruments": ["Lowell 21-in Reflector"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["Document"], "start_date": "1972-01-17", "stop_date": "2016-10-05", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/document/collection_lowell_uranus-neptune-photometry_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/document/collection_lowell_uranus-neptune-photometry_document.xml", "scraped_at": "2026-02-25T20:02:10.750273Z", "keywords": ["uranus", "neptune", "photometry"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lowell_uranus-neptune-photometry:schema::1.0", "title": "Lowell Observatory Uranus and Neptune b (472 nm) and y (551 nm) Photometry (1972-2016) Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Uranus and Neptune Photometry"], "targets": ["Uranus", "Neptune"], "instruments": ["Lowell 21-in Reflector"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["XML Schema"], "start_date": "1972-01-17", "stop_date": "2016-10-05", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/collection_schema_lowell_uranus-neptune-photometry.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lowell_uranus-neptune-photometry/xml_schema/collection_schema_lowell_uranus-neptune-photometry.xml", "scraped_at": "2026-02-25T20:02:10.750278Z", "keywords": ["Uranus", "Neptune", "Photometry"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:context::1.0", "title": "Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Context Collection", "description": "Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Mars Global Surveyor", "NASA Deep Space Network"], "data_types": ["Context"], "start_date": "2004-10-10", "stop_date": "2005-02-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/collection_mgs-rss_nocturnal-mixed-layers_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/context/collection_mgs-rss_nocturnal-mixed-layers_context.xml", "scraped_at": "2026-02-25T20:02:10.750285Z", "keywords": ["radio occultation", "nighttime convection", "polar clouds"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:data_derived::1.0", "title": "Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Derived Data Collection", "description": "Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Mars Global Surveyor", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "2004-10-10", "stop_date": "2005-02-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/collection_mgs-rss_nocturnal-mixed-layers_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/data_derived/collection_mgs-rss_nocturnal-mixed-layers_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.750292Z", "keywords": ["radio occultation", "nighttime convection", "polar clouds"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:document::1.0", "title": "Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties Derived Document Collection", "description": "Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Mars Global Surveyor", "NASA Deep Space Network"], "data_types": ["Document"], "start_date": "2004-10-10", "stop_date": "2005-02-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/document/collection_mgs-rss_nocturnal-mixed-layers_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/document/collection_mgs-rss_nocturnal-mixed-layers_document.xml", "scraped_at": "2026-02-25T20:02:10.750300Z", "keywords": ["radio occultation", "nighttime convection", "polar clouds"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs-rss_nocturnal-mixed-layers:xml_schema::1.0", "title": "Mars Global Surveyor Radio Occultation Nocturnal Mixed Layer Properties XML Schema Collection", "description": "Properties of Nocturnal Mixed Layers (NMLs) derived from Mars Global Surveyor (MGS) Radio Science (RS) temperature-pressure profiles (TPPs).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor"], "targets": ["Mars"], "instruments": ["Radio Science Subsystem", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Mars Global Surveyor", "NASA Deep Space Network"], "data_types": ["XML Schema"], "start_date": "2004-10-10", "stop_date": "2005-02-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/collection_mgs-rss_nocturnal-mixed-layers_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs-rss_nocturnal-mixed-layers/xml_schema/collection_mgs-rss_nocturnal-mixed-layers_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.750306Z", "keywords": ["radio occultation", "nighttime convection", "polar clouds"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:calibration::1.0", "title": "MGS TES Atmospheric Recalibration Calibration Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Calibration"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/collection_mgs_tes_recalib_atmos_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/calibration/collection_mgs_tes_recalib_atmos_calibration.xml", "scraped_at": "2026-02-25T20:02:10.750311Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:document::1.3", "title": "MGS TES Atmospheric Recalibration Document Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Document"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/collection_mgs_tes_recalib_atmos_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/collection_mgs_tes_recalib_atmos_document.xml", "scraped_at": "2026-02-25T20:02:10.750316Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:data_calibrated::1.0", "title": "MGS TES Atmospheric Recalibration Calibrated Data Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Data"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/collection_mgs_tes_recalib_atmos_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_calibrated/collection_mgs_tes_recalib_atmos_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.750321Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:context::1.0", "title": "MGS TES Atmospheric Recalibration Context Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Context"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/collection_mgs_tes_recalib_atmos_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/context/collection_mgs_tes_recalib_atmos_context.xml", "scraped_at": "2026-02-25T20:02:10.750325Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:xml_schema::1.0", "title": "MGS TES Atmospheric Recalibration XML Schema Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["XML Schema"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/collection_mgs_tes_recalib_atmos_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/xml_schema/collection_mgs_tes_recalib_atmos_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.750330Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_atmos-opacity::1.0", "title": "MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Data"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml", "scraped_at": "2026-02-25T20:02:10.750334Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_surf-emissivity::1.0", "title": "MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Data"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml", "scraped_at": "2026-02-25T20:02:10.750339Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corsstpp:document::2.0", "title": "Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Document Collection", "description": "Atmospheric profiles of Titan", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["cors"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2006-03-19", "stop_date": "2009-06-22", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/document/collection_corsstpp_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/document/collection_corsstpp_document.xml", "scraped_at": "2026-02-25T20:02:10.750344Z", "keywords": ["Titan", "radio"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corsstpp:schema::1.0", "title": "Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Schema Collection", "description": "This PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["cors"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/collection_corsstpp_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/xml_schema/collection_corsstpp_schema.xml", "scraped_at": "2026-02-25T20:02:10.750375Z", "keywords": ["Cassini Orbiter", "RSS", "Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corsstpp:context::1.0", "title": "Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Context Collection", "description": "Atmospheric profiles of Titan", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["cors"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": "2006-03-19", "stop_date": "2009-06-22", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/collection_corsstppcontext.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/context/collection_corsstppcontext.xml", "scraped_at": "2026-02-25T20:02:10.750379Z", "keywords": ["Titan", "radio"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corsstpp:data_derived::2.0", "title": "Cassini Orbiter RSS Neutral Atmosphere T-P profiles for Titan Derived Data Collection", "description": "Atmospheric profiles of Titan", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["cors"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2006-03-19", "stop_date": "2009-06-22", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/collection_corsstppdata.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_profiles_bundle/data/collection_corsstppdata.xml", "scraped_at": "2026-02-25T20:02:10.750384Z", "keywords": ["Titan", "radio"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wt_threshold_speed:context::1.0", "title": "Wind Tunnel Threshold Speed Context Collection", "description": "Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Planetary Boundary Layer Wind Tunnel Particle Threshold"], "targets": [], "instruments": ["Mars Wind Tunnel", "Titan Wind Tunnel", "Venus Wind Tunnel", "Carousel Wind Tunnel", "Iowa State University Wind Tunnel", "Aarhus Mars Wind Tunnel (AWTSI-2004)", "Aarhus Mars Wind Tunnel (AWTSII-2010)", "Aarhus Sloped Tunnel", "Trent University, Trent Environmental Wind Tunnel", "Bagnold Tunnel", "Chepil Tunnel", "Guelph Tunnel", "Belly Tunnel", "Texas Tech Tunnel", "Shapotou Tunnel", "Logie Tunnel", "Pietersma Portable Tunnel", "Butterfield Tunnel", "ICE Tunnel", "Dunhuang Portable Tunnel", "USDA-ARS Tunnel"], "instrument_hosts": ["Planetary Aeolian Laboratory", "Iowa State University Department of Aeorospace Engineering", "Aarhus University Mars Simulation Lab", "Trent University Trent Environmental Wind Tunnel Facility", "Hydraulics Laboratory Imperial College, London", "The High Plains Wind Erosion Laboratory, Kansas State University", "Wind Erosion Laboratory, Dept. Geography, University of Guelph", "Richmond Field Station, University of California,", "Department of Agricultural Engineering, Texas Tech University", "Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy", "Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium", "Whitehead Aeronautical Laboratory, Queen Mary University of London, UK", "Center for Eremology, Ghent University, Belgium", "USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"], "data_types": ["Context"], "start_date": "1970-01-01", "stop_date": "2017-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/collection_wt_threshold_speed_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/context/collection_wt_threshold_speed_context.xml", "scraped_at": "2026-02-25T20:02:10.750394Z", "keywords": ["Wind Tunnel", "threshold speed"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wt_threshold_speed:data::1.0", "title": "Wind Tunnel Threshold Speed Document Collection", "description": "Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Planetary Boundary Layer Wind Tunnel Particle Threshold"], "targets": [], "instruments": ["Mars Wind Tunnel", "Titan Wind Tunnel", "Venus Wind Tunnel", "Carousel Wind Tunnel", "Iowa State University Wind Tunnel", "Aarhus Mars Wind Tunnel (AWTSI-2004)", "Aarhus Mars Wind Tunnel (AWTSII-2010)", "Aarhus Sloped Tunnel", "Trent University, Trent Environmental Wind Tunnel", "Bagnold Tunnel", "Chepil Tunnel", "Guelph Tunnel", "Belly Tunnel", "Texas Tech Tunnel", "Shapotou Tunnel", "Logie Tunnel", "Pietersma Portable Tunnel", "Butterfield Tunnel", "ICE Tunnel", "Dunhuang Portable Tunnel", "USDA-ARS Tunnel"], "instrument_hosts": ["Planetary Aeolian Laboratory", "Iowa State University Department of Aeorospace Engineering", "Aarhus University Mars Simulation Lab", "Trent University Trent Environmental Wind Tunnel Facility", "Hydraulics Laboratory Imperial College, London", "The High Plains Wind Erosion Laboratory, Kansas State University", "Wind Erosion Laboratory, Dept. Geography, University of Guelph", "Richmond Field Station, University of California,", "Department of Agricultural Engineering, Texas Tech University", "Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy", "Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium", "Whitehead Aeronautical Laboratory, Queen Mary University of London, UK", "Center for Eremology, Ghent University, Belgium", "USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"], "data_types": ["Data"], "start_date": "1970-01-01", "stop_date": "2017-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/collection_wt_threshold_speed_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/data/collection_wt_threshold_speed_data.xml", "scraped_at": "2026-02-25T20:02:10.750403Z", "keywords": ["Wind Tunnel", "threshold speed"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wt_threshold_speed:document::1.0", "title": "Wind Tunnel Threshold Speed Document Collection", "description": "Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Planetary Boundary Layer Wind Tunnel Particle Threshold"], "targets": [], "instruments": ["Mars Wind Tunnel", "Titan Wind Tunnel", "Venus Wind Tunnel", "Carousel Wind Tunnel", "Iowa State University Wind Tunnel", "Aarhus Mars Wind Tunnel (AWTSI-2004)", "Aarhus Mars Wind Tunnel (AWTSII-2010)", "Aarhus Sloped Tunnel", "Trent University, Trent Environmental Wind Tunnel", "Bagnold Tunnel", "Chepil Tunnel", "Guelph Tunnel", "Belly Tunnel", "Texas Tech Tunnel", "Shapotou Tunnel", "Logie Tunnel", "Pietersma Portable Tunnel", "Butterfield Tunnel", "ICE Tunnel", "Dunhuang Portable Tunnel", "USDA-ARS Tunnel"], "instrument_hosts": ["Planetary Aeolian Laboratory", "Iowa State University Department of Aeorospace Engineering", "Aarhus University Mars Simulation Lab", "Trent University Trent Environmental Wind Tunnel Facility", "Hydraulics Laboratory Imperial College, London", "The High Plains Wind Erosion Laboratory, Kansas State University", "Wind Erosion Laboratory, Dept. Geography, University of Guelph", "Richmond Field Station, University of California,", "Department of Agricultural Engineering, Texas Tech University", "Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy", "Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium", "Whitehead Aeronautical Laboratory, Queen Mary University of London, UK", "Center for Eremology, Ghent University, Belgium", "USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"], "data_types": ["Data"], "start_date": "1970-01-01", "stop_date": "2017-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document/collection_wt_threshold_speed_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document/collection_wt_threshold_speed_document.xml", "scraped_at": "2026-02-25T20:02:10.750412Z", "keywords": ["Wind Tunnel", "threshold speed"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wt_threshold_speed:document_scans::1.0", "title": "Wind Tunnel Threshold Speed Document Collection", "description": "Collection of scanned figures relating to the wind tunnel threshold speed data from boundary layer wind tunnels", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Planetary Boundary Layer Wind Tunnel Particle Threshold"], "targets": [], "instruments": ["Mars Wind Tunnel", "Titan Wind Tunnel", "Venus Wind Tunnel", "Carousel Wind Tunnel", "Iowa State University Wind Tunnel", "Aarhus Mars Wind Tunnel (AWTSI-2004)", "Aarhus Mars Wind Tunnel (AWTSII-2010)", "Aarhus Sloped Tunnel", "Trent University, Trent Environmental Wind Tunnel", "Bagnold Tunnel", "Chepil Tunnel", "Guelph Tunnel", "Belly Tunnel", "Texas Tech Tunnel", "Shapotou Tunnel", "Logie Tunnel", "Pietersma Portable Tunnel", "Butterfield Tunnel", "ICE Tunnel", "Dunhuang Portable Tunnel", "USDA-ARS Tunnel"], "instrument_hosts": ["Planetary Aeolian Laboratory", "Iowa State University Department of Aeorospace Engineering", "Aarhus University Mars Simulation Lab", "Trent University Trent Environmental Wind Tunnel Facility", "Hydraulics Laboratory Imperial College, London", "The High Plains Wind Erosion Laboratory, Kansas State University", "Wind Erosion Laboratory, Dept. Geography, University of Guelph", "Richmond Field Station, University of California,", "Department of Agricultural Engineering, Texas Tech University", "Shapotou Desert Experimental Research Station, Institute of Desert Research, Chinese Academy", "Laboratory of Experimental Geomorphology, Catholic University, Leuven, Belgium", "Whitehead Aeronautical Laboratory, Queen Mary University of London, UK", "Center for Eremology, Ghent University, Belgium", "USDA-ARS Cropping Systems Research Laboratory, Wind Erosion and Water Conservation Research Unit, Lubbock, TX"], "data_types": ["Data"], "start_date": "1970-01-01", "stop_date": "2017-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document_scans/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document_scans/collection_wt_threshold_speed_document_scans.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/wt_threshold_speed/document_scans/collection_wt_threshold_speed_document_scans.xml", "scraped_at": "2026-02-25T20:02:10.750423Z", "keywords": ["Wind Tunnel", "threshold speed"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_calibrated::3.0", "title": "Mars 2020 MOXIE Calibrated Data Collection", "description": "Mars 2020 MOXIE Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2021-11-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.750428Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:context::3.0", "title": "Mars 2020 MOXIE Context Collection", "description": "Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Context"], "start_date": "2021-02-22", "stop_date": "2021-11-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "scraped_at": "2026-02-25T20:02:10.750433Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_derived::3.0", "title": "Mars 2020 MOXIE Derived Data Collection", "description": "Mars 2020 MOXIE Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2021-11-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.750437Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:document::3.0", "title": "Mars 2020 MOXIE Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": "2021-02-22", "stop_date": "2021-11-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "scraped_at": "2026-02-25T20:02:10.750442Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_raw::3.0", "title": "Mars 2020 MOXIE Raw Data Collection", "description": "Mars 2020 MOXIE Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2021-11-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.750446Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:document::13.0", "title": "APSS TWINS Document Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml", "scraped_at": "2026-02-25T20:02:10.750450Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_raw::13.0", "title": "APSS TWINS Raw Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.750453Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_calibrated::13.0", "title": "APSS TWINS Calibrated Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.750458Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_derived::13.0", "title": "APSS TWINS Derived Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml", "scraped_at": "2026-02-25T20:02:10.750461Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:document::13.0", "title": "APSS PS Document Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml", "scraped_at": "2026-02-25T20:02:10.750465Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:data_raw::13.0", "title": "APSS PS Raw Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-12-11", "stop_date": "2022-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.750468Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:data_calibrated::13.0", "title": "APSS PS Calibrated Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-12-11", "stop_date": "2022-03-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.750472Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pvo.orse:context::1.0", "title": "Pioneer Venus Orbiter Radio Science Subsystem Occultation and Electron Density Context Collection", "description": "PDS4 context collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Pioneer Venus Orbiter"], "targets": ["Venus"], "instruments": ["Orbiter Radio Science Experiment"], "instrument_hosts": ["Pioneer Venus Orbiter"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/collection_context_pvoro.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/context/collection_context_pvoro.xml", "scraped_at": "2026-02-25T20:02:10.750476Z", "keywords": ["Viking Orbiter", "RSS", "Mars", "radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pvo.orse:xml_schema::1.0", "title": "Pioneer Venus Orbiter Radio Science Subsystem Occultation and Electron Density Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Pioneer Venus Orbiter"], "targets": ["Venus"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Pioneer Venus Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/collection_schema_pvoro.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/xml_schema/collection_schema_pvoro.xml", "scraped_at": "2026-02-25T20:02:10.750482Z", "keywords": ["Pioneer Venus Orbiter", "RSS", "Venus", "radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pvo.orse:document::1.0", "title": "Pioneer Venus Orbiter Radio Occultation Profiles Document Collection", "description": "Documentation for derived data products from Pioneer Venus Orbiter radio occultations at Venus. Derived data products include: (A) frequency data from the NSSDC, (B) Venus ionospheric electron density profiles from the NSSDC, (C) Venus neutral atmospheric profiles from the NSSDC, (D) Venus ionospheric electron density profiles from graphical sources, and (E) Venus neutral atmospheric profiles from graphical sources.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Pioneer Venus"], "targets": ["Venus"], "instruments": ["Radio Science Experiment"], "instrument_hosts": ["Pioneer Venus Orbiter"], "data_types": ["Document"], "start_date": "1978-12-05", "stop_date": "1989-10-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/document/collection_pvoro_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/document/collection_pvoro_document.xml", "scraped_at": "2026-02-25T20:02:10.750486Z", "keywords": ["radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pvo.orse:data_derived::1.0", "title": "Pioneer Venus Orbiter Radio Occultation Profiles Derived Data Collection", "description": "Derived data products from Pioneer Venus Orbiter radio occultations at Venus. Derived data products include: (A) frequency data from the NSSDC, (B) Venus ionospheric electron density profiles from the NSSDC, (C) Venus neutral atmospheric profiles from the NSSDC, (D) Venus ionospheric electron density profiles from graphical sources, and (E) Venus neutral atmospheric profiles from graphical sources.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Pioneer Venus"], "targets": ["Venus"], "instruments": ["Radio Science Experiment"], "instrument_hosts": ["Pioneer Venus Orbiter"], "data_types": ["Data"], "start_date": "1978-12-05", "stop_date": "1989-10-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/collection_pvoro_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pvoro_bundle/data_derived/collection_pvoro_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.750492Z", "keywords": ["radio occultation"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:document::14.0", "title": "APSS PS Document Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml", "scraped_at": "2026-02-25T20:02:10.753422Z", "keywords": ["Mars", "weather", "meteorology", "environment", "pressure"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:data_raw::14.0", "title": "APSS PS Raw Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-12-11", "stop_date": "2022-05-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753428Z", "keywords": ["Mars", "weather", "meteorology", "environment", "pressure"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:data_calibrated::14.0", "title": "APSS PS Calibrated Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-12-11", "stop_date": "2022-05-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753433Z", "keywords": ["Mars", "weather", "meteorology", "environment", "pressure"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:document::14.0", "title": "APSS TWINS Document Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml", "scraped_at": "2026-02-25T20:02:10.753438Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_raw::14.0", "title": "APSS TWINS Raw Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-05-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753445Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_calibrated::14.0", "title": "APSS TWINS Calibrated Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-05-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753450Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_derived::14.0", "title": "APSS TWINS Derived Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-05-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753455Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_mission:document_collection::1.0", "title": "PDS4 LADEE Mission Document Collection", "description": "LADEE Mission Document Collection created by ATMOS in 2014", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon", "Dust"], "instruments": ["UVS", "NMS", "LDEX"], "instrument_hosts": ["LADEE"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/collection_mission_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/collection_mission_document.xml", "scraped_at": "2026-02-25T20:02:10.753459Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_mission:xml_schema_collection::1.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) XML Schema Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) XML Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon", "Dust"], "instruments": ["LDEX", "UVS", "NMS"], "instrument_hosts": ["LADEE"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/collection_mission_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/collection_mission_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.753464Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_mission:context_collection::1.0", "title": "LADEE Mission Context Collection", "description": "This is the context collection for the LADEE Mission bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon", "Dust"], "instruments": ["LDEX", "UVS", "NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/collection_mission_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/collection_mission_context.xml", "scraped_at": "2026-02-25T20:02:10.753469Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_acc:context::1.0", "title": "PDS4 MAVEN ACC Context Collection", "description": "This PDS4 context_collection file was created in 2015", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MAVEN"], "targets": ["MARS"], "instruments": ["ACC"], "instrument_hosts": ["MAVEN"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/context/collection_maven_acc_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/context/collection_maven_acc_context.xml", "scraped_at": "2026-02-25T20:02:10.753473Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_acc:document::1.0", "title": "MAVEN ACC Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the MAVEN ACC bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/document/collection_acc_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/document/collection_acc_document.xml", "scraped_at": "2026-02-25T20:02:10.753477Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_acc:xml_schema::1.0", "title": "MAVEN ACC xml_schema Collection", "description": "Collection of schemas and schematron files used in this archive.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.753482Z", "keywords": ["Accelerometer", "MAVEN", "Mars", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_acc:profile::2.0", "title": "ACCEL L3 Data Collection", "description": "Data acquired from the IMU and RWA during the MAVEN mission and processed by the ACCEL team.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["ACCEL"], "instrument_hosts": ["MAVEN"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/l3/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/l3/collection_accel_l3_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/acc_bundle/l3/collection_accel_l3_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753486Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_uvs:calibration::1.0", "title": "Galileo Orbiter Ultraviolet Spectrometer Calibration Collection", "description": "Calibration collection for the Galileo Orbiter UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["UVS"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/calibration_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/calib/calibration_collection.xml", "scraped_at": "2026-02-25T20:02:10.753489Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_uvs:document::1.0", "title": "Galileo Orbiter Ultraviolet Spectrometer Document Collection", "description": "Document collection for the Galileo Orbiter UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["UVS"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/document/document_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/document/document_collection.xml", "scraped_at": "2026-02-25T20:02:10.753492Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_uvs:data_euv::1.0", "title": "Galileo Orbiter Ultraviolet Spectrometer (UVS) data_euv collection file", "description": "EUV data collection for the Galileo Orbiter UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["UVS"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1995-12-08", "stop_date": "2002-09-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/data_gouvs_euv_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/euv/data_gouvs_euv_collection.xml", "scraped_at": "2026-02-25T20:02:10.753496Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_uvs:geometry_uvs_foot::1.0", "title": "Galileo Orbiter Ultraviolet Spectrometer (UVS) geometry_uvs_foot collection file", "description": "GEOMETRY UVS FOOT collection for the Galileo Orbiter UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["UVS"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Geometry"], "start_date": "1995-12-08", "stop_date": "1999-06-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_uvs_foot_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_uvs_foot_collection.xml", "scraped_at": "2026-02-25T20:02:10.753500Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_uvs:geometry_uvs_geo::1.0", "title": "Galileo Orbiter Ultraviolet Spectrometer (UVS) geometry_uvs_geo collection file", "description": "GEOMETRY UVS GEO collection for the Galileo Orbiter UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["UVS"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Geometry"], "start_date": "1995-12-08", "stop_date": "1999-06-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_uvs_geo_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_uvs_geo_collection.xml", "scraped_at": "2026-02-25T20:02:10.753504Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_uvs:geometry_euv::1.0", "title": "Galileo Orbiter Ultraviolet Spectrometer (UVS) geometry_euv collection file", "description": "GEOMETRY EUV collection for the Galileo Orbiter UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["UVS"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Geometry"], "start_date": "1995-12-08", "stop_date": "2002-09-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_euv_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/geometry/geometry_gouvs_euv_collection.xml", "scraped_at": "2026-02-25T20:02:10.753507Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_uvs:data_uvs_dat::1.0", "title": "Galileo Orbiter Ultraviolet Spectrometer (UVS) data_uvs_dat collection file", "description": "UVS DAT data collection for the Galileo Orbiter UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["UVS"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1995-12-08", "stop_date": "1999-06-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/data_uvs_dat_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_uvs_bundle/uvs/data_uvs_dat_collection.xml", "scraped_at": "2026-02-25T20:02:10.753511Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vg_uvs:calibration::1.0", "title": "Voyager Ultraviolet Spectrometer (UVS) Calibration Collection", "description": "Calibration collection for Voyager 1 UVS and Voyager 2 UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["VOYAGER"], "targets": ["JUPITER", "SATURN", "URANUS", "NEPTUNE"], "instruments": ["UVS", "UVS"], "instrument_hosts": ["VOYAGER 1", "VOYAGER 2"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/calibration_vguvs_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/calibration/calibration_vguvs_collection.xml", "scraped_at": "2026-02-25T20:02:10.753516Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vg_uvs:data_raw::1.0", "title": "Voyager Ultraviolet Spectrometer (UVS) Data collection", "description": "Data collection for Voyager 1 UVS and Voyager 2 UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["VOYAGER"], "targets": ["JUPITER", "SATURN", "URANUS", "NEPTUNE"], "instruments": ["UVS", "UVS"], "instrument_hosts": ["VOYAGER 1", "VOYAGER 2"], "data_types": ["Data"], "start_date": "1977-08-20", "stop_date": "1989-10-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/data_vguvs_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/data/data_vguvs_collection.xml", "scraped_at": "2026-02-25T20:02:10.753521Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vg_uvs:document::1.0", "title": "Voyager 1 and 2 Ultraviolet Spectrometer Document Collection", "description": "Document collection for the Voyager 1 and 2 UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["VOYAGER"], "targets": ["JUPITER", "SATURN", "URANUS", "NEPTUNE"], "instruments": ["UVS", "UVS"], "instrument_hosts": ["VOYAGER 1", "VOYAGER 2"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/document/document_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/vg_uvs_bundle/document/document_collection.xml", "scraped_at": "2026-02-25T20:02:10.753527Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_ppr:document::1.0", "title": "Galileo Orbiter Photopolarimeter Radiometer Document Collection", "description": "Document collection for the Galileo Orbiter PPR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["PPR"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/document/document_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/document/document_collection.xml", "scraped_at": "2026-02-25T20:02:10.753532Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_ppr:geometry::1.0", "title": "Galileo Orbiter Photopolarimeter Radiometer (PPR) geometry collection file", "description": "GEOMETRY collection for the Galileo Orbiter PPR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter"], "instruments": ["PPR"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Geometry"], "start_date": "1996-06-26", "stop_date": "1997-11-08", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/geometry_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/geometry/geometry_collection.xml", "scraped_at": "2026-02-25T20:02:10.753537Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_ppr:data_rdr::1.0", "title": "Galileo Orbiter Photopolarimeter Radiometer (PPR) data_rdr collection file", "description": "RDR data collection for the Galileo Orbiter PPR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter", "Callisto", "Europa", "Ganymede", "Io", "GLL PCT", "PPR RCT"], "instruments": ["PPR"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1996-06-26", "stop_date": "1997-11-08", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/data_rdr_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/rdr/data_rdr_collection.xml", "scraped_at": "2026-02-25T20:02:10.753542Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_ppr:data_redr::1.0", "title": "Galileo Orbiter Photopolarimeter Radiometer (PPR) data_redr collection file", "description": "R_EDR data collection for the Galileo Orbiter PPR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO ORBITER"], "targets": ["Jupiter", "Callisto", "Europa", "Ganymede", "Io", "GLL PCT", "PPR RCT"], "instruments": ["PPR"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1996-06-26", "stop_date": "1997-11-08", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/data_redr_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_ppr_bundle/r_edr/data_redr_collection.xml", "scraped_at": "2026-02-25T20:02:10.753547Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims:l1a::1.0", "title": "NGIMS Raw Data Collection", "description": "Raw data acquired from the NGIMS instrument during its primary mission. No calibrations, corrections, or interpretations are applied.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["NGIMS"], "instrument_hosts": ["MAVEN"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1a/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1a/collection_ngims_l1a_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1a/collection_ngims_l1a_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753553Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims:context::1.0", "title": "MAVEN NGIMS Context Collection", "description": "Collection of labels describing the context of the NGIMS data (e.g., the MAVEN mission and spacecraft, the NGIMS instrument). These labels are really just pointers to other documents.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["NGIMS"], "instrument_hosts": ["MAVEN"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/context/collection_ngims_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/context/collection_ngims_context.xml", "scraped_at": "2026-02-25T20:02:10.753558Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims:xml_schema::1.0", "title": "NGIMS XML Schema Collection", "description": "Collection of schemas and schematron files used in this archive.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/xml_schema/collection_ngims_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/xml_schema/collection_ngims_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.753563Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims:calibration::1.0", "title": "NGIMS Calibration Data Collection", "description": "Raw data acquired during MAVEN NGIMS pre-launch Integration and Testing, used to define the calibration techniques for flight data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["NGIMS"], "instrument_hosts": ["MAVEN"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/calibration/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/calibration/collection_ngims_calibration_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/calibration/collection_ngims_calibration_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753566Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims:l1b::1.0", "title": "NGIMS Calibration Data Collection", "description": "Raw data acquired during MAVEN NGIMS pre-launch Integration and Testing, used to define the calibration techniques for flight data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["NGIMS"], "instrument_hosts": ["MAVEN"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1b/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1b/collection_ngims_l1b_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l1b/collection_ngims_l1b_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753570Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims:l2::1.0", "title": "NGIMS L2 Data Collection", "description": "Data acquired from the NGIMS instrument during its primary mission, with corrections and interpretations applied.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["NGIMS"], "instrument_hosts": ["MAVEN"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l2/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l2/collection_ngims_l2_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l2/collection_ngims_l2_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753573Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims:l3::1.0", "title": "NGIMS L3 Data Collection", "description": "Data acquired from the NGIMS instrument during its primary mission, with corrections and interpretations applied.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MAVEN"], "targets": ["Mars"], "instruments": ["NGIMS"], "instrument_hosts": ["MAVEN"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l3/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l3/collection_ngims_l3_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/l3/collection_ngims_l3_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753576Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:maven_ngims:document::1.0", "title": "MAVEN NGIMS Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the MAVEN NGIMS bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/document/collection_ngims_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/MAVEN/ngims_bundle/document/collection_ngims_document.xml", "scraped_at": "2026-02-25T20:02:10.753579Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:document::15.0", "title": "APSS TWINS Document Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml", "scraped_at": "2026-02-25T20:02:10.753874Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_raw::15.0", "title": "APSS TWINS Raw Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-08-27", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753880Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_calibrated::15.0", "title": "APSS TWINS Calibrated Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-08-27", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753885Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_derived::15.0", "title": "APSS TWINS Derived Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-08-27", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml", "scraped_at": "2026-02-25T20:02:10.753890Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vo_irtm:data::1.0", "title": "Viking Orbiter Infrared Thermal Mapper (IRTM) Data collection", "description": "Data collection for Viking Orbiter 1 IRTM and Viking Orbiter 2 IRTM PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["VIKING ORBITER"], "targets": ["MARS"], "instruments": ["IRTM", "IRTM"], "instrument_hosts": ["VIKING ORBITER 1", "VIKING ORBITER 2"], "data_types": ["Data"], "start_date": "1976-06-19", "stop_date": "1979-02-26", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/data/data_voirtm_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/data/data_voirtm_collection.xml", "scraped_at": "2026-02-25T20:02:10.753923Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vo_irtm:document::1.0", "title": "Viking Orbiter Infrared Thermal Mapper (IRTM) Document Collection", "description": "Document collection for the Viking Orbiter 1 IRTM and Viking Orbiter 2 IRTM PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["VIKING ORBITER"], "targets": ["MARS"], "instruments": ["IRTM", "IRTM"], "instrument_hosts": ["VIKING ORBITER 1", "VIKING ORBITER 2"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/document/document_voirtm_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3002/document/document_voirtm_collection.xml", "scraped_at": "2026-02-25T20:02:10.753927Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:context::6.0", "title": "Mars 2020 MOXIE Context Collection", "description": "Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Context"], "start_date": "2021-02-22", "stop_date": "2022-11-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "scraped_at": "2026-02-25T20:02:10.753954Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_derived::6.0", "title": "Mars 2020 MOXIE Derived Data Collection", "description": "Mars 2020 MOXIE Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2022-11-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.753958Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_calibrated::6.0", "title": "Mars 2020 MOXIE Calibrated Data Collection", "description": "Mars 2020 MOXIE Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2022-11-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.753963Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:document::6.0", "title": "Mars 2020 MOXIE Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": "2021-02-22", "stop_date": "2022-11-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "scraped_at": "2026-02-25T20:02:10.753968Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_raw::6.0", "title": "Mars 2020 MOXIE Raw Data Collection", "description": "Mars 2020 MOXIE Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2022-11-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.753973Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:data_calibrated::1.0", "title": "NMS Calibrated Data Collection", "description": "Data acquired from the NMS instrument during its primary mission, with corrections and interpretations applied.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/collection_nms_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/collection_nms_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754453Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:calibration::1.0", "title": "NMS Calibration Data Collection", "description": "Raw data acquired during LADEE NMS pre-launch Integration and Testing, used to define the calibration techniques for flight data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/collection_nms_calibration_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/collection_nms_calibration_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754456Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:context::1.0", "title": "LADEE NMS Context Collection", "description": "Collection of context products for the NMS data (e.g., the LADEE mission and spacecraft, the NMS instrument).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/collection_nms_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/collection_nms_context.xml", "scraped_at": "2026-02-25T20:02:10.754460Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:xml_schema::1.0", "title": "NMS XML Schema Collection", "description": "Collection of schemas and schematron files used in this archive.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/collection_nms_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/collection_nms_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754463Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:data_raw::1.0", "title": "NMS Raw Data Collection", "description": "Raw data acquired from the NMS instrument during its primary mission. No calibrations, corrections, or interpretations are applied.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/collection_nms_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/collection_nms_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754466Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:document::1.0", "title": "LADEE NMS Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the LADEE NMS bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/collection_nms_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/collection_nms_document.xml", "scraped_at": "2026-02-25T20:02:10.754470Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:data_derived::1.0", "title": "NMS Derived Data Collection", "description": "Data acquired from the NMS instrument during its primary mission, resampled for Argon, Helium and Neon abundances.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/collection_nms_data_derived_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/collection_nms_data_derived_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754473Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:context::7.0", "title": "Mars 2020 MOXIE Context Collection", "description": "Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Context"], "start_date": "2021-02-22", "stop_date": "2023-04-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "scraped_at": "2026-02-25T20:02:10.754487Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_derived::7.0", "title": "Mars 2020 MOXIE Derived Data Collection", "description": "Mars 2020 MOXIE Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2023-04-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.754492Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_calibrated::7.0", "title": "Mars 2020 MOXIE Calibrated Data Collection", "description": "Mars 2020 MOXIE Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2023-04-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.754496Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:document::7.0", "title": "Mars 2020 MOXIE Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": "2021-02-22", "stop_date": "2023-04-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "scraped_at": "2026-02-25T20:02:10.754502Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_raw::7.0", "title": "Mars 2020 MOXIE Raw Data Collection", "description": "Mars 2020 MOXIE Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2023-04-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.754507Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:context::1.0", "title": "APSS PS Context Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/context/collection_ps_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/context/collection_ps_context.xml", "scraped_at": "2026-02-25T20:02:10.754537Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:document::15.0", "title": "APSS PS Document Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/document/collection_ps_document.xml", "scraped_at": "2026-02-25T20:02:10.754542Z", "keywords": ["Mars", "weather", "meteorology", "environment", "pressure"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:data_raw::15.0", "title": "APSS PS Raw Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-05-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_raw/collection_ps_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754547Z", "keywords": ["Mars", "weather", "meteorology", "environment", "pressure"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:xml_schema::1.0", "title": "APSS PS Schema Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/xml_schema/collection_ps_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/xml_schema/collection_ps_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754550Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_ps:data_calibrated::15.0", "title": "APSS PS Calibrated Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Pressure Sensor (PS) Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS PS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-05-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/ps_bundle/data_calibrated/collection_ps_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754555Z", "keywords": ["Mars", "weather", "meteorology", "environment", "pressure"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:context::1.0", "title": "APSS TWINS Context Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/context/collection_twins_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/context/collection_twins_context.xml", "scraped_at": "2026-02-25T20:02:10.754559Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:document::16.0", "title": "APSS TWINS Document Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/document/collection_twins_document.xml", "scraped_at": "2026-02-25T20:02:10.754564Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_raw::16.0", "title": "APSS TWINS Raw Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-08-27", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_raw/collection_twins_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754569Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:xml_schema::1.0", "title": "APSS TWINS Schema Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/xml_schema/collection_twins_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/xml_schema/collection_twins_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754573Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_calibrated::16.0", "title": "APSS TWINS Calibrated Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-08-27", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_calibrated/collection_twins_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754578Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_twins:data_derived::16.0", "title": "APSS TWINS Derived Data Collection", "description": "Insight Auxiliary Payload Sensor Subsystem (APSS) Temperatures and Wind Sensor for Insight (TWINS) Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Insight"], "targets": ["Mars"], "instruments": ["APSS TWINS"], "instrument_hosts": ["Insight"], "data_types": ["Data"], "start_date": "2018-11-30", "stop_date": "2022-08-27", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight/twins_bundle/data_derived/collection_twins_data_derived_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754585Z", "keywords": ["Mars", "weather", "meteorology", "environment", "wind"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vo_mawd:data::1.0", "title": "Viking Orbiter Mars Atmospheric Water Detector (MAWD) Data collection", "description": "Data collection for Viking Orbiter 1 MAWD and Viking Orbiter 2 MAWD PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["VIKING ORBITER"], "targets": ["MARS"], "instruments": ["MAWD", "MAWD"], "instrument_hosts": ["VIKING ORBITER 1", "VIKING ORBITER 2"], "data_types": ["Data"], "start_date": "1976-06-19", "stop_date": "1979-02-26", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/data/data_vomawd_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/data/data_vomawd_collection.xml", "scraped_at": "2026-02-25T20:02:10.754589Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vo_mawd:document::1.0", "title": "Viking Orbiter Mars Atmospheric Water Detector (MAWD) Document Collection", "description": "Document collection for the Viking Orbiter 1 MAWD and Viking Orbiter 2 MAWD PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["VIKING ORBITER"], "targets": ["MARS"], "instruments": ["MAWD", "MAWD"], "instrument_hosts": ["VIKING ORBITER 1", "VIKING ORBITER 2"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/document/document_vomawd_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vo_3001/document/document_vomawd_collection.xml", "scraped_at": "2026-02-25T20:02:10.754593Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co_iss_global-maps:context::1.0", "title": "Cassini ISS Global Maps of Jupiter and Saturn Derived Context Collection", "description": "Global Maps of Jupiter and Saturn based on Cassini ISS Images", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens Mission"], "targets": ["Jupiter", "Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle for CO", "Imaging Science Subsystem - Wide Angle for CO"], "instrument_hosts": ["Cassini"], "data_types": ["Context"], "start_date": "2000-12-06", "stop_date": "2011-08-11", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/collection_co_iss_global-maps_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/context/collection_co_iss_global-maps_context.xml", "scraped_at": "2026-02-25T20:02:10.754598Z", "keywords": ["Cassini", "ISS", "Jupiter", "Saturn", "global maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co_iss_global-maps:data_derived::1.0", "title": "Cassini ISS Global Maps of Jupiter and Saturn Derived Data Collection", "description": "Cassini ISS Global Maps of Jupiter and Saturn", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens Mission"], "targets": ["Jupiter", "Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle for CO", "Imaging Science Subsystem - Wide Angle for CO"], "instrument_hosts": ["Cassini"], "data_types": ["Data"], "start_date": "2000-12-06", "stop_date": "2011-08-11", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/collection_co_iss_global-maps_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/data_derived/collection_co_iss_global-maps_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.754603Z", "keywords": ["Cassini", "ISS", "Juptier", "Saturn", "global maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co_iss_global-maps:document::1.0", "title": "Cassini ISS Global Maps of Jupiter and Saturn Derived Document Collection", "description": "Cassini ISS Global Maps of Jupiter and Saturn", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens Mission"], "targets": ["Jupiter", "Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle for CO", "Imaging Science Subsystem - Wide Angle for CO"], "instrument_hosts": ["Cassini"], "data_types": ["Document"], "start_date": "2000-12-06", "stop_date": "2011-08-11", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/document/collection_co_iss_global-maps_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/document/collection_co_iss_global-maps_document.xml", "scraped_at": "2026-02-25T20:02:10.754608Z", "keywords": ["Cassini", "ISS", "Jupiter", "Saturn", "global maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co_iss_global-maps:browse::1.0", "title": "Cassini ISS Global Maps of Jupiter and Saturn Derived Browse Collection", "description": "Global Maps of Jupiter and Saturn based on Cassini ISS Images", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens Mission"], "targets": ["Jupiter", "Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle for CO", "Imaging Science Subsystem - Wide Angle for CO"], "instrument_hosts": ["Cassini"], "data_types": ["Browse"], "start_date": "2000-12-06", "stop_date": "2011-08-11", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/browse/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/browse/collection_co_iss_global-maps_browse.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/browse/collection_co_iss_global-maps_browse.xml", "scraped_at": "2026-02-25T20:02:10.754615Z", "keywords": ["Cassini", "ISS", "Jupiter", "Saturn", "global maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co_iss_global-maps:xml_schema::1.0", "title": "Cassini ISS Global Maps of Jupiter and Saturn Derived XML Schema Collection", "description": "Cassini ISS Global Maps of Jupiter and Saturn", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens Mission"], "targets": ["Jupiter", "Saturn"], "instruments": ["Imaging Science Subsystem - Narrow Angle for CO", "Imaging Science Subsystem - Wide Angle for CO"], "instrument_hosts": ["Cassini"], "data_types": ["XML Schema"], "start_date": "2000-12-06", "stop_date": "2011-08-11", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/collection_co_iss_global-maps_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co_iss_global-maps/xml_schema/collection_co_iss_global-maps_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754622Z", "keywords": ["Cassini", "ISS", "Jupiter", "Saturn", "global maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_titan_ionosphere:context::1.0", "title": "Titan Ionosphere Context Collection", "description": "Cassini radio occultations of the Titan ionosphere", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": "2006-03-18", "stop_date": "2016-05-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/collection_context_titan_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/context/collection_context_titan_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.754626Z", "keywords": ["Cassini Orbiter", "RSS", "Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_titan_ionosphere:data_derived::1.1", "title": "Titan Ionosphere Observations Collection", "description": "Cassini radio occultations of the Titan ionosphere", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2006-03-18", "stop_date": "2016-05-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/collection_data_titan_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/data/collection_data_titan_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.754632Z", "keywords": ["Cassini Orbiter", "RSS", "Titan"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_titan_ionosphere:document::1.0", "title": "Titan Ionosphere Document Collection", "description": "Cassini radio occultations of the Titan ionosphere", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2006-03-18", "stop_date": "2016-05-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/document/collection_document_titan_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/document/collection_document_titan_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.754636Z", "keywords": ["Cassini Orbiter", "RSS", "Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_titan_ionosphere:schema::1.0", "title": "Titan Ionosphere Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/collection_schema_titan_ionosphere.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/titan_iono/xml_schema/collection_schema_titan_ionosphere.xml", "scraped_at": "2026-02-25T20:02:10.754641Z", "keywords": ["Cassini Orbiter", "RSS", "Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra:context::2.1", "title": "Laboratory Study of Hydrocarbon IR Spectra Context Collection", "description": "Context collection label", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Bruker IFS 125HR Fourier Transform Spectrometer", "Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": ["Context"], "start_date": "2016-01-01", "stop_date": "2022-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/context/collection_lab.hydrocarbon_spectra_context.xml", "scraped_at": "2026-02-25T20:02:10.754667Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra:data::4.0", "title": "Laboratory Study of Hydrocarbon IR Spectra Data Collection", "description": "Data collection label", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Bruker IFS 125HR Fourier Transform Spectrometer", "Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": ["Data"], "start_date": "2016-01-01", "stop_date": "2022-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/data/collection_lab.hydrocarbon_spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.754674Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra:document::4.0", "title": "Laboratory Study of Hydrocarbon IR Spectra Document Collection", "description": "Document collection label", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility", "Bruker IFS 125HR Fourier Transform Spectrometer"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": ["Document"], "start_date": "2016-01-01", "stop_date": "2022-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/collection_lab.hydrocarbon_spectra_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/document/collection_lab.hydrocarbon_spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.754681Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lab.hydrocarbon_spectra:xml_schema::2.1", "title": "Laboratory Study of Hydrocarbon IR Spectra XML Schema Collection", "description": "XML schema collection label", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cross Section IR Spectroscopy of Hydrocarbons in Planetary Atmospheres"], "targets": ["Laboratory Analog Jupiter", "Laboratory Analog Saturn", "Laboratory Analog Titan"], "instruments": ["Bruker IFS 125HR Fourier Transform Spectrometer", "Terahertz Far-Infrared Beamline at the Australian Synchrotron Facility", "Far-Infrared Beamline at the Canadian Light Source Facility"], "instrument_hosts": ["Australian Synchrotron Facility", "Canadian Light Source Facility", "Old Dominion University Fourier Transform Infrared Spectrometer Laboratory"], "data_types": ["XML Schema"], "start_date": "2016-01-01", "stop_date": "2022-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/lab.hydrocarbon_spectra/xml_schema/collection_lab.hydrocarbon_spectra_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754686Z", "keywords": ["hydrocarbon infrared spectra", "gas giants and Titan"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs:calibration::2.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Calibration Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Calibration Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/calibration/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/calibration/collection_uvs_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/calibration/collection_uvs_calibration.xml", "scraped_at": "2026-02-25T20:02:10.754690Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs:context::2.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Context Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": [], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/context/collection_uvs_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/context/collection_uvs_context.xml", "scraped_at": "2026-02-25T20:02:10.754694Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs:cal::2.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Calibrated-level Data Product Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Calibrated-level Data Product Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_calibrated/collection_uvs_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_calibrated/collection_uvs_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.754697Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs:derived::1.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Derived-level Data Product Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Derived-level Data Product Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_derived/collection_uvs_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_derived/collection_uvs_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.754701Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs:raw::2.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Raw-level Data Product Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Raw-level Data Product Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_raw/collection_uvs_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/data_raw/collection_uvs_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.754704Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs:document::2.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Document Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": [], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/document/collection_uvs_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/document/collection_uvs_document.xml", "scraped_at": "2026-02-25T20:02:10.754707Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_uvs:xml_schema::2.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Schema Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) Ultraviolet-Visible Spectrometer (UVS) Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": [], "instruments": ["UVS"], "instrument_hosts": ["Lunar Atmosphere and Dust Environment Explorer (LADEE)"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/xml_schema/collection_uvs_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/uvs_bundle/xml_schema/collection_uvs_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754711Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_atmos_dust-ice:browse-maps::1.0", "title": "Thumbnails of atmospheric infrared column dust optical depth global maps reconstructed from gridding of MGS TES single retrievals.", "description": "Thumbnails of the global maps of atmospheric column dust optical depth (at a reference infrared wavelength of 9.3 micron in absorption and normalized to the reference pressure of 610 Pa) reconstructed from gridding of MGS TES single retrievals.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["TES"], "instrument_hosts": ["MGS"], "data_types": ["Browse"], "start_date": "1999-02-28", "stop_date": "2004-08-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/browse_maps/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/browse_maps/collection_mgs_tes_atmos_dust-ice_browse-maps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/browse_maps/collection_mgs_tes_atmos_dust-ice_browse-maps.xml", "scraped_at": "2026-02-25T20:02:10.754715Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_atmos_dust-ice:context::1.0", "title": "MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Context Collection", "description": "Context for the atmospheric column optical depth data for dust and water ice as well as the daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["TES"], "instrument_hosts": ["MGS"], "data_types": ["Context"], "start_date": "1999-02-28", "stop_date": "2004-08-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/collection_mgs_tes_atmos_dust-ice_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/context/collection_mgs_tes_atmos_dust-ice_context.xml", "scraped_at": "2026-02-25T20:02:10.754718Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_ir-aerosol-optical-depth::1.0", "title": "MGS TES Infrared Column Aerosol Optical Depth Derived Data Collection", "description": "Atmospheric infrared column dust and water ice optical depths retrieved from MGS TES observations. Absorption infrared optical depths are retrieved from thermal infrared observations in nadir-viewing mode and reported at a reference wavelength of 9.3 micron for the dust and 12.1 micron for the water ice.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["TES"], "instrument_hosts": ["MGS"], "data_types": ["Data"], "start_date": "1999-02-28", "stop_date": "2004-08-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_ir-aerosol-optical-depth.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Aerosol_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_ir-aerosol-optical-depth.xml", "scraped_at": "2026-02-25T20:02:10.754722Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_maps::1.0", "title": "MGS TES Infrared Column Dust Optical Depth Maps Derived Data Collection", "description": "Daily global maps of atmospheric infrared column dust optical depth reconstructed from gridding of MGS TES single retrievals. Maps provided at a reference infrared wavelength of 9.3 micron in absorption are reconstructed from gridding of single retrievals of column dust optical depth from thermal infrared observations in nadir-viewing mode.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["TES"], "instrument_hosts": ["MGS"], "data_types": ["Data"], "start_date": "1999-02-28", "stop_date": "2004-08-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/collection_mgs_tes_atmos_dust-ice_data_derived_ir-dust-optical-depth-maps.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_IR_Dust_Optical_Depth_Maps/collection_mgs_tes_atmos_dust-ice_data_derived_ir-dust-optical-depth-maps.xml", "scraped_at": "2026-02-25T20:02:10.754726Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_atmos_dust-ice:data_derived_vis-dust-optical-depth::1.0", "title": "MGS TES Visible Column Dust Optical Depth Derived Data Collection", "description": "Atmospheric visible column dust optical depths retrieved from MGS TES observations. Visible optical depths are retrieved from solar band emergence phase function sequences and reported at a reference wavelength of 0.67 micron.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["TES"], "instrument_hosts": ["MGS"], "data_types": ["Data"], "start_date": "1999-03-12", "stop_date": "2004-08-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_vis-dust-optical-depth.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/data_VIS_Dust_Optical_Depth/collection_mgs_tes_atmos_dust-ice_data_derived_vis-dust-optical-depth.xml", "scraped_at": "2026-02-25T20:02:10.754730Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_atmos_dust-ice:document::1.0", "title": "MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Document Collection", "description": "Documentation for the atmospheric column optical depth data for dust and water ice as well as for the daily maps of column dust optical depth, derived from observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["TES"], "instrument_hosts": ["MGS"], "data_types": ["Document"], "start_date": "1999-02-28", "stop_date": "2004-08-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/document/collection_mgs_tes_atmos_dust-ice_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/document/collection_mgs_tes_atmos_dust-ice_document.xml", "scraped_at": "2026-02-25T20:02:10.754734Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_atmos_dust-ice:xml_schema::1.0", "title": "MGS TES Atmospheric Column Optical Depths for Dust and Water Ice Schema Collection", "description": "Schema collection for the atmospheric column optical depth data for dust and water ice as well as the daily maps of column dust optical depth, derived from thermal infrared and solar band observations of the Mars Global Surveyor (MGS) Thermal Emission Spectrometer (TES) instrument.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["TES"], "instrument_hosts": ["MGS"], "data_types": ["XML Schema"], "start_date": "1999-02-28", "stop_date": "2004-08-31", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/collection_mgs_tes_atmos_dust-ice_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_atmos_dust-ice/xml_schema/collection_mgs_tes_atmos_dust-ice_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754737Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_atmos-opacity::1.1", "title": "MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Data"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_atmos-opacity/collection_mgs_tes_recalib_atmos_data_derived_atmos-opacity.xml", "scraped_at": "2026-02-25T20:02:10.754743Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:data_derived_surf-emissivity::1.1", "title": "MGS TES Atmospheric Recalibration Derived Atmospheric Opacity Data Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Data"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/data_derived_surf-emissivity/collection_mgs_tes_recalib_atmos_data_derived_surf-emissivity.xml", "scraped_at": "2026-02-25T20:02:10.754748Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_tes_recalib_atmos:document::1.4", "title": "MGS TES Atmospheric Recalibration Document Collection", "description": null, "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor (MGS)"], "targets": ["Mars"], "instruments": ["Thermal Emission Spectrometer (TES)"], "instrument_hosts": ["Mars Global Surveyor (MGS)"], "data_types": ["Document"], "start_date": "1999-02-28", "stop_date": "2005-02-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/collection_mgs_tes_recalib_atmos_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgs_tes_recalib_atmos/document/collection_mgs_tes_recalib_atmos_document.xml", "scraped_at": "2026-02-25T20:02:10.754753Z", "keywords": ["Mars", "Atmosphere", "Spectroscopy"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ao:context::1.0", "title": "PDS4 Phoenix AO context Collection", "description": "The original PHX AO dataset was submitted in 2009 by Mark Lemmon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["Mars"], "instruments": ["Lidar"], "instrument_hosts": ["Phoenix"], "data_types": ["Context"], "start_date": "2008-05-25", "stop_date": "2008-10-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/context/collection_ao_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/context/collection_ao_context.xml", "scraped_at": "2026-02-25T20:02:10.754758Z", "keywords": ["Phoenix", "Atmospheric Opacity", "SURFACE STEREO IMAGER", "SSI", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ao:data_derived::1.0", "title": "PDS4 Phoenix AO derived data Collection", "description": "The original PHX AO dataset was submitted in 2009 by Mark Lemmon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["Mars"], "instruments": ["Atmospheric Opacity"], "instrument_hosts": ["Phoenix"], "data_types": ["Data"], "start_date": "2008-05-25", "stop_date": "2008-10-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/data-derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/data-derived/collection_ao_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/data-derived/collection_ao_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.754764Z", "keywords": ["Phoenix", "Atmospheric Opacity", "SURFACE STEREO IMAGER", "SSI", "Mars"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ao:document::1.0", "title": "PDS4 Phoenix AO Document Collection", "description": "The original PHX AO dataset was submitted in 2009 by Mark Lemmon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["Mars"], "instruments": ["SSI"], "instrument_hosts": ["Phoenix"], "data_types": ["Document"], "start_date": "2008-05-25", "stop_date": "2008-10-28", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/document/collection_ao_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/document/collection_ao_document.xml", "scraped_at": "2026-02-25T20:02:10.754769Z", "keywords": ["Phoenix", "Atmospheric Opacity", "SURFACE STEREO IMAGER", "SSI", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ao:xml_schema::1.0", "title": "PDS4 Phoenix xml_schema Collection", "description": "This PDS4 xml_schema_collection file was submitted in 2013", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ao_bundle/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754773Z", "keywords": ["Lidar", "Phoenix", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_met:context::1.0", "title": "PDS4 Phoenix MET context Collection", "description": "The original PHX MET dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["MET"], "instrument_hosts": ["PHOENIX"], "data_types": ["Context"], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/context/collection_met_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/context/collection_met_context.xml", "scraped_at": "2026-02-25T20:02:10.754779Z", "keywords": ["Phoenix", "Meterology", "Temperature", "Pressure", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_met:raw::1.0", "title": "PDS4 Phoenix MET raw data Collection", "description": "The original PHX MET dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["MET"], "instrument_hosts": ["PHOENIX"], "data_types": ["Data"], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_raw/collection_met_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_raw/collection_met_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.754785Z", "keywords": ["Phoenix", "Meterology", "Temperature", "Pressure", "Mars"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_met:reduced::1.0", "title": "PDS4 Phoenix MET reduced data Collection", "description": "The original PHX MET dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["MET"], "instrument_hosts": ["PHOENIX"], "data_types": ["Data"], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_reduced/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_reduced/collection_met_data_reduced.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/data_reduced/collection_met_data_reduced.xml", "scraped_at": "2026-02-25T20:02:10.754790Z", "keywords": ["Phoenix", "Meterology", "Temperature", "Pressure", "Mars"], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_met:document::1.0", "title": "PDS4 Phoenix MET Document Collection", "description": "The original PHX MET dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["MET"], "instrument_hosts": ["PHOENIX"], "data_types": ["Document"], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/document/collection_met_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/document/collection_met_document.xml", "scraped_at": "2026-02-25T20:02:10.754795Z", "keywords": ["Phoenix", "Meterology", "Temperature", "Pressure", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_met:xml_schema::1.0", "title": "PDS4 Phoenix xml_schema Collection", "description": "The original PHX MET dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/met_bundle/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754800Z", "keywords": ["Phoenix", "Meterology", "Temperature", "Pressure", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_tt:context::1.0", "title": "PDS4 Phoenix TT context Collection", "description": "The original PHX TT dataset was submitted in 2009 by Mark Lemmon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["TT"], "instrument_hosts": ["PHOENIX"], "data_types": ["Context"], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/context/collection_tt_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/context/collection_tt_context.xml", "scraped_at": "2026-02-25T20:02:10.754804Z", "keywords": ["Phoenix", "TT", "TellTale", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_tt:data_derived::1.0", "title": "PDS4 Phoenix TT derived data Collection", "description": "This PDS4 tt_context_collection file was submitted in 2013", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/data-derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/data-derived/collection_tt_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/data-derived/collection_tt_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.754808Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_tt:document::1.0", "title": "PDS4 Phoenix TT Document Collection", "description": "The original PHX TT dataset was submitted in 2009 by Mark Lemmon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["MARS"], "instruments": ["TT"], "instrument_hosts": ["PHOENIX"], "data_types": ["Document"], "start_date": "2008-05-26", "stop_date": "2008-06-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/document/collection_tt_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/document/collection_tt_document.xml", "scraped_at": "2026-02-25T20:02:10.754812Z", "keywords": ["Phoenix", "TT", "TellTale", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_tt:xml_schema::1.0", "title": "PDS4 Phoenix xml_schema Collection", "description": "This PDS4 xml_schema_collection file was submitted in 2013", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/tt_bundle/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754816Z", "keywords": ["TT", "TellTale", "Phoenix", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vl_met:data::1.0", "title": "Viking Lander Meteorology (MET) data_vl_met collection file", "description": "VL 1001 data collection for the Viking Lander MET PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Viking Lander"], "targets": ["Mars"], "instruments": ["MET", "MET"], "instrument_hosts": ["Viking Lander", "Viking Lander"], "data_types": ["Data"], "start_date": "1976-07-20", "stop_date": "1982-11-13", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/data/collection_data_vl_met.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/data/collection_data_vl_met.xml", "scraped_at": "2026-02-25T20:02:10.754821Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vl_met:document::1.0", "title": "Viking Lander MET Document Collection", "description": "Document collection for the Viking Lander MET PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Viking Lander"], "targets": ["Mars"], "instruments": ["MET", "MET"], "instrument_hosts": ["Viking Lander", "Viking Lander"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1001/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.754826Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vl_ftpd:data::1.0", "title": "Viking Lander Footpad Temp (FTPD) data_vl_ftpd collection file", "description": "VL 1002 data collection for the Viking Lander FTPD PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Viking Lander"], "targets": ["Mars"], "instruments": ["MET", "MET"], "instrument_hosts": ["Viking Lander", "Viking Lander"], "data_types": ["Data"], "start_date": "1976-07-20", "stop_date": "1982-11-13", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/data/collection_data_vl_ftpd.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/data/collection_data_vl_ftpd.xml", "scraped_at": "2026-02-25T20:02:10.754831Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:vl_ftpd:document::1.0", "title": "Viking Lander MET Document Collection", "description": "Document collection for the Viking Lander MET PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Viking Lander"], "targets": ["Mars"], "instruments": ["MET", "MET"], "instrument_hosts": ["Viking Lander", "Viking Lander"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/vl_1002/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.754834Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ase:context::1.0", "title": "PDS4 Phoenix ASE context Collection", "description": "This PDS4 xml_schema_collection file was submitted in 2013", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/context/collection_ase_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/context/collection_ase_context.xml", "scraped_at": "2026-02-25T20:02:10.754838Z", "keywords": ["ASE", "Phoenix", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ase:data::1.0", "title": "PDS4 Phoenix ASE data Collection", "description": "This PDS4 data collection file was submitted in 2013", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/data/collection_ase_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/data/collection_ase_data.xml", "scraped_at": "2026-02-25T20:02:10.754842Z", "keywords": ["ASE", "Phoenix", "Data"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ase:document::1.0", "title": "PDS4 Phoenix ASE Document Collection", "description": "This PDS4 document_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "2008-05-25", "stop_date": "2008-05-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/document/collection_ase_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/document/collection_ase_document.xml", "scraped_at": "2026-02-25T20:02:10.754847Z", "keywords": ["ASE", "Atmospheric Structure", "Phoenix"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_ase:xml_schema::1.0", "title": "PDS4 Phoenix ase xml_schema Collection", "description": "This PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": "2008-05-25", "stop_date": "2008-05-25", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/ase_bundle/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754852Z", "keywords": ["ASE", "Atmospheric Structure", "Phoenix", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp:data_had::1.0", "title": "Galileo Probe Helium Abundance Detector (HAD) data_gphad collection file", "description": "GPHAD data collection for the Galileo Probe HAD PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["HAD"], "instrument_hosts": ["GALILEO PROBE"], "data_types": ["Data"], "start_date": "1995-12-07", "stop_date": "1995-12-07", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/collection_gphad_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_had/collection_gphad_data.xml", "scraped_at": "2026-02-25T20:02:10.754872Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp:data_nep::1.0", "title": "Galileo Probe Nephelometer (NEP) data_gpnep collection file", "description": "GPNEP data collection for the Galileo Probe NEP PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["NEP"], "instrument_hosts": ["GALILEO PROBE"], "data_types": ["Data"], "start_date": "1995-12-07", "stop_date": "1995-12-07", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/collection_gpnep_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nep/collection_gpnep_data.xml", "scraped_at": "2026-02-25T20:02:10.754875Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp:data_nfr::1.0", "title": "Galileo Probe Net Flux Radiometer (NFR) data_gpnfr collection file", "description": "GPNFR data collection for the Galileo Probe NFR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["NFR"], "instrument_hosts": ["GALILEO PROBE"], "data_types": ["Data"], "start_date": "1995-12-07", "stop_date": "1995-12-07", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/collection_gpnfr_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nfr/collection_gpnfr_data.xml", "scraped_at": "2026-02-25T20:02:10.754879Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp:data_nms::1.0", "title": "Galileo Probe Mass Spectrometer (GPMS) data_gpnms collection file", "description": "GPMS data collection for the Galileo Probe NMS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["GPMS"], "instrument_hosts": ["GALILEO PROBE"], "data_types": ["Data"], "start_date": "1995-12-07", "stop_date": "1995-12-07", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/collection_gpnms_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_nms/collection_gpnms_data.xml", "scraped_at": "2026-02-25T20:02:10.754882Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp:data_asi::1.0", "title": "Galileo Probe Atmospheric Structure Instrument (ASI) data_gpasi collection file", "description": "GPASI data collection for the Galileo Probe ASI PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["ASI"], "instrument_hosts": ["GALILEO PROBE"], "data_types": ["Data"], "start_date": "1995-12-07", "stop_date": "1995-12-07", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/collection_gpasi_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_asi/collection_gpasi_data.xml", "scraped_at": "2026-02-25T20:02:10.754886Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp:data_dwe::1.0", "title": "Galileo Probe Doppler Wind Experiment (DWE) data_gpdwe collection file", "description": "GPDWE data collection for the Galileo Probe DWE PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["DWE"], "instrument_hosts": ["GALILEO PROBE"], "data_types": ["Data"], "start_date": "1995-12-07", "stop_date": "1995-12-07", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/collection_gpdwe_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_dwe/collection_gpdwe_data.xml", "scraped_at": "2026-02-25T20:02:10.754890Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp:data_epi::1.0", "title": "Galileo Probe Energetic Particles Instrument (EPI) data_gpepi collection file", "description": "GPEPI data collection for the Galileo Probe EPI PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["EPI"], "instrument_hosts": ["GALILEO PROBE"], "data_types": ["Data"], "start_date": "1995-12-07", "stop_date": "1995-12-07", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/collection_gpepi_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/data_epi/collection_gpepi_data.xml", "scraped_at": "2026-02-25T20:02:10.754893Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gp:document::1.0", "title": "Galileo Probe Document Collection", "description": "Document collection for the Galileo Probe PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO PROBE"], "targets": ["Jupiter"], "instruments": ["ASI", "DWE", "EPI", "GPMS", "HAD", "LRD", "NEP", "NFR"], "instrument_hosts": ["GALILEO PROBE"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/document/collection_gp_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/galileo_probe_bundle/document/collection_gp_document.xml", "scraped_at": "2026-02-25T20:02:10.754897Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_nims_io_rad:context::1.0", "title": "Galileo NIMS Observations of Io Hot Spot Spectral Radiance Context Collection", "description": "NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["NIMS Io Spectroscopy"], "targets": ["Io"], "instruments": ["Near Infrared Mapping Spectrometer"], "instrument_hosts": ["Galileo Orbiter"], "data_types": ["Context"], "start_date": "1996-06-28", "stop_date": "2001-10-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/collection_go_nims_io_rad_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/context/collection_go_nims_io_rad_context.xml", "scraped_at": "2026-02-25T20:02:10.754940Z", "keywords": ["Galileo", "NIMS", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_nims_io_rad:data_derived::1.0", "title": "Galileo NIMS Observations of Io Hot Spot Spectral Radiance Derived Data Collection", "description": "NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["NIMS Io Spectroscopy"], "targets": ["Io"], "instruments": ["Near Infrared Mapping Spectrometer"], "instrument_hosts": ["Galileo Orbiter"], "data_types": ["Data"], "start_date": "1996-06-28", "stop_date": "2001-10-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/collection_go_nims_io_rad_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/data_derived/collection_go_nims_io_rad_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.754944Z", "keywords": ["Galileo", "NIMS", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_nims_io_rad:document::1.0", "title": "Galileo NIMS Observations of Io Hot Spot Spectral Radiance Document Collection", "description": "NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["Io"], "instruments": ["Near Infrared Mapping Spectrometer"], "instrument_hosts": ["Galileo Orbiter"], "data_types": ["Document"], "start_date": "1996-06-28", "stop_date": "2001-10-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/document/collection_go_nims_io_rad_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/document/collection_go_nims_io_rad_document.xml", "scraped_at": "2026-02-25T20:02:10.754949Z", "keywords": ["Galileo", "NIMS", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:go_nims_io_rad:xml_schema::1.0", "title": "Galileo NIMS Observations of Io Hot Spot Spectral Radiance XML Schema Collection", "description": "NIMS spectral radiance from Io's volcanoes, night-time, unresolved, converted", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["NIMS Io Spectroscopy"], "targets": ["Io"], "instruments": ["Near Infrared Mapping Spectrometer"], "instrument_hosts": ["Galileo Orbiter"], "data_types": ["XML Schema"], "start_date": "1996-06-28", "stop_date": "2001-10-16", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/collection_go_nims_io_rad_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/go_nims_io_rad/xml_schema/collection_go_nims_io_rad_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754954Z", "keywords": ["Galileo", "NIMS", "Io"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_vortex:context::1.0", "title": "InSight Vortex Data Context Collection", "description": "InSight Vortex data for dust devil detections Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["APSS PS", "APSS TWINS"], "instrument_hosts": ["InSight"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/collection_insight_vortex_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/context/collection_insight_vortex_context.xml", "scraped_at": "2026-02-25T20:02:10.754958Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_vortex:data_seis::1.0", "title": "InSight Vortex SEIS Data Collection", "description": "InSight SEIS data for dust devil detections. Data are additionally archived on the IPSL InSight archive: https://data.ipsl.fr/catalog/srv/eng/catalog.search#/metadata/2ddaba56-cf61-4d5b-83b7-e4a079ed836b", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["SEIS"], "instrument_hosts": ["InSight"], "data_types": ["Data"], "start_date": "2018-12-12", "stop_date": "2020-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/collection_insight_vortex_seis_data_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_seis/collection_insight_vortex_seis_data_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754961Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_vortex:data_vortex::1.0", "title": "InSight Vortex Data Collection", "description": "InSight Vortex data for dust devil detections", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["APSS PS", "APSS TWINS"], "instrument_hosts": ["InSight"], "data_types": ["Data"], "start_date": "2018-12-12", "stop_date": "2020-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/collection_insight_vortex_data_catalog_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/data_vortex/collection_insight_vortex_data_catalog_inventory.xml", "scraped_at": "2026-02-25T20:02:10.754965Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_vortex:document::1.0", "title": "InSight Vortex Data Document Collection", "description": "InSight Vortex data for dust devil detections Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["APSS PS", "APSS TWINS", "SEIS"], "instrument_hosts": ["InSight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document/collection_insight_vortex_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document/collection_insight_vortex_document.xml", "scraped_at": "2026-02-25T20:02:10.754969Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_vortex:document_plots::1.0", "title": "InSight Vortex Data Plots Collection?", "description": "InSight Vortex atmospheric data plots for dust devil detections Document Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["APSS PS", "APSS TWINS"], "instrument_hosts": ["InSight"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document_plots/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document_plots/collection_insight_vortex_plots.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/document_plots/collection_insight_vortex_plots.xml", "scraped_at": "2026-02-25T20:02:10.754972Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:insight_vortex:xml_schema::1.0", "title": "InSight Vortex Data Schema Collection", "description": "InSight Vortex data for dust devil detections Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["InSight"], "targets": ["Mars"], "instruments": ["APSS PS", "APSS TWINS"], "instrument_hosts": ["InSight"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/collection_insight_vortex_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/InSight_vortex_bundle/xml_schema/collection_insight_vortex_schema.xml", "scraped_at": "2026-02-25T20:02:10.754976Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_disr:data_derived::1.0", "title": "Huygens Descent Imager/Spectral Radiometer data_derived collection file", "description": "Derived Data Products data collection for the Huygens DISR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DISR"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_derived/collection_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_derived/collection_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.755064Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_disr:data_raw::1.0", "title": "Huygens Descent Imager/Spectral Radiometer data_raw collection file", "description": "Raw Data Products data collection for the Huygens DISR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DISR"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_raw/collection_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755068Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_disr:document::1.0", "title": "Huygens Descent Imager/Spectral Radiometer Document collection file", "description": "Document Products data collection for the Huygens DISR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DISR"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Document"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.755072Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_disr:browse::1.0", "title": "Huygens Descent Imager/Spectral Radiometer Browse collection file", "description": "Browse Products data collection for the Huygens DISR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DISR"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Browse"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/browse/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/browse/collection_browse.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.755075Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_disr:calibration::1.0", "title": "Huygens Descent Imager/Spectral Radiometer Calibration collection file", "description": "Calibration Products data collection for the Huygens DISR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DISR"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Calibration"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/calibration/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/calibration/collection_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdisr_bundle/calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.755078Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_acp:data_raw::1.0", "title": "Huygens Aerosol Collector and Pyrolyser data_hpacp collection file", "description": "HPACP data collection for the Huygens ACP PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["ACP"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DATA/collection_hpacp_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DATA/collection_hpacp_data.xml", "scraped_at": "2026-02-25T20:02:10.755082Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_acp:document::1.0", "title": "Huygens Aerosol Collector and Pyrolyser Document Collection", "description": "Document collection for the Huygens ACP PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["ACP"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DOCUMENT/collection_hpacp_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpacp_bundle/DOCUMENT/collection_hpacp_document.xml", "scraped_at": "2026-02-25T20:02:10.755085Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dtwg:data_derived::1.0", "title": "Huygens Reconstructed Entry and Descent Trajectory data_hpdtwg collection file", "description": "HPDTWG data collection for the Huygens DTWG PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE", "DISR", "GCMS", "SSP", "HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DATA/collection_hpdtwg_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DATA/collection_hpdtwg_data.xml", "scraped_at": "2026-02-25T20:02:10.755089Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dtwg:document::1.0", "title": "Huygens Reconstructed Entry and Descent Trajectory Document Collection", "description": "Document collection for the Huygens DTWG PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE", "DISR", "GCMS", "SSP", "HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DOCUMENT/collection_hpdtwg_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/DOCUMENT/collection_hpdtwg_document.xml", "scraped_at": "2026-02-25T20:02:10.755092Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dtwg:geometry::1.0", "title": "Huygens Reconstructed Entry and Descent Trajectory (DTWG) Geometry collection file", "description": "Geometry collection for the Huygens DTWG PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE", "DISR", "GCMS", "SSP", "HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Geometry"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/GEOMETRY/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/GEOMETRY/collection_hpdtwg_geometry.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/GEOMETRY/collection_hpdtwg_geometry.xml", "scraped_at": "2026-02-25T20:02:10.755097Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dtwg:browse::1.0", "title": "Huygens Reconstructed Entry and Descent Trajectory Browse Collection", "description": "Browse collection for the Huygens DTWG PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE", "DISR", "GCMS", "SSP", "HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/BROWSE/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/BROWSE/collection_hpdtwg_browse.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdtwg_bundle/BROWSE/collection_hpdtwg_browse.xml", "scraped_at": "2026-02-25T20:02:10.755102Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dwe:calibration::1.0", "title": "Huygens Doppler Wind Experiment Calibration Collection", "description": "Calibration collection for the Huygens DWE PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/CALIB/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/CALIB/collection_hpdwe_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/CALIB/collection_hpdwe_calibration.xml", "scraped_at": "2026-02-25T20:02:10.755105Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dwe:data_raw::1.0", "title": "Huygens Doppler Wind Experiment (DWE) data_hpdwe collection file", "description": "HPDWE data collection for the Huygens DWE PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DATA/collection_hpdwe_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DATA/collection_hpdwe_data.xml", "scraped_at": "2026-02-25T20:02:10.755109Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dwe:document::1.0", "title": "Huygens Doppler Wind Experiment Document Collection", "description": "Document collection for the Huygens DWE PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DOCUMENT/collection_hpdwe_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/DOCUMENT/collection_hpdwe_document.xml", "scraped_at": "2026-02-25T20:02:10.755112Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_dwe:geometry::1.0", "title": "Huygens Doppler Wind Experiment (DWE) Geometry collection file", "description": "Geometry collection for the Huygens DWE PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["DWE"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Geometry"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/GEOMETRY/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/GEOMETRY/collection_hpdwe_geometry.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpdwe_bundle/GEOMETRY/collection_hpdwe_geometry.xml", "scraped_at": "2026-02-25T20:02:10.755115Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_gcms:document::1.0", "title": "Huygens Gas Chromatograph and Mass Spectrometer Document Collection", "description": "Document collection for the Huygens GCMS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["GCMS"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DOCUMENT/collection_hpgcms_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DOCUMENT/collection_hpgcms_document.xml", "scraped_at": "2026-02-25T20:02:10.755118Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_gcms:calibration::1.0", "title": "Huygens Gas Chromatograph and Mass Spectrometer Pre Launch Calibration Collection", "description": "Pre Launch Calibration collection for the Huygens GCMS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["GCMS"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/PRELAUNCH_CALIBRATION/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/PRELAUNCH_CALIBRATION/collection_hpgcms_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/PRELAUNCH_CALIBRATION/collection_hpgcms_calibration.xml", "scraped_at": "2026-02-25T20:02:10.755122Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_gcms:data_raw::1.0", "title": "Huygens Gas Chromatograph and Mass Spectrometer (GCMS) data collection file", "description": "HPGCMS data collection for the Huygens GCMS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["GCMS"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DATA/collection_hpgcms_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpgcms_bundle/DATA/collection_hpgcms_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755126Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_hasi:calibration::1.0", "title": "Huygens Atmosphere Structure Instrument ACC Calibration Collection", "description": "ACC calibration collection for the Huygens HASI PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/CALIB/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/CALIB/collection_hphasi_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/CALIB/collection_hphasi_calibration.xml", "scraped_at": "2026-02-25T20:02:10.755129Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_hasi:data_raw::1.0", "title": "Huygens Atmosphere Structure Instrument (HASI) data_hphasi_acc collection file", "description": "Huygens Probe ACC data collection for the Huygens HASI PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DATA/collection_hphasi_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DATA/collection_hphasi_data.xml", "scraped_at": "2026-02-25T20:02:10.755132Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_hasi:document::1.0", "title": "Huygens Atmosphere Structure Instrument Document Collection", "description": "Document collection for the Huygens HASI PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["HASI"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DOCUMENT/collection_hphasi_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphasi_bundle/DOCUMENT/collection_hphasi_document.xml", "scraped_at": "2026-02-25T20:02:10.755136Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_hk:calibration::1.0", "title": "Huygens Probe Housekeeping (HK) for HP Calibration Collection", "description": "Calibration collection for the Huygens HK PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["HK"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/CALIB/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/CALIB/collection_hphk_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/CALIB/collection_hphk_calibration.xml", "scraped_at": "2026-02-25T20:02:10.755139Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_hk:data_raw::1.0", "title": "Huygens Probe Housekeeping (HK) for HP data_hphk_spinrate collection file", "description": "Huygens Probe Spin Rate data collection for the Huygens HK PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["HK"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DATA/collection_hphk_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DATA/collection_hphk_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755142Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_hk:document::1.0", "title": "Huygens Housekeeping (HK) for HP Document Collection", "description": "Document collection for the Huygens HK for HP PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["HK"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DOCUMENT/collection_hphk_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hphk_bundle/DOCUMENT/collection_hphk_document.xml", "scraped_at": "2026-02-25T20:02:10.755146Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_ssp:calibration::1.0", "title": "Surface Science Package (SSP) for HP Calibration Collection", "description": "Calibration collection for the Huygens SSP PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["SSP"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/CALIB/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/CALIB/collection_hpssp_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/CALIB/collection_hpssp_calibration.xml", "scraped_at": "2026-02-25T20:02:10.755150Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_ssp:data_raw::1.0", "title": "Huygens Surface Science Package (SSP) for HP data_hpssp_raw_acce collection file", "description": "Huygens Probe RAW ACCE data collection for the Huygens SSP PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["SSP"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Data"], "start_date": "2005-01-14", "stop_date": "2005-01-14", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DATA/collection_hpssp_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DATA/collection_hpssp_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755154Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hp_ssp:document::1.0", "title": "Surface Science Package (SSP) for HP Document Collection", "description": "Document collection for the Huygens SSP for HP PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Huygens Probe"], "targets": ["Titan"], "instruments": ["SSP"], "instrument_hosts": ["Huygens Probe"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DOCUMENT/collection_hpssp_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Huygens/hpssp_bundle/DOCUMENT/collection_hpssp_document.xml", "scraped_at": "2026-02-25T20:02:10.755157Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_occul_el_dens:context::1.1", "title": "Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Context Collection", "description": "PDS4 context collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/collection_context_corss_occul_el_dens.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/context/collection_context_corss_occul_el_dens.xml", "scraped_at": "2026-02-25T20:02:10.755162Z", "keywords": ["Cassini Orbiter", "RSS", "Satura", "radio occultationn"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_occul_el_dens:data_derived::1.0", "title": "Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Derived Data Collection", "description": "Derived data products from Cassini radio occultations at Titan. Derived data products include: (A) time series of the frequency of the radio signal received at Earth during an occultation; (B) individual electron density profiles from occultations; (C) average electron density profiles from occultations; and (D) summary of average electron density profiles.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2005-05-03", "stop_date": "2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/collection_corss_occul_el_dens_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/data/collection_corss_occul_el_dens_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.755167Z", "keywords": ["radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_occul_el_dens:document::1.0", "title": "Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Document Collection", "description": "Documentation for derived data products from Cassini radio occultations at Titan. Derived data products include: (A) time series of the frequency of the radio signal received at Earth during an occultation; (B) individual electron density profiles from occultations; (C) average electron density profiles from occultations; and (D) summary of average electron density profiles.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2005-05-03", "stop_date": "2016-06-30", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/document/collection_corss_occul_el_dens_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/document/collection_corss_occul_el_dens_document.xml", "scraped_at": "2026-02-25T20:02:10.755173Z", "keywords": ["radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:corss_occul_el_dens:xml_schema::1.0", "title": "Cassini Orbiter Radio Science Subsystem Occultation and Electron Density Schema Collection", "description": "PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini"], "targets": ["Titan"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/collection_schema_corss_occul_el_dens.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/corss_occul_el_dens/xml_schema/collection_schema_corss_occul_el_dens.xml", "scraped_at": "2026-02-25T20:02:10.755178Z", "keywords": ["Cassini Orbiter", "RSS", "Saturn", "radio occultation"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:context::8.0", "title": "Mars 2020 MOXIE Context Collection", "description": "Collection of labels describing the context of the MOXIE data (e.g., the Mars 2020 mission and spacecraft, the MOXIE instrument).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Context"], "start_date": "2021-02-22", "stop_date": "2023-09-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/context/collection_moxie_context.xml", "scraped_at": "2026-02-25T20:02:10.755184Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_derived::8.0", "title": "Mars 2020 MOXIE Derived Data Collection", "description": "Mars 2020 MOXIE Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2023-09-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_derived/collection_moxie_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.755188Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:xml_schema::1.0", "title": "MOXIE XML Schema Collection", "description": "Collection of schemas and schematron files used in this archive.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/xml_schema/collection_moxie_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/xml_schema/collection_moxie_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755192Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_calibrated::8.0", "title": "Mars 2020 MOXIE Calibrated Data Collection", "description": "Mars 2020 MOXIE Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2023-09-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_calibrated/collection_moxie_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.755197Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:document::8.0", "title": "Mars 2020 MOXIE Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the Mars 2020 MOXIE bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": "2021-02-22", "stop_date": "2023-09-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/document/collection_moxie_document.xml", "scraped_at": "2026-02-25T20:02:10.755202Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_moxie:data_raw::8.0", "title": "Mars 2020 MOXIE Raw Data Collection", "description": "Mars 2020 MOXIE Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Oxygen In-Situ Resource Utilization Experiment"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2023-09-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/moxie_bundle/data_raw/collection_moxie_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755206Z", "keywords": ["Mars", "oxygen", "carbon dioxide"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_raw_env::9.0", "title": "Mars 2020 MEDA Environmental Raw Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-01-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml", "scraped_at": "2026-02-25T20:02:10.755211Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_calibrated_env::9.0", "title": "Mars 2020 MEDA Environmental Calibrated Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-01-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml", "scraped_at": "2026-02-25T20:02:10.755216Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_partially_processed_env::9.0", "title": "Mars 2020 MEDA Environmental Partially Processed Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Partially Processed Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-01-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml", "scraped_at": "2026-02-25T20:02:10.755220Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:document::9.0", "title": "Mars 2020 MEDA Document Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) collection of DOCUMENT products", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.755225Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_derived_env::9.0", "title": "Mars 2020 MEDA Environmental Derived Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-01-02", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml", "scraped_at": "2026-02-25T20:02:10.755231Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_lidar:context::1.0", "title": "PDS4 Phoenix LIDAR context Collection", "description": "The original PHX Lidar dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["Mars"], "instruments": ["Lidar"], "instrument_hosts": ["Phoenix"], "data_types": ["Context"], "start_date": "2008-05-28", "stop_date": "2008-06-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/context/collection_lidar_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/context/collection_lidar_context.xml", "scraped_at": "2026-02-25T20:02:10.755235Z", "keywords": ["Phoenix", "Meterology", "Lidar", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_lidar:raw::1.0", "title": "PDS4 Phoenix LIDAR raw data Collection", "description": "The original PHX Lidar dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["Mars"], "instruments": ["Lidar"], "instrument_hosts": ["Phoenix"], "data_types": ["Data"], "start_date": "2008-05-28", "stop_date": "2008-06-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_raw/collection_lidar_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_raw/collection_lidar_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755240Z", "keywords": ["Phoenix", "Meterology", "Lidar", "Mars"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_lidar:reduced::1.0", "title": "PDS4 Phoenix LIDAR reduced data Collection", "description": "The original PHX Lidar dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["Mars"], "instruments": ["Lidar"], "instrument_hosts": ["Phoenix"], "data_types": ["Data"], "start_date": "2008-05-28", "stop_date": "2008-06-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_reduced/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_reduced/collection_lidar_data_reduced.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/data_reduced/collection_lidar_data_reduced.xml", "scraped_at": "2026-02-25T20:02:10.755244Z", "keywords": ["Phoenix", "Meterology", "Lidar", "Mars"], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_lidar:document::1.0", "title": "PDS4 Phoenix LIDAR Document Collection", "description": "The original PHX Lidar dataset was submitted in 2008 by Cameron Dickinon", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": ["Mars"], "instruments": ["Lidar"], "instrument_hosts": ["Phoenix"], "data_types": ["Document"], "start_date": "2008-05-28", "stop_date": "2008-06-24", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/document/collection_lidar_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/document/collection_lidar_document.xml", "scraped_at": "2026-02-25T20:02:10.755249Z", "keywords": ["Phoenix", "Meterology", "Lidar", "Mars"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:phx_lidar:xml_schema::1.0", "title": "PDS4 Phoenix xml_schema Collection", "description": "This PDS4 xml_schema_collection file was submitted in 2013", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Phoenix"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/PHX/lidar_bundle/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755253Z", "keywords": ["Lidar", "Phoenix", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini-uvis_titan-library:document::1.0", "title": "Cassini UVIS Titan Library Document collection file", "description": "Document collection for the Cassini UVIS Titan Library bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Titan"], "instruments": ["UVIS"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/document/collection_cassini-uvis_titan-library_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/document/collection_cassini-uvis_titan-library_document.xml", "scraped_at": "2026-02-25T20:02:10.755257Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini-uvis_titan-library:xml_schema::1.0", "title": "Cassini UVIS Titan Library XML Schema collection file", "description": "XML Schema collection for the Cassini UVIS Titan Library bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Titan"], "instruments": ["UVIS"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/collection_cassini-uvis_titan-library_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/xml_schema/collection_cassini-uvis_titan-library_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755260Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini-uvis_titan-library:context::1.0", "title": "Cassini UVIS Titan Library Context collection file", "description": "Context collection for the Cassini UVIS Titan Library bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Titan"], "instruments": ["UVIS"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/collection_cassini-uvis_titan-library_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/context/collection_cassini-uvis_titan-library_context.xml", "scraped_at": "2026-02-25T20:02:10.755264Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini-uvis_titan-library:data_derived::1.0", "title": "Cassini UVIS Titan Library Derived Data collection file", "description": "Data collection for the Cassini UVIS Titan Library bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Titan"], "instruments": ["UVIS"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2018-01-01", "stop_date": "2018-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/collection_cassini-uvis_titan-library_data.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/cassini-uvis_titan-library/data_derived/collection_cassini-uvis_titan-library_data.xml", "scraped_at": "2026-02-25T20:02:10.755268Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_mission:context::2.0", "title": "LADEE Mission Context Collection", "description": "This is the context collection for the LADEE Mission bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon", "Dust"], "instruments": ["LDEX", "UVS", "NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/collection_mission_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/context/collection_mission_context.xml", "scraped_at": "2026-02-25T20:02:10.755272Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_mission:document::2.0", "title": "PDS4 LADEE Mission Document Collection", "description": "LADEE Mission Document Collection created by ATMOS in 2014", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon", "Dust"], "instruments": ["UVS", "NMS", "LDEX"], "instrument_hosts": ["LADEE"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/collection_mission_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/document/collection_mission_document.xml", "scraped_at": "2026-02-25T20:02:10.755277Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_mission:xml_schema::2.0", "title": "Lunar Atmosphere and Dust Environment Explorer (LADEE) XML Schema Collection", "description": "Lunar Atmosphere and Dust Environment Explorer (LADEE) XML Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon", "Dust"], "instruments": ["LDEX", "UVS", "NMS"], "instrument_hosts": ["LADEE"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/collection_mission_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/mission_bundle/xml_schema/collection_mission_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755280Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_ldex:context::2.0", "title": "context collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle", "description": "This is the context collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Dust", "Moon"], "instruments": ["LUNAR DUST EXPERIMENT"], "instrument_hosts": ["LADEE"], "data_types": ["Context"], "start_date": "2013-10-24", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/context/collection_ldex_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/context/collection_ldex_context.xml", "scraped_at": "2026-02-25T20:02:10.755284Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_ldex:data_calibrated::2.0", "title": "data_calibrated collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle", "description": "This is the data_calibrated collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Dust", "Moon"], "instruments": ["LUNAR DUST EXPERIMENT"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": "2013-10-24", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_calibrated/collection_ldex_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_calibrated/collection_ldex_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.755288Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_ldex:data_derived::2.0", "title": "data_derived collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle", "description": "This is the data_derived collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Dust", "Moon"], "instruments": ["LUNAR DUST EXPERIMENT"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": "2013-10-24", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_derived/collection_ldex_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_derived/collection_ldex_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.755292Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_ldex:data_housekeeping::2.0", "title": "data_housekeeping collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle", "description": "This is the data_housekeeping collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Dust", "Moon"], "instruments": ["LUNAR DUST EXPERIMENT"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": "2013-10-24", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_housekeeping/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_housekeeping/collection_ldex_data_housekeeping.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_housekeeping/collection_ldex_data_housekeeping.xml", "scraped_at": "2026-02-25T20:02:10.755297Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_ldex:data_reduced::2.0", "title": "data_reduced collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle", "description": "This is the data_reduced collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Dust", "Moon"], "instruments": ["LUNAR DUST EXPERIMENT"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": "2013-10-24", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_reduced/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_reduced/collection_ldex_data_reduced.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/data_reduced/collection_ldex_data_reduced.xml", "scraped_at": "2026-02-25T20:02:10.755300Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_ldex:document::2.0", "title": "document collection for the \"LADEE LUNAR DUST EXPERIMENT\" bundle", "description": "This is the document collection for the ladee_ldex bundle. This archive bundle includes data taken by the Lunar Dust Experiment (LDEX) instrument aboard the Lunar Atmosphere and Dust Environment Explorer (LADEE) spacecraft. These data are generated by dust impacts on the LDEX detector. Both reduced and calibrated data are included in this bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Dust", "Moon"], "instruments": ["LUNAR DUST EXPERIMENT"], "instrument_hosts": ["LADEE"], "data_types": ["Document"], "start_date": "2013-10-24", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/document/collection_ldex_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/document/collection_ldex_document.xml", "scraped_at": "2026-02-25T20:02:10.755305Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_ldex:xml_schema::2.0", "title": "XML Schema Collection", "description": "This is the xml_schema collection that is intended to hold all XML schema files used in the creation of this bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/xml_schema/collection_ldex_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/ldex_bundle/xml_schema/collection_ldex_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755308Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_mwr:data_raw::2.0", "title": "Juno MWR Raw Data collection file", "description": "Raw data collection for the Juno MWR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["MWR"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2011-08-24", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/data_raw/collection_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755312Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_mwr:data_ancillary::1.0", "title": "Juno MWR Ancillary Data collection file", "description": "Ancillary data collection for the Juno MWR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["MWR"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2011-08-25", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/ANCILLARY/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/ANCILLARY/collection_data_ancillary.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/ANCILLARY/collection_data_ancillary.xml", "scraped_at": "2026-02-25T20:02:10.755316Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_mwr:context_collection::1.0", "title": "Juno MWR Context collection file", "description": "Context collection for the Juno MWR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["MWR"], "instrument_hosts": ["Juno"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/Context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/Context/collection_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/Context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.755319Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_mwr:data_calibrated::2.1", "title": "Juno MWR Calibrated Data collection file", "description": "Calibrated data collection for the Juno MWR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["MWR"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2011-08-25", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DATA/collection_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DATA/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.755323Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_mwr:document::1.0", "title": "Juno MWR Document collection file", "description": "Document collection for the Juno MWR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["MWR"], "instrument_hosts": ["Juno"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DOCUMENT/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/DOCUMENT/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.755327Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_mwr:xml_schema_collection::1.0", "title": "Juno MWR XML Schema collection file", "description": "XML Schema collection for the Juno MWR PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["MWR"], "instrument_hosts": ["Juno"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/XML_Schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/XML_Schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnomwr_1100/XML_Schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755331Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro_accel:context::1.0", "title": "PDS4 MRO ACCEL Context Collection", "description": "This PDS4 collection_mro_accel_context file was submitted in 2015", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MRO"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["MRO"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/collection_mro_accel_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Context/collection_mro_accel_context.xml", "scraped_at": "2026-02-25T20:02:10.755762Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro_accel:altitude::1.0", "title": "PDS4 MRO accel altitude data Collection", "description": "This PDS4 file was submitted in 2016", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MRO"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["MRO"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/ALTITUDE_DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/ALTITUDE_DATA/collection_mro_accel_data_altitude.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/ALTITUDE_DATA/collection_mro_accel_data_altitude.xml", "scraped_at": "2026-02-25T20:02:10.755765Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro_accel:profile::1.0", "title": "PDS4 mro accel profile data Collection", "description": "This PDS4 file was submitted in 2016", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["mro"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["mro"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/PROFILE_DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/PROFILE_DATA/collection_mro_accel_data_profile.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/PROFILE_DATA/collection_mro_accel_data_profile.xml", "scraped_at": "2026-02-25T20:02:10.755769Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro_accel:raw::1.0", "title": "PDS4 mro accel raw data Collection", "description": "This PDS4 file was submitted in 2015", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["mro"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["mro"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/RAW_DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/RAW_DATA/collection_mro_accel_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Data/RAW_DATA/collection_mro_accel_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755772Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro_accel:document::1.0", "title": "PDS4 MRO ACCEL Document Collection", "description": "This PDS4 collection_mro_accel_document file was submitted in 2016", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MRO"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["MRO"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Document/collection_mro_accel_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/Document/collection_mro_accel_document.xml", "scraped_at": "2026-02-25T20:02:10.755775Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro_accel:xml_schema::1.0", "title": "PDS4 MRO Accelerometer xml_schema Collection", "description": "This PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Reconnaissance Orbiter"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": "2006-04-02", "stop_date": "2006-08-30", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mroa_bundle/XML_Schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755782Z", "keywords": ["Accelerometer", "Mars Reconnaissance Orbiter", "Mars", "MRO ACCEL", "MRO", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel:context::1.0", "title": "PDS4 ODYSSEY ACCELEROMETER Context Collection", "description": "This PDS4 odya_context_collection file was submitted in 2014", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["ODY"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["ODY"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/collection_odya_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Context/collection_odya_context.xml", "scraped_at": "2026-02-25T20:02:10.755833Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel:altitude::1.0", "title": "PDS4 Mars Odyssey accelerometer altitude data Collection", "description": "The original ODY Accelerometer data was submitted in 2007", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["ODY"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["ODY"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ALTITUDE_DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ALTITUDE_DATA/collection_odya_data_altitude.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ALTITUDE_DATA/collection_odya_data_altitude.xml", "scraped_at": "2026-02-25T20:02:10.755836Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel:anc::1.0", "title": "PDS4 ODYSSEY accelerometer anc data Collection", "description": "The original ODY Accelerometer data was submitted in 2007", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["ODYSSEY"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["ODY"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ANC/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ANC/collection_odya_data_anc.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/ANC/collection_odya_data_anc.xml", "scraped_at": "2026-02-25T20:02:10.755840Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel:calt::1.0", "title": "PDS4 MARS ODYSSEY accelerometer calt data Collection", "description": "The original ODY Accelerometer data was submitted in 2007", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["ODYSSEY"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["ODY"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/CALT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/CALT/collection_odya_data_calt.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/CALT/collection_odya_data_calt.xml", "scraped_at": "2026-02-25T20:02:10.755844Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel:profile::1.0", "title": "PDS4 ODY accel profile data Collection", "description": "The original ODY Accelerometer data was submitted in 2007", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["ODY"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["ODY"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/PROFILE_DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/PROFILE_DATA/collection_odya_data_profile.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/PROFILE_DATA/collection_odya_data_profile.xml", "scraped_at": "2026-02-25T20:02:10.755847Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel:raw::1.0", "title": "PDS4 ODY accel raw data Collection", "description": "The original ODY Accelerometer data was submitted in 2007", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["ODY"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["ODY"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/RAW_DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/RAW_DATA/collection_odya_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Data/RAW_DATA/collection_odya_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.755851Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel:document::1.0", "title": "PDS4 ODYSSEY ACCEL Document Collection", "description": "The original ODY Accelerometer data was submitted in 2007", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["ODY"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["ODY"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Document/collection_odya_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/Document/collection_odya_document.xml", "scraped_at": "2026-02-25T20:02:10.755854Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ody_accel:xml_schema::1.0", "title": "PDS4 Odyssey Accelerometer xml_schema Collection", "description": "This PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["2001 Mars Odyssey"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": "2006-04-02", "stop_date": "2006-08-30", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/odya_bundle/XML_Schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755860Z", "keywords": ["Accelerometer", "Mars Odyssey", "Mars", "ODY ACCEL", "ODY", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_raw_env::10.0", "title": "Mars 2020 MEDA Environmental Raw Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-05-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml", "scraped_at": "2026-02-25T20:02:10.756066Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_calibrated_env::10.0", "title": "Mars 2020 MEDA Environmental Calibrated Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-05-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml", "scraped_at": "2026-02-25T20:02:10.756072Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_partially_processed_env::10.0", "title": "Mars 2020 MEDA Environmental Partially Processed Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Partially Processed Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-05-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml", "scraped_at": "2026-02-25T20:02:10.756076Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:document::10.0", "title": "Mars 2020 MEDA Document Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) collection of DOCUMENT products", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.756081Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_derived_env::10.0", "title": "Mars 2020 MEDA Environmental Derived Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-05-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml", "scraped_at": "2026-02-25T20:02:10.756087Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro-crism_atmos-db:context::1.0", "title": "Atmospheric Retrievals for Mars Integrated from MRO-CRISM Context Collection", "description": "Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MARS RECONNAISSANCE ORBITER"], "targets": ["Mars"], "instruments": ["Compact Reconnaissance Imaging Spectrometer For Mars"], "instrument_hosts": ["Mars Reconnaissance Orbiter"], "data_types": ["Context"], "start_date": "2006-01-01", "stop_date": "2023-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/collection_mro-crism_atmos-db_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/context/collection_mro-crism_atmos-db_context.xml", "scraped_at": "2026-02-25T20:02:10.756119Z", "keywords": ["atmosphere", "Mars", "MRO", "CRISM"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro-crism_atmos-db:data_derived::1.0", "title": "Atmospheric Retrievals for Mars Integrated from MRO-CRISM Derived Data Collection", "description": "Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MARS RECONNAISSANCE ORBITER"], "targets": ["Mars"], "instruments": ["Compact Reconnaissance Imaging Spectrometer For Mars"], "instrument_hosts": ["Mars Reconnaissance Orbiter"], "data_types": ["Data"], "start_date": "2006-01-01", "stop_date": "2023-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/collection_mro-crism_atmos-db_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/data_derived/collection_mro-crism_atmos-db_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.756124Z", "keywords": ["atmosphere", "Mars", "MRO", "CRISM"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro-crism_atmos-db:document::1.0", "title": "Atmospheric Retrievals for Mars Integrated from MRO-CRISM Document Collection", "description": "Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MARS RECONNAISSANCE ORBITER"], "targets": ["Mars"], "instruments": ["Compact Reconnaissance Imaging Spectrometer For Mars"], "instrument_hosts": ["Mars Reconnaissance Orbiter"], "data_types": ["Document"], "start_date": "2006-01-01", "stop_date": "2023-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/document/collection_mro-crism_atmos-db_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/document/collection_mro-crism_atmos-db_document.xml", "scraped_at": "2026-02-25T20:02:10.756130Z", "keywords": ["atmosphere", "Mars", "MRO", "CRISM"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mro-crism_atmos-db:xml_schema::1.0", "title": "Atmospheric Retrievals for Mars Integrated from MRO-CRISM XML Schema Collection", "description": "Six martian years since 2006, and include global abundance maps of water vapor, carbon monoxide, observations of oxygen airglow, vertical distributions of dust and water ice and their particle sizes from limb observations, atmospheric dust properties from Emission Phase Function (EPF) observations, as well as new retrievals of water ice optical depth.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MARS RECONNAISSANCE ORBITER"], "targets": ["Mars"], "instruments": ["Compact Reconnaissance Imaging Spectrometer For Mars"], "instrument_hosts": ["Mars Reconnaissance Orbiter"], "data_types": ["XML Schema"], "start_date": "2006-01-01", "stop_date": "2023-01-01", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/collection_mro-crism_atmos-db_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mro-crism_atmos-db/xml_schema/collection_mro-crism_atmos-db_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.756136Z", "keywords": ["atmosphere", "Mars", "MRO", "CRISM"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_jiram:data_raw::1.0", "title": "Juno JIRAM Raw Data collection file", "description": "Raw (lv.2) data collection for the Juno JIRAM PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["JIRAM"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/collection_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.756670Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_jiram:document::1.0", "title": "Juno JIRAM Document collection file", "description": "Document collection for the Juno JIRAM PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["JIRAM"], "instrument_hosts": ["Juno"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.756673Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_jiram:xml_schema::1.0", "title": "Juno JIRAM XML Schema collection file", "description": "XML Schema collection for the Juno JIRAM PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["JIRAM"], "instrument_hosts": ["Juno"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.756677Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_jiram:calibration::1.0", "title": "Juno JIRAM Calibration collection file", "description": "Calibration collection for the Juno JIRAM PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["JIRAM"], "instrument_hosts": ["Juno"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/collection_calibration.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.756680Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_jiram:context::1.0", "title": "Juno JIRAM Context collection file", "description": "Context collection for the Juno JIRAM PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["JIRAM"], "instrument_hosts": ["Juno"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/collection_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.756684Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_jiram:data_calibrated::1.0", "title": "Juno JIRAM Calibrated Data collection file", "description": "Calibrated (lv. 3) data collection for the Juno JIRAM PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["JIRAM"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/collection_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/juno_jiram_bundle/data_calibrated/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.756687Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_raw_env::11.0", "title": "Mars 2020 MEDA Environmental Raw Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-09-03", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml", "scraped_at": "2026-02-25T20:02:10.757539Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_calibrated_env::11.0", "title": "Mars 2020 MEDA Environmental Calibrated Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-09-03", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml", "scraped_at": "2026-02-25T20:02:10.757544Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_partially_processed_env::11.0", "title": "Mars 2020 MEDA Environmental Partially Processed Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Partially Processed Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-09-03", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_partially_processed_env/collection_meda_data_partially_processed_env.xml", "scraped_at": "2026-02-25T20:02:10.757550Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:document::11.0", "title": "Mars 2020 MEDA Document Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) collection of DOCUMENT products", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.757555Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:xml_schema::1.0", "title": "Mars 2020 MEDA Schema Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/xml_schema/collection_meda_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/xml_schema/collection_meda_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.757560Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:browse_skycam::1.0", "title": "Collection of browse products: PDS4 Mars 2020 Perseverance Rover Mars Environmental Dynamics Analyzer (MEDA) Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products", "description": "Collection of BROWSE products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mars Environmental Dynamics Analyzer (MEDA)"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/browse_skycam/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/browse_skycam/collection_browse_skycam.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/browse_skycam/collection_browse_skycam.xml", "scraped_at": "2026-02-25T20:02:10.757566Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_derived_env::11.0", "title": "Mars 2020 MEDA Environmental Derived Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Derived Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2024-09-03", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_derived_env/collection_meda_data_derived_env.xml", "scraped_at": "2026-02-25T20:02:10.757571Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_skycam::1.0", "title": "Collection of data products: PDS4 Mars 2020 Perseverance Rover Mars Environmental Dynamics Analyzer (MEDA) Skycam Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products", "description": "Collection of DATA products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mars Environmental Dynamics Analyzer (MEDA)"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2024-05-04", "stop_date": "2024-09-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_skycam/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_skycam/collection_data_skycam.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_skycam/collection_data_skycam.xml", "scraped_at": "2026-02-25T20:02:10.757576Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_accel:context::1.0", "title": "PDS4 MGS ACCEL Context Collection", "description": "This PDS4 mgs_accel_context_collection file was submitted in 2015", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["MGS"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/collection_mgs_accel_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/context/collection_mgs_accel_context.xml", "scraped_at": "2026-02-25T20:02:10.757580Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_accel:altitude::1.0", "title": "PDS4 mgs accel altitude data Collection", "description": "This PDS4 file was submitted in 2015", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["mgs"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["mgs"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/ALTITUDE/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/ALTITUDE/collection_mgs_accel_data_altitude.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/ALTITUDE/collection_mgs_accel_data_altitude.xml", "scraped_at": "2026-02-25T20:02:10.757583Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_accel:profile::1.0", "title": "PDS4 mgs accel profile data Collection", "description": "This PDS4 file was submitted in 2015", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["mgs"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["mgs"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/PROFILE/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/PROFILE/collection_mgs_accel_data_profile.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/PROFILE/collection_mgs_accel_data_profile.xml", "scraped_at": "2026-02-25T20:02:10.757587Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_accel:raw::1.0", "title": "PDS4 mgs accel raw data Collection", "description": "This PDS4 file was submitted in 2015", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["mgs"], "targets": ["MARS"], "instruments": ["ACCEL"], "instrument_hosts": ["mgs"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/RAW/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/RAW/collection_mgs_accel_data_raw.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/data/RAW/collection_mgs_accel_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.757590Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_accel:document::1.0", "title": "PDS4 MGS ACCEL Document Collection", "description": "The PDS4 mgs_accel document collection was created in 2015.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["MGS"], "targets": ["Mars"], "instruments": ["ACCEL"], "instrument_hosts": ["MGS"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/document/collection_mgs_accel_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/document/collection_mgs_accel_document.xml", "scraped_at": "2026-02-25T20:02:10.757594Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mgs_accel:xml_schema::1.0", "title": "PDS4 MGS ACCEL xml_schema Collection", "description": "This PDS4 xml_schema_collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars Global Surveyor"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": "1997-11-13", "stop_date": "1999-02-04", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/mgsa_bundle/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.757599Z", "keywords": ["Accelerometer", "Mars Global Surveyor", "Mars", "MGS ACCEL", "XML Schema"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:data_lir::1.0", "title": "Pioneer Venus Special Events Data (SED) - Large Probe Infrared Radiometer Data Collection", "description": "This collection contains atmospheric data from the Infrared Radiometer on board the Pioneer Venus Large Probe during pre-entry and descent to the surface of Venus. This collection also includes onboard calibration data. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["PIONEER VENUS LARGE PROBE INFRARED RADIOMETER"], "instrument_hosts": ["PIONEER VENUS LARGE PROBE"], "data_types": ["Data"], "start_date": "1978-12-09", "stop_date": "1978-12-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/collection_data_lir.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lir/collection_data_lir.xml", "scraped_at": "2026-02-25T20:02:10.757817Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:data_oad::1.0", "title": "Pioneer Venus Special Events Data (SED) - Orbiter Atmospheric Drag Observations and Model Data Collection", "description": "This collection contains one file of observations acquired by the Atmospheric Drag Experiment during orbits 5-246 (1978-12-09 to 1979-08-07) of the Pioneer Venus Orbiter and one file of output from the Pioneer Venus Drag Atmospheric Model. The observational data include altitude, density, scale height, exospheric temperature, local solar time, and Venus longitude. The model data include local solar time, altitude, density, number density of atomic oxygen, ratio of number densities of O/CO2, and temperature. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS"], "instrument_hosts": ["PIONEER VENUS ORBITER"], "data_types": ["Data"], "start_date": "1978-12-09", "stop_date": "1979-08-07", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/collection_data_oad.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_oad/collection_data_oad.xml", "scraped_at": "2026-02-25T20:02:10.757821Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:data_lsfr::1.0", "title": "Pioneer Venus Special Events Data (SED) - Large Probe Solar Flux Radiometer Data Collection", "description": "This collection contains lower atmospheric solar down, up, and net flux data from the Solar Flux Radiometer on board the Pioneer Venus Large Probe during descent to the surface of Venus. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER"], "instrument_hosts": ["PIONEER VENUS LARGE PROBE"], "data_types": ["Data"], "start_date": "1978-12-09", "stop_date": "1978-12-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/collection_data_lsfr.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lsfr/collection_data_lsfr.xml", "scraped_at": "2026-02-25T20:02:10.757824Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:context::1.0", "title": "Pioneer Venus Special Events Data (SED) - Context Collection", "description": "PDS4 context collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS", "SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS", "PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT", "PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH", "PIONEER VENUS LARGE PROBE INFRARED RADIOMETER", "PIONEER VENUS LARGE PROBE NEPHELOMETER", "PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"], "instrument_hosts": ["PIONEER VENUS ORBITER", "PIONEER VENUS LARGE PROBE", "PIONEER VENUS SMALL PROBE (DAY)", "PIONEER VENUS SMALL PROBE (NIGHT)", "PIONEER VENUS SMALL PROBE (NORTH)"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/collection_context_pv_sed.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/context/collection_context_pv_sed.xml", "scraped_at": "2026-02-25T20:02:10.757831Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:data_snfr::1.0", "title": "Pioneer Venus Special Events Data (SED) - Small Probes Net Flux Radiometers Data Collection", "description": "This collection contains lower atmospheric data (66-13 km) from the Net Flux Radiometers on board the Pioneer Venus Small Day, Night, and North Probes during descent to the surface of Venus. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER"], "instrument_hosts": ["PIONEER VENUS SMALL PROBE (DAY)", "PIONEER VENUS SMALL PROBE (NIGHT)", "PIONEER VENUS SMALL PROBE (NORTH)"], "data_types": ["Data"], "start_date": "1978-12-09", "stop_date": "1978-12-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/collection_data_snfr.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_snfr/collection_data_snfr.xml", "scraped_at": "2026-02-25T20:02:10.757836Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:document::1.0", "title": "Pioneer Venus Special Events Data (SED) - Document Collection", "description": "This collection contains documentation for the Pioneer Venus Special Events Data (SED) extracted from NSSDCA dataset PSPA-00034 and reformatted as ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS", "SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS", "PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT", "PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH", "PIONEER VENUS LARGE PROBE INFRARED RADIOMETER", "PIONEER VENUS LARGE PROBE NEPHELOMETER", "PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"], "instrument_hosts": ["PIONEER VENUS ORBITER", "PIONEER VENUS LARGE PROBE", "PIONEER VENUS SMALL PROBE (DAY)", "PIONEER VENUS SMALL PROBE (NIGHT)", "PIONEER VENUS SMALL PROBE (NORTH)"], "data_types": ["Document"], "start_date": "1978-12-05", "stop_date": "1981-10-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.757843Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:data_opa::1.0", "title": "Pioneer Venus Special Events Data (SED) - Orbiter Solar Wind Plasma Analyzer Data Collection", "description": "This collection contains reduced solar wind flow speed and proton number density observed by the Solar Wind Plasma Analyzer just before the (first) inbound crossing of the bow shock of Venus, and the same quantities just after the (last) outbound crossing by the Pioneer Venus Orbiter. This collection also contains one file of 9-minute solar wind proton bulk velocities while the orbiter was outside bow shock and before beginning inbound proton measurements during orbit 7 on 1978-12-11. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS"], "instrument_hosts": ["PIONEER VENUS ORBITER"], "data_types": ["Data"], "start_date": "1978-12-05", "stop_date": "1981-10-21", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/collection_data_opa.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_opa/collection_data_opa.xml", "scraped_at": "2026-02-25T20:02:10.757847Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:data_neph::1.0", "title": "Pioneer Venus Special Events Data (SED) - Multiprobes Nephelometer Data Collection", "description": "This collection contains nephelometer data from each of the four Pioneer Venus atmospheric probes. The data include: 1) backscatter channel data; 2) ambient background radiation channels and spectral functions; and 3) time vs. temperature. These data were extracted from NSSDCA data set PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["PIONEER VENUS LARGE PROBE NEPHELOMETER", "PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"], "instrument_hosts": ["PIONEER VENUS LARGE PROBE", "PIONEER VENUS SMALL PROBE (DAY)", "PIONEER VENUS SMALL PROBE (NIGHT)", "PIONEER VENUS SMALL PROBE (NORTH)"], "data_types": ["Data"], "start_date": "1978-12-09", "stop_date": "1978-12-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/collection_data_neph.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_neph/collection_data_neph.xml", "scraped_at": "2026-02-25T20:02:10.757852Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:data_atm_struct::1.0", "title": "Pioneer Venus Special Events Data (SED) - Multiprobes Atmospheric Structure Data Collection", "description": "This collection contains middle and low atmospheric state properties from observations performed by the Atmospheric Structure Experiments on board the Pioneer Venus Large Probe and the Small Day, Night, and North Probes during entry and descent to the surface of Venus. Small Probe data from middle altitude observations include trajectory parameters. This collection also includes a Night Probe data file that extends the state properties to higher altitudes. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS", "PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT"], "instrument_hosts": ["PIONEER VENUS ORBITER", "PIONEER VENUS LARGE PROBE", "PIONEER VENUS SMALL PROBE (DAY)", "PIONEER VENUS SMALL PROBE (NIGHT)", "PIONEER VENUS SMALL PROBE (NORTH)"], "data_types": ["Data"], "start_date": "1978-12-09", "stop_date": "1978-12-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/collection_data_atm_struct.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_atm_struct/collection_data_atm_struct.xml", "scraped_at": "2026-02-25T20:02:10.757858Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:xml_schema::1.0", "title": "Pioneer Venus Special Events Data (SED) - Schema Collection", "description": "PDS4 xml_schema collection file", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["ORBITER ATMOSPHERIC DRAG (OAD) FOR PIONEER VENUS", "SOLAR WIND PLASMA ANALYZER (OPA) FOR PIONEER VENUS", "PIONEER VENUS LARGE PROBE ATMOSPHERIC STRUCTURE EXPERIMENT", "PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH", "PIONEER VENUS LARGE PROBE INFRARED RADIOMETER", "PIONEER VENUS LARGE PROBE NEPHELOMETER", "PIONEER VENUS LARGE PROBE SOLAR FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (DAY) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (DAY) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (DAY) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NIGHT) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NIGHT) NEPHELOMETER", "PIONEER VENUS SMALL PROBE (NORTH) ATMOSPHERE STRUCTURE EXPERIMENT", "PIONEER VENUS SMALL PROBE (NORTH) NET-FLUX RADIOMETER", "PIONEER VENUS SMALL PROBE (NORTH) NEPHELOMETER"], "instrument_hosts": ["PIONEER VENUS ORBITER", "PIONEER VENUS LARGE PROBE", "PIONEER VENUS SMALL PROBE (DAY)", "PIONEER VENUS SMALL PROBE (NIGHT)", "PIONEER VENUS SMALL PROBE (NORTH)"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/collection_schema_pv_sed.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/xml_schema/collection_schema_pv_sed.xml", "scraped_at": "2026-02-25T20:02:10.757864Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:pv_sed:data_lgc::1.0", "title": "Pioneer Venus Special Events Data (SED) - Large Probe Gas Chromatograph Data Collection", "description": "This collection contains atmospheric composition data from the Gas Chromatograph on board the Pioneer Venus Large Probe during descent to the surface of Venus. These data were extracted from NSSDCA dataset PSPA-00034, Pioneer Venus Special Events Data (SED), and reformatted as PDS ASCII CSV products.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["PIONEER VENUS"], "targets": ["Venus"], "instruments": ["PIONEER VENUS LARGE PROBE GAS CHROMATOGRAPH"], "instrument_hosts": ["PIONEER VENUS LARGE PROBE"], "data_types": ["Data"], "start_date": "1978-12-09", "stop_date": "1978-12-09", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/collection_data_lgc.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pv_sed_bundle/data_lgc/collection_data_lgc.xml", "scraped_at": "2026-02-25T20:02:10.757868Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co-rss_slepian-grav-coeff:context::1.0", "title": "Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Context Collection", "description": "Saturn gravity coefficients derived from Cassini Radio Science data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Context"], "start_date": "2022-06-14", "stop_date": "2024-09-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/collection_co-rss_slepian-grav-coeff_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/context/collection_co-rss_slepian-grav-coeff_context.xml", "scraped_at": "2026-02-25T20:02:10.758825Z", "keywords": ["Saturn", "gravity"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co-rss_slepian-grav-coeff:data_derived::1.0", "title": "Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Derived Data Collection", "description": "Saturn gravity coefficients derived from Cassini Radio Science data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2022-06-14", "stop_date": "2024-09-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/collection_co-rss_slepian-grav-coeff_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/data_derived/collection_co-rss_slepian-grav-coeff_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.758829Z", "keywords": ["Saturn", "gravity"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co-rss_slepian-grav-coeff:document::1.0", "title": "Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions Document Collection", "description": "Saturn gravity coefficients derived from Cassini Radio Science data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "2022-06-14", "stop_date": "2024-09-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/document/collection_co-rss_slepian-grav-coeff_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/document/collection_co-rss_slepian-grav-coeff_document.xml", "scraped_at": "2026-02-25T20:02:10.758833Z", "keywords": ["Saturn", "gravity"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:co-rss_slepian-grav-coeff:xml_schema::1.0", "title": "Cassini Orbiter Radio Science Subsystem (RSS) Small-Scale Atmospheric Features with Slepian Functions XML Schema Collection", "description": "Saturn gravity coefficients derived from Cassini Radio Science data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Saturn"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["XML Schema"], "start_date": "2022-06-14", "stop_date": "2024-09-29", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/collection_co-rss_slepian-grav-coeff_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/co-rss_slepian-grav-coeff/xml_schema/collection_co-rss_slepian-grav-coeff_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.758838Z", "keywords": ["Saturn", "gravity"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_raw_env::12.0", "title": "Mars 2020 MEDA Environmental Raw Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Raw Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2025-01-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_raw_env/collection_meda_data_raw_env.xml", "scraped_at": "2026-02-25T20:02:10.758847Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:data_calibrated_env::12.0", "title": "Mars 2020 MEDA Environmental Calibrated Data Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) Environmental Calibrated Data Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2025-01-06", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/data_calibrated_env/collection_meda_data_calibrated_env.xml", "scraped_at": "2026-02-25T20:02:10.758852Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_meda:document::12.0", "title": "Mars 2020 MEDA Document Collection", "description": "Mars 2020 Mars Environmental Dynamics Analyzer (MEDA) collection of DOCUMENT products", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020"], "targets": ["Mars"], "instruments": ["Mars Environmental Dynamics Analyzer"], "instrument_hosts": ["Mars 2020"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/Mars2020/mars2020_meda/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.758856Z", "keywords": ["Mars", "weather", "meteorology", "environment"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:calib.amc::1.0", "title": "Juno Gravity AMC Calibration collection file", "description": "AMC Calibration collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/AMC/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/AMC/calib_amc_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/AMC/calib_amc_collection.xml", "scraped_at": "2026-02-25T20:02:10.758860Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:calib.eop::1.0", "title": "Juno Gravity EOP Calibration collection file", "description": "EOP Calibration collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/EOP/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/EOP/calib_eop_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/EOP/calib_eop_collection.xml", "scraped_at": "2026-02-25T20:02:10.758864Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:calib.ion::1.0", "title": "Juno Gravity ION Calibration collection file", "description": "ION Calibration collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/ION/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/ION/calib_ion_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/ION/calib_ion_collection.xml", "scraped_at": "2026-02-25T20:02:10.758867Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:calib.sff::1.0", "title": "Juno Gravity SFF Calibration collection file", "description": "SFF Calibration collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/SFF/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/SFF/calib_sff_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/SFF/calib_sff_collection.xml", "scraped_at": "2026-02-25T20:02:10.758870Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:calib.tro::1.0", "title": "Juno Gravity TRO Calibration collection file", "description": "TRO Calibration collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/TRO/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/TRO/calib_tro_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/TRO/calib_tro_collection.xml", "scraped_at": "2026-02-25T20:02:10.758874Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:calib.wea::1.0", "title": "Juno Gravity WEA Calibration collection file", "description": "WEA Calibration collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/WEA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/WEA/calib_wea_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/ANCILLARY/WEA/calib_wea_collection.xml", "scraped_at": "2026-02-25T20:02:10.758878Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:data.odf::1.0", "title": "Juno Gravity ODF Data collection file", "description": "ODF data collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/ODF/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/ODF/data_odf_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/ODF/data_odf_collection.xml", "scraped_at": "2026-02-25T20:02:10.758882Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:data.rsr::1.0", "title": "Juno Gravity RSR Data collection file", "description": "RSR data collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/RSR/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/RSR/data_rsr_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/RSR/data_rsr_collection.xml", "scraped_at": "2026-02-25T20:02:10.758885Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:data.tnf::1.0", "title": "Juno Gravity TNF Data collection file", "description": "TNF data collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["Radio Science"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2016-07-10", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/TNF/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/TNF/data_tnf_collection.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DATA/TNF/data_tnf_collection.xml", "scraped_at": "2026-02-25T20:02:10.758888Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:document::1.0", "title": "Juno Gravity Document collection file", "description": "Document collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["RSS"], "instrument_hosts": ["Juno"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DOCUMENT/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DOCUMENT/collection_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/DOCUMENT/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.758891Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:context_collection::1.0", "title": "Juno Gravity Context collection file", "description": "Context collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/context/collection_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.758894Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:jno.rss.raw.jugr:xml_schema_collection::1.0", "title": "Juno Gravity XML Schema collection file", "description": "XML Schema collection for the Juno Gravity PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["RSS"], "instrument_hosts": ["Juno"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnogrv_1001/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.758897Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dd_nnss-nv:data_derived::1.0", "title": "Seven years of convective vortex recordings in the Mojave desert Derived Data Collection", "description": "Dust devil field campaign at Nevada National Security Site (NNSS), Nevada, USA using Hyperion microbarometers", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Dust Devil Field Campaign, Nevada National Security Site (NNSS), Nevada, 2019"], "targets": ["Earth"], "instruments": ["Hyperion IFS-5000 Series Seismically Decoupled Infrasound Sensor (Microbarometer)", "Hyperion IFS-3000 Series Infrasound Sensor (Microbarometer)"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2012-07-13", "stop_date": "2019-12-22", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/collection_dd_nnss-nv_data_derived.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/dd_nnss-nv/data_derived/collection_dd_nnss-nv_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.758963Z", "keywords": ["dust devil", "field campaign"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:juno_uvs:data_calibrated::1.0", "title": "Juno UVS Calibrated Data collection file", "description": "Calibrated (lv. 3) data collection for the Juno UVS PDS4 bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["Juno"], "targets": ["Jupiter"], "instruments": ["UVS"], "instrument_hosts": ["Juno"], "data_types": ["Data"], "start_date": "2012-10-24", "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnouvs_3001/DATA/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnouvs_3001/DATA/collection_data_calibrated.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/jnouvs_3001/DATA/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.759009Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:calib::2.0", "title": "NMS Calibration Data Collection", "description": "Raw data acquired during LADEE NMS pre-launch Integration and Testing, used to define the calibration techniques for flight data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": "2011-10-28", "stop_date": "2013-05-17", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/collection_nms_calibration_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/calibration/collection_nms_calibration_inventory.xml", "scraped_at": "2026-02-25T20:02:10.759020Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:context::2.0", "title": "LADEE NMS Context Collection", "description": "Collection of context products for the NMS data (e.g., the LADEE mission and spacecraft, the NMS instrument).", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/collection_nms_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/context/collection_nms_context.xml", "scraped_at": "2026-02-25T20:02:10.759023Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:data_calibrated::2.0", "title": "NMS Calibrated Data Collection", "description": "Data acquired from the NMS instrument during its primary mission, with corrections and interpretations applied.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": "2013-09-14", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/collection_nms_data_calibrated_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_calibrated/collection_nms_data_calibrated_inventory.xml", "scraped_at": "2026-02-25T20:02:10.759027Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:data_derived::2.0", "title": "NMS Derived Data Collection", "description": "Data acquired from the NMS instrument during its primary mission, resampled for Argon, Helium and Neon abundances.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": "2013-09-14", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/collection_nms_data_derived_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_derived/collection_nms_data_derived_inventory.xml", "scraped_at": "2026-02-25T20:02:10.759030Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:data_raw::2.0", "title": "NMS Raw Data Collection", "description": "Raw data acquired from the NMS instrument during its primary mission. No calibrations, corrections, or interpretations are applied.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Data"], "start_date": "2013-09-14", "stop_date": "2014-04-18", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/collection_nms_data_raw_inventory.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/data_raw/collection_nms_data_raw_inventory.xml", "scraped_at": "2026-02-25T20:02:10.759034Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:document::2.0", "title": "LADEE NMS Document Collection", "description": "Collection of documents related to the meaning, structure, and interpretation of data found within the LADEE NMS bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/collection_nms_document.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/document/collection_nms_document.xml", "scraped_at": "2026-02-25T20:02:10.759045Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ladee_nms:xml_schema::2.0", "title": "NMS XML Schema Collection", "description": "Collection of schemas and schematron files used in this archive.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["LADEE"], "targets": ["Moon"], "instruments": ["NMS"], "instrument_hosts": ["LADEE"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/collection_nms_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/LADEE/nms_bundle/xml_schema/collection_nms_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.759048Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clps_to_2ab_pll.pitms:data_derived::1.0", "title": "collection_PITMS_DER_INVENTORY", "description": "This collection contains all the PITMS derived data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["CLPS Task Order 2 AB"], "targets": ["Moon"], "instruments": ["PITMS"], "instrument_hosts": ["CLPS Task Order 2 AB Peregrine Lunar Lander"], "data_types": ["Data"], "start_date": "2024-01-09", "stop_date": "2024-01-15", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/collection_PITMS_DER_INVENTORY.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_derived/collection_PITMS_DER_INVENTORY.xml", "scraped_at": "2026-02-25T20:02:10.759052Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clps_to_2ab_pll.pitms:context::1.0", "title": "collection PITMS Context", "description": "Context Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["CLPS Task Order 2 AB"], "targets": ["Moon"], "instruments": ["PITMS"], "instrument_hosts": ["CLPS Task Order 2 AB Peregrine Lunar Lander"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/collection_pitms_context.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/context/collection_pitms_context.xml", "scraped_at": "2026-02-25T20:02:10.759056Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clps_to_2ab_pll.pitms:xml_schema::1.0", "title": "collection PITMS XML Schema", "description": "XML Schema Collection", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["CLPS Task Order 2 AB"], "targets": ["Moon"], "instruments": ["PITMS"], "instrument_hosts": ["CLPS Task Order 2 AB Peregrine Lunar Lander"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/collection_pitms_xml_schema.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/xml_schema/collection_pitms_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.759059Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clps_to_2ab_pll.pitms:data_calibrated::1.0", "title": "collection_PITMS_CAL_INVENTORY", "description": "This collection contains all the PITMS calibrated data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["CLPS Task Order 2 AB"], "targets": ["Moon"], "instruments": ["PITMS"], "instrument_hosts": ["CLPS Task Order 2 AB Peregrine Lunar Lander"], "data_types": ["Data"], "start_date": "2024-01-09", "stop_date": "2024-01-15", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/collection_PITMS_CAL_INVENTORY.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_calibrated/collection_PITMS_CAL_INVENTORY.xml", "scraped_at": "2026-02-25T20:02:10.759063Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clps_to_2ab_pll.pitms:data_raw::1.0", "title": "collection_PITMS_RAW_INVENTORY", "description": "This collection contains all the PITMS raw data.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["CLPS Task Order 2 AB"], "targets": ["Moon"], "instruments": ["PITMS"], "instrument_hosts": ["CLPS Task Order 2 AB Peregrine Lunar Lander"], "data_types": ["Data"], "start_date": "2024-01-09", "stop_date": "2024-01-15", "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/collection_PITMS_RAW_INVENTORY.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/data_raw/collection_PITMS_RAW_INVENTORY.xml", "scraped_at": "2026-02-25T20:02:10.759086Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clps_to_2ab_pll.pitms:document::1.0", "title": "collection_PITMS_DOC_INVENTORY", "description": "Document on the meaning, structure, and interpretation of data found within the PITMS bundle.", "node": "atm", "pds_version": "PDS4", "type": "collection", "missions": ["CLPS Task Order 2 AB"], "targets": ["Moon"], "instruments": ["PITMS"], "instrument_hosts": ["CLPS Task Order 2 AB Peregrine Lunar Lander"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/document/", "download_url": null, "label_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/document/collection_PITMS_DOC_INVENTORY.xml", "source_url": "https://pds-atmospheres.nmsu.edu/PDS/data/PDS4/pitms_bundle/document/collection_PITMS_DOC_INVENTORY.xml", "scraped_at": "2026-02-25T20:02:10.759090Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/img_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/img_catalog.jsonl index 9110513..5d7eed2 100644 --- a/akd_ext/tools/pds/pds_catalog/scraped_data/img_catalog.jsonl +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/img_catalog.jsonl @@ -1,215 +1,215 @@ -{"id":"CO-S-ISSNA/ISSWA-5-MIDR-V1.0","title":"VOLUME 1: CASSINI ISS CARTOGRAPHIC MAP OF PHOEBE","description":"This volume contains a cartographic map of the Saturn moon PHOEBE. It was generated using data collected by Cassini's Instrument Science Subsystem cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/carto/coiss_3001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:50:24.764170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V1.0","title":"CASSINI ISS CALIBRATION FILES Volume 1 of 11","description":"This volume contains a subset of the raw ground calibration images taken by the flight model of the CASSINI Wide-Angle Camera (WACFM) and of the CASSINI Narrow-Angle Camera (NACFM).","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:50:41.210614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V2.0","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data files and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Instrument Science Subsystem cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v2/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:50:52.680560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.0","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v4.0/coiss_0011_v4/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:51:02.928884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.1","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v4.1/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:51:03.975988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.2","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v4.2/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:51:05.022884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.3","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v4.3/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:51:07.121616","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-E/V/J-ISSNA/ISSWA-2-EDR-V1.0","title":"VOLUME 1: CASSINI ISS IMAGES 1294561143 - 1351738471","description":"This volume contains data collected by Cassini's Instrument Science Subsystem cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_1001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:51:08.168232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-S-ISSNA/ISSWA-2-EDR-V1.0","title":"VOLUME 1: CASSINI ISS IMAGES 1454725799 - 1460960370","description":"This volume contains data collected by Cassini's Instrument Science Subsystem cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_2001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T15:51:17.897835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-V/E/J/S-RADAR-3-LBDR-V1.0\",","title":"CASSINI RADAR VOLUME 3: Earth Flyby, August 18,1999","description":"This volume contains a set of scatterometer and radiometer data that were obtained during the Earth Flyby. The radar observed portions of the South Pacific and South America.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0003/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:00:14.904456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-V/E/J/S-RADAR-3-SBDR-V1.0\"}","title":"CASSINI RADAR VOLUME 6: Jupiter Synchrotron, Sequence C23, January 3, 2001","description":"This volume contains radiometer only data acquired during a set of Jupiter scans. These data were used to analyze synchrotron emission from Jupiter's radiation belts.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0006/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:00:15.859604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-SSA-RADAR-3-ABDR-V1.0\",","title":"VOLUME 35: Titan Flyby TA, Sequence S05,Oct 27, 2004","description":"This volume contains Cassini Radar Burst Ordered Data Record and Basic Image Data Record products including SAR Imagery from Titan Flyby TA.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0035/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:00:20.832144","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-V/E/J/S-RADAR-3-SBDR-V2.0\"}","title":"VOLUME 171: Titan, Sequence S45, Nov 6, 2008","description":"This volume contains a distant Titan radiometer observation.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0171/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:06:37.695674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-V/E/J/S-RADAR-3-LBDR-V2.0\",","title":"VOLUME 176: Saturn, Sequence S46, Dec 18, 2008","description":"This volume contains Saturn global mapping radiometry scans.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0176/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:07:43.137813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-E/V/J/S-VIMS-2-QUBE-V1.0","title":"SAMPLE: CASSINI VIMS IMAGE/SPECTRAL CUBES","description":"This DVD contains Cassini Visual and Infrared Mapping Spectrometer (VIMS) raw cube data, documentation, for all available files with start times (SCET) 1999-01-10T05:40:00.157 through 2000-09-18T13:26:42.517.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/covims_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:14:04.077796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CLEM1-L-H-5-DIM-MOSAIC-V1.0","title":"VOLUME 01: CLEMENTINE HIRES MOSAIC","description":"This volume contains a portion of the Clementine 750-nm Digital Image Model(DIM) Hires mosaic derived from 750-nm wavelength images acquired by the High Resolution Camera.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/clem1-l-h-5-dim-mosaic-v1.0/cl_6001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:26:51.794464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CLEM1-L-N-5-DIM-NIR-V1.0","title":"VOLUME 01: CLEMENTINE NIR MOSAIC","description":"This volume contains a portion of the Clementine Near-Infrared (NIR) Multi-Spectral Digital Image Model (DIM) derived from images acquired by the Near-Infrared Camera.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/clem1-l-n-5-dim-nir-v1.0/cl_5001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:27:17.938574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CLEM1-L-U-5-DIM-BASEMAP-V1.0","title":"VOLUME 01: CLEMENTINE BASEMAP MOSAIC","description":"This volume contains a portion of the Clementine 750-nm Digital Image Model(DIM) basemap derived from 750-nm wavelength images acquired by the Ultraviolet/Visible Camera.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/clem1-l-u-5-dim-basemap-v1.0/cl_3001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:29:47.144469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CLEM1-L-U-5-DIM-UVVIS-V1.0","title":"VOLUME 01: CLEMENTINE UVVIS MOSAIC","description":"This volume contains a portion of the Clementine Ultra-Violet Visible (UVVIS) Multi-Spectral Digital Image Model (DIM) derived from images acquired by the Ultraviolet/Visible Camera.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/clem1-l-u-5-dim-uvvis-v1.0/cl_4001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:30:44.921097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CLEM1-L/E/Y-A/B/U/H/L/N-2-EDR-V1.0","title":"VOLUME 01: REVOLUTION NUMBERS 32, 33, 34, 35, 36","description":"This volume contains the Clementine EDR Images acquired by the Ultraviolet/Visible Camera, Near-Infrared Camera, Long Wavelength Infrared Camera, Laser Image Detection and Ranging Imager (Hi Res) and the Star-Tracker Cameras.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/clem1-l_e_y-a_b_u_h_l_n-2-edr-v1.0/cl_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T16:32:55.704411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-CAL-SSI-6-V1.0\"}","title":"GALILEO CALIBRATION FILES","description":"This volume, titled Galileo SSI Calibration Files,(GO_0001), is a part of the Galileo Solid State Imaging Raw EDR data set which resides on volumes GO_0002 thru GO_0023. Included are all calibration files required to properly decalibration the images obtained from the Galileo SSI Camera system. Contents of this volume include: =============================== the following types of calibration files: Calibration Slope Files, Dark Current files, Shutter Offset file and Blemish files.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:06:53.237317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-J/JSA-SSI-2-REDR-V1.0","title":"GALILEO IMAGES FROM JUPITER ORBITS 1-3","description":"This volume, titled Galileo Images From Jupiter Orbits 1-3 (GO_0017), is a part of the Galileo Jupiter Orbital Operations Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0019. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during the first three orbits of the Jupiter Orbital Operations Phase of the mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== Jupiter Pre-Orbit 1 (Jupiter 0) ------------------------------- SCLK range: 346405900 - 349193900 (Optical Navigation-OPNAV) ERT range: 96/155:17:47:18.857 - 96/175:07:41:11.980 Jupiter Orbit 1 (Ganymede 1) ---------------------------- SCLK ranges: 349542152 - 350029800 356000600 - 359198400 (OPNAV) ERT ranges: 96/183-07:38:25.928 - 96/231-13:43:20.690 96/223:02:39:43.300 - 96/237:10:55:15.282 (OPNAV) Jupiter Orbit 2 (Ganymede 2) ---------------------------- SCLK ranges: 359251000 - 359322300 (OPNAV) 359402445 - 360361200 ERT ranges: 96/245:22:26:14.566 - 96/246:10:31:10.512 (OPNAV) 96/255-14:03:53.827 - 96/301-02:37:09.523 Orbit 3 (Callisto 3) -------------------- SCLK ranges: 368211900 - 368992339 372343200 - 374037400 (OPNAV) ERT ranges: 96/316-05:27:12.172 - 96/348-02:11:05.236 96/337:20:50:32.231 - 96/349:18:46:37.142 (OPNAV)","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_0017/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:07:25.943163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-J/JSA-SSI-2-REDR-V1.0\",","title":"GALILEO IMAGES FROM JUPITER ORBITS 11 - 17","description":"This volume, titled Galileo Images From Jupiter Orbits 11 - 17 (GO_0020), is a part of the Galileo Jupiter Orbital Operations and Galileo Europa Mission Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0020. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during three of the Jupiter Orbital Operations phases of the mission and extended Galileo Europa Mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== JUPITER ORBIT 11 EUROPA ======================= SCLK ranges: 420361400 - 420900345 ERT ranges: 97/313-18:06:10 - 97/348-15:22:08 JUPITER ORBIT 12 EUROPA ======================= SCLK ranges: 426117300 - 426273839 ERT ranges: 97/352-08:19:59 - 98/082-02:15:37 JUPITER ORBIT 12 EUROPA TIRE_TRACK ================================== SCLK ranges: 426272849 - 426272856 ERT ranges: 98/026:14:59:26 - 98/080:10:39:12 JUPITER ORBIT 14 EUROPA ======================= SCLK ranges: 440873539 - 441026827 ERT ranges: 98/090-03:50:04 - 98/148-20:59:05 JUPITER ORBIT 15 EUROPA ======================= SCLK ranges: 449841900 - 450111001 ERT ranges: 98/152-22:55:06 - 98/267-09:24:19 JUPITER ORBIT 17 EUROPA ======================= SCLK ranges: 466580845 - 466684900 ERT ranges: 98/270-08:58:01 - 99/026-06:09:21","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_0020/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:07:28.882587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-E/L-NIMS-2-EDR-V1.0","title":"Galileo NIMS EDR Data from the Earth 2 Encounter, Part 1","description":"This volume is the second containing Galileo Near-Infrared Mapping Spectrometer (NIMS) Experiment Data Records (EDRs). It includes EDRs of data acquired by the NIMS instrument in the test and calibration period preceding Galileo's second Earth encounter. No actual Earth or Moon data is present on this volume.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1002/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:07:36.911042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-E/L-NIMS-2-EDR-V1.0\",","title":"Galileo NIMS EDR Data: Earth 2 (pt 3), Gaspra, Ida and S-L 9","description":"This volume is the fourth containing Galileo Near-Infrared Mapping Spectrometer (NIMS) Experiment Data Records (EDRs). It includes EDRs of all data acquired by the NIMS instrument during Galileo's second Earth/Moon encounter, during the Gaspra and Ida asteroid encounters and from the Shoemaker-Levy 9 comet impact with Jupiter.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1004/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:07:39.532060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-J-NIMS-2-EDR-V2.0\"}","title":"GALILEO NIMS EDR DATA: JUPITER (G1-E4)","description":"This volume is the fifth containing Galileo Near Infrared Mapping Spectrometer (NIMS) Experiment Data Records (EDRs). It contains EDRs of all data acquired by the NIMS instrument during Galileo's first four orbits of Jupiter and successfully played back to Earth. This time period includes the Ganymede 1 (G1), Ganymede 2 (G2), Callisto 3 (C3) and Europa 4 (E4) encounters. There is also a small amount of calibration data taken before G1, and during the J5 conjunction orbit.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1005/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:07:40.392264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-V-NIMS-4-MOSAIC-V1.0\",","title":"Galileo NIMS Cube Data: Venus","description":"This volume is the first containing Galileo Near Infrared Mapping Spectrometer (NIMS) Spectral Image Cubes, also known as NIMS Mosaics. It is derived from data acquired by the NIMS instrument during Galileo's Venus encounter.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1101/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:07:44.908967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-E-NIMS-4-MOSAIC-V1.0\",","title":"Galileo NIMS Cube Data: Earth 1","description":"This volume is the second containing Galileo Near Infrared Mapping Spectrometer (NIMS) Spectral Image Cubes, also known as NIMS Mosaics. It is derived from data acquired by the NIMS instrument during Galileo's first Earth/Moon encounter.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1102/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:07:45.920334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-J-NIMS-4-MOSAIC-V1.0\",","title":"GALILEO NIMS CUBE DATA: GANYMEDE 1 ENCOUNTER","description":"This volume is the fourth containing Galileo Near Infrared Mapping Spectrometer (NIMS) Spectral Image Cubes. They are derived from data acquired by the NIMS instrument during Galileo's first encounter with Jupiter and its satellites, the Ganymede 1 (G1) encounter, and include both mosaics (g-cubes) of resampled data projected on the target and tubes of unresampled data in NIMS instrument space. The volume also includes some products from checkout observations for new in-flight software loaded before the G1 encounter, tubes from the earlier Gaspra and Ida asteroid encounters, and some highly processed results (in table form) derived from NIMS observations of the Shoemaker-Levy 9 comet impact with Jupiter.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1104/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:07:48.616825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"JUNO-J-JUNOCAM-2-EDR-L0-V1.0\",","title":"NULL","description":"This volume contains Juno JunoCam data in their original, compressed format (EDR) and decompressed, processed format (RDR). In addition, mosaics of one or more individual JunoCam images are combined to create global and regional map products. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/juno-j-junocam-2-edr-l0-v1.0/JNOJNC_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:15:29.927480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"JNO-J-SRU-EDR-2-L0-V1.0\",","title":"NULL","description":"This volume contains Juno Stellar Reference Unit data in their original, uncompressed format (EDR) and tables of derived count rates. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/juno/JNOSRU_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:16:07.029412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"LCROSS-E/L-MIR1-2-RAW-V1.0\",","title":"LCROSS RAW AND CALIBRATED DATA","description":"This volume contains raw and calibrated images and spectra from the Lunar Crater Observation and Sensing Satellite (LCROSS) instrument suite.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/lcross/LCRO_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:16:08.491930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"LO1-L-80MMFLC/24INCHFLC-5-MIDR-V1.0\",","title":"Volume 1: Lunar Orbiters 1-5","description":"This volume contains Lunar Orbiter 1 through 5 image data. The volume also contains detailed documentation about the missions, instruments, and data sets, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/lo/LO_1001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:16:10.070917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"LRO-L-LAMP-2-EDR-V1.0","title":"LRO LAMP EDR OBSERVATIONS","description":"This volume contains experiment data record (EDR) data acquired by the Lunar Reconnaissance Orbiter Lyman-Alpha Mapping Project. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/lro/saved/edr/LROLAM_0053/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:16:14.550416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"LRO-L-LAMP-3-RDR-V1.0","title":"LRO LAMP RDR OBSERVATIONS","description":"This volume contains reduced data record (RDR) data acquired by the Lunar Reconnaissance Orbiter Lyman-Alpha Mapping Project. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/lro/saved/rdr/LROLAM_1053/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:16:16.064443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CH1-ORB-L-M3-2-L0-RAW-V1.0\",","title":"CH-1 M3 LEVEL 0/LEVEL 1B IMAGES","description":"This volume contains Chandrayaan-1 Lunar Orbiter Ch-1) Moon Mineralogy Mapper (M3) raw and reduced image data. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/m3/CH1M3_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:17:01.909862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CH1-ORB-L-M3-4-L1B-RADIANCE-V3.0\"}","title":"CH-1 M3 LEVEL 0/LEVEL 1B IMAGES","description":"This volume contains Chandrayaan-1 Lunar Orbiter Ch-1) Moon Mineralogy Mapper (M3) reduced image data. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/m3/CH1M3_0003/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:17:03.656839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CH1-ORB-L-M3-4-L2-REFLECTANCE-V1.0","title":"CH-1 M3 LEVEL 0/LEVEL 1B/LEVEL 2 IMAGES","description":"This volume contains pixel located, reflectance-calibrated, near-IR spectral image data acquired from November 2008 through August 2009 by the Moon Mineralogy Mapper instrument during the Chandrayaan-1 mission to the Moon.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/m3/CH1M3_0004/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:17:04.822100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MGN-V-RDRS-5-DIM-V1.0","title":"VOLUME 3","description":"This volume contains the Venus Full Resolution Radar Mosaics at a resolution of 75 meters/pixel or 1/1408 degree/pixel and a gazetteer of Venus features. This volume covers the region extending from latitude 12.0 N to 24.0 N, and from east longitude 192.0 to 216.0 degrees.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/magellan/mg_1103/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T17:50:19.610335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MSL-M-MAHLI-2-EDR-IMG-V1.0\",","title":"NULL","description":"This volume contains Mars Science Laboratory (MSL) Mars Hand Lens Imager (MAHLI) data in their original, compressed format (EDR) and decompressed, processed format (RDR). The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mahli/MSLMHL_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T18:08:24.314270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MSL-M-MARDI-2-EDR-IMG-V1.0\",","title":"NULL","description":"This volume contains Mars Science Laboratory (MSL) Mars Descent Imager (MARDI) data in their original, compressed format (EDR) and decompressed, processed format (RDR). The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mardi/MSLMRD_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T18:08:38.921460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MRO-M-CTX-2-EDR-L0-V1.0","title":"VOLUME MROX_0001: MRO CTX EDR ARCHIVE","description":"This volume contains a portion of the MRO Context Camera Experiment Data Record Level 0 V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars%20reconnaissance%20orbiter/ctx/mrox_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T18:15:06.665408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MRO-M-MARCI-2-EDR-L0-V1.0","title":"VOLUME MROM_0001: MRO MARCI EDR ARCHIVE","description":"This volume contains a portion of the MRO Mars Color Imager Experiment Data Record Level 0 V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mars%20reconnaissance%20orbiter/marci/mrom_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:03:48.497226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MSL-M-MASTCAM-2-EDR-IMG-V1.0\",","title":"NULL","description":"This volume contains Mars Science Laboratory (MSL) Mast Camera (Mastcam) data in their original, compressed format (EDR) and decompressed, processed format (RDR). The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mastcam/MSLMST_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:33:42.512072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MER1-M-DESCAM-2-EDR-OPS-V1.0","title":"MER1: DESCAM OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Descent Camera onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer1do_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:33:57.180154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MER1-M-HAZCAM-2-EDR-OPS-V1.0\",","title":"MER1: HAZCAM OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Hazard Avoidance Camera onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer1ho_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:33:58.104859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MER1-M-MI-2-EDR-OPS-V1.0\",","title":"MER1: MI OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Microscopic Imager (MI) onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer1mo_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:33:59.109516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MER1-M-NAVCAM-2-EDR-OPS-V1.0\",","title":"MER1: NAVCAM OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Navigation Cameras onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer1no_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:34:15.033169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MER1-M-PANCAM-2-EDR-OPS-V1.0\",","title":"MER1: PANCAM OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Panoramic Cameras onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer1po_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:35:01.146282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MER2-M-DESCAM-2-EDR-OPS-V1.0","title":"MER2: DESCAM OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Descent Camera onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer2do_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:35:02.101330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MER2-M-HAZCAM-2-EDR-OPS-V1.0\",","title":"MER2: HAZCAM OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Hazard Avoidance Camera onboard the MER2 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer2ho_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:35:03.175311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MER2-M-MI-2-EDR-OPS-V1.0\",","title":"MER2: MI OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Microscopic Imager (MI) onboard the MER2 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer2mo_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:35:04.151408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MER2-M-NAVCAM-2-EDR-OPS-V1.0\",","title":"MER2: NAVCAM OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Navigation Cameras onboard the MER2 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer2no_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:35:08.209861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MER2-M-PANCAM-2-EDR-OPS-V1.0\",","title":"MER2: PANCAM OPERATIONS EDR ARCHIVE","description":"This volume contains data acquired by the Navigation Cameras onboard the MER2 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mer/mer2po_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:35:32.666586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-DEM-ELEVATION-V1.0","title":"MESSENGER MDIS DIGITAL ELEVATION MODEL ARCHIVE","description":"MESSENGER Digital Elevation Model (DEM). This volume contains digital elevation data of Mercury obtained from the MDIS Wide Angle Camera and Narrow Angle Camera images taken at Mercury.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mess-h-mdis-5-dem-elevation-v1.0/MESSDEM_1001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:40:47.710226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-E/V/H-MDIS-2-EDR-RAWDATA-V1.0","title":"MESSENGER MDIS UNCALIBRATED DATA ARCHIVE","description":"MESSENGER MDIS uncalibrated data. This volume contains MDIS images taken from after launch through orbital operations over the interval 2004-08-19 to 2015-04-30.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_1001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:40:54.427653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-E/V/H-MDIS-4-CDR-CALDATA-V1.0","title":"MESSENGER MDIS CALIBRATED DATA ARCHIVE","description":"MESSENGER MDIS calibrated data. This volume contains MDIS images taken at Earth, Venus and Mercury over the interval 2004-232 (19-Aug) to 2015-120 (30-Apr).","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_2001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:40:56.401382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-E/V/H-MDIS-6-DDR-GEOMDATA-V1.0","title":"MESSENGER MDIS DERIVED DATA ARCHIVE","description":"This volume contains Derived Data Record (DDR) information for all valid, calibratible images acquired during flybys and orbit around Mercury, for which the target is Mercury and at least part of the image falls on the surface of the planet.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_3001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:40:58.620025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-RDR-BDR-V1.0","title":"MESSENGER MDIS MAP PROJECTED BASEMAP ARCHIVE","description":"MESSENGER MDIS map projected basemap data. This volume contains maps of MDIS Narrow Angle Camera, and Wide Angle Camera images taken at Mercury over the interval 2011-03-29 to 2015-04-30.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_4001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:41:00.508367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-RDR-MDR-V1.0","title":"MESSENGER MDIS MAP PROJECTED MULTISPECTRAL ARCHIVE","description":"MESSENGER MDIS map projected multispectral data. This volume contains maps of MDIS Wide Angle Camera images taken at Mercury over the interval 2011-03-29 to 2015-04-30.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_5001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:41:02.543506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-RDR-MD3-V1.0","title":"MESSENGER MDIS 3-COLOR MAP PROJECTED MULTISPECTRAL ARCHIVE","description":"MESSENGER MDIS 3-color map projected multispectral data. This volume contains maps of MDIS Wide Angle Camera images taken at Mercury.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_6001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:41:04.611915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-RDR-HIE-V1.0","title":"MESS MDIS HIGH-INCIDENCE BASEMAP ILLUM FROM EAST ARCHIVE","description":"High solar incidence angle basemap illuminated from the east reduced data records for the MDIS camera system on MESSENGER.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_7001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:41:06.572128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-RDR-HIW-V1.0","title":"MESS MDIS HIGH-INCIDENCE BASEMAP ILLUM FROM WEST ARCHIVE","description":"High solar incidence angle basemap illuminated from the west reduced data records for the MDIS camera system on MESSENGER.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_7101/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:41:08.608476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-RDR-LOI-V1.0","title":"MESS MDIS MAP PROJECTED LOW-INCIDENCE ANGLE BASEMAP ARCHIVE","description":"Low solar incidence angle basemap reduced data records for the MDIS camera system on MESSENGER.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_7201/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:41:10.677533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-RDR-MP5-V1.0","title":"5-COLOR MESSENGER MDIS MAP PROJECTED MULTISPECTRAL ARCHIVE","description":"5-color multispectral reduced data records for the wide-angle MDIS camera on MESSENGER.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_7301/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:41:12.607067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MESS-H-MDIS-5-RDR-RTM-V1.0","title":"MESS MDIS MAP PROJECTED REGIONAL TARGETED MOSAIC ARCHIVE","description":"Regional mosaics of targeted images acquired by the MESSENGER MDIS WAC or NAC camera for regions of interest.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_8001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T20:41:14.599041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MGS-M-MOC-4-SAMPLER-V1.0\",","title":"MARS GLOBAL SURVEYOR SCIENCE SAMPLER","description":"This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mgs-m-mag_er-5-sampler-v1.0/mgs_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T21:05:39.641540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MGS-M-MOC-NA/WA-2-DSDP-L0-V1.0","title":"VOLUME MGSC_0001: MOC DSDP ARCHIVE","description":"This volume contains a portion of the Mars Orbiter Camera Decompressed Standard Data Product Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mgs-m-moc-na_wa-2-dsdp-l0-v1.0/mgsc_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T21:05:43.153109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MGS-M-MOC-NA/WA-2-SDP-L0-V1.0","title":"VOLUME DMGSC_1061: MOC SDP ARCHIVE","description":"This volume contains a portion of the Mars Orbiter Camera Standard Data Product Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mgs-m-moc-na_wa-2-sdp-l0-v1.0/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T21:06:12.938611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MGS-M-SPICE-6-V1.0","title":"MARS GLOBAL SURVEYOR PRE-MAPPING SPICE FILES","description":"This volume contains the complete set of the Mars Global Surveyor SPICE Kernels for Cruise phase and Aerobraking-1 (AB1) and Science Phasing orbit 1 (SPO1) sub-phases of the Insertion phase of the mission. Coverage of this volume and previous volumes containing portions of the MGS SPICE data set are given in the table below VOLUME ID START TIME STOP TIME --------- ------------------- ------------------- MGSP_0001 1996-11-06T08:00:00 1998-05-28T00:00:00","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mgs-m-spice-6-v1.0/mgsp_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T21:06:18.971305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MPFL-M-IMP-2-EDR-V1.0","title":"VOLUME 1: IMP EDRS 1229455934 - 1247913223","description":"This volume contains images taken by the Imager for Mars Pathfinder on July 4 through July 18, 1997 (plus a few pre-landing calibration images). The images are Experiment Data Records, which have been decoded and decompressed in single frame form, but not calibrated or radiometrically corrected. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, a gazetteer, an HTML image browser, and index tables.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mpf/imp/mpim_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T21:06:40.761246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"MPFR-M-APXS-2-EDR-V1.0\",","title":"VOLUME 1: ROVER APXS, CAMERA, AND ENGINEERING DATA","description":"This volume contains data collected by the Alpha Proton X-ray Spectrometer, the three cameras mounted on the Mars Pathfinder rover, and the rover engineering sensors. All of the APXS raw Experiment Data Records (EDRs) are included, as is a table of derived Oxide abundances for some of the sample sites. Rover camera data includes all of the raw EDRs, geometrically corrected and uncorrected mosaics, color mosaics (rear camera), and anaglyphs. The engineering data is available in both raw and reduced form.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/mpf/rover/mprv_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T21:06:44.308932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"PHX-M-SSI-5-MOSAIC-OPS-V1.0\",","title":"VOLUME PHXMOS_0XXX: PHX CAMERA MOSAICS RDR ARCHIVE","description":"This volume contains a portion of the PHX Camera Mosaics Reduced Data Record V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxmos_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T23:46:54.221081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PHX-M-OM-2-EDR-V1.0","title":"VOLUME PHXOM_0XXX: PHX MECA-OM EDR ARCHIVE","description":"This volume contains a portion of the PHX MECA Optical Microscope Experiment Data Record V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxom_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T23:46:55.485594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PHX-M-RAC-2-EDR-V1.0","title":"VOLUME PHXRAC_0XXX: PHX RAC EDR ARCHIVE","description":"This volume contains a portion of the PHX Robotic Arm Camera Experiment Data Record V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxrac_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T23:46:56.177039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"PHX-M-RAC-3-RADIOMETRIC-OPS-V1.0\",","title":"VOLUME PHXRAC_1XXX: PHX RAC RDR ARCHIVE","description":"This volume contains a portion of the PHX Robotic Arm Camera Reduced Data Record V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxrac_1xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T23:46:57.210733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"PHX-M-SSI-3-RADIOMETRIC-SCI-V1.0\",","title":"VOLUME PHXSCI_0XXX: PHX CAMERA SCIENCE RDR ARCHIVE","description":"This volume contains a portion of the PHX Camera Science Reduced Data Record V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxsci_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T23:46:58.308343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PHX-M-SSI-2-EDR-V1.0","title":"VOLUME PHXSSI_0XXX: PHX SSI EDR ARCHIVE","description":"This volume contains a portion of the PHX Surface Stereo Imager Experiment Data Record V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxssi_0xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T23:46:59.182338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"PHX-M-SSI-3-RADIOMETRIC-OPS-V1.0\",","title":"VOLUME PHXSSI_1XXX: PHX SSI RDR ARCHIVE","description":"This volume contains a portion of the PHX Surface Stereo Imager Reduced Data Record V1.0 Archive","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxssi_1xxx/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-18T23:47:00.230962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VL1/VL2-M-LCS-2-EDR-V1.0","title":"VIKING LANDER 1 EDR IMAGES","description":"This CD-ROM contains Viking Lander 1 EDR (Experiment Data Record) image products in PDS format and ancillary files. The volume also contains documentation and errata files that describe the data products.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/viking/viking_lander/vl_0001/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-19T00:29:26.686854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1/VG2-S-ISS-2/3/4/6-PROCESSED-V1.0","title":"PROCESSED SATURN IMAGES FROM VG_0004","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"img","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://planetarydata.jpl.nasa.gov/img/data/voyager/VGISS_0004/","download_url":null,"label_url":null,"source_url":"https://planetarydata.jpl.nasa.gov/img/data/","scraped_at":"2026-02-19T03:08:20.964317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_4001::1.0","title":"MESSENGER MDIS BDR Data Archive","description":"Archive of MESSENGER MDIS BDR RDR data, documentation, and ancillary files","node":"img","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/bundle_messenger_mdis_4001.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/bundle_messenger_mdis_4001.xml","scraped_at":"2026-02-25T20:02:10.738315Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_dem_1001::1.0","title":"MESSENGER MDIS DEM Data Archive","description":"Archive of MESSENGER MDIS DEM RDR data, documentation, and ancillary files","node":"img","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/bundle_messenger_mdis_dem_1001.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/bundle_messenger_mdis_dem_1001.xml","scraped_at":"2026-02-25T20:02:10.738319Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun::1.0","title":"Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART Bundle","description":"RAV1CIUN's charter is to reprocess all the V1 cruise images of Neptune and Uranus, using the best calibrations, analyze the results to derive planetary reflectance for each phase angle in each Voyager imaging spectral band, and archive all results in the PDS.","node":"img","pds_version":"PDS4","type":"bundle","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":[],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/bundle.xml","scraped_at":"2026-02-25T20:02:10.739425Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated::1.1","title":"Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products","description":"Calibrated data products for Mars 2020 Perseverance Rover Entry Descent and Landing, and Lander Visual System) Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/bundle.xml","scraped_at":"2026-02-25T20:02:10.739578Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw::2.1","title":"Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products","description":"Raw data products for Mars 2020 Perseverance Rover Entry Descent and Landing, and Lander Visual System) Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/bundle.xml","scraped_at":"2026-02-25T20:02:10.739585Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_helicam::1.0","title":"Mars 2020 Helicopter Camera Suite Bundle","description":"Mars 2020 Perseverance Rover Helicopter Camera Suite Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Helicopter Camera Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_helicam/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_helicam/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_helicam/bundle.xml","scraped_at":"2026-02-25T20:02:10.739653Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:deen_pdart16_msl_msam::1.0","title":"Mastcam Stereo Analysis and Mosaics (MSAM) PDART Bundle","description":"Reprocessing of MSL Mastcam data including stereo analysis (terrain) products and mosaics, conducted by the Planetary Data Anyalysis, Reduction, and Tools (PDART) task named Mastcam Stereo Analysis and Mosaics (MSAM).","node":"img","pds_version":"PDS4","type":"bundle","missions":["MSAM"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2012-08-07","stop_date":"2019-11-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/bundle.xml","scraped_at":"2026-02-25T20:02:10.739915Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","PDART","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:annex_ehlmann_caltech_msl_msam2::1.0","title":"Mastcam Stereo Analysis and Mosaics (MSAM) Part 2 Bundle","description":"Continuation (Part 2) of Mastcam Stereo Analysis and Mosaics (MSAM) including new mosaic and terrain products for Sols 574-581 and 2481-3547.","node":"img","pds_version":"PDS4","type":"bundle","missions":["MSAM2"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":[],"start_date":"2014-03-18","stop_date":"2022-07-29","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/bundle.xml","scraped_at":"2026-02-25T20:02:10.739930Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","MSAM2","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:m2020_edlcam_raw::1.1","title":"EDLCAM Raw Video and Audio Bundle","description":"Mars 2020 Perseverance Rover Entry Descent Landing Raw Audio and Video Products.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/bundle.xml","scraped_at":"2026-02-25T20:02:10.740156Z","keywords":[],"processing_level":"Raw | Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mosaic::13.0","title":"Mars 2020 Mastcam-Z Operations Mosaic Product Bundle","description":"Bundle containing browse and data collections of mosaic products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/bundle.xml","scraped_at":"2026-02-25T20:02:10.740465Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_cachecam_ops_raw::13.0","title":"Mars 2020 CacheCam Operations Raw Product Bundle","description":"Bundle containing browse and data collections of raw products from the Mars 2020 Perseverance Rover CacheCam.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/bundle.xml","scraped_at":"2026-02-25T20:02:10.740470Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_mosaic::13.0","title":"Mars 2020 Hazcam Operations Mosaic Product Bundle","description":"Bundle containing browse and data collections of mosaic products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/bundle.xml","scraped_at":"2026-02-25T20:02:10.740473Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_mosaic::13.0","title":"Mars 2020 Navcam Operations Mosaic Product Bundle","description":"Bundle containing browse and data collections of mosaic products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/bundle.xml","scraped_at":"2026-02-25T20:02:10.740477Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_stereo::13.0","title":"Mars 2020 Hazcam Operations Stereo Product Bundle","description":"Bundle containing a data collection of stereo products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/bundle.xml","scraped_at":"2026-02-25T20:02:10.740480Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mesh::13.0","title":"Mars 2020 Mastcam-Z Operations Terrain Mesh Product Bundle","description":"Bundle containing a data collection of terrain mesh products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/bundle.xml","scraped_at":"2026-02-25T20:02:10.740484Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_raw::13.0","title":"Mars 2020 Hazcam Operations Raw Product Bundle","description":"Bundle containing browse and data collections of raw products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/bundle.xml","scraped_at":"2026-02-25T20:02:10.740487Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_calibrated::13.0","title":"Mars 2020 Hazcam Operations Calibrated Product Bundle","description":"Bundle containing browse and data collections of calibrated products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/bundle.xml","scraped_at":"2026-02-25T20:02:10.740495Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated::13.0","title":"Mars 2020 Mastcam-Z Science Calibrated Product Bundle","description":"Bundle containing browse, data, calibration support, miscellaneous and document collections of science calibrated products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the Arizona State University (ASU) instrument team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/bundle.xml","scraped_at":"2026-02-25T20:02:10.740498Z","keywords":[],"processing_level":"Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_imgops::13.0","title":"Mars 2020 Image Operations Product Bundle","description":"Bundle containing browse and data collections of products from the Mars 2020 Perseverance Rover PIXL MCC, SHERLOC ACI & WATSON and SuperCam RMI instruments, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Pixl Micro-context Camera","Mars 2020 Sherloc Imager","Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/bundle.xml","scraped_at":"2026-02-25T20:02:10.740502Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_calibrated::13.0","title":"Mars 2020 Navcam Operations Calibrated Product Bundle","description":"Bundle containing browse and data collections of calibrated products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/bundle.xml","scraped_at":"2026-02-25T20:02:10.740505Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_raw::13.0","title":"Mars 2020 Navcam Operations Raw Product Bundle","description":"Bundle containing browse and data collections of raw products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/bundle.xml","scraped_at":"2026-02-25T20:02:10.740509Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_stereo::13.0","title":"Mars 2020 Navcam Operations Stereo Product Bundle","description":"Bundle containing a data collection of stereo products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/bundle.xml","scraped_at":"2026-02-25T20:02:10.740512Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_stereo::13.0","title":"Mars 2020 Mastcam-Z Operations Stereo Product Bundle","description":"Bundle containing a data collection of stereo products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/bundle.xml","scraped_at":"2026-02-25T20:02:10.740515Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_calibrated::13.0","title":"Mars 2020 Mastcam-Z Operations Calibrated Product Bundle","description":"Bundle containing browse and data collections of calibrated products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/bundle.xml","scraped_at":"2026-02-25T20:02:10.740519Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_raw::13.0","title":"Mars 2020 Mastcam-Z Operations Raw Product Bundle","description":"Bundle containing browse and data collections of raw products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/bundle.xml","scraped_at":"2026-02-25T20:02:10.740522Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_mesh::13.0","title":"Mars 2020 Hazcam Operations Terrain Mesh Product Bundle","description":"Bundle containing a data collection of terrain mesh products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/bundle.xml","scraped_at":"2026-02-25T20:02:10.740526Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_cachecam_ops_calibrated::13.0","title":"Mars 2020 CacheCam Operations Calibrated Product Bundle","description":"Bundle containing browse and data collections of calibrated products from the Mars 2020 Perseverance Rover CacheCam.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/bundle.xml","scraped_at":"2026-02-25T20:02:10.740530Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_mesh::13.0","title":"Mars 2020 Navcam Operations Terrain Mesh Product Bundle","description":"Bundle containing a data collection of terrain mesh products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"bundle","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Perseverance"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/bundle.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/bundle.xml","scraped_at":"2026-02-25T20:02:10.740533Z","keywords":[],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_4001:bdr_rdr::1.0","title":"MESSENGER MDIS Volume Collection","description":"Archive of MESSENGER MDIS derived data, documentation, and anillary files","node":"img","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/BDR/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/BDR/collection_bdr_rdr.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/BDR/collection_bdr_rdr.xml","scraped_at":"2026-02-25T20:02:10.754428Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_4001:document::1.0","title":"MESSENGER MDIS Volume Collection","description":"Archive of MESSENGER MDIS derived data, documentation, and anillary files","node":"img","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/DOCUMENT/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/DOCUMENT/collection_document.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/DOCUMENT/collection_document.xml","scraped_at":"2026-02-25T20:02:10.754431Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_4001:browse::1.0","title":"MESSENGER MDIS Volume Collection","description":"Archive of MESSENGER MDIS derived data, documentation, and anillary files","node":"img","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/EXTRAS/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/EXTRAS/collection_browse.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/EXTRAS/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.754434Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_4001:ancillary::1.0","title":"MESSENGER MDIS Volume Collection","description":"Archive of MESSENGER MDIS derived data, documentation, and anillary files","node":"img","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/INDEX/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/INDEX/collection_ancillary.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/INDEX/collection_ancillary.xml","scraped_at":"2026-02-25T20:02:10.754438Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_dem_1001:elev::1.0","title":"MESSENGER MDIS Volume Collection","description":"Archive of MESSENGER MDIS derived data, documentation, and anillary files","node":"img","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DEM/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DEM/collection_elev.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DEM/collection_elev.xml","scraped_at":"2026-02-25T20:02:10.754440Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_dem_1001:document::1.0","title":"MESSENGER MDIS Volume Collection","description":"Archive of MESSENGER MDIS derived data, documentation, and anillary files","node":"img","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DOCUMENT/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DOCUMENT/collection_document.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DOCUMENT/collection_document.xml","scraped_at":"2026-02-25T20:02:10.754444Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_dem_1001:browse::1.0","title":"MESSENGER MDIS Volume Collection","description":"Archive of MESSENGER MDIS derived data, documentation, and anillary files","node":"img","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/EXTRAS/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/EXTRAS/collection_browse.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/EXTRAS/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.754447Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:messenger_mdis_dem_1001:ancillary::1.0","title":"MESSENGER MDIS Volume Collection","description":"Archive of MESSENGER MDIS derived data, documentation, and anillary files","node":"img","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/INDEX/","download_url":null,"label_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/INDEX/collection_ancillary.xml","source_url":"https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/INDEX/collection_ancillary.xml","scraped_at":"2026-02-25T20:02:10.754450Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:browse_calibrated::1.0","title":"Collection of Browse products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Browse products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Browse"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_calibrated.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_calibrated.xml","scraped_at":"2026-02-25T20:02:10.757656Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:browse_fixed::1.0","title":"Collection of Browse products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Browse products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Browse"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_fixed.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_fixed.xml","scraped_at":"2026-02-25T20:02:10.757664Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:browse_qedr::1.0","title":"Collection of Browse products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Browse products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Browse"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_qedr.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_qedr.xml","scraped_at":"2026-02-25T20:02:10.757672Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:browse_raw::1.0","title":"Collection of Browse products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Browse products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Browse"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_raw.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.757679Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:calibration::1.0","title":"Collection of Calibration products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Calibration products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Calibration"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/calibration/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/calibration/collection_calibration.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.757686Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_calibrated::1.0","title":"Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Data products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Data"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_calibrated.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.757712Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_fixed::1.0","title":"Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Data products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Data"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_fixed.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_fixed.xml","scraped_at":"2026-02-25T20:02:10.757720Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_qedr::1.0","title":"Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Data products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Data"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_qedr.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_qedr.xml","scraped_at":"2026-02-25T20:02:10.757727Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_raw::1.0","title":"Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Data products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Data"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_raw.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.757733Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_csv::1.0","title":"Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Data products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Data"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data_csv/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data_csv/collection_data_csv.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data_csv/collection_data_csv.xml","scraped_at":"2026-02-25T20:02:10.757741Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:document::1.0","title":"Collection of Document products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Document products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Document"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/document/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/document/collection_document.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.757748Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:miscellaneous::1.0","title":"Collection of Miscellaneous products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Miscellaneous products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Miscellaneous"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/miscellaneous/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.757756Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:scripts::1.0","title":"Collection of Miscellaneous products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART","description":"Collection of Miscellaneous products for RAV1CIUN.","node":"img","pds_version":"PDS4","type":"collection","missions":["RAV1CIUN"],"targets":["Uranus","Neptune"],"instruments":["Voyager 1 ISS Narrow Angle Camera","Voyager 1 ISS Wide Angle Camera","Voyager 2 ISS Narrow Angle Camera","Voyager 2 ISS Wide Angle Camera"],"instrument_hosts":["Voyager 1","Voyager 2"],"data_types":["Miscellaneous"],"start_date":"1977-08-24","stop_date":"1993-05-30","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/scripts/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/scripts/collection_scripts.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/scripts/collection_scripts.xml","scraped_at":"2026-02-25T20:02:10.757764Z","keywords":["Voyager","cameras","Uranus","Neptune","planetary reflectance","phase angle","interplanetary cruise","RAV1CIUN","PDART"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated:miscellaneous::11.0","title":"Collection of miscellaneous products: Mars 2020 Mast Camera Zoom Bundle, from Arizona State University Mastcam-Z Instrument Team, calibrated products","description":"Collection of MISCELLANEOUS products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r11/mars2020_mastcamz_sci_calibrated/miscellaneous/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r11/mars2020_mastcamz_sci_calibrated/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r11/mars2020_mastcamz_sci_calibrated/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.757809Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse::10.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.757905Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data::10.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-06-23","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.757911Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:browse::10.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.757916Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data::10.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-06-23","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.757922Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_helicam:browse::10.0","title":"Collection of browse products: PDS4 Mars 2020 Perseverance Rover Helicopter Camera Suite Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Helicopter Camera Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.757929Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_helicam:data::10.0","title":"Collection of data products: PDS4 Mars 2020 Perseverance Rover Helicopter Camera Suite Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Helicopter Camera Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.757934Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_ddc::4.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ddc camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ddc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ddc/collection_browse_sol0_ddc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ddc/collection_browse_sol0_ddc.xml","scraped_at":"2026-02-25T20:02:10.758059Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_lcam::1.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, lcam camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_lcam/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_lcam/collection_browse_sol0_lcam.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_lcam/collection_browse_sol0_lcam.xml","scraped_at":"2026-02-25T20:02:10.758065Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_puc1::5.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc1 camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc1/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc1/collection_browse_sol0_puc1.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc1/collection_browse_sol0_puc1.xml","scraped_at":"2026-02-25T20:02:10.758070Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_puc2::5.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc2 camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc2/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc2/collection_browse_sol0_puc2.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc2/collection_browse_sol0_puc2.xml","scraped_at":"2026-02-25T20:02:10.758096Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_puc3::3.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc3 camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc3/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc3/collection_browse_sol0_puc3.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc3/collection_browse_sol0_puc3.xml","scraped_at":"2026-02-25T20:02:10.758102Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_rdc::5.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, rdc camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_rdc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_rdc/collection_browse_sol0_rdc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_rdc/collection_browse_sol0_rdc.xml","scraped_at":"2026-02-25T20:02:10.758107Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_ruc::4.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ruc camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ruc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ruc/collection_browse_sol0_ruc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ruc/collection_browse_sol0_ruc.xml","scraped_at":"2026-02-25T20:02:10.758113Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_ddc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ddc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ddc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ddc/collection_data_sol0_ddc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ddc/collection_data_sol0_ddc.xml","scraped_at":"2026-02-25T20:02:10.758118Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_lcam::1.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, lcam camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":"2021-02-18","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_lcam/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_lcam/collection_data_sol0_lcam.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_lcam/collection_data_sol0_lcam.xml","scraped_at":"2026-02-25T20:02:10.758124Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc1::5.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc1 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc1/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc1/collection_data_sol0_puc1.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc1/collection_data_sol0_puc1.xml","scraped_at":"2026-02-25T20:02:10.758131Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc2::5.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc2 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc2/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc2/collection_data_sol0_puc2.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc2/collection_data_sol0_puc2.xml","scraped_at":"2026-02-25T20:02:10.758150Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc3::3.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc3 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc3/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc3/collection_data_sol0_puc3.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc3/collection_data_sol0_puc3.xml","scraped_at":"2026-02-25T20:02:10.758155Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_rdc::5.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, rdc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_rdc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_rdc/collection_data_sol0_rdc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_rdc/collection_data_sol0_rdc.xml","scraped_at":"2026-02-25T20:02:10.758162Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_ruc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ruc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ruc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ruc/collection_data_sol0_ruc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ruc/collection_data_sol0_ruc.xml","scraped_at":"2026-02-25T20:02:10.758168Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_ddc::4.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ddc camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ddc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ddc/collection_browse_sol0_ddc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ddc/collection_browse_sol0_ddc.xml","scraped_at":"2026-02-25T20:02:10.758174Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_lcam::1.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, lcam camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_lcam/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_lcam/collection_browse_sol0_lcam.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_lcam/collection_browse_sol0_lcam.xml","scraped_at":"2026-02-25T20:02:10.758180Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_puc1::5.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc1 camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc1/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc1/collection_browse_sol0_puc1.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc1/collection_browse_sol0_puc1.xml","scraped_at":"2026-02-25T20:02:10.758185Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_puc2::5.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc2 camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc2/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc2/collection_browse_sol0_puc2.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc2/collection_browse_sol0_puc2.xml","scraped_at":"2026-02-25T20:02:10.758190Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_puc3::4.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc3 camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc3/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc3/collection_browse_sol0_puc3.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc3/collection_browse_sol0_puc3.xml","scraped_at":"2026-02-25T20:02:10.758195Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_rdc::5.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, rdc camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_rdc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_rdc/collection_browse_sol0_rdc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_rdc/collection_browse_sol0_rdc.xml","scraped_at":"2026-02-25T20:02:10.758204Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_ruc::4.0","title":"Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ruc camera","description":"Collection of BROWSE products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ruc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ruc/collection_browse_sol0_ruc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ruc/collection_browse_sol0_ruc.xml","scraped_at":"2026-02-25T20:02:10.758209Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_ddc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ddc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ddc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ddc/collection_data_sol0_ddc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ddc/collection_data_sol0_ddc.xml","scraped_at":"2026-02-25T20:02:10.758215Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_lcam::1.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, lcam camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":"2021-02-18","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_lcam/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_lcam/collection_data_sol0_lcam.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_lcam/collection_data_sol0_lcam.xml","scraped_at":"2026-02-25T20:02:10.758222Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc1::5.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc1 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc1/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc1/collection_data_sol0_puc1.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc1/collection_data_sol0_puc1.xml","scraped_at":"2026-02-25T20:02:10.758227Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc2::5.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc2 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc2/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc2/collection_data_sol0_puc2.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc2/collection_data_sol0_puc2.xml","scraped_at":"2026-02-25T20:02:10.758233Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc3::3.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc3 camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc3/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc3/collection_data_sol0_puc3.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc3/collection_data_sol0_puc3.xml","scraped_at":"2026-02-25T20:02:10.758238Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_rdc::5.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, rdc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_rdc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_rdc/collection_data_sol0_rdc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_rdc/collection_data_sol0_rdc.xml","scraped_at":"2026-02-25T20:02:10.758244Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_ruc::4.0","title":"Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ruc camera","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager","Mars 2020 Lander Visual System"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ruc/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ruc/collection_data_sol0_ruc.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ruc/collection_data_sol0_ruc.xml","scraped_at":"2026-02-25T20:02:10.758249Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated:calibration_support::1.0","title":"Collection of data products:Mars 2020 Mast Camera Zoom Bundle, from Arizona State University Mastcam-Z Instrument Team, calibration support data products","description":"Collection of DATA products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_mastcamz_sci_calibrated/calibration_support/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_mastcamz_sci_calibrated/calibration_support/collection_calibration_support.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_mastcamz_sci_calibrated/calibration_support/collection_calibration_support.xml","scraped_at":"2026-02-25T20:02:10.758812Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:deen_pdart16_msl_msam:browse::1.0","title":"Collection of browse products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART","description":"Collection of BROWSE products for MSAM.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Browse"],"start_date":"2012-08-07","stop_date":"2019-11-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.759205Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","PDART","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:deen_pdart16_msl_msam:calibration::1.0","title":"Collection of calibration products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART","description":"Collection of CALIBRATION products for MSAM.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Calibration"],"start_date":"2012-08-07","stop_date":"2019-11-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/calibration/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/calibration/collection_calibration.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.759212Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","PDART","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:deen_pdart16_msl_msam:data::1.0","title":"Collection of data products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART","description":"Collection of DATA products for MSAM.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2012-08-07","stop_date":"2019-11-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.759219Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","PDART","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:browse::1.0","title":"Collection of browse products: Mastcam Stereo Analysis and Mosaics (MSAM) Part 2","description":"Collection of BROWSE products for MSAM2.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM2"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Browse"],"start_date":"2014-03-18","stop_date":"2022-07-29","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.759252Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","MSAM2","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:calibration::1.0","title":"Collection of calibration products: Mastcam Stereo Analysis and Mosaics (MSAM) Part 2","description":"Collection of CALIBRATION products for MSAM 2.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM2"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Calibration"],"start_date":"2014-03-18","stop_date":"2022-07-29","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/calibration/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/calibration/collection_calibration.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.759259Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","MSAM2","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:data::1.0","title":"Collection of data products: Mastcam Stereo Analysis and Mosaics Part 2 (MSAM2)","description":"Collection of DATA products for MSAM2.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM2"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Data"],"start_date":"2014-03-18","stop_date":"2022-07-29","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.759266Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","MSAM2","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:deen_pdart16_msl_msam:document::1.0","title":"Collection of document products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART","description":"Collection of DOCUMENT products for MSAM.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Document"],"start_date":"2012-08-07","stop_date":"2019-11-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/document/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/document/collection_document.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.759297Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","PDART","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:deen_pdart16_msl_msam:miscellaneous::1.0","title":"Collection of miscellaneous products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART","description":"Collection of MISCELLANEOUS products for MSAM.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Miscellaneous"],"start_date":"2012-08-07","stop_date":"2019-11-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/miscellaneous/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.759304Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","PDART","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:document::1.0","title":"Collection of document products: Mastcam Stereo Analysis and Mosaics (MSAM) Part 2","description":"Collection of DOCUMENT products for MSAM 2.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM2"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Document"],"start_date":"2014-03-18","stop_date":"2022-07-29","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/document/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/document/collection_document.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.759419Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","MSAM2","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:miscellaneous::1.0","title":"Collection of miscellaneous products: Mastcam Stereo Analysis and Mosaics (MSAM) Part 2","description":"Collection of MISCELLANEOUS products for MSAM 2.","node":"img","pds_version":"PDS4","type":"collection","missions":["MSAM2"],"targets":["Mars"],"instruments":["Mast Camera Left","Mast Camera Right","Navigation Camera Left String A","Navigation Camera Right String A","Navigation Camera Left String B","Navigation Camera Right String B"],"instrument_hosts":["Mars Science Laboratory"],"data_types":["Miscellaneous"],"start_date":"2014-03-18","stop_date":"2022-07-29","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/miscellaneous/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/miscellaneous/collection_miscellaneous.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.759427Z","keywords":["MSL","Curiosity Rover","cameras","Mars","geosciences","imaging","MSAM","MSAM2","Stereo Analysis","Mosaics"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:m2020_edlcam_raw:data_audio::13.0","title":"Mars 2020 Perseverance Rover EDLCAM Raw Audio Collection","description":"This collection contains the Mars 2020 Perseverance Rover Entry Descent Landing Raw Audio Products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager"],"instrument_hosts":["Perseverance"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/data_audio/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/data_audio/data_audio_collection.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/data_audio/data_audio_collection.xml","scraped_at":"2026-02-25T20:02:10.760239Z","keywords":["cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mosaic:browse::14.0","title":"Mars 2020 Mastcam-Z Operations Mosaic Browse Product Collection","description":"Collection of Reduced Data Record (RDR) mosaic browse products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760245Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mosaic:data::14.0","title":"Mars 2020 Mastcam-Z Operations Mosaic Data Product Collection","description":"Collection of Reduced Data Record (RDR) mosaic data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2022-04-26","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760251Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_cachecam_ops_raw:browse::14.0","title":"Mars 2020 CacheCam Operations Raw Browse Product Collection","description":"Collection of Experiment Data Record (EDR) browse products from the Mars 2020 Perseverance Rover CacheCam.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760257Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_cachecam_ops_raw:data::14.0","title":"Mars 2020 CacheCam Operations Raw Data Product Collection","description":"Collection of Experiment Data Record (EDR) data products from the Mars 2020 Perseverance Rover CacheCam.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-20","stop_date":"2025-07-02","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760263Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_mosaic:browse::14.0","title":"Mars 2020 Hazcam Operations Mosaic Browse Product Collection","description":"Collection of Reduced Data Record (RDR) mosaic browse products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760269Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_mosaic:data::14.0","title":"Mars 2020 Hazcam Operations Mosaic Data Product Collection","description":"Collection of Reduced Data Record (RDR) mosaic data products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760274Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_mosaic:browse::14.0","title":"Mars 2020 Navcam Operations Mosaic Browse Product Collection","description":"Collection of Reduced Data Record (RDR) mosaic browse products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760279Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_mosaic:data::14.0","title":"Mars 2020 Navcam Operations Mosaic Data Product Collection","description":"Collection of Reduced Data Record (RDR) mosaic data products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-20","stop_date":"2025-09-07","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760286Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_stereo:data::14.0","title":"Mars 2020 Hazcam Operations Stereo Data Product Collection","description":"Collection of Reduced Data Record (RDR) stereo data products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-18","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760291Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_mesh:data::14.0","title":"Mars 2020 Mastcam-Z Operations Terrain Mesh Data Product Collection","description":"Collection of Reduced Data Record (RDR) terrain mesh data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2022-04-26","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760297Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_raw:browse::14.0","title":"Mars 2020 Hazcam Operations Raw Browse Product Collection","description":"Collection of Experiment Data Record (EDR) browse products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760302Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_raw:data::14.0","title":"Mars 2020 Hazcam Operations Raw Data Product Collection","description":"Collection of Experiment Data Record (EDR) data products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-23","stop_date":"2025-09-05","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760307Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:m2020_edlcam_raw:document::14.0","title":"Collection of document products for the EDLCAM Raw Video and Audio Bundle","description":"Collection of document products.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager"],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document/document_collection.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document/document_collection.xml","scraped_at":"2026-02-25T20:02:10.760312Z","keywords":["cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:m2020_edlcam_raw:document_video::13.0","title":"Mars 2020 Entry, Descent, and Landing (EDL) Camera Video Data Product Collection","description":"Collection of video data products from the Mars 2020 Perseverance Rover Entry, Descent and Landing (EDL) cameras, generated by the Engineering Camera team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Entry Descent Landing Imager"],"instrument_hosts":["Perseverance"],"data_types":["Document"],"start_date":"2021-02-18","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document_video/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document_video/document_video_collection.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document_video/document_video_collection.xml","scraped_at":"2026-02-25T20:02:10.760317Z","keywords":["cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_calibrated:browse::14.0","title":"Mars 2020 Hazcam Operations Calibrated Browse Product Collection","description":"Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) browse products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760468Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_calibrated:data::14.0","title":"Mars 2020 Hazcam Operations Calibrated Data Product Collection","description":"Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) data products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760571Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_calibrated:browse::14.0","title":"Mars 2020 Navcam Operations Calibrated Browse Product Collection","description":"Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) browse products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760609Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated:browse::14.0","title":"Mars 2020 Mastcam-Z Science Calibrated Browse Product Collection","description":"Collection of science calibrated browse products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the Arizona State University (ASU) instrument team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760615Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated:data::14.0","title":"Mars 2020 Mastcam-Z Science Calibrated Data Product Collection","description":"Collection of science calibrated data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the Arizona State University (ASU) instrument team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2020-07-31","stop_date":"2025-09-09","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760620Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_sci_calibrated:document::14.0","title":"Mars 2020 Mastcam-Z Science Calibrated Document Product Collection","description":"Collection of documents describing the science calibrated products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the Arizona State University (ASU) instrument team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Document"],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/document/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/document/collection_document.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.760625Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_imgops:browse::14.0","title":"Mars 2020 Image Operations Browse Product Collection","description":"Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) browse products from the Mars 2020 Perseverance Rover PIXL MCC, SHERLOC ACI & WATSON and SuperCam RMI instruments, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Pixl Micro-context Camera","Mars 2020 Sherloc Imager","Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760632Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_imgops:data_aci_imgops::14.0","title":"Mars 2020 Image Operations SHERLOC ACI Data Product Collection","description":"Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC) Autofocus and Context Imager (ACI) instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Sherloc Imager"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2025-09-03","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_aci_imgops/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_aci_imgops/collection_data_aci_imgops.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_aci_imgops/collection_data_aci_imgops.xml","scraped_at":"2026-02-25T20:02:10.760638Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_calibrated:data::14.0","title":"Mars 2020 Navcam Operations Calibrated Data Product Collection","description":"Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) data products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760644Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_imgops:data_mcc_imgops::14.0","title":"Mars 2020 Image Operations PIXL MCC Data Product Collection","description":"Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Planetary Instrument for X-ray Lithochemistry (PIXL) Micro Context Camera (MCC) instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Pixl Micro-context Camera"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2025-09-03","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_mcc_imgops/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_mcc_imgops/collection_data_mcc_imgops.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_mcc_imgops/collection_data_mcc_imgops.xml","scraped_at":"2026-02-25T20:02:10.760649Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_imgops:data_rmi_imgops::14.0","title":"Mars 2020 Image Operations SuperCam RMI Data Product Collection","description":"Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Super Camera (SuperCam) Remote Micro-Imager (RMI) instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_rmi_imgops/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_rmi_imgops/collection_data_rmi_imgops.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_rmi_imgops/collection_data_rmi_imgops.xml","scraped_at":"2026-02-25T20:02:10.760655Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_imgops:data_watson_imgops::14.0","title":"Mars 2020 Image Operations SHERLOC WATSON Data Product Collection","description":"Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC) Wide Angle Topographic Sensor for Operations and eNgineering (WATSON) instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Sherloc Imager"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2025-09-03","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_watson_imgops/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_watson_imgops/collection_data_watson_imgops.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_watson_imgops/collection_data_watson_imgops.xml","scraped_at":"2026-02-25T20:02:10.760661Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_raw:browse::14.0","title":"Mars 2020 Navcam Operations Raw Browse Product Collection","description":"Collection of Experiment Data Record (EDR) browse products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760666Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_raw:data::14.0","title":"Mars 2020 Navcam Operations Raw Data Product Collection","description":"Collection of Experiment Data Record (EDR) data products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-23","stop_date":"2025-09-07","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760671Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_stereo:data::14.0","title":"Mars 2020 Navcam Operations Stereo Data Product Collection","description":"Collection of Reduced Data Record (RDR) stereo data products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-22","stop_date":"2025-09-06","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760677Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_calibrated:browse::14.0","title":"Mars 2020 Mastcam-Z Operations Calibrated Browse Product Collection","description":"Collection of Fundamental Data Record (FDR), and Reduced Data Record (RDR) browse products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760682Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_stereo:data::14.0","title":"Mars 2020 Mastcam-Z Operations Stereo Data Product Collection","description":"Collection of Reduced Data Record (RDR) stereo data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2022-04-26","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760688Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_calibrated:data::14.0","title":"Mars 2020 Mastcam-Z Operations Calibrated Data Product Collection","description":"Collection of Fundamental Data Record (FDR), and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2022-04-26","stop_date":"2025-09-09","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760694Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_raw:browse::14.0","title":"Mars 2020 Mastcam-Z Operations Raw Browse Product Collection","description":"Collection of Experiment Data Record (EDR) browse products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760699Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_mastcamz_ops_raw:data::14.0","title":"Mars 2020 Mastcam-Z Operations Raw Data Product Collection","description":"Collection of Experiment Data Record (EDR) data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Mastcam-Zoom Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-05-23","stop_date":"2025-09-09","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760705Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_hazcam_ops_mesh:data::14.0","title":"Mars 2020 Hazcam Operations Terrain Mesh Data Product Collection","description":"Collection of Reduced Data Record (RDR) terrain mesh data products from the Mars 2020 Perseverance Rover Hazard Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2025-09-08","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760710Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_cachecam_ops_calibrated:browse::14.0","title":"Mars 2020 CacheCam Operations Calibrated Browse Product Collection","description":"Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) browse products from the Mars 2020 Perseverance Rover CacheCam.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/browse/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/browse/collection_browse.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.760715Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_cachecam_ops_calibrated:data::14.0","title":"Mars 2020 CacheCam Operations Calibrated Data Product Collection","description":"Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) data products from the Mars 2020 Perseverance Rover CacheCam.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-19","stop_date":"2025-07-02","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760721Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:mars2020_navcam_ops_mesh:data::14.0","title":"Mars 2020 Navcam Operations Terrain Mesh Data Product Collection","description":"Collection of Reduced Data Record (RDR) terrain mesh data products from the Mars 2020 Perseverance Rover Navigation Cameras.","node":"img","pds_version":"PDS4","type":"collection","missions":["Mars 2020 Perseverance Rover Mission"],"targets":["Mars"],"instruments":["Mars 2020 Engineering Camera Instrument Suite"],"instrument_hosts":["Mars 2020 Perseverance Rover"],"data_types":["Data"],"start_date":"2021-02-20","stop_date":"2025-09-06","browse_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/data/","download_url":null,"label_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/data/collection_data.xml","source_url":"https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.760726Z","keywords":["Mars 2020","Perseverance Rover","cameras","Mars","geosciences","imaging"],"processing_level":"Raw | Partially Processed | Calibrated | Derived","file_count":null,"total_size_bytes":null} +{"id": "CO-S-ISSNA/ISSWA-5-MIDR-V1.0", "title": "VOLUME 1: CASSINI ISS CARTOGRAPHIC MAP OF PHOEBE", "description": "This volume contains a cartographic map of the Saturn moon PHOEBE. It was generated using data collected by Cassini's Instrument Science Subsystem cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/carto/coiss_3001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:50:24.764170", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V1.0", "title": "CASSINI ISS CALIBRATION FILES Volume 1 of 11", "description": "This volume contains a subset of the raw ground calibration images taken by the flight model of the CASSINI Wide-Angle Camera (WACFM) and of the CASSINI Narrow-Angle Camera (NACFM).", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:50:41.210614", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V2.0", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data files and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Instrument Science Subsystem cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v2/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:50:52.680560", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.0", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v4.0/coiss_0011_v4/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:51:02.928884", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.1", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v4.1/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:51:03.975988", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.2", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v4.2/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:51:05.022884", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.3", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_0011_v4.3/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:51:07.121616", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-E/V/J-ISSNA/ISSWA-2-EDR-V1.0", "title": "VOLUME 1: CASSINI ISS IMAGES 1294561143 - 1351738471", "description": "This volume contains data collected by Cassini's Instrument Science Subsystem cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_1001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:51:08.168232", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-ISSNA/ISSWA-2-EDR-V1.0", "title": "VOLUME 1: CASSINI ISS IMAGES 1454725799 - 1460960370", "description": "This volume contains data collected by Cassini's Instrument Science Subsystem cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/coiss_2001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T15:51:17.897835", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-V/E/J/S-RADAR-3-LBDR-V1.0", "title": "CASSINI RADAR VOLUME 3: Earth Flyby, August 18,1999", "description": "This volume contains a set of scatterometer and radiometer data that were obtained during the Earth Flyby. The radar observed portions of the South Pacific and South America.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0003/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:00:14.904456", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-V/E/J/S-RADAR-3-SBDR-V1.0", "title": "CASSINI RADAR VOLUME 6: Jupiter Synchrotron, Sequence C23, January 3, 2001", "description": "This volume contains radiometer only data acquired during a set of Jupiter scans. These data were used to analyze synchrotron emission from Jupiter's radiation belts.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0006/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:00:15.859604", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SSA-RADAR-3-ABDR-V1.0", "title": "VOLUME 35: Titan Flyby TA, Sequence S05,Oct 27, 2004", "description": "This volume contains Cassini Radar Burst Ordered Data Record and Basic Image Data Record products including SAR Imagery from Titan Flyby TA.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0035/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:00:20.832144", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-V/E/J/S-RADAR-3-SBDR-V2.0", "title": "VOLUME 171: Titan, Sequence S45, Nov 6, 2008", "description": "This volume contains a distant Titan radiometer observation.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0171/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:06:37.695674", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-V/E/J/S-RADAR-3-LBDR-V2.0", "title": "VOLUME 176: Saturn, Sequence S46, Dec 18, 2008", "description": "This volume contains Saturn global mapping radiometry scans.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/CORADR_0176/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:07:43.137813", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-E/V/J/S-VIMS-2-QUBE-V1.0", "title": "SAMPLE: CASSINI VIMS IMAGE/SPECTRAL CUBES", "description": "This DVD contains Cassini Visual and Infrared Mapping Spectrometer (VIMS) raw cube data, documentation, for all available files with start times (SCET) 1999-01-10T05:40:00.157 through 2000-09-18T13:26:42.517.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/cassini/cassini_orbiter/covims_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:14:04.077796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CLEM1-L-H-5-DIM-MOSAIC-V1.0", "title": "VOLUME 01: CLEMENTINE HIRES MOSAIC", "description": "This volume contains a portion of the Clementine 750-nm Digital Image Model(DIM) Hires mosaic derived from 750-nm wavelength images acquired by the High Resolution Camera.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/clem1-l-h-5-dim-mosaic-v1.0/cl_6001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:26:51.794464", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CLEM1-L-N-5-DIM-NIR-V1.0", "title": "VOLUME 01: CLEMENTINE NIR MOSAIC", "description": "This volume contains a portion of the Clementine Near-Infrared (NIR) Multi-Spectral Digital Image Model (DIM) derived from images acquired by the Near-Infrared Camera.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/clem1-l-n-5-dim-nir-v1.0/cl_5001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:27:17.938574", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CLEM1-L-U-5-DIM-BASEMAP-V1.0", "title": "VOLUME 01: CLEMENTINE BASEMAP MOSAIC", "description": "This volume contains a portion of the Clementine 750-nm Digital Image Model(DIM) basemap derived from 750-nm wavelength images acquired by the Ultraviolet/Visible Camera.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/clem1-l-u-5-dim-basemap-v1.0/cl_3001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:29:47.144469", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CLEM1-L-U-5-DIM-UVVIS-V1.0", "title": "VOLUME 01: CLEMENTINE UVVIS MOSAIC", "description": "This volume contains a portion of the Clementine Ultra-Violet Visible (UVVIS) Multi-Spectral Digital Image Model (DIM) derived from images acquired by the Ultraviolet/Visible Camera.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/clem1-l-u-5-dim-uvvis-v1.0/cl_4001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:30:44.921097", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CLEM1-L/E/Y-A/B/U/H/L/N-2-EDR-V1.0", "title": "VOLUME 01: REVOLUTION NUMBERS 32, 33, 34, 35, 36", "description": "This volume contains the Clementine EDR Images acquired by the Ultraviolet/Visible Camera, Near-Infrared Camera, Long Wavelength Infrared Camera, Laser Image Detection and Ranging Imager (Hi Res) and the Star-Tracker Cameras.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/clem1-l_e_y-a_b_u_h_l_n-2-edr-v1.0/cl_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T16:32:55.704411", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-CAL-SSI-6-V1.0", "title": "GALILEO CALIBRATION FILES", "description": "This volume, titled Galileo SSI Calibration Files,(GO_0001), is a part of the Galileo Solid State Imaging Raw EDR data set which resides on volumes GO_0002 thru GO_0023. Included are all calibration files required to properly decalibration the images obtained from the Galileo SSI Camera system. Contents of this volume include: =============================== the following types of calibration files: Calibration Slope Files, Dark Current files, Shutter Offset file and Blemish files.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:06:53.237317", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J/JSA-SSI-2-REDR-V1.0", "title": "GALILEO IMAGES FROM JUPITER ORBITS 1-3", "description": "This volume, titled Galileo Images From Jupiter Orbits 1-3 (GO_0017), is a part of the Galileo Jupiter Orbital Operations Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0019. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during the first three orbits of the Jupiter Orbital Operations Phase of the mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== Jupiter Pre-Orbit 1 (Jupiter 0) ------------------------------- SCLK range: 346405900 - 349193900 (Optical Navigation-OPNAV) ERT range: 96/155:17:47:18.857 - 96/175:07:41:11.980 Jupiter Orbit 1 (Ganymede 1) ---------------------------- SCLK ranges: 349542152 - 350029800 356000600 - 359198400 (OPNAV) ERT ranges: 96/183-07:38:25.928 - 96/231-13:43:20.690 96/223:02:39:43.300 - 96/237:10:55:15.282 (OPNAV) Jupiter Orbit 2 (Ganymede 2) ---------------------------- SCLK ranges: 359251000 - 359322300 (OPNAV) 359402445 - 360361200 ERT ranges: 96/245:22:26:14.566 - 96/246:10:31:10.512 (OPNAV) 96/255-14:03:53.827 - 96/301-02:37:09.523 Orbit 3 (Callisto 3) -------------------- SCLK ranges: 368211900 - 368992339 372343200 - 374037400 (OPNAV) ERT ranges: 96/316-05:27:12.172 - 96/348-02:11:05.236 96/337:20:50:32.231 - 96/349:18:46:37.142 (OPNAV)", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_0017/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:07:25.943163", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J/JSA-SSI-2-REDR-V1.0", "title": "GALILEO IMAGES FROM JUPITER ORBITS 11 - 17", "description": "This volume, titled Galileo Images From Jupiter Orbits 11 - 17 (GO_0020), is a part of the Galileo Jupiter Orbital Operations and Galileo Europa Mission Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0020. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during three of the Jupiter Orbital Operations phases of the mission and extended Galileo Europa Mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== JUPITER ORBIT 11 EUROPA ======================= SCLK ranges: 420361400 - 420900345 ERT ranges: 97/313-18:06:10 - 97/348-15:22:08 JUPITER ORBIT 12 EUROPA ======================= SCLK ranges: 426117300 - 426273839 ERT ranges: 97/352-08:19:59 - 98/082-02:15:37 JUPITER ORBIT 12 EUROPA TIRE_TRACK ================================== SCLK ranges: 426272849 - 426272856 ERT ranges: 98/026:14:59:26 - 98/080:10:39:12 JUPITER ORBIT 14 EUROPA ======================= SCLK ranges: 440873539 - 441026827 ERT ranges: 98/090-03:50:04 - 98/148-20:59:05 JUPITER ORBIT 15 EUROPA ======================= SCLK ranges: 449841900 - 450111001 ERT ranges: 98/152-22:55:06 - 98/267-09:24:19 JUPITER ORBIT 17 EUROPA ======================= SCLK ranges: 466580845 - 466684900 ERT ranges: 98/270-08:58:01 - 99/026-06:09:21", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_0020/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:07:28.882587", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-E/L-NIMS-2-EDR-V1.0", "title": "Galileo NIMS EDR Data from the Earth 2 Encounter, Part 1", "description": "This volume is the second containing Galileo Near-Infrared Mapping Spectrometer (NIMS) Experiment Data Records (EDRs). It includes EDRs of data acquired by the NIMS instrument in the test and calibration period preceding Galileo's second Earth encounter. No actual Earth or Moon data is present on this volume.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1002/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:07:36.911042", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-E/L-NIMS-2-EDR-V1.0", "title": "Galileo NIMS EDR Data: Earth 2 (pt 3), Gaspra, Ida and S-L 9", "description": "This volume is the fourth containing Galileo Near-Infrared Mapping Spectrometer (NIMS) Experiment Data Records (EDRs). It includes EDRs of all data acquired by the NIMS instrument during Galileo's second Earth/Moon encounter, during the Gaspra and Ida asteroid encounters and from the Shoemaker-Levy 9 comet impact with Jupiter.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1004/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:07:39.532060", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J-NIMS-2-EDR-V2.0", "title": "GALILEO NIMS EDR DATA: JUPITER (G1-E4)", "description": "This volume is the fifth containing Galileo Near Infrared Mapping Spectrometer (NIMS) Experiment Data Records (EDRs). It contains EDRs of all data acquired by the NIMS instrument during Galileo's first four orbits of Jupiter and successfully played back to Earth. This time period includes the Ganymede 1 (G1), Ganymede 2 (G2), Callisto 3 (C3) and Europa 4 (E4) encounters. There is also a small amount of calibration data taken before G1, and during the J5 conjunction orbit.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1005/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:07:40.392264", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-V-NIMS-4-MOSAIC-V1.0", "title": "Galileo NIMS Cube Data: Venus", "description": "This volume is the first containing Galileo Near Infrared Mapping Spectrometer (NIMS) Spectral Image Cubes, also known as NIMS Mosaics. It is derived from data acquired by the NIMS instrument during Galileo's Venus encounter.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1101/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:07:44.908967", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-E-NIMS-4-MOSAIC-V1.0", "title": "Galileo NIMS Cube Data: Earth 1", "description": "This volume is the second containing Galileo Near Infrared Mapping Spectrometer (NIMS) Spectral Image Cubes, also known as NIMS Mosaics. It is derived from data acquired by the NIMS instrument during Galileo's first Earth/Moon encounter.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1102/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:07:45.920334", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J-NIMS-4-MOSAIC-V1.0", "title": "GALILEO NIMS CUBE DATA: GANYMEDE 1 ENCOUNTER", "description": "This volume is the fourth containing Galileo Near Infrared Mapping Spectrometer (NIMS) Spectral Image Cubes. They are derived from data acquired by the NIMS instrument during Galileo's first encounter with Jupiter and its satellites, the Ganymede 1 (G1) encounter, and include both mosaics (g-cubes) of resampled data projected on the target and tubes of unresampled data in NIMS instrument space. The volume also includes some products from checkout observations for new in-flight software loaded before the G1 encounter, tubes from the earlier Gaspra and Ida asteroid encounters, and some highly processed results (in table form) derived from NIMS observations of the Shoemaker-Levy 9 comet impact with Jupiter.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/galileo/galileo_orbiter/go_1104/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:07:48.616825", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JUNO-J-JUNOCAM-2-EDR-L0-V1.0", "title": "NULL", "description": "This volume contains Juno JunoCam data in their original, compressed format (EDR) and decompressed, processed format (RDR). In addition, mosaics of one or more individual JunoCam images are combined to create global and regional map products. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/juno-j-junocam-2-edr-l0-v1.0/JNOJNC_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:15:29.927480", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JNO-J-SRU-EDR-2-L0-V1.0", "title": "NULL", "description": "This volume contains Juno Stellar Reference Unit data in their original, uncompressed format (EDR) and tables of derived count rates. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/juno/JNOSRU_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:16:07.029412", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "LCROSS-E/L-MIR1-2-RAW-V1.0", "title": "LCROSS RAW AND CALIBRATED DATA", "description": "This volume contains raw and calibrated images and spectra from the Lunar Crater Observation and Sensing Satellite (LCROSS) instrument suite.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/lcross/LCRO_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:16:08.491930", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "LO1-L-80MMFLC/24INCHFLC-5-MIDR-V1.0", "title": "Volume 1: Lunar Orbiters 1-5", "description": "This volume contains Lunar Orbiter 1 through 5 image data. The volume also contains detailed documentation about the missions, instruments, and data sets, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/lo/LO_1001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:16:10.070917", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "LRO-L-LAMP-2-EDR-V1.0", "title": "LRO LAMP EDR OBSERVATIONS", "description": "This volume contains experiment data record (EDR) data acquired by the Lunar Reconnaissance Orbiter Lyman-Alpha Mapping Project. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/lro/saved/edr/LROLAM_0053/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:16:14.550416", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "LRO-L-LAMP-3-RDR-V1.0", "title": "LRO LAMP RDR OBSERVATIONS", "description": "This volume contains reduced data record (RDR) data acquired by the Lunar Reconnaissance Orbiter Lyman-Alpha Mapping Project. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/lro/saved/rdr/LROLAM_1053/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:16:16.064443", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CH1-ORB-L-M3-2-L0-RAW-V1.0", "title": "CH-1 M3 LEVEL 0/LEVEL 1B IMAGES", "description": "This volume contains Chandrayaan-1 Lunar Orbiter Ch-1) Moon Mineralogy Mapper (M3) raw and reduced image data. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/m3/CH1M3_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:17:01.909862", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CH1-ORB-L-M3-4-L1B-RADIANCE-V3.0", "title": "CH-1 M3 LEVEL 0/LEVEL 1B IMAGES", "description": "This volume contains Chandrayaan-1 Lunar Orbiter Ch-1) Moon Mineralogy Mapper (M3) reduced image data. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/m3/CH1M3_0003/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:17:03.656839", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CH1-ORB-L-M3-4-L2-REFLECTANCE-V1.0", "title": "CH-1 M3 LEVEL 0/LEVEL 1B/LEVEL 2 IMAGES", "description": "This volume contains pixel located, reflectance-calibrated, near-IR spectral image data acquired from November 2008 through August 2009 by the Moon Mineralogy Mapper instrument during the Chandrayaan-1 mission to the Moon.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/m3/CH1M3_0004/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:17:04.822100", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MGN-V-RDRS-5-DIM-V1.0", "title": "VOLUME 3", "description": "This volume contains the Venus Full Resolution Radar Mosaics at a resolution of 75 meters/pixel or 1/1408 degree/pixel and a gazetteer of Venus features. This volume covers the region extending from latitude 12.0 N to 24.0 N, and from east longitude 192.0 to 216.0 degrees.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/magellan/mg_1103/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T17:50:19.610335", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MSL-M-MAHLI-2-EDR-IMG-V1.0", "title": "NULL", "description": "This volume contains Mars Science Laboratory (MSL) Mars Hand Lens Imager (MAHLI) data in their original, compressed format (EDR) and decompressed, processed format (RDR). The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mahli/MSLMHL_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T18:08:24.314270", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MSL-M-MARDI-2-EDR-IMG-V1.0", "title": "NULL", "description": "This volume contains Mars Science Laboratory (MSL) Mars Descent Imager (MARDI) data in their original, compressed format (EDR) and decompressed, processed format (RDR). The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mardi/MSLMRD_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T18:08:38.921460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MRO-M-CTX-2-EDR-L0-V1.0", "title": "VOLUME MROX_0001: MRO CTX EDR ARCHIVE", "description": "This volume contains a portion of the MRO Context Camera Experiment Data Record Level 0 V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mars%20reconnaissance%20orbiter/ctx/mrox_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T18:15:06.665408", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MRO-M-MARCI-2-EDR-L0-V1.0", "title": "VOLUME MROM_0001: MRO MARCI EDR ARCHIVE", "description": "This volume contains a portion of the MRO Mars Color Imager Experiment Data Record Level 0 V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mars%20reconnaissance%20orbiter/marci/mrom_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:03:48.497226", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MSL-M-MASTCAM-2-EDR-IMG-V1.0", "title": "NULL", "description": "This volume contains Mars Science Laboratory (MSL) Mast Camera (Mastcam) data in their original, compressed format (EDR) and decompressed, processed format (RDR). The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mastcam/MSLMST_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:33:42.512072", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER1-M-DESCAM-2-EDR-OPS-V1.0", "title": "MER1: DESCAM OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Descent Camera onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer1do_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:33:57.180154", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER1-M-HAZCAM-2-EDR-OPS-V1.0", "title": "MER1: HAZCAM OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Hazard Avoidance Camera onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer1ho_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:33:58.104859", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER1-M-MI-2-EDR-OPS-V1.0", "title": "MER1: MI OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Microscopic Imager (MI) onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer1mo_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:33:59.109516", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER1-M-NAVCAM-2-EDR-OPS-V1.0", "title": "MER1: NAVCAM OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Navigation Cameras onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer1no_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:34:15.033169", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER1-M-PANCAM-2-EDR-OPS-V1.0", "title": "MER1: PANCAM OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Panoramic Cameras onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer1po_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:35:01.146282", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER2-M-DESCAM-2-EDR-OPS-V1.0", "title": "MER2: DESCAM OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Descent Camera onboard the MER1 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer2do_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:35:02.101330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER2-M-HAZCAM-2-EDR-OPS-V1.0", "title": "MER2: HAZCAM OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Hazard Avoidance Camera onboard the MER2 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer2ho_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:35:03.175311", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER2-M-MI-2-EDR-OPS-V1.0", "title": "MER2: MI OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Microscopic Imager (MI) onboard the MER2 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer2mo_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:35:04.151408", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER2-M-NAVCAM-2-EDR-OPS-V1.0", "title": "MER2: NAVCAM OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Navigation Cameras onboard the MER2 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer2no_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:35:08.209861", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MER2-M-PANCAM-2-EDR-OPS-V1.0", "title": "MER2: PANCAM OPERATIONS EDR ARCHIVE", "description": "This volume contains data acquired by the Navigation Cameras onboard the MER2 rover. The volume also contains detailed documentation about the mission, spacecraft, instruments, data sets, as well as calibration information and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mer/mer2po_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:35:32.666586", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-DEM-ELEVATION-V1.0", "title": "MESSENGER MDIS DIGITAL ELEVATION MODEL ARCHIVE", "description": "MESSENGER Digital Elevation Model (DEM). This volume contains digital elevation data of Mercury obtained from the MDIS Wide Angle Camera and Narrow Angle Camera images taken at Mercury.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mess-h-mdis-5-dem-elevation-v1.0/MESSDEM_1001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:40:47.710226", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-E/V/H-MDIS-2-EDR-RAWDATA-V1.0", "title": "MESSENGER MDIS UNCALIBRATED DATA ARCHIVE", "description": "MESSENGER MDIS uncalibrated data. This volume contains MDIS images taken from after launch through orbital operations over the interval 2004-08-19 to 2015-04-30.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_1001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:40:54.427653", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-E/V/H-MDIS-4-CDR-CALDATA-V1.0", "title": "MESSENGER MDIS CALIBRATED DATA ARCHIVE", "description": "MESSENGER MDIS calibrated data. This volume contains MDIS images taken at Earth, Venus and Mercury over the interval 2004-232 (19-Aug) to 2015-120 (30-Apr).", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_2001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:40:56.401382", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-E/V/H-MDIS-6-DDR-GEOMDATA-V1.0", "title": "MESSENGER MDIS DERIVED DATA ARCHIVE", "description": "This volume contains Derived Data Record (DDR) information for all valid, calibratible images acquired during flybys and orbit around Mercury, for which the target is Mercury and at least part of the image falls on the surface of the planet.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_3001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:40:58.620025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-RDR-BDR-V1.0", "title": "MESSENGER MDIS MAP PROJECTED BASEMAP ARCHIVE", "description": "MESSENGER MDIS map projected basemap data. This volume contains maps of MDIS Narrow Angle Camera, and Wide Angle Camera images taken at Mercury over the interval 2011-03-29 to 2015-04-30.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_4001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:41:00.508367", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-RDR-MDR-V1.0", "title": "MESSENGER MDIS MAP PROJECTED MULTISPECTRAL ARCHIVE", "description": "MESSENGER MDIS map projected multispectral data. This volume contains maps of MDIS Wide Angle Camera images taken at Mercury over the interval 2011-03-29 to 2015-04-30.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_5001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:41:02.543506", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-RDR-MD3-V1.0", "title": "MESSENGER MDIS 3-COLOR MAP PROJECTED MULTISPECTRAL ARCHIVE", "description": "MESSENGER MDIS 3-color map projected multispectral data. This volume contains maps of MDIS Wide Angle Camera images taken at Mercury.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_6001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:41:04.611915", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-RDR-HIE-V1.0", "title": "MESS MDIS HIGH-INCIDENCE BASEMAP ILLUM FROM EAST ARCHIVE", "description": "High solar incidence angle basemap illuminated from the east reduced data records for the MDIS camera system on MESSENGER.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_7001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:41:06.572128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-RDR-HIW-V1.0", "title": "MESS MDIS HIGH-INCIDENCE BASEMAP ILLUM FROM WEST ARCHIVE", "description": "High solar incidence angle basemap illuminated from the west reduced data records for the MDIS camera system on MESSENGER.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_7101/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:41:08.608476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-RDR-LOI-V1.0", "title": "MESS MDIS MAP PROJECTED LOW-INCIDENCE ANGLE BASEMAP ARCHIVE", "description": "Low solar incidence angle basemap reduced data records for the MDIS camera system on MESSENGER.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_7201/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:41:10.677533", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-RDR-MP5-V1.0", "title": "5-COLOR MESSENGER MDIS MAP PROJECTED MULTISPECTRAL ARCHIVE", "description": "5-color multispectral reduced data records for the wide-angle MDIS camera on MESSENGER.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_7301/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:41:12.607067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MESS-H-MDIS-5-RDR-RTM-V1.0", "title": "MESS MDIS MAP PROJECTED REGIONAL TARGETED MOSAIC ARCHIVE", "description": "Regional mosaics of targeted images acquired by the MESSENGER MDIS WAC or NAC camera for regions of interest.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/messenger/MDIS/MDIS/MSGRMDS_8001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T20:41:14.599041", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MGS-M-MOC-4-SAMPLER-V1.0", "title": "MARS GLOBAL SURVEYOR SCIENCE SAMPLER", "description": "This volume contains derived MOC, MOLA, MAG/ER, and TES products from the Assessment Phase of the Mars Global Surveyor Mission, plus a Mariner 9/ Viking gravity model of Mars that will be updated by the MGS RSS experiment.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mgs-m-mag_er-5-sampler-v1.0/mgs_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T21:05:39.641540", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MGS-M-MOC-NA/WA-2-DSDP-L0-V1.0", "title": "VOLUME MGSC_0001: MOC DSDP ARCHIVE", "description": "This volume contains a portion of the Mars Orbiter Camera Decompressed Standard Data Product Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mgs-m-moc-na_wa-2-dsdp-l0-v1.0/mgsc_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T21:05:43.153109", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MGS-M-MOC-NA/WA-2-SDP-L0-V1.0", "title": "VOLUME DMGSC_1061: MOC SDP ARCHIVE", "description": "This volume contains a portion of the Mars Orbiter Camera Standard Data Product Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mgs-m-moc-na_wa-2-sdp-l0-v1.0/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T21:06:12.938611", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MGS-M-SPICE-6-V1.0", "title": "MARS GLOBAL SURVEYOR PRE-MAPPING SPICE FILES", "description": "This volume contains the complete set of the Mars Global Surveyor SPICE Kernels for Cruise phase and Aerobraking-1 (AB1) and Science Phasing orbit 1 (SPO1) sub-phases of the Insertion phase of the mission. Coverage of this volume and previous volumes containing portions of the MGS SPICE data set are given in the table below VOLUME ID START TIME STOP TIME --------- ------------------- ------------------- MGSP_0001 1996-11-06T08:00:00 1998-05-28T00:00:00", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mgs-m-spice-6-v1.0/mgsp_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T21:06:18.971305", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MPFL-M-IMP-2-EDR-V1.0", "title": "VOLUME 1: IMP EDRS 1229455934 - 1247913223", "description": "This volume contains images taken by the Imager for Mars Pathfinder on July 4 through July 18, 1997 (plus a few pre-landing calibration images). The images are Experiment Data Records, which have been decoded and decompressed in single frame form, but not calibrated or radiometrically corrected. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, a gazetteer, an HTML image browser, and index tables.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mpf/imp/mpim_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T21:06:40.761246", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MPFR-M-APXS-2-EDR-V1.0", "title": "VOLUME 1: ROVER APXS, CAMERA, AND ENGINEERING DATA", "description": "This volume contains data collected by the Alpha Proton X-ray Spectrometer, the three cameras mounted on the Mars Pathfinder rover, and the rover engineering sensors. All of the APXS raw Experiment Data Records (EDRs) are included, as is a table of derived Oxide abundances for some of the sample sites. Rover camera data includes all of the raw EDRs, geometrically corrected and uncorrected mosaics, color mosaics (rear camera), and anaglyphs. The engineering data is available in both raw and reduced form.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/mpf/rover/mprv_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T21:06:44.308932", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHX-M-SSI-5-MOSAIC-OPS-V1.0", "title": "VOLUME PHXMOS_0XXX: PHX CAMERA MOSAICS RDR ARCHIVE", "description": "This volume contains a portion of the PHX Camera Mosaics Reduced Data Record V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxmos_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T23:46:54.221081", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHX-M-OM-2-EDR-V1.0", "title": "VOLUME PHXOM_0XXX: PHX MECA-OM EDR ARCHIVE", "description": "This volume contains a portion of the PHX MECA Optical Microscope Experiment Data Record V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxom_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T23:46:55.485594", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHX-M-RAC-2-EDR-V1.0", "title": "VOLUME PHXRAC_0XXX: PHX RAC EDR ARCHIVE", "description": "This volume contains a portion of the PHX Robotic Arm Camera Experiment Data Record V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxrac_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T23:46:56.177039", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHX-M-RAC-3-RADIOMETRIC-OPS-V1.0", "title": "VOLUME PHXRAC_1XXX: PHX RAC RDR ARCHIVE", "description": "This volume contains a portion of the PHX Robotic Arm Camera Reduced Data Record V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxrac_1xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T23:46:57.210733", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHX-M-SSI-3-RADIOMETRIC-SCI-V1.0", "title": "VOLUME PHXSCI_0XXX: PHX CAMERA SCIENCE RDR ARCHIVE", "description": "This volume contains a portion of the PHX Camera Science Reduced Data Record V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxsci_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T23:46:58.308343", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHX-M-SSI-2-EDR-V1.0", "title": "VOLUME PHXSSI_0XXX: PHX SSI EDR ARCHIVE", "description": "This volume contains a portion of the PHX Surface Stereo Imager Experiment Data Record V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxssi_0xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T23:46:59.182338", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHX-M-SSI-3-RADIOMETRIC-OPS-V1.0", "title": "VOLUME PHXSSI_1XXX: PHX SSI RDR ARCHIVE", "description": "This volume contains a portion of the PHX Surface Stereo Imager Reduced Data Record V1.0 Archive", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/phoenix/phxssi_1xxx/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-18T23:47:00.230962", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VL1/VL2-M-LCS-2-EDR-V1.0", "title": "VIKING LANDER 1 EDR IMAGES", "description": "This CD-ROM contains Viking Lander 1 EDR (Experiment Data Record) image products in PDS format and ancillary files. The volume also contains documentation and errata files that describe the data products.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/viking/viking_lander/vl_0001/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-19T00:29:26.686854", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-S-ISS-2/3/4/6-PROCESSED-V1.0", "title": "PROCESSED SATURN IMAGES FROM VG_0004", "description": "This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.", "node": "img", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://planetarydata.jpl.nasa.gov/img/data/voyager/VGISS_0004/", "download_url": null, "label_url": null, "source_url": "https://planetarydata.jpl.nasa.gov/img/data/", "scraped_at": "2026-02-19T03:08:20.964317", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_4001::1.0", "title": "MESSENGER MDIS BDR Data Archive", "description": "Archive of MESSENGER MDIS BDR RDR data, documentation, and ancillary files", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/bundle_messenger_mdis_4001.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/bundle_messenger_mdis_4001.xml", "scraped_at": "2026-02-25T20:02:10.738315Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_dem_1001::1.0", "title": "MESSENGER MDIS DEM Data Archive", "description": "Archive of MESSENGER MDIS DEM RDR data, documentation, and ancillary files", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/bundle_messenger_mdis_dem_1001.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/bundle_messenger_mdis_dem_1001.xml", "scraped_at": "2026-02-25T20:02:10.738319Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun::1.0", "title": "Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART Bundle", "description": "RAV1CIUN's charter is to reprocess all the V1 cruise images of Neptune and Uranus, using the best calibrations, analyze the results to derive planetary reflectance for each phase angle in each Voyager imaging spectral band, and archive all results in the PDS.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": [], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739425Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated::1.1", "title": "Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products", "description": "Calibrated data products for Mars 2020 Perseverance Rover Entry Descent and Landing, and Lander Visual System) Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739578Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw::2.1", "title": "Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products", "description": "Raw data products for Mars 2020 Perseverance Rover Entry Descent and Landing, and Lander Visual System) Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739585Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_helicam::1.0", "title": "Mars 2020 Helicopter Camera Suite Bundle", "description": "Mars 2020 Perseverance Rover Helicopter Camera Suite Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Helicopter Camera Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_helicam/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_helicam/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_helicam/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739653Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:deen_pdart16_msl_msam::1.0", "title": "Mastcam Stereo Analysis and Mosaics (MSAM) PDART Bundle", "description": "Reprocessing of MSL Mastcam data including stereo analysis (terrain) products and mosaics, conducted by the Planetary Data Anyalysis, Reduction, and Tools (PDART) task named Mastcam Stereo Analysis and Mosaics (MSAM).", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["MSAM"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": [], "start_date": "2012-08-07", "stop_date": "2019-11-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739915Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "PDART", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:annex_ehlmann_caltech_msl_msam2::1.0", "title": "Mastcam Stereo Analysis and Mosaics (MSAM) Part 2 Bundle", "description": "Continuation (Part 2) of Mastcam Stereo Analysis and Mosaics (MSAM) including new mosaic and terrain products for Sols 574-581 and 2481-3547.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["MSAM2"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": [], "start_date": "2014-03-18", "stop_date": "2022-07-29", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739930Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "MSAM2", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:m2020_edlcam_raw::1.1", "title": "EDLCAM Raw Video and Audio Bundle", "description": "Mars 2020 Perseverance Rover Entry Descent Landing Raw Audio and Video Products.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740156Z", "keywords": [], "processing_level": "Raw | Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_mosaic::13.0", "title": "Mars 2020 Mastcam-Z Operations Mosaic Product Bundle", "description": "Bundle containing browse and data collections of mosaic products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740465Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_cachecam_ops_raw::13.0", "title": "Mars 2020 CacheCam Operations Raw Product Bundle", "description": "Bundle containing browse and data collections of raw products from the Mars 2020 Perseverance Rover CacheCam.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740470Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_mosaic::13.0", "title": "Mars 2020 Hazcam Operations Mosaic Product Bundle", "description": "Bundle containing browse and data collections of mosaic products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740473Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_mosaic::13.0", "title": "Mars 2020 Navcam Operations Mosaic Product Bundle", "description": "Bundle containing browse and data collections of mosaic products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740477Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_stereo::13.0", "title": "Mars 2020 Hazcam Operations Stereo Product Bundle", "description": "Bundle containing a data collection of stereo products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740480Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_mesh::13.0", "title": "Mars 2020 Mastcam-Z Operations Terrain Mesh Product Bundle", "description": "Bundle containing a data collection of terrain mesh products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740484Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_raw::13.0", "title": "Mars 2020 Hazcam Operations Raw Product Bundle", "description": "Bundle containing browse and data collections of raw products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740487Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_calibrated::13.0", "title": "Mars 2020 Hazcam Operations Calibrated Product Bundle", "description": "Bundle containing browse and data collections of calibrated products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740495Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_sci_calibrated::13.0", "title": "Mars 2020 Mastcam-Z Science Calibrated Product Bundle", "description": "Bundle containing browse, data, calibration support, miscellaneous and document collections of science calibrated products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the Arizona State University (ASU) instrument team.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740498Z", "keywords": [], "processing_level": "Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_imgops::13.0", "title": "Mars 2020 Image Operations Product Bundle", "description": "Bundle containing browse and data collections of products from the Mars 2020 Perseverance Rover PIXL MCC, SHERLOC ACI & WATSON and SuperCam RMI instruments, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Pixl Micro-context Camera", "Mars 2020 Sherloc Imager", "Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740502Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_calibrated::13.0", "title": "Mars 2020 Navcam Operations Calibrated Product Bundle", "description": "Bundle containing browse and data collections of calibrated products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740505Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_raw::13.0", "title": "Mars 2020 Navcam Operations Raw Product Bundle", "description": "Bundle containing browse and data collections of raw products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740509Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_stereo::13.0", "title": "Mars 2020 Navcam Operations Stereo Product Bundle", "description": "Bundle containing a data collection of stereo products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740512Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_stereo::13.0", "title": "Mars 2020 Mastcam-Z Operations Stereo Product Bundle", "description": "Bundle containing a data collection of stereo products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740515Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_calibrated::13.0", "title": "Mars 2020 Mastcam-Z Operations Calibrated Product Bundle", "description": "Bundle containing browse and data collections of calibrated products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740519Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_raw::13.0", "title": "Mars 2020 Mastcam-Z Operations Raw Product Bundle", "description": "Bundle containing browse and data collections of raw products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740522Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_mesh::13.0", "title": "Mars 2020 Hazcam Operations Terrain Mesh Product Bundle", "description": "Bundle containing a data collection of terrain mesh products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740526Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_cachecam_ops_calibrated::13.0", "title": "Mars 2020 CacheCam Operations Calibrated Product Bundle", "description": "Bundle containing browse and data collections of calibrated products from the Mars 2020 Perseverance Rover CacheCam.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740530Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_mesh::13.0", "title": "Mars 2020 Navcam Operations Terrain Mesh Product Bundle", "description": "Bundle containing a data collection of terrain mesh products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "bundle", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Perseverance"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/bundle.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/bundle.xml", "scraped_at": "2026-02-25T20:02:10.740533Z", "keywords": [], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_4001:bdr_rdr::1.0", "title": "MESSENGER MDIS Volume Collection", "description": "Archive of MESSENGER MDIS derived data, documentation, and anillary files", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/BDR/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/BDR/collection_bdr_rdr.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/BDR/collection_bdr_rdr.xml", "scraped_at": "2026-02-25T20:02:10.754428Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_4001:document::1.0", "title": "MESSENGER MDIS Volume Collection", "description": "Archive of MESSENGER MDIS derived data, documentation, and anillary files", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/DOCUMENT/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/DOCUMENT/collection_document.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/DOCUMENT/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.754431Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_4001:browse::1.0", "title": "MESSENGER MDIS Volume Collection", "description": "Archive of MESSENGER MDIS derived data, documentation, and anillary files", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/EXTRAS/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/EXTRAS/collection_browse.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/EXTRAS/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.754434Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_4001:ancillary::1.0", "title": "MESSENGER MDIS Volume Collection", "description": "Archive of MESSENGER MDIS derived data, documentation, and anillary files", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Miscellaneous"], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/INDEX/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/INDEX/collection_ancillary.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MSGRMDS_4001/INDEX/collection_ancillary.xml", "scraped_at": "2026-02-25T20:02:10.754438Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_dem_1001:elev::1.0", "title": "MESSENGER MDIS Volume Collection", "description": "Archive of MESSENGER MDIS derived data, documentation, and anillary files", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DEM/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DEM/collection_elev.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DEM/collection_elev.xml", "scraped_at": "2026-02-25T20:02:10.754440Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_dem_1001:document::1.0", "title": "MESSENGER MDIS Volume Collection", "description": "Archive of MESSENGER MDIS derived data, documentation, and anillary files", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DOCUMENT/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DOCUMENT/collection_document.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/DOCUMENT/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.754444Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_dem_1001:browse::1.0", "title": "MESSENGER MDIS Volume Collection", "description": "Archive of MESSENGER MDIS derived data, documentation, and anillary files", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/EXTRAS/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/EXTRAS/collection_browse.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/EXTRAS/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.754447Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:messenger_mdis_dem_1001:ancillary::1.0", "title": "MESSENGER MDIS Volume Collection", "description": "Archive of MESSENGER MDIS derived data, documentation, and anillary files", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Miscellaneous"], "start_date": null, "stop_date": null, "browse_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/INDEX/", "download_url": null, "label_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/INDEX/collection_ancillary.xml", "source_url": "https://asc-pds-messenger.s3.us-west-2.amazonaws.com/MESSDEM_1001/INDEX/collection_ancillary.xml", "scraped_at": "2026-02-25T20:02:10.754450Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:browse_calibrated::1.0", "title": "Collection of Browse products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Browse products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Browse"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_calibrated.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.757656Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:browse_fixed::1.0", "title": "Collection of Browse products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Browse products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Browse"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_fixed.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_fixed.xml", "scraped_at": "2026-02-25T20:02:10.757664Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:browse_qedr::1.0", "title": "Collection of Browse products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Browse products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Browse"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_qedr.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_qedr.xml", "scraped_at": "2026-02-25T20:02:10.757672Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:browse_raw::1.0", "title": "Collection of Browse products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Browse products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Browse"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_raw.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/browse/collection_browse_raw.xml", "scraped_at": "2026-02-25T20:02:10.757679Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:calibration::1.0", "title": "Collection of Calibration products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Calibration products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Calibration"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/calibration/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/calibration/collection_calibration.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.757686Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_calibrated::1.0", "title": "Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Data products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Data"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_calibrated.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.757712Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_fixed::1.0", "title": "Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Data products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Data"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_fixed.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_fixed.xml", "scraped_at": "2026-02-25T20:02:10.757720Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_qedr::1.0", "title": "Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Data products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Data"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_qedr.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_qedr.xml", "scraped_at": "2026-02-25T20:02:10.757727Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_raw::1.0", "title": "Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Data products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Data"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_raw.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.757733Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:data_csv::1.0", "title": "Collection of Data products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Data products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Data"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data_csv/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data_csv/collection_data_csv.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/data_csv/collection_data_csv.xml", "scraped_at": "2026-02-25T20:02:10.757741Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:document::1.0", "title": "Collection of Document products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Document products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Document"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/document/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/document/collection_document.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.757748Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:miscellaneous::1.0", "title": "Collection of Miscellaneous products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Miscellaneous products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Miscellaneous"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/miscellaneous/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/miscellaneous/collection_miscellaneous.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/miscellaneous/collection_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.757756Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:wenkert_pdart16_vgr_rav1ciun:scripts::1.0", "title": "Collection of Miscellaneous products: Restoring and Archiving Voyager 1 Cruise Images of Uranus and Neptune (RAV1CIUN) PDART", "description": "Collection of Miscellaneous products for RAV1CIUN.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["RAV1CIUN"], "targets": ["Uranus", "Neptune"], "instruments": ["Voyager 1 ISS Narrow Angle Camera", "Voyager 1 ISS Wide Angle Camera", "Voyager 2 ISS Narrow Angle Camera", "Voyager 2 ISS Wide Angle Camera"], "instrument_hosts": ["Voyager 1", "Voyager 2"], "data_types": ["Miscellaneous"], "start_date": "1977-08-24", "stop_date": "1993-05-30", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/scripts/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/scripts/collection_scripts.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/vgr/pdart/r1/wenkert_pdart16_vgr_rav1ciun/scripts/collection_scripts.xml", "scraped_at": "2026-02-25T20:02:10.757764Z", "keywords": ["Voyager", "cameras", "Uranus", "Neptune", "planetary reflectance", "phase angle", "interplanetary cruise", "RAV1CIUN", "PDART"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_sci_calibrated:miscellaneous::11.0", "title": "Collection of miscellaneous products: Mars 2020 Mast Camera Zoom Bundle, from Arizona State University Mastcam-Z Instrument Team, calibrated products", "description": "Collection of MISCELLANEOUS products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r11/mars2020_mastcamz_sci_calibrated/miscellaneous/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r11/mars2020_mastcamz_sci_calibrated/miscellaneous/collection_miscellaneous.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r11/mars2020_mastcamz_sci_calibrated/miscellaneous/collection_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.757809Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse::10.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.757905Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:data::10.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-06-23", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_calibrated/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.757911Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:browse::10.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.757916Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:data::10.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-06-23", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_edlcam_ops_raw/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.757922Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_helicam:browse::10.0", "title": "Collection of browse products: PDS4 Mars 2020 Perseverance Rover Helicopter Camera Suite Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Helicopter Camera Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.757929Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_helicam:data::10.0", "title": "Collection of data products: PDS4 Mars 2020 Perseverance Rover Helicopter Camera Suite Experiment Data Record (EDR) and Reduced Data Record (RDR) Data Products", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Helicopter Camera Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r10/mars2020_helicam/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.757934Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_ddc::4.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ddc camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ddc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ddc/collection_browse_sol0_ddc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ddc/collection_browse_sol0_ddc.xml", "scraped_at": "2026-02-25T20:02:10.758059Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_lcam::1.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, lcam camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_lcam/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_lcam/collection_browse_sol0_lcam.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_lcam/collection_browse_sol0_lcam.xml", "scraped_at": "2026-02-25T20:02:10.758065Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_puc1::5.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc1 camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc1/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc1/collection_browse_sol0_puc1.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc1/collection_browse_sol0_puc1.xml", "scraped_at": "2026-02-25T20:02:10.758070Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_puc2::5.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc2 camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc2/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc2/collection_browse_sol0_puc2.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc2/collection_browse_sol0_puc2.xml", "scraped_at": "2026-02-25T20:02:10.758096Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_puc3::3.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc3 camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc3/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc3/collection_browse_sol0_puc3.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_puc3/collection_browse_sol0_puc3.xml", "scraped_at": "2026-02-25T20:02:10.758102Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_rdc::5.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, rdc camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_rdc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_rdc/collection_browse_sol0_rdc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_rdc/collection_browse_sol0_rdc.xml", "scraped_at": "2026-02-25T20:02:10.758107Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:browse_sol0_ruc::4.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ruc camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ruc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ruc/collection_browse_sol0_ruc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/browse_sol0_ruc/collection_browse_sol0_ruc.xml", "scraped_at": "2026-02-25T20:02:10.758113Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_ddc::4.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ddc camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ddc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ddc/collection_data_sol0_ddc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ddc/collection_data_sol0_ddc.xml", "scraped_at": "2026-02-25T20:02:10.758118Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_lcam::1.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, lcam camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": "2021-02-18", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_lcam/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_lcam/collection_data_sol0_lcam.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_lcam/collection_data_sol0_lcam.xml", "scraped_at": "2026-02-25T20:02:10.758124Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc1::5.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc1 camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc1/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc1/collection_data_sol0_puc1.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc1/collection_data_sol0_puc1.xml", "scraped_at": "2026-02-25T20:02:10.758131Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc2::5.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc2 camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc2/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc2/collection_data_sol0_puc2.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc2/collection_data_sol0_puc2.xml", "scraped_at": "2026-02-25T20:02:10.758150Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_puc3::3.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, puc3 camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc3/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc3/collection_data_sol0_puc3.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_puc3/collection_data_sol0_puc3.xml", "scraped_at": "2026-02-25T20:02:10.758155Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_rdc::5.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, rdc camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_rdc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_rdc/collection_data_sol0_rdc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_rdc/collection_data_sol0_rdc.xml", "scraped_at": "2026-02-25T20:02:10.758162Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_calibrated:data_sol0_ruc::4.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, calibrated products, sol 0, ruc camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ruc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ruc/collection_data_sol0_ruc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_calibrated/data_sol0_ruc/collection_data_sol0_ruc.xml", "scraped_at": "2026-02-25T20:02:10.758168Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_ddc::4.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ddc camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ddc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ddc/collection_browse_sol0_ddc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ddc/collection_browse_sol0_ddc.xml", "scraped_at": "2026-02-25T20:02:10.758174Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_lcam::1.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, lcam camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_lcam/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_lcam/collection_browse_sol0_lcam.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_lcam/collection_browse_sol0_lcam.xml", "scraped_at": "2026-02-25T20:02:10.758180Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_puc1::5.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc1 camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc1/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc1/collection_browse_sol0_puc1.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc1/collection_browse_sol0_puc1.xml", "scraped_at": "2026-02-25T20:02:10.758185Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_puc2::5.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc2 camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc2/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc2/collection_browse_sol0_puc2.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc2/collection_browse_sol0_puc2.xml", "scraped_at": "2026-02-25T20:02:10.758190Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_puc3::4.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc3 camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc3/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc3/collection_browse_sol0_puc3.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_puc3/collection_browse_sol0_puc3.xml", "scraped_at": "2026-02-25T20:02:10.758195Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_rdc::5.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, rdc camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_rdc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_rdc/collection_browse_sol0_rdc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_rdc/collection_browse_sol0_rdc.xml", "scraped_at": "2026-02-25T20:02:10.758204Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:browse_sol0_ruc::4.0", "title": "Collection of browse products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ruc camera", "description": "Collection of BROWSE products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ruc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ruc/collection_browse_sol0_ruc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/browse_sol0_ruc/collection_browse_sol0_ruc.xml", "scraped_at": "2026-02-25T20:02:10.758209Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_ddc::4.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ddc camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ddc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ddc/collection_data_sol0_ddc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ddc/collection_data_sol0_ddc.xml", "scraped_at": "2026-02-25T20:02:10.758215Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_lcam::1.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, lcam camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": "2021-02-18", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_lcam/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_lcam/collection_data_sol0_lcam.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_lcam/collection_data_sol0_lcam.xml", "scraped_at": "2026-02-25T20:02:10.758222Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc1::5.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc1 camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc1/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc1/collection_data_sol0_puc1.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc1/collection_data_sol0_puc1.xml", "scraped_at": "2026-02-25T20:02:10.758227Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc2::5.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc2 camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc2/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc2/collection_data_sol0_puc2.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc2/collection_data_sol0_puc2.xml", "scraped_at": "2026-02-25T20:02:10.758233Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_puc3::3.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, puc3 camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc3/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc3/collection_data_sol0_puc3.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_puc3/collection_data_sol0_puc3.xml", "scraped_at": "2026-02-25T20:02:10.758238Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_rdc::5.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, rdc camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_rdc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_rdc/collection_data_sol0_rdc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_rdc/collection_data_sol0_rdc.xml", "scraped_at": "2026-02-25T20:02:10.758244Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_edlcam_ops_raw:data_sol0_ruc::4.0", "title": "Collection of data products: Mars 2020 Entry, Descent, and Landing (EDL) and Lander Visual System Cameras Bundle, raw products, sol 0, ruc camera", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager", "Mars 2020 Lander Visual System"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ruc/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ruc/collection_data_sol0_ruc.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_edlcam_ops_raw/data_sol0_ruc/collection_data_sol0_ruc.xml", "scraped_at": "2026-02-25T20:02:10.758249Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_sci_calibrated:calibration_support::1.0", "title": "Collection of data products:Mars 2020 Mast Camera Zoom Bundle, from Arizona State University Mastcam-Z Instrument Team, calibration support data products", "description": "Collection of DATA products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_mastcamz_sci_calibrated/calibration_support/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_mastcamz_sci_calibrated/calibration_support/collection_calibration_support.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/mars2020_mastcamz_sci_calibrated/calibration_support/collection_calibration_support.xml", "scraped_at": "2026-02-25T20:02:10.758812Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:deen_pdart16_msl_msam:browse::1.0", "title": "Collection of browse products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART", "description": "Collection of BROWSE products for MSAM.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Browse"], "start_date": "2012-08-07", "stop_date": "2019-11-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.759205Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "PDART", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:deen_pdart16_msl_msam:calibration::1.0", "title": "Collection of calibration products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART", "description": "Collection of CALIBRATION products for MSAM.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Calibration"], "start_date": "2012-08-07", "stop_date": "2019-11-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/calibration/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/calibration/collection_calibration.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.759212Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "PDART", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:deen_pdart16_msl_msam:data::1.0", "title": "Collection of data products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART", "description": "Collection of DATA products for MSAM.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Data"], "start_date": "2012-08-07", "stop_date": "2019-11-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.759219Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "PDART", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:browse::1.0", "title": "Collection of browse products: Mastcam Stereo Analysis and Mosaics (MSAM) Part 2", "description": "Collection of BROWSE products for MSAM2.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM2"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Browse"], "start_date": "2014-03-18", "stop_date": "2022-07-29", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.759252Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "MSAM2", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:calibration::1.0", "title": "Collection of calibration products: Mastcam Stereo Analysis and Mosaics (MSAM) Part 2", "description": "Collection of CALIBRATION products for MSAM 2.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM2"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Calibration"], "start_date": "2014-03-18", "stop_date": "2022-07-29", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/calibration/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/calibration/collection_calibration.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.759259Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "MSAM2", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:data::1.0", "title": "Collection of data products: Mastcam Stereo Analysis and Mosaics Part 2 (MSAM2)", "description": "Collection of DATA products for MSAM2.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM2"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Data"], "start_date": "2014-03-18", "stop_date": "2022-07-29", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.759266Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "MSAM2", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:deen_pdart16_msl_msam:document::1.0", "title": "Collection of document products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART", "description": "Collection of DOCUMENT products for MSAM.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Document"], "start_date": "2012-08-07", "stop_date": "2019-11-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/document/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/document/collection_document.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.759297Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "PDART", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:deen_pdart16_msl_msam:miscellaneous::1.0", "title": "Collection of miscellaneous products: Mastcam Stereo Analysis and Mosaics (MSAM) PDART", "description": "Collection of MISCELLANEOUS products for MSAM.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Miscellaneous"], "start_date": "2012-08-07", "stop_date": "2019-11-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/miscellaneous/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/miscellaneous/collection_miscellaneous.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r1/deen_pdart16_msl_msam/miscellaneous/collection_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.759304Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "PDART", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:document::1.0", "title": "Collection of document products: Mastcam Stereo Analysis and Mosaics (MSAM) Part 2", "description": "Collection of DOCUMENT products for MSAM 2.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM2"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Document"], "start_date": "2014-03-18", "stop_date": "2022-07-29", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/document/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/document/collection_document.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.759419Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "MSAM2", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:annex_ehlmann_caltech_msl_msam2:miscellaneous::1.0", "title": "Collection of miscellaneous products: Mastcam Stereo Analysis and Mosaics (MSAM) Part 2", "description": "Collection of MISCELLANEOUS products for MSAM 2.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["MSAM2"], "targets": ["Mars"], "instruments": ["Mast Camera Left", "Mast Camera Right", "Navigation Camera Left String A", "Navigation Camera Right String A", "Navigation Camera Left String B", "Navigation Camera Right String B"], "instrument_hosts": ["Mars Science Laboratory"], "data_types": ["Miscellaneous"], "start_date": "2014-03-18", "stop_date": "2022-07-29", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/miscellaneous/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/miscellaneous/collection_miscellaneous.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/archive/msl/msam/r2/annex_ehlmann_caltech_msl_msam2/miscellaneous/collection_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.759427Z", "keywords": ["MSL", "Curiosity Rover", "cameras", "Mars", "geosciences", "imaging", "MSAM", "MSAM2", "Stereo Analysis", "Mosaics"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:m2020_edlcam_raw:data_audio::13.0", "title": "Mars 2020 Perseverance Rover EDLCAM Raw Audio Collection", "description": "This collection contains the Mars 2020 Perseverance Rover Entry Descent Landing Raw Audio Products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager"], "instrument_hosts": ["Perseverance"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/data_audio/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/data_audio/data_audio_collection.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/data_audio/data_audio_collection.xml", "scraped_at": "2026-02-25T20:02:10.760239Z", "keywords": ["cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_mosaic:browse::14.0", "title": "Mars 2020 Mastcam-Z Operations Mosaic Browse Product Collection", "description": "Collection of Reduced Data Record (RDR) mosaic browse products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760245Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_mosaic:data::14.0", "title": "Mars 2020 Mastcam-Z Operations Mosaic Data Product Collection", "description": "Collection of Reduced Data Record (RDR) mosaic data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2022-04-26", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mosaic/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760251Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_cachecam_ops_raw:browse::14.0", "title": "Mars 2020 CacheCam Operations Raw Browse Product Collection", "description": "Collection of Experiment Data Record (EDR) browse products from the Mars 2020 Perseverance Rover CacheCam.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760257Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_cachecam_ops_raw:data::14.0", "title": "Mars 2020 CacheCam Operations Raw Data Product Collection", "description": "Collection of Experiment Data Record (EDR) data products from the Mars 2020 Perseverance Rover CacheCam.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-05-20", "stop_date": "2025-07-02", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_raw/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760263Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_mosaic:browse::14.0", "title": "Mars 2020 Hazcam Operations Mosaic Browse Product Collection", "description": "Collection of Reduced Data Record (RDR) mosaic browse products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760269Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_mosaic:data::14.0", "title": "Mars 2020 Hazcam Operations Mosaic Data Product Collection", "description": "Collection of Reduced Data Record (RDR) mosaic data products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mosaic/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760274Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_mosaic:browse::14.0", "title": "Mars 2020 Navcam Operations Mosaic Browse Product Collection", "description": "Collection of Reduced Data Record (RDR) mosaic browse products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760279Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_mosaic:data::14.0", "title": "Mars 2020 Navcam Operations Mosaic Data Product Collection", "description": "Collection of Reduced Data Record (RDR) mosaic data products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-20", "stop_date": "2025-09-07", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mosaic/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760286Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_stereo:data::14.0", "title": "Mars 2020 Hazcam Operations Stereo Data Product Collection", "description": "Collection of Reduced Data Record (RDR) stereo data products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-18", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_stereo/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760291Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_mesh:data::14.0", "title": "Mars 2020 Mastcam-Z Operations Terrain Mesh Data Product Collection", "description": "Collection of Reduced Data Record (RDR) terrain mesh data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2022-04-26", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_mesh/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760297Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_raw:browse::14.0", "title": "Mars 2020 Hazcam Operations Raw Browse Product Collection", "description": "Collection of Experiment Data Record (EDR) browse products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760302Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_raw:data::14.0", "title": "Mars 2020 Hazcam Operations Raw Data Product Collection", "description": "Collection of Experiment Data Record (EDR) data products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-05-23", "stop_date": "2025-09-05", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_raw/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760307Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:m2020_edlcam_raw:document::14.0", "title": "Collection of document products for the EDLCAM Raw Video and Audio Bundle", "description": "Collection of document products.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager"], "instrument_hosts": ["Perseverance"], "data_types": ["Document"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document/document_collection.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document/document_collection.xml", "scraped_at": "2026-02-25T20:02:10.760312Z", "keywords": ["cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:m2020_edlcam_raw:document_video::13.0", "title": "Mars 2020 Entry, Descent, and Landing (EDL) Camera Video Data Product Collection", "description": "Collection of video data products from the Mars 2020 Perseverance Rover Entry, Descent and Landing (EDL) cameras, generated by the Engineering Camera team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Entry Descent Landing Imager"], "instrument_hosts": ["Perseverance"], "data_types": ["Document"], "start_date": "2021-02-18", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document_video/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document_video/document_video_collection.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/cumulative/m2020_edlcam_raw/document_video/document_video_collection.xml", "scraped_at": "2026-02-25T20:02:10.760317Z", "keywords": ["cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_calibrated:browse::14.0", "title": "Mars 2020 Hazcam Operations Calibrated Browse Product Collection", "description": "Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) browse products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760468Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_calibrated:data::14.0", "title": "Mars 2020 Hazcam Operations Calibrated Data Product Collection", "description": "Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) data products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_calibrated/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760571Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_calibrated:browse::14.0", "title": "Mars 2020 Navcam Operations Calibrated Browse Product Collection", "description": "Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) browse products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760609Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_sci_calibrated:browse::14.0", "title": "Mars 2020 Mastcam-Z Science Calibrated Browse Product Collection", "description": "Collection of science calibrated browse products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the Arizona State University (ASU) instrument team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760615Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_sci_calibrated:data::14.0", "title": "Mars 2020 Mastcam-Z Science Calibrated Data Product Collection", "description": "Collection of science calibrated data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the Arizona State University (ASU) instrument team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2020-07-31", "stop_date": "2025-09-09", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760620Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_sci_calibrated:document::14.0", "title": "Mars 2020 Mastcam-Z Science Calibrated Document Product Collection", "description": "Collection of documents describing the science calibrated products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the Arizona State University (ASU) instrument team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Document"], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/document/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/document/collection_document.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_sci_calibrated/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.760625Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_imgops:browse::14.0", "title": "Mars 2020 Image Operations Browse Product Collection", "description": "Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) browse products from the Mars 2020 Perseverance Rover PIXL MCC, SHERLOC ACI & WATSON and SuperCam RMI instruments, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Pixl Micro-context Camera", "Mars 2020 Sherloc Imager", "Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760632Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_imgops:data_aci_imgops::14.0", "title": "Mars 2020 Image Operations SHERLOC ACI Data Product Collection", "description": "Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC) Autofocus and Context Imager (ACI) instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Sherloc Imager"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2025-09-03", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_aci_imgops/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_aci_imgops/collection_data_aci_imgops.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_aci_imgops/collection_data_aci_imgops.xml", "scraped_at": "2026-02-25T20:02:10.760638Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_calibrated:data::14.0", "title": "Mars 2020 Navcam Operations Calibrated Data Product Collection", "description": "Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) data products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_calibrated/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760644Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_imgops:data_mcc_imgops::14.0", "title": "Mars 2020 Image Operations PIXL MCC Data Product Collection", "description": "Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Planetary Instrument for X-ray Lithochemistry (PIXL) Micro Context Camera (MCC) instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Pixl Micro-context Camera"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2025-09-03", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_mcc_imgops/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_mcc_imgops/collection_data_mcc_imgops.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_mcc_imgops/collection_data_mcc_imgops.xml", "scraped_at": "2026-02-25T20:02:10.760649Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_imgops:data_rmi_imgops::14.0", "title": "Mars 2020 Image Operations SuperCam RMI Data Product Collection", "description": "Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Super Camera (SuperCam) Remote Micro-Imager (RMI) instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Spectrometer and Micro-Imager Suite (SuperCam)"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_rmi_imgops/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_rmi_imgops/collection_data_rmi_imgops.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_rmi_imgops/collection_data_rmi_imgops.xml", "scraped_at": "2026-02-25T20:02:10.760655Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_imgops:data_watson_imgops::14.0", "title": "Mars 2020 Image Operations SHERLOC WATSON Data Product Collection", "description": "Collection of Experiment Data Record (EDR), Fundamental Data Record (FDR) and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Scanning Habitable Environments with Raman and Luminescence for Organics and Chemicals (SHERLOC) Wide Angle Topographic Sensor for Operations and eNgineering (WATSON) instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Sherloc Imager"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2025-09-03", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_watson_imgops/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_watson_imgops/collection_data_watson_imgops.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_imgops/data_watson_imgops/collection_data_watson_imgops.xml", "scraped_at": "2026-02-25T20:02:10.760661Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_raw:browse::14.0", "title": "Mars 2020 Navcam Operations Raw Browse Product Collection", "description": "Collection of Experiment Data Record (EDR) browse products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760666Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_raw:data::14.0", "title": "Mars 2020 Navcam Operations Raw Data Product Collection", "description": "Collection of Experiment Data Record (EDR) data products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-05-23", "stop_date": "2025-09-07", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_raw/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760671Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_stereo:data::14.0", "title": "Mars 2020 Navcam Operations Stereo Data Product Collection", "description": "Collection of Reduced Data Record (RDR) stereo data products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-22", "stop_date": "2025-09-06", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_stereo/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760677Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_calibrated:browse::14.0", "title": "Mars 2020 Mastcam-Z Operations Calibrated Browse Product Collection", "description": "Collection of Fundamental Data Record (FDR), and Reduced Data Record (RDR) browse products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760682Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_stereo:data::14.0", "title": "Mars 2020 Mastcam-Z Operations Stereo Data Product Collection", "description": "Collection of Reduced Data Record (RDR) stereo data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2022-04-26", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_stereo/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760688Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_calibrated:data::14.0", "title": "Mars 2020 Mastcam-Z Operations Calibrated Data Product Collection", "description": "Collection of Fundamental Data Record (FDR), and Reduced Data Record (RDR) data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2022-04-26", "stop_date": "2025-09-09", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_calibrated/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760694Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_raw:browse::14.0", "title": "Mars 2020 Mastcam-Z Operations Raw Browse Product Collection", "description": "Collection of Experiment Data Record (EDR) browse products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760699Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_mastcamz_ops_raw:data::14.0", "title": "Mars 2020 Mastcam-Z Operations Raw Data Product Collection", "description": "Collection of Experiment Data Record (EDR) data products from the Mars 2020 Perseverance Rover Mast Camera Zoom instrument, generated by the IDS Operations team.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Mastcam-Zoom Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-05-23", "stop_date": "2025-09-09", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_mastcamz_ops_raw/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760705Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_hazcam_ops_mesh:data::14.0", "title": "Mars 2020 Hazcam Operations Terrain Mesh Data Product Collection", "description": "Collection of Reduced Data Record (RDR) terrain mesh data products from the Mars 2020 Perseverance Rover Hazard Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2025-09-08", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_hazcam_ops_mesh/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760710Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_cachecam_ops_calibrated:browse::14.0", "title": "Mars 2020 CacheCam Operations Calibrated Browse Product Collection", "description": "Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) browse products from the Mars 2020 Perseverance Rover CacheCam.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/browse/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/browse/collection_browse.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.760715Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_cachecam_ops_calibrated:data::14.0", "title": "Mars 2020 CacheCam Operations Calibrated Data Product Collection", "description": "Collection of Fundamental Data Record (FDR), Reduced Data Record (RDR) and Tile-fundamental Data Record (TDR) data products from the Mars 2020 Perseverance Rover CacheCam.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-19", "stop_date": "2025-07-02", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_cachecam_ops_calibrated/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760721Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:mars2020_navcam_ops_mesh:data::14.0", "title": "Mars 2020 Navcam Operations Terrain Mesh Data Product Collection", "description": "Collection of Reduced Data Record (RDR) terrain mesh data products from the Mars 2020 Perseverance Rover Navigation Cameras.", "node": "img", "pds_version": "PDS4", "type": "collection", "missions": ["Mars 2020 Perseverance Rover Mission"], "targets": ["Mars"], "instruments": ["Mars 2020 Engineering Camera Instrument Suite"], "instrument_hosts": ["Mars 2020 Perseverance Rover"], "data_types": ["Data"], "start_date": "2021-02-20", "stop_date": "2025-09-06", "browse_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/data/", "download_url": null, "label_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/data/collection_data.xml", "source_url": "https://pds-imaging.jpl.nasa.gov/archive/m20/r14/mars2020_navcam_ops_mesh/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.760726Z", "keywords": ["Mars 2020", "Perseverance Rover", "cameras", "Mars", "geosciences", "imaging"], "processing_level": "Raw | Partially Processed | Calibrated | Derived", "file_count": null, "total_size_bytes": null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl index d74cb56..e79e789 100644 --- a/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/rms_catalog.jsonl @@ -1,1050 +1,1050 @@ -{"id":"HST-S-WFPC2-4-ASTROM2002-V1.0","title":"VOLUME 1: SATURN SATELLITE ASTROMETRY WITH WFPC2 1994-2002","description":"This volume contains ASCII table files giving the positions of various Saturnian satellites in HST images taken during the period 1994-2002.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/ASTROM_xxxx/ASTROM_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:51:48.815041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S/SA-WFPC2-4-ASTROM2005-V1.0","title":"SATURN SATELLITE ASTROMETRY WITH WFPC2 1996-2005","description":"This volume contains ASCII table files giving the positions of various Saturnian satellites in HST images taken during the period 1996-2005.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/ASTROM_xxxx/ASTROM_0101/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:51:49.801767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-J-CIRS-2/3/4-TSDR-V2.0","title":"CASSINI CIRS JUPITER RAW AND CALIBRATED DATA ARCHIVE","description":"This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx/COCIRS_0010/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:51:51.804182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-CIRS-2/3/4-TSDR-V4.0\",","title":"CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE","description":"This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx/COCIRS_0401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:52:08.859259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-S-CIRS-2/3/4-TSDR-V2.0","title":"CASSINI CIRS SATURN RAW AND CALIBRATED DATA ARCHIVE","description":"This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx_v2/COCIRS_0401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:53:22.036268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-CIRS-2/3/4-TSDR-V3.2\",","title":"CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE","description":"This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx_v3/COCIRS_0401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:54:35.241944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-S-CIRS-2/3/4-TSDR-V3.1","title":"CASSINI CIRS SATURN RAW AND CALIBRATED DATA ARCHIVE","description":"This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_1xxx_v2/COCIRS_1007/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:57:38.636245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-S-CIRS-2/3/4-REFORMATTED-V1.0","title":"CASSINI CIRS SATURN REFORMATTED DATA ARCHIVE","description":"This volume contains infrared interferograms and metadata from the Cassini CIRS Instrument at Saturn. Files have been re-formatted from the original team release for easier access.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_5xxx/COCIRS_5401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:59:13.841646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-S-CIRS-2/3/4-REFORMATTED-V1.1","title":"CASSINI CIRS SATURN REFORMATTED DATA ARCHIVE","description":"This volume contains infrared interferograms and metadata from the Cassini CIRS Instrument at Saturn. Files have been re-formatted from the original team release for easier access.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COCIRS_5xxx/COCIRS_5502/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T03:59:26.844988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V1.0","title":"CASSINI ISS CALIBRATION FILES Volume 1 of 11","description":"This volume contains a subset of the raw ground calibration images taken by the flight model of the CASSINI Wide-Angle Camera (WACFM) and of the CASSINI Narrow-Angle Camera (NACFM).","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx/COISS_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:34.178292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.3","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:44.201660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V2.0","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data files and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Instrument Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v2/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:48.226236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.1","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4.1/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:52.301678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.2","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4.2/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:54.301133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO_CAL_ISSNA/ISSWA_2_EDR_V4.0","title":"CASSINI ISS CALIBRATION FILES","description":"This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4/COISS_0011/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:56.233078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-E/V/J-ISSNA/ISSWA-2-EDR-V1.0","title":"VOLUME 1: CASSINI ISS IMAGES 1294561143 - 1351738471","description":"This volume contains data collected by Cassini's Instrument Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_1xxx/COISS_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:00:58.241218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-S-ISSNA/ISSWA-2-EDR-V1.0","title":"VOLUME 1: CASSINI ISS IMAGES 1454725799 - 1460960370","description":"This volume contains data collected by Cassini's Instrument Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_2xxx/COISS_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:01:08.265540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-S-ISSNA/ISSWA-5-MIDR-V1.0","title":"VOLUME 1: CASSINI ISS CARTOGRAPHIC MAP OF PHOEBE","description":"This volume contains a cartographic map of the Saturn moon PHOEBE. It was generated using data collected by Cassini's Instrument Science Subsystem cameras.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COISS_3xxx/COISS_3001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:05.534330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-RSS-4/5-OCC-V2.0","title":"VOL 1: CASSINI SATURN RSS RING RADIO OCC 2005-2010","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini RSS radio occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth. Details concerning the production of these profiles can be found in Marouf et al., 1986.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/CORSS_8xxx/CORSS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:23.576233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-RSS-4/5-OCC-V0.2","title":"VOL 1: CASSINI SATURN RSS RING RADIO OCCULTS 2005-2008","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini RSS radio occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth. Details concerning the production of these profiles can be found in Marouf et al., 1986.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/CORSS_8xxx_v1/CORSS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:25.568537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-S/J/E/V-SPICE-6-V1.0","title":"CASSINI SPICE FILES","description":"This volume contains navigation and ancillary data in the form of SPICE System kernel files for the Cassini spacecraft and instruments. The data on this volume are released at intervals and may not be complete. Consult the release.cat file for information concerning release dates.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COSP_xxxx/COSP_1000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:27.570487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-J-UVIS-2-SSB-V1.2\",","title":"CASSINI UVIS JUPITER RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:29.590419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-J-UVIS-2-CUBE-V1.2\",","title":"CASSINI UVIS JUPITER RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0002/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:30.652943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-UVIS-2-SPEC-V1.2\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0004/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:32.638217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-UVIS-2-SSB-V1.2\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0005/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:33.685928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-UVIS-2-CUBE-V1.2\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0006/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:34.608099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-UVIS-2-SPEC-V1.5\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0007/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:35.611892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-UVIS-2-CUBE-V1.5\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0009/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:37.613079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-UVIS-2-CALIB-V1.2\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0013/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:03:41.641181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CO-S-UVIS-2-CUBE-V1.3\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0042/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:04:10.684927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"(\"CO-S-UVIS-2-CUBE-V1.3\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0043/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:04:11.688193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"(\"CO-S-UVIS-2-CUBE-V1.4\",","title":"CASSINI UVIS SATURN RAW DATA ARCHIVE","description":"This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0050/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:04:18.772113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-UVIS-HSP-2/4-OCC-V3.0","title":"VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx/COUVIS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:14.985571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-UVIS-HSP-2/4-OCC-V0.3","title":"VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2008","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v1/COUVIS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:16.968927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-UVIS-2/4-OCC-V2.0","title":"VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v2.0/COUVIS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:18.909964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-UVIS-2/4-OCC-V2.1","title":"VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v2.1/COUVIS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:20.908856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-E/V/J/S-VIMS-2-QUBE-V1.0","title":"SAMPLE: CASSINI VIMS IMAGE/SPECTRAL CUBES","description":"This DVD contains Cassini Visual and Infrared Mapping Spectrometer (VIMS) raw cube data, documentation, for all available files with start times (SCET) 1999-01-10T05:40:00.157 through 2000-09-18T13:26:42.517.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COVIMS_0xxx/COVIMS_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:05:22.913030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-VIMS-4/5-OCC-V2.1","title":"VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx/COVIMS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:06:58.157314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-VIMS-4/5-OCC-V0.2","title":"VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2009","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx_v1/COVIMS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:00.134108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CO-SR-VIMS-4/5-OCC-V2.0","title":"VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2017","description":"This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx_v2.0/COVIMS_8001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:02.148398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{ \"ESO1M-SR-APPH-4-OCC-V1.0\",","title":"VOLUME 1: 1989 28 SGR SATURN RING OCCULTATION PROFILES.","description":"This volume contains ring occultation data from the 1989 occultation of 28 Sagittarii (28 Sgr) by the rings of Saturn. Included in this volume are six data sets corresponding to observations by six Earth-based telescopes at five observatories: two at the European Southern Observatory, and one each at Mauna Kea, Lick, McDonald and Palomar. The data files are ASCII tables of fully processed and resampled occultation profiles given in ten kilometer increments. The volume also includes ancillary geometry files, browse files in the form of plots, provided in both PDF and PS formats, of both the occultation profiles and geometry files, as well as documentation. Neither raw nor calibration files are available for archiving","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/EBROCC_xxxx/EBROCC_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:04.127483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-CAL-SSI-6-V1.1","title":"GALILEO CALIBRATION FILES","description":"This volume, titled Galileo SSI Calibration Files (GO_0001), is a part of the Galileo Solid State Imaging Raw EDR data set which resides on volumes GO_0002 thru GO_0023. Included are all calibration files required to properly decalibration the images obtained from the Galileo SSI Camera system. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== the following types of calibration files: Calibration Slope Files, Dark Current files, Shutter Offset file and Blemish files.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:06.151107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-V/E-SSI-2-REDR-V1.1","title":"Galileo:Solid State Imaging REDR Data","description":"This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 'N/A' LAST_IMAGE_TIME = 1990-11-30T22:05:39.077Z FIRST_IMAGE_NUMBER = 00030611.00 LAST_IMAGE_NUMBER = 00598912.00 FIRST_IMAGE_ID = 'N/A' LAST_IMAGE_ID = E1N0900 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0002/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:07.168741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-A/E-SSI-2-REDR-V1.1","title":"Galileo:Solid State Imaging REDR Data","description":"This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 1991-09-06T20:22:12.638Z LAST_IMAGE_TIME = 1992-12-03T15:17:23.512Z FIRST_IMAGE_NUMBER = 00997579.45 LAST_IMAGE_NUMBER = 01643854.00 FIRST_IMAGE_ID = EGG0001 LAST_IMAGE_ID = E2H0466 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0007/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:12.161470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-A/C-SSI-2-REDR-V1.1","title":"Galileo:Solid State Imaging REDR Data","description":"This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 1993-07-22T22:35:34.497Z LAST_IMAGE_TIME = 1994-07-22T07:47:02.706Z FIRST_IMAGE_NUMBER = 01973272.00 LAST_IMAGE_NUMBER = 02492218.00 FIRST_IMAGE_ID = EJI0002 LAST_IMAGE_ID = EJZ3063 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0016/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:21.229079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-J/JSA-SSI-2-REDR-V1.1","title":"GALILEO IMAGES FROM JUPITER ORBITS 1-3","description":"This volume, titled Galileo Images From Jupiter Orbits 1-3 (GO_0017), is a part of the Galileo Jupiter Orbital Operations Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0019. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during the first three orbits of the Jupiter Orbital Operations Phase of the mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== Jupiter Pre-Orbit 1 (Jupiter 0) ------------------------------- SCLK range: 346405900 - 349193900 (Optical Navigation-OPNAV) ERT range: 96/155:17:47:18.857 - 96/175:07:41:11.980 Jupiter Orbit 1 (Ganymede 1) ---------------------------- SCLK ranges: 349542152 - 350029800 356000600 - 359198400 (OPNAV) ERT ranges: 96/183-07:38:25.928 - 96/231-13:43:20.690 96/223:02:39:43.300 - 96/237:10:55:15.282 (OPNAV) Jupiter Orbit 2 (Ganymede 2) ---------------------------- SCLK ranges: 359251000 - 359322300 (OPNAV) 359402445 - 360361200 ERT ranges: 96/245:22:26:14.566 - 96/246:10:31:10.512 (OPNAV) 96/255-14:03:53.827 - 96/301-02:37:09.523 Orbit 3 (Callisto 3) -------------------- SCLK ranges: 368211900 - 368992339 372343200 - 374037400 (OPNAV) ERT ranges: 96/316-05:27:12.172 - 96/348-02:11:05.236 96/337:20:50:32.231 - 96/349:18:46:37.142 (OPNAV)","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0017/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:22.170307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-J/JSA-SSI-2-REDR-V1.1\",","title":"GALILEO IMAGES FROM JUPITER ORBITS 11 - 17","description":"This volume, titled Galileo Images From Jupiter Orbits 11 - 17 (GO_0020), is a part of the Galileo Jupiter Orbital Operations and Galileo Europa Mission Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0020. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during three of the Jupiter Orbital Operations phases of the mission and extended Galileo Europa Mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== JUPITER ORBIT 11 EUROPA ======================= SCLK ranges: 420361400 - 420900345 ERT ranges: 97/313-18:06:10 - 97/348-15:22:08 JUPITER ORBIT 12 EUROPA ======================= SCLK ranges: 426117300 - 426273839 ERT ranges: 97/352-08:19:59 - 98/082-02:15:37 JUPITER ORBIT 12 EUROPA TIRE_TRACK ================================== SCLK ranges: 426272849 - 426272856 ERT ranges: 98/026:14:59:26 - 98/080:10:39:12 JUPITER ORBIT 14 EUROPA ======================= SCLK ranges: 440873539 - 441026827 ERT ranges: 98/090-03:50:04 - 98/148-20:59:05 JUPITER ORBIT 15 EUROPA ======================= SCLK ranges: 449841900 - 450111001 ERT ranges: 98/152-22:55:06 - 98/267-09:24:19 JUPITER ORBIT 17 EUROPA ======================= SCLK ranges: 466580845 - 466684900 ERT ranges: 98/270-08:58:01 - 99/026-06:09:21","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0020/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:25.179708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-CAL-SSI-6-V1.0\"}","title":"GALILEO CALIBRATION FILES","description":"This volume, titled Galileo SSI Calibration Files,(GO_0001), is a part of the Galileo Solid State Imaging Raw EDR data set which resides on volumes GO_0002 thru GO_0023. Included are all calibration files required to properly decalibration the images obtained from the Galileo SSI Camera system. Contents of this volume include: =============================== the following types of calibration files: Calibration Slope Files, Dark Current files, Shutter Offset file and Blemish files.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:30.243484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-J/JSA-SSI-2-REDR-V1.0","title":"GALILEO IMAGES FROM JUPITER ORBITS 1-3","description":"This volume, titled Galileo Images From Jupiter Orbits 1-3 (GO_0017), is a part of the Galileo Jupiter Orbital Operations Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0019. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during the first three orbits of the Jupiter Orbital Operations Phase of the mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== Jupiter Pre-Orbit 1 (Jupiter 0) ------------------------------- SCLK range: 346405900 - 349193900 (Optical Navigation-OPNAV) ERT range: 96/155:17:47:18.857 - 96/175:07:41:11.980 Jupiter Orbit 1 (Ganymede 1) ---------------------------- SCLK ranges: 349542152 - 350029800 356000600 - 359198400 (OPNAV) ERT ranges: 96/183-07:38:25.928 - 96/231-13:43:20.690 96/223:02:39:43.300 - 96/237:10:55:15.282 (OPNAV) Jupiter Orbit 2 (Ganymede 2) ---------------------------- SCLK ranges: 359251000 - 359322300 (OPNAV) 359402445 - 360361200 ERT ranges: 96/245:22:26:14.566 - 96/246:10:31:10.512 (OPNAV) 96/255-14:03:53.827 - 96/301-02:37:09.523 Orbit 3 (Callisto 3) -------------------- SCLK ranges: 368211900 - 368992339 372343200 - 374037400 (OPNAV) ERT ranges: 96/316-05:27:12.172 - 96/348-02:11:05.236 96/337:20:50:32.231 - 96/349:18:46:37.142 (OPNAV)","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0017/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:38.718539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"GO-J/JSA-SSI-2-REDR-V1.0\",","title":"GALILEO IMAGES FROM JUPITER ORBITS 11 - 17","description":"This volume, titled Galileo Images From Jupiter Orbits 11 - 17 (GO_0020), is a part of the Galileo Jupiter Orbital Operations and Galileo Europa Mission Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0020. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during three of the Jupiter Orbital Operations phases of the mission and extended Galileo Europa Mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== JUPITER ORBIT 11 EUROPA ======================= SCLK ranges: 420361400 - 420900345 ERT ranges: 97/313-18:06:10 - 97/348-15:22:08 JUPITER ORBIT 12 EUROPA ======================= SCLK ranges: 426117300 - 426273839 ERT ranges: 97/352-08:19:59 - 98/082-02:15:37 JUPITER ORBIT 12 EUROPA TIRE_TRACK ================================== SCLK ranges: 426272849 - 426272856 ERT ranges: 98/026:14:59:26 - 98/080:10:39:12 JUPITER ORBIT 14 EUROPA ======================= SCLK ranges: 440873539 - 441026827 ERT ranges: 98/090-03:50:04 - 98/148-20:59:05 JUPITER ORBIT 15 EUROPA ======================= SCLK ranges: 449841900 - 450111001 ERT ranges: 98/152-22:55:06 - 98/267-09:24:19 JUPITER ORBIT 17 EUROPA ======================= SCLK ranges: 466580845 - 466684900 ERT ranges: 98/270-08:58:01 - 99/026-06:09:21","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0020/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:41.763643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID11556-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11556","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11556. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1556/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:46.748086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID11559-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1559/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:47.746029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID11573-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11573","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11573. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1573/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:48.738082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFC3-5-ID11630-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1630/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:49.741674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID11656-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11656","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11656. Principal Investigator: M.R. Showalter Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1656/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:50.741220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID12003-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2003/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:51.749360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID12045-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12045","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12045. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2045/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:52.776857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID12119-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12119","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12119. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:53.829268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID12237-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12237","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12237. Principal Investigator: W.M. Grundy Target list: 174567-Varda, 2005EF298.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2237/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:54.780148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID12245-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12245","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12245. Principal Investigator: M.R. Showalter Target list: CUPID, MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2245/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:55.830368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID12436-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12436","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12436. Principal Investigator: M.R. Showalter Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2436/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:56.767769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID12463-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12463","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12463. Principal Investigator: H.B. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2463/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:57.769394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID12665-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12665","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12665. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2665/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:58.759212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID12675-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12675","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12675. Principal Investigator: K.S. Noll Target list: NECKLACE-NEBULA, NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2675/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:07:59.755472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID12725-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12725","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12725. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:00.755838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID12801-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12801","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12801. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2801/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:01.766317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID12894-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:02.768805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID12897-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12897","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12897. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2897/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:03.790094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID12980-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12980","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12980. Principal Investigator: K. Tsumura Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2980/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:04.846467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID13055-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13055","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13055. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3055/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:05.788160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID13067-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13067","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13067. Principal Investigator: G. Schneider Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3067/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:06.838238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID13315-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13315","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13315. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3315/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:07.779906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13404-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13404","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13404. Principal Investigator: W.M. Grundy Target list: 119979, 182933|2000CQ114|2003QW111|2003TJ58|80806.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3404/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:08.811931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID13414-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13414","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13414. Principal Investigator: M.R. Showalter Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3414/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:09.789468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID13620-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13620","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13620. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3620/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:10.798822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID13631-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13631","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13631. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3631/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:11.796074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13663-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13663","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13663. Principal Investigator: S.D. Benecchi Target list: KBO-G1.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3663/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:12.787583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13664-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13664","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13664. Principal Investigator: S.D. Benecchi Target list: 118378, 119070|1999HG12|2000QN251|2002VV130|2004VE131|2005SE278|2005SF278.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3664/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:13.797096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID13667-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13667","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13667. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3667/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:14.804676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13668-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13668","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13668. Principal Investigator: M.W. Buie Target list: ERIS, MAKEMAKE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3668/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:15.839966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13692-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13692","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13692. Principal Investigator: W.M. Grundy Target list: 1999-RT214, 2000-CQ114|2001-FL185|60458-2000-CM114.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3692/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:16.809602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID13712-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13712","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13712. Principal Investigator: K.M. Sayanagi Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3712/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:17.849758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13713-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13713","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13713. Principal Investigator: B. Sicardy Target list: CHARIKLORING.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3713/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:18.898109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13716-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13716","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13716. Principal Investigator: D.E. Trilling Target list: 2000-FC8, 2000-OB51|2000-PM30|2000-PN30|2011-JX31.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3716/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:19.806473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID13829-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:20.809887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13873-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13873","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13873. Principal Investigator: D. Ragozzine Target list: HAUMEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3873/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:21.813325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J/U/N-WFC3-5-ID13937-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13937","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13937. Principal Investigator: A. Simon Target list: JUPITER, NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3937/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:22.817928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID14042-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14042","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14042. Principal Investigator: Z. Levay Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4042/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:23.816925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID14044-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14044","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14044. Principal Investigator: I. de Pater Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4044/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:24.834907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID14045-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14045","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14045. Principal Investigator: I. de Pater Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4045/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:25.821431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID14053-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14053","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14053. Principal Investigator: J.R. Spencer Target list: 2014MU69, 2014PN70.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4053/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:26.860221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFC3-5-ID14064-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14064","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14064. Principal Investigator: A. Sanchez-Lavega Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4064/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:27.917920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID14113-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14113","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14113. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4113/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:28.858336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID14217-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14217","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14217. Principal Investigator: M.R. Showalter Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4217/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:29.908153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J/U-WFC3-5-ID14334-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4334/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:30.841987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID14492-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14492","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14492. Principal Investigator: M.H. Wong Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4492/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:31.832708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-WFC3-5-ID14499-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14499","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14499. Principal Investigator: Z. Levay Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4499/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:32.853564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J/U/N-WFC3-5-ID14756-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14756","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14756. Principal Investigator: A. Simon Target list: JUPITER, NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4756/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:33.859683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID14839-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14839","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14839. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4839/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:34.842578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID15262-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15262","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15262. Principal Investigator: A. Simon Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_5262/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:35.846755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID11556-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11556","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11556. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1556/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:37.876827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID11559-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1559/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:38.923160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID11573-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11573","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11573. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1573/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:39.970482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID11630-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1630/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:40.915046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID11656-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11656","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11656. Principal Investigator: M.R. Showalter Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1656/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:41.967265","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID12003-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2003/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:42.886229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID12045-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12045","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12045. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2045/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:43.903054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID12119-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12119","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12119. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:44.894783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID12237-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12237","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12237. Principal Investigator: W.M. Grundy Target list: 174567-Varda, 2005EF298.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2237/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:45.892492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID12245-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12245","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12245. Principal Investigator: M.R. Showalter Target list: CUPID, MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2245/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:46.890268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID12436-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12436","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12436. Principal Investigator: M.R. Showalter Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2436/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:47.900273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID12463-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12463","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12463. Principal Investigator: H.B. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2463/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:48.900654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID12665-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12665","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12665. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2665/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:49.951729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID12675-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12675","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12675. Principal Investigator: K.S. Noll Target list: NECKLACE-NEBULA, NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2675/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:50.978527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID12801-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12801","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12801. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2801/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:51.929685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID12894-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:52.973999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID13055-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13055","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13055. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3055/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:53.926971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID13067-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13067","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13067. Principal Investigator: G. Schneider Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3067/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:54.909114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13663-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13663","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13663. Principal Investigator: S.D. Benecchi Target list: KBO-G1.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3663/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:55.923992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13664-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13664","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13664. Principal Investigator: S.D. Benecchi Target list: 118378, 119070|1999HG12|2000QN251|2002VV130|2004VE131|2005SE278|2005SF278.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3664/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:56.913982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFC3-5-ID13667-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13667","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13667. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3667/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:57.917531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13668-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13668","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13668. Principal Investigator: M.W. Buie Target list: ERIS, MAKEMAKE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3668/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:58.930016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13692-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13692","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13692. Principal Investigator: W.M. Grundy Target list: 1999-RT214, 2000-CQ114|2001-FL185|60458-2000-CM114.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3692/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:08:59.924536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID13712-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13712","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13712. Principal Investigator: K.M. Sayanagi Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3712/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:00.940871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13713-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13713","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13713. Principal Investigator: B. Sicardy Target list: CHARIKLORING.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3713/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:01.992168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13716-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13716","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13716. Principal Investigator: D.E. Trilling Target list: 2000-FC8, 2000-OB51|2000-PM30|2000-PN30|2011-JX31.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3716/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:02.935498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID13829-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:03.987725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID13873-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13873","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13873. Principal Investigator: D. Ragozzine Target list: HAUMEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3873/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:05.035046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID14042-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14042","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14042. Principal Investigator: Z. Levay Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4042/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:05.951240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFC3-5-ID14053-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14053","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14053. Principal Investigator: J.R. Spencer Target list: 2014MU69, 2014PN70.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4053/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:06.937015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFC3-5-ID14064-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14064","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14064. Principal Investigator: A. Sanchez-Lavega Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4064/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:07.946367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID14334-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4334/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:08.953836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID14492-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14492","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14492. Principal Investigator: M.H. Wong Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4492/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:09.946891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-WFC3-5-ID14499-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14499","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14499. Principal Investigator: Z. Levay Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4499/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:10.956369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID15262-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15262","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15262. Principal Investigator: A. Simon Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_5262/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:11.955697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFC3-5-ID11559-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_1559/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:14.044517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFC3-5-ID11630-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_1630/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:14.997043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFC3-5-ID14334-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_4334/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:16.044347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID9296-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9296","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9296. Principal Investigator: H. Ford Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9296/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:18.245288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID9354-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:19.288292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-ACS-5-ID9384-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9384","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9384. Principal Investigator: P. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9384/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:20.241907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID9385-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9385/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:21.287333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-ACS-5-ID9391-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9391","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9391. Principal Investigator: M. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9391/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:22.236834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID9426-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9426","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9426. Principal Investigator: M. Showalter Target list: ADRASTEA, J RINGS|METIS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9426/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:23.245678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID9440-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:24.262018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID9725-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:25.252477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID9745-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9745","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9745. Principal Investigator: M.T. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9745/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:26.261109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID9823-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9823","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9823. Principal Investigator: M.R. Showalter Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9823/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:27.264721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-ACS-5-ID9975-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9975","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9975. Principal Investigator: P.B. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9975/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:28.254423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10102-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10102","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10102. Principal Investigator: M.R. Showalter Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0102/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:29.263284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10140-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10140","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10140. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0140/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:30.305449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID10156-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10156","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10156. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0156/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:31.346336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10192-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10192","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10192. Principal Investigator: E. Karkoschka Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0192/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:32.298167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-ACS-5-ID10398-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10398","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10398. Principal Investigator: M.R. Showalter Target list: N RINGS, NAIAD|NEPTUNE|THALASSA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0398/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:33.347440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-ACS-5-ID10422-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10422","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10422. Principal Investigator: J.M. Bauer Target list: TRITON.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0422/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:34.262134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-ACS-5-ID10423-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10423","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10423. Principal Investigator: H.B. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0423/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:35.276761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-ACS-5-ID10427-V1.3","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:36.274311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10473-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10473","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10473. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0473/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:37.277170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10502-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10502","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10502. Principal Investigator: J.T. Clarke Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0502/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:38.291153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID10506-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10506","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10506. Principal Investigator: J.M. Gerard Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0506/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:39.291662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10507-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0507/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:40.287992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-ACS-5-ID10534-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0534/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:41.308970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-ACS-5-ID10774-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10774","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10774. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0774/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:42.359764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10782-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:43.307173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10783-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10783","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10783. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0783/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:44.355801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10805-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10805","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10805. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:45.286292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-ACS-5-ID10860-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10860","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10860. Principal Investigator: M.E. Brown Target list: 2002UX25, 2003UB313|90482ORCUS|MAKEMAKE|SEDNA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0860/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:46.290635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J/S-ACS-5-ID10862-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: JUPITER, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0862/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:47.303133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10870-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0870/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:48.308832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10871-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:49.308449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID11055-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11055","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11055. Principal Investigator: C.R. Proffitt Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1055/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:50.316087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID11085-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1085/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:51.299356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID11566-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11566","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11566. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1566/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:52.332554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID11970-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11970","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11970. Principal Investigator: J.T. Clarke Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1970/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:53.368283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID11984-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11984","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11984. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1984/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:54.320156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID12003-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2003/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:55.367566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID12176-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12176","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12176. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2176/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:56.318269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID12395-V1.3","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2395/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:57.320137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID12601-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2601/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:58.319384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID12660-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12660","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12660. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2660/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:09:59.329406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID13012-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:00.328629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID13051-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13051","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13051. Principal Investigator: J.D. Nichols Target list: CALIBRATION, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_3051/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:01.329560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID9296-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9296","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9296. Principal Investigator: H. Ford Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9296/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:03.340020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID9354-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:04.386650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-ACS-5-ID9384-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9384","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9384. Principal Investigator: P. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9384/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:05.421903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID9385-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9385/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:06.376275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-ACS-5-ID9391-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9391","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9391. Principal Investigator: M. Buie Target list: CALIBRATION, PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9391/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:07.424942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID9426-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9426","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9426. Principal Investigator: M. Showalter Target list: ADRASTEA, J RINGS|METIS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9426/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:08.342990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID9440-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:09.352964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID9725-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:10.347797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID9745-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9745","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9745. Principal Investigator: M.T. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9745/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:11.356728","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID9823-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9823","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9823. Principal Investigator: M.R. Showalter Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9823/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:12.351128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-ACS-5-ID9975-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9975","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9975. Principal Investigator: P.B. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9975/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:13.354470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10102-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10102","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10102. Principal Investigator: M.R. Showalter Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0102/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:14.362870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10140-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10140","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10140. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0140/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:15.384467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID10156-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10156","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10156. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0156/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:16.439365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10192-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10192","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10192. Principal Investigator: E. Karkoschka Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0192/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:17.387933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-ACS-5-ID10398-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10398","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10398. Principal Investigator: M.R. Showalter Target list: N RINGS, NAIAD|NEPTUNE|THALASSA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0398/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:18.435135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-ACS-5-ID10422-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10422","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10422. Principal Investigator: J.M. Bauer Target list: TRITON.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0422/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:19.375297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-ACS-5-ID10423-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10423","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10423. Principal Investigator: H.B. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0423/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:20.375279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-ACS-5-ID10427-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:21.379809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10473-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10473","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10473. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0473/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:22.378837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10502-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10502","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10502. Principal Investigator: J.T. Clarke Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0502/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:23.384251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID10506-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10506","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10506. Principal Investigator: J.M. Gerard Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0506/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:24.378317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10507-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0507/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:25.402975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-ACS-5-ID10534-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0534/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:26.396155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-ACS-5-ID10774-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10774","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10774. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0774/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:27.446427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10782-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:28.397552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10783-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10783","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10783. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0783/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:29.444533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10805-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10805","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10805. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:30.494636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID10870-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0870/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:31.400450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10871-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:32.407681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID11055-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11055","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11055. Principal Investigator: C.R. Proffitt Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1055/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:33.410137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID11085-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1085/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:34.405930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID11566-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11566","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11566. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1566/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:35.422026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID11970-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11970","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11970. Principal Investigator: J.T. Clarke Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1970/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:36.418244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID11984-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11984","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11984. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1984/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:37.422513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID12003-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2003/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:38.455782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID12176-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12176","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12176. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2176/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:39.506394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID12395-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2395/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:40.455042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID12601-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2601/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:41.501773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID12660-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12660","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12660. Principal Investigator: J.D. Nichols Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2660/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:42.425693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-ACS-5-ID13012-V1.0","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:43.424989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-ACS-5-ID10427-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_0427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:45.439067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-ACS-5-ID10507-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_0507/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:46.431454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID12395-V1.1","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_2395/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:47.436179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-ACS-5-ID10427-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.2/HSTJ1_0427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:49.476677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-ACS-5-ID12395-V1.2","title":"HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395","description":"This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.2/HSTJ1_2395/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:50.518505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-NICMOS-5-ID7176-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7176","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7176. Principal Investigator: B.A. SMITH Target list: CALIBRATION, MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7176/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:52.608109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-NICMOS-5-ID7178-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7178","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7178. Principal Investigator: B.A. SMITH Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7178/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:53.664988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-NICMOS-5-ID7179-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7179","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7179. Principal Investigator: B.A. SMITH Target list: CALIBRATION, ENCELADUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7179/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:54.613707","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-NICMOS-5-ID7180-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7180","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7180. Principal Investigator: B.A. Smith Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7180/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:55.659158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-NICMOS-5-ID7181-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7181","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7181. Principal Investigator: B.A. SMITH Target list: U RINGS, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7181/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:56.711982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-NICMOS-5-ID7182-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7182","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7182. Principal Investigator: B.A. SMITH Target list: NEPTUNE, PROTEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7182/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:57.634743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-NICMOS-5-ID7183-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7183","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7183. Principal Investigator: B.A. SMITH Target list: PUCK, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7183/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:58.629399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-NICMOS-5-ID7223-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7223","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7223. Principal Investigator: R. TERRILE Target list: CHARON.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7223/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:10:59.627497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-NICMOS-5-ID7241-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7241","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7241. Principal Investigator: B.A. SMITH Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7241/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:00.639302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-NICMOS-5-ID7242-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7242","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7242. Principal Investigator: B.A. SMITH Target list: CALIBRATION, NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7242/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:01.630772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-NICMOS-5-ID7243-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7243","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7243. Principal Investigator: R. Terrile Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7243/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:02.637255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-NICMOS-5-ID7244-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7244","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7244. Principal Investigator: R. Terrile Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7244/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:03.643511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-NICMOS-5-ID7319-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7319","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7319. Principal Investigator: J. Goguen Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7319/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:04.672450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-NICMOS-5-ID7324-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7324/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:05.723781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-NICMOS-5-ID7429-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7429/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:06.668384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-NICMOS-5-ID7445-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7445","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7445. Principal Investigator: R. BEEBE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7445/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:08.025419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-NICMOS-5-ID7818-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7818","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7818. Principal Investigator: M. BUIE Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7818/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:08.650498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-NICMOS-5-ID7823-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7823","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7823. Principal Investigator: M. Tomasko Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7823/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:09.660843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-NICMOS-5-ID7885-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7885","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7885. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7885/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:10.664438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-NICMOS-5-ID9354-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:11.659720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-NICMOS-5-ID9355-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9355","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9355. Principal Investigator: E. Karkoschka Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9355/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:12.670409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-NICMOS-5-ID9904-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9904","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9904. Principal Investigator: W.B. Sparks Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9904/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:13.666220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-NICMOS-5-ID10161-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10161","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10161. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_0161/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:14.655637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-NICMOS-5-ID10786-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10786","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10786. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_0786/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:15.685429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-NICMOS-5-ID11118-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1118/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:16.736939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-NICMOS-5-ID11190-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11190","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11190. Principal Investigator: L.M. Trafton Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1190/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:17.678680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-NICMOS-5-ID11498-V1.0","title":"HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498","description":"This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1498/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:18.728884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID6854-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_6854/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:20.674509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7308-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:21.679922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7309-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7309/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:22.686903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID7316-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7316/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:23.682277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7317-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7317/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:24.688831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID7439-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7439/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:25.688040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7444-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7444/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:26.698412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7583-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7583/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:27.748612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-L/J/S-STIS-5-ID7717-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON, S RINGS, SATURN, TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7717/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:28.694171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7769-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7769/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:29.735006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7939-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7939/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:30.790284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8108-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8108/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:31.710288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID8117-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8117","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8117. Principal Investigator: J. Trauger Target list: SATURN, TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8117/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:32.700621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID8158-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8158/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:33.708670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8169-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:34.723623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8171-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8171/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:35.716066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8224-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8224/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:36.709347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8657-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8657","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8657. Principal Investigator: J. Clarke Target list: CALIBRATION, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8657/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:37.713643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J/S/U/N-STIS-5-ID8661-V1.3","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8661/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:38.752076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID9035-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9035/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:39.794844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID9112-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9112","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9112. Principal Investigator: D. Cruikshank Target list: DIONE, FLATFIELD|S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9112/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:40.747373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9119-V1.3","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:41.797499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-STIS-5-ID9330-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9330","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9330. Principal Investigator: E. Karkoschka Target list: CALIBRATION, FLATFIELD|NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9330/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:42.722316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9440-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:43.731023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9685-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9685/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:44.731531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID10083-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_0083/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:45.739404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID11649-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11649","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11649. Principal Investigator: J.M. Gerard Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_1649/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:46.729623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID12041-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12041","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12041. Principal Investigator: J.C. Green Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2041/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:47.737543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID12235-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12235","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12235. Principal Investigator: J.M. Gerard Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2235/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:48.742504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID12239-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2239/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:49.762229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID12244-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12244","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12244. Principal Investigator: J. Saur Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2244/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:50.818685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID12478-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2478/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:51.756611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID12601-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2601/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:52.807225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID12883-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2883/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:53.753939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID12894-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:54.752366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID12900-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12900","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12900. Principal Investigator: E. Young Target list: FLATFIELD, TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2900/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:55.762607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID13012-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:56.768741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13035-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13035","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13035. Principal Investigator: S.V. Badman Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3035/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:57.770449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13040-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13040","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13040. Principal Investigator: J. Saur Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3040/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:58.766963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13328-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13328","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13328. Principal Investigator: J.D. Nichols Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3328/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:11:59.767110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13336-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13336","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13336. Principal Investigator: L. Roth Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3336/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:00.784608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID13396-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13396","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13396. Principal Investigator: S.V. Badman Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3396/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:01.827387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13619-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13619","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13619. Principal Investigator: L. Roth Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3619/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:02.782290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13620-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13620","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13620. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3620/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:03.816298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13679-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3679/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:04.866836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID13694-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3694/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:05.778557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-STIS-5-ID13736-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3736/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:06.781313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13805-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:07.801825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13829-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:08.797824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID14036-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14036","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14036. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4036/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:09.791215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID14105-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14105","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14105. Principal Investigator: J.D. Nichols Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4105/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:10.806483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID14112-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14112","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14112. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4112/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:11.794956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID14113-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14113","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14113. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4113/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:12.829741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID14267-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14267","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14267. Principal Investigator: L. Lamy Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4267/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:13.880927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID14795-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14795","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14795. Principal Investigator: F. Crary Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4795/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:14.824970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID14891-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14891","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14891. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4891/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:15.876505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID14903-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14903","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14903. Principal Investigator: L. Roth Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4903/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:16.813464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID14930-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14930","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14930. Principal Investigator: W.B. Sparks Target list: CALIBRATION, EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4930/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:17.797960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID14931-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14931","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14931. Principal Investigator: L.B. Jaffel Target list: SATURN, TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4931/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:18.804497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID15371-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15371","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15371. Principal Investigator: J.W. MacKenty Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_5371/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:19.807598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-STIS-5-ID15380-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15380","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15380. Principal Investigator: L. Lamy Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_5380/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:20.812433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID6854-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_6854/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:22.812585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7308-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:23.834783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7309-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7309/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:24.889441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID7316-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7316/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:25.836021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7317-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7317/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:26.885029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID7439-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7439/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:27.824546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7444-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7444/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:28.839066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7583-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7583/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:29.839365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7769-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7769/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:30.836530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7939-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7939/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:31.848750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8108-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8108/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:32.839948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID8158-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8158/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:33.835281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8169-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:34.858520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8171-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8171/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:35.894096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8224-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8224/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:36.849142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8661-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8661/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:37.898173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID9035-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9035/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:38.945817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9119-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:39.852402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9440-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:40.877835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9685-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9685/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:41.859944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID10083-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_0083/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:42.866445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID12239-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2239/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:43.868093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID12478-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2478/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:44.872250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID12883-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2883/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:45.875758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID12894-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:46.906732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID13012-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:47.957972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13679-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3679/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:48.904639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID13694-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3694/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:49.955829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-STIS-5-ID13736-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3736/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:50.883954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13805-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:51.891814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13829-V1.0","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:52.898905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID6854-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_6854/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:54.896995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7308-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:55.898382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7309-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7309/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:56.904630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID7316-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7316/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:57.918716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7317-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7317/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:58.969818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID7439-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7439/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:12:59.914541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7444-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7444/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:00.964049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7583-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7583/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:01.910960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7769-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7769/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:02.910502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID7939-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7939/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:03.916147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8108-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8108/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:04.919408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID8158-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8158/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:05.929841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8169-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:06.926647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8171-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8171/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:07.922250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8224-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8224/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:08.928886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8661-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8661/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:09.985732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID9035-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9035/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:10.928680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9119-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:11.973665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9440-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9440/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:13.024875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9685-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9685/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:13.947520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID10083-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_0083/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:14.948747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID12239-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2239/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:15.956446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID12478-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2478/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:16.947097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID12883-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2883/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:17.955755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID12894-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2894/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:18.944704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-STIS-5-ID13012-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3012/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:19.947747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13679-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3679/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:20.987429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-STIS-5-ID13694-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3694/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:22.030080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-STIS-5-ID13736-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3736/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:22.982489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13805-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3805/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:24.034044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID13829-V1.1","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3829/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:24.956104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID8661-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.2/HSTO0_8661/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:26.985343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-STIS-5-ID9119-V1.2","title":"HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119","description":"This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.2/HSTO0_9119/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:27.976127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5167-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5167","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5167. Principal Investigator: T. LAURENCE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5167/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:29.967187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5216-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5216","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5216. Principal Investigator: J.T. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5216/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:30.973798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5217-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5217","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5217. Principal Investigator: J.T. Trauger Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5217/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:31.996143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5218-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5218","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5218. Principal Investigator: J.T. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5218/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:33.042842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5219-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5219","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5219. Principal Investigator: J.T. Trauger Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5219/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:33.992303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID5220-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5220","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5220. Principal Investigator: J.T. Trauger Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5220/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:35.043930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID5221-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5221","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5221. Principal Investigator: J.T. Trauger Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5221/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:35.980552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5313-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5313","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5313. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5313/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:36.992942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID5321-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5321","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5321. Principal Investigator: K. Seidelmann Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5321/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:37.989106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5392-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5392","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5392. Principal Investigator: J.R. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5392/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:38.988788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5508-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5508","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5508. Principal Investigator: P.H. Smith Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5508/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:39.997068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5640-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5640","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5640. Principal Investigator: H.A. Weaver Target list: JUPITER, SHOEMAKER LEVY 9.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5640/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:40.996062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5642-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5642","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5642. Principal Investigator: A. Storrs Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5642/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:42.002540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5776-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5776","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5776. Principal Investigator: R. Beebe Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5776/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:43.010211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5782-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5782","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5782. Principal Investigator: B. Amanda Target list: S RINGS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:44.066000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5824-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5824","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5824. Principal Investigator: A.S. Bosh Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5824/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:45.004791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5828-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5828","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5828. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5828/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:46.050544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID5831-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5831","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5831. Principal Investigator: H. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5831/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:47.007173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5836-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5836","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5836. Principal Investigator: P. Nicholson Target list: S RINGS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5836/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:48.009598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5837-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5837","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5837. Principal Investigator: K.S. Noll Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5837/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:49.014275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6009-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6009","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6009. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6009/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:50.022641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6025-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6025","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6025. Principal Investigator: M. MCGRATH Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6025/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:51.022394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6028-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6028","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6028. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6028/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:52.024248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6029-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6029","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6029. Principal Investigator: J. Spencer Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6029/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:53.020998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S/U-WFPC2-5-ID6030-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6030","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6030. Principal Investigator: M. Tomasko Target list: S RINGS, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6030/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:54.033998","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6141-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6141","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6141. Principal Investigator: R. Yelle Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6141/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:55.071739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6145-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6145","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6145. Principal Investigator: P. Feldman Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6145/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:56.114664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6215-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6215","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6215. Principal Investigator: J. Trauger Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6215/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:57.063687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6216-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6216","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6216. Principal Investigator: J. Trauger Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6216/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:58.111926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6218-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6218","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6218. Principal Investigator: J. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6218/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:13:59.045883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID6219-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6219","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6219. Principal Investigator: J. Trauger Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6219/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:00.037118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6295-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6295","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6295. Principal Investigator: J. Caldwell Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6295/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:01.044559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6315-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6315","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6315. Principal Investigator: R. Yelle Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6315/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:02.051598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6328-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6328","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6328. Principal Investigator: J. Caldwell Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6328/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:03.051460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6452-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6452","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6452. Principal Investigator: R. BEEBE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6452/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:04.050496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6509-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6509","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6509. Principal Investigator: K. RAGES Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6509/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:05.050803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6648-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6648","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6648. Principal Investigator: J.C.M. GERARD Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6648/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:06.070610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID6650-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6650","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6650. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6650/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:07.123952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6662-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6662","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6662. Principal Investigator: J.C.M. GERARD Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6662/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:08.071766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6733-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6733","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6733. Principal Investigator: E. YOUNG Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6733/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:09.122549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6743-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6743","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6743. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6743/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:10.064439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6752-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6752","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6752. Principal Investigator: J. Goguen Target list: CALLISTO, EUROPA|GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6752/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:11.068512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID6753-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6753","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6753. Principal Investigator: P.K. Seidelmann Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6753/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:12.067783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6774-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6774","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6774. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6774/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:13.066254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6803-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6803","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6803. Principal Investigator: T. Denk Target list: IAPETUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6803/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:14.068798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6806-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6806","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6806. Principal Investigator: R.G. FRENCH Target list: PROMETHEUS, S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6806/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:15.071734","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID6818-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6818","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6818. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6818/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:16.073384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6842-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6842","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6842. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6842/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:17.087002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID6846-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6846","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6846. Principal Investigator: H. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6846/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:18.129546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6853-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6853","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6853. Principal Investigator: J. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6853/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:19.083873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID7308-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:20.129981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID7321-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7321","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7321. Principal Investigator: M.T. LEMMON Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7321/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:21.177746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID7324-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7324/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:22.096783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID7427-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7427","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7427. Principal Investigator: R.G. French Target list: PROMETHEUS, S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:23.095337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID7429-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7429/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:24.095410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID7430-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7430","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7430. Principal Investigator: R.A. WEST Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7430/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:25.097117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID7589-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7589","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7589. Principal Investigator: J. CALDWELL Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7589/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:26.107302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID7616-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7616","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7616. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7616/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:27.113475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-L/J/S-WFPC2-5-ID7717-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7717/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:28.103147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID8148-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8148","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8148. Principal Investigator: G. Orton Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8148/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:29.141412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID8169-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:30.194745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID8398-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8398","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8398. Principal Investigator: R. French Target list: PROMETHEUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8398/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:31.139053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID8405-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8405","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8405. Principal Investigator: K. Noll Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8405/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:32.192145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-WFPC2-5-ID8577-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8577","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8577. Principal Investigator: P. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8577/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:33.118146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-WFPC2-5-ID8579-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8579","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8579. Principal Investigator: M. Showalter Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8579/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:34.119350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID8580-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8580","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8580. Principal Investigator: E. Young Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8580/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:35.117901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFPC2-5-ID8634-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8634","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8634. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8634/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:36.122408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID8660-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8660","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8660. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8660/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:37.126544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID8680-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8680","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8680. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8680/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:38.127702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID8802-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8802","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8802. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8802/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:39.127288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID8871-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8871","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8871. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:40.157174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID9235-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9235","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9235. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9235/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:41.202555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9256-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9256","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9256. Principal Investigator: J. Biretta Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9256/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:42.151474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9341-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9341","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9341. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9341/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:43.201329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID9344-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9344","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9344. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9344/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:44.133233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9354-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:45.141626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9385-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9385/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:46.137151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID9393-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9393","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9393. Principal Investigator: L. Sromovsky Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9393/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:47.151747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID9725-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:48.163468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9809-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9809","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9809. Principal Investigator: R.G. French Target list: PROMETHEUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9809/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:49.151473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFPC2-5-ID10170-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10170","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10170. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0170/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:50.154331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID10357-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10357","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10357. Principal Investigator: A.J. Verbiscer Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0357/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:51.158704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID10468-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10468","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10468. Principal Investigator: E. Karkoschka Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0468/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:52.216222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFPC2-5-ID10534-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0534/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:53.163796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID10782-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:54.211874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-P-WFPC2-5-ID10786-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10786","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10786. Principal Investigator: M.W. Buie Target list: PLUTO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0786/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:55.258205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-X-WFPC2-5-ID10860-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10860","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10860. Principal Investigator: M.E. Brown Target list: HAUMEA, QUAOAR.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0860/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:56.164216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID10862-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0862/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:57.174548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID10870-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0870/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:58.177453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID10871-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:14:59.169108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11085-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1085/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:00.176556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11096-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11096","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11096. Principal Investigator: K. Noll Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1096/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:01.199932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11102-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11102","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11102. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1102/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:02.177067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID11118-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1118/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:03.232769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFPC2-5-ID11156-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11156","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11156. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1156/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:04.271196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID11292-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11292","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11292. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1292/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:05.219777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11310-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11310","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11310. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1310/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:06.267814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11498-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1498/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:07.192375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID11956-V1.1","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11956","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11956. Principal Investigator: K.S. Noll Target list: TITAN, UNK.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1956/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:08.209827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5167-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5167","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5167. Principal Investigator: T. LAURENCE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5167/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:10.344573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5216-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5216","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5216. Principal Investigator: J.T. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5216/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:11.326710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5217-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5217","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5217. Principal Investigator: J.T. Trauger Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5217/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:12.348258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5218-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5218","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5218. Principal Investigator: J.T. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5218/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:13.347227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5219-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5219","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5219. Principal Investigator: J.T. Trauger Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5219/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:14.339594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID5220-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5220","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5220. Principal Investigator: J.T. Trauger Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5220/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:15.347308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID5221-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5221","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5221. Principal Investigator: J.T. Trauger Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5221/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:16.349979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5313-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5313","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5313. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5313/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:17.381797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID5321-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5321","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5321. Principal Investigator: K. Seidelmann Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5321/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:18.440702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5392-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5392","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5392. Principal Investigator: J.R. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5392/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:19.376029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5508-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5508","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5508. Principal Investigator: P.H. Smith Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5508/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:20.426449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5640-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5640","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5640. Principal Investigator: H.A. Weaver Target list: JUPITER, SHOEMAKER LEVY 9.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5640/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:21.370838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5642-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5642","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5642. Principal Investigator: A. Storrs Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5642/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:22.370516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5776-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5776","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5776. Principal Investigator: R. Beebe Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5776/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:23.367843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5782-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5782","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5782. Principal Investigator: B. Amanda Target list: S RINGS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:24.375887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5824-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5824","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5824. Principal Investigator: A.S. Bosh Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5824/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:25.388053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5828-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5828","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5828. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5828/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:26.380399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID5831-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5831","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5831. Principal Investigator: H. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5831/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:27.390947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID5836-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5836","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5836. Principal Investigator: P. Nicholson Target list: S RINGS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5836/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:28.410543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID5837-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5837","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5837. Principal Investigator: K.S. Noll Target list: EUROPA, GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5837/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:29.448476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6009-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6009","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6009. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6009/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:30.504372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6025-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6025","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6025. Principal Investigator: M. MCGRATH Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6025/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:31.434219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6028-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6028","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6028. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6028/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:32.484397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6029-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6029","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6029. Principal Investigator: J. Spencer Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6029/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:33.420200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S/U-WFPC2-5-ID6030-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6030","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6030. Principal Investigator: M. Tomasko Target list: S RINGS, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6030/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:34.414249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6141-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6141","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6141. Principal Investigator: R. Yelle Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6141/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:35.413472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6145-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6145","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6145. Principal Investigator: P. Feldman Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6145/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:36.418869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6215-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6215","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6215. Principal Investigator: J. Trauger Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6215/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:37.425563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6216-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6216","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6216. Principal Investigator: J. Trauger Target list: S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6216/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:38.438170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6218-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6218","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6218. Principal Investigator: J. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6218/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:39.428876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID6219-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6219","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6219. Principal Investigator: J. Trauger Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6219/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:40.455218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6295-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6295","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6295. Principal Investigator: J. Caldwell Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6295/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:41.501287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6315-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6315","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6315. Principal Investigator: R. Yelle Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6315/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:42.446117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6328-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6328","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6328. Principal Investigator: J. Caldwell Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6328/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:43.492906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6452-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6452","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6452. Principal Investigator: R. BEEBE Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6452/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:44.446290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6509-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6509","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6509. Principal Investigator: K. RAGES Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6509/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:45.448688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6648-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6648","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6648. Principal Investigator: J.C.M. GERARD Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6648/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:46.451982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID6650-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6650","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6650. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6650/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:47.457581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6662-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6662","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6662. Principal Investigator: J.C.M. GERARD Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6662/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:48.463005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6733-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6733","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6733. Principal Investigator: E. YOUNG Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6733/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:49.467434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6743-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6743","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6743. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6743/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:50.465160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6752-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6752","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6752. Principal Investigator: J. Goguen Target list: CALLISTO, EUROPA|GANYMEDE|IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6752/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:51.471617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID6753-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6753","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6753. Principal Investigator: P.K. Seidelmann Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6753/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:52.511329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6774-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6774","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6774. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6774/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:53.552189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6803-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6803","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6803. Principal Investigator: T. Denk Target list: IAPETUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6803/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:54.502535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID6806-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6806","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6806. Principal Investigator: R.G. FRENCH Target list: PROMETHEUS, S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6806/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:55.551834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID6818-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6818","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6818. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6818/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:56.485277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6842-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6842","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6842. Principal Investigator: J. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6842/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:57.498088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID6846-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6846","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6846. Principal Investigator: H. Hammel Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6846/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:58.502429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID6853-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6853","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6853. Principal Investigator: J. Trauger Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6853/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:15:59.501765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID7308-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7308/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:00.502237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID7321-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7321","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7321. Principal Investigator: M.T. LEMMON Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7321/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:01.508211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID7324-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7324/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:02.511708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID7427-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7427","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7427. Principal Investigator: R.G. French Target list: PROMETHEUS, S RINGS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7427/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:03.517930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID7429-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7429/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:04.577871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID7430-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7430","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7430. Principal Investigator: R.A. WEST Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7430/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:05.531317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID7589-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7589","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7589. Principal Investigator: J. CALDWELL Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7589/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:06.562715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID7616-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7616","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7616. Principal Investigator: R. Beebe Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7616/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:07.613713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-L/J/S-WFPC2-5-ID7717-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7717/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:08.540693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID8148-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8148","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8148. Principal Investigator: G. Orton Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8148/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:09.550639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID8169-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8169/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:10.554854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID8398-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8398","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8398. Principal Investigator: R. French Target list: PROMETHEUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8398/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:11.538330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID8405-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8405","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8405. Principal Investigator: K. Noll Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8405/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:12.548174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-WFPC2-5-ID8577-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8577","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8577. Principal Investigator: P. James Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8577/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:13.548679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-M-WFPC2-5-ID8579-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8579","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8579. Principal Investigator: M. Showalter Target list: MARS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8579/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:14.563086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID8580-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8580","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8580. Principal Investigator: E. Young Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8580/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:15.577735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFPC2-5-ID8634-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8634","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8634. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8634/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:16.628760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID8660-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8660","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8660. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8660/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:17.571691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID8680-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8680","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8680. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8680/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:18.620405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID8802-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8802","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8802. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8802/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:19.667106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID8871-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8871","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8871. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:20.593655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID9235-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9235","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9235. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9235/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:21.578609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9256-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9256","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9256. Principal Investigator: J. Biretta Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9256/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:22.591864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9341-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9341","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9341. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9341/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:23.590530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID9344-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9344","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9344. Principal Investigator: H. Hammel Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9344/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:24.602643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9354-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9354/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:25.602482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9385-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9385/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:26.614150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-N-WFPC2-5-ID9393-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9393","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9393. Principal Investigator: L. Sromovsky Target list: NEPTUNE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9393/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:27.646107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID9725-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9725/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:28.683277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID9809-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9809","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9809. Principal Investigator: R.G. French Target list: PROMETHEUS, SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9809/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:29.629937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFPC2-5-ID10170-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10170","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10170. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0170/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:30.681027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID10357-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10357","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10357. Principal Investigator: A.J. Verbiscer Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0357/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:31.625555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID10468-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10468","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10468. Principal Investigator: E. Karkoschka Target list: GANYMEDE.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0468/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:32.624690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFPC2-5-ID10534-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0534/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:33.632995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID10782-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0782/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:34.632040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID10862-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: SATURN.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0862/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:35.642374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID10870-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0870/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:36.654988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID10871-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: IO.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0871/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:37.645845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11085-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1085/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:38.648457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11096-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11096","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11096. Principal Investigator: K. Noll Target list: IO, JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1096/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:39.699159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11102-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11102","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11102. Principal Investigator: I. de Pater Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1102/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:40.742986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID11118-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1118/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:41.689576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U/N-WFPC2-5-ID11156-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11156","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11156. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1156/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:42.738970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-U-WFPC2-5-ID11292-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11292","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11292. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1292/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:43.671526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11310-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11310","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11310. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1310/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:44.672601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-5-ID11498-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1498/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:45.681100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-5-ID11956-V1.0","title":"HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11956","description":"This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11956. Principal Investigator: K.S. Noll Target list: TITAN, UNK.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1956/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:46.674456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"JNO-L-JIRAM-2-EDR-V3.0","title":"JUNO JIRAM EDR OBSERVATIONS","description":"This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_1000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:52.806908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"JNO-J-JIRAM-2-EDR-V1.0","title":"JUNO JIRAM EDR OBSERVATIONS","description":"This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:16:53.850961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"JNO-L-JIRAM-3-RDR-V3.0","title":"JUNO JIRAM RDR OBSERVATIONS","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2013-10-09.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_2000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:18:01.574812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"JNO-J-JIRAM-3-RDR-V1.0","title":"JUNO JIRAM RDR OBSERVATIONS","description":"This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2016-07-10 to 2016-07-20.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:18:02.571324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"JUNO-J-JUNOCAM-2-EDR-L0-V1.0\",","title":"NULL","description":"This volume contains Juno JunoCam data in their original, compressed format (EDR) and decompressed, processed format (RDR). In addition, mosaics of one or more individual JunoCam images are combined to create global and regional map products. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOJNC_0xxx/JNOJNC_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:11.433544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"JNO-J/E/SS-SPICE-6-V1.0","title":"JUNO SPICE FILES","description":"This volume contains navigation and ancillary data in the form of SPICE System kernel files for the JUNO spacecraft and instruments. The data on this volume are released at intervals and may not be complete. Consult the ``catalog/release.cat'' file for information concerning release dates.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOSP_xxxx/JNOSP_1000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:44.664881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"JNO-J-SRU-EDR-2-L0-V1.0\",","title":"NULL","description":"This volume contains Juno Stellar Reference Unit data in their original, uncompressed format (EDR) and tables of derived count rates. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/JNOSRU_xxxx/JNOSRU_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:46.603985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J/P/SS-SPICE-6-V1.0","title":"NEW HORIZONS SPICE FILES","description":"This volume contains navigation and ancillary data in the form of SPICE System kernel files for the New Horizons spacecraft and its instruments.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHSP_xxxx/NHSP_1000/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:48.612607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-2-JUPITER-V3.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHJULO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:52.629034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-3-JUPITER-V3.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHJULO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:53.682569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM2-V1.0","title":"NEW HORIZONS LORRI KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHK2LO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:54.628363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM2-V1.0","title":"NEW HORIZONS LORRI KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHK2LO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:55.675295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS LORRI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKCLO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:56.627511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKCLO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:57.646405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V6.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:58.640157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V6.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:19:59.641992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-LAUNCH-V3.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHLALO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:00.640615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-LAUNCH-V3.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHLALO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:01.633227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS LORRI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPCLO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:02.644771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPCLO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:03.663994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-2-PLUTO-V3.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:04.686693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-3-PLUTO-V3.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:05.733005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-2-JUPITER-V1.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHJULO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:07.734240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-3-JUPITER-V1.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHJULO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:08.688211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS LORRI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKCLO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:09.688911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKCLO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:10.694302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V1.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:11.692119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V1.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:12.700703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-LAUNCH-V1.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHLALO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:13.703226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-LAUNCH-V1.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHLALO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:14.702069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LORRI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPCLO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:15.705269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPCLO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:16.750337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-2-PLUTO-V1.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:17.805001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-3-PLUTO-V1.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:18.743699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-2-JUPITER-V1.1","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHJULO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:20.737992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-3-JUPITER-V1.1","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHJULO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:21.737683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V2.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:22.743093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V2.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:23.739529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-LAUNCH-V1.1","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHLALO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:24.745075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-LAUNCH-V1.1","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHLALO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:25.746824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-2-PLUTO-V2.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHPELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:26.754178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-3-PLUTO-V2.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHPELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:27.761543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-2-JUPITER-V2.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHJULO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:29.771941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-3-JUPITER-V2.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHJULO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:30.804135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V3.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:31.849797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V3.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:32.784149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-LAUNCH-V2.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHLALO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:33.791938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-LAUNCH-V2.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHLALO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:34.794703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V4.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v4/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:36.804426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V4.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v4/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:37.798310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V5.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v5/NHKELO_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:39.812795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V5.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v5/NHKELO_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:40.867720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-MVIC-2-JUPITER-V2.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHJUMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:42.864824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-MVIC-3-JUPITER-V2.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHJUMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:43.911000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS MVIC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKCMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:44.825696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKCMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:45.827661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V6.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:46.827526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V6.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:47.833163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-LAUNCH-V2.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHLAMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:48.841661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-LAUNCH-V2.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHLAMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:49.838683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS MVIC PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPCMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:50.849885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS MVIC PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPCMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:51.881832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-2-PLUTO-V3.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:52.927589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-3-PLUTO-V3.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:53.870101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-MVIC-2-JUPITER-V1.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHJUMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:55.877330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-MVIC-3-JUPITER-V1.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHJUMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:56.871819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS MVIC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKCMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:57.872124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKCMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:58.885887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V1.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:20:59.885391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V1.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:00.890871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-LAUNCH-V1.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHLAMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:01.889067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-LAUNCH-V1.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHLAMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:02.902737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-2-PLUTO-V1.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHPEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:03.938207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-3-PLUTO-V1.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHPEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:04.995868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V2.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:06.978097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V2.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:07.918550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-2-PLUTO-V2.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHPEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:08.924821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-3-PLUTO-V2.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHPEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:09.927683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V3.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v3/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:11.936164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V3.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v3/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:12.941495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V4.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v4/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:14.949342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V4.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v4/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:15.998223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V5.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v5/NHKEMV_1001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:17.985264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V5.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v5/NHKEMV_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:19.037548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-3-RPX-V1.1","title":"VOLUME 1: IMAGES OCTOBER 1994 TO MAY 1995","description":"This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Wide Field and Planetary Camera 2 aboard the Hubble Space Telescope. The images were acquired during the period October 1994 through November 1995, spanning the period of the ring plane crossings of 1995. (No images were obtained during the last crossing event in February 1996). Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, and documentation. This version eliminates the use of the Zip files that were found in the original volumes, and expands all file names to match those found in the HST archive.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:22.478926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"WHT-S-API/ISIS-1/3-RPX-V1.0","title":"VOLUME 1: IMAGES AND SPECTRA FROM AUGUST 1995","description":"This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Intermediate Dispersion Spectrograph and Imaging System (ISIS) and the camera on the Auxiliary Port Imager (API) of the William Herschel Telescope. The images were acquired during the period August 1 - 3, 1995. Included in this volume are data files at a variety of levels of processing, plus calibration files, and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0101/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:27.539588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IRTF-S-NSFCAM-1/3-RPX-V1.0","title":"VOLUME 1: IMAGES FROM AUGUST 1995","description":"This volume contains images of the Saturnian system, including the main rings, multiple filter observations of the E ring, and eclipses of the satellites Janus, Pandora, Prometheus, Epimetheus, and Enceladus. These images were acquired by the NSFCam at the NASA Infrared Telescope Facility over the period August 6-8, 1995. Included on this volume are raw data and calibration files obtained in August, additional calibration files obtained in May 1995, a few observations of Jupiter, and supporting documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0201/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:28.567614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CFHT-S-QUIRC-1/3-RPX-V1.0","title":"VOLUME 1: IMAGES FROM AUGUST 1995","description":"This volume contains images of the Saturnian system, including the satellites; Titan, Tethys, and Dionne. These images were acquired by Quick infrared Camera at Canada-France-Hawaii Corporation at Mauna Kea over the period August 9 - 12, 1995. Included on this volume are raw, processed, and calibration data files as well as supporting documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0301/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:29.522811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"WIYN-S-WI-2-RPX-V1.0","title":"VOLUME 1: IMAGES FROM NOVEMBER 1995","description":"This volume contains images acquired by WIYN Imager(WI) at the WIYN Observatory at Kitt Peak of Saturn, its rings, and inner satellites. The images were acquired during the period November 19-23, 1995. Included in this volume are the raw images from these observations, calibration files, and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0401/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:30.571034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-S-WFPC2-3-RPX-V1.0","title":"VOLUME 1: IMAGES OCTOBER 1994 TO MAY 1995","description":"This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Wide Field and Planetary Camera 2 aboard the Hubble Space Telescope. The images were acquired during the period October 1994 through November 1995, spanning the period of the ring plane crossings of 1995. (No images were obtained during the last crossing event in February 1996). Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/RPX_xxxx_v1/RPX_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:32.512976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1/VG2-J/S-IRIS-3-RDR-EXPANDED-V1.0","title":"VOYAGER IRIS OBSERVATIONS AT JUPITER - EXPANDED","description":"This volume contains all the data produced by the Voyager IRIS experiments at Jupiter. It includes the full-resolution (RDR) spectra, plus ancillary geometry and calibration information.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGIRIS_xxxx_peer_review/VGIRIS_0001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:38.541747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1/VG2-J-ISS-2/3/4/6-PROCESSED-V1.0","title":"PROCESSED VOYAGER 1 JUPITER IMAGES 13854.55 -- 14999.59","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGISS_5xxx/VGISS_5101/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:21:41.581446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1/VG2-S-ISS-2/3/4/6-PROCESSED-V1.1","title":"PROCESSED VOYAGER 1 SATURN IMAGES 27830.18-32799.59","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGISS_6xxx/VGISS_6101/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:22:16.707120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG2-U-ISS-2/3/4/6-PROCESSED-V1.0","title":"PROCESSED URANUS IMAGES FROM VG_0001","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGISS_7xxx/VGISS_7201/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:22:53.935028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG2-N-ISS-2/3/4/6-PROCESSED-V1.0","title":"PROCESSED VOYAGER 2 NEPTUNE IMAGES 8966.31 -- 9499.00","description":"This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGISS_8xxx/VGISS_8201/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:01.901678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"VG1/VG2-J-IRIS-3-RDR-V1.0\",","title":"VOYAGER IRIS OBSERVATIONS","description":"This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_20xx/VG_2001/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:32.999953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG2-SR/UR/NR-PPS-2/4-OCC-V1.0","title":"VOLUME 1: VOYAGER PPS RING OCCULTATION DATA","description":"This volume contains ring occultation data from the Voyager 2 Photopolarimeter at Saturn, Uranus and Neptune. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, software and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2801/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:35.024587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1/VG2-SR/UR/NR-UVS-2/4-OCC-V1.0","title":"VOLUME 2: VOYAGER UVS RING OCCULTATION DATA","description":"This volume contains ring occultation data from the Voyager Ultraviolet Spectrometer at Saturn, Uranus and Neptune. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, software and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2802/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:36.005249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1/VG2-SR/UR-RSS-4-OCC-V1.0","title":"VOLUME 3: VOYAGER RSS RING OCCULTATION DATA","description":"This volume contains processed ring occultation data from the Voyager Radio Science experiments at Saturn and Uranus. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry and calibration, software and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2803/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:37.025642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1/VG2-SR-ISS-4-PROFILES-V1.0","title":"SATURN RING PROFILES FROM VOYAGER IMAGES","description":"This volume contains calibrated and geometrically accurate intensity (I/F) profiles of Saturn's rings, as derived from the Voyager images. Documentation and the image files used in the analysis are also provided","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2810/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:38.065624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1/VG2-SR/UR-RSS-4-OCC-V0.9","title":"VOLUME 3: VOYAGER RSS RING OCCULTATION DATA","description":"This volume contains processed ring occultation data from the Voyager Radio Science experiments at Saturn and Uranus. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry and calibration, software and documentation.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VG_28xx_v0.9/VG_2803/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:40.069233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1-S-RSS-1-ROCC-V1.0","title":"VG1 at Saturn: VG1-S-RSS-1-ROCC-V1.0","description":"CERTIFIED This volume contains data and supporting documentation from the Voyager 1 Saturn Encounter for the VG1-S-RSS-1-ROCC-V1.0 data set from 1980-11-13T00:00:00 to 1980-11-13T23:59:59.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG1_9050/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:42.028980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG1-SSA-RSS-1-ROCC-V1.0","title":"VG1 from Titan: VG1-SSA-RSS-1-ROCC-V1.0","description":"CERTIFIED This volume contains raw data collected during the Titan radio occultation of Voyager 1 in November 1980 plus ancillary files that might be useful in analysis of those data from the VG1-SSA-RSS-1-ROCC-V1.0 data set.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG1_9056/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:43.043542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG2-S-RSS-1-ROCC-V1.0","title":"VG2 at Saturn: VG2-S-RSS-1-ROCC-V1.0","description":"CERTIFIED This volume contains raw data, partially processed data, and ancillary files from the Voyager 2 Saturn Radio Science investigation for the VG2-S-RSS-1-ROCC-V1.0DATASET ID data set from 1981-08-25 to 1981-08-26.","node":"rms","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG2_9065/","download_url":null,"label_url":null,"source_url":"https://pds-rings.seti.org/holdings/volumes/","scraped_at":"2026-02-18T04:23:44.050032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_saturn::1.0","title":"ISS Observations from the Cassini Tour of the Saturn System","description":"This bundle contains Cassini ISS images, metadata, and associated documentation for the Saturn tour--January 2004 through end of mission in September 2017.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["(134340) Pluto","26 Tauri","3 Centauri","78 Tauri","Aegaeon","Albiorix","Aldebaran","Algol","Alpha Arae","Alpha Centauri","Alpha Crucis","Alpha Eridani","Alpha Sextantis","Alpha Trianguli Australis","Antares","Anthe","Arcturus","Atlas","Bebhionn","Bergelmir","Bestla","Beta Canis Majoris","Beta Centauri","Beta Crucis","Beta Librae","Beta Lupi","Beta Orionis","Beta Sagittarii","Betelgeuse","CW Leonis","Cal Lamps","Calypso","Canopus","Capella","Chi Centauri","Daphnis","Delta Aquarii","Delta Centauri","Delta Lupi","Delta Persei","Delta Virginis","Dione","Earth","Enceladus","Epimetheus","Epsilon Cassiopeiae","Epsilon Centauri","Epsilon Lupi","Epsilon Orionis","Epsilon Piscis Austrini","Erriapus","Eta Carinae","Eta Lupi","Eta Ursae Majoris","Fomalhaut","Fornjot","Gamma Arae","Gamma Cassiopeiae","Gamma Columbae","Gamma Crucis","Gamma Gruis","Gamma Lupi","Gamma Pegasi","Greip","HD 71334","HR 996","Hati","Helene","Hyperion","Hyrrokkin","Iapetus","Ijiraq","Iota Centauri","Janus","Jarnsaxa","Jupiter","Kappa Centauri","Kappa Orionis","Kari","Kiviuq","Lambda Ceti","Lambda Scorpii","Loge","Methone","Mimas","Mu Piscis Austrini","Mundilfari","Narvi","Nu Centauri","Omicron Ceti","Paaliaq","Pallene","Pan","Pandora","Phoebe","Polydeuces","Probe","Procyon","Prometheus","Psi Centauri","R Cassiopeiae","R Hydrae","R Leo","Regulus","Rhea","S/2004 S 12","S/2004 S 13","Saturn Rings","Saturn","Scat Light","Siarnaq","Sirius","Skathi","Skoll","Sky","Spica","Star","Sun","Surtur","Suttungr","Tarqeq","Tarvos","Telesto","Tethys","Theta Arae","Theta Hydrae","Thrymr","Titan","Unknown","Vega","W Hydrae","Ymir","Zeta Canis Majoris","Zeta Centauri","Zeta Ophiuchi","Zeta Orionis","Zeta Persei"],"instruments":["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera","Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//bundle.xml","scraped_at":"2026-02-25T20:02:10.736892Z","keywords":["cassini iss","cassini images","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_cruise::1.0","title":"ISS Observations from the Cassini Cruise to Saturn","description":"This bundle contains Cassini ISS images, metadata, and associated documentation from the cruise to Saturn--October 1997 through December 2003.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["78 Tauri","Aldebaran","Alpha Centauri","Antares","Arcturus","Beta Gruis","Betelgeuse","CW Leonis","Cal Lamps","Callisto","Capella","Checkout","Dark Sky","Dark","Dust","Eta Carinae","Europa","Fomalhaut","Gamma Crucis","Ganymede","HD 339479","Himalia","Io","Jupiter","Jupiter Rings","Masursky","Moon","NML Tauri","Omicron Ceti","Pallene","Phoebe","Pleiades","R Doradus","R Hydrae","R Leo","Saturn","Scat Light","Sirius","Sky","Spica","Star","Sun","Test Image","Titan","Unknown","Vega","Venus","W Hydrae"],"instruments":["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera","Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//bundle.xml","scraped_at":"2026-02-25T20:02:10.737540Z","keywords":["cassini iss","cassini images","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_cruise::1.0","title":"VIMS Observations from the Cassini Cruise to Saturn","description":"This bundle contains Cassini VIMS data, metadata, and associated documentation from the cruise to Saturn--October 1997 through December 2003.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Aldebaran","Alpha Centauri","Antares","Arcturus","Beta Gruis","Betelgeuse","Callisto","Capella","Dark Sky","Europa","Fomalhaut","Gamma Crucis","Ganymede","Himalia","Io","Jupiter","Jupiter Rings","Masursky","Pleiades","R Hydrae","R Leo","Saturn","Scat Light","Sirius","Sky","Spica","Sun","Test Image","Unknown","Venus","W Hydrae"],"instruments":["Cassini Orbiter Visual And Infrared Mapping Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1999-01-10","stop_date":"2003-12-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//bundle.xml","scraped_at":"2026-02-25T20:02:10.737549Z","keywords":["cassini vims","cassini spectra","jupiter","jupiter satellites","jupiter rings","jupiter system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_saturn::1.0","title":"VIMS Observations from the Cassini Tour of the Saturn System","description":"This bundle contains Cassini VIMS data, metadata, and associated documentation for the Saturn tour--January 2004 through end of mission in September 2017.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["2 Centauri","30 Herculis","30 Piscium","56 Leonis","Aegaeon","Albiorix","Aldebaran","Alpha Centauri","Alpha Ceti","Alpha Herculis","Alpha Hydrae","Alpha Trianguli Australis","Antares","Anthe","Arcturus","Atlas","Bebhionn","Bestla","Beta Andromedae","Beta Gruis","Beta Orionis","Beta Pegasi","Beta Ursae Minoris","Betelgeuse","CW Leonis","Calypso","Capella","Chi Aquarii","Chi Cygni","Daphnis","Delta Ophiuchi","Delta Virginis","Dione","Dust","Earth","Enceladus","Epimetheus","Epsilon Muscae","Epsilon Orionis","Erriapus","Eta Sagittarii","Fomalhaut","Gamma Andromedae","Gamma Crucis","Gamma Eridani","Greip","HR 996","Hati","Helene","Hyperion","Iapetus","Ijiraq","Janus","Jarnsaxa","Jupiter","Kiviuq","Lambda Aquarii","Lambda Velorum","Methone","Mimas","Mu Cephei","Mu Geminorum","Mundilfari","Nu Virginis","Omega Virginis","Omicron Ceti","Paaliaq","Pallene","Pan","Pandora","Phoebe","Pi1 Gruis","Pleiades","Polydeuces","Procyon","Prometheus","R Aquarii","R Cassiopeiae","R Hydrae","R Leo","R Lyrae","RW Leonis Minoris","RX Leporis","Rhea","Rho Persei","S Leporis","Saturn Rings","Saturn","Siarnaq","Sirius","Skathi","Sky","Spica","Star","Sun","Surtur","T Cephei","TX Camelopardalis","Tarqeq","Tarvos","Telesto","Tethys","Thrymr","Titan","Unknown","V Hydrae","VX Sagittarii","W Aquilae","W Hydrae","X Ophiuchi","Ymir","Zeta Orionis"],"instruments":["Cassini Orbiter Visual And Infrared Mapping Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//bundle.xml","scraped_at":"2026-02-25T20:02:10.737561Z","keywords":["cassini vims","cassini spectra","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm::1.0","title":"Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u0201 (UCAC2 27214859) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"2002-07-29","stop_date":"2002-07-29","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737570Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm::1.0","title":"Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u0 (Hipparcos 71567) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["0.91m Telescope","Generic Visual High Speed Photometer"],"instrument_hosts":["Kuiper Airborne Observatory"],"data_types":[],"start_date":"1977-03-10","stop_date":"1977-03-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737580Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm::1.0","title":"Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u102a (UCAC2 22794648) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1992-07-08","stop_date":"1992-07-08","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737591Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm::1.0","title":"Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u102b (UCAC2 22794648) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1992-07-08","stop_date":"1992-07-08","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737601Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm::1.0","title":"Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["ESO-La Silla 2.2m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1992-07-11","stop_date":"1992-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737608Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm::1.0","title":"Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"1992-07-11","stop_date":"1992-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737615Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm::1.0","title":"Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u1052 (UCAC2 22296665) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1988-05-12","stop_date":"1988-05-12","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737622Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm::1.0","title":"Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u11 (UCAC2 24610234) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1980-03-20","stop_date":"1980-03-20","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737630Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm::1.0","title":"Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1980-08-15","stop_date":"1980-08-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737639Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm::1.0","title":"Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["ESO-La Silla 1.04m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737650Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm::1.0","title":"Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["ESO-La Silla 3.6m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737661Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm::1.0","title":"Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737668Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm::1.0","title":"Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u134 (UCAC2 23509999) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":[],"start_date":"1995-09-09","stop_date":"1995-09-09","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737678Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos::1.0","title":"Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This bundle contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Wide Field Camera 3"],"instrument_hosts":["Hubble Space Telescope"],"data_types":[],"start_date":"1996-03-16","stop_date":"1996-03-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/bundle.xml","scraped_at":"2026-02-25T20:02:10.737689Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm::1.0","title":"Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1996-03-16","stop_date":"1996-03-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737699Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos::1.0","title":"Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This bundle contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Wide Field Camera 3"],"instrument_hosts":["Hubble Space Telescope"],"data_types":[],"start_date":"1996-04-10","stop_date":"1996-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/bundle.xml","scraped_at":"2026-02-25T20:02:10.737706Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm::1.0","title":"Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"1996-04-10","stop_date":"1996-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737716Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm::1.0","title":"Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u13 (Hipparcos 77434) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["3.9m Anglo-Australian Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":[],"start_date":"1981-04-26","stop_date":"1981-04-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737725Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm::1.0","title":"Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["1.23m Telescope","Generic NICMOS IR Camera"],"instrument_hosts":["Centro Astronomico Hispano-Aleman"],"data_types":[],"start_date":"1997-09-30","stop_date":"1997-09-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737733Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm::1.0","title":"Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":[],"start_date":"1997-09-30","stop_date":"1997-09-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737741Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm::1.0","title":"Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1998-11-06","stop_date":"1998-11-06","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737750Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm::1.0","title":"Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Perkins 1.8m Telescope","Generic CCD Camera"],"instrument_hosts":["Lowell Observatory"],"data_types":[],"start_date":"1998-11-06","stop_date":"1998-11-06","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737760Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["SMARTS 1.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737770Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737779Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["ESO-La Silla 1.04m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737786Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Swope 1.0m Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737796Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737806Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["1.06m Telescope","Generic GaAs High Speed Photometer"],"instrument_hosts":["Pic du Midi de Bigorre"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737813Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Bernard Lyot 2.0m","Generic InSb High Speed Photometer"],"instrument_hosts":["Pic du Midi de Bigorre"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737820Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm::1.0","title":"Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":[],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737830Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm::1.0","title":"Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u15 (UCAC2 23648038) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["1.9m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Mount Stromlo Observatory"],"data_types":[],"start_date":"1982-05-01","stop_date":"1982-05-01","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737841Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm::1.0","title":"Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u16 (UCAC2 23892052) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"1982-06-04","stop_date":"1982-06-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737850Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm::1.0","title":"Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u17b (Hipparcos 80841) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":[],"start_date":"1983-03-24","stop_date":"1983-03-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737860Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm::1.0","title":"Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Harlan J. Smith 2.7m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["McDonald Observatory"],"data_types":[],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737867Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm::1.0","title":"Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":[],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737875Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm::1.0","title":"Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737882Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm::1.0","title":"Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Harlan J. Smith 2.7m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["McDonald Observatory"],"data_types":[],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737890Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm::1.0","title":"Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":[],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737897Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm::1.0","title":"Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u28 (UCAC2 22517254) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1986-04-26","stop_date":"1986-04-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737908Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm::1.0","title":"Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u2 (UCAC3 148-144064) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":[],"start_date":"1977-12-23","stop_date":"1977-12-23","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737916Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm::1.0","title":"Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u34 (UCAC2 22289038) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1987-02-26","stop_date":"1987-02-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737926Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737936Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1987-03-30","stop_date":"1987-03-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737943Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["United Kingdom Infrared Telescope 3.8m","Generic InSb High Speed Photometer"],"instrument_hosts":["Maunakea Observatory"],"data_types":[],"start_date":"1987-03-30","stop_date":"1987-03-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737951Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Australian National University 2.3m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":[],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737958Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm::1.0","title":"Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["3.9m Anglo-Australian Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":[],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737965Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm::1.0","title":"Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u5 (UCAC2 25775788) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1978-04-10","stop_date":"1978-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737972Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm::1.0","title":"Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u65 (UCAC3 133-382807) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1990-06-21","stop_date":"1990-06-21","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737979Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm::1.0","title":"Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u83 (UCAC2 22564036) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1991-06-25","stop_date":"1991-06-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737987Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm::1.0","title":"Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u84 (UCAC2 22563790) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1991-06-28","stop_date":"1991-06-28","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.737994Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm::1.0","title":"Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u9539 (UCAC2 23016546) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1993-06-30","stop_date":"1993-06-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.738004Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm::1.0","title":"Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u9 (UCAC2 25547691) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":[],"start_date":"1979-06-10","stop_date":"1979-06-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.738012Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_support::1.0","title":"Uranus Occultation Support Bundle","description":"The support bundle for the highly derived, Uranus system, Earth-Based occultation bundles. Contains the global Uranus ring system model, support materials, and documentation used to produce the individual occultation profiles in the supported bundles.","node":"rms","pds_version":"PDS4","type":"bundle","missions":[],"targets":["Uranus","Uranian Ring System"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/bundle.xml","scraped_at":"2026-02-25T20:02:10.738275Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings global model","uranus rings model","uranus occultation user guide"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023::1.1","title":"Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This bundle contains derived time series data products from multiple solar occultations by the rings of Saturn.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Saturn Rings"],"instruments":["Cassini Orbiter Ultraviolet Imaging Spectrograph"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"2005-06-08","stop_date":"2017-06-18","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//bundle.xml","scraped_at":"2026-02-25T20:02:10.738445Z","keywords":["Saturn Rings","Solar Occultation","CDAP 2018"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm::1.0","title":"Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/bundle.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/bundle.xml","scraped_at":"2026-02-25T20:02:10.738453Z","keywords":["PDART 2015 R. French","PDART2015 French","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw::1.0","title":"Voyager 1 Jupiter Radio Occultation - Raw Data Bundle","description":"The bundle contains raw radio science data from the Voyager 1 radio occultation at Jupiter. Data include sampled output from S- and X-band receivers at the 64-m antenna of the NASA Deep Space Network near Madrid, Spain. Also included are receiver tuning data, files containing reconstructed pointing of the spacecraft high-gain antenna, a trajectory reconstruction, and documentation.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","DSS 63 64-m Antenna","Voyager 1 Radio Science Instrumentation","Voyager 1 Spacecraft Sensors"],"instrument_hosts":["NASA Deep Space Network","Voyager 1"],"data_types":[],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//bundle_voyager1_rss_jupiter_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//bundle_voyager1_rss_jupiter_raw.xml","scraped_at":"2026-02-25T20:02:10.738467Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw::1.0","title":"Voyager 2 Jupiter Radio Occultation - Raw Data Bundle","description":"The bundle contains raw radio science data from the Voyager 2 radio occultation at Jupiter. Data include sampled output from S- and X-band receivers at the 64-m antenna of the NASA Deep Space Network near Madrid, Spain. Also included are receiver tuning data, files containing reconstructed pointing of the spacecraft high-gain antenna, a trajectory reconstruction, and documentation.","node":"rms","pds_version":"PDS4","type":"bundle","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","DSS 14 64-m Antenna","Voyager 2 Radio Science Instrumentation","Voyager 2 Spacecraft Sensors"],"instrument_hosts":["NASA Deep Space Network","Voyager 2"],"data_types":[],"start_date":"1979-07-10","stop_date":"1979-07-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//bundle_voyager2_rss_jupiter_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//bundle_voyager2_rss_jupiter_raw.xml","scraped_at":"2026-02-25T20:02:10.738471Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_saturn:browse_raw::1.0","title":"Browse Collection for the Raw Cassini ISS Observations from the Saturn Tour","description":"This is the collection of browse products associated with the raw ISS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/collection_browse_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.750188Z","keywords":["cassini iss","browse products","preview products"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_saturn:xml_schema::1.0","title":"XML Schema Collection for the Cassini ISS Observations from the Saturn Tour","description":"This is the collection of XML schema used by the archive bundle of Cassini ISS data from the tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.750209Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_saturn:context::1.0","title":"Context Collection for the Cassini ISS Observations of the Saturn System","description":"This is the collection of context products relevant to the ISS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.750212Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_saturn:data_raw::1.0","title":"Raw Data Collection for the Cassini ISS Observations from the Saturn Tour","description":"This is the collection of raw ISS images and associated metadata from the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["(134340) Pluto","26 Tauri","3 Centauri","78 Tauri","Aegaeon","Albiorix","Aldebaran","Algol","Alpha Arae","Alpha Centauri","Alpha Crucis","Alpha Eridani","Alpha Sextantis","Alpha Trianguli Australis","Antares","Anthe","Arcturus","Atlas","Bebhionn","Bergelmir","Bestla","Beta Canis Majoris","Beta Centauri","Beta Crucis","Beta Librae","Beta Lupi","Beta Orionis","Beta Sagittarii","Betelgeuse","CW Leonis","Cal Lamps","Calypso","Canopus","Capella","Chi Centauri","Daphnis","Delta Aquarii","Delta Centauri","Delta Lupi","Delta Persei","Delta Virginis","Dione","Earth","Enceladus","Epimetheus","Epsilon Cassiopeiae","Epsilon Centauri","Epsilon Lupi","Epsilon Orionis","Epsilon Piscis Austrini","Erriapus","Eta Carinae","Eta Lupi","Eta Ursae Majoris","Fomalhaut","Fornjot","Gamma Arae","Gamma Cassiopeiae","Gamma Columbae","Gamma Crucis","Gamma Gruis","Gamma Lupi","Gamma Pegasi","Greip","HD 71334","HR 996","Hati","Helene","Hyperion","Hyrrokkin","Iapetus","Ijiraq","Iota Centauri","Janus","Jarnsaxa","Jupiter","Kappa Centauri","Kappa Orionis","Kari","Kiviuq","Lambda Ceti","Lambda Scorpii","Loge","Methone","Mimas","Mu Piscis Austrini","Mundilfari","Narvi","Nu Centauri","Omicron Ceti","Paaliaq","Pallene","Pan","Pandora","Phoebe","Polydeuces","Probe","Procyon","Prometheus","Psi Centauri","R Cassiopeiae","R Hydrae","R Leo","Regulus","Rhea","S/2004 S 12","S/2004 S 13","Saturn Rings","Saturn","Scat Light","Siarnaq","Sirius","Skathi","Skoll","Sky","Spica","Star","Sun","Surtur","Suttungr","Tarqeq","Tarvos","Telesto","Tethys","Theta Arae","Theta Hydrae","Thrymr","Titan","Unknown","Vega","W Hydrae","Ymir","Zeta Canis Majoris","Zeta Centauri","Zeta Ophiuchi","Zeta Orionis","Zeta Persei"],"instruments":["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera","Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/collection_data_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.750226Z","keywords":["cassini iss","cassini raw images","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_saturn:document::1.0","title":"Document Collection for the Cassini ISS Observations from the Saturn Tour","description":"This is the collection of documents relevant to the ISS observations obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.750231Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_cruise:xml_schema::1.0","title":"XML Schema Collection for the Cassini ISS Observations from the Cruise to Saturn","description":"This is the collection of XML schema used by the archive bundle of Cassini ISS data from the cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751599Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_cruise:browse_raw::1.0","title":"Browse Collection for the Raw Cassini ISS Observations from the Cruise to Saturn","description":"This is the collection of browse products associated with the raw ISS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/collection_browse_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.751604Z","keywords":["cassini iss","browse products","preview products"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_cruise:context::1.0","title":"Context Collection for the Cassini ISS Observations of the Saturn System","description":"This is the collection of context products relevant to the ISS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751607Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_cruise:document::1.0","title":"Document Collection for the Cassini ISS Observations from the Cruise to Saturn","description":"This is the collection of documents relevant to the ISS observations obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751610Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_iss_cruise:data_raw::1.0","title":"Raw Data Collection for the Cassini ISS Observations from the Cruise to Saturn","description":"This is the collection of raw ISS images and associated metadata from the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["78 Tauri","Aldebaran","Alpha Centauri","Antares","Arcturus","Beta Gruis","Betelgeuse","CW Leonis","Cal Lamps","Callisto","Capella","Checkout","Dark Sky","Dark","Dust","Eta Carinae","Europa","Fomalhaut","Gamma Crucis","Ganymede","HD 339479","Himalia","Io","Jupiter","Jupiter Rings","Masursky","Moon","NML Tauri","Omicron Ceti","Pallene","Phoebe","Pleiades","R Doradus","R Hydrae","R Leo","Saturn","Scat Light","Sirius","Sky","Spica","Star","Sun","Test Image","Titan","Unknown","Vega","Venus","W Hydrae"],"instruments":["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera","Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-09","stop_date":"2003-12-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/collection_data_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.751619Z","keywords":["cassini iss","cassini raw images","jupiter","jupiter satellites","jupiter rings","jupiter system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_cruise:xml_schema::1.0","title":"XML Schema Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of XML schema used by the archive bundle of Cassini VIMS data from the cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751624Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_cruise:calibration::1.0","title":"Calibration Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of calibration products relevant to the VIMS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/collection_calibration.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.751627Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_cruise:browse_raw::1.0","title":"Browse Collection for the Raw Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of browse products associated with the raw VIMS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/collection_browse_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.751632Z","keywords":["cassini vims","cassini spectra","browse products","preview products"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_cruise:context::1.0","title":"Context Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of context products relevant to the VIMS data files obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751635Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_cruise:data_raw::1.0","title":"Raw Data Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of raw VIMS data products and associated metadata from the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Aldebaran","Alpha Centauri","Antares","Arcturus","Beta Gruis","Betelgeuse","Callisto","Capella","Dark Sky","Europa","Fomalhaut","Gamma Crucis","Ganymede","Himalia","Io","Jupiter","Jupiter Rings","Masursky","Pleiades","R Hydrae","R Leo","Saturn","Scat Light","Sirius","Sky","Spica","Sun","Test Image","Unknown","Venus","W Hydrae"],"instruments":["Cassini Orbiter Visual And Infrared Mapping Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1999-01-10","stop_date":"2003-12-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/collection_data_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.751642Z","keywords":["cassini vims","cassini spectra","jupiter","jupiter satellites","jupiter rings","jupiter system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_cruise:document::1.0","title":"Document Collection for the Cassini VIMS Observations from the Cruise to Saturn","description":"This is the collection of documents relevant to the VIMS observations obtained during the Cassini cruise to Saturn.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751646Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_saturn:document::1.0","title":"Document Collection for the Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of documents relevant to the VIMS observations obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751649Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_saturn:data_raw::1.0","title":"Raw Data Collection for the Cassini VIMS Observations from from the Saturn Tour","description":"This is the collection of raw VIMS data products and associated metadata from the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["2 Centauri","30 Herculis","30 Piscium","56 Leonis","Aegaeon","Albiorix","Aldebaran","Alpha Centauri","Alpha Ceti","Alpha Herculis","Alpha Hydrae","Alpha Trianguli Australis","Antares","Anthe","Arcturus","Atlas","Bebhionn","Bestla","Beta Andromedae","Beta Gruis","Beta Orionis","Beta Pegasi","Beta Ursae Minoris","Betelgeuse","CW Leonis","Calypso","Capella","Chi Aquarii","Chi Cygni","Daphnis","Delta Ophiuchi","Delta Virginis","Dione","Dust","Earth","Enceladus","Epimetheus","Epsilon Muscae","Epsilon Orionis","Erriapus","Eta Sagittarii","Fomalhaut","Gamma Andromedae","Gamma Crucis","Gamma Eridani","Greip","HR 996","Hati","Helene","Hyperion","Iapetus","Ijiraq","Janus","Jarnsaxa","Jupiter","Kiviuq","Lambda Aquarii","Lambda Velorum","Methone","Mimas","Mu Cephei","Mu Geminorum","Mundilfari","Nu Virginis","Omega Virginis","Omicron Ceti","Paaliaq","Pallene","Pan","Pandora","Phoebe","Pi1 Gruis","Pleiades","Polydeuces","Procyon","Prometheus","R Aquarii","R Cassiopeiae","R Hydrae","R Leo","R Lyrae","RW Leonis Minoris","RX Leporis","Rhea","Rho Persei","S Leporis","Saturn Rings","Saturn","Siarnaq","Sirius","Skathi","Sky","Spica","Star","Sun","Surtur","T Cephei","TX Camelopardalis","Tarqeq","Tarvos","Telesto","Tethys","Thrymr","Titan","Unknown","V Hydrae","VX Sagittarii","W Aquilae","W Hydrae","X Ophiuchi","Ymir","Zeta Orionis"],"instruments":["Cassini Orbiter Visual And Infrared Mapping Spectrometer"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2004-01-01","stop_date":"2017-09-14","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/collection_data_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.751662Z","keywords":["cassini vims","cassini spectra","saturn","saturn satellites","saturn rings","saturn system"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_saturn:context::1.0","title":"Context Collection for the Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of context products relevant to the VIMS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751667Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_saturn:browse_raw::1.0","title":"Browse Collection for the Raw Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of browse products associated with the raw VIMS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/collection_browse_raw.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/collection_browse_raw.xml","scraped_at":"2026-02-25T20:02:10.751672Z","keywords":["cassini vims","cassini spectra","browse products","preview products"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_saturn:xml_schema::1.0","title":"XML Schema Collection for the Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of XML schema used by the archive bundle of Cassini VIMS data from the tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751674Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_vims_saturn:calibration::1.0","title":"Calibration Collection for the Cassini VIMS Observations from the Saturn Tour","description":"This is the collection of calibration products relevant to the VIMS data files obtained during the Cassini tour of the Saturn system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/collection_calibration.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.751677Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u0201 (UCAC2 27214859) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"2002-07-29","stop_date":"2002-07-29","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751684Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751687Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751689Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751695Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0201_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751699Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u0 (Hipparcos 71567) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["0.91m Telescope","Generic Visual High Speed Photometer"],"instrument_hosts":["Kuiper Airborne Observatory"],"data_types":["Data"],"start_date":"1977-03-10","stop_date":"1977-03-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751708Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751716Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751719Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751722Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u0_kao_91cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751724Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751727Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u102a (UCAC2 22794648) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1992-07-08","stop_date":"1992-07-08","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751736Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751745Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751748Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102a_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751751Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u102b (UCAC2 22794648) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1992-07-08","stop_date":"1992-07-08","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751760Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751763Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751765Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751768Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u102b_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751776Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751780Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["ESO-La Silla 2.2m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1992-07-11","stop_date":"1992-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751786Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751791Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751794Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_eso_220cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751797Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751802Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"1992-07-11","stop_date":"1992-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751810Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751813Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751816Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u103_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751819Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751822Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u1052 (UCAC2 22296665) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1988-05-12","stop_date":"1988-05-12","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751828Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751854Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751860Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u1052_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751863Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751866Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751870Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u11 (UCAC2 24610234) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1980-03-20","stop_date":"1980-03-20","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751876Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751879Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u11_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751885Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751888Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751891Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751893Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1980-08-15","stop_date":"1980-08-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751902Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751913Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751922Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751925Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751928Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["ESO-La Silla 1.04m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751937Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_104cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751940Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751948Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751950Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751954Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["ESO-La Silla 3.6m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751963Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_eso_360cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751966Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.751968Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.751971Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1980-08-15","stop_date":"1980-08-15","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751978Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.751983Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u12_lco_250cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.751986Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u134 (UCAC2 23509999) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":["Data"],"start_date":"1995-09-09","stop_date":"1995-09-09","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.751996Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752004Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752007Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752010Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u134_saao_188cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752013Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:document::1.0","title":"Document Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752016Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752018Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:data::1.0","title":"Data Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS.","description":"This collection contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Wide Field Camera 3"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Data"],"start_date":"1996-03-16","stop_date":"1996-03-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752027Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:context::1.0","title":"Context Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752031Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_hst_fos:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752039Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752042Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752050Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1996-03-16","stop_date":"1996-03-16","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752058Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752061Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u137_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752064Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:context::1.0","title":"Context Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752067Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:document::1.0","title":"Document Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752070Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752073Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:data::1.0","title":"Data Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Wide Field Camera 3"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Data"],"start_date":"1996-04-10","stop_date":"1996-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752079Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_hst_fos:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752085Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752088Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752091Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752098Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752101Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u138_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"1996-04-10","stop_date":"1996-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752111Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752114Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752116Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752124Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u13 (Hipparcos 77434) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["3.9m Anglo-Australian Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":["Data"],"start_date":"1981-04-26","stop_date":"1981-04-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752133Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u13_sso_390cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752136Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752139Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752142Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["1.23m Telescope","Generic NICMOS IR Camera"],"instrument_hosts":["Centro Astronomico Hispano-Aleman"],"data_types":["Data"],"start_date":"1997-09-30","stop_date":"1997-09-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752149Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752153Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_caha_123cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752158Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752161Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752163Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752169Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752172Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u144_saao_188cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":["Data"],"start_date":"1997-09-30","stop_date":"1997-09-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752178Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752187Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752189Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752192Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1998-11-06","stop_date":"1998-11-06","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752201Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752204Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Perkins 1.8m Telescope","Generic CCD Camera"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"1998-11-06","stop_date":"1998-11-06","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752212Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752215Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752218Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752221Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u149_lowell_180cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752229Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752255Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752259Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752262Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["SMARTS 1.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752271Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_150cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752279Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752286Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752290Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752294Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752303Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752306Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752309Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752314Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752317Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["ESO-La Silla 1.04m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752323Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_eso_104cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752326Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Swope 1.0m Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752336Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752339Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752347Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752350Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_100cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752353Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752355Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752364Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752373Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752376Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_lco_250cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752379Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752382Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["1.06m Telescope","Generic GaAs High Speed Photometer"],"instrument_hosts":["Pic du Midi de Bigorre"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752388Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752394Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752397Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_106cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752400Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Bernard Lyot 2.0m","Generic InSb High Speed Photometer"],"instrument_hosts":["Pic du Midi de Bigorre"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752407Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752410Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752413Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752416Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_opmt_200cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752421Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752424Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752426Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":["Data"],"start_date":"1982-04-22","stop_date":"1982-04-22","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752435Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752442Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u14_teide_155cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752450Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752453Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752461Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752464Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752467Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u15_mso_190cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u15 (UCAC2 23648038) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["1.9m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Mount Stromlo Observatory"],"data_types":["Data"],"start_date":"1982-05-01","stop_date":"1982-05-01","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752475Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752479Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u16 (UCAC2 23892052) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"1982-06-04","stop_date":"1982-06-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752489Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752497Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752500Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u16_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752503Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752506Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752513Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752516Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u17b (Hipparcos 80841) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Radcliffe 1.88m telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["South African Astronomical Observatory"],"data_types":["Data"],"start_date":"1983-03-24","stop_date":"1983-03-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752525Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u17b_saao_188cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752529Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752532Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752537Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752540Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752543Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Harlan J. Smith 2.7m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752549Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752552Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":["Data"],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752559Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752563Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752568Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_teide_155cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752571Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752576Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752579Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752582Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752588Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752591Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752597Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752600Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752603Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Harlan J. Smith 2.7m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752609Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752612Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752615Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752620Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Hale 5.08m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Palomar Observatory"],"data_types":["Data"],"start_date":"1985-05-24","stop_date":"1985-05-24","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752626Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752650Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u25_palomar_508cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752653Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752657Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752660Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752667Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u28 (UCAC2 22517254) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1986-04-26","stop_date":"1986-04-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752676Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u28_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752680Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752682Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752686Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u2 (UCAC3 148-144064) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Carlos Sanchez 1.55 Telescope","Generic IR High Speed Photometer"],"instrument_hosts":["Observatorio del Teide"],"data_types":["Data"],"start_date":"1977-12-23","stop_date":"1977-12-23","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752692Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752698Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u2_teide_155cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752701Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u34 (UCAC2 22289038) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1987-02-26","stop_date":"1987-02-26","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752710Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752713Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752715Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752718Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u34_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752727Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752730Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752733Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752741Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752749Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752752Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1987-03-30","stop_date":"1987-03-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752758Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752764Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752768Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752771Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752774Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752777Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752782Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752785Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["United Kingdom Infrared Telescope 3.8m","Generic InSb High Speed Photometer"],"instrument_hosts":["Maunakea Observatory"],"data_types":["Data"],"start_date":"1987-03-30","stop_date":"1987-03-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752792Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_maunakea_380cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752794Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Australian National University 2.3m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":["Data"],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752802Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752807Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752810Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752813Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_230cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752816Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752819Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752822Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752827Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["3.9m Anglo-Australian Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Siding Spring Observatory"],"data_types":["Data"],"start_date":"1987-04-02","stop_date":"1987-04-02","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752834Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u36_sso_390cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752837Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752840Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752843Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u5 (UCAC2 25775788) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1978-04-10","stop_date":"1978-04-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752849Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752853Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u5_lco_250cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752858Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752861Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752865Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752870Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u65 (UCAC3 133-382807) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1990-06-21","stop_date":"1990-06-21","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752876Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u65_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752879Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752882Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752885Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752890Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752893Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u83_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u83 (UCAC2 22564036) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1991-06-25","stop_date":"1991-06-25","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752900Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752903Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752905Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u84 (UCAC2 22563790) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["IRTF 3.2m","Generic InSb High Speed Photometer"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"1991-06-28","stop_date":"1991-06-28","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752911Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752914Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u84_irtf_320cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752920Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u9539 (UCAC2 23016546) by the rings and atmosphere of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1993-06-30","stop_date":"1993-06-30","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752928Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752931Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752938Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752940Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9539_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752948Z","keywords":["uranus atmosphere","uranus atmosphere stellar occultation","uranus atmosphere stellar occultation time series","uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope.","description":"This collection contains calibrated and derived data resulting from the occultation of star u9 (UCAC2 25547691) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Irenee du Pont 2.5m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Las Campanas Observatory"],"data_types":["Data"],"start_date":"1979-06-10","stop_date":"1979-06-10","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.752955Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles","digitized strip chart"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.752959Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.752964Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.752967Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u9_lco_250cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.752970Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_support:context::1.0","title":"Context Collection for the Uranus Occultation Support Bundle","description":"This collection identifies the context products of the Uranus occultation support bundle.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.753931Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_support:spice_kernels::1.0","title":"Uranus Occultations SPICE Kernel collection","description":"This collection contains the SPICE SPK kernel which supports Earth-based stellar occultations by the Uranus system.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":["Uranus Rings","Uranus"],"instruments":[],"instrument_hosts":[],"data_types":["SPICE Kernel"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/collection_spice_kernels.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/collection_spice_kernels.xml","scraped_at":"2026-02-25T20:02:10.753935Z","keywords":["Observation Geometry"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_support:document::1.0","title":"Document Collection for the Uranus Occultation Support Bundle.","description":"This collection contains documentation associated with the data bundles of Uranus Earth-based occultations.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753940Z","keywords":["uranus occultation documents","uranus occultation users guide"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_support:data::1.0","title":"Data Collection for the Uranus Occultation Support Bundle.","description":"This collection contains the global occultation ring orbit fits of the rings of Uranus and the associated input files.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":["Uranus Rings"],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.753946Z","keywords":["uranus atmosphere stellar occultation time series","uranus rings","uranus rings model"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_support:xml_schema::1.0","title":"XML Schema Collection for the Uranus System stellar occultations support bundle.","description":"This collection identifies the XML schema products of the archive bundle which supports data bundles of earth-based stellar occultations.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.753949Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:data::2.0","title":"Data Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the data products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Saturn Rings"],"instruments":["Cassini Orbiter Ultraviolet Imaging Spectrograph"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"2005-06-08","stop_date":"2017-06-18","browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.754901Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:context::1.0","title":"Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.754917Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:browse::1.0","title":"Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.754922Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:data::1.0","title":"Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Earth-based Observations of Uranus System Stellar Occultations"],"targets":["Uranus Rings"],"instruments":["Victor Blanco 4.0m Telescope","Generic InSb High Speed Photometer"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1985-05-04","stop_date":"1985-05-04","browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.754929Z","keywords":["uranus rings","uranus rings stellar occultation","uranus rings stellar occultation radial profiles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:xml_schema::1.0","title":"XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.754932Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:uranus_occ_u23_ctio_400cm:document::1.0","title":"Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope","description":"This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.754935Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:data::1.0","title":"Voyager 1 Jupiter Radio Occultation - Raw Open Loop Data Collection","description":"This collection contains raw open loop radio science data from the Voyager 1 Jupiter occultation. Each product includes an original binary data file that contains S- and X-band samples from an open loop receiver along with housekeeping data, an ASCII file containing the housekeeping data extracted from the binary, and a pair of ASCII files containing S- and X-band samples also extracted from the binary. Most files contain 200 seconds of data.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 1 Radio Science Instrumentation","DSS 63 64-m Antenna"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.754980Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:geometry::1.0","title":"Voyager 1 Jupiter Radio Occultation - Geometry Data Collection","description":"This collection contains non-SPICE trajectory and high-gain antenna pointing reconstructions for the radio occultation observations during the Voyager 1 Jupiter encounter.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["Voyager 1 Spacecraft Sensors"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-03-04","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/collection_geometry.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/collection_geometry.xml","scraped_at":"2026-02-25T20:02:10.754985Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:document::1.0","title":"Voyager 1 Jupiter Radio Occultation - Document Collection","description":"This collection contains an archive Software Interface Specification, a mission description, and high-gain antenna reconstruction documentation for the Voyager 1 Jupiter encounter. It also includes, as secondary members, documents describing the format of the binary data files and procedures for extraction of values.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","DSS 63 64-m Antenna","Voyager 1 Radio Science Instrumentation","Voyager 1 Spacecraft Sensors"],"instrument_hosts":["NASA Deep Space Network","Voyager 1"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.754990Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:calib_freq::1.0","title":"Voyager 1 Jupiter Radio Occultation - Frequency Calibration Collection","description":"This collection contains estimates of USO frequency for both Voyager 1 and Voyager 2.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 1 Radio Science Instrumentation","DSS 63 64-m Antenna"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Document"],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/collection_calib_freq.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/collection_calib_freq.xml","scraped_at":"2026-02-25T20:02:10.754994Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:context::1.0","title":"Voyager 1 Radio Science Raw Data Context Collection","description":"This collection contains the context products associated with the Voyager 1 Radio Science raw data bundle. Each product is a secondary member of the collection since it is maintained at the PDS Engineering Node.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 1 Radio Science Instrumentation","DSS 63 64-m Antenna"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Context"],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.754997Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager1_rss_jupiter_raw:browse::1.0","title":"Voyager 1 Jupiter Radio Occultation - Browse Data Collection","description":"This collection contains tables and quick look plots from radio occultation observations during the Voyager 1 Jupiter encounter.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 1 Radio Science Instrumentation","DSS 63 64-m Antenna"],"instrument_hosts":["Voyager 1","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-03-05","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.755022Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:browse::1.0","title":"Voyager 2 Jupiter Radio Occultation - Browse Data Collection","description":"This collection contains tables and quick look plots from radio occultation observations during the Voyager 2 Jupiter encounter.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 2 Radio Science Instrumentation","DSS 14 64-m Antenna"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-07-10","stop_date":"1979-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.755026Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:context::1.0","title":"Voyager 2 Radio Science Raw Data Context Collection","description":"This collection contains the context products associated with the Voyager 2 Radio Science raw data bundle. Each product is a secondary member of the collection since it is maintained at the PDS Engineering Node.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 2 Radio Science Instrumentation","DSS 14 64-m Antenna"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Context"],"start_date":"1979-07-10","stop_date":"1979-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.755030Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:calib_freq::1.0","title":"Voyager 2 Jupiter Radio Occultation - Frequency Calibration Collection","description":"This collection contains estimates of USO frequency for both Voyager 1 and Voyager 2.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 2 Radio Science Instrumentation","DSS 14 64-m Antenna"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Document"],"start_date":"1979-07-10","stop_date":"1979-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/collection_calib_freq.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/collection_calib_freq.xml","scraped_at":"2026-02-25T20:02:10.755034Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:data::1.0","title":"Voyager 2 Jupiter Radio Occultation - Raw Open Loop Data Collection","description":"This collection contains raw open loop radio science data from the Voyager 2 Jupiter occultation. Each product includes an original data record (ODR) that contains S- and X-band samples from an open loop receiver along with housekeeping data, an ASCII file containing the housekeeping data extracted from the ODR, and a pair of ASCII files containing S- and X-band samples also extracted from the ODR. Most files contain 400 seconds of data.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","Voyager 2 Radio Science Instrumentation","DSS 14 64-m Antenna"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-07-10","stop_date":"1979-07-11","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/collection_data.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.755039Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:document::1.0","title":"Voyager 2 Jupiter Radio Occultation - Document Collection","description":"This collection contains an archive Software Interface Specification and a mission description for the Voyager 2 Jupiter encounter. It also includes, as secondary members, documents describing the format of the binary data files and procedures for extraction of values.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["DSN Radio Science Instrumentation","DSS 14 64-m Antenna","Voyager 2 Radio Science Instrumentation","Voyager 2 Spacecraft Sensors"],"instrument_hosts":["NASA Deep Space Network","Voyager 2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.755043Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:voyager2_rss_jupiter_raw:geometry::1.0","title":"Voyager 2 Jupiter Radio Occultation - Geometry Data Collection","description":"This collection contains non-SPICE trajectory and high-gain antenna pointing reconstructions for the radio occultation observations during the Voyager 2 Jupiter encounter.","node":"rms","pds_version":"PDS4","type":"collection","missions":["Voyager Mission"],"targets":["Jupiter"],"instruments":["Voyager 2 Spacecraft Sensors"],"instrument_hosts":["Voyager 2","NASA Deep Space Network"],"data_types":["Data"],"start_date":"1979-03-04","stop_date":"1979-03-05","browse_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/collection_geometry.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/collection_geometry.xml","scraped_at":"2026-02-25T20:02:10.755047Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:context::1.0","title":"Context Collection for the Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the context products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/collection_context.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.755050Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:browse::1.0","title":"Browse Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the browse products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/collection_browse.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.755053Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:xml_schema::1.0","title":"XML Schema Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the XML schema products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/collection_xml_schema.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.755057Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:document::1.0","title":"Document Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS","description":"This collection identifies the document products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.","node":"rms","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/","download_url":null,"label_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/collection_document.xml","source_url":"https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.755060Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} +{"id": "HST-S-WFPC2-4-ASTROM2002-V1.0", "title": "VOLUME 1: SATURN SATELLITE ASTROMETRY WITH WFPC2 1994-2002", "description": "This volume contains ASCII table files giving the positions of various Saturnian satellites in HST images taken during the period 1994-2002.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/ASTROM_xxxx/ASTROM_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:51:48.815041", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S/SA-WFPC2-4-ASTROM2005-V1.0", "title": "SATURN SATELLITE ASTROMETRY WITH WFPC2 1996-2005", "description": "This volume contains ASCII table files giving the positions of various Saturnian satellites in HST images taken during the period 1996-2005.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/ASTROM_xxxx/ASTROM_0101/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:51:49.801767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-J-CIRS-2/3/4-TSDR-V2.0", "title": "CASSINI CIRS JUPITER RAW AND CALIBRATED DATA ARCHIVE", "description": "This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx/COCIRS_0010/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:51:51.804182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-CIRS-2/3/4-TSDR-V4.0", "title": "CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE", "description": "This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx/COCIRS_0401/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:52:08.859259", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-CIRS-2/3/4-TSDR-V2.0", "title": "CASSINI CIRS SATURN RAW AND CALIBRATED DATA ARCHIVE", "description": "This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx_v2/COCIRS_0401/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:53:22.036268", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-CIRS-2/3/4-TSDR-V3.2", "title": "CASSINI CIRS SATURN RAW DATA, CALIBRATED DATA, AND SPECTRAL IMAGE CUBE ARCHIVE", "description": "This volume contains infrared interferograms, spectra, and spectral image cubes from the Cassini CIRS Instrument", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COCIRS_0xxx_v3/COCIRS_0401/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:54:35.241944", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-CIRS-2/3/4-TSDR-V3.1", "title": "CASSINI CIRS SATURN RAW AND CALIBRATED DATA ARCHIVE", "description": "This volume contains infrared interferograms and spectra from the Cassini CIRS Instrument", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COCIRS_1xxx_v2/COCIRS_1007/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:57:38.636245", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-CIRS-2/3/4-REFORMATTED-V1.0", "title": "CASSINI CIRS SATURN REFORMATTED DATA ARCHIVE", "description": "This volume contains infrared interferograms and metadata from the Cassini CIRS Instrument at Saturn. Files have been re-formatted from the original team release for easier access.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COCIRS_5xxx/COCIRS_5401/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:59:13.841646", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-CIRS-2/3/4-REFORMATTED-V1.1", "title": "CASSINI CIRS SATURN REFORMATTED DATA ARCHIVE", "description": "This volume contains infrared interferograms and metadata from the Cassini CIRS Instrument at Saturn. Files have been re-formatted from the original team release for easier access.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COCIRS_5xxx/COCIRS_5502/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T03:59:26.844988", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V1.0", "title": "CASSINI ISS CALIBRATION FILES Volume 1 of 11", "description": "This volume contains a subset of the raw ground calibration images taken by the flight model of the CASSINI Wide-Angle Camera (WACFM) and of the CASSINI Narrow-Angle Camera (NACFM).", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_0xxx/COISS_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:00:34.178292", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.3", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_0xxx/COISS_0011/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:00:44.201660", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V2.0", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data files and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Instrument Science Subsystem cameras.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v2/COISS_0011/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:00:48.226236", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.1", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4.1/COISS_0011/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:00:52.301678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.2", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4.2/COISS_0011/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:00:54.301133", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO_CAL_ISSNA/ISSWA_2_EDR_V4.0", "title": "CASSINI ISS CALIBRATION FILES", "description": "This volume contains the calibration data and calibration software files, algorithms, sample calibrated images and related calibration documentation for Cassini's Imaging Science Subsystem cameras.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_0xxx_v4/COISS_0011/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:00:56.233078", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-E/V/J-ISSNA/ISSWA-2-EDR-V1.0", "title": "VOLUME 1: CASSINI ISS IMAGES 1294561143 - 1351738471", "description": "This volume contains data collected by Cassini's Instrument Science Subsystem cameras.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_1xxx/COISS_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:00:58.241218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-ISSNA/ISSWA-2-EDR-V1.0", "title": "VOLUME 1: CASSINI ISS IMAGES 1454725799 - 1460960370", "description": "This volume contains data collected by Cassini's Instrument Science Subsystem cameras.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_2xxx/COISS_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:01:08.265540", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-ISSNA/ISSWA-5-MIDR-V1.0", "title": "VOLUME 1: CASSINI ISS CARTOGRAPHIC MAP OF PHOEBE", "description": "This volume contains a cartographic map of the Saturn moon PHOEBE. It was generated using data collected by Cassini's Instrument Science Subsystem cameras.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COISS_3xxx/COISS_3001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:05.534330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-RSS-4/5-OCC-V2.0", "title": "VOL 1: CASSINI SATURN RSS RING RADIO OCC 2005-2010", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini RSS radio occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth. Details concerning the production of these profiles can be found in Marouf et al., 1986.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/CORSS_8xxx/CORSS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:23.576233", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-RSS-4/5-OCC-V0.2", "title": "VOL 1: CASSINI SATURN RSS RING RADIO OCCULTS 2005-2008", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini RSS radio occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth. Details concerning the production of these profiles can be found in Marouf et al., 1986.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/CORSS_8xxx_v1/CORSS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:25.568537", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S/J/E/V-SPICE-6-V1.0", "title": "CASSINI SPICE FILES", "description": "This volume contains navigation and ancillary data in the form of SPICE System kernel files for the Cassini spacecraft and instruments. The data on this volume are released at intervals and may not be complete. Consult the release.cat file for information concerning release dates.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COSP_xxxx/COSP_1000/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:27.570487", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-J-UVIS-2-SSB-V1.2", "title": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 1999-007...2001-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:29.590419", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-J-UVIS-2-CUBE-V1.2", "title": "CASSINI UVIS JUPITER RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2001-001...2001-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0002/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:30.652943", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-SPEC-V1.2", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2002-045...2003-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0004/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:32.638217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-SSB-V1.2", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-001...2003-359 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0005/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:33.685928", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.2", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2003-358...2004-140 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0006/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:34.608099", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-SPEC-V1.5", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-140...2005-091 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0007/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:35.611892", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.5", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2004-274...2005-001 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0009/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:37.613079", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CALIB-V1.2", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2005-272...2005-365 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0013/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:03:41.641181", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-002...2013-090 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0042/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:04:10.684927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.3", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the 2013-091...2013-182 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0043/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:04:11.688193", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-S-UVIS-2-CUBE-V1.4", "title": "CASSINI UVIS SATURN RAW DATA ARCHIVE", "description": "This volume contains a collection of observations taken by the UVIS instrument during the Jan 1, 2015...Apr 1, 2015 time period. UVIS data products include the Spatial-Spectral-Image Cube the Image at One Wavelength, the Solar and Stellar Brightness Time Series and the Spectra data products. The DATA_SET_ID value below specifies the data products on this volume.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_0xxx/COUVIS_0050/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:04:18.772113", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-UVIS-HSP-2/4-OCC-V3.0", "title": "VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx/COUVIS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:05:14.985571", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-UVIS-HSP-2/4-OCC-V0.3", "title": "VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2008", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v1/COUVIS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:05:16.968927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-UVIS-2/4-OCC-V2.0", "title": "VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v2.0/COUVIS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:05:18.909964", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-UVIS-2/4-OCC-V2.1", "title": "VOL 1: CASSINI SATURN UVIS RING STELLAR OCCULTS 2005-2017", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini UVIS HSP stellar occultation observations. In each case, the data has binned to a uniform radial scale, calibrated, and used to generate values of normal optical depth. The process includes determining and applying models of the background signal and unocculted star signal as functions of ring plane radius. Details concerning the production of these profiles can be found in Colwell et al., 2010.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COUVIS_8xxx_v2.1/COUVIS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:05:20.908856", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-E/V/J/S-VIMS-2-QUBE-V1.0", "title": "SAMPLE: CASSINI VIMS IMAGE/SPECTRAL CUBES", "description": "This DVD contains Cassini Visual and Infrared Mapping Spectrometer (VIMS) raw cube data, documentation, for all available files with start times (SCET) 1999-01-10T05:40:00.157 through 2000-09-18T13:26:42.517.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COVIMS_0xxx/COVIMS_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:05:22.913030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-VIMS-4/5-OCC-V2.1", "title": "VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2017", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx/COVIMS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:06:58.157314", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-VIMS-4/5-OCC-V0.2", "title": "VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2009", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx_v1/COVIMS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:00.134108", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CO-SR-VIMS-4/5-OCC-V2.0", "title": "VOL 1: CASSINI SATURN VIMS RING STELLAR OCCULTS 2005-2017", "description": "This volume contains radial profiles of the ring system of Saturn generated from Cassini VIMS stellar occultation observations. In each case, the data has binned to a uniform radial scale and used to generate values of normal optical depth.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/COVIMS_8xxx_v2.0/COVIMS_8001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:02.148398", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ESO1M-SR-APPH-4-OCC-V1.0", "title": "VOLUME 1: 1989 28 SGR SATURN RING OCCULTATION PROFILES.", "description": "This volume contains ring occultation data from the 1989 occultation of 28 Sagittarii (28 Sgr) by the rings of Saturn. Included in this volume are six data sets corresponding to observations by six Earth-based telescopes at five observatories: two at the European Southern Observatory, and one each at Mauna Kea, Lick, McDonald and Palomar. The data files are ASCII tables of fully processed and resampled occultation profiles given in ten kilometer increments. The volume also includes ancillary geometry files, browse files in the form of plots, provided in both PDF and PS formats, of both the occultation profiles and geometry files, as well as documentation. Neither raw nor calibration files are available for archiving", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/EBROCC_xxxx/EBROCC_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:04.127483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-CAL-SSI-6-V1.1", "title": "GALILEO CALIBRATION FILES", "description": "This volume, titled Galileo SSI Calibration Files (GO_0001), is a part of the Galileo Solid State Imaging Raw EDR data set which resides on volumes GO_0002 thru GO_0023. Included are all calibration files required to properly decalibration the images obtained from the Galileo SSI Camera system. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== the following types of calibration files: Calibration Slope Files, Dark Current files, Shutter Offset file and Blemish files.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:06.151107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-V/E-SSI-2-REDR-V1.1", "title": "Galileo:Solid State Imaging REDR Data", "description": "This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 'N/A' LAST_IMAGE_TIME = 1990-11-30T22:05:39.077Z FIRST_IMAGE_NUMBER = 00030611.00 LAST_IMAGE_NUMBER = 00598912.00 FIRST_IMAGE_ID = 'N/A' LAST_IMAGE_ID = E1N0900 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0002/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:07.168741", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-A/E-SSI-2-REDR-V1.1", "title": "Galileo:Solid State Imaging REDR Data", "description": "This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 1991-09-06T20:22:12.638Z LAST_IMAGE_TIME = 1992-12-03T15:17:23.512Z FIRST_IMAGE_NUMBER = 00997579.45 LAST_IMAGE_NUMBER = 01643854.00 FIRST_IMAGE_ID = EGG0001 LAST_IMAGE_ID = E2H0466 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0007/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:12.161470", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-A/C-SSI-2-REDR-V1.1", "title": "Galileo:Solid State Imaging REDR Data", "description": "This volume is a part of the Galileo Cruise Operations Solid State Imaging (SSI) Raw EDR data set. VOLUME_DESC = 'Disc of Galileo REDR images' MISSION_PHASE_NAME = CRUISE FIRST_IMAGE_TIME = 1993-07-22T22:35:34.497Z LAST_IMAGE_TIME = 1994-07-22T07:47:02.706Z FIRST_IMAGE_NUMBER = 01973272.00 LAST_IMAGE_NUMBER = 02492218.00 FIRST_IMAGE_ID = EJI0002 LAST_IMAGE_ID = EJZ3063 Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0016/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:21.229079", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J/JSA-SSI-2-REDR-V1.1", "title": "GALILEO IMAGES FROM JUPITER ORBITS 1-3", "description": "This volume, titled Galileo Images From Jupiter Orbits 1-3 (GO_0017), is a part of the Galileo Jupiter Orbital Operations Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0019. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during the first three orbits of the Jupiter Orbital Operations Phase of the mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== Jupiter Pre-Orbit 1 (Jupiter 0) ------------------------------- SCLK range: 346405900 - 349193900 (Optical Navigation-OPNAV) ERT range: 96/155:17:47:18.857 - 96/175:07:41:11.980 Jupiter Orbit 1 (Ganymede 1) ---------------------------- SCLK ranges: 349542152 - 350029800 356000600 - 359198400 (OPNAV) ERT ranges: 96/183-07:38:25.928 - 96/231-13:43:20.690 96/223:02:39:43.300 - 96/237:10:55:15.282 (OPNAV) Jupiter Orbit 2 (Ganymede 2) ---------------------------- SCLK ranges: 359251000 - 359322300 (OPNAV) 359402445 - 360361200 ERT ranges: 96/245:22:26:14.566 - 96/246:10:31:10.512 (OPNAV) 96/255-14:03:53.827 - 96/301-02:37:09.523 Orbit 3 (Callisto 3) -------------------- SCLK ranges: 368211900 - 368992339 372343200 - 374037400 (OPNAV) ERT ranges: 96/316-05:27:12.172 - 96/348-02:11:05.236 96/337:20:50:32.231 - 96/349:18:46:37.142 (OPNAV)", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0017/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:22.170307", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J/JSA-SSI-2-REDR-V1.1", "title": "GALILEO IMAGES FROM JUPITER ORBITS 11 - 17", "description": "This volume, titled Galileo Images From Jupiter Orbits 11 - 17 (GO_0020), is a part of the Galileo Jupiter Orbital Operations and Galileo Europa Mission Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0020. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during three of the Jupiter Orbital Operations phases of the mission and extended Galileo Europa Mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Version 2 of the Galileo SSI volume set has been modified by the PDS Ring-Moon Systems Node Node for PDS3 compliance. No data files have been modified. In addition, (1) Image file names are no longer split across directory boundaries. For example, version 1 file: GO_0017/C3/JUPITER/C036836/9200R.IMG is now: GO_0017/C3/JUPITER/C0368369200R.IMG (2) All uses of Vax/VMS-format file paths have been replaced with Unix-style paths. (3) Numerous errors in the INDEX files and their labels have been fixed. Contents of this volume include: =============================== JUPITER ORBIT 11 EUROPA ======================= SCLK ranges: 420361400 - 420900345 ERT ranges: 97/313-18:06:10 - 97/348-15:22:08 JUPITER ORBIT 12 EUROPA ======================= SCLK ranges: 426117300 - 426273839 ERT ranges: 97/352-08:19:59 - 98/082-02:15:37 JUPITER ORBIT 12 EUROPA TIRE_TRACK ================================== SCLK ranges: 426272849 - 426272856 ERT ranges: 98/026:14:59:26 - 98/080:10:39:12 JUPITER ORBIT 14 EUROPA ======================= SCLK ranges: 440873539 - 441026827 ERT ranges: 98/090-03:50:04 - 98/148-20:59:05 JUPITER ORBIT 15 EUROPA ======================= SCLK ranges: 449841900 - 450111001 ERT ranges: 98/152-22:55:06 - 98/267-09:24:19 JUPITER ORBIT 17 EUROPA ======================= SCLK ranges: 466580845 - 466684900 ERT ranges: 98/270-08:58:01 - 99/026-06:09:21", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx/GO_0020/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:25.179708", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-CAL-SSI-6-V1.0", "title": "GALILEO CALIBRATION FILES", "description": "This volume, titled Galileo SSI Calibration Files,(GO_0001), is a part of the Galileo Solid State Imaging Raw EDR data set which resides on volumes GO_0002 thru GO_0023. Included are all calibration files required to properly decalibration the images obtained from the Galileo SSI Camera system. Contents of this volume include: =============================== the following types of calibration files: Calibration Slope Files, Dark Current files, Shutter Offset file and Blemish files.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:30.243484", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J/JSA-SSI-2-REDR-V1.0", "title": "GALILEO IMAGES FROM JUPITER ORBITS 1-3", "description": "This volume, titled Galileo Images From Jupiter Orbits 1-3 (GO_0017), is a part of the Galileo Jupiter Orbital Operations Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0019. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during the first three orbits of the Jupiter Orbital Operations Phase of the mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== Jupiter Pre-Orbit 1 (Jupiter 0) ------------------------------- SCLK range: 346405900 - 349193900 (Optical Navigation-OPNAV) ERT range: 96/155:17:47:18.857 - 96/175:07:41:11.980 Jupiter Orbit 1 (Ganymede 1) ---------------------------- SCLK ranges: 349542152 - 350029800 356000600 - 359198400 (OPNAV) ERT ranges: 96/183-07:38:25.928 - 96/231-13:43:20.690 96/223:02:39:43.300 - 96/237:10:55:15.282 (OPNAV) Jupiter Orbit 2 (Ganymede 2) ---------------------------- SCLK ranges: 359251000 - 359322300 (OPNAV) 359402445 - 360361200 ERT ranges: 96/245:22:26:14.566 - 96/246:10:31:10.512 (OPNAV) 96/255-14:03:53.827 - 96/301-02:37:09.523 Orbit 3 (Callisto 3) -------------------- SCLK ranges: 368211900 - 368992339 372343200 - 374037400 (OPNAV) ERT ranges: 96/316-05:27:12.172 - 96/348-02:11:05.236 96/337:20:50:32.231 - 96/349:18:46:37.142 (OPNAV)", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0017/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:38.718539", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J/JSA-SSI-2-REDR-V1.0", "title": "GALILEO IMAGES FROM JUPITER ORBITS 11 - 17", "description": "This volume, titled Galileo Images From Jupiter Orbits 11 - 17 (GO_0020), is a part of the Galileo Jupiter Orbital Operations and Galileo Europa Mission Solid State Imaging Raw EDR data set which resides on volumes GO_0017 thru GO_0020. Included are all images of Jupiter, its satellites, stars and calibrations, acquired during three of the Jupiter Orbital Operations phases of the mission and extended Galileo Europa Mission. Each volume of this data set also contains documentation and errata files which support access to the image files. Contents of this volume include: =============================== JUPITER ORBIT 11 EUROPA ======================= SCLK ranges: 420361400 - 420900345 ERT ranges: 97/313-18:06:10 - 97/348-15:22:08 JUPITER ORBIT 12 EUROPA ======================= SCLK ranges: 426117300 - 426273839 ERT ranges: 97/352-08:19:59 - 98/082-02:15:37 JUPITER ORBIT 12 EUROPA TIRE_TRACK ================================== SCLK ranges: 426272849 - 426272856 ERT ranges: 98/026:14:59:26 - 98/080:10:39:12 JUPITER ORBIT 14 EUROPA ======================= SCLK ranges: 440873539 - 441026827 ERT ranges: 98/090-03:50:04 - 98/148-20:59:05 JUPITER ORBIT 15 EUROPA ======================= SCLK ranges: 449841900 - 450111001 ERT ranges: 98/152-22:55:06 - 98/267-09:24:19 JUPITER ORBIT 17 EUROPA ======================= SCLK ranges: 466580845 - 466684900 ERT ranges: 98/270-08:58:01 - 99/026-06:09:21", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/GO_0xxx_v1/GO_0020/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:41.763643", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID11556-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11556", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11556. Principal Investigator: M.W. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1556/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:46.748086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID11559-V1.2", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1559/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:47.746029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID11573-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11573", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11573. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1573/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:48.738082", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFC3-5-ID11630-V1.2", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1630/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:49.741674", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID11656-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11656", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11656. Principal Investigator: M.R. Showalter Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_1656/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:50.741220", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID12003-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2003/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:51.749360", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID12045-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12045", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12045. Principal Investigator: H.B. Hammel Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2045/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:52.776857", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID12119-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12119", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12119. Principal Investigator: A. Simon-Miller Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2119/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:53.829268", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID12237-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12237", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12237. Principal Investigator: W.M. Grundy Target list: 174567-Varda, 2005EF298.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2237/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:54.780148", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID12245-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12245", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12245. Principal Investigator: M.R. Showalter Target list: CUPID, MAB.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2245/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:55.830368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID12436-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12436", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12436. Principal Investigator: M.R. Showalter Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2436/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:56.767769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID12463-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12463", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12463. Principal Investigator: H.B. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2463/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:57.769394", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID12665-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12665", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12665. Principal Investigator: M.R. Showalter Target list: MAB.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2665/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:58.759212", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID12675-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12675", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12675. Principal Investigator: K.S. Noll Target list: NECKLACE-NEBULA, NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2675/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:07:59.755472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID12725-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12725", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12725. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2725/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:00.755838", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID12801-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12801", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12801. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2801/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:01.766317", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID12894-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2894/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:02.768805", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID12897-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12897", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12897. Principal Investigator: M.W. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2897/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:03.790094", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID12980-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12980", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12980. Principal Investigator: K. Tsumura Target list: EUROPA, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_2980/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:04.846467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID13055-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13055", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13055. Principal Investigator: M.R. Showalter Target list: MAB.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3055/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:05.788160", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID13067-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13067", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13067. Principal Investigator: G. Schneider Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3067/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:06.838238", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID13315-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13315", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13315. Principal Investigator: M.W. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3315/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:07.779906", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13404-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13404", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13404. Principal Investigator: W.M. Grundy Target list: 119979, 182933|2000CQ114|2003QW111|2003TJ58|80806.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3404/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:08.811931", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID13414-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13414", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13414. Principal Investigator: M.R. Showalter Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3414/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:09.789468", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID13620-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13620", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13620. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3620/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:10.798822", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID13631-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13631", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13631. Principal Investigator: A. Simon-Miller Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3631/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:11.796074", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13663-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13663", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13663. Principal Investigator: S.D. Benecchi Target list: KBO-G1.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3663/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:12.787583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13664-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13664", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13664. Principal Investigator: S.D. Benecchi Target list: 118378, 119070|1999HG12|2000QN251|2002VV130|2004VE131|2005SE278|2005SF278.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3664/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:13.797096", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID13667-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13667", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13667. Principal Investigator: M.W. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3667/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:14.804676", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13668-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13668", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13668. Principal Investigator: M.W. Buie Target list: ERIS, MAKEMAKE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3668/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:15.839966", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13692-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13692", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13692. Principal Investigator: W.M. Grundy Target list: 1999-RT214, 2000-CQ114|2001-FL185|60458-2000-CM114.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3692/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:16.809602", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID13712-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13712", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13712. Principal Investigator: K.M. Sayanagi Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3712/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:17.849758", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13713-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13713", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13713. Principal Investigator: B. Sicardy Target list: CHARIKLORING.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3713/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:18.898109", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13716-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13716", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13716. Principal Investigator: D.E. Trilling Target list: 2000-FC8, 2000-OB51|2000-PM30|2000-PN30|2011-JX31.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3716/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:19.806473", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID13829-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3829/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:20.809887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13873-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13873", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13873. Principal Investigator: D. Ragozzine Target list: HAUMEA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3873/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:21.813325", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J/U/N-WFC3-5-ID13937-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13937", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13937. Principal Investigator: A. Simon Target list: JUPITER, NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_3937/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:22.817928", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID14042-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14042", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14042. Principal Investigator: Z. Levay Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4042/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:23.816925", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID14044-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14044", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14044. Principal Investigator: I. de Pater Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4044/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:24.834907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID14045-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14045", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14045. Principal Investigator: I. de Pater Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4045/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:25.821431", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID14053-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14053", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14053. Principal Investigator: J.R. Spencer Target list: 2014MU69, 2014PN70.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4053/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:26.860221", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFC3-5-ID14064-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14064", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14064. Principal Investigator: A. Sanchez-Lavega Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4064/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:27.917920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID14113-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14113", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14113. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4113/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:28.858336", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID14217-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14217", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14217. Principal Investigator: M.R. Showalter Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4217/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:29.908153", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J/U-WFC3-5-ID14334-V1.2", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4334/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:30.841987", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID14492-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14492", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14492. Principal Investigator: M.H. Wong Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4492/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:31.832708", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-WFC3-5-ID14499-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14499", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14499. Principal Investigator: Z. Levay Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4499/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:32.853564", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J/U/N-WFC3-5-ID14756-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14756", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14756. Principal Investigator: A. Simon Target list: JUPITER, NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4756/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:33.859683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID14839-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14839", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14839. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_4839/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:34.842578", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID15262-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15262", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15262. Principal Investigator: A. Simon Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx/HSTI1_5262/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:35.846755", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID11556-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11556", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11556. Principal Investigator: M.W. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1556/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:37.876827", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID11559-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1559/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:38.923160", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID11573-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11573", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11573. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1573/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:39.970482", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID11630-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1630/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:40.915046", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID11656-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11656", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11656. Principal Investigator: M.R. Showalter Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_1656/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:41.967265", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID12003-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2003/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:42.886229", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID12045-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12045", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12045. Principal Investigator: H.B. Hammel Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2045/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:43.903054", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID12119-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12119", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12119. Principal Investigator: A. Simon-Miller Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2119/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:44.894783", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID12237-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12237", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12237. Principal Investigator: W.M. Grundy Target list: 174567-Varda, 2005EF298.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2237/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:45.892492", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID12245-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12245", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12245. Principal Investigator: M.R. Showalter Target list: CUPID, MAB.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2245/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:46.890268", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID12436-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12436", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12436. Principal Investigator: M.R. Showalter Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2436/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:47.900273", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID12463-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12463", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12463. Principal Investigator: H.B. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2463/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:48.900654", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID12665-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12665", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12665. Principal Investigator: M.R. Showalter Target list: MAB.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2665/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:49.951729", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID12675-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12675", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12675. Principal Investigator: K.S. Noll Target list: NECKLACE-NEBULA, NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2675/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:50.978527", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID12801-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12801", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12801. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2801/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:51.929685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID12894-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_2894/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:52.973999", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID13055-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13055", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13055. Principal Investigator: M.R. Showalter Target list: MAB.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3055/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:53.926971", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID13067-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13067", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13067. Principal Investigator: G. Schneider Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3067/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:54.909114", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13663-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13663", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13663. Principal Investigator: S.D. Benecchi Target list: KBO-G1.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3663/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:55.923992", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13664-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13664", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13664. Principal Investigator: S.D. Benecchi Target list: 118378, 119070|1999HG12|2000QN251|2002VV130|2004VE131|2005SE278|2005SF278.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3664/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:56.913982", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFC3-5-ID13667-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13667", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13667. Principal Investigator: M.W. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3667/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:57.917531", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13668-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13668", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13668. Principal Investigator: M.W. Buie Target list: ERIS, MAKEMAKE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3668/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:58.930016", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13692-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13692", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13692. Principal Investigator: W.M. Grundy Target list: 1999-RT214, 2000-CQ114|2001-FL185|60458-2000-CM114.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3692/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:08:59.924536", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID13712-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13712", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13712. Principal Investigator: K.M. Sayanagi Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3712/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:00.940871", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13713-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13713", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13713. Principal Investigator: B. Sicardy Target list: CHARIKLORING.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3713/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:01.992168", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13716-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13716", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13716. Principal Investigator: D.E. Trilling Target list: 2000-FC8, 2000-OB51|2000-PM30|2000-PN30|2011-JX31.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3716/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:02.935498", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID13829-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3829/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:03.987725", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID13873-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13873", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13873. Principal Investigator: D. Ragozzine Target list: HAUMEA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_3873/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:05.035046", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID14042-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14042", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14042. Principal Investigator: Z. Levay Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4042/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:05.951240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFC3-5-ID14053-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14053", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14053. Principal Investigator: J.R. Spencer Target list: 2014MU69, 2014PN70.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4053/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:06.937015", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFC3-5-ID14064-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14064", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14064. Principal Investigator: A. Sanchez-Lavega Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4064/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:07.946367", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID14334-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4334/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:08.953836", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID14492-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14492", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14492. Principal Investigator: M.H. Wong Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4492/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:09.946891", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-WFC3-5-ID14499-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14499", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14499. Principal Investigator: Z. Levay Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_4499/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:10.956369", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID15262-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15262", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15262. Principal Investigator: A. Simon Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.0/HSTI1_5262/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:11.955697", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFC3-5-ID11559-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11559", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11559. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_1559/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:14.044517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFC3-5-ID11630-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11630", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11630. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_1630/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:14.997043", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFC3-5-ID14334-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14334", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Camera 3 (WFC3) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14334. Principal Investigator: A. Simon Target list: JUPITER, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTIx_xxxx_v1.1/HSTI1_4334/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:16.044347", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID9296-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9296", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9296. Principal Investigator: H. Ford Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9296/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:18.245288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID9354-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9354/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:19.288292", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-ACS-5-ID9384-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9384", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9384. Principal Investigator: P. James Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9384/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:20.241907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID9385-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9385/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:21.287333", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-ACS-5-ID9391-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9391", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9391. Principal Investigator: M. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9391/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:22.236834", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID9426-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9426", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9426. Principal Investigator: M. Showalter Target list: ADRASTEA, J RINGS|METIS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9426/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:23.245678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID9440-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9440/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:24.262018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID9725-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9725/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:25.252477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID9745-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9745", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9745. Principal Investigator: M.T. Lemmon Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9745/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:26.261109", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID9823-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9823", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9823. Principal Investigator: M.R. Showalter Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9823/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:27.264721", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-ACS-5-ID9975-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9975", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9975. Principal Investigator: P.B. James Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ0_9975/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:28.254423", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10102-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10102", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10102. Principal Investigator: M.R. Showalter Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0102/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:29.263284", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10140-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10140", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10140. Principal Investigator: D. Grodent Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0140/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:30.305449", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID10156-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10156", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10156. Principal Investigator: J.T. Clarke Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0156/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:31.346336", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10192-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10192", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10192. Principal Investigator: E. Karkoschka Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0192/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:32.298167", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-ACS-5-ID10398-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10398", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10398. Principal Investigator: M.R. Showalter Target list: N RINGS, NAIAD|NEPTUNE|THALASSA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0398/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:33.347440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-ACS-5-ID10422-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10422", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10422. Principal Investigator: J.M. Bauer Target list: TRITON.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0422/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:34.262134", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-ACS-5-ID10423-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10423", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10423. Principal Investigator: H.B. Hammel Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0423/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:35.276761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-ACS-5-ID10427-V1.3", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0427/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:36.274311", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10473-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10473", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10473. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0473/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:37.277170", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10502-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10502", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10502. Principal Investigator: J.T. Clarke Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0502/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:38.291153", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID10506-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10506", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10506. Principal Investigator: J.M. Gerard Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0506/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:39.291662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10507-V1.2", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0507/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:40.287992", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-ACS-5-ID10534-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0534/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:41.308970", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-ACS-5-ID10774-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10774", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10774. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0774/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:42.359764", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10782-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0782/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:43.307173", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10783-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10783", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10783. Principal Investigator: A. Simon-Miller Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0783/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:44.355801", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10805-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10805", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10805. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0805/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:45.286292", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-ACS-5-ID10860-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10860", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10860. Principal Investigator: M.E. Brown Target list: 2002UX25, 2003UB313|90482ORCUS|MAKEMAKE|SEDNA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0860/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:46.290635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J/S-ACS-5-ID10862-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: JUPITER, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0862/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:47.303133", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10870-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0870/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:48.308832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10871-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: EUROPA, GANYMEDE|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_0871/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:49.308449", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID11055-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11055", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11055. Principal Investigator: C.R. Proffitt Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1055/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:50.316087", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID11085-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1085/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:51.299356", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID11566-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11566", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11566. Principal Investigator: J.D. Nichols Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1566/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:52.332554", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID11970-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11970", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11970. Principal Investigator: J.T. Clarke Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1970/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:53.368283", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID11984-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11984", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11984. Principal Investigator: J.D. Nichols Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_1984/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:54.320156", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID12003-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2003/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:55.367566", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID12176-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12176", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12176. Principal Investigator: J.D. Nichols Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2176/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:56.318269", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID12395-V1.3", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2395/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:57.320137", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID12601-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2601/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:58.319384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID12660-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12660", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12660. Principal Investigator: J.D. Nichols Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_2660/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:09:59.329406", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID13012-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_3012/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:00.328629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID13051-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13051", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13051. Principal Investigator: J.D. Nichols Target list: CALIBRATION, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx/HSTJ1_3051/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:01.329560", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID9296-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9296", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9296. Principal Investigator: H. Ford Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9296/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:03.340020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID9354-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9354/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:04.386650", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-ACS-5-ID9384-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9384", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9384. Principal Investigator: P. James Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9384/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:05.421903", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID9385-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9385/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:06.376275", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-ACS-5-ID9391-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9391", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9391. Principal Investigator: M. Buie Target list: CALIBRATION, PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9391/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:07.424942", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID9426-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9426", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9426. Principal Investigator: M. Showalter Target list: ADRASTEA, J RINGS|METIS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9426/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:08.342990", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID9440-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9440/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:09.352964", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID9725-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9725/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:10.347797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID9745-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9745", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9745. Principal Investigator: M.T. Lemmon Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9745/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:11.356728", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID9823-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9823", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9823. Principal Investigator: M.R. Showalter Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9823/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:12.351128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-ACS-5-ID9975-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9975", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9975. Principal Investigator: P.B. James Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ0_9975/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:13.354470", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10102-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10102", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10102. Principal Investigator: M.R. Showalter Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0102/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:14.362870", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10140-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10140", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10140. Principal Investigator: D. Grodent Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0140/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:15.384467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID10156-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10156", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10156. Principal Investigator: J.T. Clarke Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0156/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:16.439365", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10192-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10192", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10192. Principal Investigator: E. Karkoschka Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0192/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:17.387933", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-ACS-5-ID10398-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10398", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10398. Principal Investigator: M.R. Showalter Target list: N RINGS, NAIAD|NEPTUNE|THALASSA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0398/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:18.435135", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-ACS-5-ID10422-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10422", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10422. Principal Investigator: J.M. Bauer Target list: TRITON.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0422/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:19.375297", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-ACS-5-ID10423-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10423", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10423. Principal Investigator: H.B. Hammel Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0423/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:20.375279", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-ACS-5-ID10427-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0427/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:21.379809", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10473-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10473", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10473. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0473/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:22.378837", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10502-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10502", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10502. Principal Investigator: J.T. Clarke Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0502/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:23.384251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID10506-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10506", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10506. Principal Investigator: J.M. Gerard Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0506/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:24.378317", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10507-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0507/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:25.402975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-ACS-5-ID10534-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0534/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:26.396155", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-ACS-5-ID10774-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10774", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10774. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0774/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:27.446427", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10782-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0782/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:28.397552", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10783-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10783", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10783. Principal Investigator: A. Simon-Miller Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0783/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:29.444533", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10805-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10805", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10805. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0805/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:30.494636", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID10870-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0870/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:31.400450", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10871-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: EUROPA, GANYMEDE|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_0871/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:32.407681", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID11055-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11055", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11055. Principal Investigator: C.R. Proffitt Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1055/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:33.410137", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID11085-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1085/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:34.405930", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID11566-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11566", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11566. Principal Investigator: J.D. Nichols Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1566/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:35.422026", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID11970-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11970", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11970. Principal Investigator: J.T. Clarke Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1970/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:36.418244", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID11984-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11984", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11984. Principal Investigator: J.D. Nichols Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_1984/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:37.422513", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID12003-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12003", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12003. Principal Investigator: H.B. Hammel Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2003/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:38.455782", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID12176-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12176", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12176. Principal Investigator: J.D. Nichols Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2176/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:39.506394", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID12395-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2395/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:40.455042", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID12601-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2601/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:41.501773", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID12660-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12660", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12660. Principal Investigator: J.D. Nichols Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_2660/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:42.425693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-ACS-5-ID13012-V1.0", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.0/HSTJ1_3012/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:43.424989", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-ACS-5-ID10427-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_0427/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:45.439067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-ACS-5-ID10507-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10507", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10507. Principal Investigator: D. Grodent Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_0507/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:46.431454", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID12395-V1.1", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.1/HSTJ1_2395/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:47.436179", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-ACS-5-ID10427-V1.2", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10427", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10427. Principal Investigator: H.A. Weaver Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.2/HSTJ1_0427/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:49.476677", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-ACS-5-ID12395-V1.2", "title": "HST/ACS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12395", "description": "This volume contains JPEG and TIFF representations of data from the Advanced Camera for Surveys (ACS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12395. Principal Investigator: D.A. Golimowski Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTJx_xxxx_v1.2/HSTJ1_2395/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:50.518505", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-NICMOS-5-ID7176-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7176", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7176. Principal Investigator: B.A. SMITH Target list: CALIBRATION, MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7176/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:52.608109", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-NICMOS-5-ID7178-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7178", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7178. Principal Investigator: B.A. SMITH Target list: S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7178/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:53.664988", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-NICMOS-5-ID7179-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7179", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7179. Principal Investigator: B.A. SMITH Target list: CALIBRATION, ENCELADUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7179/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:54.613707", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-NICMOS-5-ID7180-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7180", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7180. Principal Investigator: B.A. Smith Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7180/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:55.659158", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-NICMOS-5-ID7181-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7181", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7181. Principal Investigator: B.A. SMITH Target list: U RINGS, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7181/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:56.711982", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-NICMOS-5-ID7182-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7182", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7182. Principal Investigator: B.A. SMITH Target list: NEPTUNE, PROTEUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7182/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:57.634743", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-NICMOS-5-ID7183-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7183", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7183. Principal Investigator: B.A. SMITH Target list: PUCK, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7183/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:58.629399", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-NICMOS-5-ID7223-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7223", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7223. Principal Investigator: R. TERRILE Target list: CHARON.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7223/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:10:59.627497", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-NICMOS-5-ID7241-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7241", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7241. Principal Investigator: B.A. SMITH Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7241/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:00.639302", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-NICMOS-5-ID7242-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7242", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7242. Principal Investigator: B.A. SMITH Target list: CALIBRATION, NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7242/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:01.630772", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-NICMOS-5-ID7243-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7243", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7243. Principal Investigator: R. Terrile Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7243/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:02.637255", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-NICMOS-5-ID7244-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7244", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7244. Principal Investigator: R. Terrile Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7244/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:03.643511", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-NICMOS-5-ID7319-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7319", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7319. Principal Investigator: J. Goguen Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7319/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:04.672450", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-NICMOS-5-ID7324-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7324/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:05.723781", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-NICMOS-5-ID7429-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7429/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:06.668384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-NICMOS-5-ID7445-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7445", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7445. Principal Investigator: R. BEEBE Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7445/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:08.025419", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-NICMOS-5-ID7818-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7818", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7818. Principal Investigator: M. BUIE Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7818/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:08.650498", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-NICMOS-5-ID7823-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7823", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7823. Principal Investigator: M. Tomasko Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7823/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:09.660843", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-NICMOS-5-ID7885-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7885", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7885. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_7885/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:10.664438", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-NICMOS-5-ID9354-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9354/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:11.659720", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-NICMOS-5-ID9355-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9355", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9355. Principal Investigator: E. Karkoschka Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9355/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:12.670409", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-NICMOS-5-ID9904-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9904", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9904. Principal Investigator: W.B. Sparks Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN0_9904/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:13.666220", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-NICMOS-5-ID10161-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10161", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10161. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_0161/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:14.655637", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-NICMOS-5-ID10786-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10786", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10786. Principal Investigator: M.W. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_0786/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:15.685429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-NICMOS-5-ID11118-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1118/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:16.736939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-NICMOS-5-ID11190-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11190", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11190. Principal Investigator: L.M. Trafton Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1190/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:17.678680", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-NICMOS-5-ID11498-V1.0", "title": "HST/NICMOS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498", "description": "This volume contains JPEG and TIFF representations of data from the Near Infrared Camera and Multi-Object Spectrometer (NICMOS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTNx_xxxx/HSTN1_1498/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:18.728884", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID6854-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_6854/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:20.674509", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7308-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7308/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:21.679922", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7309-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7309/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:22.686903", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID7316-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7316/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:23.682277", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7317-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7317/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:24.688831", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID7439-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7439/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:25.688040", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7444-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7444/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:26.698412", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7583-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7583/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:27.748612", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-L/J/S-STIS-5-ID7717-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON, S RINGS, SATURN, TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7717/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:28.694171", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7769-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7769/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:29.735006", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7939-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_7939/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:30.790284", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8108-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8108/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:31.710288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID8117-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8117", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8117. Principal Investigator: J. Trauger Target list: SATURN, TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8117/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:32.700621", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID8158-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8158/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:33.708670", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8169-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8169/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:34.723623", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8171-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8171/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:35.716066", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8224-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8224/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:36.709347", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8657-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8657", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8657. Principal Investigator: J. Clarke Target list: CALIBRATION, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8657/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:37.713643", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J/S/U/N-STIS-5-ID8661-V1.3", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_8661/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:38.752076", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID9035-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9035/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:39.794844", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID9112-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9112", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9112. Principal Investigator: D. Cruikshank Target list: DIONE, FLATFIELD|S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9112/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:40.747373", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9119-V1.3", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9119/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:41.797499", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-STIS-5-ID9330-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9330", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9330. Principal Investigator: E. Karkoschka Target list: CALIBRATION, FLATFIELD|NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9330/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:42.722316", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9440-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9440/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:43.731023", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9685-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO0_9685/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:44.731531", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID10083-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_0083/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:45.739404", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID11649-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11649", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11649. Principal Investigator: J.M. Gerard Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_1649/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:46.729623", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID12041-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12041", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12041. Principal Investigator: J.C. Green Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2041/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:47.737543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID12235-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12235", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12235. Principal Investigator: J.M. Gerard Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2235/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:48.742504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID12239-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2239/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:49.762229", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID12244-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12244", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12244. Principal Investigator: J. Saur Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2244/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:50.818685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID12478-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2478/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:51.756611", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID12601-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12601", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12601. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2601/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:52.807225", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID12883-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2883/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:53.753939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID12894-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2894/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:54.752366", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID12900-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12900", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12900. Principal Investigator: E. Young Target list: FLATFIELD, TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_2900/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:55.762607", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID13012-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3012/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:56.768741", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13035-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13035", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13035. Principal Investigator: S.V. Badman Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3035/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:57.770449", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13040-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13040", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13040. Principal Investigator: J. Saur Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3040/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:58.766963", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13328-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13328", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13328. Principal Investigator: J.D. Nichols Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3328/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:11:59.767110", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13336-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13336", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13336. Principal Investigator: L. Roth Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3336/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:00.784608", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID13396-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13396", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13396. Principal Investigator: S.V. Badman Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3396/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:01.827387", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13619-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13619", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13619. Principal Investigator: L. Roth Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3619/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:02.782290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13620-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13620", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13620. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3620/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:03.816298", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13679-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3679/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:04.866836", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID13694-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3694/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:05.778557", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-STIS-5-ID13736-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3736/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:06.781313", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13805-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3805/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:07.801825", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13829-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_3829/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:08.797824", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID14036-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14036", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14036. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4036/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:09.791215", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID14105-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14105", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14105. Principal Investigator: J.D. Nichols Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4105/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:10.806483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID14112-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14112", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14112. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4112/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:11.794956", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID14113-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14113", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14113. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4113/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:12.829741", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID14267-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14267", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14267. Principal Investigator: L. Lamy Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4267/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:13.880927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID14795-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14795", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14795. Principal Investigator: F. Crary Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4795/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:14.824970", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID14891-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14891", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14891. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4891/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:15.876505", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID14903-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14903", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14903. Principal Investigator: L. Roth Target list: EUROPA, IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4903/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:16.813464", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID14930-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14930", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14930. Principal Investigator: W.B. Sparks Target list: CALIBRATION, EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4930/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:17.797960", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID14931-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 14931", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 14931. Principal Investigator: L.B. Jaffel Target list: SATURN, TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_4931/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:18.804497", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID15371-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15371", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15371. Principal Investigator: J.W. MacKenty Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_5371/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:19.807598", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-STIS-5-ID15380-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 15380", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 15380. Principal Investigator: L. Lamy Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx/HSTO1_5380/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:20.812433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID6854-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_6854/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:22.812585", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7308-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7308/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:23.834783", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7309-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7309/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:24.889441", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID7316-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7316/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:25.836021", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7317-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7317/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:26.885029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID7439-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7439/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:27.824546", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7444-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7444/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:28.839066", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7583-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7583/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:29.839365", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7769-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7769/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:30.836530", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7939-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_7939/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:31.848750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8108-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8108/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:32.839948", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID8158-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8158/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:33.835281", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8169-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8169/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:34.858520", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8171-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8171/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:35.894096", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8224-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8224/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:36.849142", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8661-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_8661/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:37.898173", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID9035-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9035/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:38.945817", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9119-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9119/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:39.852402", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9440-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9440/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:40.877835", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9685-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO0_9685/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:41.859944", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID10083-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_0083/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:42.866445", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID12239-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2239/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:43.868093", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID12478-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2478/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:44.872250", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID12883-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2883/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:45.875758", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID12894-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_2894/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:46.906732", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID13012-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3012/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:47.957972", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13679-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3679/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:48.904639", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID13694-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3694/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:49.955829", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-STIS-5-ID13736-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3736/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:50.883954", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13805-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3805/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:51.891814", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13829-V1.0", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.0/HSTO1_3829/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:52.898905", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID6854-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6854", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6854. Principal Investigator: J. Trauger Target list: SATURN, TETHYS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_6854/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:54.896995", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7308-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7308/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:55.898382", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7309-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7309", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7309. Principal Investigator: J. Gerard Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7309/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:56.904630", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID7316-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7316", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7316. Principal Investigator: K. Noll Target list: DIONE, ENCELADUS|FLATFIELD|RHEA|TETHYS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7316/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:57.918716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7317-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7317", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7317. Principal Investigator: K. Noll Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7317/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:58.969818", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID7439-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7439", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7439. Principal Investigator: G. Ballester Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7439/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:12:59.914541", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7444-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7444", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7444. Principal Investigator: J. Spencer Target list: FLATFIELD, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7444/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:00.964049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7583-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7583", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7583. Principal Investigator: F. ROESLER Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7583/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:01.910960", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7769-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7769", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7769. Principal Investigator: R. Prange Target list: EUROPA, IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7769/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:02.910502", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID7939-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7939", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7939. Principal Investigator: W. Moos Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_7939/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:03.916147", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8108-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8108", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8108. Principal Investigator: C. Emerich Target list: CALIBRATION, EUROPA|IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8108/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:04.919408", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID8158-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8158", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8158. Principal Investigator: R. Prange Target list: ENCELADUS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8158/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:05.929841", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8169-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: ACQ-ECLPSE, CALIBRATION|EUROPA|FLATFIELD|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8169/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:06.926647", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8171-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8171", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8171. Principal Investigator: J. Clarke Target list: CALIBRATION, EUROPA|GANYMEDE|IO|JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8171/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:07.922250", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8224-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8224", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8224. Principal Investigator: M. McGrath Target list: EUROPA, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8224/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:08.928886", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8661-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_8661/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:09.985732", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID9035-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9035", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9035. Principal Investigator: E. Karkoschka Target list: FLATFIELD, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9035/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:10.928680", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9119-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9119/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:11.973665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9440-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9440", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9440. Principal Investigator: J. Spencer Target list: EUROPA, IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9440/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:13.024875", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9685-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9685", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9685. Principal Investigator: R. Elsner Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO0_9685/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:13.947520", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID10083-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10083", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10083. Principal Investigator: J.T. Clarke Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_0083/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:14.948747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID12239-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12239", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12239. Principal Investigator: G.E. Ballester Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2239/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:15.956446", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID12478-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12478", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12478. Principal Investigator: J.N. Cuzzi Target list: DIONE, RHEA|S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2478/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:16.947097", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID12883-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12883", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12883. Principal Investigator: D. Grodent Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2883/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:17.955755", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID12894-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 12894", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 12894. Principal Investigator: L. Sromovsky Target list: FLATFIELD, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_2894/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:18.944704", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-STIS-5-ID13012-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13012", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13012. Principal Investigator: L. Lamy Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3012/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:19.947747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13679-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13679", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13679. Principal Investigator: L. Roth Target list: EUROPA, GANYMEDE|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3679/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:20.987429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-STIS-5-ID13694-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13694", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13694. Principal Investigator: A.R. Hendrix Target list: DIONE, ENCELADUS|MIMAS|RHEA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3694/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:22.030080", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-STIS-5-ID13736-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13736", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13736. Principal Investigator: E.R. Schindhelm Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3736/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:22.982489", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13805-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13805", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13805. Principal Investigator: K.D. Retherford Target list: EUROPA, IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3805/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:24.034044", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID13829-V1.1", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 13829", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 13829. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.1/HSTO1_3829/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:24.956104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID8661-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8661", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8661. Principal Investigator: R. Yelle Target list: ENCELADUS, IO|JUPITER|NEPTUNE|SATURN|TITANIA|TRITON|URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.2/HSTO0_8661/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:26.985343", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-STIS-5-ID9119-V1.2", "title": "HST/STIS OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9119", "description": "This volume contains JPEG representations of data from the Space Telescope Imaging Spectrograph (STIS) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9119. Principal Investigator: J. Spencer Target list: IO, PROMETHEUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTOx_xxxx_v1.2/HSTO0_9119/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:27.976127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5167-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5167", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5167. Principal Investigator: T. LAURENCE Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5167/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:29.967187", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5216-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5216", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5216. Principal Investigator: J.T. Trauger Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5216/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:30.973798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5217-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5217", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5217. Principal Investigator: J.T. Trauger Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5217/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:31.996143", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5218-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5218", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5218. Principal Investigator: J.T. Trauger Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5218/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:33.042842", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5219-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5219", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5219. Principal Investigator: J.T. Trauger Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5219/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:33.992303", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID5220-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5220", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5220. Principal Investigator: J.T. Trauger Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5220/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:35.043930", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID5221-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5221", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5221. Principal Investigator: J.T. Trauger Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5221/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:35.980552", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5313-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5313", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5313. Principal Investigator: R. Beebe Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5313/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:36.992942", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID5321-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5321", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5321. Principal Investigator: K. Seidelmann Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5321/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:37.989106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5392-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5392", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5392. Principal Investigator: J.R. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5392/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:38.988788", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5508-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5508", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5508. Principal Investigator: P.H. Smith Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5508/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:39.997068", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5640-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5640", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5640. Principal Investigator: H.A. Weaver Target list: JUPITER, SHOEMAKER LEVY 9.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5640/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:40.996062", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5642-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5642", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5642. Principal Investigator: A. Storrs Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5642/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:42.002540", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5776-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5776", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5776. Principal Investigator: R. Beebe Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5776/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:43.010211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5782-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5782", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5782. Principal Investigator: B. Amanda Target list: S RINGS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5782/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:44.066000", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5824-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5824", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5824. Principal Investigator: A.S. Bosh Target list: S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5824/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:45.004791", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5828-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5828", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5828. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5828/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:46.050544", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID5831-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5831", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5831. Principal Investigator: H. Hammel Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5831/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:47.007173", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5836-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5836", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5836. Principal Investigator: P. Nicholson Target list: S RINGS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5836/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:48.009598", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5837-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5837", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5837. Principal Investigator: K.S. Noll Target list: EUROPA, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_5837/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:49.014275", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6009-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6009", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6009. Principal Investigator: R. Beebe Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6009/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:50.022641", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6025-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6025", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6025. Principal Investigator: M. MCGRATH Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6025/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:51.022394", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6028-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6028", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6028. Principal Investigator: J. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6028/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:52.024248", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6029-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6029", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6029. Principal Investigator: J. Spencer Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6029/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:53.020998", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S/U-WFPC2-5-ID6030-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6030", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6030. Principal Investigator: M. Tomasko Target list: S RINGS, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6030/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:54.033998", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6141-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6141", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6141. Principal Investigator: R. Yelle Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6141/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:55.071739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6145-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6145", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6145. Principal Investigator: P. Feldman Target list: IO, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6145/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:56.114664", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6215-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6215", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6215. Principal Investigator: J. Trauger Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6215/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:57.063687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6216-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6216", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6216. Principal Investigator: J. Trauger Target list: S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6216/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:58.111926", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6218-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6218", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6218. Principal Investigator: J. Trauger Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6218/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:13:59.045883", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID6219-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6219", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6219. Principal Investigator: J. Trauger Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6219/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:00.037118", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6295-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6295", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6295. Principal Investigator: J. Caldwell Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6295/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:01.044559", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6315-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6315", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6315. Principal Investigator: R. Yelle Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6315/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:02.051598", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6328-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6328", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6328. Principal Investigator: J. Caldwell Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6328/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:03.051460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6452-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6452", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6452. Principal Investigator: R. BEEBE Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6452/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:04.050496", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6509-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6509", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6509. Principal Investigator: K. RAGES Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6509/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:05.050803", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6648-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6648", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6648. Principal Investigator: J.C.M. GERARD Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6648/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:06.070610", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID6650-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6650", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6650. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6650/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:07.123952", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6662-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6662", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6662. Principal Investigator: J.C.M. GERARD Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6662/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:08.071766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6733-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6733", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6733. Principal Investigator: E. YOUNG Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6733/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:09.122549", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6743-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6743", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6743. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6743/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:10.064439", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6752-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6752", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6752. Principal Investigator: J. Goguen Target list: CALLISTO, EUROPA|GANYMEDE|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6752/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:11.068512", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID6753-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6753", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6753. Principal Investigator: P.K. Seidelmann Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6753/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:12.067783", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6774-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6774", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6774. Principal Investigator: J. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6774/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:13.066254", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6803-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6803", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6803. Principal Investigator: T. Denk Target list: IAPETUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6803/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:14.068798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6806-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6806", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6806. Principal Investigator: R.G. FRENCH Target list: PROMETHEUS, S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6806/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:15.071734", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID6818-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6818", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6818. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6818/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:16.073384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6842-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6842", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6842. Principal Investigator: J. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6842/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:17.087002", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID6846-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6846", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6846. Principal Investigator: H. Hammel Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6846/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:18.129546", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6853-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6853", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6853. Principal Investigator: J. Trauger Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_6853/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:19.083873", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID7308-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7308/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:20.129981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID7321-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7321", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7321. Principal Investigator: M.T. LEMMON Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7321/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:21.177746", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID7324-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7324/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:22.096783", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID7427-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7427", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7427. Principal Investigator: R.G. French Target list: PROMETHEUS, S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7427/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:23.095337", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID7429-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7429/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:24.095410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID7430-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7430", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7430. Principal Investigator: R.A. WEST Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7430/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:25.097117", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID7589-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7589", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7589. Principal Investigator: J. CALDWELL Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7589/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:26.107302", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID7616-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7616", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7616. Principal Investigator: R. Beebe Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7616/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:27.113475", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-L/J/S-WFPC2-5-ID7717-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON|SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_7717/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:28.103147", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID8148-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8148", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8148. Principal Investigator: G. Orton Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8148/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:29.141412", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID8169-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8169/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:30.194745", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID8398-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8398", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8398. Principal Investigator: R. French Target list: PROMETHEUS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8398/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:31.139053", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID8405-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8405", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8405. Principal Investigator: K. Noll Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8405/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:32.192145", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-WFPC2-5-ID8577-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8577", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8577. Principal Investigator: P. James Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8577/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:33.118146", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-WFPC2-5-ID8579-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8579", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8579. Principal Investigator: M. Showalter Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8579/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:34.119350", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID8580-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8580", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8580. Principal Investigator: E. Young Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8580/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:35.117901", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFPC2-5-ID8634-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8634", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8634. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8634/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:36.122408", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID8660-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8660", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8660. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8660/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:37.126544", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID8680-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8680", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8680. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8680/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:38.127702", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID8802-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8802", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8802. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8802/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:39.127288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID8871-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8871", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8871. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_8871/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:40.157174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID9235-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9235", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9235. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9235/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:41.202555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9256-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9256", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9256. Principal Investigator: J. Biretta Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9256/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:42.151474", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9341-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9341", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9341. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9341/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:43.201329", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID9344-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9344", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9344. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9344/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:44.133233", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9354-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9354/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:45.141626", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9385-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9385/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:46.137151", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID9393-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9393", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9393. Principal Investigator: L. Sromovsky Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9393/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:47.151747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID9725-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9725/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:48.163468", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9809-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9809", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9809. Principal Investigator: R.G. French Target list: PROMETHEUS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU0_9809/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:49.151473", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFPC2-5-ID10170-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10170", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10170. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0170/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:50.154331", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID10357-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10357", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10357. Principal Investigator: A.J. Verbiscer Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0357/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:51.158704", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID10468-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10468", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10468. Principal Investigator: E. Karkoschka Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0468/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:52.216222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFPC2-5-ID10534-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0534/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:53.163796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID10782-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0782/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:54.211874", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-P-WFPC2-5-ID10786-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10786", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10786. Principal Investigator: M.W. Buie Target list: PLUTO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0786/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:55.258205", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-X-WFPC2-5-ID10860-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10860", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10860. Principal Investigator: M.E. Brown Target list: HAUMEA, QUAOAR.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0860/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:56.164216", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID10862-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0862/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:57.174548", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID10870-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0870/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:58.177453", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID10871-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_0871/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:14:59.169108", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11085-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1085/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:00.176556", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11096-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11096", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11096. Principal Investigator: K. Noll Target list: IO, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1096/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:01.199932", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11102-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11102", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11102. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1102/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:02.177067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID11118-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1118/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:03.232769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFPC2-5-ID11156-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11156", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11156. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1156/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:04.271196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID11292-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11292", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11292. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1292/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:05.219777", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11310-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11310", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11310. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1310/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:06.267814", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11498-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1498/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:07.192375", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID11956-V1.1", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11956", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11956. Principal Investigator: K.S. Noll Target list: TITAN, UNK.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx/HSTU1_1956/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:08.209827", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5167-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5167", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5167. Principal Investigator: T. LAURENCE Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5167/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:10.344573", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5216-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5216", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5216. Principal Investigator: J.T. Trauger Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5216/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:11.326710", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5217-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5217", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5217. Principal Investigator: J.T. Trauger Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5217/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:12.348258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5218-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5218", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5218. Principal Investigator: J.T. Trauger Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5218/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:13.347227", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5219-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5219", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5219. Principal Investigator: J.T. Trauger Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5219/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:14.339594", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID5220-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5220", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5220. Principal Investigator: J.T. Trauger Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5220/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:15.347308", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID5221-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5221", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5221. Principal Investigator: J.T. Trauger Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5221/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:16.349979", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5313-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5313", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5313. Principal Investigator: R. Beebe Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5313/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:17.381797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID5321-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5321", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5321. Principal Investigator: K. Seidelmann Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5321/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:18.440702", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5392-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5392", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5392. Principal Investigator: J.R. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5392/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:19.376029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5508-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5508", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5508. Principal Investigator: P.H. Smith Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5508/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:20.426449", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5640-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5640", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5640. Principal Investigator: H.A. Weaver Target list: JUPITER, SHOEMAKER LEVY 9.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5640/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:21.370838", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5642-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5642", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5642. Principal Investigator: A. Storrs Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5642/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:22.370516", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5776-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5776", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5776. Principal Investigator: R. Beebe Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5776/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:23.367843", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5782-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5782", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5782. Principal Investigator: B. Amanda Target list: S RINGS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5782/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:24.375887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5824-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5824", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5824. Principal Investigator: A.S. Bosh Target list: S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5824/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:25.388053", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5828-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5828", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5828. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5828/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:26.380399", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID5831-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5831", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5831. Principal Investigator: H. Hammel Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5831/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:27.390947", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID5836-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5836", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5836. Principal Investigator: P. Nicholson Target list: S RINGS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5836/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:28.410543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID5837-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 5837", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 5837. Principal Investigator: K.S. Noll Target list: EUROPA, GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_5837/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:29.448476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6009-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6009", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6009. Principal Investigator: R. Beebe Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6009/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:30.504372", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6025-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6025", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6025. Principal Investigator: M. MCGRATH Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6025/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:31.434219", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6028-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6028", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6028. Principal Investigator: J. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6028/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:32.484397", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6029-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6029", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6029. Principal Investigator: J. Spencer Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6029/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:33.420200", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S/U-WFPC2-5-ID6030-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6030", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6030. Principal Investigator: M. Tomasko Target list: S RINGS, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6030/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:34.414249", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6141-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6141", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6141. Principal Investigator: R. Yelle Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6141/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:35.413472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6145-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6145", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6145. Principal Investigator: P. Feldman Target list: IO, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6145/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:36.418869", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6215-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6215", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6215. Principal Investigator: J. Trauger Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6215/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:37.425563", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6216-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6216", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6216. Principal Investigator: J. Trauger Target list: S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6216/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:38.438170", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6218-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6218", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6218. Principal Investigator: J. Trauger Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6218/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:39.428876", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID6219-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6219", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6219. Principal Investigator: J. Trauger Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6219/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:40.455218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6295-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6295", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6295. Principal Investigator: J. Caldwell Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6295/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:41.501287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6315-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6315", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6315. Principal Investigator: R. Yelle Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6315/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:42.446117", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6328-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6328", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6328. Principal Investigator: J. Caldwell Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6328/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:43.492906", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6452-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6452", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6452. Principal Investigator: R. BEEBE Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6452/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:44.446290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6509-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6509", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6509. Principal Investigator: K. RAGES Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6509/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:45.448688", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6648-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6648", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6648. Principal Investigator: J.C.M. GERARD Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6648/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:46.451982", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID6650-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6650", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6650. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6650/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:47.457581", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6662-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6662", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6662. Principal Investigator: J.C.M. GERARD Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6662/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:48.463005", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6733-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6733", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6733. Principal Investigator: E. YOUNG Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6733/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:49.467434", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6743-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6743", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6743. Principal Investigator: J.T. CLARKE Target list: IO, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6743/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:50.465160", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6752-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6752", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6752. Principal Investigator: J. Goguen Target list: CALLISTO, EUROPA|GANYMEDE|IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6752/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:51.471617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID6753-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6753", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6753. Principal Investigator: P.K. Seidelmann Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6753/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:52.511329", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6774-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6774", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6774. Principal Investigator: J. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6774/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:53.552189", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6803-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6803", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6803. Principal Investigator: T. Denk Target list: IAPETUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6803/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:54.502535", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID6806-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6806", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6806. Principal Investigator: R.G. FRENCH Target list: PROMETHEUS, S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6806/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:55.551834", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID6818-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6818", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6818. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6818/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:56.485277", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6842-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6842", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6842. Principal Investigator: J. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6842/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:57.498088", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID6846-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6846", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6846. Principal Investigator: H. Hammel Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6846/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:58.502429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID6853-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 6853", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 6853. Principal Investigator: J. Trauger Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_6853/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:15:59.501765", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID7308-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7308", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7308. Principal Investigator: J. Clarke Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7308/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:00.502237", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID7321-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7321", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7321. Principal Investigator: M.T. LEMMON Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7321/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:01.508211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID7324-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7324", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7324. Principal Investigator: L. SROMOVSKY Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7324/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:02.511708", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID7427-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7427", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7427. Principal Investigator: R.G. French Target list: PROMETHEUS, S RINGS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7427/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:03.517930", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID7429-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7429", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7429. Principal Investigator: M. Tomasko Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7429/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:04.577871", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID7430-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7430", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7430. Principal Investigator: R.A. WEST Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7430/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:05.531317", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID7589-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7589", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7589. Principal Investigator: J. CALDWELL Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7589/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:06.562715", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID7616-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7616", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7616. Principal Investigator: R. Beebe Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7616/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:07.613713", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-L/J/S-WFPC2-5-ID7717-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 7717", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 7717. Principal Investigator: J. Caldwell Target list: JUPITER, MOON|SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_7717/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:08.540693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID8148-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8148", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8148. Principal Investigator: G. Orton Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8148/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:09.550639", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID8169-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8169", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8169. Principal Investigator: F. Bagenal Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8169/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:10.554854", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID8398-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8398", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8398. Principal Investigator: R. French Target list: PROMETHEUS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8398/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:11.538330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID8405-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8405", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8405. Principal Investigator: K. Noll Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8405/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:12.548174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-WFPC2-5-ID8577-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8577", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8577. Principal Investigator: P. James Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8577/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:13.548679", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-M-WFPC2-5-ID8579-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8579", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8579. Principal Investigator: M. Showalter Target list: MARS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8579/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:14.563086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID8580-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8580", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8580. Principal Investigator: E. Young Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8580/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:15.577735", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFPC2-5-ID8634-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8634", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8634. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8634/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:16.628760", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID8660-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8660", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8660. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8660/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:17.571691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID8680-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8680", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8680. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8680/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:18.620405", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID8802-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8802", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8802. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8802/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:19.667106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID8871-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 8871", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 8871. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_8871/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:20.593655", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID9235-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9235", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9235. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9235/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:21.578609", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9256-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9256", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9256. Principal Investigator: J. Biretta Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9256/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:22.591864", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9341-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9341", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9341. Principal Investigator: R. French Target list: PANDORA, PROMETHEUS|SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9341/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:23.590530", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID9344-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9344", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9344. Principal Investigator: H. Hammel Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9344/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:24.602643", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9354-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9354", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9354. Principal Investigator: E. Karkoschka Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9354/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:25.602482", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9385-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9385", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9385. Principal Investigator: M. Lemmon Target list: TITAN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9385/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:26.614150", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-N-WFPC2-5-ID9393-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9393", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9393. Principal Investigator: L. Sromovsky Target list: NEPTUNE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9393/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:27.646107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID9725-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9725", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9725. Principal Investigator: E. Karkoschka Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9725/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:28.683277", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID9809-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 9809", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 9809. Principal Investigator: R.G. French Target list: PROMETHEUS, SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU0_9809/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:29.629937", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFPC2-5-ID10170-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10170", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10170. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0170/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:30.681027", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID10357-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10357", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10357. Principal Investigator: A.J. Verbiscer Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0357/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:31.625555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID10468-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10468", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10468. Principal Investigator: E. Karkoschka Target list: GANYMEDE.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0468/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:32.624690", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFPC2-5-ID10534-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10534", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10534. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0534/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:33.632995", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID10782-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10782", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10782. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0782/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:34.632040", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID10862-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10862", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10862. Principal Investigator: J.T. Clarke Target list: SATURN.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0862/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:35.642374", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID10870-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10870", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10870. Principal Investigator: M.R. Showalter Target list: MAB.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0870/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:36.654988", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID10871-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 10871", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 10871. Principal Investigator: J.R. Spencer Target list: IO.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_0871/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:37.645845", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11085-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11085", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11085. Principal Investigator: W.B. Sparks Target list: EUROPA.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1085/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:38.648457", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11096-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11096", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11096. Principal Investigator: K. Noll Target list: IO, JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1096/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:39.699159", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11102-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11102", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11102. Principal Investigator: I. de Pater Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1102/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:40.742986", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID11118-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11118", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11118. Principal Investigator: L. Sromovsky Target list: URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1118/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:41.689576", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U/N-WFPC2-5-ID11156-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11156", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11156. Principal Investigator: K. Rages Target list: NEPTUNE, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1156/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:42.738970", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-U-WFPC2-5-ID11292-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11292", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11292. Principal Investigator: M.R. Showalter Target list: MAB, URANUS.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1292/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:43.671526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11310-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11310", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11310. Principal Investigator: A. Sanchez-Lavega Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1310/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:44.672601", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-5-ID11498-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11498", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11498. Principal Investigator: A. Simon-Miller Target list: JUPITER.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1498/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:45.681100", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-5-ID11956-V1.0", "title": "HST/WFPC2 OBSERVATIONS OF THE OUTER PLANETS: PROGRAM 11956", "description": "This volume contains JPEG and TIFF representations of data from the Wide Field Planetary Camera 2 (WFPC2) on the Hubble Space Telescope. The images are from Space Telescope Science Institute Program 11956. Principal Investigator: K.S. Noll Target list: TITAN, UNK.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/HSTUx_xxxx_v1.0/HSTU1_1956/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:46.674456", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JNO-L-JIRAM-2-EDR-V3.0", "title": "JUNO JIRAM EDR OBSERVATIONS", "description": "This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_1000/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:52.806908", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JNO-J-JIRAM-2-EDR-V1.0", "title": "JUNO JIRAM EDR OBSERVATIONS", "description": "This volume contains all JIRAM Level 1b data, that is telemetry data that have been cleaned merged, time ordered, sorted by instrument data types and instrument modes. Data are in scientifically useful form, but still uncalibrated.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:16:53.850961", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JNO-L-JIRAM-3-RDR-V3.0", "title": "JUNO JIRAM RDR OBSERVATIONS", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates 2013-10-09.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_2000/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:18:01.574812", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JNO-J-JIRAM-3-RDR-V1.0", "title": "JUNO JIRAM RDR OBSERVATIONS", "description": "This volume contains all JIRAM Level 2 data, that have been uncompressed and calibrated, for spacecraft event time (SCET) dates from 2016-07-10 to 2016-07-20.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/JNOJIR_xxxx/JNOJIR_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:18:02.571324", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JUNO-J-JUNOCAM-2-EDR-L0-V1.0", "title": "NULL", "description": "This volume contains Juno JunoCam data in their original, compressed format (EDR) and decompressed, processed format (RDR). In addition, mosaics of one or more individual JunoCam images are combined to create global and regional map products. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/JNOJNC_0xxx/JNOJNC_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:11.433544", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JNO-J/E/SS-SPICE-6-V1.0", "title": "JUNO SPICE FILES", "description": "This volume contains navigation and ancillary data in the form of SPICE System kernel files for the JUNO spacecraft and instruments. The data on this volume are released at intervals and may not be complete. Consult the ``catalog/release.cat'' file for information concerning release dates.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/JNOSP_xxxx/JNOSP_1000/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:44.664881", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "JNO-J-SRU-EDR-2-L0-V1.0", "title": "NULL", "description": "This volume contains Juno Stellar Reference Unit data in their original, uncompressed format (EDR) and tables of derived count rates. The volume also contains detailed documentation about the mission, instrument, and data set, as well as an index table.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/JNOSRU_xxxx/JNOSRU_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:46.603985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J/P/SS-SPICE-6-V1.0", "title": "NEW HORIZONS SPICE FILES", "description": "This volume contains navigation and ancillary data in the form of SPICE System kernel files for the New Horizons spacecraft and its instruments.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHSP_xxxx/NHSP_1000/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:48.612607", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-2-JUPITER-V3.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHJULO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:52.629034", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-3-JUPITER-V3.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHJULO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:53.682569", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM2-V1.0", "title": "NEW HORIZONS LORRI KEM2 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHK2LO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:54.628363", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM2-V1.0", "title": "NEW HORIZONS LORRI KEM2 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHK2LO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:55.675295", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS LORRI KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKCLO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:56.627511", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKCLO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:57.646405", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V6.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:58.640157", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V6.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHKELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:19:59.641992", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-LAUNCH-V3.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHLALO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:00.640615", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-LAUNCH-V3.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHLALO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:01.633227", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS LORRI PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPCLO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:02.644771", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPCLO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:03.663994", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-2-PLUTO-V3.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:04.686693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-3-PLUTO-V3.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx/NHPELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:05.733005", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-2-JUPITER-V1.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHJULO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:07.734240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-3-JUPITER-V1.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHJULO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:08.688211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS LORRI KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKCLO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:09.688911", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKCLO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:10.694302", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V1.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:11.692119", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V1.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHKELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:12.700703", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-LAUNCH-V1.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHLALO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:13.703226", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-LAUNCH-V1.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHLALO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:14.702069", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS LORRI PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPCLO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:15.705269", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPCLO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:16.750337", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-2-PLUTO-V1.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:17.805001", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-3-PLUTO-V1.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v1/NHPELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:18.743699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-2-JUPITER-V1.1", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHJULO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:20.737992", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-3-JUPITER-V1.1", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHJULO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:21.737683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V2.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHKELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:22.743093", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V2.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHKELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:23.739529", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-LAUNCH-V1.1", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHLALO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:24.745075", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-LAUNCH-V1.1", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHLALO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:25.746824", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-2-PLUTO-V2.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHPELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:26.754178", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-3-PLUTO-V2.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v2/NHPELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:27.761543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-2-JUPITER-V2.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHJULO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:29.771941", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-3-JUPITER-V2.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHJULO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:30.804135", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V3.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHKELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:31.849797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V3.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHKELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:32.784149", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-LAUNCH-V2.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHLALO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:33.791938", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-LAUNCH-V2.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v3/NHLALO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:34.794703", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V4.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v4/NHKELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:36.804426", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V4.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v4/NHKELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:37.798310", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V5.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v5/NHKELO_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:39.812795", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V5.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxLO_xxxx_v5/NHKELO_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:40.867720", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-MVIC-2-JUPITER-V2.0", "title": "NEW HORIZONS MVIC JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHJUMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:42.864824", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-MVIC-3-JUPITER-V2.0", "title": "NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHJUMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:43.911000", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS MVIC KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKCMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:44.825696", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKCMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:45.827661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V6.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:46.827526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V6.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHKEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:47.833163", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-LAUNCH-V2.0", "title": "NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHLAMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:48.841661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-LAUNCH-V2.0", "title": "NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHLAMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:49.838683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS MVIC PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPCMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:50.849885", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS MVIC PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPCMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:51.881832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-2-PLUTO-V3.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:52.927589", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-3-PLUTO-V3.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx/NHPEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:53.870101", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-MVIC-2-JUPITER-V1.0", "title": "NEW HORIZONS MVIC JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHJUMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:55.877330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-MVIC-3-JUPITER-V1.0", "title": "NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHJUMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:56.871819", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS MVIC KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKCMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:57.872124", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKCMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:58.885887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V1.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:20:59.885391", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V1.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHKEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:00.890871", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-LAUNCH-V1.0", "title": "NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHLAMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:01.889067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-LAUNCH-V1.0", "title": "NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHLAMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:02.902737", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-2-PLUTO-V1.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHPEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:03.938207", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-3-PLUTO-V1.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v1/NHPEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:04.995868", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V2.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHKEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:06.978097", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V2.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHKEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:07.918550", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-2-PLUTO-V2.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHPEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:08.924821", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-3-PLUTO-V2.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v2/NHPEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:09.927683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V3.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v3/NHKEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:11.936164", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V3.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v3/NHKEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:12.941495", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V4.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v4/NHKEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:14.949342", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V4.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v4/NHKEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:15.998223", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V5.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v5/NHKEMV_1001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:17.985264", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V5.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/NHxxMV_xxxx_v5/NHKEMV_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:19.037548", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-3-RPX-V1.1", "title": "VOLUME 1: IMAGES OCTOBER 1994 TO MAY 1995", "description": "This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Wide Field and Planetary Camera 2 aboard the Hubble Space Telescope. The images were acquired during the period October 1994 through November 1995, spanning the period of the ring plane crossings of 1995. (No images were obtained during the last crossing event in February 1996). Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, and documentation. This version eliminates the use of the Zip files that were found in the original volumes, and expands all file names to match those found in the HST archive.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:22.478926", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "WHT-S-API/ISIS-1/3-RPX-V1.0", "title": "VOLUME 1: IMAGES AND SPECTRA FROM AUGUST 1995", "description": "This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Intermediate Dispersion Spectrograph and Imaging System (ISIS) and the camera on the Auxiliary Port Imager (API) of the William Herschel Telescope. The images were acquired during the period August 1 - 3, 1995. Included in this volume are data files at a variety of levels of processing, plus calibration files, and documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0101/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:27.539588", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IRTF-S-NSFCAM-1/3-RPX-V1.0", "title": "VOLUME 1: IMAGES FROM AUGUST 1995", "description": "This volume contains images of the Saturnian system, including the main rings, multiple filter observations of the E ring, and eclipses of the satellites Janus, Pandora, Prometheus, Epimetheus, and Enceladus. These images were acquired by the NSFCam at the NASA Infrared Telescope Facility over the period August 6-8, 1995. Included on this volume are raw data and calibration files obtained in August, additional calibration files obtained in May 1995, a few observations of Jupiter, and supporting documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0201/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:28.567614", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CFHT-S-QUIRC-1/3-RPX-V1.0", "title": "VOLUME 1: IMAGES FROM AUGUST 1995", "description": "This volume contains images of the Saturnian system, including the satellites; Titan, Tethys, and Dionne. These images were acquired by Quick infrared Camera at Canada-France-Hawaii Corporation at Mauna Kea over the period August 9 - 12, 1995. Included on this volume are raw, processed, and calibration data files as well as supporting documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0301/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:29.522811", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "WIYN-S-WI-2-RPX-V1.0", "title": "VOLUME 1: IMAGES FROM NOVEMBER 1995", "description": "This volume contains images acquired by WIYN Imager(WI) at the WIYN Observatory at Kitt Peak of Saturn, its rings, and inner satellites. The images were acquired during the period November 19-23, 1995. Included in this volume are the raw images from these observations, calibration files, and documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/RPX_xxxx/RPX_0401/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:30.571034", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-S-WFPC2-3-RPX-V1.0", "title": "VOLUME 1: IMAGES OCTOBER 1994 TO MAY 1995", "description": "This volume contains images of Saturn's atmosphere, rings and inner moons acquired by the Wide Field and Planetary Camera 2 aboard the Hubble Space Telescope. The images were acquired during the period October 1994 through November 1995, spanning the period of the ring plane crossings of 1995. (No images were obtained during the last crossing event in February 1996). Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, and documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/RPX_xxxx_v1/RPX_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:32.512976", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-J/S-IRIS-3-RDR-EXPANDED-V1.0", "title": "VOYAGER IRIS OBSERVATIONS AT JUPITER - EXPANDED", "description": "This volume contains all the data produced by the Voyager IRIS experiments at Jupiter. It includes the full-resolution (RDR) spectra, plus ancillary geometry and calibration information.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VGIRIS_xxxx_peer_review/VGIRIS_0001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:38.541747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-J-ISS-2/3/4/6-PROCESSED-V1.0", "title": "PROCESSED VOYAGER 1 JUPITER IMAGES 13854.55 -- 14999.59", "description": "This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VGISS_5xxx/VGISS_5101/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:21:41.581446", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-S-ISS-2/3/4/6-PROCESSED-V1.1", "title": "PROCESSED VOYAGER 1 SATURN IMAGES 27830.18-32799.59", "description": "This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VGISS_6xxx/VGISS_6101/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:22:16.707120", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG2-U-ISS-2/3/4/6-PROCESSED-V1.0", "title": "PROCESSED URANUS IMAGES FROM VG_0001", "description": "This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VGISS_7xxx/VGISS_7201/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:22:53.935028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG2-N-ISS-2/3/4/6-PROCESSED-V1.0", "title": "PROCESSED VOYAGER 2 NEPTUNE IMAGES 8966.31 -- 9499.00", "description": "This volume contains calibrated and geometrically corrected versions of the Voyager images. Also provided are ancillary data files and images at various intermediate stages in the processing.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VGISS_8xxx/VGISS_8201/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:01.901678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-J-IRIS-3-RDR-V1.0", "title": "VOYAGER IRIS OBSERVATIONS", "description": "This volume contains data produced from the Voyager IRIS experiments. The full-resolution (RDR) spectral data are included. It also contains documentation in the form of ancillary files, to support access of the data on this CD-ROM.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VG_20xx/VG_2001/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:32.999953", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG2-SR/UR/NR-PPS-2/4-OCC-V1.0", "title": "VOLUME 1: VOYAGER PPS RING OCCULTATION DATA", "description": "This volume contains ring occultation data from the Voyager 2 Photopolarimeter at Saturn, Uranus and Neptune. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, software and documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2801/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:35.024587", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-SR/UR/NR-UVS-2/4-OCC-V1.0", "title": "VOLUME 2: VOYAGER UVS RING OCCULTATION DATA", "description": "This volume contains ring occultation data from the Voyager Ultraviolet Spectrometer at Saturn, Uranus and Neptune. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry, calibration and trajectory files, software and documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2802/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:36.005249", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-SR/UR-RSS-4-OCC-V1.0", "title": "VOLUME 3: VOYAGER RSS RING OCCULTATION DATA", "description": "This volume contains processed ring occultation data from the Voyager Radio Science experiments at Saturn and Uranus. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry and calibration, software and documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2803/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:37.025642", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-SR-ISS-4-PROFILES-V1.0", "title": "SATURN RING PROFILES FROM VOYAGER IMAGES", "description": "This volume contains calibrated and geometrically accurate intensity (I/F) profiles of Saturn's rings, as derived from the Voyager images. Documentation and the image files used in the analysis are also provided", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VG_28xx/VG_2810/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:38.065624", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1/VG2-SR/UR-RSS-4-OCC-V0.9", "title": "VOLUME 3: VOYAGER RSS RING OCCULTATION DATA", "description": "This volume contains processed ring occultation data from the Voyager Radio Science experiments at Saturn and Uranus. Included in this volume are data files at a variety of levels of processing, plus ancillary geometry and calibration, software and documentation.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VG_28xx_v0.9/VG_2803/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:40.069233", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1-S-RSS-1-ROCC-V1.0", "title": "VG1 at Saturn: VG1-S-RSS-1-ROCC-V1.0", "description": "CERTIFIED This volume contains data and supporting documentation from the Voyager 1 Saturn Encounter for the VG1-S-RSS-1-ROCC-V1.0 data set from 1980-11-13T00:00:00 to 1980-11-13T23:59:59.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG1_9050/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:42.028980", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG1-SSA-RSS-1-ROCC-V1.0", "title": "VG1 from Titan: VG1-SSA-RSS-1-ROCC-V1.0", "description": "CERTIFIED This volume contains raw data collected during the Titan radio occultation of Voyager 1 in November 1980 plus ancillary files that might be useful in analysis of those data from the VG1-SSA-RSS-1-ROCC-V1.0 data set.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG1_9056/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:43.043542", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG2-S-RSS-1-ROCC-V1.0", "title": "VG2 at Saturn: VG2-S-RSS-1-ROCC-V1.0", "description": "CERTIFIED This volume contains raw data, partially processed data, and ancillary files from the Voyager 2 Saturn Radio Science investigation for the VG2-S-RSS-1-ROCC-V1.0DATASET ID data set from 1981-08-25 to 1981-08-26.", "node": "rms", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/holdings/volumes/VGx_9xxx/VG2_9065/", "download_url": null, "label_url": null, "source_url": "https://pds-rings.seti.org/holdings/volumes/", "scraped_at": "2026-02-18T04:23:44.050032", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_saturn::1.0", "title": "ISS Observations from the Cassini Tour of the Saturn System", "description": "This bundle contains Cassini ISS images, metadata, and associated documentation for the Saturn tour--January 2004 through end of mission in September 2017.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["(134340) Pluto", "26 Tauri", "3 Centauri", "78 Tauri", "Aegaeon", "Albiorix", "Aldebaran", "Algol", "Alpha Arae", "Alpha Centauri", "Alpha Crucis", "Alpha Eridani", "Alpha Sextantis", "Alpha Trianguli Australis", "Antares", "Anthe", "Arcturus", "Atlas", "Bebhionn", "Bergelmir", "Bestla", "Beta Canis Majoris", "Beta Centauri", "Beta Crucis", "Beta Librae", "Beta Lupi", "Beta Orionis", "Beta Sagittarii", "Betelgeuse", "CW Leonis", "Cal Lamps", "Calypso", "Canopus", "Capella", "Chi Centauri", "Daphnis", "Delta Aquarii", "Delta Centauri", "Delta Lupi", "Delta Persei", "Delta Virginis", "Dione", "Earth", "Enceladus", "Epimetheus", "Epsilon Cassiopeiae", "Epsilon Centauri", "Epsilon Lupi", "Epsilon Orionis", "Epsilon Piscis Austrini", "Erriapus", "Eta Carinae", "Eta Lupi", "Eta Ursae Majoris", "Fomalhaut", "Fornjot", "Gamma Arae", "Gamma Cassiopeiae", "Gamma Columbae", "Gamma Crucis", "Gamma Gruis", "Gamma Lupi", "Gamma Pegasi", "Greip", "HD 71334", "HR 996", "Hati", "Helene", "Hyperion", "Hyrrokkin", "Iapetus", "Ijiraq", "Iota Centauri", "Janus", "Jarnsaxa", "Jupiter", "Kappa Centauri", "Kappa Orionis", "Kari", "Kiviuq", "Lambda Ceti", "Lambda Scorpii", "Loge", "Methone", "Mimas", "Mu Piscis Austrini", "Mundilfari", "Narvi", "Nu Centauri", "Omicron Ceti", "Paaliaq", "Pallene", "Pan", "Pandora", "Phoebe", "Polydeuces", "Probe", "Procyon", "Prometheus", "Psi Centauri", "R Cassiopeiae", "R Hydrae", "R Leo", "Regulus", "Rhea", "S/2004 S 12", "S/2004 S 13", "Saturn Rings", "Saturn", "Scat Light", "Siarnaq", "Sirius", "Skathi", "Skoll", "Sky", "Spica", "Star", "Sun", "Surtur", "Suttungr", "Tarqeq", "Tarvos", "Telesto", "Tethys", "Theta Arae", "Theta Hydrae", "Thrymr", "Titan", "Unknown", "Vega", "W Hydrae", "Ymir", "Zeta Canis Majoris", "Zeta Centauri", "Zeta Ophiuchi", "Zeta Orionis", "Zeta Persei"], "instruments": ["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera", "Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2004-01-01", "stop_date": "2017-09-14", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//bundle.xml", "scraped_at": "2026-02-25T20:02:10.736892Z", "keywords": ["cassini iss", "cassini images", "saturn", "saturn satellites", "saturn rings", "saturn system"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_cruise::1.0", "title": "ISS Observations from the Cassini Cruise to Saturn", "description": "This bundle contains Cassini ISS images, metadata, and associated documentation from the cruise to Saturn--October 1997 through December 2003.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["78 Tauri", "Aldebaran", "Alpha Centauri", "Antares", "Arcturus", "Beta Gruis", "Betelgeuse", "CW Leonis", "Cal Lamps", "Callisto", "Capella", "Checkout", "Dark Sky", "Dark", "Dust", "Eta Carinae", "Europa", "Fomalhaut", "Gamma Crucis", "Ganymede", "HD 339479", "Himalia", "Io", "Jupiter", "Jupiter Rings", "Masursky", "Moon", "NML Tauri", "Omicron Ceti", "Pallene", "Phoebe", "Pleiades", "R Doradus", "R Hydrae", "R Leo", "Saturn", "Scat Light", "Sirius", "Sky", "Spica", "Star", "Sun", "Test Image", "Titan", "Unknown", "Vega", "Venus", "W Hydrae"], "instruments": ["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera", "Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2004-01-01", "stop_date": "2017-09-14", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//bundle.xml", "scraped_at": "2026-02-25T20:02:10.737540Z", "keywords": ["cassini iss", "cassini images", "saturn", "saturn satellites", "saturn rings", "saturn system"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_cruise::1.0", "title": "VIMS Observations from the Cassini Cruise to Saturn", "description": "This bundle contains Cassini VIMS data, metadata, and associated documentation from the cruise to Saturn--October 1997 through December 2003.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["Aldebaran", "Alpha Centauri", "Antares", "Arcturus", "Beta Gruis", "Betelgeuse", "Callisto", "Capella", "Dark Sky", "Europa", "Fomalhaut", "Gamma Crucis", "Ganymede", "Himalia", "Io", "Jupiter", "Jupiter Rings", "Masursky", "Pleiades", "R Hydrae", "R Leo", "Saturn", "Scat Light", "Sirius", "Sky", "Spica", "Sun", "Test Image", "Unknown", "Venus", "W Hydrae"], "instruments": ["Cassini Orbiter Visual And Infrared Mapping Spectrometer"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "1999-01-10", "stop_date": "2003-12-25", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//bundle.xml", "scraped_at": "2026-02-25T20:02:10.737549Z", "keywords": ["cassini vims", "cassini spectra", "jupiter", "jupiter satellites", "jupiter rings", "jupiter system"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_saturn::1.0", "title": "VIMS Observations from the Cassini Tour of the Saturn System", "description": "This bundle contains Cassini VIMS data, metadata, and associated documentation for the Saturn tour--January 2004 through end of mission in September 2017.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["2 Centauri", "30 Herculis", "30 Piscium", "56 Leonis", "Aegaeon", "Albiorix", "Aldebaran", "Alpha Centauri", "Alpha Ceti", "Alpha Herculis", "Alpha Hydrae", "Alpha Trianguli Australis", "Antares", "Anthe", "Arcturus", "Atlas", "Bebhionn", "Bestla", "Beta Andromedae", "Beta Gruis", "Beta Orionis", "Beta Pegasi", "Beta Ursae Minoris", "Betelgeuse", "CW Leonis", "Calypso", "Capella", "Chi Aquarii", "Chi Cygni", "Daphnis", "Delta Ophiuchi", "Delta Virginis", "Dione", "Dust", "Earth", "Enceladus", "Epimetheus", "Epsilon Muscae", "Epsilon Orionis", "Erriapus", "Eta Sagittarii", "Fomalhaut", "Gamma Andromedae", "Gamma Crucis", "Gamma Eridani", "Greip", "HR 996", "Hati", "Helene", "Hyperion", "Iapetus", "Ijiraq", "Janus", "Jarnsaxa", "Jupiter", "Kiviuq", "Lambda Aquarii", "Lambda Velorum", "Methone", "Mimas", "Mu Cephei", "Mu Geminorum", "Mundilfari", "Nu Virginis", "Omega Virginis", "Omicron Ceti", "Paaliaq", "Pallene", "Pan", "Pandora", "Phoebe", "Pi1 Gruis", "Pleiades", "Polydeuces", "Procyon", "Prometheus", "R Aquarii", "R Cassiopeiae", "R Hydrae", "R Leo", "R Lyrae", "RW Leonis Minoris", "RX Leporis", "Rhea", "Rho Persei", "S Leporis", "Saturn Rings", "Saturn", "Siarnaq", "Sirius", "Skathi", "Sky", "Spica", "Star", "Sun", "Surtur", "T Cephei", "TX Camelopardalis", "Tarqeq", "Tarvos", "Telesto", "Tethys", "Thrymr", "Titan", "Unknown", "V Hydrae", "VX Sagittarii", "W Aquilae", "W Hydrae", "X Ophiuchi", "Ymir", "Zeta Orionis"], "instruments": ["Cassini Orbiter Visual And Infrared Mapping Spectrometer"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2004-01-01", "stop_date": "2017-09-14", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//bundle.xml", "scraped_at": "2026-02-25T20:02:10.737561Z", "keywords": ["cassini vims", "cassini spectra", "saturn", "saturn satellites", "saturn rings", "saturn system"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0201_palomar_508cm::1.0", "title": "Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u0201 (UCAC2 27214859) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": [], "start_date": "2002-07-29", "stop_date": "2002-07-29", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737570Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0_kao_91cm::1.0", "title": "Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u0 (Hipparcos 71567) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["0.91m Telescope", "Generic Visual High Speed Photometer"], "instrument_hosts": ["Kuiper Airborne Observatory"], "data_types": [], "start_date": "1977-03-10", "stop_date": "1977-03-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737580Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102a_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u102a (UCAC2 22794648) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1992-07-08", "stop_date": "1992-07-08", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737591Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102b_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u102b (UCAC2 22794648) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1992-07-08", "stop_date": "1992-07-08", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737601Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_eso_220cm::1.0", "title": "Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["ESO-La Silla 2.2m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": [], "start_date": "1992-07-11", "stop_date": "1992-07-11", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737608Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_palomar_508cm::1.0", "title": "Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": [], "start_date": "1992-07-11", "stop_date": "1992-07-11", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737615Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u1052_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u1052 (UCAC2 22296665) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1988-05-12", "stop_date": "1988-05-12", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737622Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u11_ctio_400cm::1.0", "title": "Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u11 (UCAC2 24610234) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1980-03-20", "stop_date": "1980-03-20", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737630Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_ctio_400cm::1.0", "title": "Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1980-08-15", "stop_date": "1980-08-16", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737639Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_104cm::1.0", "title": "Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["ESO-La Silla 1.04m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": [], "start_date": "1980-08-15", "stop_date": "1980-08-15", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737650Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_360cm::1.0", "title": "Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["ESO-La Silla 3.6m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": [], "start_date": "1980-08-15", "stop_date": "1980-08-15", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737661Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_lco_250cm::1.0", "title": "Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Irenee du Pont 2.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": [], "start_date": "1980-08-15", "stop_date": "1980-08-15", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737668Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles", "digitized strip chart"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u134_saao_188cm::1.0", "title": "Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u134 (UCAC2 23509999) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Radcliffe 1.88m telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["South African Astronomical Observatory"], "data_types": [], "start_date": "1995-09-09", "stop_date": "1995-09-09", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737678Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_hst_fos::1.0", "title": "Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Wide Field Camera 3"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": [], "start_date": "1996-03-16", "stop_date": "1996-03-16", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737689Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1996-03-16", "stop_date": "1996-03-16", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737699Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_hst_fos::1.0", "title": "Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Wide Field Camera 3"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": [], "start_date": "1996-04-10", "stop_date": "1996-04-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737706Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_palomar_508cm::1.0", "title": "Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": [], "start_date": "1996-04-10", "stop_date": "1996-04-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737716Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u13_sso_390cm::1.0", "title": "Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u13 (Hipparcos 77434) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["3.9m Anglo-Australian Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Siding Spring Observatory"], "data_types": [], "start_date": "1981-04-26", "stop_date": "1981-04-26", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737725Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_caha_123cm::1.0", "title": "Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["1.23m Telescope", "Generic NICMOS IR Camera"], "instrument_hosts": ["Centro Astronomico Hispano-Aleman"], "data_types": [], "start_date": "1997-09-30", "stop_date": "1997-09-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737733Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_saao_188cm::1.0", "title": "Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Radcliffe 1.88m telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["South African Astronomical Observatory"], "data_types": [], "start_date": "1997-09-30", "stop_date": "1997-09-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737741Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1998-11-06", "stop_date": "1998-11-06", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737750Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_lowell_180cm::1.0", "title": "Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Perkins 1.8m Telescope", "Generic CCD Camera"], "instrument_hosts": ["Lowell Observatory"], "data_types": [], "start_date": "1998-11-06", "stop_date": "1998-11-06", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737760Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_150cm::1.0", "title": "Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["SMARTS 1.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737770Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_400cm::1.0", "title": "Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic IR High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737779Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_eso_104cm::1.0", "title": "Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["ESO-La Silla 1.04m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": [], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737786Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_100cm::1.0", "title": "Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Swope 1.0m Telescope", "Generic IR High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": [], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737796Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_250cm::1.0", "title": "Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Irenee du Pont 2.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": [], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737806Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_106cm::1.0", "title": "Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["1.06m Telescope", "Generic GaAs High Speed Photometer"], "instrument_hosts": ["Pic du Midi de Bigorre"], "data_types": [], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737813Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_200cm::1.0", "title": "Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Bernard Lyot 2.0m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Pic du Midi de Bigorre"], "data_types": [], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737820Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_teide_155cm::1.0", "title": "Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Carlos Sanchez 1.55 Telescope", "Generic IR High Speed Photometer"], "instrument_hosts": ["Observatorio del Teide"], "data_types": [], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737830Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u15_mso_190cm::1.0", "title": "Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u15 (UCAC2 23648038) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["1.9m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Mount Stromlo Observatory"], "data_types": [], "start_date": "1982-05-01", "stop_date": "1982-05-01", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737841Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u16_palomar_508cm::1.0", "title": "Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u16 (UCAC2 23892052) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": [], "start_date": "1982-06-04", "stop_date": "1982-06-04", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737850Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u17b_saao_188cm::1.0", "title": "Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u17b (Hipparcos 80841) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Radcliffe 1.88m telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["South African Astronomical Observatory"], "data_types": [], "start_date": "1983-03-24", "stop_date": "1983-03-25", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737860Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_mcdonald_270cm::1.0", "title": "Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Harlan J. Smith 2.7m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["McDonald Observatory"], "data_types": [], "start_date": "1985-05-04", "stop_date": "1985-05-04", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737867Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_teide_155cm::1.0", "title": "Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Carlos Sanchez 1.55 Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Observatorio del Teide"], "data_types": [], "start_date": "1985-05-04", "stop_date": "1985-05-04", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737875Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_ctio_400cm::1.0", "title": "Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1985-05-24", "stop_date": "1985-05-24", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737882Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_mcdonald_270cm::1.0", "title": "Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Harlan J. Smith 2.7m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["McDonald Observatory"], "data_types": [], "start_date": "1985-05-24", "stop_date": "1985-05-24", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737890Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_palomar_508cm::1.0", "title": "Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": [], "start_date": "1985-05-24", "stop_date": "1985-05-24", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737897Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u28_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u28 (UCAC2 22517254) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1986-04-26", "stop_date": "1986-04-26", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737908Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u2_teide_155cm::1.0", "title": "Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u2 (UCAC3 148-144064) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Carlos Sanchez 1.55 Telescope", "Generic IR High Speed Photometer"], "instrument_hosts": ["Observatorio del Teide"], "data_types": [], "start_date": "1977-12-23", "stop_date": "1977-12-23", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737916Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles", "digitized strip chart"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u34_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u34 (UCAC2 22289038) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1987-02-26", "stop_date": "1987-02-26", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737926Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_ctio_400cm::1.0", "title": "Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1987-04-02", "stop_date": "1987-04-02", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737936Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1987-03-30", "stop_date": "1987-03-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737943Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_maunakea_380cm::1.0", "title": "Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["United Kingdom Infrared Telescope 3.8m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Maunakea Observatory"], "data_types": [], "start_date": "1987-03-30", "stop_date": "1987-03-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737951Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_230cm::1.0", "title": "Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Australian National University 2.3m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Siding Spring Observatory"], "data_types": [], "start_date": "1987-04-02", "stop_date": "1987-04-02", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737958Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_390cm::1.0", "title": "Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["3.9m Anglo-Australian Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Siding Spring Observatory"], "data_types": [], "start_date": "1987-04-02", "stop_date": "1987-04-02", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737965Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u5_lco_250cm::1.0", "title": "Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u5 (UCAC2 25775788) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Irenee du Pont 2.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": [], "start_date": "1978-04-10", "stop_date": "1978-04-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737972Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles", "digitized strip chart"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u65_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u65 (UCAC3 133-382807) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1990-06-21", "stop_date": "1990-06-21", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737979Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u83_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u83 (UCAC2 22564036) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1991-06-25", "stop_date": "1991-06-25", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737987Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u84_irtf_320cm::1.0", "title": "Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u84 (UCAC2 22563790) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1991-06-28", "stop_date": "1991-06-28", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.737994Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9539_ctio_400cm::1.0", "title": "Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u9539 (UCAC2 23016546) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1993-06-30", "stop_date": "1993-06-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738004Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9_lco_250cm::1.0", "title": "Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u9 (UCAC2 25547691) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Irenee du Pont 2.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": [], "start_date": "1979-06-10", "stop_date": "1979-06-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738012Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles", "digitized strip chart"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_support::1.0", "title": "Uranus Occultation Support Bundle", "description": "The support bundle for the highly derived, Uranus system, Earth-Based occultation bundles. Contains the global Uranus ring system model, support materials, and documentation used to produce the individual occultation profiles in the supported bundles.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": [], "targets": ["Uranus", "Uranian Ring System"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738275Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings global model", "uranus rings model", "uranus occultation user guide"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023::1.1", "title": "Saturn Ring System Solar Occultations Observed by Cassini UVIS", "description": "This bundle contains derived time series data products from multiple solar occultations by the rings of Saturn.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["Saturn Rings"], "instruments": ["Cassini Orbiter Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "2005-06-08", "stop_date": "2017-06-18", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//bundle.xml", "scraped_at": "2026-02-25T20:02:10.738445Z", "keywords": ["Saturn Rings", "Solar Occultation", "CDAP 2018"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_ctio_400cm::1.0", "title": "Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope", "description": "This bundle contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1985-05-04", "stop_date": "1985-05-04", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/bundle.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738453Z", "keywords": ["PDART 2015 R. French", "PDART2015 French", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager1_rss_jupiter_raw::1.0", "title": "Voyager 1 Jupiter Radio Occultation - Raw Data Bundle", "description": "The bundle contains raw radio science data from the Voyager 1 radio occultation at Jupiter. Data include sampled output from S- and X-band receivers at the 64-m antenna of the NASA Deep Space Network near Madrid, Spain. Also included are receiver tuning data, files containing reconstructed pointing of the spacecraft high-gain antenna, a trajectory reconstruction, and documentation.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "DSS 63 64-m Antenna", "Voyager 1 Radio Science Instrumentation", "Voyager 1 Spacecraft Sensors"], "instrument_hosts": ["NASA Deep Space Network", "Voyager 1"], "data_types": [], "start_date": "1979-03-05", "stop_date": "1979-03-05", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//bundle_voyager1_rss_jupiter_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//bundle_voyager1_rss_jupiter_raw.xml", "scraped_at": "2026-02-25T20:02:10.738467Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager2_rss_jupiter_raw::1.0", "title": "Voyager 2 Jupiter Radio Occultation - Raw Data Bundle", "description": "The bundle contains raw radio science data from the Voyager 2 radio occultation at Jupiter. Data include sampled output from S- and X-band receivers at the 64-m antenna of the NASA Deep Space Network near Madrid, Spain. Also included are receiver tuning data, files containing reconstructed pointing of the spacecraft high-gain antenna, a trajectory reconstruction, and documentation.", "node": "rms", "pds_version": "PDS4", "type": "bundle", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "DSS 14 64-m Antenna", "Voyager 2 Radio Science Instrumentation", "Voyager 2 Spacecraft Sensors"], "instrument_hosts": ["NASA Deep Space Network", "Voyager 2"], "data_types": [], "start_date": "1979-07-10", "stop_date": "1979-07-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//bundle_voyager2_rss_jupiter_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//bundle_voyager2_rss_jupiter_raw.xml", "scraped_at": "2026-02-25T20:02:10.738471Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_saturn:browse_raw::1.0", "title": "Browse Collection for the Raw Cassini ISS Observations from the Saturn Tour", "description": "This is the collection of browse products associated with the raw ISS data files obtained during the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/collection_browse_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//browse_raw/collection_browse_raw.xml", "scraped_at": "2026-02-25T20:02:10.750188Z", "keywords": ["cassini iss", "browse products", "preview products"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_saturn:xml_schema::1.0", "title": "XML Schema Collection for the Cassini ISS Observations from the Saturn Tour", "description": "This is the collection of XML schema used by the archive bundle of Cassini ISS data from the tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.750209Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_saturn:context::1.0", "title": "Context Collection for the Cassini ISS Observations of the Saturn System", "description": "This is the collection of context products relevant to the ISS data files obtained during the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.750212Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_saturn:data_raw::1.0", "title": "Raw Data Collection for the Cassini ISS Observations from the Saturn Tour", "description": "This is the collection of raw ISS images and associated metadata from the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["(134340) Pluto", "26 Tauri", "3 Centauri", "78 Tauri", "Aegaeon", "Albiorix", "Aldebaran", "Algol", "Alpha Arae", "Alpha Centauri", "Alpha Crucis", "Alpha Eridani", "Alpha Sextantis", "Alpha Trianguli Australis", "Antares", "Anthe", "Arcturus", "Atlas", "Bebhionn", "Bergelmir", "Bestla", "Beta Canis Majoris", "Beta Centauri", "Beta Crucis", "Beta Librae", "Beta Lupi", "Beta Orionis", "Beta Sagittarii", "Betelgeuse", "CW Leonis", "Cal Lamps", "Calypso", "Canopus", "Capella", "Chi Centauri", "Daphnis", "Delta Aquarii", "Delta Centauri", "Delta Lupi", "Delta Persei", "Delta Virginis", "Dione", "Earth", "Enceladus", "Epimetheus", "Epsilon Cassiopeiae", "Epsilon Centauri", "Epsilon Lupi", "Epsilon Orionis", "Epsilon Piscis Austrini", "Erriapus", "Eta Carinae", "Eta Lupi", "Eta Ursae Majoris", "Fomalhaut", "Fornjot", "Gamma Arae", "Gamma Cassiopeiae", "Gamma Columbae", "Gamma Crucis", "Gamma Gruis", "Gamma Lupi", "Gamma Pegasi", "Greip", "HD 71334", "HR 996", "Hati", "Helene", "Hyperion", "Hyrrokkin", "Iapetus", "Ijiraq", "Iota Centauri", "Janus", "Jarnsaxa", "Jupiter", "Kappa Centauri", "Kappa Orionis", "Kari", "Kiviuq", "Lambda Ceti", "Lambda Scorpii", "Loge", "Methone", "Mimas", "Mu Piscis Austrini", "Mundilfari", "Narvi", "Nu Centauri", "Omicron Ceti", "Paaliaq", "Pallene", "Pan", "Pandora", "Phoebe", "Polydeuces", "Probe", "Procyon", "Prometheus", "Psi Centauri", "R Cassiopeiae", "R Hydrae", "R Leo", "Regulus", "Rhea", "S/2004 S 12", "S/2004 S 13", "Saturn Rings", "Saturn", "Scat Light", "Siarnaq", "Sirius", "Skathi", "Skoll", "Sky", "Spica", "Star", "Sun", "Surtur", "Suttungr", "Tarqeq", "Tarvos", "Telesto", "Tethys", "Theta Arae", "Theta Hydrae", "Thrymr", "Titan", "Unknown", "Vega", "W Hydrae", "Ymir", "Zeta Canis Majoris", "Zeta Centauri", "Zeta Ophiuchi", "Zeta Orionis", "Zeta Persei"], "instruments": ["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera", "Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2004-01-01", "stop_date": "2017-09-14", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/collection_data_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.750226Z", "keywords": ["cassini iss", "cassini raw images", "saturn", "saturn satellites", "saturn rings", "saturn system"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_saturn:document::1.0", "title": "Document Collection for the Cassini ISS Observations from the Saturn Tour", "description": "This is the collection of documents relevant to the ISS observations obtained during the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_saturn//document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.750231Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_cruise:xml_schema::1.0", "title": "XML Schema Collection for the Cassini ISS Observations from the Cruise to Saturn", "description": "This is the collection of XML schema used by the archive bundle of Cassini ISS data from the cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751599Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_cruise:browse_raw::1.0", "title": "Browse Collection for the Raw Cassini ISS Observations from the Cruise to Saturn", "description": "This is the collection of browse products associated with the raw ISS data files obtained during the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/collection_browse_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//browse_raw/collection_browse_raw.xml", "scraped_at": "2026-02-25T20:02:10.751604Z", "keywords": ["cassini iss", "browse products", "preview products"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_cruise:context::1.0", "title": "Context Collection for the Cassini ISS Observations of the Saturn System", "description": "This is the collection of context products relevant to the ISS data files obtained during the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751607Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_cruise:document::1.0", "title": "Document Collection for the Cassini ISS Observations from the Cruise to Saturn", "description": "This is the collection of documents relevant to the ISS observations obtained during the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751610Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_iss_cruise:data_raw::1.0", "title": "Raw Data Collection for the Cassini ISS Observations from the Cruise to Saturn", "description": "This is the collection of raw ISS images and associated metadata from the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["78 Tauri", "Aldebaran", "Alpha Centauri", "Antares", "Arcturus", "Beta Gruis", "Betelgeuse", "CW Leonis", "Cal Lamps", "Callisto", "Capella", "Checkout", "Dark Sky", "Dark", "Dust", "Eta Carinae", "Europa", "Fomalhaut", "Gamma Crucis", "Ganymede", "HD 339479", "Himalia", "Io", "Jupiter", "Jupiter Rings", "Masursky", "Moon", "NML Tauri", "Omicron Ceti", "Pallene", "Phoebe", "Pleiades", "R Doradus", "R Hydrae", "R Leo", "Saturn", "Scat Light", "Sirius", "Sky", "Spica", "Star", "Sun", "Test Image", "Titan", "Unknown", "Vega", "Venus", "W Hydrae"], "instruments": ["Cassini Orbiter Imaging Science Subsystem - Narrow Angle Camera", "Cassini Orbiter Imaging Science Subsystem - Wide Angle Camera"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "1999-01-09", "stop_date": "2003-12-25", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/collection_data_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_iss_cruise//data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.751619Z", "keywords": ["cassini iss", "cassini raw images", "jupiter", "jupiter satellites", "jupiter rings", "jupiter system"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_cruise:xml_schema::1.0", "title": "XML Schema Collection for the Cassini VIMS Observations from the Cruise to Saturn", "description": "This is the collection of XML schema used by the archive bundle of Cassini VIMS data from the cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751624Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_cruise:calibration::1.0", "title": "Calibration Collection for the Cassini VIMS Observations from the Cruise to Saturn", "description": "This is the collection of calibration products relevant to the VIMS data files obtained during the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/collection_calibration.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.751627Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_cruise:browse_raw::1.0", "title": "Browse Collection for the Raw Cassini VIMS Observations from the Cruise to Saturn", "description": "This is the collection of browse products associated with the raw VIMS data files obtained during the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/collection_browse_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//browse_raw/collection_browse_raw.xml", "scraped_at": "2026-02-25T20:02:10.751632Z", "keywords": ["cassini vims", "cassini spectra", "browse products", "preview products"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_cruise:context::1.0", "title": "Context Collection for the Cassini VIMS Observations from the Cruise to Saturn", "description": "This is the collection of context products relevant to the VIMS data files obtained during the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751635Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_cruise:data_raw::1.0", "title": "Raw Data Collection for the Cassini VIMS Observations from the Cruise to Saturn", "description": "This is the collection of raw VIMS data products and associated metadata from the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Aldebaran", "Alpha Centauri", "Antares", "Arcturus", "Beta Gruis", "Betelgeuse", "Callisto", "Capella", "Dark Sky", "Europa", "Fomalhaut", "Gamma Crucis", "Ganymede", "Himalia", "Io", "Jupiter", "Jupiter Rings", "Masursky", "Pleiades", "R Hydrae", "R Leo", "Saturn", "Scat Light", "Sirius", "Sky", "Spica", "Sun", "Test Image", "Unknown", "Venus", "W Hydrae"], "instruments": ["Cassini Orbiter Visual And Infrared Mapping Spectrometer"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "1999-01-10", "stop_date": "2003-12-25", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/collection_data_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.751642Z", "keywords": ["cassini vims", "cassini spectra", "jupiter", "jupiter satellites", "jupiter rings", "jupiter system"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_cruise:document::1.0", "title": "Document Collection for the Cassini VIMS Observations from the Cruise to Saturn", "description": "This is the collection of documents relevant to the VIMS observations obtained during the Cassini cruise to Saturn.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_cruise//document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751646Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_saturn:document::1.0", "title": "Document Collection for the Cassini VIMS Observations from the Saturn Tour", "description": "This is the collection of documents relevant to the VIMS observations obtained during the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751649Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_saturn:data_raw::1.0", "title": "Raw Data Collection for the Cassini VIMS Observations from from the Saturn Tour", "description": "This is the collection of raw VIMS data products and associated metadata from the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["2 Centauri", "30 Herculis", "30 Piscium", "56 Leonis", "Aegaeon", "Albiorix", "Aldebaran", "Alpha Centauri", "Alpha Ceti", "Alpha Herculis", "Alpha Hydrae", "Alpha Trianguli Australis", "Antares", "Anthe", "Arcturus", "Atlas", "Bebhionn", "Bestla", "Beta Andromedae", "Beta Gruis", "Beta Orionis", "Beta Pegasi", "Beta Ursae Minoris", "Betelgeuse", "CW Leonis", "Calypso", "Capella", "Chi Aquarii", "Chi Cygni", "Daphnis", "Delta Ophiuchi", "Delta Virginis", "Dione", "Dust", "Earth", "Enceladus", "Epimetheus", "Epsilon Muscae", "Epsilon Orionis", "Erriapus", "Eta Sagittarii", "Fomalhaut", "Gamma Andromedae", "Gamma Crucis", "Gamma Eridani", "Greip", "HR 996", "Hati", "Helene", "Hyperion", "Iapetus", "Ijiraq", "Janus", "Jarnsaxa", "Jupiter", "Kiviuq", "Lambda Aquarii", "Lambda Velorum", "Methone", "Mimas", "Mu Cephei", "Mu Geminorum", "Mundilfari", "Nu Virginis", "Omega Virginis", "Omicron Ceti", "Paaliaq", "Pallene", "Pan", "Pandora", "Phoebe", "Pi1 Gruis", "Pleiades", "Polydeuces", "Procyon", "Prometheus", "R Aquarii", "R Cassiopeiae", "R Hydrae", "R Leo", "R Lyrae", "RW Leonis Minoris", "RX Leporis", "Rhea", "Rho Persei", "S Leporis", "Saturn Rings", "Saturn", "Siarnaq", "Sirius", "Skathi", "Sky", "Spica", "Star", "Sun", "Surtur", "T Cephei", "TX Camelopardalis", "Tarqeq", "Tarvos", "Telesto", "Tethys", "Thrymr", "Titan", "Unknown", "V Hydrae", "VX Sagittarii", "W Aquilae", "W Hydrae", "X Ophiuchi", "Ymir", "Zeta Orionis"], "instruments": ["Cassini Orbiter Visual And Infrared Mapping Spectrometer"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2004-01-01", "stop_date": "2017-09-14", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/collection_data_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.751662Z", "keywords": ["cassini vims", "cassini spectra", "saturn", "saturn satellites", "saturn rings", "saturn system"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_saturn:context::1.0", "title": "Context Collection for the Cassini VIMS Observations from the Saturn Tour", "description": "This is the collection of context products relevant to the VIMS data files obtained during the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751667Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_saturn:browse_raw::1.0", "title": "Browse Collection for the Raw Cassini VIMS Observations from the Saturn Tour", "description": "This is the collection of browse products associated with the raw VIMS data files obtained during the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/collection_browse_raw.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//browse_raw/collection_browse_raw.xml", "scraped_at": "2026-02-25T20:02:10.751672Z", "keywords": ["cassini vims", "cassini spectra", "browse products", "preview products"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_saturn:xml_schema::1.0", "title": "XML Schema Collection for the Cassini VIMS Observations from the Saturn Tour", "description": "This is the collection of XML schema used by the archive bundle of Cassini VIMS data from the tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751674Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_vims_saturn:calibration::1.0", "title": "Calibration Collection for the Cassini VIMS Observations from the Saturn Tour", "description": "This is the collection of calibration products relevant to the VIMS data files obtained during the Cassini tour of the Saturn system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/collection_calibration.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_vims_saturn//calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.751677Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0201_palomar_508cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u0201 (UCAC2 27214859) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": ["Data"], "start_date": "2002-07-29", "stop_date": "2002-07-29", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751684Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0201_palomar_508cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751687Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0201_palomar_508cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751689Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0201_palomar_508cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751695Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0201_palomar_508cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u0201 (UCAC2 27214859) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u0201 (UCAC2 27214859).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0201_palomar_508cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751699Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0_kao_91cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u0 (Hipparcos 71567) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["0.91m Telescope", "Generic Visual High Speed Photometer"], "instrument_hosts": ["Kuiper Airborne Observatory"], "data_types": ["Data"], "start_date": "1977-03-10", "stop_date": "1977-03-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751708Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0_kao_91cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751716Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0_kao_91cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751719Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0_kao_91cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751722Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u0_kao_91cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u0 (Hipparcos 71567) Observed from the Kuiper Airborne Observatory 91cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u0 (Hipparcos 71567).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u0_kao_91cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751724Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102a_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751727Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102a_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u102a (UCAC2 22794648) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1992-07-08", "stop_date": "1992-07-08", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751736Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102a_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751745Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102a_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751748Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102a_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u102a (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u102a (UCAC2 22794648).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102a_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751751Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102b_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u102b (UCAC2 22794648) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1992-07-08", "stop_date": "1992-07-08", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751760Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102b_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751763Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102b_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751765Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102b_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751768Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u102b_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u102b (UCAC2 22794648) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u102b (UCAC2 22794648).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u102b_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751776Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_eso_220cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751780Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_eso_220cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["ESO-La Silla 2.2m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": ["Data"], "start_date": "1992-07-11", "stop_date": "1992-07-11", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751786Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_eso_220cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751791Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_eso_220cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751794Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_eso_220cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the ESO 220cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_eso_220cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751797Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_palomar_508cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751802Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_palomar_508cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u103 (UCAC2 22794421) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": ["Data"], "start_date": "1992-07-11", "stop_date": "1992-07-11", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751810Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_palomar_508cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751813Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_palomar_508cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751816Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u103_palomar_508cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u103 (UCAC2 22794421) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u103 (UCAC2 22794421).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u103_palomar_508cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751819Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u1052_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751822Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u1052_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u1052 (UCAC2 22296665) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1988-05-12", "stop_date": "1988-05-12", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751828Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u1052_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751854Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u1052_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751860Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u1052_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u1052 (UCAC2 22296665) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u1052 (UCAC2 22296665).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u1052_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751863Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u11_ctio_400cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751866Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u11_ctio_400cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751870Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u11_ctio_400cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u11 (UCAC2 24610234) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1980-03-20", "stop_date": "1980-03-20", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751876Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u11_ctio_400cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751879Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u11_ctio_400cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u11 (UCAC2 24610234) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u11 (UCAC2 24610234).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u11_ctio_400cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751885Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_ctio_400cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751888Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_ctio_400cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751891Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_ctio_400cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751893Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_ctio_400cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1980-08-15", "stop_date": "1980-08-16", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751902Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_ctio_400cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_ctio_400cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751913Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_104cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751922Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_104cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751925Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_104cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751928Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_104cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["ESO-La Silla 1.04m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": ["Data"], "start_date": "1980-08-15", "stop_date": "1980-08-15", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751937Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_104cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 104cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_104cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751940Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_360cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751948Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_360cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751950Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_360cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751954Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_360cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["ESO-La Silla 3.6m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": ["Data"], "start_date": "1980-08-15", "stop_date": "1980-08-15", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751963Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_eso_360cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the ESO 360cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_eso_360cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751966Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_lco_250cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.751968Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_lco_250cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.751971Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_lco_250cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u12 (UCAC2 25096598) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Irenee du Pont 2.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": ["Data"], "start_date": "1980-08-15", "stop_date": "1980-08-15", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751978Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles", "digitized strip chart"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_lco_250cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.751983Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u12_lco_250cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u12 (UCAC2 25096598) Observed from the LCO 250cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u12 (UCAC2 25096598).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u12_lco_250cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.751986Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u134_saao_188cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u134 (UCAC2 23509999) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Radcliffe 1.88m telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["South African Astronomical Observatory"], "data_types": ["Data"], "start_date": "1995-09-09", "stop_date": "1995-09-09", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.751996Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u134_saao_188cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752004Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u134_saao_188cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752007Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u134_saao_188cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752010Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u134_saao_188cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u134 (UCAC2 23509999) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u134 (UCAC2 23509999).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u134_saao_188cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752013Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_hst_fos:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752016Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_hst_fos:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752018Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_hst_fos:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Wide Field Camera 3"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": ["Data"], "start_date": "1996-03-16", "stop_date": "1996-03-16", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752027Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_hst_fos:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752031Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_hst_fos:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the HST FOS", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_hst_fos/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752039Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752042Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752050Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u137 (UCAC3 141-413386) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1996-03-16", "stop_date": "1996-03-16", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752058Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752061Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u137_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u137 (UCAC3 141-413386) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u137 (UCAC3 141-413386).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u137_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752064Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_hst_fos:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752067Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_hst_fos:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752070Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_hst_fos:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752073Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_hst_fos:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS", "description": "This collection contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Wide Field Camera 3"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": ["Data"], "start_date": "1996-04-10", "stop_date": "1996-04-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752079Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_hst_fos:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the HST FOS", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_hst_fos/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752085Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_palomar_508cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752088Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_palomar_508cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752091Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_palomar_508cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752098Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_palomar_508cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u138 (UCAC2 24243463).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752101Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u138_palomar_508cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u138 (UCAC2 24243463) Observed from the Palomar 508cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u138 (UCAC2 24243463) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": ["Data"], "start_date": "1996-04-10", "stop_date": "1996-04-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u138_palomar_508cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752111Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u13_sso_390cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752114Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u13_sso_390cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752116Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u13_sso_390cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752124Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u13_sso_390cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u13 (Hipparcos 77434) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["3.9m Anglo-Australian Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Siding Spring Observatory"], "data_types": ["Data"], "start_date": "1981-04-26", "stop_date": "1981-04-26", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752133Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u13_sso_390cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u13 (Hipparcos 77434) Observed from the SSO 390cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u13 (Hipparcos 77434).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u13_sso_390cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752136Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_caha_123cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752139Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_caha_123cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752142Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_caha_123cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["1.23m Telescope", "Generic NICMOS IR Camera"], "instrument_hosts": ["Centro Astronomico Hispano-Aleman"], "data_types": ["Data"], "start_date": "1997-09-30", "stop_date": "1997-09-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752149Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_caha_123cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752153Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_caha_123cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the CAHA 123cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_caha_123cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752158Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_saao_188cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752161Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_saao_188cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752163Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_saao_188cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752169Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_saao_188cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u144 (UCAC2 24243741).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752172Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u144_saao_188cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u144 (UCAC2 24243741) Observed from the SAAO 188cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u144 (UCAC2 24243741) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Radcliffe 1.88m telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["South African Astronomical Observatory"], "data_types": ["Data"], "start_date": "1997-09-30", "stop_date": "1997-09-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u144_saao_188cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752178Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752187Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752189Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752192Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1998-11-06", "stop_date": "1998-11-06", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752201Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752204Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_lowell_180cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u149 (2MASS 20462044-1838345) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Perkins 1.8m Telescope", "Generic CCD Camera"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["Data"], "start_date": "1998-11-06", "stop_date": "1998-11-06", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752212Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_lowell_180cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752215Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_lowell_180cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752218Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_lowell_180cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752221Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u149_lowell_180cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u149 (2MASS 20462044-1838345) Observed from the Lowell 180cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u149 (2MASS 20462044-1838345).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u149_lowell_180cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752229Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_150cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752255Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_150cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752259Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_150cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752262Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_150cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["SMARTS 1.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752271Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_150cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 150cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_150cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752279Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_400cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752286Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_400cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752290Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_400cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752294Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_400cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic IR High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752303Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_ctio_400cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_ctio_400cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752306Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_eso_104cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752309Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_eso_104cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752314Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_eso_104cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752317Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_eso_104cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["ESO-La Silla 1.04m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": ["Data"], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752323Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_eso_104cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the ESO 104cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_eso_104cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752326Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_100cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Swope 1.0m Telescope", "Generic IR High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": ["Data"], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752336Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_100cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752339Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_100cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752347Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_100cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752350Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_100cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 100cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_100cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752353Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_250cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752355Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_250cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Irenee du Pont 2.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": ["Data"], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752364Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_250cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752373Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_250cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752376Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_lco_250cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the LCO 250cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_lco_250cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752379Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_106cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752382Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_106cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["1.06m Telescope", "Generic GaAs High Speed Photometer"], "instrument_hosts": ["Pic du Midi de Bigorre"], "data_types": ["Data"], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752388Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_106cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752394Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_106cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752397Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_106cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 106cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_106cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752400Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_200cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Bernard Lyot 2.0m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Pic du Midi de Bigorre"], "data_types": ["Data"], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752407Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_200cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752410Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_200cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752413Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_200cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752416Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_opmt_200cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the OPMT 200cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_opmt_200cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752421Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_teide_155cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752424Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_teide_155cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752426Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_teide_155cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u14 (Hipparcos 79085) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Carlos Sanchez 1.55 Telescope", "Generic IR High Speed Photometer"], "instrument_hosts": ["Observatorio del Teide"], "data_types": ["Data"], "start_date": "1982-04-22", "stop_date": "1982-04-22", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752435Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_teide_155cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752442Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u14_teide_155cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u14 (Hipparcos 79085) Observed from the Teide 155cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u14 (Hipparcos 79085).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u14_teide_155cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752450Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u15_mso_190cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752453Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u15_mso_190cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752461Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u15_mso_190cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752464Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u15_mso_190cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u15 (UCAC2 23648038).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752467Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u15_mso_190cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u15 (UCAC2 23648038) Observed from the MSO 190cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u15 (UCAC2 23648038) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["1.9m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Mount Stromlo Observatory"], "data_types": ["Data"], "start_date": "1982-05-01", "stop_date": "1982-05-01", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u15_mso_190cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752475Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u16_palomar_508cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752479Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u16_palomar_508cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u16 (UCAC2 23892052) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": ["Data"], "start_date": "1982-06-04", "stop_date": "1982-06-04", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752489Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u16_palomar_508cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752497Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u16_palomar_508cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752500Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u16_palomar_508cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u16 (UCAC2 23892052) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u16 (UCAC2 23892052).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u16_palomar_508cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752503Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u17b_saao_188cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752506Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u17b_saao_188cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752513Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u17b_saao_188cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752516Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u17b_saao_188cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u17b (Hipparcos 80841) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Radcliffe 1.88m telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["South African Astronomical Observatory"], "data_types": ["Data"], "start_date": "1983-03-24", "stop_date": "1983-03-25", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752525Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u17b_saao_188cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u17b (Hipparcos 80841) Observed from the SAAO 188cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u17b (Hipparcos 80841).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u17b_saao_188cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752529Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752532Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752537Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752540Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752543Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_mcdonald_270cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the McDonald 270cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Harlan J. Smith 2.7m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["McDonald Observatory"], "data_types": ["Data"], "start_date": "1985-05-04", "stop_date": "1985-05-04", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_mcdonald_270cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752549Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_teide_155cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752552Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_teide_155cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Carlos Sanchez 1.55 Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Observatorio del Teide"], "data_types": ["Data"], "start_date": "1985-05-04", "stop_date": "1985-05-04", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752559Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_teide_155cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752563Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_teide_155cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752568Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_teide_155cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the Teide 155cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_teide_155cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752571Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_ctio_400cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752576Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_ctio_400cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752579Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_ctio_400cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752582Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_ctio_400cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1985-05-24", "stop_date": "1985-05-24", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752588Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_ctio_400cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_ctio_400cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752591Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752597Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752600Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752603Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Harlan J. Smith 2.7m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["McDonald Observatory"], "data_types": ["Data"], "start_date": "1985-05-24", "stop_date": "1985-05-24", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752609Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_mcdonald_270cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the McDonald 270cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_mcdonald_270cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752612Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_palomar_508cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752615Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_palomar_508cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752620Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_palomar_508cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u25 (UCAC2 22734194) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Hale 5.08m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Palomar Observatory"], "data_types": ["Data"], "start_date": "1985-05-24", "stop_date": "1985-05-24", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752626Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_palomar_508cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752650Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u25_palomar_508cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u25 (UCAC2 22734194) Observed from the Palomar 508cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u25 (UCAC2 22734194).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u25_palomar_508cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752653Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u28_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752657Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u28_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752660Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u28_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752667Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u28_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u28 (UCAC2 22517254) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1986-04-26", "stop_date": "1986-04-26", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752676Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u28_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u28 (UCAC2 22517254) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u28 (UCAC2 22517254).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u28_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752680Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u2_teide_155cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752682Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u2_teide_155cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752686Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u2_teide_155cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u2 (UCAC3 148-144064) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Carlos Sanchez 1.55 Telescope", "Generic IR High Speed Photometer"], "instrument_hosts": ["Observatorio del Teide"], "data_types": ["Data"], "start_date": "1977-12-23", "stop_date": "1977-12-23", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752692Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles", "digitized strip chart"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u2_teide_155cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752698Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u2_teide_155cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u2 (UCAC3 148-144064) Observed from the Teide 155cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u2 (UCAC3 148-144064).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u2_teide_155cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752701Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u34_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u34 (UCAC2 22289038) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1987-02-26", "stop_date": "1987-02-26", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752710Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u34_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752713Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u34_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752715Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u34_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752718Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u34_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u34 (UCAC2 22289038) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u34 (UCAC2 22289038).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u34_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752727Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_ctio_400cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752730Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_ctio_400cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752733Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_ctio_400cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1987-04-02", "stop_date": "1987-04-02", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752741Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_ctio_400cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752749Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_ctio_400cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_ctio_400cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752752Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1987-03-30", "stop_date": "1987-03-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752758Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752764Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752768Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752771Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752774Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_maunakea_380cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752777Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_maunakea_380cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752782Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_maunakea_380cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752785Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_maunakea_380cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["United Kingdom Infrared Telescope 3.8m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Maunakea Observatory"], "data_types": ["Data"], "start_date": "1987-03-30", "stop_date": "1987-03-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752792Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_maunakea_380cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the Maunakea UKIRT 380cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_maunakea_380cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752794Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_230cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Australian National University 2.3m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Siding Spring Observatory"], "data_types": ["Data"], "start_date": "1987-04-02", "stop_date": "1987-04-02", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752802Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_230cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752807Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_230cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752810Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_230cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752813Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_230cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 230cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_230cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752816Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_390cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752819Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_390cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752822Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_390cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752827Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_390cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u36 (UCAC4 333-124092) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["3.9m Anglo-Australian Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Siding Spring Observatory"], "data_types": ["Data"], "start_date": "1987-04-02", "stop_date": "1987-04-02", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752834Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u36_sso_390cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u36 (UCAC4 133-156970) Observed from the SSO 390cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u36 (UCAC4 333-124092).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u36_sso_390cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752837Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u5_lco_250cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752840Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u5_lco_250cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752843Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u5_lco_250cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u5 (UCAC2 25775788) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Irenee du Pont 2.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": ["Data"], "start_date": "1978-04-10", "stop_date": "1978-04-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752849Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles", "digitized strip chart"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u5_lco_250cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752853Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u5_lco_250cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u5 (UCAC2 25775788) Observed from the LCO 250cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u5 (UCAC2 25775788).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u5_lco_250cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752858Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u65_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752861Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u65_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752865Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u65_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752870Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u65_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u65 (UCAC3 133-382807) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1990-06-21", "stop_date": "1990-06-21", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752876Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u65_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u65 (UCAC3 133-382807) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u65 (UCAC3 133-382807).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u65_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752879Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u83_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752882Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u83_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752885Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u83_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752890Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u83_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u83 (UCAC2 22564036).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752893Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u83_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u83 (UCAC2 22564036) Observed from the IRTF 320cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u83 (UCAC2 22564036) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1991-06-25", "stop_date": "1991-06-25", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u83_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752900Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u84_irtf_320cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752903Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u84_irtf_320cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752905Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u84_irtf_320cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u84 (UCAC2 22563790) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["IRTF 3.2m", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "1991-06-28", "stop_date": "1991-06-28", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752911Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u84_irtf_320cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752914Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u84_irtf_320cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u84 (UCAC2 22563790) Observed from the IRTF 320cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u84 (UCAC2 22563790).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u84_irtf_320cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752920Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9539_ctio_400cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u9539 (UCAC2 23016546) by the rings and atmosphere of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1993-06-30", "stop_date": "1993-06-30", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752928Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9539_ctio_400cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752931Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9539_ctio_400cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752938Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9539_ctio_400cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752940Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9539_ctio_400cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u9539 (UCAC2 23016546) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u9539 (UCAC2 23016546).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9539_ctio_400cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752948Z", "keywords": ["uranus atmosphere", "uranus atmosphere stellar occultation", "uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9_lco_250cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope.", "description": "This collection contains calibrated and derived data resulting from the occultation of star u9 (UCAC2 25547691) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Irenee du Pont 2.5m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Las Campanas Observatory"], "data_types": ["Data"], "start_date": "1979-06-10", "stop_date": "1979-06-10", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.752955Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles", "digitized strip chart"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9_lco_250cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.752959Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9_lco_250cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.752964Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9_lco_250cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.752967Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u9_lco_250cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u9 (UCAC2 25547691) Observed from the LCO 250cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u9 (UCAC2 25547691).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u9_lco_250cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.752970Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_support:context::1.0", "title": "Context Collection for the Uranus Occultation Support Bundle", "description": "This collection identifies the context products of the Uranus occultation support bundle.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.753931Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_support:spice_kernels::1.0", "title": "Uranus Occultations SPICE Kernel collection", "description": "This collection contains the SPICE SPK kernel which supports Earth-based stellar occultations by the Uranus system.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": ["Uranus Rings", "Uranus"], "instruments": [], "instrument_hosts": [], "data_types": ["SPICE Kernel"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/collection_spice_kernels.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/spice_kernels/collection_spice_kernels.xml", "scraped_at": "2026-02-25T20:02:10.753935Z", "keywords": ["Observation Geometry"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_support:document::1.0", "title": "Document Collection for the Uranus Occultation Support Bundle.", "description": "This collection contains documentation associated with the data bundles of Uranus Earth-based occultations.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.753940Z", "keywords": ["uranus occultation documents", "uranus occultation users guide"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_support:data::1.0", "title": "Data Collection for the Uranus Occultation Support Bundle.", "description": "This collection contains the global occultation ring orbit fits of the rings of Uranus and the associated input files.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": ["Uranus Rings"], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.753946Z", "keywords": ["uranus atmosphere stellar occultation time series", "uranus rings", "uranus rings model"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_support:xml_schema::1.0", "title": "XML Schema Collection for the Uranus System stellar occultations support bundle.", "description": "This collection identifies the XML schema products of the archive bundle which supports data bundles of earth-based stellar occultations.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_support/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.753949Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:data::2.0", "title": "Data Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS", "description": "This collection identifies the data products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Saturn Rings"], "instruments": ["Cassini Orbiter Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "2005-06-08", "stop_date": "2017-06-18", "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023//data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.754901Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_ctio_400cm:context::1.0", "title": "Context Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the context products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.754917Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_ctio_400cm:browse::1.0", "title": "Browse Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the browse products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.754922Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_ctio_400cm:data::1.0", "title": "Data Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope", "description": "This collection contains calibrated and derived data resulting from the occultation of star u23 (UCAC2 22735323) by the rings of Uranus.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Earth-based Observations of Uranus System Stellar Occultations"], "targets": ["Uranus Rings"], "instruments": ["Victor Blanco 4.0m Telescope", "Generic InSb High Speed Photometer"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1985-05-04", "stop_date": "1985-05-04", "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.754929Z", "keywords": ["uranus rings", "uranus rings stellar occultation", "uranus rings stellar occultation radial profiles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_ctio_400cm:xml_schema::1.0", "title": "XML Schema Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the XML schema products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.754932Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:uranus_occ_u23_ctio_400cm:document::1.0", "title": "Document Collection for Uranus System Occultation of Star u23 (UCAC2 22735323) Observed from the CTIO 400cm Telescope", "description": "This collection identifies the document products of the archive bundle for the Uranus System Occultation of Star u23 (UCAC2 22735323).", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/uranus_occs_earthbased/uranus_occ_u23_ctio_400cm/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.754935Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager1_rss_jupiter_raw:data::1.0", "title": "Voyager 1 Jupiter Radio Occultation - Raw Open Loop Data Collection", "description": "This collection contains raw open loop radio science data from the Voyager 1 Jupiter occultation. Each product includes an original binary data file that contains S- and X-band samples from an open loop receiver along with housekeeping data, an ASCII file containing the housekeeping data extracted from the binary, and a pair of ASCII files containing S- and X-band samples also extracted from the binary. Most files contain 200 seconds of data.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "Voyager 1 Radio Science Instrumentation", "DSS 63 64-m Antenna"], "instrument_hosts": ["Voyager 1", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "1979-03-05", "stop_date": "1979-03-05", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.754980Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager1_rss_jupiter_raw:geometry::1.0", "title": "Voyager 1 Jupiter Radio Occultation - Geometry Data Collection", "description": "This collection contains non-SPICE trajectory and high-gain antenna pointing reconstructions for the radio occultation observations during the Voyager 1 Jupiter encounter.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["Voyager 1 Spacecraft Sensors"], "instrument_hosts": ["Voyager 1", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "1979-03-04", "stop_date": "1979-03-05", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/collection_geometry.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//geometry/collection_geometry.xml", "scraped_at": "2026-02-25T20:02:10.754985Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager1_rss_jupiter_raw:document::1.0", "title": "Voyager 1 Jupiter Radio Occultation - Document Collection", "description": "This collection contains an archive Software Interface Specification, a mission description, and high-gain antenna reconstruction documentation for the Voyager 1 Jupiter encounter. It also includes, as secondary members, documents describing the format of the binary data files and procedures for extraction of values.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "DSS 63 64-m Antenna", "Voyager 1 Radio Science Instrumentation", "Voyager 1 Spacecraft Sensors"], "instrument_hosts": ["NASA Deep Space Network", "Voyager 1"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.754990Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager1_rss_jupiter_raw:calib_freq::1.0", "title": "Voyager 1 Jupiter Radio Occultation - Frequency Calibration Collection", "description": "This collection contains estimates of USO frequency for both Voyager 1 and Voyager 2.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "Voyager 1 Radio Science Instrumentation", "DSS 63 64-m Antenna"], "instrument_hosts": ["Voyager 1", "NASA Deep Space Network"], "data_types": ["Document"], "start_date": "1979-03-05", "stop_date": "1979-03-05", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/collection_calib_freq.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//calib_freq/collection_calib_freq.xml", "scraped_at": "2026-02-25T20:02:10.754994Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager1_rss_jupiter_raw:context::1.0", "title": "Voyager 1 Radio Science Raw Data Context Collection", "description": "This collection contains the context products associated with the Voyager 1 Radio Science raw data bundle. Each product is a secondary member of the collection since it is maintained at the PDS Engineering Node.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "Voyager 1 Radio Science Instrumentation", "DSS 63 64-m Antenna"], "instrument_hosts": ["Voyager 1", "NASA Deep Space Network"], "data_types": ["Context"], "start_date": "1979-03-05", "stop_date": "1979-03-05", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.754997Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager1_rss_jupiter_raw:browse::1.0", "title": "Voyager 1 Jupiter Radio Occultation - Browse Data Collection", "description": "This collection contains tables and quick look plots from radio occultation observations during the Voyager 1 Jupiter encounter.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "Voyager 1 Radio Science Instrumentation", "DSS 63 64-m Antenna"], "instrument_hosts": ["Voyager 1", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "1979-03-05", "stop_date": "1979-03-05", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager1_rss_jupiter_raw//browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.755022Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager2_rss_jupiter_raw:browse::1.0", "title": "Voyager 2 Jupiter Radio Occultation - Browse Data Collection", "description": "This collection contains tables and quick look plots from radio occultation observations during the Voyager 2 Jupiter encounter.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "Voyager 2 Radio Science Instrumentation", "DSS 14 64-m Antenna"], "instrument_hosts": ["Voyager 2", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "1979-07-10", "stop_date": "1979-07-11", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.755026Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager2_rss_jupiter_raw:context::1.0", "title": "Voyager 2 Radio Science Raw Data Context Collection", "description": "This collection contains the context products associated with the Voyager 2 Radio Science raw data bundle. Each product is a secondary member of the collection since it is maintained at the PDS Engineering Node.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "Voyager 2 Radio Science Instrumentation", "DSS 14 64-m Antenna"], "instrument_hosts": ["Voyager 2", "NASA Deep Space Network"], "data_types": ["Context"], "start_date": "1979-07-10", "stop_date": "1979-07-11", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.755030Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager2_rss_jupiter_raw:calib_freq::1.0", "title": "Voyager 2 Jupiter Radio Occultation - Frequency Calibration Collection", "description": "This collection contains estimates of USO frequency for both Voyager 1 and Voyager 2.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "Voyager 2 Radio Science Instrumentation", "DSS 14 64-m Antenna"], "instrument_hosts": ["Voyager 2", "NASA Deep Space Network"], "data_types": ["Document"], "start_date": "1979-07-10", "stop_date": "1979-07-11", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/collection_calib_freq.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//calib_freq/collection_calib_freq.xml", "scraped_at": "2026-02-25T20:02:10.755034Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager2_rss_jupiter_raw:data::1.0", "title": "Voyager 2 Jupiter Radio Occultation - Raw Open Loop Data Collection", "description": "This collection contains raw open loop radio science data from the Voyager 2 Jupiter occultation. Each product includes an original data record (ODR) that contains S- and X-band samples from an open loop receiver along with housekeeping data, an ASCII file containing the housekeeping data extracted from the ODR, and a pair of ASCII files containing S- and X-band samples also extracted from the ODR. Most files contain 400 seconds of data.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "Voyager 2 Radio Science Instrumentation", "DSS 14 64-m Antenna"], "instrument_hosts": ["Voyager 2", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "1979-07-10", "stop_date": "1979-07-11", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/collection_data.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.755039Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager2_rss_jupiter_raw:document::1.0", "title": "Voyager 2 Jupiter Radio Occultation - Document Collection", "description": "This collection contains an archive Software Interface Specification and a mission description for the Voyager 2 Jupiter encounter. It also includes, as secondary members, documents describing the format of the binary data files and procedures for extraction of values.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["DSN Radio Science Instrumentation", "DSS 14 64-m Antenna", "Voyager 2 Radio Science Instrumentation", "Voyager 2 Spacecraft Sensors"], "instrument_hosts": ["NASA Deep Space Network", "Voyager 2"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.755043Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:voyager2_rss_jupiter_raw:geometry::1.0", "title": "Voyager 2 Jupiter Radio Occultation - Geometry Data Collection", "description": "This collection contains non-SPICE trajectory and high-gain antenna pointing reconstructions for the radio occultation observations during the Voyager 2 Jupiter encounter.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": ["Voyager Mission"], "targets": ["Jupiter"], "instruments": ["Voyager 2 Spacecraft Sensors"], "instrument_hosts": ["Voyager 2", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "1979-03-04", "stop_date": "1979-03-05", "browse_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/collection_geometry.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/voyager2_rss_jupiter_raw//geometry/collection_geometry.xml", "scraped_at": "2026-02-25T20:02:10.755047Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:context::1.0", "title": "Context Collection for the Saturn Ring System Solar Occultations Observed by Cassini UVIS", "description": "This collection identifies the context products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/collection_context.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.755050Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:browse::1.0", "title": "Browse Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS", "description": "This collection identifies the browse products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/collection_browse.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.755053Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:xml_schema::1.0", "title": "XML Schema Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS", "description": "This collection identifies the XML schema products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/collection_xml_schema.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.755057Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_uvis_solarocc_beckerjarmak2023:document::1.0", "title": "Document Collection for Saturn Ring System Solar Occultations Observed by Cassini UVIS", "description": "This collection identifies the document products of the archive bundle for the Saturn Ring System Solar Occultations Observed by Cassini UVIS.", "node": "rms", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/", "download_url": null, "label_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/collection_document.xml", "source_url": "https://pds-rings.seti.org/pds4/bundles/cassini_uvis_solarocc_beckerjarmak2023_v1.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.755060Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} diff --git a/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl b/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl index b7287b2..df50e79 100644 --- a/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl +++ b/akd_ext/tools/pds/pds_catalog/scraped_data/sbn_catalog.jsonl @@ -1,5493 +1,5493 @@ -{"id":"BRRISON-CAL-BIRC-2-GROUND-CAL-V1.0","title":"COMET NUCLEI PROPERTIES DELIVERY VOLUME","description":"This volume contains the data for the Balloon Rapid Response for Comet ISON (BRRISON) BIRC instrument.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:00.269760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CON-CAL-ALL-6-DOC-SET-V1.0","title":"CONTOUR MISSION ARCHIVE - DOCUMENTATION","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:01.283093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CON-CAL-CFI-1-EDR-GROUND-OCF-V1.0","title":"CONTOUR MISSION ARCHIVE - CFI DATA","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in their entirety the original volumes CON_1001-CON_1016, submitted for safing after mission end.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-cfi-1-edr-ground-ocf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:02.276700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{\"CON-CAL-CRISPIMAG-1-EDR-GROUND-OCF-V1.0\"}","title":"CONTOUR MISSION ARCHIVE","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in the entirety the original volumes CON_2001-CON_2009, submitted for safing after mission end.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispimag-1-edr-ground-ocf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:03.285912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CON-CAL-CRISPSPEC-1-EDR-GROUND-OCF-V1.0","title":"CONTOUR MISSION ARCHIVE","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispspec-1-edr-ground-ocf-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:04.287431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CON-CAL-TLM-1-EDR-GROUND-GSE-V1.0","title":"CONTOUR MISSION ARCHIVE","description":"Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in their entirety the original volumes CON_4001-CON_4022, submitted for safing after the mission end.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/con-cal-tlm-1-edr-ground-gse-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:05.288076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ITS-6-DOC-SET-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains documentation for the Deep Impact Mission archive. It specifically includes documentation for the raw and reduced cruise and 9P/Tempel 1 encounter data sets (for science and navigation) as well as the laboratory thermal-vacuum data sets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:06.334104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ITS-6-DOC-SET-V2.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., M.F. A'Hearn, D. Deming, K.P. Klaasen, D. Wellnitz, B. Carcich, and T. Hewagama, DEEP IMPACT/EPOXI DOCUMENTATION SET V2.0, DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V2.0, NASA Planetary Data System, 2009.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:07.344418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ITS-6-DOC-SET-V3.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., M.F. A'Hearn, D. Deming, K.P. Klaasen, B. Carcich, D. Wellnitz, and T. Hewagama, DEEP IMPACT/EPOXI DOCUMENTATION SET V3.0, DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V3.0, NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:08.374887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V4.0","title":"DEEP IMPACT/EPOXI DOCUMENT COLLECTION V4.0","description":"Deep Impact prime mission and the EPOXI mission. It includes revisions to documentation relating to data from Deep Impact and EPOXI mission that were recalibrated and archived from mid-2012 through early 2014: Calibrated HRII EPOXI/DIXI Hartley 2 V2.0 and V3.0, Calibrated HRII/HRIV/MRI EPOXI/EPOCh Earth V2.0, Calibrated HRIV/MRI EPOXI/EPOCh Mars V2.0, Calibrated HRII EPOXI/EPOCh Mars V1.0 and Calibrated HRII/HRIV/MRI/ITS Deep Impact Tempel 1 V3.0. It also includes documentation for datasets that are new to the EPOXI archive as of early 2014: Raw and Calibrated HRII/HRIV/MRI Comet Garradd V1.0, Raw and Calibrated HRII/MRI Comet ISON V1.0, Calibrated HRII Lunar Spectra V1.0, and EPOXI Instrument Thermal Telem V3.0 (for entire EPOXI mission).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:09.384103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI-C-HRIV/ITS/MRI-5-MOVIE-COLL-V1.0","title":"DEEP IMPACT MOVIE COLLECTION","description":"This volume contains a collection of movies of comet 9P/Tempel 1 created from observations made by instrument aboard the Deep Impact flyby and impactor spacecraft.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di-c-hriv_its_mri-5-movie-coll-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:10.392354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-2-9P-ENCOUNTER-V1.0","title":"DEEP IMPACT ENCOUNTER RAW HRII SPECTRAL IMAGES","description":"This volume contains raw 9P/Tempel 1 spectra and science calibrations acquired by the Deep Impact High Resolution Instrument's Infrared Spectrometer (HRII) during the encounter phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:11.305105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-2-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - HRII RAW SPECTRA","description":"This dataset contains raw, 1.05- to 4.8-micron spectral images of comet C/Garradd (2009 P1) acquired by the High Resolution Infrared Spectrometer on 26 March and 02-03 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:12.306727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-2-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRII RAW SPECTRA","description":"This dataset contains raw, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer (HRII) from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:13.308825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-2-EPOXI-ISON-V1.0","title":"EPOXI C/ISON (2012 S1) - HRII RAW SPECTRA","description":"This dataset contains raw, 1.05- to 4.8-micron spectral images of comet C/ISON (2012 S1) acquired by the High Resolution Infrared Spectrometer on 16-17 February 2013 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:14.314883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"4-9P-ENCOUNTER-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S. A., B. Carcich, T. McCarthy, M. Desnoyer, and K.P. Klaasen, DEEP IMPACT 9P/TEMPEL ENCOUNTER - REDUCED HRII SPECTRA V1.0, DIF-C-HRII-3/4-9P-ENCOUNTER-V1.0, NASA Planetary Data System, 2005.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:15.365925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"4-9P-ENCOUNTER-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains version 2.0 of calibrated spectral images of comet 9P/Tempel 1 acquired by the Deep Impact High Resolution Instrument Infrared Spectrometer during the encounter phase of the mission. Version 2.0 includes uncleaned and cleaned radiance data with improved calibration and geometry. The data were collected from 20 June through 6 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:16.380118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-3/4-9P-ENCOUNTER-V3.0","title":"DIHI9P_3201: Data from 2005-06-20 to 07-06, V3.0","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 9P/Tempel 1 the acquired by the High Resolution Infrared Spectrometer (HRII) from 20 June through 06 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and corrects observation times with a maximum difference of about 40 milliseconds, corrects an error in the IR absolute calibration that previously inflated all spectra by a factor of 2, and upgrades the ALTFF line-dependent integration time. Version 3.0 also includes a new flat-field file derived from EPOXI lunar calibrations, improved quadrant-averaged linearity coefficients, and a refinement in the absolute spectral calibration curve.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:17.318347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-3/4-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet C/Garradd (2009 P1) acquired by the High Resolution Infrared Spectrometer on 26 March and 02-03 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:18.321655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"4-EPOXI-HARTLEY2-V1.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:19.409571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"4-EPOXI-HARTLEY2-V2.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Version 2.0 includes the application of new per-pixel linearity and calibration files such flats, darks, and absolute calibration curves that were derived using the new linearization.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:20.433172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-3/4-EPOXI-HARTLEY2-V3.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer (HRII) from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Version 3.0 includes the application of scaled master dark subtraction for DOY 307 and in scene dark subtraction for DOY 311-313, as well as the use of an average per scan optical bench temperature in the pipeline processing. Version 3 also includes the calibration enhancements implemented in Version 2 of this dataset: a new per-pixel linearity correction treatment and its propagation through the calibration steps (i.e., bad-pixel maps, flat-field file update, revised spectral calibration curve), new mode-dependent master darks, an optimized scaling factor for the master dark, and a refinement in the absolute spectral calibration curve.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:21.404272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-3/4-EPOXI-ISON-V1.0","title":"EPOXI C/ISON (2012 S1) - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet C/ISON (2012 S1) acquired by the High Resolution Infrared Spectrometer on 16-17 February 2013 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:22.330101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII-5-TEMPEL1-SURF-TEMP-MAPS-V1.0","title":"DEEP IMPACT 9P/TEMPEL 1 SURFACE TEMPERATURE MAPS","description":"This volume contains two-dimensional infrared thermal maps of the surface of comet 9P/Tempel 1. The maps were derived from three spatially resolved scans of the nucleus acquired by the Deep Impact High Resolution Infrared Spectrometer (HRII) about 19, 12, and 5 minutes before the impact on 4 July 2005. A high-resolution, 120-m/pixel, thermal composite map is also included. Surface temperatures were derived from 1.0- to 4.0-micron data and ranged from 272K to 336K +/- 7K. This data set also includes the incidence and emission angle maps (mu0 and mu) associated with each thermal map and a table of temperatures assigned to plates in the Tempel 1 shape model that were illuminated and visible near the time of impact.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-5-tempel1-surf-temp-maps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:23.328991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRII/HRIV/MRI-6-TEMPS-V1.0","title":"DEEP IMPACT HRII/HRIV/MRI INSTRUMENT TEMPERATURES","description":"This data set provides resampled (raw, averaged) temperature measurements from 27 sensors located in the HRII, HRIV, and MRI instruments and on the HRI and MRI telescopes, instrument platform, and solar wings of the Deep Impact flyby spacecraft. The data begin on 15 January 2005, three days after launch, and continue through 9 July 2005, five days after the encounter with comet 9P/Tempel 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii_hriv_mri-6-temps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:24.330310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-2-9P-ENCOUNTER-V1.0","title":"DEEP IMPACT ENCOUNTER RAW HRIV IMAGES","description":"This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact High Resolution Instrument's Visible CCD during the encounter phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:25.333850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-2-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - HRIV RAW IMAGES","description":"This dataset contains raw clear-filter images of comet C/Garradd (2009 P1) acquired by the High Resolution Visible CCD (HRIV) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:26.342455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-2-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV RAW IMAGES","description":"This dataset contains raw clear-filter images of comet 103/P Hartley 2 acquired by the High Resolution Visible CCD (HRIV) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Four color-filter sets (350-950 nm) were acquired during the hour about closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:27.341490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-2-NAV-9P-ENCOUNTER-V1.0","title":"DIHVNV_2001: Images from 2005-06-03 to 07-04","description":"This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact High Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 3 June to 4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:28.346454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-3-NAV-9P-ENCOUNTER-V1.0","title":"DIHVNV_3001: Images from 2005-07-03 to 07-04","description":"This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact High Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected on 3-4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:29.346430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-3/4-9P-ENCOUNTER-V3.0","title":"DIHV9P_3201: Data from 2005-05-01 to 07-04, V3.0","description":"This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the High Resolution Instrument Visible CCD (HRIV) from 01 May through 04 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F, and the application of a horizontal destriping process.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-9p-encounter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:32.417498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-3/4-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - HRIV CALIBRATED IMAGES","description":"This dataset contains calibrated clear-filter images of comet C/Garradd (2009 P1) acquired by the High Resolution Visible CCD (HRIV) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:33.347798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-3/4-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV CALIBRATED IMAGES","description":"This dataset contains calibrated clear-filter images of comet 103/P Hartley 2 acquired by the High Resolution Visible CCD (HRIV) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Four color-filter sets (350-950 nm) were acquired during the hour about closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:34.358401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV-5-EPOXI-HARTLEY2-DECONV-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV DECONVOLVED IMAGES","description":"This dataset contains deconvolved High Resolution Visible CCD (HRIV) images of the nucleus of comet 103/P Hartley 2. Clear and color filter (350-950 nm) images, which were acquired within +/- one hour of closest approach on 04 November 2010 at 13:59:47 UTC during the EPOXI mission, have been restored to retrieve much of the resolution that was lost due to the defocus of the HRI telescope. Image scales range from 1.4 to 85.5 m/pixel.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-5-epoxi-hartley2-deconv-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:35.360986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MRI-5-TEMPEL1-SHAPE-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Farnham, T.L. and Thomas, P.C, SHAPE MODEL OF COMET TEMPEL 1, DIF-C-HRIV/ITS/MRI-5-TEMPEL1-SHAPE-MODEL-V1.0, NASA Planetary Data System, 2006.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_its_mri-5-tempel1-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:36.425107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV/ITS/MRI-5-TEMPEL1-SHAPE-V2.0","title":"DIMODL_0001: 9P/TEMPEL 1 SHAPE MODELS","description":"This delivery volume holds the data set containing the detailed plate shape model of comet 9P/Tempel 1, as derived from images of the comet that were obtained by the Deep Impact spacecraft and by the Stardust spacecraft around the times of their respective closest approaches.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_its_mri-5-tempel1-shape-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:37.366777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-HRIV/MRI-5-HARTLEY2-SHAPE-V1.0","title":"EPXH2_2000: 103P/HARTLEY 2 SHAPE MODELS","description":"This delivery volume holds the data set containing the detailed plate shape model of comet 103P/Hartley 2, as derived from images of the comet that were obtained by the Deep Impact spacecraft around the times of closest approach for the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_mri-5-hartley2-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:38.367662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-2-9P-ENCOUNTER-V1.0","title":"DEEP IMPACT ENCOUNTER RAW MRI IMAGES","description":"This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact Medium Resolution Instrument's Visible CCD during the encounter phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:39.369867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-2-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - MRI RAW IMAGES","description":"This dataset contains raw clear-filter, C2, CN, OH and dust continuum images of comet C/Garradd (2009 P1) acquired by the Medium Resolution Visible CCD (MRI) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:40.365788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-2-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - MRI RAW IMAGES","description":"This dataset contains raw images of comet 103/P Hartley 2 acquired by the Medium Resolution Visible CCD (MRI) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Clear-filter and CN images of the comet were acquired throughout this phase; OH, C2, and dust continuum images were only acquired for several days spanning closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:41.372295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-2-EPOXI-ISON-V1.0","title":"EPOXI C/ISON (2012 S1) - MRI RAW IMAGES","description":"This dataset contains raw clear-filter, CN, OH and dust continuum images of comet C/ISON (2012 S1) acquired by the Medium Resolution Visible CCD (MRI) from 17 January through 06 March 2013 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:42.413471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-2-NAV-9P-ENCOUNTER-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 1 May to 4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:43.520459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-2-NAV-9P-ENCOUNTER-V1.1","title":"DIMVNV_200X: Images from 2005-05-01 to 07-04","description":"This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 1 May to 4 July 2005. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-nav-9p-encounter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:44.471508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-3-NAV-9P-ENCOUNTER-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation of the flyby spacecraft as well as for scientific investigations. These data were collected from 15 May to 4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:45.524575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-3-NAV-9P-ENCOUNTER-V1.1","title":"DIMVNV_300X: Images from 2005-05-15 to 07-04","description":"This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 15 May to 4 July 2005. In this version (1.1) of the data set, the modified Julian date values, found in the PDS data labels of version 1.0, were replaced with full Julian dates. This data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3-nav-9p-encounter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:46.382600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-3/4-9P-ENCOUNTER-V3.0","title":"DIMV9P_3201: Data from 2005-05-01 to 07-06, V3.0","description":"This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the Medium Resolution Instrument Visible CCD (MRI) from 01 May through 06 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F, and the application of a horizontal destriping process and improved absolute radiometric calibration constants.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-9p-encounter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:49.390415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-3/4-EPOXI-GARRADD-V1.0","title":"EPOXI C/GARRADD (2009 P1) - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated clear-filter, C2, CN, OH and dust continuum images of comet C/Garradd (2009 P1) acquired by the Medium Resolution Visible CCD (MRI) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-garradd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:50.388671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-3/4-EPOXI-HARTLEY2-V1.0","title":"EPOXI 103P/HARTLEY2 ENCOUNTER - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated images of comet 103/P Hartley 2 acquired by the Medium Resolution Visible CCD (MRI) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Clear-filter and CN images of the comet were acquired throughout this phase; OH, C2, and dust continuum images were only acquired for several days spanning closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-hartley2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:51.400895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-3/4-EPOXI-ISON-V1.0","title":"EPOXI C/ISON (2012 S1) - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated clear-filter, CN, OH and dust continuum images of comet C/ISON (2012 S1) acquired by the Medium Resolution Visible CCD (MRI) from 17 January through 06 March 2013 during the Cruise 3 phase of the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-ison-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:52.392573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-5-EPOXI-HARTLEY2-PHOTOM-V1.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains clear-filter, CN, OH, C2, and dust-continuum photometric measurements of comet 103/P Hartley 2 derived from calibrated images acquired by the Medium Resolution Visible CCD (MRI) from 01 October through 26 November 2010, during the Hartley 2 encounter phase of the EPOXI mission. Two different methods were used: simple circular aperture photometry and azimuthal averaged aperture photometry, which removed stars. The results and uncertainties for both procedures are included in this dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-5-epoxi-hartley2-photom-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:53.475193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-MRI-5-TEMPEL1-PHOTOMETRY-V1.0","title":"DEEP IMPACT 9P/TEMPEL 1 MRI PHOTOMETRY","description":"This data set contains photometric measurements of comet 9P/Tempel 1 from images taken with the Medium Resolution CCD Instrument during the approach phase of the Deep Impact mission (from 1 May 2005 to 4 July 2005). These data, based on circular apertures ranging from 5 to 30 pixels in diameter, were derived from both science and navigation images taken through clear filters.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-5-tempel1-photometry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:54.474157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-C-RSS-1-9P-ENCOUNTER-V1.0","title":"VOLUME 1","description":"This volume contains raw Radio Science data for the Deep Impact flyby spacecraft, collected from June 27 through July 11, 2005, during the encounter with comet 9P/Tempel 1. There was no comet gravity signal detected in the tracking data and hence no gravity science. In addition, there was no evidence in the spacecraft tracking data for dust or gas drag near the time of closest approach.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-c-rss-1-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:55.482467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRII-2-9P-CRUISE-V1.0","title":"DEEP IMPACT CRUISE RAW HRII CALIB SPECTRAL IMAGES","description":"This volume contains raw spectra for science calibrations acquired by the Deep Impact High Resolution Instrument Infrared Spectrometer (HRII) during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain spectra of the comet.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:56.405669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - HRII RAW SPECTRA V1.0, DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-epoxi-calibrations-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:57.459217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V2.0","title":"EPOXI INFLIGHT CALIBRATIONS - HRII RAW SPECTRA","description":"This dataset contains version 2.0 of raw calibration spectra acquired by the High Resolution Infrared Spectrometer (HRII) from 04 October 2007 through 07 February 2011 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration data only through May 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-epoxi-calibrations-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:58.407103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRII-2-GROUND-TV1-V1.0","title":"DEEP IMPACT THERMAL-VACUUM 1 DATA, HRII INSTRUMENT","description":"This volume contains spectral image data acquired by the High Resolution Imager's Infrared Spectrometer (HRII) during the first preflight thermal-vacuum test (TV1) of the Deep Impact instruments, from 2002-06-27 through 2002-07-02. Data in the volume supports the calibration of the HRII instrument.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-ground-tv1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:05:59.413172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRII/HRIV-2-GROUND-TV2-V1.0","title":"DEEP IMPACT THERMAL-VACUUM 2 DATA, HRII/HRIV INSTRUMENTS","description":"This volume contains image data acquired by the High Resolution Instrument's IR Spectrometer (HRII) and Visual CCD (HRIV) during the second preflight thermal-vacuum test (TV2) of the Deep Impact instruments, from 2002-08-15 through 2002-09-03. These data support the calibration of the HRII and HRIV instruments.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv-2-ground-tv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:00.416067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRII/HRIV/MRI-2-GROUND-TV3-V1.0","title":"DEEP IMPACT THERMAL-VACUUM 4 DATA, HRII/HRIV/MRI INSTRUMENTS","description":"This volume contains image data acquired by the High Resolution Instrument's IR Spectrometer (HRII) and Visual CCD (HRIV) and the Medium Resolution Instrument's Visual CCD (MRI) during the fourth preflight thermal-vacuum test (TV4) of the Deep Impact instruments from 2003-002-23 through 2003-03-12. These data support the calibration of the HRII, HRIV, and MRI instruments.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-2-ground-tv4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:01.411122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MRI-6-EPOXI-TEMPS-V1.0","title":"Menu: Skip within this page","description":"Abstract: Raw temperature measurements from telemetry for the EPOXI mission from 27 sensors located in the HRII, HRIV, and MRI instruments and on the HRI and MRI telescopes, instrument platform, and solar wings of the Deep Impact flyby spacecraft. The data were collected from 17 December 2007 through 31 December 2008, during the first cruise and EPOCh phases of the mission as well as the early part of the second cruise phase. Future versions of this data set will include thermal data from the remaining part of the second cruise phase and the 103P/Hartley 2 encounter phase (DIXI) of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:02.476764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MRI-6-EPOXI-TEMPS-V2.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission, from 04 October 2007 through 06 February 2011. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:03.482369","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MRI-6-EPOXI-TEMPS-V2.1","title":"Menu: Skip within this page","description":"Abstract: This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission, from 04 October 2007 through 06 February 2011. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft. Version 2.1 corrects a typo in a column description in 5 data labels.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v2.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:04.493467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRII/HRIV/MRI-6-EPOXI-TEMPS-V3.0","title":"EPOXI HRII/HRIV/MRI INSTRUMENT TEMPERATURES","description":"This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission from 04 October 2007 to 08 August 2013. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft. For Version 3.0, thermal data from 06 February 2011 to 08 August 2013 were added.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:05.481775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRIV-2-9P-CRUISE-V1.0","title":"DEEP IMPACT CRUISE RAW HRIV CALIB IMAGES","description":"This volume contains raw images for science calibrations acquired by the Deep Impact High Resolution Instrument Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:06.493156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - HRIV RAW IMAGES V1.0, DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-epoxi-calibrations-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:07.541288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V2.0","title":"EPOXI INFLIGHT CALIBRATIONS - HRIV RAW IMAGES","description":"This dataset contains version 2.0 of raw calibration images acquired by the High Resolution Visible CCD (HRIV) from 04 October 2007 through 28 November 2010 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration only through February 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-epoxi-calibrations-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:08.430246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRIV-2-NAV-9P-CRUISE-V1.0","title":"DIHVNV_1001: Images from 2005-01-14 to 04-25","description":"This data set contains raw calibration and test images acquired by the Deep Impact High Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-nav-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:09.446502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-HRIV-6-EPOXI-STELLAR-PSFS-V1.0","title":"EPOXI INFLIGHT CALIBRATIONS - HRIV STELLAR PSFS","description":"This data set contains a clear-filtered High Resolution Visible CCD (HRIV) point spread function (PSF) for exoplanet transit targets GJ 436, HAT-P-4, HAT-P-7, TrES-2, TrES-3, XO-2, and XO-3 and at least one filtered HRIV PSF for stellar calibrator targets for the EPOXI mission. The PSFs were produced by applying a drizzle method to sets of HRIV images of the targets acquired during 2008. A PSF for transit target WASP-3 was not produced due to a crowded star field.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-6-epoxi-stellar-psfs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:10.428596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-MRI-2-9P-CRUISE-V1.0","title":"DEEP IMPACT CRUISE RAW MRI CALIB IMAGES","description":"This volume contains raw images for science calibrations acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:11.435987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - MRI RAW IMAGES V1.0, DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-epoxi-calibrations-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:12.496987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V2.0","title":"EPOXI INFLIGHT CALIBRATIONS - MRI RAW IMAGES","description":"This dataset contains version 2.0 of raw calibration images acquired by the Medium Resolution Visible CCD (MRI) from 04 October 2007 through 28 November 2010 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration only through July 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-epoxi-calibrations-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:13.447222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-MRI-2-NAV-9P-CRUISE-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains raw calibration and test images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-nav-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:14.513333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-CAL-MRI-2-NAV-9P-CRUISE-V1.1","title":"DIMVNV_1001: Images from 2005-01-14 to 04-25","description":"This data set contains raw calibration and test images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-nav-9p-cruise-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:15.448372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-E-HRII-2-EPOXI-EARTH-V1.0","title":"EPOXI EARTH OBSERVATIONS - HRII RAW SPECTRA","description":"This data set contains raw, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice per hour. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-2-epoxi-earth-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:16.499104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"4-EPOXI-EARTH-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains calibrated, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice per hour. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-3_4-epoxi-earth-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:17.590292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-E-HRII-3/4-EPOXI-EARTH-V2.0","title":"EPOXI EARTH OBSERVATIONS - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice every 2 hours. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009. Version 2 corrects an error in the IR absolute calibration that previously inflated all spectra by a factor of 2.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-3_4-epoxi-earth-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:18.452135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-E-HRIV-2-EPOXI-EARTH-V1.0","title":"EPOXI EARTH OBSERVATIONS - HRIV RAW IMAGES","description":"This data set contains raw, narrow band filter images (350-950 nm) of Earth acquired by the Deep Impact High Resolution Visible CCD (HRIV) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. On 27 September 2009 during the first attempt of an Earth south polar observation, only seven HRIV frames were acquired before fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-2-epoxi-earth-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:19.455389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-E-HRIV-3/4-EPOXI-EARTH-V2.0","title":"EPOXI EARTH OBSERVATIONS - HRIV CALIBRATED IMAGES","description":"This dataset contains calibrated, narrow band filter images (350-950 nm) of Earth acquired by the Deep Impact High Resolution Visible CCD (HRIV) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. On 27 September 2009 during the first attempt of an Earth south polar observation, only seven HRIV frames were acquired before fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009. Version 2.0 includes the application of a horizontal destriping process and revised electronic crosstalk calibration files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-3_4-epoxi-earth-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:21.462776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-E-MRI-2-EPOXI-EARTH-V1.0","title":"EPOXI EARTH OBSERVATIONS - MRI RAW IMAGES","description":"This data set contains raw, 750-nm filter images of Earth acquired by the Deep Impact Medium Resolution Visible CCD (MRI) during the EPOCh and Cruise 2 phases of the EPOXI mission. The MRI instrument was only used during the first Earth observing period on 18-19 March 2008 and the last two on 27-28 March and 04-05 October 2009. Each observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to serve as context spectra. On 27-28 September 2009 during the first attempt at Earth south polar observations, a full set of MRI context images was acquired although the HRII and HRIV instruments were turned off by fault protection shortly after the sequence started.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-2-epoxi-earth-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:22.465275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-E-MRI-3/4-EPOXI-EARTH-V2.0","title":"EPOXI EARTH OBSERVATIONS - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated, 750-nm filter images of Earth acquired by the Deep Impact Medium Resolution Visible CCD (MRI) during the EPOCh and Cruise 2 phases of the EPOXI mission. The MRI instrument was only used during the first Earth observing period on 18-19 March 2008 and the last two on 27-28 March and 04-05 October 2009. Each observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to serve as context spectra. On 27-28 September 2009 during the first attempt at Earth south polar observations, a full set of MRI context images was acquired although the HRII and HRIV instruments were turned off by fault protection shortly after the sequence started. Version 2.0 includes the application of a horizontal destriping process, new absolute calibration constants for filters, and revised electronic crosstalk calibration files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-3_4-epoxi-earth-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:24.468739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-L-HRII-3/4-EPOXI-LUNAR-CALS-V1.0","title":"EPOXI INFLIGHT LUNAR CALS - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectral images of the Moon acquired the High Resolution Infrared Spectrometer (HRII) from 29 December 2007 through 18 December 2009 during several in-flight instrument calibrations for the EPOXI mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-l-hrii-3_4-epoxi-lunar-cals-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:25.468070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-M-HRII-2-EPOXI-MARS-V1.0","title":"EPOXI MARS OBSERVATIONS - HRII RAW SPECTRA","description":"This data set contains raw, 1.05- to 4.8-micron spectra of Mars acquired by the High Resolution Infrared Spectrometer (HRII) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, spectra were acquired twice per hour.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-2-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:26.472526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-M-HRII-3/4-EPOXI-MARS-V1.0","title":"EPOXI MARS OBSERVATIONS - HRII CALIBRATED SPECTRA","description":"This dataset contains calibrated, 1.05- to 4.8-micron spectra of Mars acquired by the High Resolution Infrared Spectrometer (HRII) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and spectra were acquired twice every two hours.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-3_4-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:27.505366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-M-HRIV-2-EPOXI-MARS-V1.0","title":"EPOXI MARS OBSERVATIONS - HRIV RAW IMAGES","description":"This data set contains raw narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-2-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:28.550815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"4-EPOXI-MARS-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains calibrated narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-3_4-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:29.607435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-M-HRIV-3/4-EPOXI-MARS-V2.0","title":"EPOXI MARS OBSERVATIONS - HRIV CALIBRATED IMAGES","description":"This dataset contains calibrated narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. Version 2.0 includes the application of a horizontal destriping process and revised electronic crosstalk calibration files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-3_4-epoxi-mars-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:30.482635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-M-MRI-2-EPOXI-MARS-V1.0","title":"EPOXI MARS OBSERVATIONS - MRI RAW IMAGES","description":"This data set contains raw 750-nm filter images of Mars acquired by the Deep Impact Medium Resolution Visible CCD (MRI) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to provide context for the spectral scans.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-2-epoxi-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:31.477791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-M-MRI-3/4-EPOXI-MARS-V2.0","title":"EPOXI MARS OBSERVATIONS - MRI CALIBRATED IMAGES","description":"This dataset contains calibrated 750-nm filter images of Mars acquired by the Deep Impact Medium Resolution Visible CCD (MRI) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to provide context for the spectral scans. Version 2.0 includes the application of a horizontal destriping process, new absolute calibration constants for filters, and revised electronic crosstalk calibration files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-3_4-epoxi-mars-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:33.489183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-X-HRIV-2-EPOXI-EXOPLANETS-V1.0","title":"EPOXI EXOPLANET TRANSIT OBS - HRIV RAW IMAGES","description":"This data set set contains raw images of eight known transiting extrasolar planetary systems (hot Jupiters) acquired by the Deep Impact High Resolution Visible CCD during the EPOCh phase of the EPOXI mission. From 22 January through 31 August 2008 the HRIV CCD collected over 172,000 usable, photometric-quality visible light images of these transiting planet systems: HAT-P-4, HAT-P-7, GJ 436, TrES-2, TrES-3, XO-2, XO-3, and WASP-3. Time series of continuous 50-second integrations were used with the clear filter (#6) to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses. An exception was XO-3 which was only observed briefly due to the spacecraft entering safe mode. The transiting planet systems were observed in the integrated light of the planet and star; no spatially resolved image of the planet was possible. This data set also contains a time series of raw clear filter (#1) images of known exoplanet transit microlensing target MOA-2009-BLG-266 acquired by HRIV on 5-8 October 2009 for EPOCh.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-2-epoxi-exoplanets-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:34.492977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-X-HRIV-3-EPOXI-EXOPLANETS-V1.0","title":"EPOXI EXOPLANET TRANSIT OBS - HRIV CALIBRATED IMAGES","description":"This data set set contains calibrated images of eight known transiting extrasolar planetary systems (hot Jupiters) acquired by the Deep Impact High Resolution Visible CCD during the EPOCh phase of the EPOXI mission. From 22 January through 31 August 2008 the HRIV CCD collected over 172,000 usable, photometric-quality visible light images of these transiting planet systems: HAT-P-4, HAT-P-7, GJ 436, TrES-2, TrES-3, XO-2, XO-3, and WASP-3. Time series of continuous 50-second integrations were used with the clear filter (#6) to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses. An exception was XO-3 which was only observed briefly due to the spacecraft entering safe mode. The transiting planet systems were observed in the integrated light of the planet and star; no spatially resolved image of the planet was possible. This data set also contains a time series of raw clear filter (#1) images of known exoplanet transit microlensing target MOA-2009-BLG-266 acquired by HRIV on 5-8 October 2009 for EPOCh.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-3-epoxi-exoplanets-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:35.493667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DIF-X-HRIV-5-EPOXI-EXOPLANETS-PHOT-V1.0","title":"EPOXI EXOPLANET TRANSIT OBS - HRIV STELLAR PHOTOMETRY","description":"This data set contains aperture photometry of known transiting planet systems GJ 436, HAT-P-4, HAT-P-7, TrES-2, TrES-3, and WASP-3 derived from radiance calibrated, clear #6 filtered images acquired by the Deep Impact High Resolution Visible CCD from 22 January through 31 August 2008 during the EPOCh phase of the EPOXI mission. The photometry data were derived from time series of continuous 50-second integrations used to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-5-epoxi-exoplanets-phot-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:36.506034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-C-ITS-2-9P-ENCOUNTER-V1.0","title":"DEEP IMPACT ENCOUNTER RAW ITS IMAGES","description":"This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact Impactor Targeting Sensor's Visible CCD during the encounter phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:37.498053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-C-ITS-2-NAV-9P-ENCOUNTER-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains raw comet 9P/Tempel 1 and calibration images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected from 6 May to 4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:38.569833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-C-ITS-2-NAV-9P-ENCOUNTER-V1.1","title":"DIIVNV_2001: Images from 2005-05-06 to 07-04","description":"This data set contains raw comet 9P/Tempel 1 and calibration images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected from 6 May to 4 July 2005. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-nav-9p-encounter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:39.565212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-C-ITS-3-NAV-9P-ENCOUNTER-V1.0","title":"DIIVNV_3001: Images from 2005-07-03 TO 07-04","description":"This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected on 3-4 July 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3-nav-9p-encounter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:40.669384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-C-ITS-3/4-9P-ENCOUNTER-V3.0","title":"DIIV9P_3201: Data from 2005-07-03 to 07-04, V3.0","description":"This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the Impactor Targeting Sensor Visible CCD (ITS) after the impactor was released from the flyby spacecraft on 03 July 2005 during the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, and the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3_4-9p-encounter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:43.508245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-CAL-ITS-2-9P-CRUISE-V1.0","title":"DEEP IMPACT CRUISE RAW ITS CALIB IMAGES","description":"This volume contains raw images for science calibrations acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:44.512232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-CAL-ITS-2-GROUND-TV3-V1.0","title":"DEEP IMPACT THERMAL-VACUUM 3 DATA, HRII INSTRUMENT","description":"This volume contains image data acquired by the Impactor Targeting Sensor's Visual CCD (ITS) during the third preflight thermal-vacuum test (TV3) of the Deep Impact instruments, from 2003-01-16 through 2003-01-30. Data in the volume supports the calibration of the ITS instrument.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-ground-tv3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:45.511713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-CAL-ITS-2-NAV-9P-CRUISE-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains raw calibration and test images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft. These data were collected from 7 April to 30 April 2005. The comet was not imaged during cruise.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-nav-9p-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:46.583901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DII-CAL-ITS-2-NAV-9P-CRUISE-V1.1","title":"DIIVNV_1001: Images from 2005-04-07 to 04-30","description":"This data set contains raw calibration and test images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft. These data were collected from 7 April to 30 April 2005. The comet was not imaged during cruise. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-nav-9p-cruise-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:47.516560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-I0034-3-UH22M-TMPL1-V1.0","title":"DI UH22M RDR TMPL1 IMAGES/PHOT 1997-XXXX","description":"This volume set currently contains the data from 1997 through Feb 2000 for the UH2.2M Reduced 9P/Tempel 1 Images/Astrometry V1.0 data set, DI/EAR-C-I0034-3-UH22M-TMPL1-V1.0, in support of the Deep Impact mission. This data set is an ongoing, cumulative archive.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0034-3-uh22m-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:48.514409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0","title":"IRTF NEAR-IR IMAGES OF COMET 9P","description":"This volume contains the data for the IRTF Near-IR Imaging of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0046-2-irtf-nirimg-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:49.525731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-I0046-2-IRTF-NIRSPEC-TMPL1-V1.0","title":"IRTF NEAR-IR SPECTRA OF COMET 9P","description":"This volume contains the data for the IRTF Near-IR Spectroscopy of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0046-2-IRTF-NIRSPEC-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0046-2-irtf-nirspec-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:50.571758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0","title":"IRTF MID-IR IMAGES OF COMET 9P","description":"This volume contains the data for the IRTF Mid-IR Imaging of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0071-2-irtf-mir-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:51.580859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-I0276-2/3-MARTIR15M-TMPL1-V1.0","title":"SBN 2008 SUPPORT ARCHIVES DELIVERY VOLUME","description":"This volume contains the data for the San Pedro Martir Optical Imaging of 9P/Tempel 1 V1.0 data set, ID: DI/EAR-C-I0276-2/3-MARTIR15M-TMPL1-V1.0. The data set was submitted by Kevin Walsh. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0276-2_3-martir15m-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:52.528464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-KECK1LWS-3-9P-IMAGES-PHOT-V1.0","title":"KECK I LWS IMAGES AND PHOTOMETRY OF COMET 9P","description":"This volume contains raw and reduced mid-infrared images and photometry of comet 9P/Tempel 1, the target of the Deep Impact mission. Images were acquired on the night of 21 August 2000, about 7.5 months after perihelion, by Y. Fernandez, C. Lisse, M. A'Hearn and M. Belton using the Long Wavelength Spectrometer instrument at the Keck I telescope. Data in this volume supports analysis of the size and albedo of the nucleus of 9P/Tempel 1 in support of the Deep Impact mission. Version 2 of this volume corrects some minor file naming problems and omissions in the catalog/ directory.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-keck1lws-3-9p-images-phot-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:53.536127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-LO72CCD-3-9P-IMAGES-PHOT-V1.0","title":"LOWELL 72-IN IMAGES AND PHOTOMETRY OF COMET 9P","description":"This volume contains broadband R images and derived photometry of comet 9P/Tempel 1, the target of the Deep Impact mission. The data were acquired by M. Buie at the Perkins 72-inch telescope of the Lowell Observatory during 11 nights of observing from 28 September 2000 through 14 January 2001, about 8.5 to 12.5 months after the comet passed through perihelion on 2 January 2000. The data in this volume support the analysis of the rotation period and dust environment of comet 9P/Tempel 1 for the Deep Impact mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lo72ccd-3-9p-images-phot-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:54.537553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-LPLCCD-3-MTBG61-TMPL1-V1.0","title":"MT BIGELOW 61-INCH IMAGES OF TEMPEL 1 - DATA SAFE","description":"Observations of 9P/Tempel 1 made with the 61-inch Kuiper telescope on Mt. Bigelow by Uwe Fink in 1994: six images taken over five nights. Insufficient documentation to bring the data to review.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lplccd-3-mtbg61-tmpl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:55.526765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0","title":"RAW KPNO/SQIID IMAGES OF 9P/TEMPEL 1","description":"This volume contains the data for the Near-infrared images of comet 9P/Tempel 1 V1.0 data set, ID: DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0. The data set was submitted by Matthew Knight. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-sqiid-3-9pnirimages-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:56.539574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{ \"DI/IRAS-C-FPA-5-9P-IMAGES-V1.0\" }","title":"IRAS IMAGES OF COMET 9P","description":"This volume contains images of comet 9P/Tempel, from its 1983 apparition, as derived from 12-, 25-, 60-, and 100-micron observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS): - Radiance images, noise maps, and effective resolution tables derived from reprocessed IRAS Additional (Pointed) Observations. - Radiance images and noise maps derived from reprocessed IRAS Sky Survey Atlas (ISSA) Scans. - JPEG-rendered images of the dust trail based on data in the ISSA Reject Set. These images are provided as documentation for future reference. These data support the analysis of the dust environment of Tempel 1 for the NASA Deep Impact Mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-images-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:57.543390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"{ \"DI/IRAS-C-FPA-5-9P-PHOT-V1.0\" }","title":"PHOTOMETRY OF IRAS IMAGES OF COMET 9P","description":"This volume contains 12-, 25-, 60-, and 100-micron photometry of the dust coma of comet 9P/Tempel 1 during its 1983 apparition. The photometry was derived from reconstructed observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS). The types of observations were Sky Survey Atlas (ISSA) scans and Additional (Pointed) Observations. A comprehensive discussion of these data was provided by Carey Lisse and included as documentation. The reconstructed images used for this photometric analysis are available in the PDS data set DI/IRAS-C-FPA-5-9P-IMAGES-V1.0. These data support the analysis of the dust environment of Tempel 1 for the NASA Deep Impact Mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-phot-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:58.548948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DS1-C-IDS-3-RDR-BORRELLY-V1.0","title":"DS1 BORRELLY ENCOUNTER IDS DATA","description":"This volume has reduced data from the IDS plasma wave spectrometer (burst and instantaneous) during the Borrelly encounter on Sept 22, 2001.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-ids-3-rdr-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:06:59.550142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DS1-C-MICAS-2-EDR-VISCCD-BORRELLY-V1.0","title":"DS1 BORRELLY ENCOUNTER MICAS DATA - FITS FILES","description":"This volume contains data produced by the MICAS instrument during the Deep Space 1 mission and converted to FITS files by SBN personnel. Attempts to get sufficient documentation to make the data archivable have, to date, failed. The scientific quality of the data is unclear. The data are being saved in the hopes that additional information may be forthcoming.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-2-edr-visccd-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:00.550766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DS1-C-MICAS-3-RDR-VISCCD-BORRELLY-V1.0","title":"DS1 BORRELLY ENCOUNTER MICAS DATA - WEB SITE","description":"Web site of the original MICAS data site, downloaded for preservation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-3-rdr-visccd-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:01.578132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DS1-C-MICAS-5-BORRELLY-DEM-V1.0","title":"SBN DELIVERY VOLUME 2, 2005","description":"This volume is a delivery vehicle for the digital elevation models generated from MICAS data take during the Deep Space 1 flyby of comet 19P/Borrelly. Version 2 of this volume includes minor corrections to the 'reference.cat' file in the catalog/ subdirectory.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-5-borrelly-dem-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:02.625894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"DS1-C-PEPE-2-EDR-BORRELLY-V1.0","title":"DS1 BORRELLY ENCOUNTER PEPE DATA","description":"This volume contains the raw data archive associated with the PEPE instrument during the DS1 Borrelly flyby. Version 2 of this volume includes minor format corrections to the 'reference.cat' and 'pepe.cat' files in the catalog/ subdirectory.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-pepe-2-edr-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:03.643537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-5-DDR-PCC-V1.0","title":"PHYSICAL CHARACTERISTICS OF COMETS DELIVERY VOLUME","description":"This volume contains the data for the Physical Characteristics of Comets data set, ID: EAR-C-5-DDR-PCC-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-5-ddr-pcc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:04.559114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-CCD-3-EDR-HALLEY-OUTBURST-CT-V1.0","title":"CTIO CFCCD IMAGES OF COMET 1P/HALLEY OUTBURST","description":"Data extracted from the HAL_1001&2 volumes, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-ct-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:05.560118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-CCD-3-EDR-HALLEY-OUTBURST-ESO-V1.0","title":"ESO CCD IMAGES OF COMET 1P/HALLEY OUTBURST","description":"Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-eso-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:06.562804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-CCD-3-EDR-HALLEY-OUTBURST-UH-V1.0","title":"UH CCD IMAGES OF COMET 1P/HALLEY OUTBURST","description":"Data extracted from the HAL_1001&2 volumes, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-uh-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:07.567225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-CCD-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - IMAGES","description":"Ground-based images obtained to support the Giotto encounter (July 10, 1992) with Comet Grigg-Skjellerup plus utilities to manipulate the files. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different data sets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:08.563662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-CCDIMGR-3-MEECH-19P-BORRELLY-V1.0","title":"IMAGES OF 19P/BORRELLY 1 BY K. MEECH","description":"This volume contains FITS images of comet 19P/Borrelly 1 (1904 Y2) obtained by K. Meech on 20 nights over the period 1987-08-21 to 2002-02-03, with photometry calculated for 3 of those nights. Insufficien support was provided by the observer to prepare these data for review or archiving. The images are being saved in the hopes this situation may change at some time in the future.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccdimgr-3-meech-19p-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:09.566272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-CFCCD-5-RDR-CTIO-BORR-PHOTOM-V1.0","title":"CTIO OBSERVATIONS OF P/BORRELLY 1, VOL 1","description":"This volume is a delivery vehicle for photometric observations of comet 19P/Borrelly made at the Cerro Tololo Inter-American Observatory during the period 2000-07-28 to 2000-08-01.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-cfccd-5-rdr-ctio-borr-photom-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:10.569437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V1.0","title":"COMET NUCLEI PROPERTIES DELIVERY VOLUME","description":"This volume contains the data for the Properties of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-properties-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:11.570548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0","title":"COMET NUCLEI PROPERTIES DELIVERY VOLUME","description":"This volume contains the data for the Properties of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node. Version 2.0 of this data set was created due to an addition of more recent data since version 1.0 was released in 2005 and to correct typographical errors in comet names, discovery IDs, and references used in several data products.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-properties-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:12.591715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0","title":"COMET2_ROT DELIVERY VOLUME","description":"This volume contains the data for the Rotation of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-rotation-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:13.642343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-COMPIL-5-DB-COMET-POLARIMETRY-V1.0","title":"DATABASE OF COMET POLARIMETRY DELIVERY VOLUME","description":"This volume contains the data for the Database of Comet Polarimetry data set, ID: EAR-C-COMPIL-5-DB-COMET-POLARIMETRY-V1.0. The data set was submitted by Nikolai Kiselev.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-db-comet-polarimetry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:14.650368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-COMPIL-5-LIGHTCURVES-V1.0","title":"LIGHTCURVES DELIVERY VOLUME","description":"This volume contains the data for the Survey of Comet Lightcurves V1.0 data set, ID: EAR-C-COMPIL-5-LIGHTCURVES-V1.0. The data set was submitted by Kenneth Melville. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-lightcurves-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:15.579017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0","title":"HI-RES ATLAS OF 122P/DEVICO DELIVERY VOLUME","description":"This volume contains the data for the High Spectral Resolution Atlas of Comet 122P?DeVico, ID: EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-cs2-5-rdr-devico-atlas-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:16.582427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-I0039-2-SBN0007/KECKIIESI-V1.0","title":"SBN DELIVERY VOLUME 6, 2005","description":"This is the delivery volume for the data set identified above.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0039-2-sbn0007_keckiiesi-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:17.584491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0","title":"IMGBORRELLYKPNO DELIVERY VOLUME","description":"This volume contains the data for the Images of comet 19P/Borrelly from 9/21-23, 2001 V1.0 data set, ID: EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0065-2-imgborrellykpno-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:18.582510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0","title":"IMGTEMPEL1KPNO DELIVERY VOLUME","description":"This volume contains the data for the Images of comet 9P/Tempel 1 from February to June 2005 V1.0 data set, ID: EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0065_i1084-3-imgtempel1kpno-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:19.585964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-I0655-2/3-MOSAICTEMPEL1-V1.0","title":"MOSAICTEMPEL1 DELIVERY VOLUME","description":"This volume contains the data for the Images of 9P/Tempel 1 from 2005 around the DI Encounter V1.0 data set, ID: EAR-C-I0655-3-MOSAICTEMPEL1-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0655-2_3-mosaictempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:20.593508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0","title":"MCD OBS COLUMN DENSITY OBS OF BORRELLY DELIVERY VOLUME","description":"This volume contains the data for the McDOnald Observatory Column Density Observations of 19P/Borrelly data set, ID: EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ids_lcs-3-rdr-borrelly-mcdnld-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:21.595158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-IGI-3-EDR-BORRELLY-V1.0","title":"SBN DELIVERY VOLUME 4, 2005","description":"This is VERSION 2 of the SA0504_0001 delivery volume. It should completely supersede VERSION 1, which was discovered (after delivery) to contain corrupted data files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-igi-3-edr-borrelly-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:22.594157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-IRPHOT-2-RDR-HALLEY-ADDENDA-V1.0","title":"IR PHOTOMERY OF COMET 1P/HALLEY BY GEHRZ & NEY","description":"Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-irphot-2-rdr-halley-addenda-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:23.597481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0","title":"9PTMPL1 DELIVERY VOLUME","description":"This volume contains the data for the McDonald Observatory 9P/Tempel 1 Data V1.0 data set, ID: EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0. The data set was submitted by Anne Raugh. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-lcs-5-9ptmpl1-spectra-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:24.649395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-MCDIDS-3-RDR-MCDNLD-V1.0","title":"SBN DELIVERY VOLUME 3, 2005","description":"This is the delivery volume for the data set identified above.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-mcdids-3-rdr-mcdnld-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:25.661551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-PHOT-3-RDR-LOWELL-COMET-DB-V1.0","title":"LOWELL COMETARY DATA BASE DELIVERY VOLUME","description":"This volume contains the data for the Lowell Observatory Cometary Data Base data set, ID: EAR-C-PHOT-3-RDR-LOWELL-COMET-DB-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-phot-3-rdr-lowell-comet-db-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:26.602027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-C-PHOT-5-RDR-LOWELL-COMET-DB-PR-V1.0","title":"LOWELL COMET DB - PRODUCTION RATES DELIVERY VOLUME","description":"This volume contains the data for the Lowell Observatory Cometary Data Base - Production Rates data set, ID: EAR-C-PHOT-5-RDR-LOWELL-COMET-DB-PR-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-c-phot-5-rdr-lowell-comet-db-pr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:27.608207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-J/C-HSCCD-3-RDR-SL9-V1.0","title":"VOLUME 1017","description":"This volume contains University of Maryland photometer data and high speed CCD images obtained at 5 remote locations by a Lowell Observatory led consortium.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-j_c-hsccd-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:28.603173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-J/SA-HSOTP-2-EDR-SL9-V1.0","title":"VOLUME 1018","description":"This volume contains University of Maryland photometer data and high speed CCD images obtained at 5 remote locations by a Lowell Observatory led consortium.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-j_sa-hsotp-2-edr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:29.612651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"EAR-X-I2041-5-CH3DICESPEC-V1.0","title":"CH3DICESPEC DELIVERY VOLUME","description":"This volume contains the data for the CH3D ice absorption coefficients V1.0 data set, ID: EAR-X-I2041-5-CH3DICESPEC-V1.0. The data set was submitted by Will Grundy. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ear-x-i2041-5-ch3dicespec-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:30.614227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ESO-C-EMMI-3-RDR-SL9-V1.0","title":"VOLUME 1013","description":"This volume contains images taken with the EMMI instrument at the New Technology Telescope (NTT) on La Silla.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-c-emmi-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:31.617061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ESO-J-IRSPEC-3-RDR-SL9-V1.0","title":"VOLUME 1014","description":"This volume contains images taken with the IRSPEC instrument at the New Technology Telescope (NTT) on La Silla.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-j-irspec-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:32.620639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ESO-J-SUSI-3-RDR-SL9-V1.0","title":"VOLUME 1015","description":"This volume contains images taken with the SUSI instrument at the New Technology Telescope (NTT) on La Silla.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/eso-j-susi-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:33.620160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-DID-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - DID","description":"Data from the GIOTTO Dust Impact Detector instrument taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:34.622895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-DID-3-RDR-HALLEY-V1.0","title":"GIOTTO'S DID DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:35.661912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-EPA-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - EPA","description":"Data from the GIOTTO Energetic Particle Analyzer taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-epa-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:36.706550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-GRE-1-EDR-HALLEY-ADDENDA-V1.0","title":"GIOTTO RAW GRE (RADIO) DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-1-edr-halley-addenda-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:37.624898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-GRE-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - GRE","description":"Data from the GIOTTO Radioscience Experiment taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:38.627115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-GRE-3-RDR-HALLEY-V1.0","title":"GIOTTO RADIOSCIENCE DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:39.628494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-HMC-3-RDR-HALLEY-V1.0","title":"GIOTTO HALLEY MULTICOLOUR CAMERA DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:40.631174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-IMS-3-RDR-HERS-HALLEY-V1.0","title":"GIOTTO IMS/HERS DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-hers-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:41.639159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-IMS-3-RDR-HIS-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - IMS","description":"Data from the GIOTTO Ion Mass Spectrometer (IMS) High-Intensity SPectrometer (HIS) taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:42.643171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-IMS-3-RDR-HIS-HALLEY-V1.0","title":"GIOTTO IMS/HIS DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:43.643808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-JPA-3-RDR-IIS-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - JPA IIS","description":"Results from the GIOTTO Johnstone Particle Analyser (JPA) Implanted Ion Sensor (IIS) experiment taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-3-rdr-iis-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:44.644701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-JPA-4-DDR-HALLEY-MERGE-V1.0","title":"GIOTTO PARTICLE ANALYZER MERGED DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-4-ddr-halley-merge-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:45.646350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-JPA/MAG-4-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - JPA/MAG","description":"Combined results from the GIOTTO particle analyser (JPA) and magnetometer (MAG) experiments taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa_mag-4-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:46.669957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-MAG-4-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - MAG","description":"Results from the GIOTTO Triaxial Fluxgate magnetometer (MAG) experiment, taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:47.716373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-MAG-4-RDR-HALLEY-8SEC-V1.0","title":"GIOTTO MAGNETOMETER DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-halley-8sec-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:48.729612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-NMS-4-HALLEY-V1.0","title":"GIOTTO'S ENCOUNTER WITH COMET HALLEY - NMS","description":"This volume contains a dataset of Neutral Mass Spectra records, from the GIOTTO spacecraft mission for Comet Halley. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-nms-4-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:49.652186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-OPE-3-RDR-GRIGG-SKJELL-V1.0","title":"GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - OPE","description":"Results from the GIOTTO Optical Probe Experiment (OPE), taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-grigg-skjell-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:50.660020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-OPE-3-RDR-HALLEY-V1.0","title":"GIOTTO OPTICAL PROBE DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:51.660801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GIO-C-PIA-3-RDR-HALLEY-V1.0","title":"GIOTTO PARTICLE IMPACT ANALYZER DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:52.661770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-J-NIMS-4-ADR-SL9IMPACT-V1.0","title":"VOLUME 1001","description":"This volume contains the data for the GO NIMS Tabular Data from the SL9 Impact with Jupiter v1.0 data set, ID: GO-J-NIMS-4-ADR-SL9IMPACT-V1.0. The NIMS data is presented as both derived reflectance and raw EDR data of Jupiter during the Comet Shoemaker-Levy 9 impact events in July 1994.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:53.666341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-J-PPR-3-EDR-SL9-G/H/L/Q1-V1.0","title":"VOLUME 1002","description":"This volume contains the data for the GO JUPITER/SHOEMAKER-LEVY 9 PPR CALIB FRAG G/H/L/Q1 V1.0 data set, ID: GO-J-PPR-3-EDR-SL9-G/H/L/Q1-V1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:54.667726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-J-SSI-2-REDR-SL9-V1.0","title":"VOLUME 1003","description":"This volume contains the data for the Galileo Orbital Operations Solid State Imaging 2 Raw EDR V1 data set, ID: GO-J-SSI-2-REDR-SL9-V1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:55.670544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-J-UVS-2-EDR-SL9-V1.0","title":"VOLUME 1004","description":"This volume contains the data for the GO UVS Tabular Data from the SL9 Impact with Jupiter v1.0 data set, ID: GO-J-UVS-2-EDR-SL9-V1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-2-edr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:56.671852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"GO-J-UVS-3-RDR-SL9-G-FRAGMENT-V1.0","title":"VOLUME 1005","description":"This volume contains the data for the GO UVS Tabular Data from the SL9-G Impact with Jupiter v1.0 data set, ID: GO-J-UVS-3-RDR-SL9-G-FRAGMENT-V1.0.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-3-rdr-sl9-g-fragment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:57.688630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"HST-J-WFPC2-3-SL9-IMPACT-V1.0","title":"VOLUME 1016","description":"This volume contains observations of Jupiter during the Comet Shoemaker-Levy 9 impact events by the Hubble Space Telescope in July 1994. These data consist of images by the Wide Field Planetary Camera 2 (WFPC2).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/hst-j-wfpc2-3-sl9-impact-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:58.732296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ICE-C-EPAS-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE EPAS DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:07:59.747398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ICE-C-ICI-3-RDR-GIACOBINI-ZIN-V1.0","title":"ICE ICI DIGITIZED DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:00.679126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ICE-C-MAG-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE MAGNETOMETER DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:01.682454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ICE-C-PLAWAV-3-RDR-ESP-GIACOBIN-ZIN-V1.0","title":"ICE PLASMA WAVE E-FIELD DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:02.682870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ICE-C-PLAWAV-3-RDR-MSP-GIACOBIN-ZIN-V1.0","title":"ICE PLASMA WAVE B-FIELD DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-msp-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:03.688753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ICE-C-RADWAV-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE RADIO WAVE DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:04.685710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ICE-C-SWPLAS-3-RDR-GIACOBIN-ZIN-V1.0","title":"ICE SOLAR WIND PLASMA DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:05.692106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ICE-C-ULECA-3-RDR-GIACOBINI-ZIN-V1.0","title":"ICE ULECA DIGITIZED DATA FOR COMET 21P/GIACOBINI-ZINNER","description":"Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:06.698429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-AMDR-N-NDR-HALLEY-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL DRAWINGS OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdr-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:07.694234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-AMDRAW-N-NDR-GZ-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL DRAWINGS OF COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdraw-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:08.699017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-AMPG-N-NDR-HALLEY-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL PHOTOGRAPHY OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ampg-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:09.738401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-AMPHOT-N-NDR-GZ-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL PHOTOGRAPHS OF COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amphot-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:10.786186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-AMSP-N-NDR-HALLEY-V1.0","title":"AMATEUR OBS. NET NON-DIGITAL SPECTROGRAMS OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amsp-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:11.700223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-AMVIS-2-RDR-CROMMELIN-V1.0","title":"AMATEUR OBS. NET VISUAL MAG. ESTIMATES OF COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:12.704927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-AMVIS-2-RDR-GZ-V1.0","title":"AMATEUR OBS. VISUAL MAG. ESTIMATES OF COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:13.709248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-AMVIS-2-RDR-HALLEY-V1.0","title":"AMATEUR OBS. NET VISUAL OBSERVATIONS OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:14.710023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-ASTR-2-EDR-CROMMELIN-V1.0","title":"ASTROMETRY NET ASTROMETRIC DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:15.712329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-ASTR-2-EDR-GZ-V1.0","title":"ASTROMETRY NET ASTROMETRIC DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:16.710586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-ASTR-2-EDR-HALLEY-V1.0","title":"ASTROMETRY NET DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:17.718894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-ASTR-2-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the data collected by the IHW Astrometry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:18.719460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRFCURV-3-EDR-HALLEY-V1.0","title":"IR STUDIES NET FILTER CURVES FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:19.721546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRFCURV-3-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the filter curves and filter set parameters for the infrared filters used in the International Halley Watch Infrared Studies Network data archive.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:20.748020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRFTAB-2-RDR-CROMMELIN-V1.0","title":"IR STUDIES NET FILTER CHARACTERISTICS FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:21.893691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRFTAB-2-RDR-GZ-V1.0","title":"IR STUDIES NET FILTER CHARACTERISTICS FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:22.807946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRFTAB-3-RDR-HALLEY-V1.0","title":"IR STUDIES NET FILTER TABLES FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:23.738917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRFTAB-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains filter set parameters for the infrared filters used in the International Halley Watch Infrared Studies Network data archive.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:24.734552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRIMAG-3-EDR-GZ-V1.0","title":"IR STUDIES NET IMAGE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:25.736561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRIMAG-3-EDR-HALLEY-V1.0","title":"IR STUDIES NET IMAGE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:26.736885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRIMAG-3-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the infrared image data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:27.744668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRIMAG-N-NDR-GZ-V1.0","title":"IR STUDIES NET NULL IMAGE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:28.739767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRPHOT-2-RDR-CROMMELIN-V1.0","title":"IR STUDIES NET PHOTOMETRIC DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:29.743505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRPHOT-2-RDR-GZ-V1.0","title":"IR STUDIES NET PHOTOMETRIC DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:30.738808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRPHOT-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the infrared image data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:32.804037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRPOL-2-RDR-GZ-V1.0","title":"IR STUDIES NET POLARIMETRIC DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-2-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:33.818880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRPOL-3-RDR-HALLEY-V1.0","title":"IR STUDIES NET IR POLARIMETRY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:34.756862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRPOL-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the infrared polarimetry data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:35.753005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRSPEC-3-EDR-GZ-V1.0","title":"IR STUDIES NET SPECTROSCOPIC DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:36.757750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRSPEC-3-EDR-HALLEY-V1.0","title":"IR STUDIES NET IR SPECTRA DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:37.760442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRSPEC-3-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the infrared spectroscopy data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:38.761778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-IRSPEC-N-NDR-HALLEY-V1.0","title":"IR STUDIES NET IR SPECTRA NULL RESULTS FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:39.770443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-LSPN-2-DIDR-CROMMELIN-V1.0","title":"LARGE-SCALE PHEN. NET IMAGE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:40.765634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-LSPN-2-DIDR-GZ-V1.0","title":"LARGE-SCALE PHEN. NET IMAGE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:41.773657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-LSPN-2-DIDR-HALLEY-V1.0","title":"LARGE-SCALE PHENOMENA NET IMAGE DATA FOR HALLEY","description":"Data extracted from the CDROM volumes HAL_0001-HAL_0018, reorganized into a single data set volume but otherwise untouched. Summary information from the final volume is included here, as are improved ephemeris files and the complete LSPN submission table included in the HAL_0023. The DATA_PRODUCER listed below prepared the reorganized volume. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:42.774768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-LSPN-2-DIDR-HALLEY-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains restored images from the International Halley Watch (IHW) Large Scale Phenomena Network (LSPN). The original LSPN data were saved in a compressed for on the IHW CD collection. For this data set they have been decompressed and stored at full resolution, and been provided with PDS PDS labels and catalog files that meet the current archiving standards. Version 2.0 of this data set contains uncompressed versions of the image data in FITS format.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:43.868626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-LSPN-N-NDR-CROMMELIN-V1.0","title":"LARGE-SCALE PHEN. NET NULL DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:44.865750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-LSPN-N-NDR-GZ-V1.0","title":"LARGE-SCALE PHEN. NET NULL DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:45.775593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-LSPN-N-NDR-HALLEY-V1.0","title":"LARGE-SCALE PHENOMENA NET NULL DATA FOR HALLEY","description":"Data extracted from the CDROM volumes HAL_0019-HAL_0023, reorganized into a single data set volume but otherwise untouched. Summary information from the final volume is included here, as are improved ephemeris files and the complete LSPN submission table included in the HAL_0023. The DATA_PRODUCER listed below prepared the reorganized volume. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:46.780361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-MSNRDR-3-RDR-HALLEY-ETA-AQUAR-V1.0","title":"IHW METEOR STUDIES NET ETA AQUA. RADAR DATA","description":"Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-eta-aquar-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:47.784872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-MSNRDR-3-RDR-HALLEY-ORIONID-V1.0","title":"IHW METEOR STUDIES NET ORIONID RADAR DATA","description":"Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-orionid-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:48.785550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-MSNVIS-3-RDR-HALLEY-ETA-AQUAR-V1.0","title":"IHW METEOR STUDIES NET ETA AQUA. VISUAL DATA","description":"Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-eta-aquar-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:49.792432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-MSNVIS-3-RDR-HALLEY-ORIONID-V1.0","title":"IHW METEOR STUDIES NET ORIONID VISUAL DATA","description":"Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-orionid-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:50.803000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-NNSN-3-EDR-CROMMELIN-V1.0","title":"NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:51.791832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-NNSN-3-EDR-GZ-V1.0","title":"NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:52.798455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-NNSN-3-EDR-HALLEY-ADDENDA-V1.0","title":"IHW NNSN CORRECTED IMAGES OF COMET 1P/HALLEY","description":"Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-addenda-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:53.800739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-NNSN-3-EDR-HALLEY-V1.0","title":"NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:54.825756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-NNSN-3-EDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the images collected by the IHW Near-Nucleus Studies Network, formatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:55.875188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPFLX-3-RDR-CROMMELIN-V1.0","title":"PHOTOM. & POLAR. NET FLUX DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:56.886208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPFLX-3-RDR-GZ-V1.0","title":"PHOTOM. & POLAR. NET FLUX DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:57.803445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPFLX-3-RDR-HALLEY-V1.0","title":"PHOT. & POL. NET PHOTOMETRIC FLUX DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:58.804690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPFLX-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the photometric flux data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:08:59.811888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPMAG-3-RDR-CROMMELIN-V1.0","title":"PHOTOM. & POLAR. NET MAGNITUDE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:00.821470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPMAG-3-RDR-GZ-V1.0","title":"PHOTOM. & POLAR. NET MAGNITUDE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:01.815852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPMAG-3-RDR-HALLEY-V1.0","title":"PHOT. & POL. NET MAGNITUDE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:02.816395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPMAG-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the photometric magnitude data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:03.817068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPOL-3-RDR-CROMMELIN-V1.0","title":"PHOTOM. & POLAR. NET POLARIMETRY DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:04.820005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPOL-3-RDR-GZ-V1.0","title":"PHOTOM. & POLAR. NET POLARIMETRY DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:05.837139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPOL-3-RDR-HALLEY-V1.0","title":"PHOT. & POL. NET POLARIMETRY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:06.888017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPOL-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the polarimetric data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:07.895973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPSTOKE-3-RDR-HALLEY-V1.0","title":"PHOT. & POL. NET STOKES PARAMETERS DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:08.833189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-PPSTOKE-3-RDR-HALLEY-V2.0","title":"IHW ASTROMETRY NETWORK","description":"This volume contains the polarimetric data reported as Stokes parameters to the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:09.833303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSCN-3-EDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET CONTINUUM DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:10.831446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSCN-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET CONTINUUM ARRAY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:11.835378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSCN-N-NDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET NULL CONTINUUM DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:12.847214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSCN-N-NDR-GZ-V1.0","title":"RADIO STUDIES NET NULL CONTINUUM DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:13.843486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSCN-N-NDR-HALLEY-V1.0","title":"RADIO STUDIES NET CONTINUUM SUMMARY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:14.845904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSOC-3-EDR-GZ-V1.0","title":"RADIO STUDIES NET OCCULTATION DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:15.846090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSOC-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET OCCULTATION GRIDDED DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:16.851597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSOH-3-EDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET OH SPECTRAL LINE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:17.894077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSOH-3-EDR-GZ-V1.0","title":"RADIO STUDIES NET OH SPECTRAL LINE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:18.946579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSOH-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET OH SPECTRAL LINE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:19.860583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSOH-N-NDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET NULL OH LINE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-n-ndr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:20.851031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSRDR-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET RADAR DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsrdr-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:21.859000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSSL-3-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET SPECTRAL LINE DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:22.866992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSSL-N-NDR-CROMMELIN-V1.0","title":"RADIO STUDIES NET NULL SPEC. LINE DATA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:23.860409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSSL-N-NDR-GZ-V1.0","title":"RADIO STUDIES NET NULL SPECTRAL LINE DATA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:24.877737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSSL-N-NDR-HALLEY-V1.0","title":"RADIO STUDIES NET SPECTRAL LINE NULL RESULTS FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:25.873105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-RSUV-2-EDR-HALLEY-V1.0","title":"RADIO STUDIES NET U-V VISIBILITY DATA FOR HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsuv-2-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:26.868894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-2-DIDR-CROMMELIN-V1.0","title":"SPEC. NET DIGITIZED 2-D SPECTRA (NULL) FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:27.879593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-2-DIDR-GZ-V1.0","title":"SPEC. NET DIGITIZED 2-D SPECTRA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:28.903271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-2-EDR-CROMMELIN-V1.0","title":"SPEC. NET UNCALIBRATED IUE SPECTRUM OF COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:29.955831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-2-EDR-GZ-V1.0","title":"SPEC. NET UNCALIBRATED 1-D SPECTRA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:30.963348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-2-EDR-HALLEY-V1.0","title":"SPECTROSCOPY/SPECTROPHOT. NET UNREDUCED SPECTRA OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:31.878962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-3-DIDR-HALLEY-V1.0","title":"SPECTROSCOPY/SPECTROPHOT. NET DIGITIZED SPECTRA OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-didr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:32.889076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-3-EDR-CROMMELIN-V1.0","title":"SPEC. NET CALIBRATED SPECTRA FOR COMET CROMMELIN","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-crommelin-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:33.888736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-3-EDR-GZ-V1.0","title":"SPEC. NET CALIBRATED 1-D SPECTRA FOR COMET G-Z","description":"Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-gz-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:34.890410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IHW-C-SPEC-3-EDR-HALLEY-V1.0","title":"SPECTROSCOPY/SPECTROPHOT. NET REDUCED SPECTRA OF HALLEY","description":"Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:35.899330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IRTF-J/C-NSFCAM-3-RDR-SL9-V1.0","title":"VOLUME 1010","description":"This volume contains samples of IRTF data, namely the NSFCAM collection.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/irtf-j_c-nsfcam-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:36.895624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IUE-C-LWP-3-EDR-IUECDB-V1.0","title":"VOLUME 1","description":"Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer LWP mode are presented. Version 2 of this volume contains minor format corrections to the target catalog files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwp-3-edr-iuecdb-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:37.900206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IUE-C-LWR-3-EDR-IUECDB-V1.0","title":"VOLUME 2","description":"Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer LWR mode is presented.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwr-3-edr-iuecdb-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:38.899411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IUE-C-SWP-3-EDR-IUECDB-V1.0","title":"VOLUME 3","description":"Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer SWP mode is presented. Version 2 of this volume contains minor format corrections to the target catalog files.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-c-swp-3-edr-iuecdb-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:39.917583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IUE-J-LWP-3-EDR-SL9-V1.0","title":"VOLUME 1006","description":"This volume contains SL9 data from July 1993 through August 1994 for the International Ultraviolet Explorer LWP instruments; the data are high dispersion but low dispersion data for double exposures are included","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-lwp-3-edr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:40.962193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IUE-J-SWP-3-EDR-SL9-V1.0","title":"VOLUME 1007","description":"This volume contains SL9 data from July 1993 through August 1994 for the International Ultraviolet Explorer SWP instruments; the data are high dispersion but low dispersion data for double exposures are included","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/iue-j-swp-3-edr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:41.974558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MSSSO-J-CASPIR-3-RDR-SL9-STDS-V1.0","title":"VOLUME 1012","description":"This volume contains CASPIR Near-IR images from July 17-22, 1994 of stars used as calibration objects.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-stds-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:42.909822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MSSSO-J-CASPIR-3-RDR-SL9-V1.0","title":"VOLUME 1011","description":"This volume contains CASPIR Near-IR images from July 17-22, 1994","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:43.918801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-2-KEM1-V1.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-09-30T17:08:02.058 and 2018-12-31T06:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:44.917195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-2-KEM1-V2.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-30T17:08:02.058 and 2019-01-01T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:45.920415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-2-KEM1-V3.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-30T17:08:02.058 and 2019-03-03T23:08:02.208 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:46.915399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-2-KEM1-V4.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-30T17:20:50.000 and 2019-08-31T22:46:10.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:47.926504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-2-KEM1-V5.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-30T17:20:50.000 and 2020-04-27T22:55:26.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:48.923094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-2-KEM1-V6.0","title":"NEW HORIZONS ALICE KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-09-30T17:20:50.058 and 2021-09-30T01:51:40.136 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:49.937839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-3-KEM1-V1.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-09-30T17:08:02.058 and 2018-12-31T06:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:50.932223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-3-KEM1-V2.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-30T17:08:02.058 and 2019-01-01T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:51.969910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-3-KEM1-V3.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-30T17:08:02.058 and 2019-03-03T23:08:02.208 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:52.985430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-3-KEM1-V4.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-30T17:20:50.000 and 2019-08-31T22:46:10.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:53.939303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-3-KEM1-V5.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-30T17:20:50.000 and 2020-04-27T22:55:26.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:54.941996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-ALICE-3-KEM1-V6.0","title":"NEW HORIZONS ALICE KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-09-30T17:20:50.058 and 2021-09-30T01:51:40.136 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:55.935393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-2-KEM1-V1.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-20T18:08:02.017 and 2018-12-31T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:56.941693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-2-KEM1-V2.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:57.946515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-2-KEM1-V3.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:58.948489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-2-KEM1-V4.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:09:59.945713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-2-KEM1-V5.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:00.956564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-2-KEM1-V6.0","title":"NEW HORIZONS LEISA KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-20T19:00:01.017 and 2019-09-05T12:09:15.393 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:01.947907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-2-KEM2-V1.0","title":"NEW HORIZONS LEISA KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-31T18:36:03.148 and 2018-12-31T20:33:52.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:03.082156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-3-KEM1-V1.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-20T18:08:02.017 and 2018-12-31T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:04.039318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-3-KEM1-V2.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:05.046645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-3-KEM1-V3.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:05.981251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-3-KEM1-V4.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:06.973559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-3-KEM1-V5.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:07.979028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-3-KEM1-V6.0","title":"NEW HORIZONS LEISA KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-20T19:00:01.017 and 2019-09-05T12:09:15.393 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:08.984214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA-3-KEM2-V1.0","title":"NEW HORIZONS LEISA KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-31T18:36:03.148 and 2018-12-31T20:33:52.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:09.987782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LEISA/MVIC-5-COMP-V1.0","title":"NEW HORIZONS ARROKOTH ENCOUNTER COMPOSITION DATA","description":"This volume contains the New Horizons Arrokoth Encounter composition science theme team derived composition quantities based on analysis of color and spectral data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa_mvic-5-comp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:10.986172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V1.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:11.994113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V2.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:13.004664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V3.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:14.004230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V4.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:15.045083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V5.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:16.088222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM1-V6.0","title":"NEW HORIZONS LORRI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:17.101959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-2-KEM2-V1.0","title":"NEW HORIZONS LORRI KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:18.022065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V1.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:19.024920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V2.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:20.028604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V3.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:21.033793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V4.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:22.040840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V5.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:23.044790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM1-V6.0","title":"NEW HORIZONS LORRI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:24.049661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI-3-KEM2-V1.0","title":"NEW HORIZONS LORRI KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:25.060088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-LORRI/MVIC-5-GEOPHYS-V1.0","title":"NEW HORIZONS ARROKOTH ENCOUNTER GEOPHYSICAL DATA","description":"This volume contains the New Horizons Arrokoth Encounter geology and geophysics science theme team derived shape models and maps of albedo, elevation, and modeled surface temperature.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri_mvic-5-geophys-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:26.052286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V1.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:27.103638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V2.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:28.150939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V3.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:29.066852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V4.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:30.074950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V5.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:31.065966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-2-KEM1-V6.0","title":"NEW HORIZONS MVIC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:32.073468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V1.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:33.076713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V2.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:34.083516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V3.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:35.084937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V4.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:36.087918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V5.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:37.095243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-MVIC-3-KEM1-V6.0","title":"NEW HORIZONS MVIC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:38.110382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-2-KEM1-V1.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T15:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:39.172028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-2-KEM1-V2.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T00:08:02.176 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:40.172787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-2-KEM1-V3.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T00:08:02.354 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:41.106644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-2-KEM1-V4.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:50:13.000 and 2020-04-28T23:57:07.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:42.113110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-2-KEM1-V5.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:50:13.000 and 2021-02-28T23:54:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:43.119086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-2-KEM1-V6.0","title":"NEW HORIZONS PEPSSI KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-13T23:59:59.011 and 2022-04-10T23:59:59.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:44.125183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-2-KEM2-V1.0","title":"NEW HORIZONS PEPSSI KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-27T23:59:59.145 and 2023-04-23T23:59:59.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:45.125628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-3-KEM1-V1.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T15:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:46.125180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-3-KEM1-V2.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T00:08:02.176 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:47.139840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-3-KEM1-V3.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T00:08:02.354 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:48.129467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-3-KEM1-V4.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:50:13.000 and 2020-04-28T23:57:07.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:49.143988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-3-KEM1-V5.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:50:13.000 and 2021-02-28T23:54:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:50.171639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-3-KEM1-V6.0","title":"NEW HORIZONS PEPSSI KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-13T23:59:59.011 and 2022-04-10T23:59:59.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:51.224242","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-PEPSSI-3-KEM2-V1.0","title":"NEW HORIZONS PEPSSI KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-27T23:59:59.145 and 2023-04-23T23:59:59.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:52.230962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-2-KEM1-V1.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 VERSION 1.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 1.0 mission phase are 2018-09-08T23:25:00.000 and 2019-01-02T05:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:53.155615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-2-KEM1-V2.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-09T09:08:02.037 and 2019-07-10T17:08:02.335 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:54.161691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-2-KEM1-V3.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-09T09:42:43.000 and 2020-02-11T20:56:39.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:55.156582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-2-KEM1-V4.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-09T09:42:43.037 and 2021-02-15T13:53:07.720 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:56.166196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-2-KEM1-V5.0","title":"NEW HORIZONS REX KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-09T09:42:43.037 and 2022-02-18T17:17:34.294 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:57.175567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-3-KEM1-V1.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 VERSION 1.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 1.0 mission phase are 2018-09-08T23:25:00.000 and 2019-01-02T05:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:58.177258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-3-KEM1-V2.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-09T09:08:02.037 and 2019-07-10T17:08:02.335 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:10:59.182849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-3-KEM1-V3.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-09T09:42:43.000 and 2020-02-11T20:56:39.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:00.186626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-3-KEM1-V4.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-09T09:42:43.000 and 2021-02-15T13:53:06.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:01.190151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-REX-3-KEM1-V5.0","title":"NEW HORIZONS REX KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-09T09:42:43.037 and 2022-01-13T03:49:42.409 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:02.231422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-2-KEM1-V1.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T21:08:02.011 and 2018-12-01T16:08:02.119 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:03.273430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-2-KEM1-V2.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T21:08:02.011 and 2019-01-20T23:08:02.167 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:04.290484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-2-KEM1-V3.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T21:08:02.011 and 2019-07-28T01:08:02.352 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:05.206289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-2-KEM1-V4.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T21:08:56.000 and 2020-03-29T12:10:30.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:06.206226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-2-KEM1-V5.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T21:08:56.000 and 2021-02-06T21:47:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:07.211305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-2-KEM1-V6.0","title":"NEW HORIZONS SDC KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T21:08:56.011 and 2022-04-09T19:49:11.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:08.219839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-2-KEM2-V1.0","title":"NEW HORIZONS SDC KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-09T20:36:38.318 and 2023-04-02T00:04:55.660 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:09.224509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-3-KEM1-V1.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T21:08:02.011 and 2018-12-01T16:08:02.119 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:10.233965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-3-KEM1-V2.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T21:08:02.011 and 2019-01-20T23:08:02.167 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:11.225940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-3-KEM1-V3.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T21:08:02.011 and 2019-07-28T01:08:02.352 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:12.234760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-3-KEM1-V4.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T21:08:56.000 and 2020-03-29T12:10:30.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:13.239782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-3-KEM1-V5.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T21:08:56.000 and 2021-02-06T21:47:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:14.293154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-3-KEM1-V6.0","title":"NEW HORIZONS SDC KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T21:08:56.011 and 2022-04-09T19:49:11.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:15.300711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SDC-3-KEM2-V1.0","title":"NEW HORIZONS SDC KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-09T20:36:38.318 and 2023-04-02T00:04:55.660 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:16.246474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-2-KEM1-V1.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T18:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:17.246565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-2-KEM1-V2.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T18:08:02.177 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:18.258052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-2-KEM1-V3.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T18:08:02.355 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:19.262784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-2-KEM1-V4.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T18:08:02.000 and 2020-04-29T18:08:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:20.265892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-2-KEM1-V5.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:48:34.000 and 2021-03-01T18:08:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:21.267716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-2-KEM1-V6.0","title":"NEW HORIZONS SWAP KEM1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T18:08:02.011 and 2022-04-30T18:08:02.337 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:22.277850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-2-KEM2-V1.0","title":"NEW HORIZONS SWAP KEM2 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-24T18:08:03.332 and 2023-04-24T18:08:02.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:23.276179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-3-KEM1-V1.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T18:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:24.286631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-3-KEM1-V2.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T18:08:02.177 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:25.308250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-3-KEM1-V3.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-29T19:08:02.353 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:26.347840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-3-KEM1-V4.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:43:46.000 and 2020-03-01T12:49:05.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:27.359516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-3-KEM1-V5.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:48:34.000 and 2021-02-25T06:03:45.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:28.300312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-3-KEM1-V6.0","title":"NEW HORIZONS SWAP KEM1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T20:43:46.011 and 2022-04-24T18:09:38.332 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:29.302151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-3-KEM2-V1.0","title":"NEW HORIZONS SWAP KEM2 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-24T18:08:03.332 and 2023-04-24T18:08:02.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:30.301849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-ALICE-2-JUPITER-V1.0","title":"NEW HORIZONS ALICE JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:31.302380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-ALICE-2-JUPITER-V2.0","title":"NEW HORIZONS ALICE JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:32.316477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-ALICE-3-JUPITER-V1.0","title":"NEW HORIZONS ALICE JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:33.321684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-ALICE-3-JUPITER-V2.0","title":"NEW HORIZONS ALICE JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:34.326440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LEISA-2-JUPITER-V1.0","title":"NEW HORIZONS LEISA JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:35.323674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LEISA-2-JUPITER-V1.1","title":"NEW HORIZONS LEISA JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-2-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:36.331483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LEISA-3-JUPITER-V1.0","title":"NEW HORIZONS LEISA JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:37.357062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LEISA-3-JUPITER-V1.1","title":"NEW HORIZONS LEISA JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-3-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:38.407319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-2-JUPITER-V1.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:39.416298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-2-JUPITER-V1.1","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:40.345467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-2-JUPITER-V2.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:41.350661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-2-JUPITER-V3.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:42.344267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-3-JUPITER-V1.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:43.356442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-3-JUPITER-V1.1","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:44.476105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-3-JUPITER-V2.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:45.365048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-LORRI-3-JUPITER-V3.0","title":"NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:46.370926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-MVIC-2-JUPITER-V1.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:47.367238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-MVIC-2-JUPITER-V2.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:48.372236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-MVIC-3-JUPITER-V1.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:49.412259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-MVIC-3-JUPITER-V2.0","title":"NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:50.462809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-PEPSSI-2-JUPITER-V1.0","title":"NEW HORIZONS PEPSSI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:51.379398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-PEPSSI-2-JUPITER-V1.1","title":"NEW HORIZONS PEPSSI JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-2-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:52.395335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-PEPSSI-3-JUPITER-V1.0","title":"NEW HORIZONS PEPSSI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:53.392101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-PEPSSI-3-JUPITER-V1.1","title":"NEW HORIZONS PEPSSI JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-3-jupiter-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:54.392276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-REX-2-JUPITER-V1.0","title":"NEW HORIZONS REX JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:55.401555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-REX-2-JUPITER-V2.0","title":"NEW HORIZONS REX JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:56.409127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-REX-3-JUPITER-V1.0","title":"NEW HORIZONS REX JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:57.410889","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SDC-2-JUPITER-V1.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:58.410506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SDC-2-JUPITER-V2.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:11:59.419513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SDC-2-JUPITER-V3.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:00.426891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SDC-2-JUPITER-V4.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:01.475886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SDC-3-JUPITER-V1.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:02.486226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SDC-3-JUPITER-V2.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:03.433008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SDC-3-JUPITER-V3.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:04.435695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SDC-3-JUPITER-V4.0","title":"NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:05.439619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SWAP-2-JUPITER-V1.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:06.448658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SWAP-2-JUPITER-V2.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:07.450531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SWAP-2-JUPITER-V3.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:08.451916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SWAP-2-JUPITER-V4.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:09.458346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SWAP-3-JUPITER-V1.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:10.462629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SWAP-3-JUPITER-V2.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:11.465685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SWAP-3-JUPITER-V3.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:12.484584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-J-SWAP-3-JUPITER-V4.0","title":"NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:13.530423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-ALICE-2-PLUTO-V1.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:14.544561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-ALICE-2-PLUTO-V2.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:15.469026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-ALICE-2-PLUTO-V3.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:16.478328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-ALICE-3-PLUTO-V1.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:17.483010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-ALICE-3-PLUTO-V2.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:18.484444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-ALICE-3-PLUTO-V3.0","title":"NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:19.496119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LEISA-2-PLUTO-V1.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:20.498862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LEISA-2-PLUTO-V2.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:21.505964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LEISA-2-PLUTO-V3.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:22.504641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LEISA-3-PLUTO-V1.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:23.513368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LEISA-3-PLUTO-V2.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:24.542614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LEISA-3-PLUTO-V3.0","title":"NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:25.591280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-2-PLUTO-V1.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:26.604009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-2-PLUTO-V2.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:27.551887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-2-PLUTO-V3.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:28.520864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-3-PLUTO-V1.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:29.528410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-3-PLUTO-V2.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:30.531010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-LORRI-3-PLUTO-V3.0","title":"NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:31.530423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-2-PLUTO-V1.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:32.534069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-2-PLUTO-V2.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:33.541396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-2-PLUTO-V3.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:34.546813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-3-PLUTO-V1.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:35.557863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-3-PLUTO-V2.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:36.603532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-MVIC-3-PLUTO-V3.0","title":"NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:37.611920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-PEPSSI-2-PLUTO-V1.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:38.555486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-PEPSSI-2-PLUTO-V2.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:39.568550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-PEPSSI-2-PLUTO-V3.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:40.587329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-PEPSSI-3-PLUTO-V1.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:41.571368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-PEPSSI-3-PLUTO-V2.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:42.577856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-PEPSSI-3-PLUTO-V3.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:43.578105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-PEPSSI-4-PLASMA-V1.0","title":"NEW HORIZONS PEPSSI PLUTO ENCOUNTER DERIVED DATA","description":"This volume contains derived data taken by the New Horizons PEPSSI instrument during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-4-plasma-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:44.584446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-REX-2-PLUTO-V1.0","title":"NEW HORIZONS REX PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:45.588233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-REX-2-PLUTO-V2.0","title":"NEW HORIZONS REX PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:46.590258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-REX-3-PLUTO-V1.0","title":"NEW HORIZONS REX PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:47.612700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SDC-2-PLUTO-V1.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:48.663431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SDC-2-PLUTO-V2.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:49.671091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SDC-2-PLUTO-V3.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:50.605620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SDC-3-PLUTO-V1.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:51.611510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SDC-3-PLUTO-V2.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:52.615419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SDC-3-PLUTO-V3.0","title":"NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:53.618449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SWAP-2-PLUTO-V1.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:54.622478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SWAP-2-PLUTO-V2.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:55.638330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SWAP-2-PLUTO-V3.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:56.634287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SWAP-3-PLUTO-V1.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:57.639761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SWAP-3-PLUTO-V2.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:58.638810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SWAP-3-PLUTO-V3.0","title":"NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:12:59.668106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P-SWAP-5-DERIVED-SOLARWIND-V1.0","title":"NEW HORIZONS SWAP SOLAR WIND DATA AT PLUTO","description":"This volume contains solar wind data taken by the New Horizons SWAP instrument at Pluto encounter. NH_HELIOCENTRIC_SW_2015-07-14.CSV: The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind during the time frame of the Pluto Encounter. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft). Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems. NH_PLUTOCENTRIC_SW_2015-07-14.CSV: The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind during the time frame of the Pluto Encounter. The position of the spacecraft is given in two Pluto-centered coordinate systems, calculated at the mid-point of the observation. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP) instrument on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Pluto J2000 and Pluto IAU, calculated at the mid-point of the associated start and stop UTCs (in fields 1 and 2). These are standard Pluto centered coordinate systems.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-5-derived-solarwind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:00.721665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P/PSA-LEISA/MVIC-5-COMP-V1.0","title":"NEW HORIZONS PLUTO ENCOUNTER DERIVED COMPOSITION DATA","description":"This volume contains derived data products of the New Horizons Surface and Composition Science Theme Team including global color maps of Pluto and Charon, color image cubes and spectrum cubes, and absorption band maps from data taken during the Pluto Encounter mission phase. This volume also contains - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-leisa_mvic-5-comp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:01.730744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P/PSA-LORRI/ALICE/REX-5-ATMOS-V1.0","title":"NEW HORIZONS PLUTO ENCOUNTER DERIVED ATMOSPHERE DATA","description":"This volume contains atmospheric data obtained during the New Horizons fly-by of Pluto. The data includes solar atmospheric occultation count rates and opacities, unocculted solar count rates, atmospheric composition profiles for the species N2, CH4, C2H2, C2H4, and C2H6, lower atmospheric temperature and pressure profiles, and vertical I/F haze profiles.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_alice_rex-5-atmos-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:02.653167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P/PSA-LORRI/ALICE/REX-5-ATMOS-V2.0","title":"NEW HORIZONS PLUTO ENCOUNTER DERIVED ATMOSPHERE DATA","description":"This volume contains atmospheric data obtained during the New Horizons fly-by of Pluto. The data includes solar and stellar atmospheric occultation count rates and opacities, unocculted solar and stellar count rates, atmospheric composition profiles for the species N2, CH4, C2H2, C2H4, and C2H6, lower atmospheric temperature and pressure profiles, and vertical I/F haze profiles.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_alice_rex-5-atmos-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:03.667246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-P/PSA-LORRI/MVIC-5-GEOPHYS-V1.0","title":"NEW HORIZONS PLUTO ENCOUNTER DERIVED GEOPHYSICAL DATA","description":"This volume contains the New Horizons Pluto Encounter Geology and Geophysics Science Theme Team derived mosaics, topographic and bond albedo maps for Pluto and Charon. This volume also contains - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_mvic-5-geophys-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:04.660855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS ALICE KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:05.669470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS ALICE KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-11T09:08:01.430 and 2018-08-11T00:08:02.007 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:06.676287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-2-LAUNCH-V1.0","title":"NEW HORIZONS ALICE POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:07.677822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-2-LAUNCH-V2.0","title":"NEW HORIZONS ALICE POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:08.679804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS ALICE PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:09.690008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS ALICE PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:10.693010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS ALICE KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:11.727363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS ALICE KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-11T09:08:01.430 and 2018-08-11T00:08:02.007 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:12.775674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-3-LAUNCH-V1.0","title":"NEW HORIZONS ALICE POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:13.789485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-3-LAUNCH-V2.0","title":"NEW HORIZONS ALICE POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:14.716429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS ALICE PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:15.733481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS ALICE PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:16.714321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-ALICE-5-IPM-V1.0","title":"NEW HORIZONS ALICE INTERPLANETARY MEDIUM DERIVED DATA","description":"This volume contains derived data taken by the New Horizons Alice Ultraviolet Imaging Spectrograph to map Lyman-alpha emission from neutral hydrogen in the interplanetary medium. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-5-ipm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:17.714775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS LEISA KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:18.716367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS LEISA KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T21:08:01.686 and 2017-11-03T17:08:01.728 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:19.725460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-2-LAUNCH-V1.0","title":"NEW HORIZONS LEISA POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:20.723422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-2-LAUNCH-V1.1","title":"NEW HORIZONS LEISA POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:21.728229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LEISA PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LEISA during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:22.739517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS LEISA KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:23.786149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS LEISA KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T21:08:01.686 and 2017-11-03T17:08:01.728 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:24.799354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-3-LAUNCH-V1.0","title":"NEW HORIZONS LEISA POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:25.891447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-3-LAUNCH-V1.1","title":"NEW HORIZONS LEISA POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:26.747645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LEISA-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LEISA PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LEISA during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:27.759180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS LORRI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:28.756594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS LORRI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:29.761120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-LAUNCH-V1.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:30.763362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-LAUNCH-V1.1","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:31.769184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-LAUNCH-V2.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:32.777138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-LAUNCH-V3.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:33.778733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LORRI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:34.797252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS LORRI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:35.845106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:36.858843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:37.788453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-LAUNCH-V1.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:38.794310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-LAUNCH-V1.1","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:39.798947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-LAUNCH-V2.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:40.807999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-LAUNCH-V3.0","title":"NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:41.804621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:42.812861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-LORRI-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:43.806377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS MVIC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:44.818003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS MVIC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:45.827710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-LAUNCH-V1.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:46.850108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-LAUNCH-V2.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:47.900548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS MVIC PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:48.914138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:49.839251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:50.844831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-LAUNCH-V1.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:51.848809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-LAUNCH-V2.0","title":"NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:52.849778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-MVIC-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS MVIC PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:53.853051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS PEPSSI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:54.862004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS PEPSSI KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2018-08-13T00:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:55.864757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-2-LAUNCH-V1.0","title":"NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:56.865864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-2-LAUNCH-V1.1","title":"NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:57.868618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS PEPSSI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:58.915692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS PEPSSI PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:13:59.927280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS PEPSSI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:00.879885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS PEPSSI KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2018-08-13T00:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:01.878222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-3-LAUNCH-V1.0","title":"NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:02.885125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-3-LAUNCH-V1.1","title":"NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-launch-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:03.885989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS PEPSSI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:04.893995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS PEPSSI PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:05.897107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-PEPSSI-4-PLASMA-V1.0","title":"NEW HORIZONS PEPSSI DERIVED DATA","description":"This volume contains higher level averaged flux data taken by the New Horizons PEPSSI instrument. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-4-plasma-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:06.899016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS REX KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:07.905062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS REX KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-03T00:08:01.422 and 2018-08-01T14:08:01.997 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:08.905594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-2-LAUNCH-V1.0","title":"NEW HORIZONS REX POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:09.926733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-2-LAUNCH-V2.0","title":"NEW HORIZONS REX POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:10.973711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS REX PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:11.986321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS REX PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:12.929327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS REX KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:13.934288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS REX KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-03T00:08:01.422 and 2018-08-01T14:08:01.997 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:14.934008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-3-LAUNCH-V1.0","title":"NEW HORIZONS REX POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:15.935738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-REX-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS REX PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:16.942583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS SDC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:17.944289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS SDC KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2018-08-14T22:08:02.011 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:18.946292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-2-LAUNCH-V1.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:19.954139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-2-LAUNCH-V2.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:20.959327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-2-LAUNCH-V3.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:21.982363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-2-LAUNCH-V4.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:23.030359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS SDC PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:24.044636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS SDC PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:24.973884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS SDC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:25.976492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS SDC KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2018-08-14T22:08:02.011 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:26.981372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-3-LAUNCH-V1.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:27.980414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-3-LAUNCH-V2.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:28.990495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-3-LAUNCH-V3.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:29.990555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-3-LAUNCH-V4.0","title":"NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:30.995189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS SDC PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:31.996830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SDC-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS SDC PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:32.994740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-2-KEMCRUISE1-V1.0","title":"NEW HORIZONS SWAP KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:34.044501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-2-KEMCRUISE1-V2.0","title":"NEW HORIZONS SWAP KEMCRUISE1 RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2018-08-13T02:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:35.087755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-2-LAUNCH-V1.0","title":"NEW HORIZONS SWAP POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:36.097683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-2-LAUNCH-V2.0","title":"NEW HORIZONS SWAP POST-LAUNCH CHECKOUT RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:37.010615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-2-PLUTOCRUISE-V1.0","title":"NEW HORIZONS SWAP PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2013-07-13T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:38.019793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-2-PLUTOCRUISE-V2.0","title":"NEW HORIZONS SWAP PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:39.025901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-2-PLUTOCRUISE-V3.0","title":"NEW HORIZONS SWAP PLUTO CRUISE RAW","description":"This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:40.026470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-3-KEMCRUISE1-V1.0","title":"NEW HORIZONS SWAP KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-kemcruise1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:41.032023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-3-KEMCRUISE1-V2.0","title":"NEW HORIZONS SWAP KEMCRUISE1 CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2018-08-13T02:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-kemcruise1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:42.038950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-3-LAUNCH-V1.0","title":"NEW HORIZONS SWAP POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-launch-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:43.041255","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-3-LAUNCH-V2.0","title":"NEW HORIZONS SWAP POST-LAUNCH CHECKOUT CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-launch-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:44.034050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-3-PLUTOCRUISE-V1.0","title":"NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2013-07-13T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:45.048062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-3-PLUTOCRUISE-V2.0","title":"NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:46.101162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-3-PLUTOCRUISE-V3.0","title":"NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED","description":"This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:47.112993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-5-DERIVED-SOLARWIND-V1.0","title":"NEW HORIZONS SWAP SOLAR WIND DERIVED DATA","description":"This volume contains solar wind data taken by the New Horizons SWAP instrument. The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-5-derived-solarwind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:48.062068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-X-SWAP-5-DERIVED-SOLARWIND-V2.0","title":"NEW HORIZONS SWAP SOLAR WIND DERIVED DATA","description":"This volume contains solar wind and interstellar pick up ion data taken by the New Horizons SWAP instrument. Solar Wind ---------- The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems. Interstellar Pickup Ion ----------------------- The Comma-Separated Values (CSV) file provides the interstellar pickup ion density, temperature, and pressure.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-5-derived-solarwind-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:49.063971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"OAO-J-OASIS-3-RDR-SL9-V1.0","title":"VOLUME 1008","description":"This volume contains the data for the OAO/OASIS Jupiter Observation of SL9 Fragment K V1.0 data set, ID: OAO-J-OASIS-3-RDR-SL9-V1.0. For comparison with the Galileo fragment K results, the ground-based measurements in the near IR reported by the Okayama Astrophysical Observatory (OASIS) have been included in both FITS and PDS form.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/oao-j-oasis-3-rdr-sl9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:14:50.064636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_ALICE-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:17:45.585318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_ALICE-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:17:47.089051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DERIVED-V3.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:17:58.117963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DERIVED-V4.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:17:59.636838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ARROKOTH_COMPOSITION-V1.0","title":"Menu: Skip within this page","description":"Abstract: This dataset presents surface composition maps of the trans-Neptunian object (486958) Arrokoth, encountered by the New Horizons spacecraft on its first extended mission to the Kuiper Belt. The dataset includes calibrated spectral cubes derived from observations made by the LEISA and MVIC spectral imagers.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:01.188274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ARROKOTH_GEOPHYSICS-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Encounter with (486958) Arrokoth: Derived Shape Models and Surface Maps, Version 1.0, J. Redfern, O. Umurhan, R. Beyer, J.D. Hofgartner, S. Porter, K.N. Singer, B. Enke, B. Keeney, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:02.717567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ARROKOTH_SHAPEMODEL_PORTER2024-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Porter, S., New Horizons Porter (2024) Arrokoth Shape Model Collection, C. Gobat, B. Enke, M.K. Crombie, B. Keeney, J.Wm. Parker, and K.N. Singer (eds.), urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0, NASA Planetary Data System, 2024.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:04.133101","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"IPM_LYMAN_ALPHA-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Kuiper Belt Extended Mission: Alice Ultraviolet Imaging Spectrograph Scans of Lyman-alpha Emission from the Interplanetary Medium, Version 1.0, R. Gladstone, J. Redfern, B. Enke, K.N. Singer, B. Keeney, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:05.650034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"OSS_PLASMA_FLUXES-V1.0","title":"Menu: Skip within this page","description":"Abstract: This dataset contains one-hour averaged energetic particle flux rate values and counts-per-second generated by the New Horizons Particles and Plasma science team from data taken by the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument. The data covers a time range from early 2012 through late 2020. Flux rates and sums are presented for each of the six instrument look directions.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:09.666725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"REX-5-ATMOS-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains derived atmospheric data from the New Horizons mission during the Pluto Encounter mission phase, based on data from the Alice UV imaging spectrograph instrument, the Radio EXperiment instrument, and the LOng Range Reconnaissance Imager instrument. The data set includes a solar spectrum of Pluto and Charon; atmospheric composition on Pluto for N2, CH4, C2H2, C2H4, C2H6, and haze, and the haze brightness profiles; Pluto lower atmospheric temperature and pressure profiles; stellar occultation and appulse data of Pluto; and temperatures of the diametric and winter pole thermscans of Pluto.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:11.166780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PLUTOSYSTEM_COMPOSITION-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains global color maps, image cubes, and absorption band maps created from calibrated data taken during the PLUTO mission phase by the Linear Etalon Imaging Spectral Array (LEISA) instrument and the Multispectral Visible Imaging Camera (MVIC) instrument on the New Horizons spacecraft. Image cubes are provided per instrument and target body, covering the surfaces of Pluto, Charon, Nix, Hydra, and Kerberos. Color maps and absorption band maps for N2, CO, CH4, and H2O are provided for both Pluto and Charon.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:12.725022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PLUTOSYSTEM_GEOPHYSICS-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Encounter with the Pluto System: Mosaics, Topographic Maps, and Bond Albedo Maps for Pluto and Charon from LORRI and MVIC Observations, Version 1.0, T. Finley, A. Egan, J. Mukherjee, J. Salmon, B. Enke, R. Beyer, B. Buratti, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:14.249572","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PLUTOSYSTEM_PLASMA_FLUXES-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"McNutt, R.L. Jr., New Horizons Encounter with the Pluto System: Time-Averaged Solar Winds Particle and Ion Fluxes from PEPSSI Observations, Version 1.0, T. Finley, L. Brown, M. Hill, P. Kollmann, A. Egan, B. Enke, J. Mukerjee, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:15.683430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PLUTOSYSTEM_SOLAR_WIND-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument during the Pluto encounter. This archive contains two data products. Each product compiles the CODMAC level 2 source data used, the solar wind speed, proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, spacecraft position and speed. The two product files differ in that one is in Heliographic Inertial (HGI) coordinates and the other is in Pluto centric J2000 and IAU J2000 coordinates.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:17.189803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DOCUMENTS-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:19.704105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DOCUMENTS-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:21.212231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DOCUMENTS-V3.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:22.717892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DOCUMENTS-V4.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:24.252500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DOCUMENTS-V4.1","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:25.779224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DOCUMENTS-V4.2","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:27.315239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_DOCUMENTS-V4.3","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.3/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:28.738153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"LORRI-V2.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains documents applicable to the LORRI instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:33.245529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"MISSION-V2.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Hirsch, B., T.F. Barnes IV, J. Redfern (eds.), New Horizons Mission Documents, Version 2.0, urn:nasa:pds:nh_documents:mission::2.0, NASA Planetary Data System, 2024.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:36.304991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PEPSSI-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Gicquel, A., and J. Redfern (eds.), New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument, urn:nasa:pds:nh_documents:pepssi::1.0, NASA Planetary Data System, 2024.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:37.842753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PEPSSI-V2.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Gicquel, A., B. Sharkey, J. Redfern, T. Finley, and B.T. Carcich (eds.), New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument, Version 2.0, urn:nasa:pds:nh_documents:pepssi::2.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:39.278662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RALPH-V2.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains documents applicable to the Ralph instrument package (housing both the MVIC and LEISA instruments) onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:42.288381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"REX-V1.0","title":"Menu: Skip within this page","description":"Abstract: This collection presents documentation and ancillary data tables specific to the Radio Science Experiment (REX) on the New Horizons Spacecraft. It covers both the primary New Horizons mission, as well as the first extended mission to the Kuiper Belt referred to as \"KEM1\".","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:43.806828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDC-V1.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains documents applicable to the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft. There are several tables that list the times when the instrument power was turned on and off.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:sdc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:45.307821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDC-V2.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Gicquel, A., J. Redfern, T. Finley, and B. Carcich (eds.), New Horizons Documents for the Student Dust Counter (SDC) Instrument, Version 2.0, urn:nasa:pds:nh_documents:sdc::2.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:46.802296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_LEISA-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:49.857246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_LEISA-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:51.312241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CALIBRATION_FILES-V1.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Sharkey, B., A. Gicquel, and J. Redfern, Reference Files Used in Calibrating Data from the New Horizons Linear Etalon Imaging Spectral Array (LEISA), urn:nasa:pds:nh_leisa:calibration_files::1.0, NASA Planetary Data System, 2024.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:18:52.817776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_LORRI-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:00.421905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_LORRI-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:01.916669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_MVIC-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:10.922703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_MVIC-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:12.447252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_PEPSSI-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:21.436591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_PEPSSI-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:23.093233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"CALIBRATION_FILES-V2.0","title":"Menu: Skip within this page","description":"PDS citation information for this PDS4 collection: \"Sharkey, B., A. Gicquel, J. Redfern, B.T. Carcich, and T. Finley (eds.), New Horizons Calibrations for the PEPSSI Instrument, Version 2.0, urn:nasa:pds:nh_pepssi:calibration_files::2.0, NASA Planetary Data System, 2025.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:26.791714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_REX-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Radio Science Experiment (REX) instrument onboard the New Horizons spacecraft, as well related Tracking and Navigation Files (TNF) used by the project.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:34.424094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_SDC-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:40.384174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_SDC-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:41.903106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_SECONDARY-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle provides a place to create collections containing only secondary members to support lists of product IDs related to derived data sets and analytical references in publications. The collection labels will indicate the relevant data sets or publications.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:50.926687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ALICEOCC_CHARON_SOURCES-V1.0","title":"Menu: Skip within this page","description":"Abstract: This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Charon provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:52.434499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"ALICEOCC_PLUTO_SOURCES-V1.0","title":"Menu: Skip within this page","description":"Abstract: This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Pluto provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:53.932436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_SWAP-V1.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:55.487585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_SWAP-V2.0","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:57.006494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PDS4-NH_SWAP-V2.1","title":"Menu: Skip within this page","description":"Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v2.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:19:58.541686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"KEM1_DATA_SUMMARY_PLOTS-V1.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the first Kuiper Belt Extended Mission KEM1 Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:02.977685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-3-PLUTO-V3.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:05.978338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PLUTO_DATA_SUMMARY_PLOTS-V1.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the Pluto Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Pluto. A gain test was also performed. The Pluto flyby was on the 14th of July 2015. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:07.542318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"NH-A-SWAP-2-PLUTO-V3.0","title":"Menu: Skip within this page","description":"Abstract: This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:09.064027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PHB2-M-KRFM-3-PHOTOMETRY-V1.0","title":"PHOBOS 2 KRFM PHOTOMETRY","description":"This volume contains a photometry table produced by the KRFM instrument aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-krfm-3-photometry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:27.006186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PHB2-M-TS-2-EDITED-THRM/VIS-IMG-EDR-V1.0","title":"PHOBOS 2 TERMOSKAN EDITED IMAGES","description":"This volume contains edited visual and thermal IR images from the termoskan instrument flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-edited-thrm_vis-img-edr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:28.007584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PHB2-M-TS-2-THERM/VIS-IMGEDR-V1.0","title":"PHOBOS 2 TERMOSKAN RAW IMAGES","description":"This volume contains raw visual and thermal images from the termoskan instrument flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-therm_vis-imgedr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:29.012905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"PHB2-M-VSK-2-EDR-V1.0","title":"PHOBOS 2 VSK-FREGAT IMAGES","description":"This volume contains images obtained by the three-channel TV imager VSK-FREGAT, flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-vsk-2-edr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:30.035075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-A-ROMAP-2-AST1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE STEINS FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Steins fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:31.079482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-A-ROMAP-2-AST1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE STEINS FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta STEINS fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:32.091483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-A-ROMAP-2-AST2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE LUTETIA FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Lutetia fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:33.025504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-A-ROMAP-2-AST2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE LUTETIA FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta LUTETIA fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:34.031579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-A-ROMAP-3-AST1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE STEINS FLY-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Steins fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:35.030866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-A-ROMAP-3-AST1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE STEINS FLY-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Steins fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:36.042297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-A-ROMAP-3-AST2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE LUTETIA FLY-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Lutetia fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:37.042863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-A-ROMAP-3-AST2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE LUTETIA FLY-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Lutetia fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:38.048087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-COSAC-2-FSS-V1.0","title":"COSAC RAW DATA FOR THE FSS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:39.048662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-COSAC-2-RBD-V1.0","title":"COSAC RAW DATA FOR THE RBD COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:40.050197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-COSAC-3-FSS-V1.0","title":"COSAC CALIBRATED DATA FOR THE FSS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:41.057211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-COSAC-3-RBD-V1.0","title":"COSAC CALIBRATED DATA FOR THE RBD COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:42.090308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-MULTI-5-ANCDR-V1.0","title":"ROSETTA LANDER ANCILLARY DATA","description":"This archive contains the navigation and ancillary data for the Rosetta Lander during comet phases SDL (Separation Descent and Landing), RBD (Rebounds on comet surface) and FSS (First Science Sequence).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-multi-5-ancdr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:43.138839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-MULTI-5-ANCDR-V2.0","title":"ROSETTA LANDER ANCILLARY DATA","description":"This archive contains the navigation and ancillary data for the Rosetta Lander during comet phases SDL (Separation Descent and Landing), RBD (Rebounds on comet surface) and FSS (First Science Sequence).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-multi-5-ancdr-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:44.150301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-MUPUS-2-FSS-V1.0","title":"MUPUS CALIBRATED DATA FOR THE FSS MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:45.068314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-MUPUS-2-RBD-V1.0","title":"MUPUS EDITED DATA FOR THE RBD MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:46.074071","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-MUPUS-2-SDL-V1.0","title":"MUPUS CALIBRATED DATA FOR THE SDL MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:47.080874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-MUPUS-3-FSS-V1.0","title":"MUPUS EDITED DATA FOR THE FSS MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:48.079907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-MUPUS-3-RBD-V1.0","title":"MUPUS CALIBRATED DATA FOR THE RBD MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:49.087977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-MUPUS-3-SDL-V1.0","title":"MUPUS CALIBRATED DATA FOR THE SDL MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:50.092974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-PTOLEMY-2-FSS-V1.0","title":"PTOLEMY EDITED DATA FOR THE FSS PHASE","description":"This volume contains edited data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:51.098444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-PTOLEMY-2-RBD-V1.0","title":"PTOLEMY EDITED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBDS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:52.108677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-PTOLEMY-3-FSS-V1.0","title":"PTOLEMY CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains calibrated data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:53.106672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-PTOLEMY-3-RBD-V1.0","title":"PTOLEMY CALIBRATED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-rbd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:54.151184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-PTOLEMY-5-FSS-V1.0","title":"PTOLEMY DERIVED DATA FOR THE FSS PHASE","description":"This volume contains derived data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-5-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:55.199240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROLIS-2-FSS-V1.0","title":"ROLIS EDITED DATA FOR THE FSS PHASE","description":"This volume contains ROLIS level 2 data products and supporting documentation from the FSS phase of Rosetta mission","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:56.205846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROLIS-2-SDL-V1.0","title":"ROLIS EDITED DATA FOR THE SDL PHASE","description":"This volume contains ROLIS level 2 data products and supporting documentation from the SDL phase of Rosetta mission","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:57.118327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROLIS-3-SDL-V1.0","title":"ROLIS CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains ROLIS level 3 data products and supporting documentation from the SDL phase of Rosetta mission","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-3-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:58.118159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-2-FSS-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:20:59.118217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-2-FSS-SPM-V1.0","title":"ROMAP SPM EDITED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:00.124962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-2-RBD-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:01.120379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-2-RBD-SPM-V1.0","title":"ROMAP SPM EDITED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:02.127775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-2-SDL-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-sdl-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:03.141514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-3-FSS-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:04.143188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-3-FSS-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:05.251417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-3-RBD-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:06.206933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-3-RBD-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:07.218287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-3-SDL-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-sdl-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:08.155649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-5-FSS-MAG-V1.0","title":"ROMAP MAG DERIVED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-fss-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:09.163177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-5-RBD-MAG-V1.0","title":"ROMAP MAG DERIVED DATA FOR THE RBD PHASE","description":"This volume contains data and supporting documentation from the Rosetta RBD mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-rbd-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:10.158869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-ROMAP-5-SDL-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-sdl-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:11.167821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-SD2-3-FSS-V1.0","title":"SD2 CALIBRATED DATA FOR THE FSS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta comete mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sd2-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:12.171183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-SESAME-2-FSS-V1.0","title":"SESAME EDITED DATA FOR THE FSS PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:13.175604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-SESAME-2-SDL-V1.0","title":"SESAME EDITED DATA FOR THE SDL PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:14.180894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-SESAME-3-FSS-V1.0","title":"SESAME CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:15.189231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-C-SESAME-3-SDL-V1.0","title":"SESAME CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:16.182073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-APXS-2-PHC-V1.0","title":"APXS RAW DATA FOR THE PHC COMET PHASE","description":"This volume contains Rosetta APXS level 2 data products and supporting documentation from the PHC Comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-apxs-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:17.217542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-COSAC-2-PDCS-V1.0","title":"COSAC RAW DATA FOR THE PDCS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:18.264046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-COSAC-2-PHC-V1.0","title":"COSAC RAW DATA FOR THE PHC COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:19.277331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-COSAC-3-PDCS-V1.0","title":"COSAC CALIBRATED DATA FOR THE PDCS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:20.199421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-COSAC-3-PHC-V1.0","title":"COSAC CALIBRATED DATA FOR THE PHC COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC Comet mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:21.198851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-MUPUS-2-PHC-V1.0","title":"MUPUS CALIBRATED DATA FOR THE PHC MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:22.204116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-MUPUS-3-PHC-V1.0","title":"MUPUS CALIBRATED DATA FOR THE PHC MISSION PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:23.210941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-PTOLEMY-2-PDCS-V1.0","title":"PTOLEMY EDITED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:24.219344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-PTOLEMY-2-PHC-V1.0","title":"PTOLEMY EDITED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:25.222093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-PTOLEMY-3-PDCS-V1.0","title":"PTOLEMY CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:26.220853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-PTOLEMY-3-PHC-V1.0","title":"PTOLEMY CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:27.230589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROLIS-2-PHC-V1.0","title":"ROLIS EDITED DATA FOR THE PHC PHASE","description":"This volume contains ROLIS level 2 data products and supporting documentation from the PHC phase of Rosetta mission","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-rolis-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:28.230467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CR2-MAG-V1.0","title":"ROMAP MAG RAW DATA FOR THE CR2 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:29.276223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CR2-SPM-V1.0","title":"ROMAP SPM RAW DATA FOR THE CR2 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:30.327813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CR4A-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:31.241060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CR4A-SPM-V1.0","title":"ROMAP SPM RAW DATA FOR THE MARS SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR4 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:32.246605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CR4B-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR4B PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:33.248644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CR4B-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR4B","description":"This volume contains data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:34.253278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CR5-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:35.258431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CR5-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:36.265184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CVP-MAG-V1.0","title":"ROMAP MAG RAW DATA FOR THE COMMISSIONING PHASE","description":"This volume contains raw data (level 2)and supporting documentation from the Rosetta commissioning mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:37.256816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-CVP-SPM-V1.0","title":"ROMAP SPM RAW DATA FOR COMMISSIONING PHASE","description":"This volume contains raw data (level 2) and supporting documentation from the Rosetta Commissioning mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:38.268894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-PDCS-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-pdcs-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:39.280796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-PHC-MAG-V1.0","title":"ROMAP MAG EDITED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:40.281256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-PHC-SPM-V1.0","title":"ROMAP SPM EDITED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:41.334433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-RVM1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE RVM1 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:42.345865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-2-RVM1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE RVM1 PHASE","description":"This volume contains level 2 data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:43.295596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-CR2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR2 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:44.293394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-CR2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR2 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:45.298467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-CR4A-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:46.301455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-CR4A-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:47.304287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-CR4B-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR4B PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:48.310099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-CR4B-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR4B PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:49.311422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-CR5-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:50.318429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-CR5-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:51.319492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-PDCS-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-pdcs-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:52.341020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-PHC-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:53.390811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-PHC-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:54.404885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-RVM1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE RVM1 PHASE","description":"This volume contains data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:55.333447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-3-RVM1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE RVM1 PHASE","description":"This volume contains level 3 data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:56.336165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-5-PDCS-MAG-V1.0","title":"ROMAP MAG DERIVED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-pdcs-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:57.336384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-ROMAP-5-PHC-MAG-V1.0","title":"ROMAP MAG DERIVED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-phc-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:58.346031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-SD2-3-GRND-V1.0","title":"SD2 CALIBRATED DATA FROM THE GROUND REFERENCE MODEL TESTS","description":"This volume contains data and supporting documentation from the Rosetta Ground Reference Model tests during the First Science Sequence mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-grnd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:21:59.349527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-SD2-3-PDCS-V1.0","title":"SD2 CALIBRATED DATA FOR THE PDCS COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase (Pre Delivery Calib Science","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:00.349155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-SD2-3-PHC-V1.0","title":"SD2 CALIBRATED DATA FOR THE PHC COMET PHASE","description":"This volume contains data and supporting documentation from the Rosetta comete mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:01.354610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-SESAME-2-PDCS-V1.0","title":"SESAME EDITED DATA FOR THE PDCS PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:02.361321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-SESAME-2-PHC-V1.0","title":"SESAME RAW DATA FOR THE PHC PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:03.365785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-SESAME-3-PDCS-V1.0","title":"SESAME CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:04.402568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-CAL-SESAME-3-PHC-V1.0","title":"SESAME RAW DATA FOR THE PHC PHASE","description":"This volume contains SESAME data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:05.457260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-2-EAR1-MAG-V1.0","title":"ROMAP MAG RAW DATA FOR THE EARTH FLY-BY","description":"This volume contains calibated data (level 2) and supporting documentation from the Rosetta Earth fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:06.459919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-2-EAR1-SPM-V1.0","title":"ROMAP SPM RAW DATA FOR THE EARTH SWING-BY","description":"This volume contains raw data (level 2) and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:07.378893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-2-EAR2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:08.384114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-2-EAR2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:09.390204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-2-EAR3-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:10.387465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-2-EAR3-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:11.393467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-3-EAR1-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains calibrated data (level 3) and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:12.402051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-3-EAR1-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:13.405323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-3-EAR2-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:14.404628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-3-EAR2-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:15.411447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-3-EAR3-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:16.460409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-E-ROMAP-3-EAR3-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:17.473012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-M-ROMAP-2-MARS-MAG-V1.0","title":"ROMAP MAG RAW DATA FOR THE MARS SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Mars swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:18.415417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-M-ROMAP-2-MARS-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE MARS SWING-BY","description":"This volume contains level 2 data and supporting documentation from the Rosetta Mars swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:19.422013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-M-ROMAP-3-MARS-MAG-V1.0","title":"ROMAP MAG CALIBRATED DATA FOR THE MARS SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Mars swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-mag-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:20.431085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RL-M-ROMAP-3-MARS-SPM-V1.0","title":"ROMAP SPM CALIBRATED DATA FOR THE MARS SWING-BY","description":"This volume contains level 3 data and supporting documentation from the Rosetta Mars swing by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-spm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:21.432670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-MIDAS-3-AST2-LUTE-V1.0","title":"MIDAS SCIENCE DATA FOR THE LUTETIA FLY-BY PHASE","description":"Lutetia Fly-by Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-midas-3-ast2-lute-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:22.441587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-MIDAS-3-AST2-LUTE-V3.0","title":"MIDAS SCIENCE DATA FOR THE LUTETIA FLY-BY PHASE","description":"Lutetia Fly-by Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-midas-3-ast2-lute-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:23.443378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-MIRO-2-AST1-STEINS-V1.0","title":"RAW MIRO DATA FOR THE STEINS FLY-BY PHASE","description":"This volume is the tenth containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Steins Flyby Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast1-steins-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:24.447913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-MIRO-2-AST2-LUTETIA-V1.0","title":"RAW MIRO DATA FOR THE LUTETIA FLY-BY PHASE","description":"This volume is the 14th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Lutetia Flyby Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast2-lutetia-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:25.453169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-MIRO-3-AST1-STEINS-V1.0","title":"RAW MIRO DATA FOR THE STEINS FLY-BY PHASE","description":"This volume is the 11th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Steins Fly-by Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast1-steins-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:26.454300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-MIRO-3-AST2-LUTETIA-V1.0","title":"RAW MIRO DATA FOR THE LUTETIA FLY-BY PHASE","description":"This volume is the 15th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Lutetia Fly-by Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast2-lutetia-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:27.467550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-NAVCAM-2-AST1-V1.0","title":"NAVCAM RAW DATA FOR STEINS FLYBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the STEINS flyby, September 2008 (closest approach on 5 September)","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-navcam-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:28.522276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-NAVCAM-2-AST1-V1.1","title":"NAVCAM RAW DATA FOR STEINS FLYBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the STEINS flyby, September 2008 (closest approach on 5 September)","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-navcam-2-ast1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:29.532025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-2-AST1-STEINSFLYBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSINAC-2-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast1-steinsflyby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:30.581933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-2-AST1-STEINSFLYBY-V2.0","title":"RAW OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast1-steinsflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:31.471183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast2-lutetiaflyby-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:32.525000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V2.0","title":"RAW OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast2-lutetiaflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:33.477570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-3-AST1-STEINSFLYBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSINAC-3-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast1-steinsflyby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:34.537123","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-3-AST1-STEINSFLYBY-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast1-steinsflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:35.490293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast2-lutetiaflyby-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:36.555327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast2-lutetiaflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:37.487523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-4-AST1-STEINS-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:38.500767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-4-AST1-STEINS-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:39.531686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-4-AST1-STEINS-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:40.576848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-4-AST1-STEINSFLYBY-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steinsflyby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:41.588903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-4-AST2-LUTETIA-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:42.512497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-4-AST2-LUTETIA-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:43.513756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-4-AST2-LUTETIA-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:44.520945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC-4-AST2-LUTETIAFLYBY-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetiaflyby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:45.522837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC/OSIWAC-5-LUTETIA-SHAPE-V1.0","title":"ROOSI_9002: 21 LUTETIA SHAPE MODEL","description":"This delivery volume holds the data set containing the detailed plate shape model of asteroid 21 Lutetia, as derived from the images that were obtained by the Rosetta spacecraft around the time of its closest approach to the asteroid.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-lutetia-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:46.637117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSINAC/OSIWAC-5-STEINS-SHAPE-V1.0","title":"ROOSI_9001: 2867 STEINS SHAPE MODEL","description":"This delivery volume holds the data set containing the detailed plate shape model of asteroid 2867 Steins, as derived from the images that were obtained by the Rosetta spacecraft around the time of its closest approach to the asteroid.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-steins-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:47.531354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-2-AST1-STEINSFLYBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSIWAC-2-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast1-steinsflyby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:48.591907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-2-AST1-STEINSFLYBY-V2.0","title":"RAW OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast1-steinsflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:49.534218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast2-lutetiaflyby-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:50.602711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V2.0","title":"RAW OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast2-lutetiaflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:51.585760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-3-AST1-STEINSFLYBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSIWAC-3-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast1-steinsflyby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:52.692656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-3-AST1-STEINSFLYBY-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast1-steinsflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:53.645413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast2-lutetiaflyby-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:54.602676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast2-lutetiaflyby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:55.563001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-4-AST1-STEINS-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:56.568565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-4-AST1-STEINS-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:57.573757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-4-AST1-STEINS-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:58.572496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-4-AST1-STEINSFLYBY-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steinsflyby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:22:59.581603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-4-AST2-LUTETIA-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:00.584678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-4-AST2-LUTETIA-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:01.591051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-4-AST2-LUTETIA-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:02.598750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-OSIWAC-4-AST2-LUTETIAFLYBY-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetiaflyby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:03.645312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-ROSINA-2-AST1-V1.0","title":"RO-A-ROSINA-2-AST1-V1.0","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Steins Flyby. The dataset includes data from COPS and DFMS. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rosina-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:04.660258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCICA-2-AST2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-2-ast2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:05.608162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCICA-2-AST2-RAW-V2.0","title":"ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 EDITED","description":"ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-2-ast2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:06.608793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCICA-3-AST2-CALIB-V1.0","title":"ROSETTA-ORBITER LUTETIA RPCICA 3 AST2 CALIBRATED","description":"ROSETTA-ORBITER LUTETIA RPCICA 3 AST2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-3-ast2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:07.610953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCICA-4-AST2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR_CTS","description":"ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:08.613570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCICA-4-AST2-CORR-V1.0","title":"ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR","description":"ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:09.625458","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCIES-2-AST1-V1.0","title":"RPCIES RAW DATA FOR THE STEINS FLYBY","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:10.631786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCIES-2-AST2-V1.0","title":"RPCIES RAW DATA FOR THE LUTETIA FLYBY","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the LUTETIA flyby in July 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:11.630823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCLAP-2-AST1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR AST1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the STEINS FLY-BY phase in 2008 where the primary target was the asteroid 2867 STEINS. This particular data set contains data for the time period 2008-08-04T00:00:00.000 -- 2008-10-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:12.629495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCLAP-2-AST2-EDITED-V1.0","title":"RPCLAP EDITED RAW DATA FOR LUTETIA FLY-BY","description":"Rosetta edited LAP data from the Rosetta flyby of asteroid 21 Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast2-edited-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:13.638905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCLAP-2-AST2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR AST2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the LUTETIA FLY-BY phase in 2010 where the primary target was the asteroid 21 LUTETIA. This particular data set contains data for the time period 2010-05-17T00:00:00.000 -- 2010-09-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:14.657701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCLAP-3-AST1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR AST1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the STEINS FLY-BY phase in 2008 where the primary target was the asteroid 2867 STEINS. This particular data set contains data for the time period 2008-08-04T00:00:00.000 -- 2008-10-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:15.703065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCLAP-3-AST2-CALIB-V1.0","title":"RPCLAP EDITED RAW DATA FOR LUTETIA FLY-BY","description":"Rosetta edited LAP data from the Rosetta flyby of asteroid 21 Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:16.717501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCLAP-3-AST2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR AST2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the LUTETIA FLY-BY phase in 2010 where the primary target was the asteroid 21 LUTETIA. This particular data set contains data for the time period 2010-05-17T00:00:00.000 -- 2010-09-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:17.655122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-2-AST1-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE STEINS FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:18.651313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-2-AST1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE STEINS FLYBY (AST1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:19.661576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-2-AST2-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE LUTETIA FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:20.668349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-2-AST2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE LUTETIA FLYBY (AST2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:21.671882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-3-AST1-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE STEINS FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast1-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:22.674591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-3-AST1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: STEINS FLYBY (AST1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:23.677452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-3-AST2-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE LUTETIA FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast2-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:24.683393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-3-AST2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: LUTETIA FLYBY (AST2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:25.689612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-4-AST1-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE STEINS FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast1-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:26.717569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-4-AST1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: STEINS FLYBY (AST1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:27.763996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-4-AST2-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE LUTETIA FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast2-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:28.773025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMAG-4-AST2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: LUTETIA FLYBY (AST2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:29.699182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMIP-3-AST1-V1.0","title":"RPCMIP CALIBRATED DATA FOR THE STEINS PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the STEINS phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:30.699823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMIP-3-AST1-V2.0","title":"RPCMIP STEINS FLY-BY L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:31.701182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A-RPCMIP-3-AST2-V1.0","title":"RPCMIP LUTETIA FLY-BY L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:32.704064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A/CAL-ALICE-2-AST1-V1.0","title":"ROSETTA ALICE IN AST 1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:33.707727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A/CAL-ALICE-2-AST2-V1.0","title":"ROSETTA ALICE IN AST2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:34.705273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A/CAL-ALICE-3-AST1-V1.0","title":"ROSETTA ALICE IN AST 1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:35.713168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A/CAL-ALICE-3-AST2-V1.0","title":"ROSETTA ALICE IN AST 2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:36.717133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A/CAL-ALICE-4-AST1-V1.0","title":"ROSETTA ALICE IN AST 1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:37.725887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A/CAL-ALICE-4-AST2-V1.0","title":"ROSETTA ALICE IN AST2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:38.774674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A/CAL-NAVCAM-2-AST2-V1.0","title":"NAVCAM RAW DATA FOR LUTETIA FLYBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the LUTETIA flyby, July 2010 (closest approach at 15:45 on 10 July)","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-navcam-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:39.786735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-A/CAL-NAVCAM-2-AST2-V1.1","title":"NAVCAM RAW DATA FOR LUTETIA FLYBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the LUTETIA flyby, July 2010 (closest approach at 15:45 on 10 July) in its journey to comet CG/CP67.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-navcam-2-ast2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:40.722649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-COSIMA-3-V1.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:41.723057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-COSIMA-3-V2.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:42.726370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-COSIMA-3-V3.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:43.723272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-COSIMA-3-V4.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO ESCORT PHASE 3","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v4.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:44.729175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-COSIMA-3-V5.0","title":"ROSETTA COSIMA DATA UPTO ESCORT PHASE 4","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:45.735437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-COSIMA-3-V6.0","title":"ROSETTA COSIMA DATA","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:46.733031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-ESC1-COMET-ESCORT-1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 1' phase, from the November 21, 2014 until March 10, 2015 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc1-comet-escort-1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:47.738401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-ESC1-COMET-ESCORT-1-V1.1","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 1' phase, from the November 21, 2014 until March 10, 2015 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc1-comet-escort-1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:48.738011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-ESC2-COMET-ESCORT-2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 2' phase, from the March 11, 2015 until June 30, 2015 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc2-comet-escort-2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:49.781927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-ESC2-COMET-ESCORT-2-V1.1","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 2' phase, from the March 11, 2015 until June 30, 2015 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc2-comet-escort-2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:50.831671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-ESC3-COMET-ESCORT-3-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 3 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 3' phase, from the July 1, 2015 until October 20, 2015. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc3-comet-escort-3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:51.747791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-ESC4-COMET-ESCORT-4-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 4 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Comet Escort 4' phase, from the October 21, 2015 until January 12, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc4-comet-escort-4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:52.752888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-EXT1-EXTENSION-1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 1' phase, from the January 13, 2016 until April 5, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext1-extension-1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:53.751118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-EXT2-EXTENSION-2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 2' phase, from the April 6, 2016 until June 30, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext2-extension-2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:54.753222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-EXT3-EXTENSION-3-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 3 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 3' phase, from the July 1, 2016 until September 30, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext3-extension-3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:55.759435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-PRL-PRELANDING-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING PRELANDING PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Prelanding' phase, from the January 21, 2014 until November 20, 2014 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-prl-prelanding-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:56.765822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-3-PRL-PRELANDING-V1.1","title":"ROSETTA GIADA EXPERIMENT DATA DURING PRELANDING PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Prelanding' phase, from the January 21, 2014 until November 20, 2014 It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-prl-prelanding-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:57.763517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-GIA-5-67P-DUST-MAPS-V1.0","title":"ROSETTA GIADA EXPERIMENT DUST MAPS","description":"This volume contains HIGH level products produced by GIADA TEAM using the data of the scientific phase of the ROSETTA mission from the July 6, 2014 until September 30, 2016. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-5-67p-dust-maps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:58.760842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC1-SAMPLES-V1.0","title":"RAW MIDAS DATA FOR THE COMET ESCORT 1 PHASE","description":"Comet Escort Phase 1","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:23:59.764009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC1-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 1 PHASE","description":"Comet Escort Phase 1","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:00.798212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC1-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 1 PHASE","description":"Escort Phase 1 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:01.842433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC2-SAMPLES-V1.0","title":"RAW MIDAS DATA FOR THE COMET ESCORT 2 PHASE","description":"Comet Escort Phase 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:02.853171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC2-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 2 PHASE","description":"Comet Escort Phase 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:03.775049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC2-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 2 PHASE","description":"Escort Phase 2 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:04.780590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC3-SAMPLES-V1.0","title":"RAW MIDAS DATA FOR THE COMET ESCORT 3 PHASE","description":"Comet Escort Phase 3","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:05.780125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC3-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 3 PHASE","description":"Comet Escort Phase 3","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:06.785567","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC3-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 3 PHASE","description":"Escort Phase 3 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:07.780918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC4-SAMPLES-V1.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE","description":"Comet Escort Phase 4","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:08.784902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC4-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE","description":"Comet Escort Phase 4","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:09.788937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-ESC4-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE","description":"Escort Phase 4 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:10.788960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT1-SAMPLES-V1.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"Extended Mission Phase 1","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:11.806029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT1-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"Extended Mission Phase 1","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:12.847846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT1-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"Extension Phase 1 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:13.865272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT2-SAMPLES-V1.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"Extended Mission Phase 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:14.802096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT2-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"Extended Mission Phase 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:15.806842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT2-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"Extension Phase 2 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:16.808316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT3-SAMPLES-V1.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"Extended Mission Phase 3","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:17.806225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT3-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"Extended Mission Phase 3","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:18.804172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-3-EXT3-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"Extension Phase 3 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:19.810842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-5-PRL-TO-EXT3-V1.0","title":"MIDAS DUST PARTICLE CATALOG FOR THE COMET ESCORT PHASES","description":"MIDAS Dust Particle Catalog","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-5-prl-to-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:20.814067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIDAS-5-PRL-TO-EXT3-V2.0","title":"MIDAS DUST PARTICLE CATALOG FOR THE COMET ESCORT PHASES","description":"MIDAS Dust Particle Catalog","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-5-prl-to-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:21.815632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-CR2-9P-TEMPEL1-V1.0","title":"RAW MIRO DATA FOR THE CRUISE-2 PHASE","description":"This volume is the fourth containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the second Cruise mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-cr2-9p-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:22.819247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-ESC1-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 1 PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the COMET ESCORT 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:23.865555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-ESC2-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 2 PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains raw data obtained during the COMET ESCORT 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:24.876651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-ESC3-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 3 PHASE","description":"This volume contains data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the COMET ESCORT 3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:25.919882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-ESC4-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the COMET ESCORT 4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc4-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:26.825887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-EXT1-67P-V1.0","title":"RAW MIRO DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:28.067030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-EXT2-67P-V1.0","title":"RAW MIRO DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:28.831578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-EXT3-67P-V1.0","title":"RAW MIRO DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:29.829669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-2-PRL-67P-V1.0","title":"RAW MIRO DATA FOR THE PRELANDING PHASE","description":"This volume is the 16th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Prelanding Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-prl-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:30.838038","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-CR2-9P-TEMPEL1-V1.0","title":"CALIBRATED MIRO DATA FOR THE CRUISE-2 PHASE","description":"This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the second Cruise mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-cr2-9p-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:31.838432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-CR2-9P-TEMPEL1-V1.1","title":"CALIBRATED MIRO DATA FOR THE CRUISE-2 PHASE","description":"This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the second Cruise mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-cr2-9p-tempel1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:32.837492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC1-67P-V1.0","title":"RAW MIRO DATA FOR THE COMET ESCORT 1 PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the COMET ESCORT 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:33.836666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC1-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:34.872681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC1-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:35.923906","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC2-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE COMET ESCORT 2 PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains calibrated data obtained during the COMET ESCORT 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:36.933907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC2-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc2-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:37.852277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC3-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE COMET ESCORT 3 PHASE","description":"This volume contains data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the COMET ESCORT 3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:38.852661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC3-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc3-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:39.855127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC4-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE COMET ESCORT 4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the COMET ESCORT 4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc4-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:40.860797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-ESC4-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc4-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:41.862156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-EXT1-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:42.860093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-EXT1-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXT1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext1-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:43.864295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-EXT2-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:44.870840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-EXT2-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXT2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext2-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:45.881519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-EXT3-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:46.934912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-EXT3-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA EXT3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext3-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:47.941666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-PRL-67P-V1.0","title":"RAW MIRO DATA FOR THE PRELANDING PHASE","description":"This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Prelanding Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:49.094205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-PRL-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET PRL Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:50.139355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-3-PRL-67P-V3.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET PRL Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:51.092354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-ESC1-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:51.880285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-ESC1-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc1-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:52.900053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-ESC2-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:53.881282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-ESC2-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc2-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:54.889390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-ESC3-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:55.892544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-ESC3-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc3-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:56.891769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-ESC4-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc4-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:57.937067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-ESC4-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC4 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc4-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:58.957358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-EXT1-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext1-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:24:59.895547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-EXT1-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT1 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext1-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:00.895722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-EXT2-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext2-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:01.900298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-EXT2-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT2 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext2-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:02.901499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-EXT3-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext3-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:03.911663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-EXT3-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT3 PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT3 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext3-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:04.911426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-PRL-67P-V1.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA PRL Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-prl-67p-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:05.919357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MIRO-4-PRL-67P-V2.0","title":"CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE","description":"This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA PRL Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-prl-67p-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:06.918894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MULTI-5-67P-SHAPE-V1.0","title":"ROSETTA 67P/CHURYUMOV-GERASIMENKO SHAPE MODELS","description":"This delivery volume holds the data set containing shape models of Comet 67P/Churyumov-Gerasimenko (1969 R1) produced by the Rosetta mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:07.917772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-MULTI-5-67P-SHAPE-V2.0","title":"ROSETTA 67P/CHURYUMOV-GERASIMENKO SHAPE MODELS","description":"This delivery volume holds the data set containing shape models of Comet 67P/Churyumov-Gerasimenko (1969 R1) produced by the Rosetta mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:08.952147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC1-MTP010-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Nov 2014 to Dec 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:10.004957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC1-MTP010-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Nov 2014 to Dec 2014 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp010-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:10.917688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC1-MTP011-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Dec 2014 to Jan 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:11.926139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC1-MTP011-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Dec 2014 to Jan 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp011-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:12.924175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC1-MTP012-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Jan 2015 to Feb 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:13.932951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC1-MTP012-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Jan 2015 to Feb 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp012-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:14.936541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC1-MTP013-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Feb 2015 to Mar 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:15.939400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC1-MTP013-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Feb 2015 to Mar 2015 when at the vicinity of comet 67P/C-G","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp013-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:16.942335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC2-MTP014-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Mar 2015 to Apr 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:17.942604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC2-MTP014-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Mar 2015 to Apr 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp014-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:18.946663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC2-MTP015-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Apr 2015 to May 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:19.965300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC2-MTP015-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Apr 2015 to May 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp015-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:21.013973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC2-MTP016-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 5, Ma 2015 to 2 Jun 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:22.023937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC2-MTP016-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 5, Ma 2015 to 2 Jun 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp016-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:22.949729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC2-MTP017-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, JUN 2015 to 30 Jun 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:23.955135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC2-MTP017-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, JUN 2015 to 30 Jun 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp017-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:24.959888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC3-MTP018-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 30 Jun 2015 to 28 Jul 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:25.953569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC3-MTP018-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 30 Jun 2015 to 28 Jul 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp018-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:26.964152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC3-MTP019-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 28 Jul 2015 to 25 Aug 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:27.964747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC3-MTP019-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 28 Jul 2015 to 25 Aug 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp019-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:28.963700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC3-MTP020-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 25th Aug 2015 to 22nd Sep 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:29.967869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC3-MTP020-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 25th Aug 2015 to 22nd Sep 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp020-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:30.980055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC3-MTP021-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 22nd Sep 2015 to 20th Oct 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:32.024695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC3-MTP021-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 22nd Sep 2015 to 20th Oct 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp021-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:33.034808","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC4-MTP022-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 20, Oct 2015 to 17 Nov 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:33.979629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC4-MTP022-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 20, Oct 2015 to 17 Nov 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp022-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:34.981705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC4-MTP023-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 11, Nov 2015 to 15 Dec 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:35.980399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC4-MTP023-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 11, Nov 2015 to 15 Dec 2015 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp023-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:36.984689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC4-MTP024-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 15 Dec 2015 to 12 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:37.983965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-ESC4-MTP024-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 15 Dec 2015 to 12 Jan 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp024-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:38.986914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT1-MTP025-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1, 12 Jan 2016 to 9 Feb 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:39.986045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT1-MTP025-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1, 12 Jan 2016 to 9 Feb 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp025-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:41.002114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT1-MTP026-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 9 Feb 2016 to 8 Mar 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:41.992962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT1-MTP026-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 9 Feb 2016 to 8 Mar 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp026-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:43.031681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT1-MTP027-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT1 8, Mar 2016 to 5 Apr 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:44.079795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT1-MTP027-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT1 8, Mar 2016 to 5 Apr 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp027-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:45.092997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT2-MTP028-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, 5th Apr 2016 to 3rd May 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:45.999440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT2-MTP028-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, 5th Apr 2016 to 3rd May 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp028-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:47.006720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT2-MTP029-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3, May 2016 to 31 May 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:48.008368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT2-MTP029-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3, May 2016 to 31 May 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp029-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:49.011752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT2-MTP030-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT2 from 31st May 2016 to 28th Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:50.011645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT2-MTP030-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT2 from 31st May 2016 to 28th Jun 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp030-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:51.010456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP031-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 28, Jun 2016 to 26 Jul 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:52.013329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP031-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 28, Jun 2016 to 26 Jul 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp031-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:53.019112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP032-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26 Jul 2016 to 9 Aug 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:54.042262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP032-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26 Jul 2016 to 9 Aug 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp032-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:55.092295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP033-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT3, from Aug, 9 2016 to Sep, 2 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:56.102112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP033-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT3, from Aug, 9 2016 to Sep, 2 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp033-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:57.029909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP034-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Ext 3 phase, Sep, 2 2016 to 26 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:58.030231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP034-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Ext 3 phase, Sep, 2 2016 to 26 Sep 2016 when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp034-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:25:59.029367","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP035-V1.0","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26, Sep 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:00.036956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-EXT3-MTP035-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26, Sep 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp035-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:01.036999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP003-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, May 7th 2014 to June 4th 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:02.041017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP003-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, May 7th 2014 to June 4th 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp003-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:03.042705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP004-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jun 5th 2014 to July 2nd 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:04.042755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP004-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jun 5th 2014 to July 2nd 2014 in its journey to comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp004-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:05.051670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP005-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jul 2014 to Aug 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:06.102122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP005-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jul 2014 to Aug 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp005-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:07.113069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP006-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING MTP006","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Aug 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:08.049679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP006-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING MTP006","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Aug 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp006-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:10.295813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP007-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING MTP007","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sept 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:10.847539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP007-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING MTP007","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sept 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp007-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:11.871594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP008-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sep 2014 to Oct 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:12.915093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP008-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sep 2014 to Oct 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp008-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:13.930515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP009-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Oct 2014 to Nov 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:14.851651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-2-PRL-MTP009-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Oct 2014 to Nov 2014 when approaching comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp009-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:15.856343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC1-MTP010-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP010 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 22 Nov. 2014, 04:19:32 to 19 Dec. 2014, 22:35:03, during the ESCORT 1 MTP010 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:16.855322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC1-MTP011-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP011 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 20 Dec. 2014, 04:19:32 to 13 Jan. 2015, 23:22:57, during the ESCORT 1 MTP011 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:17.860737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC1-MTP012-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP012 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 14 Jan. 2015, 04:19:32 to 10 Feb. 2015, 23:22:55, during the ESCORT 1 MTP012 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:18.864820","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC1-MTP013-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP013 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 11 Feb. 2015, 04:38:06 to 10 Mar. 2015, 23:22:54, during the ESCORT 1 MTP013 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:19.868551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC2-MTP014-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP014 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 11 Mar. 2015, 04:36:19 to 08 Apr. 2015, 11:22:54, during the ESCORT 2 MTP014 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:20.872544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC2-MTP015-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP015 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 08 Apr. 2015, 12:58:02 to 05 May. 2015, 23:07:19, during the ESCORT 2 MTP015 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:21.869725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC2-MTP016-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP016 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 06 May. 2015, 06:02:16 to 02 Jun. 2015, 23:02:20, during the ESCORT 2 MTP016 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:22.874634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC2-MTP017-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP017 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 03 Jun. 2015, 06:02:17 to 30 Jun. 2015, 23:02:19, during the ESCORT 2 MTP017 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:23.924053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC3-MTP018-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP018 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Jul. 2015, 04:38:43 to 28 Jul. 2015, 23:02:19, during the ESCORT 3 MTP018 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:24.940130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC3-MTP019-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP019 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 29 Jul. 2015, 06:02:17 to 25 Aug. 2015, 23:02:18, during the ESCORT 3 MTP019 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:25.879612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC3-MTP020-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP020 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 26 Aug. 2015, 06:02:17 to 22 Sep. 2015, 23:02:19, during the ESCORT 3 MTP020 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:26.884415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC3-MTP021-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP021 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Sep. 2015, 06:02:17 to 20 Oct. 2015, 23:02:19, during the ESCORT 3 MTP021 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:27.884102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC4-MTP022-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP022 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 21 Oct. 2015, 06:02:18 to 17 Nov. 2015, 23:02:19, during the ESCORT 4 MTP022 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:28.882301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC4-MTP023-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP023 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 18 Nov. 2015, 06:02:17 to 15 Dec. 2015, 23:02:20, during the ESCORT 4 MTP023 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:29.894053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-ESC4-MTP024-V1.0","title":"NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP024 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 16 Dec. 2015, 06:02:17 to 12 Jan. 2016, 23:02:20, during the ESCORT 4 MTP024 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:30.891939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT1-MTP025-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP025 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 13 Jan. 2016, 06:02:17 to 09 Feb. 2016, 23:17:55, during the EXTENSION 1 MTP025 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:31.894433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT1-MTP026-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP026 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 10 Feb. 2016, 06:04:22 to 08 Mar. 2016, 23:17:57, during the EXTENSION 1 MTP026 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:32.899355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT1-MTP027-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP027 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 09 Mar. 2016, 06:04:22 to 05 Apr. 2016, 23:17:53, during the EXTENSION 1 MTP027 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:33.906414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT2-MTP028-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP028 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 06 Apr. 2016, 06:04:22 to 03 May. 2016, 23:17:53, during the EXTENSION 2 MTP028 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:34.937561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT2-MTP029-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP029 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 04 May. 2016, 06:04:22 to 31 May. 2016, 23:17:53, during the EXTENSION 2 MTP029 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:35.985426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT2-MTP030-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP030 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Jun. 2016, 06:04:21 to 28 Jun. 2016, 23:17:54, during the EXTENSION 2 MTP030 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:36.996118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT3-MTP031-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP031 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 29 Jun. 2016, 06:04:23 to 26 Jul. 2016, 23:17:53, during the EXTENSION 3 MTP031 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:37.907646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT3-MTP032-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP032 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 27 Jul. 2016, 06:04:22 to 09 Aug. 2016, 23:17:53, during the EXTENSION 3 MTP032 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:38.908142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT3-MTP033-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP033 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 10 Aug. 2016, 01:59:31 to 02 Sep. 2016, 06:02:03, during the EXTENSION 3 MTP033 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:39.914221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT3-MTP034-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP034 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 02 Sep. 2016, 11:19:32 to 26 Sep. 2016, 06:02:03, during the EXTENSION 3 MTP034 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:40.916045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-EXT3-MTP035-V1.0","title":"NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP035 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 26 Sep. 2016, 13:10:32 to 30 Sep. 2016, 00:59:13, during the EXTENSION 3 MTP035 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:41.912856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-PRL-MTP003-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP003 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 08 May. 2014, 13:18:02 to 04 Jun. 2014, 10:32:05, during the PRELANDING MTP003 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:42.926747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-PRL-MTP004-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP004 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 05 Jun. 2014, 11:19:02 to 02 Jul. 2014, 08:17:04, during the PRELANDING MTP004 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:43.922746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-PRL-MTP005-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP005 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 03 Jul. 2014, 09:00:01 to 01 Aug. 2014, 09:53:18, during the PRELANDING MTP005 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:44.922181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-PRL-MTP006-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP006 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Aug. 2014, 11:07:18 to 02 Sep. 2014, 06:22:56, during the PRELANDING MTP006 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:45.947863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-PRL-MTP007-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP007 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 02 Sep. 2014, 11:34:31 to 23 Sep. 2014, 09:40:03, during the PRELANDING MTP007 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:46.998532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-PRL-MTP008-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP008 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Sep. 2014, 11:34:32 to 24 Oct. 2014, 06:22:59, during the PRELANDING MTP008 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:48.007463","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-NAVCAM-3-PRL-MTP009-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING MTP009 PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 24 Oct. 2014, 11:34:32 to 21 Nov. 2014, 23:00:03, during the PRELANDING MTP009 phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:48.927336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSINAC 2 EDR MTP 010 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:49.989547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:50.997381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:51.929641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 011 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:53.001941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:53.999187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:54.947843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 012 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:55.989517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:57.023043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:58.007763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 013 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:26:59.063132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:00.070544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:02.300582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 014 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:03.371116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:04.362704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:05.341473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 015 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:06.464077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:07.451214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:08.319247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 016 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:09.382028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:10.381806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:11.327553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 017 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:12.374180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:13.389456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:14.331981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 018 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:15.398502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:16.418050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:17.406383","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 019 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:18.463245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:19.470136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:20.351977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 2 EDR MTP020 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:21.403856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m20-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:22.349788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 2 EDR MTP021 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:23.415970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m21-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:24.359476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP022 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:25.411738","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m22-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:26.362903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP023 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:27.419924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m23-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:28.413121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP024 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:29.474561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V3.0","title":"RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m24-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:30.373029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP025 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:31.432412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m25-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:32.376524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP026 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:33.442817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m26-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:34.382469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP027 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:35.444746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m27-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:36.387080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSINAC 2 EDR MTP028 V1.0, RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:37.462155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m28-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:38.391776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:39.482663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M29-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m29-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:40.476934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:41.528274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M30-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m30-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:42.399257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:43.442142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M31-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m31-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:44.408812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:45.457272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M32-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m32-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:46.408648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:47.461877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M33-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m33-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:48.413484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:49.464240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M34-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m34-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:50.437423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:51.538419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M35-V3.0","title":"RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m35-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:52.599121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M01 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:53.547861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 001 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:54.486097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:55.490716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:56.431013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M02 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:57.487449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 002 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:58.555688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:27:59.496642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:00.440078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M03 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:01.501523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 003 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:02.550883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:03.550203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:04.460278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M04 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:05.501466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 004 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:06.695364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:07.518308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:08.458915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 004B V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:09.521972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 005 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:10.527456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:11.523885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:12.457212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 006 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:13.587978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:14.609937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:15.565041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 007 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:16.618556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:17.537680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:18.490798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 007B V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:19.544550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 008 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:20.539985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:21.544205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:22.491183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 009 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:23.535129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:24.568084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V3.0","title":"RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:25.567497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSINAC 3 RDR MTP 010 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:26.613461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:27.626511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:28.508663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 011 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:29.556774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:30.554070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:31.510745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 012 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:32.569538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:33.583243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:34.515919","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 013 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:35.587443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:36.631643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:37.584778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 014 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:38.679409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:39.585555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:40.527686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 015 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:41.590490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:42.589263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:43.540703","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 016 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:44.602669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:45.594997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:46.543303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 017 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:47.650212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:48.685767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:49.549190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 018 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:50.694826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:51.603060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:52.568274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 019 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:53.610724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:54.610418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:55.564575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 3 RDR MTP020 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:56.624871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m20-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:57.574132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 3 RDR MTP021 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:58.653641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m21-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:28:59.651541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP022 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:00.694190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m22-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:01.581410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP023 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:02.633029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m23-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:03.582757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP024 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:04.633029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m24-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:05.592182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP025 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:06.667291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m25-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:07.596508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP026 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:08.639111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m26-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:09.611066","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP027 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:10.723154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m27-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:11.664290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSINAC 3 RDR MTP028 V1.0, RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:12.760849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m28-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:13.609409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:14.668628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M29-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m29-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:15.612779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:16.675817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M30-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m30-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:17.618448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:18.659640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M31-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m31-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:19.619052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:20.681871","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M32-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m32-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:21.665475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:22.769772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M33-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m33-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:23.627490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:24.674939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M34-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m34-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:25.636393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:26.675850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M35-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m35-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:27.638146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 001 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:28.697805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:29.701021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:30.646950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 002 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:31.705646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:32.728474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:33.867417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 003 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:34.776628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:35.785137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:36.656393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 004 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:37.711135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:38.723482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:39.668648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 004B V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:40.722448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 005 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:41.724591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:42.734758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:43.675894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 006 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:44.784905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:45.787690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:46.690788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 007 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:47.722994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:48.738610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:49.684430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 007B V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:50.743755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 008 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:51.741724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:52.753050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:53.695584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 009 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:54.745667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:55.808756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V3.0","title":"CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:56.788828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M10-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:57.801166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M10-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:58.704494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M10-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:29:59.721226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M10-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:00.716951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M10-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:01.714306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M11-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:02.721599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M11-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:03.723805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M11-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:04.715850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M11-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:05.734826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M11-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:06.752739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M12-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:07.801278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M12-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:08.810718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M12-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:09.732483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M12-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:10.734914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M12-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:11.740229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M13-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:12.742079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M13-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:13.745913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M13-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:14.745374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M13-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:15.747803","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67P-M13-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:16.750970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:17.820635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M10-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:18.809617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:19.858129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M11-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:20.759121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:21.819676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M12-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:22.762194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:23.806942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M13-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:24.768797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M14-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:25.765024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M14-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:26.766985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M14-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:27.768744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M14-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:28.774973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M14-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:29.815501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M15-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:30.831742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M15-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:31.781197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M15-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:32.782089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M15-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:33.778607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M15-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:34.783980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M16-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:35.783191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M16-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:36.789576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M16-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:37.789745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M16-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:38.796206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M16-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:39.794019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M17-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:40.824878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M17-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:41.877412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M17-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:42.890270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M17-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:43.801206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67P-M17-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:44.807170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:45.869261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M14-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:46.812109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:47.874735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M15-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:48.818578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:49.874840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M16-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:50.819935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:51.888902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M17-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:52.891525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M18-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:53.901075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M18-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:54.833531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M18-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:55.834865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M18-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:56.838193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M18-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:57.835987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M19-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:58.841170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M19-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:30:59.846258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M19-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:00.845319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M19-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:01.843085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M19-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:02.853611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M20-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:03.897920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M20-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:04.908267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M20-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:05.857921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M20-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:06.862629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M20-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:07.854348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M21-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:08.862735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M21-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:09.866319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M21-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:10.872028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M21-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:11.872015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67P-M21-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:12.874445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:13.933432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M18-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:15.002493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:16.014389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M19-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:16.968968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:18.020384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M20-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m20-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:18.887898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:19.949196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M21-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m21-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:20.894207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M22-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:21.895912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M22-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:22.893664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M22-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:23.899410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M22-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:24.901993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M22-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:25.915303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M23-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:26.965646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M23-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:27.979150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M23-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:28.907958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M23-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:29.922396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M23-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:30.913956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M24-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:31.927881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M24-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:32.922663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M24-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:33.926232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M24-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:34.922746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67P-M24-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:35.929418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M22-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:36.979972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M22-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m22-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:37.975314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:39.033985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M23-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m23-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:39.936387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:41.089281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M24-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m24-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:41.952706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M25-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:42.945102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M25-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:43.944172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M25-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:44.950855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M25-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:45.954453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M25-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:46.954328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M26-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:47.958033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M26-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:48.988531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M26-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:50.047191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M26-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:51.045471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M26-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:51.961836","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M27-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:52.960862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M27-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:53.966920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M27-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:54.965024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M27-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:55.968287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67P-M27-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:56.971180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:58.020128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M25-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m25-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:31:58.981997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:00.052124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M26-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m26-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:01.047194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:02.096102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M27-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m27-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:02.984219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M28-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:03.987381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M28-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:04.991858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M28-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:05.988021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M28-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:06.996226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M28-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:07.996894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M29-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:09.008864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M29-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:10.001731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M29-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:11.006482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M29-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:12.063357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M29-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:13.068181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M30-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:14.009236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M30-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:15.008621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M30-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:16.013835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M30-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:17.007817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67P-M30-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:18.017870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:19.090400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M28-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m28-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:20.020590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:21.077711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M29-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m29-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:22.023390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:23.120359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M30-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m30-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:24.113169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M31-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:25.123332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M31-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:26.032934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M31-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:27.035882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M31-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:28.042115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M31-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:29.040979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M32-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:30.040143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M32-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:31.064863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M32-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:32.047716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M32-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:33.054628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M32-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:34.077753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M33-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:35.125752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M33-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:36.137254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M33-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:37.056475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M33-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:38.056301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M33-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:39.063243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M34-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:40.070717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M34-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:41.068477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M34-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:42.071388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M34-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:43.068492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M34-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:44.076057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M35-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:45.084758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M35-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:46.143166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M35-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:47.146859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M35-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:48.077583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67P-M35-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:49.082716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:50.148067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M31-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m31-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:51.089315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:52.149613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M32-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m32-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:53.095026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:54.140303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M33-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m33-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:55.098461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:56.260106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M34-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m34-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:57.143048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:58.252503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M35-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m35-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:32:59.107485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M01-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:00.108127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M01-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:01.110116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M01-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:02.105247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M01-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:03.111276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M01-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:04.115250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M02-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:05.116368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M02-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:06.115109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M02-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:07.126706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M02-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:08.158661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M02-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:09.198654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M03-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:10.215696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M03-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:11.128942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M03-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:12.129974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M03-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:13.133844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M03-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:14.133721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M04-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:15.139107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M04-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:16.137252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M04-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:17.142992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M04-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:18.142752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M04-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:19.169250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M05-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:20.209688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M05-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:21.225040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M05-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:22.149557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M05-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:23.156651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M05-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:24.161372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M06-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:25.164852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M06-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:26.164476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M06-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:27.167025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M06-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:28.164683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M06-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:29.165799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M07-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:30.173139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M07-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:31.221966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M07-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:32.233586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M07-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:33.176453","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M07-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:34.181636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M08-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:35.182015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M08-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:36.186849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M08-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:37.190220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M08-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:38.187357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M08-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:39.194468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M09-INF-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:40.195823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M09-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:41.202634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M09-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:42.234946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M09-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:43.277385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67P-M09-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:44.294000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:45.343994","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M01-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:46.205946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:47.266377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M02-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:48.212256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:49.268434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M03-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:50.215345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:51.266643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M04-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:52.220794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:53.298955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M05-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:54.289735","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:55.349617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M06-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:56.225887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:57.286333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M07-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:58.230037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:33:59.284374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M08-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:00.243422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:01.290937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-4-PRL-67PCHURYUMOV-M09-V2.0","title":"RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:02.248296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC1-67P-M10-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m10-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:03.236208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC1-67P-M11-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m11-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:04.254023","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC1-67P-M12-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m12-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:05.301832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC1-67P-M13-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m13-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:06.313740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC2-67P-M14-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m14-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:07.249438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC2-67P-M15-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m15-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:08.255805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC2-67P-M16-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m16-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:09.257978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC2-67P-M17-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m17-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:10.263323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC3-67P-M18-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m18-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:11.268942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC3-67P-M19-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m19-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:12.269725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC3-67P-M20-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m20-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:13.267813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC3-67P-M21-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m21-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:14.263977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC4-67P-M22-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m22-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:15.276939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC4-67P-M23-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m23-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:16.308895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-ESC4-67P-M24-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m24-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:17.364145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT1-67P-M25-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m25-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:18.271354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT1-67P-M26-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m26-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:19.277304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT1-67P-M27-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m27-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:20.285389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT2-67P-M28-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m28-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:21.290322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT2-67P-M29-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m29-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:22.294573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT2-67P-M30-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m30-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:23.293771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT3-67P-M31-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m31-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:24.293809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT3-67P-M32-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m32-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:25.299281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT3-67P-M33-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m33-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:26.299784","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT3-67P-M34-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m34-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:27.323395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-EXT3-67P-M35-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m35-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:28.368874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-PRL-67P-M05-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m05-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:29.379935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-PRL-67P-M06-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m06-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:30.312504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-PRL-67P-M07-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m07-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:31.309231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-PRL-67P-M08-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m08-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:32.311632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSINAC-5-PRL-67P-M09-GEO-V1.0","title":"DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m09-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:33.311492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSIWAC 2 EDR MTP 010 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:34.373156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:35.372816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:36.325478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 013 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:37.484556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:38.389431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:39.374750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 012 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:40.437282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:41.482314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:42.332724","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 013 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:43.384933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:44.394297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:45.337467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 014 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:46.398440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:47.404657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:48.340240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 015 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:49.396825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:50.458674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:51.443597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 016 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:52.491841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:53.400486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:54.361952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 017 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:55.420974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:56.403258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:57.363450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 018 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:58.425386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:34:59.425194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:00.372195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 019 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:01.461651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:02.510723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:03.457526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 2 EDR MTP020 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:04.508259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m20-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:05.381830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 2 EDR MTP021 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:06.435704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m21-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:07.387416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP022 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:08.436904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m22-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:09.391041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP023 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:10.446308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m23-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:11.398766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP024 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:12.455191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V3.0","title":"RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m24-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:13.459513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP025 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:14.512521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m25-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:15.406662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP026 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:16.451774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m26-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:17.419411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP027 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:18.457073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m27-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:19.414103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSIWAC 2 EDR MTP028 V1.0, RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:20.476916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m28-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:21.418202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:22.474963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M29-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m29-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:23.424870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:24.512012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M30-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m30-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:25.517922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:26.569778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M31-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m31-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:27.434136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:28.482281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M32-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m32-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:29.440211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:30.483682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M33-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m33-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:31.437060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:32.502311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M34-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m34-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:33.445649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:34.500528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M35-V3.0","title":"RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m35-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:35.480977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M01 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:36.574465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 001 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:37.581033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:38.587946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:39.458440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M02 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:40.516848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 002 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:41.516854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:42.519987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:43.461010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M03 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:44.533710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 003 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:45.525472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:46.543321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:47.533262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M04 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:48.593430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.1","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 004 V1.1, O-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:49.601461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:50.541975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:51.483782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 004B V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:52.540902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 005 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:53.551284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:54.549621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:55.493894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 006 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:56.550752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:57.552486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:58.548410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 007 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:35:59.603971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:00.640743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:01.505697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 007B V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:02.559858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 008 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:03.558505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:04.569553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:05.519288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 009 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:06.579251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:07.577874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V3.0","title":"RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:08.525659","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSIWAC 3 RDR MTP 010 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:09.609467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:10.683617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:11.616326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 011 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:12.670790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:13.590142","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:14.537473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 012 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:15.596396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:16.609440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:17.554758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 013 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:18.701145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:19.606096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:20.567198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 014 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:21.664537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:22.668692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:23.557074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 015 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:24.613536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:25.614050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:26.566306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 016 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:27.625566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:28.625056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:29.574348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 017 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:30.635603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:31.629026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:32.622785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 018 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:33.684928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:34.726389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:35.587540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 019 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:36.645168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:37.632674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:38.590388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 3 RDR MTP020 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:39.651887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m20-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:40.594756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 3 RDR MTP021 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:41.653437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m21-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:42.593194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M22-V1.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"CALIBRATED OSIRIS WAC data from the COMET ESCORT 4 phase. The data has been acquired between 2015-10-20T23:25:00.000 and 2015-11-17T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m22-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:43.637184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 3 RDR MTP023 V1.0, RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:44.747040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m23-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:45.694780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 3 RDR MTP024 V1.0, RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:46.748465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m24-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:47.610588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP025 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:48.665920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m25-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:49.617683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP026 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:50.656436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m26-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:51.616547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP027 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:52.672667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m27-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:53.627796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSIWAC 3 RDR MTP028 V1.0, RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:54.694007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m28-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:55.696819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:56.750016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M29-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m29-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:57.633710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:58.686787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M30-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m30-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:36:59.641557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:00.711164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M31-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m31-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:01.637121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:02.708116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M32-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m32-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:03.645593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:04.708466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M33-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m33-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:05.655882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:06.762792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M34-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m34-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:07.716730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:08.767356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M35-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m35-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:09.661479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 001 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:10.719693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:11.713882","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:12.656300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 002 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:13.719644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:14.731778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:15.672501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 003 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:16.731391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:17.764272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:18.760202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 004 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:19.821155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:20.830398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:21.684536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 004B V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:22.734035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 005 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:23.733195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:24.746763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:25.695096","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 006 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:26.749754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:27.750686","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:28.723086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 007 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:29.827543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:30.827179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:31.705259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07B-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 007B V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:32.759370","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 008 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:33.773621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:34.769591","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:35.716208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 009 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:36.761612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V2.0","title":"Menu: Skip within this page","description":"Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:37.777016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V3.0","title":"CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:38.716472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:39.736766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:40.779634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:41.795649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:42.724945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M10-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:43.734518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:44.735679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:45.730959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:46.741352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:47.743469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M11-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:48.743875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:49.748403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:50.740981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:51.792757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:52.807365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M12-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:53.758997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:54.754076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:55.760752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:56.763818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:57.762089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67P-M13-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:58.766835","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M10-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:37:59.928019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M10-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m10-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:00.770245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M11-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m11-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:01.829338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M11-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m11-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:02.803014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M12-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:03.915289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M12-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m12-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:04.864077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M13-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:05.916856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M13-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m13-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:06.781346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:07.781057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:08.784204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:09.791190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:10.790507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M14-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:11.792579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:12.798333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:13.816333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:14.860872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:15.875832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M15-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:16.806918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:17.808371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:18.811217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:19.815065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:20.819278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M16-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:21.820478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:22.823619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:23.817896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:24.829600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:25.873451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67P-M17-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:26.886489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M14-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m14-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:27.979433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M14-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m14-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:28.831695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M15-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m15-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:29.886158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M15-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m15-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:30.839847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M16-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m16-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:31.908516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M16-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m16-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:32.845330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M17-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m17-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:33.905086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M17-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m17-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:34.844848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:35.848218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:36.885690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:37.931579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:38.941783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M18-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:39.862663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:40.864010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:41.868893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:42.868219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:43.866778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M19-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:44.872001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:45.875606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:46.879653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:47.892747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:48.943058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M20-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:49.955218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:50.891943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:51.895844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:52.893920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:53.891467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67P-M21-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:54.890491","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M18-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m18-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:55.963855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M18-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m18-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:56.903476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M19-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m19-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:57.953718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M19-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m19-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:38:58.903278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M20-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m20-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:00.008154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M20-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m20-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:00.963766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M21-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m21-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:02.055078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M21-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m21-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:02.911910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:03.908493","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:04.915624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:05.921828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:06.922263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M23-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:07.918557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:08.925473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:09.927910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:10.962374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:12.014007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67P-M24-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:13.020573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M23-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m23-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:14.073321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M23-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m23-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:14.939296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M24-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m24-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:15.979938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M24-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m24-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:16.941754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:17.948065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:18.942034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:19.948599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:20.970827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M25-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:21.967178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:23.020240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:24.031662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:24.952354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:25.966887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M26-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:26.964655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:27.969953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:28.970479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:29.967058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:30.974435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67P-M27-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:31.974088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M25-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m25-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:33.035494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M25-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m25-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:34.031009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M26-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m26-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:35.083877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M26-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m26-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:35.984211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M27-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m27-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:37.036446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M27-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m27-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:37.984852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:38.993191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:39.990200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:41.106814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:42.006985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M28-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:43.003965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:44.000987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:45.041512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:46.088186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:47.008313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M29-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:48.014141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:49.012877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:50.017126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:51.018393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:52.026733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67P-M30-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:53.032672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M28-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m28-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:54.084360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M28-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m28-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:55.025104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M29-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m29-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:56.107522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M29-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m29-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:57.094708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M30-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m30-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:58.151117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M30-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m30-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:39:59.037290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:00.041368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:01.041685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:02.045396","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:03.047095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M31-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:04.050751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:05.053277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:06.047116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:07.056678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:08.108195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M32-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:09.120178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:10.060517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:11.056637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:12.067075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:13.071745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M33-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:14.071950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:15.071797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:16.067587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:17.079602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:18.076790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M34-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:19.117471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:20.163468","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:21.179952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:22.086593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:23.091638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67P-M35-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:24.086343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M31-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m31-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:25.156173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M31-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m31-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:26.096538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M32-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m32-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:27.159569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M32-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m32-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:28.105460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M33-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m33-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:29.163475","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M33-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m33-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:30.132117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M34-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m34-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:31.236288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M34-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m34-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:32.188689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M35-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m35-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:33.240654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M35-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m35-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:34.108605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M01-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:35.120770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M01-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:36.116116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M01-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:37.121907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M01-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:38.119483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M01-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:39.131776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M02-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:40.130483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M02-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:41.148941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M02-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:42.187260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M03-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:43.199443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M03-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:44.133045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M03-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:45.131004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M03-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:46.143248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M03-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:47.142913","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M04-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:48.148461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M04-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:49.142545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M04-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:50.147027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M05-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:51.151319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M05-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:52.157796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M05-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:53.197363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M05-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:54.244083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M05-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:55.159193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M06-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:56.163696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M06-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:57.175203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M06-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:58.172460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M06-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:40:59.176415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M06-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:00.169068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M07-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:01.171830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M07-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:02.175648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M07-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:03.177148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M07-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:04.205897","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M07-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:05.257358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M08-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:06.269117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M08-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:07.187951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M08-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:08.190687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M08-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:09.191031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M08-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:10.195839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M09-INF-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-inf-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:11.200740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M09-INFLDSTR-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-infldstr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:12.201400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M09-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:13.207940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M09-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:14.206583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67P-M09-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:15.214666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M01-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m01-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:16.306915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M01-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m01-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:17.276517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M02-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m02-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:18.362504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M02-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m02-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:19.216910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M03-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m03-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:20.278293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M03-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m03-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:21.221136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M04-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m04-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:22.390229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M04-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m04-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:23.224796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M05-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m05-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:24.284814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M05-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m05-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:25.229177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M06-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m06-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:26.298037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M06-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m06-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:27.272744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M07-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m07-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:28.372981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M07-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m07-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:29.241182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M08-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m08-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:30.388174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M08-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m08-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:31.247051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M09-V1.0","title":"Menu: Skip within this page","description":"Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m09-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:32.294395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M09-V2.0","title":"RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m09-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:33.254116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC1-67P-M10-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m10-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:34.259771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC1-67P-M11-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m11-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:35.260931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC1-67P-M12-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m12-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:36.260344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC1-67P-M13-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m13-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:37.256921","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC2-67P-M14-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m14-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:38.283226","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC2-67P-M15-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m15-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:39.333175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC2-67P-M16-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m16-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:40.346134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC2-67P-M17-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m17-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:41.263507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC3-67P-M18-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m18-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:42.270391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC3-67P-M19-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m19-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:43.269894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC3-67P-M20-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m20-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:44.280326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC3-67P-M21-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m21-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:45.281880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC4-67P-M23-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc4-67p-m23-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:46.282178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-ESC4-67P-M24-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc4-67p-m24-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:47.282488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT1-67P-M25-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m25-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:48.288960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT1-67P-M26-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m26-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:49.296514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT1-67P-M27-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m27-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:50.341089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT2-67P-M28-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m28-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:51.356975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT2-67P-M29-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m29-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:52.295044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT2-67P-M30-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m30-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:53.297309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT3-67P-M31-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m31-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:54.295118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT3-67P-M32-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m32-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:55.295661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT3-67P-M33-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m33-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:56.303035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT3-67P-M34-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m34-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:57.304594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-EXT3-67P-M35-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m35-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:58.307960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-PRL-67P-M06-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m06-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:41:59.304070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-PRL-67P-M07-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m07-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:00.307363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-PRL-67P-M08-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m08-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:01.354807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-OSIWAC-5-PRL-67P-M09-GEO-V1.0","title":"DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE","description":"This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m09-geo-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:02.400869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-ESC1-V1.0","title":"Rosetta ROSINA ESCORT 1 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:03.320182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-ESC1-V2.0","title":"Rosetta ROSINA ESCORT 1 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:04.323298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-ESC2-V1.0","title":"Rosetta ROSINA ESCORT 2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:05.321948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-ESC2-V2.0","title":"Rosetta ROSINA ESCORT 2 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:06.321744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-ESC3-V1.0","title":"Rosetta ROSINA ESCORT 3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:07.331852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-ESC3-V2.0","title":"Rosetta ROSINA ESCORT 3 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:08.330243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-ESC4-V1.0","title":"Rosetta ROSINA ESCORT 4 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 4. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:09.334451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-ESC4-V2.0","title":"Rosetta ROSINA ESCORT 4 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 4. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:10.340218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-EXT1-V1.0","title":"Rosetta ROSINA EXTENTION 1 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:11.342353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-EXT1-V2.0","title":"Rosetta ROSINA EXTENTION 1 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:12.369204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-EXT2-V1.0","title":"Rosetta ROSINA EXTENTION 2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:13.417699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-EXT2-V2.0","title":"Rosetta ROSINA EXTENTION 2 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:14.427156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-EXT3-V1.0","title":"Rosetta ROSINA EXTENTION 3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:15.350062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-EXT3-V2.0","title":"Rosetta ROSINA EXTENTION 3 L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:16.350472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-PRL-V1.0","title":"Rosetta ROSINA Prelanding Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Prelanding. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:17.350656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-2-PRL-V2.0","title":"Rosetta ROSINA Prelanding L2 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Prelanding. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:18.351931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-ESC1-V1.0","title":"Rosetta ROSINA ESCORT 1 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:19.354956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-ESC1-V2.0","title":"Rosetta ROSINA ESCORT 1 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:20.360428","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-ESC2-V1.0","title":"Rosetta ROSINA ESCORT 2 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:21.357766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-ESC2-V2.0","title":"Rosetta ROSINA ESCORT 2 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:22.367013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-ESC3-V1.0","title":"Rosetta ROSINA ESCORT 3 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:23.372898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-ESC3-V2.0","title":"Rosetta ROSINA ESCORT 3 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:24.422936","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-ESC4-V1.0","title":"Rosetta ROSINA ESCORT 4 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Escort phase 4. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:25.436287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-ESC4-V2.0","title":"Rosetta ROSINA ESCORT 4 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Escort phase 4. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:26.376443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-EXT1-V1.0","title":"Rosetta ROSINA EXTENTION 1 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 1. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:27.377007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-EXT1-V2.0","title":"Rosetta ROSINA EXTENTION 1 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 1. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:28.379461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-EXT2-V1.0","title":"Rosetta ROSINA EXTENTION 2 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 2. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:29.381903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-EXT2-V2.0","title":"Rosetta ROSINA EXTENTION 2 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 2. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:30.381496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-EXT3-V1.0","title":"Rosetta ROSINA EXTENTION 3 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 3. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:31.385209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-EXT3-V2.0","title":"Rosetta ROSINA EXTENTION 3 L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 3. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:32.380391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-PRL-V1.0","title":"Rosetta ROSINA Prelanding L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:33.385188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-3-PRL-V2.0","title":"Rosetta ROSINA Prelanding L3 Data","description":"This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:34.391009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-ESC1-V1.0","title":"Rosetta ROSINA ESCORT 1 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:35.434354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-ESC1-V2.0","title":"Rosetta ROSINA ESCORT 1 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:36.481942","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-ESC2-V1.0","title":"Rosetta ROSINA ESCORT 2 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:37.392577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-ESC2-V2.0","title":"Rosetta ROSINA ESCORT 2 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:38.401881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-ESC3-V1.0","title":"Rosetta ROSINA ESCORT 3 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:39.399305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-ESC3-V2.0","title":"Rosetta ROSINA ESCORT 3 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:40.403607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-ESC4-V1.0","title":"Rosetta ROSINA ESCORT 4 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 4. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:41.410902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-ESC4-V2.0","title":"Rosetta ROSINA ESCORT 4 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 4. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:42.405668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-EXT1-V1.0","title":"Rosetta ROSINA EXTENTION 1 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:43.411019","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-EXT1-V2.0","title":"Rosetta ROSINA EXTENTION 1 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:44.409301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-EXT2-V1.0","title":"Rosetta ROSINA EXTENTION 2 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:45.419412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-EXT2-V2.0","title":"Rosetta ROSINA EXTENTION 2 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:46.446061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-EXT3-V1.0","title":"Rosetta ROSINA EXTENTION 3 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:47.500030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-EXT3-V2.0","title":"Rosetta ROSINA EXTENTION 3 L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:48.504786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-PRL-V1.0","title":"Rosetta ROSINA Prelanding L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:49.424472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-4-PRL-V2.0","title":"Rosetta ROSINA Prelanding L4 Data","description":"This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:50.423238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-ESC1-V1.0","title":"Rosetta ROSINA ESCORT 1 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 1 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:51.424633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-ESC1-V2.0","title":"Rosetta ROSINA ESCORT 1 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 1 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:52.421622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-ESC2-V1.0","title":"Rosetta ROSINA ESCORT 2 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 2 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:53.426505","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-ESC2-V2.0","title":"Rosetta ROSINA ESCORT 2 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 2 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:54.427972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-ESC3-V1.0","title":"Rosetta ROSINA ESCORT 3 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 3 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:55.429166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-ESC3-V2.0","title":"Rosetta ROSINA ESCORT 3 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 3 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:56.437999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-ESC4-V1.0","title":"Rosetta ROSINA ESCORT 4 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 4 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:57.450892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-ESC4-V2.0","title":"Rosetta ROSINA ESCORT 4 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 4 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:58.502292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-EXT1-V1.0","title":"Rosetta ROSINA EXTENTION 1 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:42:59.515777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-EXT1-V2.0","title":"Rosetta ROSINA EXTENTION 1 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:00.449205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-EXT2-V1.0","title":"Rosetta ROSINA EXTENTION 2 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:01.446495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-EXT2-V2.0","title":"Rosetta ROSINA EXTENTION 2 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:02.445543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-EXT3-V1.0","title":"Rosetta ROSINA EXTENTION 3 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:03.544196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-EXT3-V2.0","title":"Rosetta ROSINA EXTENTION 3 L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:04.456401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-PRL-V1.0","title":"Rosetta ROSINA Prelanding L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:05.457095","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-ROSINA-5-PRL-V2.0","title":"Rosetta ROSINA Prelanding L5 Data","description":"This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:06.460831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC1-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED ESC1 CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:07.462798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC1-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:08.461900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC1-RAW-V3.0","title":"ROSETTA-ORBITER 67P RPCICA 2 ESC1 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:09.512668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:10.523612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC2-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:11.478002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC2-RAW-V3.0","title":"ROSETTA-ORBITER 67P RPCICA 2 ESC2 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:12.474267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC3-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:13.477330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC3-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:14.479029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC3-RAW-V3.0","title":"ROSETTA-ORBITER 67P RPCICA 2 ESC3 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:15.481969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC4-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC4 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc4-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:16.489147","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-ESC4-RAW-V2.0","title":"ROSETTA-ORBITER 67P RPCICA 2 ESC4 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 ESC4 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc4-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:17.486482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-EXT1-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT1 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext1-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:18.490460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-EXT1-RAW-V2.0","title":"ROSETTA-ORBITER 67P RPCICA 2 EXT1 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT1 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext1-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:19.485561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-EXT2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT2 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:20.522261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-EXT2-RAW-V2.0","title":"ROSETTA-ORBITER 67P RPCICA 2 EXT2 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:21.571692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-EXT3-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT3 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext3-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:22.582210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-EXT3-RAW-V2.0","title":"ROSETTA-ORBITER 67P RPCICA 2 EXT3 EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 EXT3 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext3-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:23.500368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-PRL-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED PRL CURRENT DATA V1.0","description":"ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:24.494947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-PRL-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:25.505007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-2-PRL-RAW-V3.0","title":"ROSETTA-ORBITER 67P RPCICA 2 PRL EDITED","description":"ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:26.505529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-3-ESC1-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 ESC1 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 ESC1 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc1-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:27.507504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-3-ESC2-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 ESC2 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 ESC2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:28.514518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-3-ESC3-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 ESC3 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 ESC3 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc3-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:29.510644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-3-ESC4-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 ESC4 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 ESC4 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc4-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:30.512583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-3-EXT1-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 EXT1 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 EXT1 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext1-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:31.534407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-3-EXT2-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 EXT2 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 EXT2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:32.592964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-3-EXT3-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 EXT3 CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 EXT3 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext3-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:33.592664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-3-PRL-CALIB-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 3 PRL CALIBRATED","description":"ROSETTA-ORBITER 67P RPCICA 3 PRL CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-prl-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:34.523410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC1-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:35.521375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC1-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:36.527237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC1-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC1 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:37.523437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:38.536197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC2-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:39.535076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC2-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC2 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:40.543302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC3-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:41.530990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC3-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:42.550082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC3-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC3 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:43.592030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC4-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:44.637476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC4-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:45.551720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-ESC4-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 ESC4 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:46.556760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT1-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:47.557323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT1-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:48.558563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT1-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT1 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:49.565461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:50.569232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT2-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:51.564582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT2-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT2 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:52.570305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT3-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:53.559918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT3-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:54.602637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-EXT3-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 EXT3 PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:55.655211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-PRL-CORR-CTS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 PRL CORR_CTS","description":"ROSETTA-ORBITER 67P RPCICA 4 PRL CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:56.660336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-PRL-CORR-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 PRL CORR","description":"ROSETTA-ORBITER 67P RPCICA 4 PRL CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:57.573868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-4-PRL-PHYS-MASS-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 4 PRL PHYS_MASS","description":"ROSETTA-ORBITER 67P RPCICA 4 PRL PHYS-MASS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-phys-mass-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:58.575231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-5-ESC1-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 ESC1 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 ESC1 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc1-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:43:59.580418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-5-ESC2-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 ESC2 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 ESC2 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc2-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:00.582250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-5-ESC3-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 ESC3 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 ESC3 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc3-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:01.586300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-5-ESC4-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 ESC4 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 ESC4 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc4-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:02.586851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-5-EXT1-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 EXT1 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 EXT1 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext1-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:03.591315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-5-EXT2-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 EXT2 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 EXT2 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext2-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:04.593879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-5-EXT3-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 EXT3 MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 EXT3 MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext3-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:05.611890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCICA-5-PRL-MOMENT-V1.0","title":"ROSETTA-ORBITER 67P RPCICA 5 PRL MOMENT","description":"ROSETTA-ORBITER 67P RPCICA 5 PRL MOMENT V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-prl-moment-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:06.661134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-ESC1-V1.0","title":"RPCIES RAW DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 19 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:07.670740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-ESC1-V2.0","title":"RPCIES EDITED DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron counts (EDITED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:08.596524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-ESC2-V1.0","title":"RPCIES RAW DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 2 (ESC2) from 10 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:09.597218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-ESC2-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2","description":"This Volume contains ion and electron flux data (edited data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:10.605162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-ESC3-V1.0","title":"RPCIES RAW DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 20 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:11.606791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-ESC3-V2.0","title":"RPCIES EDITED DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron flux data (EDITED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:12.605360","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-ESC4-V1.0","title":"RPCIES RAW DATA FOR THE ESCORT PHASE 4","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 21 Oct 2015 to 12 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:13.613116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-EXT1-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:14.615357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-EXT2-V1.0","title":"RPCIES RAW DATA FOR THE ROSETTA EXTENSION 2","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:15.618963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-EXT3-V1.0","title":"RPCIES RAW DATA FOR THE ROSETTA EXTENSION 3","description":"This Volume contains ion and electron counts data (raw data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:16.623186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-PRL-V1.0","title":"RPCIES RAW DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 20 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:17.670308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-2-PRL-V2.0","title":"RPCIES EDITED DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:18.680043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-ESC1-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:19.627021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-ESC1-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:20.628084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-ESC2-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:21.622708","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-ESC2-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:22.627894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-ESC3-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:23.632052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-ESC3-V2.0","title":"RPCIES EDITED DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:24.634262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-ESC4-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 4","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:25.636774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-ESC4-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 4","description":"This Volume contains ion and electron flux data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:26.637805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-EXT1-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:27.640119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-EXT1-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:28.675712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-EXT2-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 2","description":"This Volume contains ion and electron counts data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:29.728777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-EXT2-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 2","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:30.738611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-EXT3-V1.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 3","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:31.652214","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-EXT3-V2.0","title":"RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 3","description":"This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:32.649890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-PRL-V1.0","title":"RPCIES CALIBRATED DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:33.652954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-3-PRL-V2.0","title":"RPCIES CALIBRATED DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:34.663335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-5-ESC1-V1.0","title":"RPCIES DERIVED DATA FOR THE ESCORT PHASE 1","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:35.655524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-5-ESC2-V1.0","title":"RPCIES DERIVED DATA FOR THE ESCORT PHASE 2","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:36.663782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-5-ESC3-V1.0","title":"RPCIES DERIVED DATA FOR THE ESCORT PHASE 3","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:37.659109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-5-ESC4-V1.0","title":"RPCIES DERIVED DATA FOR THE ESCORT PHASE 4","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:38.663639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-5-EXT1-V1.0","title":"RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:39.693074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-5-EXT2-V1.0","title":"RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 2","description":"This Volume contains ion and electron counts data (derived data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:40.739127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-5-EXT3-V1.0","title":"RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 1","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT1) from 01 Jul 2016 to 30 Sep 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:41.748022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCIES-5-PRL-V1.0","title":"RPCIES DERIVED DATA FOR THE PRELANDING PHASE","description":"This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:42.675065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC1-EDITED-V1.0","title":"RPCLAP EDITED RAW DATA FOR COMET ESCORT 1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 (ESC1) phase at comet 67P/Churyomov-Gerasimenko 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-edited-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:43.670280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR ESC1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:44.795217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC1-MTP010-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP10","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2014-12-20T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp010-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:45.685916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC1-MTP011-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP011","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-12-20T00:00:00.000 -- 2015-01-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp011-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:46.684822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC1-MTP012-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP012","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-01-14T00:00:00.000 -- 2015-02-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp012-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:47.687429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC1-MTP013-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP013","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-02-10T23:58:28.967 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp013-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:48.682850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR ESC2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:49.690576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-MTP014-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:50.702295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-MTP014-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP014","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-04-09T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp014-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:51.745180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-MTP015-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:52.757476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-MTP015-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP015","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-04-07T23:59:42.523 -- 2015-05-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp015-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:53.692563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-MTP016-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:54.694290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-MTP016-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP016","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-05-06T00:00:00.000 -- 2015-06-03T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp016-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:55.700746","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-MTP017-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:56.703222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC2-MTP017-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP017","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-06-03T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp017-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:57.704852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR ESC3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:58.704374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-MTP018-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 018 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:44:59.715404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-MTP018-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP018","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-06-30T23:59:60.912 -- 2015-07-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp018-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:00.713410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-MTP019-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 019 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:01.712449","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-MTP019-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP019","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-29T00:00:00.000 -- 2015-08-26T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp019-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:02.756892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-MTP020-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 020 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:03.803780","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-MTP020-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP020","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-08-25T23:57:53.512 -- 2015-09-23T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp020-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:04.816483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-MTP021-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 021 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:05.726246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC3-MTP021-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP021","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-09-22T23:58:50.316 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp021-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:06.727292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC4-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR ESC4","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.112 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:07.727048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC4-MTP022-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:08.732912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC4-MTP022-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP022","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.112 -- 2015-11-18T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp022-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:09.733042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC4-MTP023-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:10.733485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC4-MTP023-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP023","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-11-17T23:58:51.889 -- 2015-12-16T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp023-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:11.737555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC4-MTP024-V1.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:12.737046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-ESC4-MTP024-V2.0","title":"RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP024","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-12-15T23:58:52.679 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp024-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:13.762832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EXT1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.469 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:14.814049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT1-MTP025-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP025","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.469 -- 2016-02-10T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:15.826814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT1-MTP026-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP026","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-02-10T00:00:00.000 -- 2016-03-09T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:16.740373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT1-MTP027-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP027","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-03-09T00:00:00.000 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:17.744464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EXT2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.775 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:18.745522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT2-MTP028-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP028","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 MTP028 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.775 -- 2016-05-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:19.753527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT2-MTP029-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP029","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-05-03T23:57:20.576 -- 2016-06-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:20.752911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT2-MTP030-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP030","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-05-31T23:58:09.366 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:21.756182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT3-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EXT3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:22.755006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT3-MTP031-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP031","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-07-27T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:23.755536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT3-MTP032-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP032","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-07-26T23:59:46.936 -- 2016-08-10T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:24.774036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT3-MTP033-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP033","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-08-09T23:58:43.330 -- 2016-09-02T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:25.824356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT3-MTP034-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP034","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-09-01T23:59:15.977 -- 2016-09-26T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:26.839342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-EXT3-MTP035-V1.0","title":"RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP035","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-09-25T23:59:48.653 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:27.770235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-COM-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING COM","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-05-08T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-com-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:28.766246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-EDITED-V1.0","title":"RPCLAP EDITED RAW DATA FOR PRELANDING","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the prelanding phase (PRL) in 2014 at comet 67P/Churyomov-Gerasimenko 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-edited-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:29.770850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR PRL","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:30.769047","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-MTP003-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP003","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-05-08T00:00:00.000 -- 2014-06-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp003-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:31.769310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-MTP004-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP004","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-06-04T00:00:00.000 -- 2014-07-02T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp004-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:32.774915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-MTP005-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP005","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-07-02T00:00:00.000 -- 2014-08-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp005-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:33.777551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-MTP006-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP006","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-07-31T23:59:27.401 -- 2014-09-02T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp006-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:34.778818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-MTP007-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP007","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-09-01T23:58:24.346 -- 2014-09-23T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp007-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:35.783490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-MTP008-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MPT008","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-09-22T23:57:52.950 -- 2014-10-24T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp008-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:36.842000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-2-PRL-MTP009-V2.0","title":"RPCLAP EDITED DATA FOR PRELANDING MTP009","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-10-23T23:57:21.837 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp009-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:37.850139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-ESC1-CALIB-V1.0","title":"RPCLAP CALIBRATED DATA FOR COMET ESCORT 1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 (ESC1) phase at comet 67P/Churyomov-Gerasimenko 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc1-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:38.789151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-ESC1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR ESC1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:39.794014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-ESC2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR ESC2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:40.789726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-ESC3-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR ESC3","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc3-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:41.796120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-ESC4-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR ESC4","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc4-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:42.797857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-EXT1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EXT1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:43.796120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-EXT2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EXT2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:44.806603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-EXT3-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EXT3","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext3-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:45.801305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-PRL-CALIB-V1.0","title":"RPCLAP CALIBRATED DATA FOR PRELANDING","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the prelanding phase (PRL) in 2014 at comet 67P/Churyomov-Gerasimenko 1.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-prl-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:46.807507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-3-PRL-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR PRL","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-prl-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:47.853461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-ESC1-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR ESC1","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:48.899627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-ESC1-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC1","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:49.810607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-ESC2-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR ESC2","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:50.810403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-ESC2-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC2","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:51.816656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-ESC3-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR ESC3","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:52.811704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-ESC3-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC3","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:53.814300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-ESC4-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR ESC4","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:54.821355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-ESC4-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC4","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:55.820956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-EXT1-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR EXT1","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:56.828764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-EXT1-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT1","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:57.827620","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-EXT2-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR EXT2","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:58.856076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-EXT2-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT2","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:45:59.899522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-EXT3-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR EXT3","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:00.920171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-EXT3-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT3","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:01.838769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-PRL-DERIV2-V1.0","title":"RPCLAP DERIVED PLASMA PARAMETERS FOR PRL","description":"This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-deriv2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:02.836747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCLAP-5-PRL-NEL-V1.0","title":"RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR PRL","description":"This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-nel-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:03.834765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC1-RAW-V5.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:04.843947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC1-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:05.842587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE (ESC1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:06.845104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC2-RAW-V5.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:07.849049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC2-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:08.850757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE (ESC2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:09.865888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC3-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 3 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc3-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:10.910380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC3-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 3 PHASE (ESC3)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc3-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:11.927232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC4-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 4 PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc4-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:12.869467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-ESC4-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMET ESCORT 4 PHASE (ESC4)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ECS4) from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc4-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:13.861309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-EXT1-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 1 (EXT1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext1-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:14.864244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-EXT1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 1 (EXT1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:15.867619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-EXT2-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 2 (EXT2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext2-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:16.873321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-EXT2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 2 (EXT2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:17.871981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-EXT3-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 3 (EXT3)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext3-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:18.872057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-2-EXT3-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 3 (EXT3)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext3-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:19.874391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-ESC1-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc1-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:20.879647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-ESC1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMET ESCORT 1 PHASE (ESC1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:21.921833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-ESC2-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc2-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:22.981393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-ESC2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMET ESCORT 2 PHASE (ESC2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:23.880597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-ESC3-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 3 PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc3-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:24.884405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-ESC3-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMET ESCORT 3 PHASE (ESC3)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc3-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:25.979939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-ESC4-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 4 PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc4-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:26.892217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-ESC4-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMET ESCORT 4 PHASE (ESC4)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ESC4) from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc4-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:27.889281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-EXT1-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 1 (EXT1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext1-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:28.897773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-EXT1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 1 (EXT1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:29.900139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-EXT2-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 2 (EXT2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext2-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:30.899810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-EXT2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 2 (EXT2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:31.907958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-EXT3-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 3 (EXT3)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext3-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:32.939872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-3-EXT3-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 3 (EXT3)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext3-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:33.985555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC1-RESAMPLED-V5.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:34.996748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC1-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 1 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:35.911559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMET ESCORT 1 PHASE (ESC1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:36.913542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC2-RESAMPLED-V5.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:37.918363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC2-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 2 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:38.920571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMET ESCORT 2 PHASE (ESC2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:39.924290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC3-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 3 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc3-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:40.923194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC3-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMET ESCORT 3 PHASE (ESC3)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc3-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:41.929407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC4-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 4 PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc4-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:42.933029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-ESC4-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMET ESCORT 4 PHASE (ESC4)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ESC4) from 21. October 2015 until 12. January 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc4-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:43.945086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-EXT1-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 1(EXT1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext1-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:44.995565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-EXT1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 1(EXT1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:46.006605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-EXT2-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 2(EXT2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext2-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:46.949552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-EXT2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 2(EXT2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:47.949172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-EXT3-RESAMPLED-V6.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 3(EXT3)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext3-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:48.947000","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMAG-4-EXT3-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 3(EXT3)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext3-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:49.954036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC1-V1.0","title":"RPCMIP COMET ESCORT DATA (PART1)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:50.957246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC1-V2.0","title":"RPCMIP COMET ESCORT DATA (PART1)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:51.963017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC1-V3.0","title":"RPCMIP COMET ESCORT 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:52.961060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC2-V1.0","title":"RPCMIP COMET ESCORT DATA (PART2)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:53.961843","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC2-V2.0","title":"RPCMIP COMET ESCORT DATA (PART2)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:54.965258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC2-V3.0","title":"RPCMIP COMET ESCORT 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:56.004100","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC3-V1.0","title":"RPCMIP COMET ESCORT DATA (PART3)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:57.052876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC3-V2.0","title":"RPCMIP COMET ESCORT 3 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:58.060358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC4-V1.0","title":"RPCMIP COMET ESCORT DATA (PART4)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:58.977614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-ESC4-V2.0","title":"RPCMIP COMET ESCORT 4 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:46:59.970848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-EXT1-V1.0","title":"RPCMIP EXTENSION DATA (PART1)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT1 (Extension part 1) phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:00.982795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-EXT1-V2.0","title":"RPCMIP ROSETTA EXTENSION 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:01.979177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-EXT2-V1.0","title":"RPCMIP EXTENSION DATA (PART 2)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT 2 (Extension part 2) phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:02.987402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-EXT2-V2.0","title":"RPCMIP ROSETTA EXTENSION 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:03.983982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-EXT3-V1.0","title":"RPCMIP EXTENSION DATA (PART3)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT3 (Extension part 3) phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:04.990324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-EXT3-V2.0","title":"RPCMIP ROSETTA EXTENSION 3 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:05.990842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL1-V1.0","title":"RPCMIP PRELANDING DATA (PART1) FOR THE COMET PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:07.014640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL1-V2.0","title":"RPCMIP PRELANDING DATA (PART1)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL1 (Prelanding part 1) mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:08.061321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL1-V3.0","title":"RPCMIP PRELANDING L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:09.074977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL2-V1.0","title":"RPCMIP PRELANDING DATA (PART2) FOR THE COMET PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:09.994361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL2-V2.0","title":"RPCMIP PRELANDING DATA (PART2)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL2 (Prelanding part 2) mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:11.003582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL2-V3.0","title":"RPCMIP PRELANDING L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:12.004964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL3-V1.0","title":"RPCMIP PRELANDING DATA (PART3) FOR THE COMET PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:13.009656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL3-V2.0","title":"RPCMIP PRELANDING DATA (PART3)","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL3 (Prelanding part 3)","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:14.012183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-3-PRL3-V3.0","title":"RPCMIP PRELANDING L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:15.010070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-5-ESC1-V1.0","title":"RPCMIP L5 DATA FOR THE COMET ESCORT 1 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:16.018204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-5-ESC2-V1.0","title":"RPCMIP L5 DATA FOR THE COMET ESCORT 2 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:17.016042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-5-ESC3-V1.0","title":"RPCMIP L5 DATA FOR THE COMET ESCORT 3 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:18.023404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-5-ESC4-V1.0","title":"RPCMIP L5 DATA FOR THE COMET ESCORT 4 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:19.072941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-5-EXT1-V1.0","title":"RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:20.083704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-5-EXT2-V1.0","title":"RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:21.018500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-5-EXT3-V1.0","title":"RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:22.023749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP-5-PRL-V1.0","title":"RPCMIP L5 DATA FOR THE PRELANDING PHASE","description":"This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:23.019143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP/RPCLAP-5-ESC1-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 1 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:24.025595","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP/RPCLAP-5-ESC2-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 2 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:25.027658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP/RPCLAP-5-ESC3-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 3 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:26.028398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP/RPCLAP-5-ESC4-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 4 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:27.032454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP/RPCLAP-5-EXT1-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 1 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:28.033607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP/RPCLAP-5-EXT2-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 2 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:29.040691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP/RPCLAP-5-EXT3-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 3 PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:30.078732","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RPCMIP/RPCLAP-5-PRL-V1.0","title":"RPCMIP/RPCLAP L5 DATA FOR THE PRELANDING PHASE","description":"This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:31.132628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0446-V1.0","title":"RORSI_2251_2014_324_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-20T01:37:40.000 to 2014-11-20T13:30:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0446-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:32.039623","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0447-V1.0","title":"RORSI_2252_2014_324_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-20T13:47:20.000 to 2014-11-20T20:23:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0447-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:33.045087","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0448-V1.0","title":"RORSI_2253_2014_325_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-21T02:58:05.000 to 2014-11-21T13:27:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0448-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:34.045278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0449-V1.0","title":"RORSI_2254_2014_325_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-21T13:44:50.000 to 2014-11-21T20:20:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0449-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:35.047761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0450-V1.0","title":"RORSI_2255_2014_326_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-22T03:34:50.000 to 2014-11-22T13:25:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0450-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:36.052018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0451-V1.0","title":"RORSI_2256_2014_326_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-22T13:42:25.000 to 2014-11-22T20:15:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0451-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:37.051433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0452-V1.0","title":"RORSI_2257_2014_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-23T01:30:10.000 to 2014-11-23T13:23:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0452-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:38.051398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0453-V1.0","title":"RORSI_2258_2014_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-23T13:40:00.000 to 2014-11-23T20:14:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0453-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:39.062205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0454-V1.0","title":"RORSI_2259_2014_328_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-24T02:53:05.000 to 2014-11-24T13:20:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0454-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:40.063217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0455-V1.0","title":"RORSI_2260_2014_328_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-24T13:37:35.000 to 2014-11-24T20:45:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0455-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:41.094062","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0456-V1.0","title":"RORSI_2261_2014_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-25T02:48:05.000 to 2014-11-25T13:18:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0456-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:42.143624","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0457-V1.0","title":"RORSI_2262_2014_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-25T13:35:10.000 to 2014-11-25T20:10:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0457-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:43.150886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0458-V1.0","title":"RORSI_2263_2014_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-26T04:19:40.000 to 2014-11-26T13:15:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0458-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:44.065981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0459-V1.0","title":"RORSI_2264_2014_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-26T13:32:45.000 to 2014-11-26T21:38:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0459-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:45.075815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0460-V1.0","title":"RORSI_2265_2014_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-27T02:43:05.000 to 2014-11-27T13:13:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0460-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:46.067344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0461-V1.0","title":"RORSI_2266_2014_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-27T13:30:25.000 to 2014-11-27T19:59:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0461-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:47.068382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0462-V1.0","title":"RORSI_2267_2014_332_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-28T02:43:05.000 to 2014-11-28T13:11:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0462-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:48.079393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0463-V1.0","title":"RORSI_2268_2014_332_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-28T15:43:10.000 to 2014-11-28T19:54:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0463-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:49.076140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0464-V1.0","title":"RORSI_2269_2014_333_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-29T03:34:35.000 to 2014-11-29T13:08:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0464-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:50.080772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0465-V1.0","title":"RORSI_2270_2014_333_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-29T13:25:40.000 to 2014-11-29T20:01:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0465-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:51.082781","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0466-V1.0","title":"RORSI_2271_2014_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-30T01:13:15.000 to 2014-11-30T13:06:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0466-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:52.099256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0467-V1.0","title":"RORSI_2272_2014_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-30T13:23:20.000 to 2014-11-30T19:49:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0467-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:53.149695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0468-V1.0","title":"RORSI_2273_2014_335_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-01T02:33:05.000 to 2014-12-01T13:04:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0468-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:54.164876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0469-V1.0","title":"RORSI_2274_2014_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-02T01:08:30.000 to 2014-12-02T13:01:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0469-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:55.087646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0470-V1.0","title":"RORSI_2275_2014_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-02T13:18:40.000 to 2014-12-02T16:28:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0470-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:56.092968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0471-V1.0","title":"RORSI_2276_2014_337_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-03T13:16:25.000 to 2014-12-03T21:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0471-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:57.101291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0472-V1.0","title":"RORSI_2277_2014_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-04T04:12:15.000 to 2014-12-04T12:57:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0472-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:58.101635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0473-V1.0","title":"RORSI_2278_2014_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-04T13:14:05.000 to 2014-12-04T20:44:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0473-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:47:59.101918","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0474-V1.0","title":"RORSI_2279_2014_339_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-05T04:26:35.000 to 2014-12-05T12:29:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0474-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:00.104963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0475-V1.0","title":"RORSI_2284_2014_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-08T13:05:05.000 to 2014-12-08T20:05:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0475-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:01.107875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0476-V1.0","title":"RORSI_2280_2014_340_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-06T01:54:25.000 to 2014-12-06T12:52:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0476-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:02.105254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0477-V1.0","title":"RORSI_2283_2014_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-08T00:54:35.000 to 2014-12-08T12:48:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0477-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:03.111068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0478-V1.0","title":"RORSI_2281_2014_341_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-07T00:56:55.000 to 2014-12-07T13:18:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0478-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:04.162105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0479-V1.0","title":"RORSI_2282_2014_341_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-07T20:57:05.000 to 2014-12-08T00:37:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0479-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:05.173788","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0480-V1.0","title":"RORSI_2285_2014_343_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-09T00:52:20.000 to 2014-12-09T12:45:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0480-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:06.120635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0481-V1.0","title":"RORSI_2286_2014_343_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-09T13:02:55.000 to 2014-12-09T19:38:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0481-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:07.268541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0482-V1.0","title":"RORSI_2287_2014_344_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-10T13:00:40.000 to 2014-12-10T21:12:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0482-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:08.121173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0483-V1.0","title":"RORSI_2288_2014_345_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-11T04:10:05.000 to 2014-12-11T12:41:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0483-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:09.123454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0484-V1.0","title":"RORSI_2289_2014_345_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-11T12:58:30.000 to 2014-12-11T19:33:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0484-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:10.128384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0485-V1.0","title":"RORSI_2290_2014_346_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-12T03:24:15.000 to 2014-12-12T13:06:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0485-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:11.130012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0486-V1.0","title":"RORSI_2294_2014_349_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-15T00:39:00.000 to 2014-12-15T12:57:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0486-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:12.128030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0487-V1.0","title":"RORSI_2291_2014_347_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-13T04:19:20.000 to 2014-12-13T12:37:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0487-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:13.129950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0488-V1.0","title":"RORSI_2292_2014_347_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-13T12:54:10.000 to 2014-12-13T19:29:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0488-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:14.135845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0489-V1.0","title":"RORSI_2293_2014_348_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-14T06:44:15.000 to 2014-12-14T12:55:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0489-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:15.171098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0490-V1.0","title":"RORSI_2295_2014_350_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-16T00:36:45.000 to 2014-12-16T12:31:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0490-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:16.219200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0491-V1.0","title":"RORSI_2296_2014_350_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-16T12:47:40.000 to 2014-12-16T15:00:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0491-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:17.227848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0492-V1.0","title":"RORSI_2297_2014_351_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-17T03:34:15.000 to 2014-12-17T12:51:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0492-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:18.143191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0493-V1.0","title":"RORSI_2298_2014_351_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-17T13:08:45.000 to 2014-12-17T20:49:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0493-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:19.147775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0494-V1.0","title":"RORSI_2299_2014_352_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-18T00:32:30.000 to 2014-12-18T11:59:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0494-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:20.148775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0495-V1.0","title":"RORSI_2300_2014_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-19T00:30:20.000 to 2014-12-19T12:24:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0495-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:21.147985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0496-V1.0","title":"RORSI_2301_2014_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-19T12:41:25.000 to 2014-12-19T18:17:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0496-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:22.150018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0497-V1.0","title":"RORSI_2302_2014_354_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-20T03:34:15.000 to 2014-12-20T12:22:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0497-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:23.150038","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0498-V1.0","title":"RORSI_2303_2014_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-21T00:26:00.000 to 2014-12-21T12:41:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0498-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:24.154601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0499-V1.0","title":"RORSI_2304_2014_356_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-22T00:23:55.000 to 2014-12-22T12:18:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0499-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:25.167102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0500-V1.0","title":"RORSI_2305_2014_356_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-22T12:35:10.000 to 2014-12-22T20:12:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0500-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:26.186297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0501-V1.0","title":"RORSI_2306_2014_357_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-23T00:21:45.000 to 2014-12-23T12:16:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0501-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:27.224854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0502-V1.0","title":"RORSI_2307_2014_357_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-23T12:33:05.000 to 2014-12-23T18:19:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0502-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:28.242668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0503-V1.0","title":"RORSI_2308_2014_358_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-24T00:19:40.000 to 2014-12-24T12:14:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0503-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:29.166824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0504-V1.0","title":"RORSI_2309_2014_358_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-24T12:28:25.000 to 2014-12-24T20:40:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0504-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:30.173672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0505-V1.0","title":"RORSI_2310_2014_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-25T00:17:35.000 to 2014-12-25T12:12:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0505-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:31.166563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0506-V1.0","title":"RORSI_2311_2014_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-25T12:29:05.000 to 2014-12-25T18:14:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0506-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:32.174025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0507-V1.0","title":"RORSI_2312_2014_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-26T01:43:05.000 to 2014-12-26T12:10:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0507-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:33.182359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0508-V1.0","title":"RORSI_2313_2014_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-26T12:27:00.000 to 2014-12-26T20:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0508-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:34.178928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0509-V1.0","title":"RORSI_2314_2014_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-27T01:43:05.000 to 2014-12-27T12:08:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0509-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:35.182973","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0510-V1.0","title":"RORSI_2315_2014_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-27T15:34:15.000 to 2014-12-27T18:59:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0510-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:36.185800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0511-V1.0","title":"RORSI_2316_2014_362_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-28T01:42:05.000 to 2014-12-28T12:10:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0511-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:37.185525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0512-V1.0","title":"RORSI_2317_2014_363_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-29T00:09:25.000 to 2014-12-29T12:10:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0512-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:38.246357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0513-V1.0","title":"RORSI_2318_2014_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-30T00:07:20.000 to 2014-12-30T12:18:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0513-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:39.252132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0514-V1.0","title":"RORSI_2319_2014_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-30T12:35:25.000 to 2014-12-30T17:59:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0514-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:40.197298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0515-V1.0","title":"RORSI_2321_2014_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T04:32:47.000 to 2014-12-31T12:15:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0515-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:41.192334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0516-V1.0","title":"RORSI_2322_2014_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T12:32:55.000 to 2014-12-31T19:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0516-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:42.192155","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0517-V1.0","title":"RORSI_2323_2015_001_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-01T01:33:05.000 to 2015-01-01T10:39:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0517-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:43.201618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0518-V1.0","title":"RORSI_2324_2015_002_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-02T00:01:20.000 to 2015-01-02T11:14:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0518-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:44.202664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0519-V1.0","title":"RORSI_2325_2015_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-02T23:59:20.000 to 2015-01-03T08:13:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0519-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:45.211978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0520-V1.0","title":"RORSI_2326_2015_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-03T09:04:44.000 to 2015-01-03T10:25:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0520-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:46.206244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0521-V1.0","title":"RORSI_2327_2015_004_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-03T23:57:20.000 to 2015-01-04T10:29:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0521-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:47.209358","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0522-V1.0","title":"RORSI_2328_2015_005_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-04T23:55:20.000 to 2015-01-05T02:40:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0522-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:48.208931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0523-V1.0","title":"RORSI_2329_2015_005_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-05T12:07:05.000 to 2015-01-05T23:36:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0523-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:49.247722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0524-V1.0","title":"RORSI_2330_2015_006_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-05T23:53:20.000 to 2015-01-06T12:00:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0524-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:50.295081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0525-V1.0","title":"RORSI_2331_2015_007_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-07T12:03:20.000 to 2015-01-07T23:51:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0525-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:51.311736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0526-V1.0","title":"RORSI_2332_2015_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T00:08:20.000 to 2015-01-08T02:55:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0526-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:52.214339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0527-V1.0","title":"RORSI_2333_2015_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T12:01:25.000 to 2015-01-08T23:30:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0527-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:53.220151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0528-V1.0","title":"RORSI_2334_2015_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T23:47:35.000 to 2015-01-09T11:53:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0528-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:54.220774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0529-V1.0","title":"RORSI_2320_2014_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T00:38:20.000 to 2014-12-31T03:41:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0529-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:55.224120","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0530-V1.0","title":"RORSI_2335_2015_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-09T12:10:15.000 to 2015-01-09T14:17:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0530-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:56.222268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0531-V1.0","title":"RORSI_2336_2015_010_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-10T04:19:30.000 to 2015-01-10T11:50:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0531-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:57.223284","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0532-V1.0","title":"RORSI_2337_2015_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-11T01:18:05.000 to 2015-01-11T11:48:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0532-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:58.227264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0533-V1.0","title":"RORSI_2338_2015_012_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-12T11:54:00.000 to 2015-01-12T22:15:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0533-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:48:59.236982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0534-V1.0","title":"RORSI_2339_2015_013_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-13T05:12:05.000 to 2015-01-13T11:43:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0534-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:00.254792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0535-V1.0","title":"RORSI_2340_2015_014_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-14T03:34:35.000 to 2015-01-14T11:40:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0535-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:01.310359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0536-V1.0","title":"RORSI_2341_2015_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T01:07:05.000 to 2015-01-15T03:45:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0536-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:02.317916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0537-V1.0","title":"RORSI_2342_2015_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T11:48:35.000 to 2015-01-15T23:17:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0537-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:03.231899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0538-V1.0","title":"RORSI_2343_2015_016_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T23:34:15.000 to 2015-01-16T11:36:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0538-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:04.236283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0539-V1.0","title":"RORSI_2344_2015_016_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-16T10:14:16.000 to 2015-01-16T11:36:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0539-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:05.245042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0540-V1.0","title":"RORSI_2345_2015_017_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-17T03:34:45.000 to 2015-01-17T11:33:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0540-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:06.247414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0541-V1.0","title":"RORSI_2346_2015_018_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-18T01:08:05.000 to 2015-01-18T09:49:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0541-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:07.241776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0542-V1.0","title":"RORSI_2347_2015_019_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-19T11:41:30.000 to 2015-01-19T23:09:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0542-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:08.248124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0543-V1.0","title":"RORSI_2348_2015_020_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-19T23:26:55.000 to 2015-01-20T09:44:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0543-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:09.248629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0544-V1.0","title":"RORSI_2349_2015_021_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-21T04:19:50.000 to 2015-01-21T11:23:33.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0544-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:10.253033","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0545-V1.0","title":"RORSI_2350_2015_022_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-22T17:08:15.000 to 2015-01-22T23:04:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0545-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:11.268681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0546-V1.0","title":"RORSI_2351_2015_023_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-22T23:21:30.000 to 2015-01-23T09:34:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0546-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:12.313504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0547-V1.0","title":"RORSI_2352_2015_024_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-24T03:35:00.000 to 2015-01-24T11:16:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0547-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:13.328831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0548-V1.0","title":"RORSI_2353_2015_025_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-25T00:53:05.000 to 2015-01-25T11:13:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0548-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:14.258559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0549-V1.0","title":"RORSI_2354_2015_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-26T00:53:05.000 to 2015-01-26T05:34:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0549-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:15.262934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0550-V1.0","title":"RORSI_2355_2015_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-26T11:29:25.000 to 2015-01-26T20:29:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0550-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:16.263672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0551-V1.0","title":"RORSI_2356_2015_027_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-27T00:53:05.000 to 2015-01-27T11:08:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0551-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:17.264318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0552-V1.0","title":"RORSI_2357_2015_028_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-28T06:16:58.000 to 2015-01-28T11:06:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0552-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:18.273029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0553-V1.0","title":"RORSI_2358_2015_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T01:10:15.000 to 2015-01-29T02:42:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0553-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:19.267457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0554-V1.0","title":"RORSI_2359_2015_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T12:51:10.000 to 2015-01-29T22:52:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0554-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:20.280135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0555-V1.0","title":"RORSI_2360_2015_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T23:09:05.000 to 2015-01-30T11:01:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0555-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:21.282290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0556-V1.0","title":"RORSI_2361_2015_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-30T20:42:40.000 to 2015-01-30T22:50:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0556-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:22.276372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0557-V1.0","title":"RORSI_2362_2015_031_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-31T04:50:20.000 to 2015-01-31T09:14:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0557-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:23.330294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0558-V1.0","title":"RORSI_2363_2015_032_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-01T06:13:05.000 to 2015-02-01T10:56:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0558-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:24.340967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0559-V1.0","title":"RORSI_2364_2015_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T07:42:05.000 to 2015-02-02T10:54:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0559-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:25.289617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0560-V1.0","title":"RORSI_2365_2015_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T16:53:50.000 to 2015-02-02T22:45:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0560-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:26.290112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0561-V1.0","title":"RORSI_2366_2015_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T23:32:10.000 to 2015-02-03T10:51:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0561-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:27.291642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0562-V1.0","title":"RORSI_2367_2015_034_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-03T11:16:10.000 to 2015-02-03T15:45:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0562-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:28.296230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0563-V1.0","title":"RORSI_2368_2015_035_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-04T11:14:35.000 to 2015-02-04T17:54:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0563-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:29.294025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0564-V1.0","title":"RORSI_2369_2015_036_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-05T11:13:00.000 to 2015-02-05T22:40:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0564-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:30.302384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0565-V1.0","title":"RORSI_2370_2015_036_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-05T22:57:10.000 to 2015-02-06T08:54:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0565-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:31.305421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0566-V1.0","title":"RORSI_2371_2015_037_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-06T22:55:30.000 to 2015-02-07T00:20:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0566-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:32.299026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0567-V1.0","title":"RORSI_2372_2015_038_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-07T03:35:40.000 to 2015-02-07T08:54:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0567-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:33.303193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0568-V1.0","title":"RORSI_2373_2015_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-08T08:43:05.000 to 2015-02-08T10:38:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0568-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:34.339580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0569-V1.0","title":"RORSI_2374_2015_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-08T11:08:15.000 to 2015-02-08T15:25:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0569-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:35.384089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0570-V1.0","title":"RORSI_2375_2015_040_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-09T11:06:40.000 to 2015-02-09T22:33:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0570-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:36.399427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0571-V1.0","title":"RORSI_2376_2015_040_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-09T22:50:30.000 to 2015-02-10T05:11:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0571-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:37.315566","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0572-V1.0","title":"RORSI_2377_2015_041_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-10T07:49:21.000 to 2015-02-10T10:34:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0572-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:38.311028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0573-V1.0","title":"RORSI_2378_2015_041_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-10T22:48:50.000 to 2015-02-11T00:19:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0573-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:39.320650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0574-V1.0","title":"RORSI_2379_2015_042_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-11T01:55:55.000 to 2015-02-11T10:32:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0574-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:40.325647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0575-V1.0","title":"RORSI_2380_2015_042_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-11T11:03:35.000 to 2015-02-11T13:07:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0575-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:41.321741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0576-V1.0","title":"RORSI_2381_2015_043_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-12T08:54:45.000 to 2015-02-12T10:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0576-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:42.330021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0577-V1.0","title":"RORSI_2382_2015_043_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-12T11:02:00.000 to 2015-02-12T15:49:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0577-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:43.319827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0578-V1.0","title":"RORSI_2383_2015_044_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-13T00:50:05.000 to 2015-02-13T10:27:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0578-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:44.332364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0579-V1.0","title":"RORSI_2384_2015_044_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-13T11:00:30.000 to 2015-02-13T13:49:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0579-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:45.349299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0580-V1.0","title":"RORSI_2385_2015_045_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-14T01:56:05.000 to 2015-02-14T08:39:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0580-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:46.400030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0581-V1.0","title":"RORSI_2386_2015_046_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-15T00:23:05.000 to 2015-02-15T08:29:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0581-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:47.408524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0582-V1.0","title":"RORSI_2387_2015_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T08:43:25.000 to 2015-02-16T12:30:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0582-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:48.499236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0583-V1.0","title":"RORSI_2388_2015_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T16:22:05.000 to 2015-02-16T22:22:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0583-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:49.337879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0584-V1.0","title":"RORSI_2389_2015_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T23:20:10.000 to 2015-02-17T00:19:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0584-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:50.339842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0585-V1.0","title":"RORSI_2390_2015_048_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-17T02:25:05.000 to 2015-02-17T08:59:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0585-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:51.339058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0586-V1.0","title":"RORSI_2391_2015_048_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-17T22:37:40.000 to 2015-02-18T00:19:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0586-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:52.345554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0587-V1.0","title":"RORSI_2392_2015_049_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-18T03:36:25.000 to 2015-02-18T10:15:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0587-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:53.342308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0588-V1.0","title":"RORSI_2393_2015_049_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-18T10:53:00.000 to 2015-02-18T13:11:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0588-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:54.356578","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0590-V1.0","title":"RORSI_2394_2015_050_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-19T08:35:00.000 to 2015-02-19T10:34:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0590-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:55.350128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0591-V1.0","title":"RORSI_2395_2015_050_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-19T10:51:30.000 to 2015-02-19T20:14:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0591-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:56.363562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0592-V1.0","title":"RORSI_2396_2015_051_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-20T00:28:05.000 to 2015-02-20T10:10:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0592-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:57.406716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0593-V1.0","title":"RORSI_2397_2015_051_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-20T10:50:05.000 to 2015-02-20T12:55:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0593-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:58.421272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0594-V1.0","title":"RORSI_2398_2015_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-21T18:16:50.000 to 2015-02-21T22:14:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0594-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:49:59.364003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0595-V1.0","title":"RORSI_2399_2015_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-21T22:31:25.000 to 2015-02-22T00:42:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0595-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:00.365599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0596-V1.0","title":"RORSI_2400_2015_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-22T08:12:05.000 to 2015-02-22T10:06:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0596-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:01.364609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0597-V1.0","title":"RORSI_2401_2015_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-22T10:47:10.000 to 2015-02-22T15:03:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0597-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:02.375403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0598-V1.0","title":"RORSI_2402_2015_054_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-23T10:45:45.000 to 2015-02-23T22:11:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0598-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:03.374188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0599-V1.0","title":"RORSI_2403_2015_054_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-23T22:28:20.000 to 2015-02-24T06:28:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0599-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:04.374069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0600-V1.0","title":"RORSI_2404_2015_055_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-24T10:44:20.000 to 2015-02-24T15:20:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0600-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:05.382965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0601-V1.0","title":"RORSI_2405_2015_055_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-24T22:26:50.000 to 2015-02-25T00:19:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0601-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:06.383135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0602-V1.0","title":"RORSI_2406_2015_056_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-25T03:36:55.000 to 2015-02-25T09:58:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0602-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:07.379680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0603-V1.0","title":"RORSI_2407_2015_056_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-25T14:42:55.000 to 2015-02-25T18:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0603-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:08.418933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0604-V1.0","title":"RORSI_2408_2015_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T00:07:05.000 to 2015-02-26T02:30:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0604-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:09.469279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0605-V1.0","title":"RORSI_2409_2015_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T08:15:20.000 to 2015-02-26T10:24:31.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0605-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:10.380039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0606-V1.0","title":"RORSI_2410_2015_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T10:41:30.000 to 2015-02-26T22:22:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0606-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:11.389457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0607-V1.0","title":"RORSI_2411_2015_058_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-27T04:43:05.000 to 2015-02-27T07:59:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0607-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:12.393670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0608-V1.0","title":"RORSI_2412_2015_058_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-27T22:22:20.000 to 2015-02-28T00:18:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0608-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:13.396018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0609-V1.0","title":"RORSI_2413_2015_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T03:37:05.000 to 2015-02-28T09:51:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0609-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:14.397804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0610-V1.0","title":"RORSI_2414_2015_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T10:08:35.000 to 2015-02-28T15:00:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0610-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:15.397893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0611-V1.0","title":"RORSI_2415_2015_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T17:37:40.000 to 2015-02-28T22:31:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0611-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:16.396797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0612-V1.0","title":"RORSI_2416_2015_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T22:34:15.000 to 2015-03-01T07:54:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0612-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:17.408779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0613-V1.0","title":"RORSI_2417_2015_060_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-01T11:48:05.000 to 2015-03-01T15:09:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0613-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:18.406539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0614-V1.0","title":"RORSI_2418_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T08:04:10.000 to 2015-03-02T10:19:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0614-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:19.427846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0615-V1.0","title":"RORSI_2419_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T10:36:00.000 to 2015-03-02T14:35:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0615-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:20.473282","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0616-V1.0","title":"RORSI_2420_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T13:36:00.000 to 2015-03-02T14:35:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0616-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:21.488429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0617-V1.0","title":"RORSI_2421_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T14:28:35.000 to 2015-03-02T22:01:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0617-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:22.414718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0618-V1.0","title":"RORSI_2422_2015_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T22:17:55.000 to 2015-03-03T09:44:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0618-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:23.421403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0619-V1.0","title":"RORSI_2423_2015_062_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-03T10:34:35.000 to 2015-03-03T12:25:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0619-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:24.422452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0620-V1.0","title":"RORSI_2424_2015_063_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-04T16:17:05.000 to 2015-03-04T19:03:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0620-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:25.415102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0621-V1.0","title":"RORSI_2425_2015_063_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-04T22:15:00.000 to 2015-03-05T04:07:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0621-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:26.423405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0622-V1.0","title":"RORSI_2426_2015_064_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T07:55:50.000 to 2015-03-05T10:15:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0622-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:27.431082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0623-V1.0","title":"RORSI_2427_2015_064_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T10:31:55.000 to 2015-03-05T14:59:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0623-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:28.428790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0624-V1.0","title":"RORSI_2428_2015_064_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T23:03:05.000 to 2015-03-06T07:40:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0624-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:29.428213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0625-V1.0","title":"RORSI_2429_2015_066_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-07T03:13:05.000 to 2015-03-07T07:34:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0625-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:30.433761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0626-V1.0","title":"RORSI_2430_2015_066_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-07T22:10:45.000 to 2015-03-08T00:56:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0626-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:31.482662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0627-V1.0","title":"RORSI_2431_2015_067_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T07:38:05.000 to 2015-03-08T09:32:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0627-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:32.499895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0628-V1.0","title":"RORSI_2432_2015_067_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T09:49:35.000 to 2015-03-08T11:50:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0628-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:33.434082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0629-V1.0","title":"RORSI_2433_2015_067_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T22:09:20.000 to 2015-03-09T00:06:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0629-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:34.442405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0630-V1.0","title":"RORSI_2434_2015_068_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T07:44:45.000 to 2015-03-09T10:09:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0630-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:35.444660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0631-V1.0","title":"RORSI_2435_2015_068_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T10:26:40.000 to 2015-03-09T19:54:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0631-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:36.442685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0632-V1.0","title":"RORSI_2436_2015_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T23:53:05.000 to 2015-03-10T02:11:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0632-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:37.444687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0633-V1.0","title":"RORSI_2437_2015_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T07:33:05.000 to 2015-03-10T09:28:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0633-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:38.456336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0634-V1.0","title":"RORSI_2438_2015_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T13:46:00.000 to 2015-03-10T15:57:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0634-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:39.453748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC1-0635-V1.0","title":"RORSI_2439_2015_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T22:06:35.000 to 2015-03-11T00:18:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0635-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:40.455116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0636-V1.0","title":"RORSI_2440_2015_070_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-11T01:58:00.000 to 2015-03-11T09:25:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0636-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:41.454014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0637-V1.0","title":"RORSI_2441_2015_070_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-11T10:24:05.000 to 2015-03-11T12:24:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0637-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:42.496070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0638-V1.0","title":"RORSI_2442_2015_071_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T07:36:25.000 to 2015-03-12T10:05:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0638-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:43.540805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0639-V1.0","title":"RORSI_2443_2015_071_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T10:22:50.000 to 2015-03-12T21:46:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0639-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:44.460805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0640-V1.0","title":"RORSI_2444_2015_071_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T22:03:50.000 to 2015-03-13T09:20:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0640-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:45.462288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0641-V1.0","title":"RORSI_2445_2015_072_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-13T10:21:35.000 to 2015-03-13T12:23:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0641-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:46.469245","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0642-V1.0","title":"RORSI_2446_2015_072_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-13T14:11:10.000 to 2015-03-13T15:54:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0642-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:47.471323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0643-V1.0","title":"RORSI_2447_2015_073_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T02:03:15.000 to 2015-03-14T03:06:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0643-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:48.465701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0644-V1.0","title":"RORSI_2448_2015_073_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T07:28:05.000 to 2015-03-14T09:18:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0644-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:49.476687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0645-V1.0","title":"RORSI_2449_2015_074_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T23:48:05.000 to 2015-03-15T09:16:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0645-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:50.474114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0646-V1.0","title":"RORSI_2450_2015_074_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-15T10:19:10.000 to 2015-03-15T14:27:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0646-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:51.481244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0648-V1.0","title":"RORSI_2452_2015_075_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T11:33:05.000 to 2015-03-16T13:10:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0648-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:52.473769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0649-V1.0","title":"RORSI_2454_2015_075_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T13:11:25.000 to 2015-03-16T16:58:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0649-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:53.504903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0650-V1.0","title":"RORSI_2455_2015_075_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T17:06:25.000 to 2015-03-16T21:09:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0650-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:54.551801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0651-V1.0","title":"RORSI_2456_2015_075_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T21:58:25.000 to 2015-03-17T09:11:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0651-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:55.565592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0652-V1.0","title":"RORSI_2457_2015_076_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-17T10:16:40.000 to 2015-03-17T13:48:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0652-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:56.484296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0653-V1.0","title":"RORSI_2458_2015_076_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-17T22:38:30.000 to 2015-03-18T00:17:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0653-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:57.489811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0654-V1.0","title":"RORSI_2459_2015_077_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T01:58:35.000 to 2015-03-18T09:09:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0654-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:58.491663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0655-V1.0","title":"RORSI_2460_2015_077_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T04:48:30.000 to 2015-03-18T09:09:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0655-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:50:59.495562","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0656-V1.0","title":"RORSI_2453_2015_077_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T10:15:30.000 to 2015-03-18T12:22:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0656-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:00.491239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0657-V1.0","title":"RORSI_2493_2015_078_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T07:17:15.000 to 2015-03-19T11:45:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0657-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:01.499657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0658-V1.0","title":"RORSI_2494_2015_078_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T16:03:20.000 to 2015-03-19T21:31:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0658-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:02.495048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0659-V1.0","title":"RORSI_2495_2015_078_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T21:54:30.000 to 2015-03-20T06:59:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0659-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:03.508274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0660-V1.0","title":"RORSI_2461_2015_079_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-20T13:25:05.000 to 2015-03-20T16:24:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0660-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:04.516305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0661-V1.0","title":"RORSI_2462_2015_079_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-20T22:19:45.000 to 2015-03-21T00:17:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0661-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:05.563904","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0662-V1.0","title":"RORSI_2463_2015_080_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T01:58:50.000 to 2015-03-21T09:02:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0662-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:06.574997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0663-V1.0","title":"RORSI_2464_2015_080_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T10:12:00.000 to 2015-03-21T12:21:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0663-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:07.510451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0664-V1.0","title":"RORSI_2465_2015_080_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T21:52:00.000 to 2015-03-22T08:59:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0664-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:08.513714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0665-V1.0","title":"RORSI_2466_2015_081_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-22T10:10:50.000 to 2015-03-22T14:25:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0665-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:09.518557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0666-V1.0","title":"RORSI_2467_2015_081_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-22T22:28:40.000 to 2015-03-23T00:20:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0666-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:10.527975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0667-V1.0","title":"RORSI_2468_2015_082_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-23T18:33:05.000 to 2015-03-23T21:21:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0667-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:11.519770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0668-V1.0","title":"RORSI_2469_2015_082_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-23T21:49:30.000 to 2015-03-24T08:55:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0668-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:12.518951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0669-V1.0","title":"RORSI_2470_2015_083_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-24T10:08:30.000 to 2015-03-24T12:21:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0669-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:13.521945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0670-V1.0","title":"RORSI_2471_2015_083_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-24T21:48:15.000 to 2015-03-25T00:16:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0670-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:14.532554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0671-V1.0","title":"RORSI_2472_2015_084_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T01:59:15.000 to 2015-03-25T08:52:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0671-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:15.527917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0672-V1.0","title":"RORSI_2473_2015_084_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T10:07:25.000 to 2015-03-25T12:21:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0672-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:16.571985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0673-V1.0","title":"RORSI_2474_2015_084_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T17:57:20.000 to 2015-03-25T21:16:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0673-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:17.618996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0674-V1.0","title":"RORSI_2475_2015_085_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-26T10:06:20.000 to 2015-03-26T21:14:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0674-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:18.537099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0675-V1.0","title":"RORSI_2476_2015_085_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-26T21:45:45.000 to 2015-03-27T06:45:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0675-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:19.538244","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0676-V1.0","title":"RORSI_2477_2015_086_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-27T21:44:35.000 to 2015-03-28T00:16:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0676-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:20.540459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0677-V1.0","title":"RORSI_2478_2015_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T01:59:30.000 to 2015-03-28T06:39:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0677-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:21.549662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0678-V1.0","title":"RORSI_2479_2015_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T15:53:05.000 to 2015-03-28T19:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0678-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:22.545528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0679-V1.0","title":"RORSI_2480_2015_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T21:43:20.000 to 2015-03-28T22:55:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0679-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:23.550688","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0680-V1.0","title":"RORSI_2481_2015_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T22:58:35.000 to 2015-03-29T04:04:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0680-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:24.551381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0681-V1.0","title":"RORSI_2482_2015_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-29T05:04:40.000 to 2015-03-29T08:43:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0681-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:25.554275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0682-V1.0","title":"RORSI_2483_2015_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-29T10:03:00.000 to 2015-03-29T13:02:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0682-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:26.551503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0683-V1.0","title":"RORSI_2484_2015_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-30T14:53:05.000 to 2015-03-30T21:04:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0683-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:27.580608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0684-V1.0","title":"RORSI_2485_2015_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-30T21:41:00.000 to 2015-03-31T08:38:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0684-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:28.629940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0685-V1.0","title":"RORSI_2486_2015_090_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-31T10:00:55.000 to 2015-03-31T12:19:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0685-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:29.749416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0686-V1.0","title":"RORSI_2487_2015_091_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T06:42:05.000 to 2015-04-01T12:16:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0686-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:30.566220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0687-V1.0","title":"RORSI_2488_2015_091_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T13:59:55.000 to 2015-04-01T15:38:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0687-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:31.565199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0688-V1.0","title":"RORSI_2489_2015_091_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T21:42:05.000 to 2015-04-02T01:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0688-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:32.570107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0689-V1.0","title":"RORSI_2490_2015_092_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-02T15:23:05.000 to 2015-04-02T20:56:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0689-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:33.569262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0690-V1.0","title":"RORSI_2491_2015_092_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-02T21:37:30.000 to 2015-04-03T05:58:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0690-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:34.570295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0691-V1.0","title":"RORSI_2492_2015_094_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-03T23:23:05.000 to 2015-04-04T00:15:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0691-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:35.572745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0692-V1.0","title":"RORSI_2496_2015_094_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-04T03:40:10.000 to 2015-04-04T08:29:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0692-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:36.575054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0693-V1.0","title":"RORSI_2497_2015_095_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-04T23:28:05.000 to 2015-04-05T01:29:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0693-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:37.574821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0694-V1.0","title":"RORSI_2498_2015_096_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T06:28:45.000 to 2015-04-06T09:38:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0694-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:38.592197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0695-V1.0","title":"RORSI_2499_2015_096_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T09:54:55.000 to 2015-04-06T13:35:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0695-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:39.647052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0696-V1.0","title":"RORSI_2500_2015_097_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T23:28:05.000 to 2015-04-07T08:22:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0696-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:40.653681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0697-V1.0","title":"RORSI_2501_2015_097_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-07T08:39:50.000 to 2015-04-07T13:35:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0697-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:41.587379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0698-V1.0","title":"RORSI_2502_2015_098_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-07T23:28:05.000 to 2015-04-08T08:20:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0698-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:42.586807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0699-V1.0","title":"RORSI_2503_2015_099_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-09T09:52:05.000 to 2015-04-09T20:40:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0699-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:43.584046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0700-V1.0","title":"RORSI_2504_2015_099_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-09T21:29:55.000 to 2015-04-10T06:04:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0700-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:44.592932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0701-V1.0","title":"RORSI_2505_2015_100_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-10T12:41:45.000 to 2015-04-10T15:31:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0701-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:45.595983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0702-V1.0","title":"RORSI_2506_2015_100_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-10T21:28:55.000 to 2015-04-11T08:13:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0702-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:46.598996","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0703-V1.0","title":"RORSI_2507_2015_101_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-11T08:30:50.000 to 2015-04-11T14:54:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0703-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:47.599535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0704-V1.0","title":"RORSI_2508_2015_102_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-11T23:23:05.000 to 2015-04-12T08:11:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0704-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:48.597104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0705-V1.0","title":"RORSI_2509_2015_102_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-12T08:28:35.000 to 2015-04-12T13:19:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0705-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:49.603982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0706-V1.0","title":"RORSI_2510_2015_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T06:12:05.000 to 2015-04-13T10:00:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0706-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:50.650448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0707-V1.0","title":"RORSI_2511_2015_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T15:43:05.000 to 2015-04-13T20:30:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0707-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:51.666330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0708-V1.0","title":"RORSI_2512_2015_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T21:25:50.000 to 2015-04-14T08:07:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0708-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:52.606521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0709-V1.0","title":"RORSI_2513_2015_105_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-15T02:18:05.000 to 2015-04-15T08:04:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0709-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:53.605227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0710-V1.0","title":"RORSI_2514_2015_105_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-15T12:57:05.000 to 2015-04-15T15:28:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0710-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:54.613763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0711-V1.0","title":"RORSI_2515_2015_106_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-16T06:02:40.000 to 2015-04-16T13:10:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0711-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:55.614420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0712-V1.0","title":"RORSI_2516_2015_106_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-16T21:23:00.000 to 2015-04-17T08:00:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0712-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:56.618045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0713-V1.0","title":"RORSI_2517_2015_107_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-17T12:28:15.000 to 2015-04-17T15:27:31.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0713-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:57.619952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0714-V1.0","title":"RORSI_2518_2015_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T02:08:05.000 to 2015-04-18T07:58:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0714-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:58.623068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0715-V1.0","title":"RORSI_2519_2015_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T08:15:10.000 to 2015-04-18T10:29:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0715-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:51:59.624355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0716-V1.0","title":"RORSI_2520_2015_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T17:02:05.000 to 2015-04-18T20:19:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0716-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:00.626447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0717-V1.0","title":"RORSI_2521_2015_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T21:21:10.000 to 2015-04-19T05:39:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0717-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:01.664958","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0718-V1.0","title":"RORSI_2522_2015_109_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-19T05:59:42.000 to 2015-04-19T16:37:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0718-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:02.708553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0719-V1.0","title":"RORSI_2523_2015_110_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-20T05:52:25.000 to 2015-04-20T13:00:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0719-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:03.625610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0720-V1.0","title":"RORSI_2524_2015_110_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-20T23:13:05.000 to 2015-04-21T07:51:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0720-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:04.636756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0721-V1.0","title":"RORSI_2525_2015_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-21T08:08:35.000 to 2015-04-21T10:14:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0721-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:05.631342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0722-V1.0","title":"RORSI_2526_2015_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-21T21:18:30.000 to 2015-04-22T00:14:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0722-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:06.641452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0723-V1.0","title":"RORSI_2527_2015_112_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-22T08:06:25.000 to 2015-04-22T15:24:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0723-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:07.636559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0724-V1.0","title":"RORSI_2528_2015_112_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-22T02:01:55.000 to 2015-04-22T07:49:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0724-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:08.646789","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0725-V1.0","title":"RORSI_2529_2015_113_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-23T05:44:50.000 to 2015-04-23T12:03:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0725-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:09.646233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0726-V1.0","title":"RORSI_2530_2015_113_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-23T12:20:50.000 to 2015-04-23T18:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0726-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:10.652201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0727-V1.0","title":"RORSI_2531_2015_114_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T03:03:05.000 to 2015-04-24T05:29:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0727-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:11.651102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0728-V1.0","title":"RORSI_2532_2015_114_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T12:15:40.000 to 2015-04-24T15:23:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0728-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:12.673163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0729-V1.0","title":"RORSI_2533_2015_114_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T21:15:55.000 to 2015-04-25T01:53:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0729-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:13.722857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0730-V1.0","title":"RORSI_2534_2015_115_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-25T02:02:15.000 to 2015-04-25T05:24:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0730-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:14.732032","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0731-V1.0","title":"RORSI_2535_2015_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T05:43:05.000 to 2015-04-26T07:40:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0731-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:15.663186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0732-V1.0","title":"RORSI_2536_2015_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T07:57:45.000 to 2015-04-26T12:54:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0732-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:16.661775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0733-V1.0","title":"RORSI_2537_2015_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T23:42:05.000 to 2015-04-27T03:17:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0733-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:17.657721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0734-V1.0","title":"RORSI_2538_2015_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-27T12:33:05.000 to 2015-04-27T19:58:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0734-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:18.666437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0735-V1.0","title":"RORSI_2539_2015_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-27T21:13:35.000 to 2015-04-28T05:19:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0735-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:19.670479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0736-V1.0","title":"RORSI_2540_2015_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-28T09:08:05.000 to 2015-04-28T15:21:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0736-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:20.675001","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0737-V1.0","title":"RORSI_2541_2015_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-28T21:12:50.000 to 2015-04-29T00:13:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0737-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:21.672684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0738-V1.0","title":"RORSI_2542_2015_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-29T02:02:40.000 to 2015-04-29T07:34:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0738-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:22.669390","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0739-V1.0","title":"RORSI_2543_2015_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-29T07:51:15.000 to 2015-04-29T13:09:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0739-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:23.681596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0740-V1.0","title":"RORSI_2544_2015_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T05:27:25.000 to 2015-04-30T09:19:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0740-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:24.742225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0741-V1.0","title":"RORSI_2545_2015_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T09:36:15.000 to 2015-04-30T15:24:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0741-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:25.741932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0742-V1.0","title":"RORSI_2546_2015_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T21:11:20.000 to 2015-05-01T07:30:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0742-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:26.685857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0743-V1.0","title":"RORSI_2547_2015_121_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-01T09:35:40.000 to 2015-05-01T12:13:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0743-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:27.682281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0744-V1.0","title":"RORSI_2548_2015_121_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-01T21:10:35.000 to 2015-05-01T23:43:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0744-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:28.688195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0745-V1.0","title":"RORSI_2549_2015_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T07:44:55.000 to 2015-05-02T12:44:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0745-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:29.690771","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0746-V1.0","title":"RORSI_2550_2015_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T04:27:55.000 to 2015-05-02T07:27:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0746-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:30.694060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0747-V1.0","title":"RORSI_2551_2015_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T23:08:05.000 to 2015-05-03T05:49:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0747-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:31.696290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0748-V1.0","title":"RORSI_2552_2015_123_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-03T22:32:40.000 to 2015-05-04T04:36:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0748-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:32.696775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0749-V1.0","title":"RORSI_2553_2015_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T05:17:45.000 to 2015-05-04T09:17:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0749-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:33.695997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0750-V1.0","title":"RORSI_2554_2015_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T09:34:00.000 to 2015-05-04T16:44:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0750-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:34.699750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0751-V1.0","title":"RORSI_2555_2015_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T23:08:05.000 to 2015-05-05T07:21:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0751-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:35.744753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0752-V1.0","title":"RORSI_2556_2015_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-05T07:38:35.000 to 2015-05-05T09:56:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0752-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:36.789894","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0753-V1.0","title":"RORSI_2557_2015_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-05T10:12:50.000 to 2015-05-05T12:25:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0753-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:37.801172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0754-V1.0","title":"RORSI_2558_2015_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-06T05:12:55.000 to 2015-05-06T12:24:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0754-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:38.716365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0755-V1.0","title":"RORSI_2559_2015_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-06T21:28:05.000 to 2015-05-07T02:36:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0755-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:39.713342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0756-V1.0","title":"RORSI_2560_2015_127_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-07T09:32:35.000 to 2015-05-07T18:44:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0756-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:40.721102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0757-V1.0","title":"RORSI_2561_2015_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T03:08:05.000 to 2015-05-08T07:15:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0757-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:41.719694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0758-V1.0","title":"RORSI_2562_2015_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T09:42:10.000 to 2015-05-08T12:11:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0758-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:42.728136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0759-V1.0","title":"RORSI_2563_2015_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T12:27:55.000 to 2015-05-08T14:29:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0759-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:43.727615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0760-V1.0","title":"RORSI_2564_2015_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T23:08:05.000 to 2015-05-09T06:39:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0760-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:44.729640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0761-V1.0","title":"RORSI_2565_2015_129_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-09T10:02:05.000 to 2015-05-09T12:25:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0761-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:45.730570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0762-V1.0","title":"RORSI_2566_2015_129_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-09T21:05:35.000 to 2015-05-10T07:11:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0762-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:46.749164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0763-V1.0","title":"RORSI_2567_2015_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T07:28:15.000 to 2015-05-10T09:45:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0763-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:47.794793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0764-V1.0","title":"RORSI_2568_2015_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T10:02:30.000 to 2015-05-10T12:10:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0764-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:48.812690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0765-V1.0","title":"RORSI_2569_2015_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T22:16:40.000 to 2015-05-11T01:46:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0765-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:49.740490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0766-V1.0","title":"RORSI_2570_2015_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T05:01:10.000 to 2015-05-11T06:45:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0766-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:50.742845","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0767-V1.0","title":"RORSI_2571_2015_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T09:31:00.000 to 2015-05-11T18:39:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0767-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:51.745750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0768-V1.0","title":"RORSI_2572_2015_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T22:03:05.000 to 2015-05-12T07:07:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0768-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:52.745125","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0769-V1.0","title":"RORSI_2573_2015_132_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-12T12:09:40.000 to 2015-05-12T15:17:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0769-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:53.747895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0770-V1.0","title":"RORSI_2574_2015_132_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-12T21:04:00.000 to 2015-05-12T23:12:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0770-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:54.753210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0771-V1.0","title":"RORSI_2575_2015_133_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-13T05:03:05.000 to 2015-05-13T07:05:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0771-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:55.751011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0772-V1.0","title":"RORSI_2576_2015_133_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-13T09:30:20.000 to 2015-05-13T12:09:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0772-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:56.752798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0773-V1.0","title":"RORSI_2577_2015_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T04:54:20.000 to 2015-05-14T06:45:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0773-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:57.760408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0774-V1.0","title":"RORSI_2578_2015_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T09:30:00.000 to 2015-05-14T19:20:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0774-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:58.806714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0775-V1.0","title":"RORSI_2579_2015_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T21:03:05.000 to 2015-05-15T00:11:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0775-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:52:59.820312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0776-V1.0","title":"RORSI_2580_2015_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T05:03:05.000 to 2015-05-15T07:01:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0776-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:00.762233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0777-V1.0","title":"RORSI_2581_2015_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T09:29:45.000 to 2015-05-15T12:08:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0777-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:01.767331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0778-V1.0","title":"RORSI_2582_2015_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T12:25:35.000 to 2015-05-15T15:16:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0778-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:02.766014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0779-V1.0","title":"RORSI_2583_2015_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T23:03:05.000 to 2015-05-16T06:59:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0779-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:03.770763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0780-V1.0","title":"RORSI_2584_2015_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T07:16:10.000 to 2015-05-16T09:12:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0780-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:04.773002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0781-V1.0","title":"RORSI_2585_2015_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T09:29:25.000 to 2015-05-16T12:08:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0781-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:05.777787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0782-V1.0","title":"RORSI_2586_2015_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T22:33:05.000 to 2015-05-17T04:14:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0782-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:06.771268","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0783-V1.0","title":"RORSI_2587_2015_137_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T05:07:20.000 to 2015-05-17T06:57:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0783-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:07.781976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0784-V1.0","title":"RORSI_2588_2015_137_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T07:14:10.000 to 2015-05-17T09:12:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0784-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:08.783393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0785-V1.0","title":"RORSI_2589_2015_137_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T09:29:10.000 to 2015-05-17T12:04:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0785-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:09.819480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0786-V1.0","title":"RORSI_2590_2015_138_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T04:45:20.000 to 2015-05-18T06:45:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0786-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:10.967308","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0787-V1.0","title":"RORSI_2591_2015_138_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T09:29:00.000 to 2015-05-18T11:59:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0787-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:11.878108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0788-V1.0","title":"RORSI_2592_2015_138_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T21:01:25.000 to 2015-05-19T01:39:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0788-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:12.786969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0789-V1.0","title":"RORSI_2593_2015_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T00:01:25.000 to 2015-05-19T06:53:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0789-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:13.782987","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0791-V1.0","title":"RORSI_2594_2015_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T12:57:05.000 to 2015-05-19T13:56:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0791-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:14.792856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0792-V1.0","title":"RORSI_2595_2015_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T14:09:30.000 to 2015-05-19T15:16:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0792-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:15.793356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0793-V1.0","title":"RORSI_2596_2015_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T21:02:05.000 to 2015-05-20T00:35:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0793-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:16.795518","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0794-V1.0","title":"RORSI_2597_2015_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-20T04:55:05.000 to 2015-05-20T06:51:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0794-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:17.797030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0795-V1.0","title":"RORSI_2598_2015_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-20T09:28:35.000 to 2015-05-20T12:06:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0795-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:18.802293","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0796-V1.0","title":"RORSI_2599_2015_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T04:38:45.000 to 2015-05-21T09:11:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0796-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:19.802855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0797-V1.0","title":"RORSI_2600_2015_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T09:28:25.000 to 2015-05-21T17:30:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0797-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:20.824990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0798-V1.0","title":"RORSI_2601_2015_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T21:02:05.000 to 2015-05-22T00:31:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0798-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:21.876931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0799-V1.0","title":"RORSI_2602_2015_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T04:48:05.000 to 2015-05-22T06:47:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0799-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:22.891259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0800-V1.0","title":"RORSI_2603_2015_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T09:28:20.000 to 2015-05-22T11:54:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0800-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:23.810094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0801-V1.0","title":"RORSI_2604_2015_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T21:00:10.000 to 2015-05-22T23:09:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0801-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:24.814797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0802-V1.0","title":"RORSI_2605_2015_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-23T05:05:50.000 to 2015-05-23T06:45:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0802-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:25.822382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0803-V1.0","title":"RORSI_2606_2015_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-23T09:28:10.000 to 2015-05-23T12:25:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0803-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:26.818497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0804-V1.0","title":"RORSI_2607_2015_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T07:00:45.000 to 2015-05-24T09:25:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0804-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:27.828044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0805-V1.0","title":"RORSI_2608_2015_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T04:43:05.000 to 2015-05-24T06:43:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0805-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:28.829379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0806-V1.0","title":"RORSI_2609_2015_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T09:42:05.000 to 2015-05-24T13:55:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0806-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:29.825378","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0807-V1.0","title":"RORSI_2610_2015_145_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-25T12:03:05.000 to 2015-05-25T18:57:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0807-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:30.836135","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0808-V1.0","title":"RORSI_2611_2015_145_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-25T20:59:25.000 to 2015-05-26T06:40:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0808-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:31.840950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0809-V1.0","title":"RORSI_2612_2015_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T06:57:00.000 to 2015-05-26T09:11:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0809-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:32.887673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0810-V1.0","title":"RORSI_2613_2015_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T09:28:00.000 to 2015-05-26T11:54:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0810-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:33.903859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0811-V1.0","title":"RORSI_2614_2015_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T20:59:15.000 to 2015-05-27T05:59:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0811-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:34.834637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0812-V1.0","title":"RORSI_2615_2015_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T09:28:00.000 to 2015-05-28T13:51:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0812-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:35.837045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0813-V1.0","title":"RORSI_2616_2015_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T14:06:20.000 to 2015-05-28T15:57:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0813-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:36.840565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0814-V1.0","title":"RORSI_2617_2015_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T16:13:20.000 to 2015-05-28T18:51:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0814-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:37.846220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0815-V1.0","title":"RORSI_2618_2015_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T20:58:50.000 to 2015-05-29T06:34:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0815-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:38.849504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0816-V1.0","title":"RORSI_2619_2015_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-29T09:28:00.000 to 2015-05-29T11:34:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0816-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:39.852839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0817-V1.0","title":"RORSI_2620_2015_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-29T20:58:45.000 to 2015-05-30T04:35:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0817-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:40.852421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0818-V1.0","title":"RORSI_2621_2015_150_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-30T09:28:05.000 to 2015-05-30T11:35:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0818-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:41.854917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0819-V1.0","title":"RORSI_2622_2015_150_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-30T22:58:05.000 to 2015-05-31T04:54:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0819-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:42.861900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0820-V1.0","title":"RORSI_2623_2015_151_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-31T09:28:10.000 to 2015-05-31T12:01:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0820-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:43.898476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0821-V1.0","title":"RORSI_2624_2015_152_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-01T09:28:15.000 to 2015-06-01T14:36:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0821-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:44.942814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0822-V1.0","title":"RORSI_2625_2015_152_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-01T20:58:30.000 to 2015-06-02T06:27:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0822-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:45.864073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0823-V1.0","title":"RORSI_2626_2015_153_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-02T09:28:25.000 to 2015-06-02T12:00:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0823-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:46.873015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0824-V1.0","title":"RORSI_2627_2015_154_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-03T09:28:35.000 to 2015-06-03T13:14:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0824-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:47.866049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0825-V1.0","title":"RORSI_2628_2015_155_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-04T09:28:40.000 to 2015-06-04T18:37:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0825-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:48.871556","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0826-V1.0","title":"RORSI_2629_2015_155_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-04T20:58:25.000 to 2015-06-05T06:22:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0826-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:49.874261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0827-V1.0","title":"RORSI_2630_2015_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-05T09:28:55.000 to 2015-06-05T17:10:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0827-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:50.875421","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0828-V1.0","title":"RORSI_2631_2015_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-05T22:58:05.000 to 2015-06-05T23:40:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0828-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:51.881267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0829-V1.0","title":"RORSI_2632_2015_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-06T09:29:05.000 to 2015-06-06T15:05:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0829-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:52.891016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0830-V1.0","title":"RORSI_2633_2015_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-06T22:58:05.000 to 2015-06-07T06:18:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0830-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:53.879810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0831-V1.0","title":"RORSI_2634_2015_158_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-07T09:29:20.000 to 2015-06-07T11:19:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0831-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:54.909225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0832-V1.0","title":"RORSI_2635_2015_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T09:29:35.000 to 2015-06-08T11:17:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0832-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:55.958251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0833-V1.0","title":"RORSI_2636_2015_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T16:57:05.000 to 2015-06-08T18:30:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0833-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:56.969269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0834-V1.0","title":"RORSI_2637_2015_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T20:58:40.000 to 2015-06-09T06:15:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0834-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:57.890216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0835-V1.0","title":"RORSI_2638_2015_160_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-09T20:58:50.000 to 2015-06-10T00:19:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0835-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:58.891462","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0836-V1.0","title":"RORSI_2639_2015_161_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-10T04:56:20.000 to 2015-06-10T06:13:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0836-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:53:59.890995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0837-V1.0","title":"RORSI_2640_2015_161_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-10T16:12:05.000 to 2015-06-10T18:26:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0837-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:00.890837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0838-V1.0","title":"RORSI_2641_2015_162_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-11T04:03:15.000 to 2015-06-11T06:04:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0838-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:01.896652","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0839-V1.0","title":"RORSI_2642_2015_162_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-11T20:59:05.000 to 2015-06-12T06:10:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0839-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:02.901049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0840-V1.0","title":"RORSI_2643_2015_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-12T20:59:20.000 to 2015-06-13T06:09:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0840-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:03.899409","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0841-V1.0","title":"RORSI_2644_2015_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-13T22:58:05.000 to 2015-06-14T06:07:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0841-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:04.904408","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0842-V1.0","title":"RORSI_2645_2015_165_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-14T12:27:05.000 to 2015-06-14T14:25:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0842-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:05.917009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0843-V1.0","title":"RORSI_2646_2015_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-15T03:50:25.000 to 2015-06-15T11:09:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0843-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:06.968261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0844-V1.0","title":"RORSI_2647_2015_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-15T21:00:00.000 to 2015-06-15T23:45:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0844-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:07.977593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0845-V1.0","title":"RORSI_2648_2015_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-16T03:48:45.000 to 2015-06-16T05:15:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0845-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:08.911961","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0846-V1.0","title":"RORSI_2649_2015_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-16T10:32:05.000 to 2015-06-16T16:50:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0846-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:09.922965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0847-V1.0","title":"RORSI_2650_2015_168_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-17T04:56:50.000 to 2015-06-17T15:21:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0847-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:10.914484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0848-V1.0","title":"RORSI_2651_2015_169_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-18T07:03:30.000 to 2015-06-18T15:21:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0848-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:12.173947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0849-V1.0","title":"RORSI_2652_2015_170_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-19T03:44:00.000 to 2015-06-19T11:14:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0849-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:13.097217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0850-V1.0","title":"RORSI_2653_2015_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-20T03:42:25.000 to 2015-06-20T09:23:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0850-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:14.093406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0851-V1.0","title":"RORSI_2654_2015_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-20T21:01:35.000 to 2015-06-21T05:57:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0851-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:15.100997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0852-V1.0","title":"RORSI_2655_2015_172_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-21T21:02:00.000 to 2015-06-21T22:40:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0852-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:16.106583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0853-V1.0","title":"RORSI_2656_2015_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-22T09:35:55.000 to 2015-06-22T18:06:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0853-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:17.109526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0854-V1.0","title":"RORSI_2657_2015_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-22T21:05:55.000 to 2015-06-23T04:20:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0854-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:18.108713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0855-V1.0","title":"RORSI_2658_2015_174_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-23T21:02:50.000 to 2015-06-24T00:21:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0855-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:19.111718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0856-V1.0","title":"RORSI_2659_2015_175_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-24T11:42:40.000 to 2015-06-24T13:49:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0856-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:20.113134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0857-V1.0","title":"RORSI_2660_2015_176_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-25T21:03:45.000 to 2015-06-26T00:23:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0857-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:21.119828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0859-V1.0","title":"RORSI_2661_2015_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-26T11:38:20.000 to 2015-06-26T13:54:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0859-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:22.167587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0860-V1.0","title":"RORSI_2662_2015_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-26T21:04:15.000 to 2015-06-27T00:19:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0860-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:23.183182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0861-V1.0","title":"RORSI_2663_2015_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-27T05:16:20.000 to 2015-06-27T05:49:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0861-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:24.121070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0862-V1.0","title":"RORSI_2664_2015_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-27T21:34:25.000 to 2015-06-28T05:48:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0862-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:25.125824","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0863-V1.0","title":"RORSI_2665_2015_179_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-28T06:05:20.000 to 2015-06-28T16:06:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0863-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:26.127939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0864-V1.0","title":"RORSI_2666_2015_179_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-28T21:34:22.000 to 2015-06-28T23:15:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0864-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:27.130875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0865-V1.0","title":"RORSI_2667_2015_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T14:48:05.000 to 2015-06-29T16:03:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0865-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:28.131985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0866-V1.0","title":"RORSI_2668_2015_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T16:23:30.000 to 2015-06-29T17:56:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0866-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:29.133016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0867-V1.0","title":"RORSI_2669_2015_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T21:05:50.000 to 2015-06-30T05:46:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0867-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:30.141063","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0868-V1.0","title":"RORSI_2670_2015_181_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-30T10:12:15.000 to 2015-06-30T11:37:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0868-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:31.136176","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC2-0869-V1.0","title":"RORSI_2671_2015_181_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-30T22:02:05.000 to 2015-06-30T23:30:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0869-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:32.138031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0870-V1.0","title":"RORSI_2672_2015_182_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-01T03:27:20.000 to 2015-07-01T04:55:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0870-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:33.181975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0871-V1.0","title":"RORSI_2673_2015_182_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-01T21:06:55.000 to 2015-07-02T03:00:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0871-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:34.227221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0872-V1.0","title":"RORSI_2674_2015_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T03:25:00.000 to 2015-07-03T05:29:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0872-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:35.146127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0873-V1.0","title":"RORSI_2675_2015_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T14:48:05.000 to 2015-07-03T17:51:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0873-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:36.146549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0874-V1.0","title":"RORSI_2676_2015_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T21:08:05.000 to 2015-07-04T00:18:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0874-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:37.152050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0875-V1.0","title":"RORSI_2677_2015_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T04:57:45.000 to 2015-07-04T05:41:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0875-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:38.153645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0876-V1.0","title":"RORSI_2678_2015_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T10:08:10.000 to 2015-07-04T13:09:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0876-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:39.148106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0877-V1.0","title":"RORSI_2679_2015_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T21:08:45.000 to 2015-07-05T03:10:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0877-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:40.157199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0878-V1.0","title":"RORSI_2680_2015_186_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-05T21:57:05.000 to 2015-07-06T00:09:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0878-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:41.159149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0879-V1.0","title":"RORSI_2681_2015_187_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-06T03:21:40.000 to 2015-07-06T09:47:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0879-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:42.160009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0880-V1.0","title":"RORSI_2682_2015_188_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-07T03:20:40.000 to 2015-07-07T05:19:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0880-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:43.163967","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0881-V1.0","title":"RORSI_2683_2015_189_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-08T09:47:40.000 to 2015-07-08T17:45:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0881-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:44.186911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0882-V1.0","title":"RORSI_2684_2015_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T03:50:00.000 to 2015-07-09T05:04:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0882-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:45.237410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0883-V1.0","title":"RORSI_2685_2015_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T08:02:05.000 to 2015-07-09T10:40:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0883-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:46.253134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0884-V1.0","title":"RORSI_2686_2015_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T14:50:00.000 to 2015-07-09T17:44:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0884-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:47.170469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0885-V1.0","title":"RORSI_2687_2015_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T00:43:55.000 to 2015-07-10T04:04:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0885-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:48.173943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0886-V1.0","title":"RORSI_2688_2015_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T16:46:05.000 to 2015-07-10T17:43:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0886-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:49.174477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0887-V1.0","title":"RORSI_2689_2015_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T21:12:40.000 to 2015-07-11T00:17:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0887-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:50.179128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0888-V1.0","title":"RORSI_2690_2015_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T01:32:05.000 to 2015-07-11T02:27:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0888-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:51.181232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0889-V1.0","title":"RORSI_2691_2015_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T05:49:46.000 to 2015-07-11T06:20:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0889-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:52.283933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0890-V1.0","title":"RORSI_2692_2015_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T15:05:15.000 to 2015-07-11T17:41:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0890-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:53.186127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0892-V1.0","title":"RORSI_2693_2015_193_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-12T13:01:50.000 to 2015-07-12T15:34:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0892-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:54.183810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0893-V1.0","title":"RORSI_2694_2015_193_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-12T21:14:00.000 to 2015-07-13T03:44:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0893-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:55.197662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0894-V1.0","title":"RORSI_2695_2015_194_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-13T09:52:00.000 to 2015-07-13T17:40:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0894-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:56.247907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0895-V1.0","title":"RORSI_2696_2015_194_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-13T21:14:45.000 to 2015-07-14T04:39:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0895-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:57.258966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0896-V1.0","title":"RORSI_2697_2015_195_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-14T11:02:05.000 to 2015-07-14T14:20:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0896-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:58.192160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0897-V1.0","title":"RORSI_2698_2015_195_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-14T21:15:25.000 to 2015-07-15T03:34:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0897-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:54:59.195217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0898-V1.0","title":"RORSI_2699_2015_196_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-15T09:53:45.000 to 2015-07-15T16:53:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0898-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:00.196741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0899-V1.0","title":"RORSI_2700_2015_196_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-15T21:16:05.000 to 2015-07-16T04:35:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0899-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:01.202461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0900-V1.0","title":"RORSI_2701_2015_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T09:54:35.000 to 2015-07-16T11:09:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0900-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:02.204327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0901-V1.0","title":"RORSI_2702_2015_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T14:02:05.000 to 2015-07-16T16:52:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0901-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:03.205713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0902-V1.0","title":"RORSI_2703_2015_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T21:16:50.000 to 2015-07-17T02:59:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0902-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:04.201859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0903-V1.0","title":"RORSI_2704_2015_198_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-17T10:03:05.000 to 2015-07-17T16:02:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0903-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:05.209002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0904-V1.0","title":"RORSI_2705_2015_198_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-17T16:23:20.000 to 2015-07-17T17:36:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0904-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:06.212754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0905-V1.0","title":"RORSI_2706_2015_199_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-18T21:18:10.000 to 2015-07-19T02:54:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0905-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:07.256654","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0906-V1.0","title":"RORSI_2707_2015_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-19T10:43:20.000 to 2015-07-19T11:44:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0906-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:08.270259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0907-V1.0","title":"RORSI_2708_2015_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-19T21:18:55.000 to 2015-07-20T03:29:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0907-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:09.217057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0908-V1.0","title":"RORSI_2709_2015_201_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-20T10:42:40.000 to 2015-07-20T17:34:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0908-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:10.217203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0909-V1.0","title":"RORSI_2710_2015_202_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T07:28:05.000 to 2015-07-21T09:41:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0909-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:11.222698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0910-V1.0","title":"RORSI_2711_2015_202_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T09:58:50.000 to 2015-07-21T12:54:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0910-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:12.223880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0911-V1.0","title":"RORSI_2712_2015_202_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T15:03:05.000 to 2015-07-21T17:33:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0911-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:13.226828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0912-V1.0","title":"RORSI_2713_2015_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-22T15:03:05.000 to 2015-07-22T17:32:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0912-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:14.231937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0913-V1.0","title":"RORSI_2714_2015_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-22T21:21:00.000 to 2015-07-23T03:39:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0913-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:15.234205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0914-V1.0","title":"RORSI_2715_2015_204_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-23T10:00:30.000 to 2015-07-23T11:54:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0914-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:16.229662","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0915-V1.0","title":"RORSI_2716_2015_204_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-23T16:03:05.000 to 2015-07-23T17:30:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0915-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:17.240397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0916-V1.0","title":"RORSI_2717_2015_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T13:23:05.000 to 2015-07-24T14:53:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0916-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:18.274474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0917-V1.0","title":"RORSI_2718_2015_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T15:59:30.000 to 2015-07-24T17:31:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0917-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:19.318748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0918-V1.0","title":"RORSI_2719_2015_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T21:22:20.000 to 2015-07-25T04:37:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0918-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:20.333415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0919-V1.0","title":"RORSI_2720_2015_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-25T15:57:30.000 to 2015-07-25T17:35:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0919-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:21.238352","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0920-V1.0","title":"RORSI_2721_2015_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-25T21:22:55.000 to 2015-07-26T04:40:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0920-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:22.249585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0921-V1.0","title":"RORSI_2722_2015_207_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-26T10:17:05.000 to 2015-07-26T14:10:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0921-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:23.253029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0922-V1.0","title":"RORSI_2723_2015_208_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T03:06:45.000 to 2015-07-27T10:23:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0922-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:24.252555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0923-V1.0","title":"RORSI_2724_2015_208_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T10:40:15.000 to 2015-07-27T17:29:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0923-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:25.249457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0924-V1.0","title":"RORSI_2725_2015_208_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T21:24:15.000 to 2015-07-28T05:24:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0924-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:26.254831","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0925-V1.0","title":"RORSI_2726_2015_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-28T10:40:10.000 to 2015-07-28T17:29:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0925-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:27.254530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0926-V1.0","title":"RORSI_2727_2015_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-28T21:24:50.000 to 2015-07-29T00:24:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0926-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:28.261986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0927-V1.0","title":"RORSI_2728_2015_210_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-29T10:40:15.000 to 2015-07-29T17:28:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0927-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:29.279582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0928-V1.0","title":"RORSI_2729_2015_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T03:05:45.000 to 2015-07-30T10:23:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0928-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:30.330950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0929-V1.0","title":"RORSI_2730_2015_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T10:40:20.000 to 2015-07-30T17:28:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0929-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:31.341986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0930-V1.0","title":"RORSI_2731_2015_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T21:26:00.000 to 2015-07-31T05:23:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0930-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:32.274446","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0931-V1.0","title":"RORSI_2732_2015_212_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-31T10:40:20.000 to 2015-07-31T17:00:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0931-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:33.267395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0932-V1.0","title":"RORSI_2733_2015_212_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-31T21:40:40.000 to 2015-08-01T04:37:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0932-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:34.275751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0933-V1.0","title":"RORSI_2734_2015_213_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-01T10:40:25.000 to 2015-08-01T17:27:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0933-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:35.274431","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0934-V1.0","title":"RORSI_2735_2015_214_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T03:05:00.000 to 2015-08-02T09:50:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0934-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:36.286316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0935-V1.0","title":"RORSI_2736_2015_214_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T10:07:45.000 to 2015-08-02T17:27:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0935-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:37.279799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0936-V1.0","title":"RORSI_2737_2015_214_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T21:27:40.000 to 2015-08-03T05:23:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0936-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:38.286731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0937-V1.0","title":"RORSI_2738_2015_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T10:08:20.000 to 2015-08-03T13:33:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0937-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:39.284472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0938-V1.0","title":"RORSI_2739_2015_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T14:38:45.000 to 2015-08-03T15:58:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0938-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:40.289017","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0939-V1.0","title":"RORSI_2740_2015_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T16:20:45.000 to 2015-08-03T17:27:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0939-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:41.344456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0940-V1.0","title":"RORSI_2741_2015_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T21:28:10.000 to 2015-08-04T05:22:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0940-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:42.353479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0941-V1.0","title":"RORSI_2742_2015_216_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-04T10:08:55.000 to 2015-08-04T17:27:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0941-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:43.300974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0942-V1.0","title":"RORSI_2743_2015_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T03:04:30.000 to 2015-08-05T04:37:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0942-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:44.302935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0943-V1.0","title":"RORSI_2744_2015_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T04:58:45.000 to 2015-08-05T09:52:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0943-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:45.300138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0944-V1.0","title":"RORSI_2745_2015_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T10:09:25.000 to 2015-08-05T17:26:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0944-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:46.304842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0945-V1.0","title":"RORSI_2746_2015_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T21:29:05.000 to 2015-08-06T05:22:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0945-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:47.312632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0946-V1.0","title":"RORSI_2747_2015_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-06T10:10:00.000 to 2015-08-06T17:26:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0946-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:48.304331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0947-V1.0","title":"RORSI_2748_2015_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-06T21:29:30.000 to 2015-08-07T05:22:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0947-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:49.306658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0948-V1.0","title":"RORSI_2749_2015_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-07T10:10:25.000 to 2015-08-07T17:26:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0948-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:50.319248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0949-V1.0","title":"RORSI_2750_2015_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T03:33:40.000 to 2015-08-08T04:38:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0949-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:51.320014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0950-V1.0","title":"RORSI_2751_2015_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T05:00:20.000 to 2015-08-08T15:52:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0950-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:52.350555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0951-V1.0","title":"RORSI_2752_2015_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T21:30:20.000 to 2015-08-09T05:22:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0951-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:53.401107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0952-V1.0","title":"RORSI_2753_2015_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-09T10:11:20.000 to 2015-08-09T17:26:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0952-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:54.409907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0953-V1.0","title":"RORSI_2754_2015_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-09T21:30:40.000 to 2015-08-10T05:22:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0953-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:55.322804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0954-V1.0","title":"RORSI_2755_2015_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-10T10:11:40.000 to 2015-08-10T17:26:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0954-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:56.322524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0955-V1.0","title":"RORSI_2756_2015_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-11T03:04:05.000 to 2015-08-11T15:53:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0955-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:57.326126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0956-V1.0","title":"RORSI_2757_2015_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-11T21:31:15.000 to 2015-08-12T00:17:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0956-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:58.331206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0957-V1.0","title":"RORSI_2758_2015_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-12T10:12:20.000 to 2015-08-12T17:26:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0957-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:55:59.332171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0958-V1.0","title":"RORSI_2759_2015_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-12T21:31:30.000 to 2015-08-13T05:22:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0958-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:00.334914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0959-V1.0","title":"RORSI_2760_2015_225_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-13T10:12:40.000 to 2015-08-13T17:26:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0959-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:01.334590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0960-V1.0","title":"RORSI_2761_2015_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T03:04:05.000 to 2015-08-14T09:55:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0960-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:02.338341","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0961-V1.0","title":"RORSI_2762_2015_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T10:12:50.000 to 2015-08-14T17:28:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0961-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:03.356099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0962-V1.0","title":"RORSI_2763_2015_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T21:31:55.000 to 2015-08-15T04:37:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0962-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:04.403947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0963-V1.0","title":"RORSI_2764_2015_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-15T10:13:05.000 to 2015-08-15T15:29:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0963-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:05.420029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0964-V1.0","title":"RORSI_2765_2015_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-15T21:32:05.000 to 2015-08-16T05:22:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0964-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:06.350783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0965-V1.0","title":"RORSI_2766_2015_228_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-16T10:47:10.000 to 2015-08-16T17:26:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0965-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:07.350443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0966-V1.0","title":"RORSI_2767_2015_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T03:04:20.000 to 2015-08-17T09:56:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0966-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:08.351081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0967-V1.0","title":"RORSI_2768_2015_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T10:13:20.000 to 2015-08-17T17:26:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0967-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:09.352312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0968-V1.0","title":"RORSI_2769_2015_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T21:32:20.000 to 2015-08-18T03:40:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0968-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:10.351892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0969-V1.0","title":"RORSI_2770_2015_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-18T10:13:25.000 to 2015-08-18T17:26:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0969-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:11.355403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0970-V1.0","title":"RORSI_2771_2015_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-18T21:32:25.000 to 2015-08-19T00:17:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0970-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:12.363785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0971-V1.0","title":"RORSI_2772_2015_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-19T10:13:25.000 to 2015-08-19T17:26:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0971-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:13.363691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0972-V1.0","title":"RORSI_2773_2015_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T03:04:35.000 to 2015-08-20T09:56:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0972-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:14.370769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0973-V1.0","title":"RORSI_2774_2015_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T10:13:25.000 to 2015-08-20T14:42:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0973-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:15.414757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0974-V1.0","title":"RORSI_2775_2015_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T15:27:50.000 to 2015-08-20T17:26:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0974-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:16.432635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0975-V1.0","title":"RORSI_2776_2015_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T21:32:25.000 to 2015-08-21T05:23:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0975-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:17.371251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0976-V1.0","title":"RORSI_2777_2015_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T10:13:20.000 to 2015-08-21T15:59:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0976-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:18.374751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0977-V1.0","title":"RORSI_2778_2015_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T16:21:50.000 to 2015-08-21T17:26:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0977-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:19.375650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0978-V1.0","title":"RORSI_2779_2015_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T21:32:20.000 to 2015-08-22T04:37:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0978-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:20.376907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0979-V1.0","title":"RORSI_2780_2015_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-22T10:13:15.000 to 2015-08-22T17:27:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0979-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:21.376805","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0980-V1.0","title":"RORSI_2781_2015_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-23T03:05:00.000 to 2015-08-23T09:56:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0980-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:22.379099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0981-V1.0","title":"RORSI_2782_2015_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-23T10:13:05.000 to 2015-08-23T17:27:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0981-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:23.383102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0982-V1.0","title":"RORSI_2783_2015_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-24T03:05:10.000 to 2015-08-24T09:55:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0982-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:24.388362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0983-V1.0","title":"RORSI_2784_2015_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-24T10:12:55.000 to 2015-08-24T17:27:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0983-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:25.384022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0984-V1.0","title":"RORSI_2785_2015_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-25T03:05:20.000 to 2015-08-25T09:55:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0984-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:26.426330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0985-V1.0","title":"RORSI_2786_2015_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-25T10:12:40.000 to 2015-08-25T16:41:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0985-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:27.476743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0986-V1.0","title":"RORSI_2787_2015_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-26T03:05:30.000 to 2015-08-26T09:55:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0986-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:28.491866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0987-V1.0","title":"RORSI_2788_2015_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-26T10:12:25.000 to 2015-08-26T17:27:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0987-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:29.402981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0988-V1.0","title":"RORSI_2789_2015_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-27T03:05:35.000 to 2015-08-27T09:55:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0988-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:30.401088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0989-V1.0","title":"RORSI_2790_2015_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-27T10:12:05.000 to 2015-08-27T17:28:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0989-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:31.408305","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0990-V1.0","title":"RORSI_2791_2015_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-28T03:05:45.000 to 2015-08-28T09:54:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0990-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:32.413769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0991-V1.0","title":"RORSI_2792_2015_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-28T10:11:45.000 to 2015-08-28T17:28:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0991-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:33.531312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0992-V1.0","title":"RORSI_2793_2015_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T03:05:55.000 to 2015-08-29T05:45:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0992-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:34.415437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0993-V1.0","title":"RORSI_2794_2015_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T06:06:50.000 to 2015-08-29T09:54:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0993-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:35.417601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0994-V1.0","title":"RORSI_2795_2015_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T10:11:20.000 to 2015-08-29T17:28:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0994-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:36.419257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0995-V1.0","title":"RORSI_2796_2015_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T21:30:30.000 to 2015-08-30T01:24:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0995-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:37.437356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0996-V1.0","title":"RORSI_2797_2015_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T10:10:55.000 to 2015-08-30T10:59:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0996-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:38.484642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0997-V1.0","title":"RORSI_2798_2015_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T11:21:50.000 to 2015-08-30T17:28:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0997-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:39.501543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0998-V1.0","title":"RORSI_2799_2015_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T01:45:50.000 to 2015-08-30T05:24:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0998-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:40.430846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-0999-V1.0","title":"RORSI_2800_2015_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T21:30:05.000 to 2015-08-31T03:32:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0999-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:41.433779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1000-V1.0","title":"RORSI_2801_2015_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T03:53:50.000 to 2015-08-31T05:24:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1000-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:42.432382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1001-V1.0","title":"RORSI_2802_2015_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T10:10:25.000 to 2015-08-31T11:51:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1001-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:43.432148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1002-V1.0","title":"RORSI_2803_2015_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T14:33:50.000 to 2015-08-31T16:51:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1002-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:44.435361","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1003-V1.0","title":"RORSI_2804_2015_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-01T03:06:25.000 to 2015-09-01T09:52:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:45.439653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1004-V1.0","title":"RORSI_2805_2015_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-01T10:09:50.000 to 2015-09-01T17:29:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:46.444232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1005-V1.0","title":"RORSI_2806_2015_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T03:06:35.000 to 2015-09-02T04:37:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:47.442723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1006-V1.0","title":"RORSI_2807_2015_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T04:58:50.000 to 2015-09-02T09:52:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:48.444271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1007-V1.0","title":"RORSI_2808_2015_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T10:09:15.000 to 2015-09-02T17:29:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:49.496895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1008-V1.0","title":"RORSI_2809_2015_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T21:28:40.000 to 2015-09-03T05:25:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:50.509852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1009-V1.0","title":"RORSI_2810_2015_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-03T10:08:40.000 to 2015-09-03T17:29:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:51.451251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1011-V1.0","title":"RORSI_2811_2015_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T03:06:50.000 to 2015-09-04T09:51:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:52.450979","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1012-V1.0","title":"RORSI_2812_2015_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T10:08:00.000 to 2015-09-04T14:51:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:53.462873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1013-V1.0","title":"RORSI_2813_2015_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T15:12:50.000 to 2015-09-04T17:27:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:54.460687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1014-V1.0","title":"RORSI_2814_2015_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T21:27:30.000 to 2015-09-05T00:17:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:55.457249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1015-V1.0","title":"RORSI_2815_2015_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-05T10:07:15.000 to 2015-09-05T17:30:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:56.466164","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1016-V1.0","title":"RORSI_2816_2015_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-05T21:26:55.000 to 2015-09-06T04:55:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:57.466303","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1017-V1.0","title":"RORSI_2817_2015_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-06T10:06:30.000 to 2015-09-06T17:30:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:58.467679","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1018-V1.0","title":"RORSI_2818_2015_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-07T03:07:15.000 to 2015-09-07T15:48:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:56:59.469016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1019-V1.0","title":"RORSI_2819_2015_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-07T21:25:30.000 to 2015-09-08T05:25:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:00.504028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1020-V1.0","title":"RORSI_2820_2015_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-08T10:04:55.000 to 2015-09-08T17:30:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:01.552785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1021-V1.0","title":"RORSI_2821_2015_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-08T21:24:45.000 to 2015-09-09T00:17:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:02.568527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1022-V1.0","title":"RORSI_2822_2015_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-09T10:04:00.000 to 2015-09-09T17:31:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:03.480923","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1023-V1.0","title":"RORSI_2823_2015_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-10T03:07:35.000 to 2015-09-10T15:46:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:04.482239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1024-V1.0","title":"RORSI_2824_2015_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-10T21:23:10.000 to 2015-09-11T05:26:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:05.481477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1025-V1.0","title":"RORSI_2825_2015_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T10:02:10.000 to 2015-09-11T17:31:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:06.487963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1026-V1.0","title":"RORSI_2826_2015_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T16:31:41.000 to 2015-09-11T17:31:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:07.488046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1027-V1.0","title":"RORSI_2827_2015_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T21:22:20.000 to 2015-09-12T04:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:08.490193","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1028-V1.0","title":"RORSI_2828_2015_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-12T10:01:10.000 to 2015-09-12T17:31:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:09.494327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1029-V1.0","title":"RORSI_2829_2015_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T03:07:50.000 to 2015-09-13T09:43:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:10.489190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1030-V1.0","title":"RORSI_2830_2015_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T10:00:05.000 to 2015-09-13T17:31:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:11.513204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1031-V1.0","title":"RORSI_2831_2015_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T21:20:30.000 to 2015-09-14T05:26:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:12.564247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1032-V1.0","title":"RORSI_2832_2015_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-14T09:59:05.000 to 2015-09-14T17:29:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:13.580092","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1033-V1.0","title":"RORSI_2833_2015_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-14T21:19:30.000 to 2015-09-15T05:26:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:14.506592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1034-V1.0","title":"RORSI_2834_2015_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-15T09:57:55.000 to 2015-09-15T17:27:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:15.502035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1035-V1.0","title":"RORSI_2835_2015_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-15T21:18:30.000 to 2015-09-16T00:17:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:16.509323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1036-V1.0","title":"RORSI_2836_2015_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T07:37:10.000 to 2015-09-16T13:58:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1036-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:17.509270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1037-V1.0","title":"RORSI_2837_2015_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T14:42:05.000 to 2015-09-16T17:32:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1037-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:18.513286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1038-V1.0","title":"RORSI_2838_2015_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T21:17:30.000 to 2015-09-17T05:26:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1038-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:19.512405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1039-V1.0","title":"RORSI_2839_2015_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-17T09:41:30.000 to 2015-09-17T15:39:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1039-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:20.513128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1040-V1.0","title":"RORSI_2840_2015_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-17T21:16:25.000 to 2015-09-18T05:26:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1040-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:21.519963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1041-V1.0","title":"RORSI_2841_2015_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-18T09:54:25.000 to 2015-09-18T17:32:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1041-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:22.526073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1042-V1.0","title":"RORSI_2842_2015_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T04:58:45.000 to 2015-09-19T10:02:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1042-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:23.574629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1043-V1.0","title":"RORSI_2843_2015_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T10:19:40.000 to 2015-09-19T17:32:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1043-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:24.589798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1044-V1.0","title":"RORSI_2844_2015_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T21:14:10.000 to 2015-09-20T05:26:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1044-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:25.526078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1045-V1.0","title":"RORSI_2845_2015_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-20T10:19:10.000 to 2015-09-20T17:32:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1045-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:26.529723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1046-V1.0","title":"RORSI_2864_2015_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T09:40:20.000 to 2015-09-28T15:10:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1046-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:27.533276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1047-V1.0","title":"RORSI_2847_2015_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-21T09:50:30.000 to 2015-09-21T17:32:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1047-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:28.533099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1048-V1.0","title":"RORSI_2848_2015_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-22T03:07:35.000 to 2015-09-22T09:32:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1048-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:29.543736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1049-V1.0","title":"RORSI_2849_2015_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-22T09:49:10.000 to 2015-09-22T17:32:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1049-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:30.536476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1050-V1.0","title":"RORSI_2850_2015_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T04:58:40.000 to 2015-09-23T09:30:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1050-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:31.549084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1051-V1.0","title":"RORSI_2851_2015_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T09:47:45.000 to 2015-09-23T17:32:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1051-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:32.544730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1052-V1.0","title":"RORSI_2852_2015_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T22:02:05.000 to 2015-09-23T23:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1052-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:33.544380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1053-V1.0","title":"RORSI_2853_2015_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T03:07:20.000 to 2015-09-24T09:30:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1053-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:34.578479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1054-V1.0","title":"RORSI_2854_2015_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T09:47:05.000 to 2015-09-24T17:32:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1054-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:35.632208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1055-V1.0","title":"RORSI_2855_2015_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T22:17:05.000 to 2015-09-24T23:45:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1055-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:36.645347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1056-V1.0","title":"RORSI_2856_2015_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-25T03:07:15.000 to 2015-09-25T09:27:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1056-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:37.558683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1057-V1.0","title":"RORSI_2857_2015_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-25T09:44:50.000 to 2015-09-25T17:32:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1057-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:38.560401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1058-V1.0","title":"RORSI_2858_2015_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T03:07:05.000 to 2015-09-26T09:27:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1058-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:39.563317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1059-V1.0","title":"RORSI_2859_2015_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T09:44:15.000 to 2015-09-26T17:32:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1059-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:40.560507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1060-V1.0","title":"RORSI_2860_2015_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T21:05:10.000 to 2015-09-27T05:25:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1060-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:41.573133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1061-V1.0","title":"RORSI_2861_2015_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-27T06:38:10.000 to 2015-09-27T09:07:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1061-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:42.567180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1062-V1.0","title":"RORSI_2862_2015_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-27T09:41:50.000 to 2015-09-27T17:32:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1062-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:43.571477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1063-V1.0","title":"RORSI_2863_2015_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T03:06:40.000 to 2015-09-28T09:23:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1063-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:44.572946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1064-V1.0","title":"RORSI_2846_2015_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-21T03:07:45.000 to 2015-09-21T09:33:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1064-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:45.589853","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1065-V1.0","title":"RORSI_2865_2015_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T21:02:20.000 to 2015-09-29T05:24:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1065-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:46.643059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1066-V1.0","title":"RORSI_2866_2015_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-29T10:16:35.000 to 2015-09-29T17:30:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1066-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:47.657332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1067-V1.0","title":"RORSI_2867_2015_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-29T21:00:55.000 to 2015-09-30T00:17:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1067-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:48.584581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1068-V1.0","title":"RORSI_2868_2015_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-30T05:41:10.000 to 2015-09-30T07:04:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1068-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:49.573203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1069-V1.0","title":"RORSI_2869_2015_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-30T10:16:30.000 to 2015-09-30T17:29:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1069-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:50.585815","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1070-V1.0","title":"RORSI_2870_2015_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T03:05:50.000 to 2015-10-01T09:59:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1070-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:51.586128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1071-V1.0","title":"RORSI_2871_2015_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T10:16:25.000 to 2015-10-01T17:31:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1071-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:52.587888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1072-V1.0","title":"RORSI_2872_2015_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T20:57:55.000 to 2015-10-02T02:14:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1072-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:53.588051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1073-V1.0","title":"RORSI_2873_2015_275_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-02T10:16:25.000 to 2015-10-02T17:31:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1073-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:54.587376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1074-V1.0","title":"RORSI_2874_2015_275_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-02T21:13:05.000 to 2015-10-03T00:17:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1074-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:55.590310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1075-V1.0","title":"RORSI_2875_2015_276_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-03T10:16:25.000 to 2015-10-03T17:31:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1075-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:56.603022","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1076-V1.0","title":"RORSI_2876_2015_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T03:04:55.000 to 2015-10-04T09:59:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1076-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:57.649105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1077-V1.0","title":"RORSI_2877_2015_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T10:16:25.000 to 2015-10-04T17:31:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1077-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:58.666635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1078-V1.0","title":"RORSI_2878_2015_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T20:53:10.000 to 2015-10-05T05:22:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1078-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:57:59.600037","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1079-V1.0","title":"RORSI_2879_2015_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T05:39:25.000 to 2015-10-05T09:04:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1079-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:00.601701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1080-V1.0","title":"RORSI_2880_2015_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T10:16:25.000 to 2015-10-05T17:30:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1080-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:01.597716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1081-V1.0","title":"RORSI_2881_2015_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T21:05:30.000 to 2015-10-06T05:22:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1081-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:02.606551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1082-V1.0","title":"RORSI_2882_2015_279_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-06T10:16:30.000 to 2015-10-06T17:30:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1082-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:03.604762","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1083-V1.0","title":"RORSI_2883_2015_279_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-06T21:17:05.000 to 2015-10-06T23:49:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1083-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:04.607302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1084-V1.0","title":"RORSI_2884_2015_280_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T04:58:35.000 to 2015-10-07T09:59:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1084-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:05.613372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1085-V1.0","title":"RORSI_2885_2015_280_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T10:16:35.000 to 2015-10-07T17:30:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1085-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:06.611627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1086-V1.0","title":"RORSI_2886_2015_280_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T20:48:10.000 to 2015-10-08T05:21:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1086-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:07.617070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1087-V1.0","title":"RORSI_2887_2015_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T10:16:40.000 to 2015-10-08T14:03:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1087-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:08.666619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1088-V1.0","title":"RORSI_2888_2015_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T14:25:35.000 to 2015-10-08T17:29:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1088-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:09.712335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1089-V1.0","title":"RORSI_2889_2015_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T20:46:30.000 to 2015-10-09T01:17:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1089-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:10.625243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1091-V1.0","title":"RORSI_2890_2015_282_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-09T20:44:45.000 to 2015-10-10T02:54:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1091-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:11.624826","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1092-V1.0","title":"RORSI_2891_2015_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-10T03:11:10.000 to 2015-10-10T07:05:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1092-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:12.626500","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1093-V1.0","title":"RORSI_2892_2015_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-10T20:43:00.000 to 2015-10-11T03:57:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1093-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:13.632535","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1094-V1.0","title":"RORSI_2893_2015_284_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-11T10:17:05.000 to 2015-10-11T17:28:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1094-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:14.738842","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1095-V1.0","title":"RORSI_2894_2015_284_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-11T20:41:10.000 to 2015-10-11T23:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1095-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:15.634310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1096-V1.0","title":"RORSI_2895_2015_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-12T03:02:05.000 to 2015-10-12T06:55:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1096-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:16.643200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1097-V1.0","title":"RORSI_2896_2015_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-12T10:17:15.000 to 2015-10-12T17:27:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1097-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:17.638881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1098-V1.0","title":"RORSI_2897_2015_286_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-13T10:17:25.000 to 2015-10-13T17:27:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1098-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:18.638206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1099-V1.0","title":"RORSI_2898_2015_286_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-13T20:37:35.000 to 2015-10-13T23:45:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1099-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:19.676074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1100-V1.0","title":"RORSI_2899_2015_287_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-14T10:17:45.000 to 2015-10-14T17:26:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1100-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:20.723262","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1101-V1.0","title":"RORSI_2900_2015_287_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-14T20:35:40.000 to 2015-10-14T23:45:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1101-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:21.736194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1102-V1.0","title":"RORSI_2901_2015_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-15T10:18:00.000 to 2015-10-15T17:26:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1102-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:22.646761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1103-V1.0","title":"RORSI_2902_2015_289_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T03:42:05.000 to 2015-10-16T10:23:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1103-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:23.650349","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1104-V1.0","title":"RORSI_2903_2015_289_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T10:18:20.000 to 2015-10-16T17:25:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1104-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:24.651072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1105-V1.0","title":"RORSI_2904_2015_289_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T20:31:55.000 to 2015-10-16T23:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1105-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:25.647711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1106-V1.0","title":"RORSI_2905_2015_290_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-17T04:58:30.000 to 2015-10-17T10:01:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1106-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:26.658611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1107-V1.0","title":"RORSI_2906_2015_290_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-17T10:18:40.000 to 2015-10-17T17:24:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1107-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:27.658822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1108-V1.0","title":"RORSI_2907_2015_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T02:05:55.000 to 2015-10-18T04:27:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1108-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:28.659217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1109-V1.0","title":"RORSI_2908_2015_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T05:31:30.000 to 2015-10-18T07:00:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1109-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:29.664612","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1110-V1.0","title":"RORSI_2909_2015_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T10:25:30.000 to 2015-10-18T17:24:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1110-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:30.683538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1111-V1.0","title":"RORSI_2910_2015_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T20:28:00.000 to 2015-10-18T23:45:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1111-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:31.730300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1112-V1.0","title":"RORSI_2911_2015_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T02:56:30.000 to 2015-10-19T03:49:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1112-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:32.746605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1113-V1.0","title":"RORSI_2912_2015_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T04:10:30.000 to 2015-10-19T07:10:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1113-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:33.670750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1114-V1.0","title":"RORSI_2913_2015_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T10:56:30.000 to 2015-10-19T17:23:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1114-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:34.667752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1115-V1.0","title":"RORSI_2914_2015_293_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-20T10:19:55.000 to 2015-10-20T17:22:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1115-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:35.676636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1116-V1.0","title":"RORSI_2915_2015_293_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-20T20:24:05.000 to 2015-10-20T23:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1116-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:36.671649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1117-V1.0","title":"RORSI_2916_2015_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T05:12:30.000 to 2015-10-21T07:10:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1117-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:37.682993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1118-V1.0","title":"RORSI_2917_2015_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T10:20:25.000 to 2015-10-21T17:22:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1118-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:38.672026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC3-1119-V1.0","title":"RORSI_2918_2015_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T20:22:05.000 to 2015-10-21T23:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1119-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:39.685054","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1120-V1.0","title":"RORSI_2919_2015_295_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-22T10:21:00.000 to 2015-10-22T17:21:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1120-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:40.683039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1121-V1.0","title":"RORSI_2920_2015_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T08:02:05.000 to 2015-10-23T10:04:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1121-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:41.692012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1122-V1.0","title":"RORSI_2921_2015_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T10:21:35.000 to 2015-10-23T14:06:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1122-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:42.738021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1123-V1.0","title":"RORSI_2922_2015_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T14:27:30.000 to 2015-10-23T17:20:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1123-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:43.757094","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1124-V1.0","title":"RORSI_2923_2015_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T20:53:30.000 to 2015-10-23T23:45:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1124-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:44.695588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1125-V1.0","title":"RORSI_2924_2015_297_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-24T10:22:10.000 to 2015-10-24T17:19:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1125-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:45.695545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1126-V1.0","title":"RORSI_2925_2015_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T01:56:20.000 to 2015-10-25T05:08:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1126-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:46.700346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1127-V1.0","title":"RORSI_2926_2015_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T05:25:15.000 to 2015-10-25T07:15:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1127-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:47.701249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1128-V1.0","title":"RORSI_2927_2015_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T10:22:50.000 to 2015-10-25T17:18:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1128-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:48.702599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1129-V1.0","title":"RORSI_2928_2015_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T20:13:45.000 to 2015-10-26T05:07:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1129-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:49.701739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1130-V1.0","title":"RORSI_2929_2015_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T05:24:15.000 to 2015-10-26T07:30:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1130-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:50.703953","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1131-V1.0","title":"RORSI_2930_2015_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T11:15:30.000 to 2015-10-26T17:18:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1131-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:51.707297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1132-V1.0","title":"RORSI_2931_2015_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T20:11:40.000 to 2015-10-27T05:06:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1132-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:52.709962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1133-V1.0","title":"RORSI_2932_2015_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T10:24:15.000 to 2015-10-27T14:11:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1133-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:53.750957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1134-V1.0","title":"RORSI_2933_2015_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T14:32:35.000 to 2015-10-27T17:17:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1134-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:54.798782","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1135-V1.0","title":"RORSI_2934_2015_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T20:10:35.000 to 2015-10-27T21:58:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1135-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:55.717027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1136-V1.0","title":"RORSI_2935_2015_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T22:20:35.000 to 2015-10-28T00:17:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1136-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:56.718171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1137-V1.0","title":"RORSI_2936_2015_301_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-28T10:24:55.000 to 2015-10-28T17:16:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1137-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:57.725813","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1138-V1.0","title":"RORSI_2937_2015_301_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-28T20:07:20.000 to 2015-10-29T05:04:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1138-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:58.723551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1139-V1.0","title":"RORSI_2938_2015_302_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T10:49:35.000 to 2015-10-29T17:15:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1139-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:58:59.725436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1140-V1.0","title":"RORSI_2939_2015_302_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T20:05:10.000 to 2015-10-29T22:35:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1140-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:00.724322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1141-V1.0","title":"RORSI_2940_2015_302_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T22:35:12.000 to 2015-10-30T01:16:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1141-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:01.730785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1142-V1.0","title":"RORSI_2941_2015_303_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-30T08:37:10.000 to 2015-10-30T14:05:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1142-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:02.728045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1143-V1.0","title":"RORSI_2942_2015_303_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-30T14:26:35.000 to 2015-10-30T17:14:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1143-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:03.735753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1144-V1.0","title":"RORSI_2943_2015_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T04:58:35.000 to 2015-10-31T08:21:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1144-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:04.759439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1145-V1.0","title":"RORSI_2944_2015_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T08:38:10.000 to 2015-10-31T17:12:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1145-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:05.812983","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1146-V1.0","title":"RORSI_2945_2015_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T20:00:45.000 to 2015-10-31T23:10:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1146-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:06.822050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1147-V1.0","title":"RORSI_2946_2015_305_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T00:25:46.000 to 2015-11-01T05:00:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1147-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:07.741576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1148-V1.0","title":"RORSI_2947_2015_305_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T08:32:30.000 to 2015-11-01T17:11:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1148-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:08.742898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1149-V1.0","title":"RORSI_2948_2015_305_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T19:58:35.000 to 2015-11-02T04:59:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1149-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:09.749943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1150-V1.0","title":"RORSI_2949_2015_306_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-02T08:34:35.000 to 2015-11-02T11:19:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1150-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:10.750250","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1151-V1.0","title":"RORSI_2950_2015_306_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-02T11:41:35.000 to 2015-11-02T17:10:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1151-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:11.751425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1152-V1.0","title":"RORSI_2951_2015_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-03T02:42:00.000 to 2015-11-03T10:05:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1152-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:12.753440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1153-V1.0","title":"RORSI_2952_2015_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-03T19:54:00.000 to 2015-11-03T23:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1153-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:13.754423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1154-V1.0","title":"RORSI_2953_2015_308_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-04T08:25:25.000 to 2015-11-04T17:08:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1154-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:14.759870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1155-V1.0","title":"RORSI_2954_2015_308_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-04T19:51:45.000 to 2015-11-05T04:55:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1155-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:15.772381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1156-V1.0","title":"RORSI_2955_2015_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T06:04:55.000 to 2015-11-05T08:06:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1156-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:16.819828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1157-V1.0","title":"RORSI_2956_2015_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T08:23:00.000 to 2015-11-05T13:00:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1157-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:17.833018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1159-V1.0","title":"RORSI_2957_2015_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T19:49:25.000 to 2015-11-06T03:08:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1159-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:18.766423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1160-V1.0","title":"RORSI_2958_2015_310_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-06T08:20:35.000 to 2015-11-06T15:26:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1160-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:19.767365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1161-V1.0","title":"RORSI_2959_2015_311_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T05:28:29.500 to 2015-11-07T12:29:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1161-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:20.769195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1162-V1.0","title":"RORSI_2960_2015_311_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T08:18:10.000 to 2015-11-07T12:29:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1162-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:21.771540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1163-V1.0","title":"RORSI_2961_2015_311_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T19:44:45.000 to 2015-11-08T02:20:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1163-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:22.775827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1164-V1.0","title":"RORSI_2962_2015_312_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-08T08:15:40.000 to 2015-11-08T17:03:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1164-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:23.775761","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1165-V1.0","title":"RORSI_2963_2015_312_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-08T19:42:25.000 to 2015-11-08T23:46:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1165-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:24.775306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1166-V1.0","title":"RORSI_2964_2015_313_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T03:25:35.000 to 2015-11-09T07:13:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1166-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:25.780915","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1167-V1.0","title":"RORSI_2965_2015_313_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T08:13:10.000 to 2015-11-09T11:03:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1167-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:26.783925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1168-V1.0","title":"RORSI_2966_2015_313_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T11:25:40.000 to 2015-11-09T17:02:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1168-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:27.827730","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1169-V1.0","title":"RORSI_2967_2015_314_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T02:33:00.000 to 2015-11-10T07:53:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1169-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:28.842530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1170-V1.0","title":"RORSI_2968_2015_314_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T08:10:45.000 to 2015-11-10T10:45:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1170-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:29.789177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1171-V1.0","title":"RORSI_2969_2015_314_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T21:37:40.000 to 2015-11-11T00:17:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1171-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:30.790206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1172-V1.0","title":"RORSI_2970_2015_315_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-11T04:58:40.000 to 2015-11-11T07:59:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1172-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:31.793631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1173-V1.0","title":"RORSI_2971_2015_315_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-11T08:16:45.000 to 2015-11-11T16:59:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1173-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:32.797481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1174-V1.0","title":"RORSI_2972_2015_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T02:30:10.000 to 2015-11-12T07:27:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1174-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:33.791910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1175-V1.0","title":"RORSI_2973_2015_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T07:48:40.000 to 2015-11-12T09:34:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1175-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:34.800042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1176-V1.0","title":"RORSI_2974_2015_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T09:51:25.000 to 2015-11-12T16:57:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1176-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:35.799501","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1177-V1.0","title":"RORSI_2975_2015_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T20:25:40.000 to 2015-11-13T01:00:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1177-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:36.804532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1178-V1.0","title":"RORSI_2976_2015_317_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-13T10:13:35.000 to 2015-11-13T14:50:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1178-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:37.807658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1179-V1.0","title":"RORSI_2977_2015_317_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-13T15:11:40.000 to 2015-11-13T16:56:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1179-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:38.838386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1180-V1.0","title":"RORSI_2978_2015_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-14T02:27:15.000 to 2015-11-14T07:25:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1180-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:39.889027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1181-V1.0","title":"RORSI_2979_2015_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-14T10:17:50.000 to 2015-11-14T16:54:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1181-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:40.903162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1182-V1.0","title":"RORSI_2980_2015_319_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T02:25:40.000 to 2015-11-15T07:16:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1182-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:41.818208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1183-V1.0","title":"RORSI_2981_2015_319_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T10:28:25.000 to 2015-11-15T16:53:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1183-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:42.820036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1184-V1.0","title":"RORSI_2982_2015_319_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T20:57:05.000 to 2015-11-16T02:10:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1184-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:43.819834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1185-V1.0","title":"RORSI_2983_2015_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-16T19:22:55.000 to 2015-11-17T04:37:31.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1185-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:44.822374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1188-V1.0","title":"RORSI_2984_2015_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-16T12:07:05.000 to 2015-11-16T16:51:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1188-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:45.830273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1189-V1.0","title":"RORSI_2985_2015_321_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-17T09:35:55.000 to 2015-11-17T16:50:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1189-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:46.823957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1190-V1.0","title":"RORSI_2986_2015_321_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-17T21:07:05.000 to 2015-11-18T04:35:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1190-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:47.828201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1191-V1.0","title":"RORSI_2987_2015_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T04:52:45.000 to 2015-11-18T08:09:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1191-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:48.830345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1192-V1.0","title":"RORSI_2988_2015_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T08:26:25.000 to 2015-11-18T15:13:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1192-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:49.851465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1193-V1.0","title":"RORSI_2989_2015_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T19:17:50.000 to 2015-11-19T04:34:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1193-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:50.906905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1194-V1.0","title":"RORSI_2990_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T07:54:40.000 to 2015-11-19T08:39:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1194-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:51.914584","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1195-V1.0","title":"RORSI_2993_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T19:15:15.000 to 2015-11-20T00:52:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1195-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:52.837798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1196-V1.0","title":"RORSI_2994_2015_324_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-20T07:45:00.000 to 2015-11-20T16:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1196-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:53.845011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1197-V1.0","title":"RORSI_2995_2015_325_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-21T07:42:20.000 to 2015-11-21T16:43:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1197-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:54.844743","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1198-V1.0","title":"RORSI_2996_2015_325_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-21T22:12:05.000 to 2015-11-22T04:28:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1198-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:56.631080","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1199-V1.0","title":"RORSI_2997_2015_326_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-22T07:44:00.000 to 2015-11-22T16:41:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1199-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:57.185424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1200-V1.0","title":"RORSI_2998_2015_326_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-22T19:07:30.000 to 2015-11-23T03:04:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1200-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:58.240014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1201-V1.0","title":"RORSI_3021_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T09:00:45.000 to 2015-11-19T14:02:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1201-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T03:59:59.250549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1202-V1.0","title":"RORSI_2991_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T14:23:45.000 to 2015-11-19T15:43:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1202-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:00.181014","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1203-V1.0","title":"RORSI_2992_2015_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T16:05:45.000 to 2015-11-19T16:46:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1203-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:01.190026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1204-V1.0","title":"RORSI_2999_2015_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T05:33:20.000 to 2015-11-23T07:02:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1204-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:02.182040","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1205-V1.0","title":"RORSI_3000_2015_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T08:16:50.000 to 2015-11-23T10:09:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1205-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:03.200863","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1206-V1.0","title":"RORSI_3001_2015_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T10:34:55.000 to 2015-11-23T13:05:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1206-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:04.191927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1207-V1.0","title":"RORSI_3002_2015_327_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T19:04:55.000 to 2015-11-24T02:25:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1207-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:05.194355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1208-V1.0","title":"RORSI_3003_2015_328_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-24T07:34:15.000 to 2015-11-24T16:38:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1208-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:06.206522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1209-V1.0","title":"RORSI_3004_2015_328_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-24T22:25:10.000 to 2015-11-25T00:17:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1209-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:07.199122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1210-V1.0","title":"RORSI_3005_2015_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T05:21:55.000 to 2015-11-25T10:31:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1210-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:08.196410","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1211-V1.0","title":"RORSI_3006_2015_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T10:48:15.000 to 2015-11-25T15:06:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1211-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:09.254502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1212-V1.0","title":"RORSI_3007_2015_329_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T18:59:35.000 to 2015-11-26T04:21:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1212-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:10.264564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1213-V1.0","title":"RORSI_3008_2015_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T05:33:50.000 to 2015-11-26T07:16:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1213-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:11.207173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1214-V1.0","title":"RORSI_3009_2015_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T07:33:00.000 to 2015-11-26T11:01:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1214-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:12.215545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1215-V1.0","title":"RORSI_3010_2015_330_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T11:18:25.000 to 2015-11-26T13:10:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1215-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:13.209833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1216-V1.0","title":"RORSI_3011_2015_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T00:10:35.000 to 2015-11-27T04:19:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1216-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:14.213587","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1217-V1.0","title":"RORSI_3012_2015_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T07:31:00.000 to 2015-11-27T15:04:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1217-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:15.215392","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1218-V1.0","title":"RORSI_3013_2015_331_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T18:54:15.000 to 2015-11-28T00:17:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1218-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:16.211783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1219-V1.0","title":"RORSI_3014_2015_332_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-28T07:23:15.000 to 2015-11-28T16:30:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1219-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:17.220986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1220-V1.0","title":"RORSI_3015_2015_332_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-28T18:51:35.000 to 2015-11-29T04:15:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1220-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:18.220306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1221-V1.0","title":"RORSI_3016_2015_333_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-29T06:25:35.000 to 2015-11-29T09:20:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1221-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:19.220629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1222-V1.0","title":"RORSI_3017_2015_333_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-29T18:48:50.000 to 2015-11-30T04:12:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1222-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:20.258355","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1223-V1.0","title":"RORSI_3018_2015_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T07:17:40.000 to 2015-11-30T12:56:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1223-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:21.309657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1224-V1.0","title":"RORSI_3019_2015_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T18:46:05.000 to 2015-11-30T19:24:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1224-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:22.321117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1225-V1.0","title":"RORSI_3020_2015_334_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T19:47:00.000 to 2015-12-01T04:10:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1225-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:23.229238","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1226-V1.0","title":"RORSI_3022_2015_335_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-01T08:09:55.000 to 2015-12-01T16:24:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1226-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:24.233968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1227-V1.0","title":"RORSI_3023_2015_335_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-01T22:02:05.000 to 2015-12-01T23:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1227-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:25.235870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1228-V1.0","title":"RORSI_3024_2015_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T04:59:05.000 to 2015-12-02T12:12:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1228-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:26.236127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1229-V1.0","title":"RORSI_3025_2015_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T12:29:05.000 to 2015-12-02T16:22:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1229-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:27.241031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1230-V1.0","title":"RORSI_3026_2015_336_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T18:40:35.000 to 2015-12-03T01:46:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1230-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:28.244794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1231-V1.0","title":"RORSI_3027_2015_337_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T02:37:05.000 to 2015-12-03T04:06:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1231-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:29.241719","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1232-V1.0","title":"RORSI_3028_2015_337_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T09:30:55.000 to 2015-12-03T16:20:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1232-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:30.245117","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1233-V1.0","title":"RORSI_3029_2015_337_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T18:37:45.000 to 2015-12-04T00:35:31.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1233-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:31.269974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1234-V1.0","title":"RORSI_3030_2015_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T01:50:40.000 to 2015-12-04T07:06:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:32.319031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1235-V1.0","title":"RORSI_3031_2015_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T09:57:10.000 to 2015-12-04T15:48:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1235-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:33.329520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1236-V1.0","title":"RORSI_3032_2015_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T18:35:00.000 to 2015-12-04T19:49:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1236-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:34.257661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1237-V1.0","title":"RORSI_3033_2015_338_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T22:03:05.000 to 2015-12-05T04:02:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1237-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:35.256627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1238-V1.0","title":"RORSI_3034_2015_339_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-05T18:32:10.000 to 2015-12-06T01:29:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1238-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:36.258152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1239-V1.0","title":"RORSI_3035_2015_340_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T01:46:15.000 to 2015-12-06T07:21:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1239-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:37.262965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1240-V1.0","title":"RORSI_3036_2015_340_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T10:14:30.000 to 2015-12-06T16:13:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1240-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:38.264767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1241-V1.0","title":"RORSI_3037_2015_340_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T18:29:20.000 to 2015-12-07T03:57:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1241-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:39.263161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1242-V1.0","title":"RORSI_3038_2015_341_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-07T18:26:30.000 to 2015-12-08T01:30:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1242-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:40.267673","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1243-V1.0","title":"RORSI_3039_2015_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T06:54:45.000 to 2015-12-08T11:37:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1243-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:41.270665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1244-V1.0","title":"RORSI_3040_2015_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T12:00:15.000 to 2015-12-08T16:08:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1244-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:42.279692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1245-V1.0","title":"RORSI_3041_2015_342_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T18:23:35.000 to 2015-12-09T00:11:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1245-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:43.326399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1246-V1.0","title":"RORSI_3042_2015_343_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-09T06:51:50.000 to 2015-12-09T09:00:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1246-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:44.339580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1247-V1.0","title":"RORSI_3043_2015_343_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-09T18:20:40.000 to 2015-12-09T22:57:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1247-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:45.275519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1248-V1.0","title":"RORSI_3044_2015_344_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-10T07:29:50.000 to 2015-12-10T16:04:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1248-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:46.284057","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1249-V1.0","title":"RORSI_3045_2015_344_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-10T18:17:45.000 to 2015-12-10T22:57:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1249-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:47.293832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1250-V1.0","title":"RORSI_3046_2015_345_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-11T08:06:35.000 to 2015-12-11T15:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1250-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:48.286706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1251-V1.0","title":"RORSI_3047_2015_345_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-11T18:14:50.000 to 2015-12-12T00:16:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1251-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:49.290083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1252-V1.0","title":"RORSI_3048_2015_346_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T08:47:15.000 to 2015-12-12T10:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1252-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:50.290373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1253-V1.0","title":"RORSI_3049_2015_346_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T13:27:05.000 to 2015-12-12T15:45:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1253-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:51.295074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1254-V1.0","title":"RORSI_3050_2015_346_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T18:11:55.000 to 2015-12-12T21:28:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1254-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:52.293105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1255-V1.0","title":"RORSI_3051_2015_347_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-13T09:54:35.000 to 2015-12-13T15:56:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1255-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:53.296049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1256-V1.0","title":"RORSI_3052_2015_347_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-13T18:08:55.000 to 2015-12-14T03:40:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1256-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:54.335819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1257-V1.0","title":"RORSI_3053_2015_348_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T10:13:00.000 to 2015-12-14T15:54:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1257-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:55.387477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1258-V1.0","title":"RORSI_3054_2015_348_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T18:05:55.000 to 2015-12-14T20:01:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1258-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:56.306986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1259-V1.0","title":"RORSI_3055_2015_348_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T21:22:25.000 to 2015-12-15T03:37:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1259-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:57.305364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1260-V1.0","title":"RORSI_3056_2015_349_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-15T10:11:00.000 to 2015-12-15T15:51:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1260-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:58.308076","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1261-V1.0","title":"RORSI_3057_2015_349_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-15T20:34:05.000 to 2015-12-16T00:16:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1261-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:00:59.307766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1262-V1.0","title":"RORSI_3058_2015_350_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-16T17:59:55.000 to 2015-12-17T03:32:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1262-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:00.312874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1263-V1.0","title":"RORSI_3059_2015_351_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-17T10:06:20.000 to 2015-12-17T15:46:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1263-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:01.312629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1264-V1.0","title":"RORSI_3060_2015_351_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-17T21:56:05.000 to 2015-12-18T03:29:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1264-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:02.317516","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1265-V1.0","title":"RORSI_3061_2015_352_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-18T10:07:20.000 to 2015-12-18T15:43:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1265-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:03.316849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1266-V1.0","title":"RORSI_3062_2015_352_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-18T17:53:45.000 to 2015-12-19T00:16:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1266-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:04.319424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1267-V1.0","title":"RORSI_3063_2015_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T04:59:35.000 to 2015-12-19T08:40:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1267-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:05.349279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1268-V1.0","title":"RORSI_3064_2015_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T09:41:05.000 to 2015-12-19T15:40:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1268-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:06.399398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1269-V1.0","title":"RORSI_3065_2015_353_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T17:50:40.000 to 2015-12-20T01:19:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1269-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:07.412426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1270-V1.0","title":"RORSI_3066_2015_354_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T01:36:25.000 to 2015-12-20T06:43:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1270-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:08.330872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1271-V1.0","title":"RORSI_3067_2015_354_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T07:00:25.000 to 2015-12-20T12:55:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1271-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:09.331264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1272-V1.0","title":"RORSI_3068_2015_354_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T17:47:35.000 to 2015-12-21T01:18:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1272-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:10.338169","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1273-V1.0","title":"RORSI_3069_2015_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T01:34:55.000 to 2015-12-21T09:46:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1273-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:11.340451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1274-V1.0","title":"RORSI_3070_2015_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T10:03:10.000 to 2015-12-21T14:12:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1274-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:12.340755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1275-V1.0","title":"RORSI_3071_2015_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T17:44:30.000 to 2015-12-21T20:31:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1275-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:13.341150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1276-V1.0","title":"RORSI_3072_2015_355_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T21:01:40.000 to 2015-12-22T00:50:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1276-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:14.341822","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1277-V1.0","title":"RORSI_3073_2015_356_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-22T09:11:10.000 to 2015-12-22T15:32:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1277-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:15.345878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1278-V1.0","title":"RORSI_3074_2015_356_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-22T17:41:20.000 to 2015-12-23T00:16:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1278-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:16.359526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1280-V1.0","title":"RORSI_3075_2015_358_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-24T08:28:45.000 to 2015-12-24T15:26:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1280-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:17.405545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1281-V1.0","title":"RORSI_3076_2015_358_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-24T17:35:00.000 to 2015-12-24T23:57:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1281-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:18.420478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1282-V1.0","title":"RORSI_3077_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T05:42:05.000 to 2015-12-25T07:32:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1282-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:19.349363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1283-V1.0","title":"RORSI_3078_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T07:49:40.000 to 2015-12-25T15:23:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1283-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:20.359146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1284-V1.0","title":"RORSI_3079_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T17:31:45.000 to 2015-12-25T19:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1284-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:21.363443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1285-V1.0","title":"RORSI_3080_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T19:23:50.000 to 2015-12-25T22:01:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1285-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:22.364655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1286-V1.0","title":"RORSI_3081_2015_359_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T22:25:50.000 to 2015-12-26T01:11:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1286-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:23.363678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1287-V1.0","title":"RORSI_3082_2015_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T01:28:00.000 to 2015-12-26T07:14:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1287-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:24.364497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1288-V1.0","title":"RORSI_3083_2015_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T07:31:35.000 to 2015-12-26T15:20:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1288-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:25.372223","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1289-V1.0","title":"RORSI_3084_2015_360_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T17:28:35.000 to 2015-12-27T00:40:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1289-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:26.369347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1290-V1.0","title":"RORSI_3085_2015_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T05:56:00.000 to 2015-12-27T08:27:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1290-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:27.369630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1291-V1.0","title":"RORSI_3086_2015_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T09:45:55.000 to 2015-12-27T15:17:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1291-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:28.416035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1292-V1.0","title":"RORSI_3087_2015_361_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T17:25:20.000 to 2015-12-28T00:35:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1292-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:29.467763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1293-V1.0","title":"RORSI_3088_2015_362_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-28T05:52:40.000 to 2015-12-28T15:14:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1293-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:30.380457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1294-V1.0","title":"RORSI_3089_2015_362_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-28T17:22:00.000 to 2015-12-29T01:01:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1294-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:31.385929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1295-V1.0","title":"RORSI_3090_2015_363_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-29T01:24:05.000 to 2015-12-29T04:12:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1295-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:32.384727","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1296-V1.0","title":"RORSI_3091_2015_363_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-29T22:09:40.000 to 2015-12-30T00:16:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1296-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:33.387038","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1297-V1.0","title":"RORSI_3092_2015_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T01:34:00.000 to 2015-12-30T04:36:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1297-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:34.387197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1298-V1.0","title":"RORSI_3093_2015_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T05:00:00.000 to 2015-12-30T07:19:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1298-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:35.388607","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1299-V1.0","title":"RORSI_3094_2015_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T07:36:40.000 to 2015-12-30T15:08:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1299-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:36.392555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1300-V1.0","title":"RORSI_3095_2015_364_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T17:15:25.000 to 2015-12-31T01:09:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1300-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:37.500274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1301-V1.0","title":"RORSI_3096_2015_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T01:38:40.000 to 2015-12-31T07:32:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1301-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:38.399551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1302-V1.0","title":"RORSI_3097_2015_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T07:49:50.000 to 2015-12-31T15:05:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1302-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:39.425944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-ESC4-1303-V1.0","title":"RORSI_3098_2015_365_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T20:29:55.000 to 2016-01-01T02:47:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1303-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:40.475633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1304-V1.0","title":"RORSI_3099_2016_001_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-01T08:12:15.000 to 2016-01-01T15:01:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1304-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:41.490639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1305-V1.0","title":"RORSI_3100_2016_001_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-01T21:36:45.000 to 2016-01-02T00:17:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1305-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:42.408116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1306-V1.0","title":"RORSI_3101_2016_002_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-02T05:00:05.000 to 2016-01-02T08:10:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1306-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:43.407236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1307-V1.0","title":"RORSI_3102_2016_002_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-02T19:23:15.000 to 2016-01-02T21:15:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1307-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:44.407748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1308-V1.0","title":"RORSI_3103_2016_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T02:58:10.000 to 2016-01-03T08:30:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1308-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:45.412404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1309-V1.0","title":"RORSI_3104_2016_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T08:47:45.000 to 2016-01-03T14:55:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1309-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:46.413640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1310-V1.0","title":"RORSI_3105_2016_003_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T17:01:55.000 to 2016-01-04T01:15:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1310-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:47.418754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1311-V1.0","title":"RORSI_3106_2016_004_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-04T01:32:35.000 to 2016-01-04T07:54:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1311-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:48.417524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1312-V1.0","title":"RORSI_3107_2016_004_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-04T08:29:10.000 to 2016-01-04T09:11:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1312-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:49.419148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1313-V1.0","title":"RORSI_3108_2016_005_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-05T05:32:05.000 to 2016-01-05T14:48:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1313-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:50.435852","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1314-V1.0","title":"RORSI_3109_2016_005_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-05T20:34:35.000 to 2016-01-05T23:45:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1314-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:51.481920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1315-V1.0","title":"RORSI_3110_2016_006_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T05:00:15.000 to 2016-01-06T09:37:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1315-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:52.496514","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1316-V1.0","title":"RORSI_3111_2016_006_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T11:07:05.000 to 2016-01-06T14:44:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1316-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:53.432963","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1317-V1.0","title":"RORSI_3112_2016_006_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T21:29:05.000 to 2016-01-06T23:58:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1317-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:54.428067","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1318-V1.0","title":"RORSI_3113_2016_007_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T00:15:15.000 to 2016-01-07T03:07:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1318-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:55.444411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1319-V1.0","title":"RORSI_3114_2016_007_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T08:01:40.000 to 2016-01-07T14:41:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1319-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:56.434701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1320-V1.0","title":"RORSI_3115_2016_007_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T22:35:20.000 to 2016-01-08T02:24:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1320-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:57.438418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1321-V1.0","title":"RORSI_3116_2016_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T02:41:00.000 to 2016-01-08T08:41:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1321-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:58.433862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1322-V1.0","title":"RORSI_3117_2016_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T08:58:40.000 to 2016-01-08T14:37:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1322-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:01:59.440641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1323-V1.0","title":"RORSI_3118_2016_008_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T19:15:10.000 to 2016-01-09T00:15:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1323-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:00.444234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1324-V1.0","title":"RORSI_3119_2016_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T05:00:20.000 to 2016-01-09T09:24:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1324-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:01.444386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1325-V1.0","title":"RORSI_3120_2016_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T09:41:50.000 to 2016-01-09T14:34:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1325-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:02.492908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1326-V1.0","title":"RORSI_3121_2016_009_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T20:13:35.000 to 2016-01-10T00:56:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1326-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:03.508445","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1327-V1.0","title":"RORSI_3122_2016_010_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-10T01:13:35.000 to 2016-01-10T09:25:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1327-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:04.444812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1328-V1.0","title":"RORSI_3123_2016_010_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-10T17:09:10.000 to 2016-01-11T00:51:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1328-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:05.456009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1329-V1.0","title":"RORSI_3124_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T01:08:15.000 to 2016-01-11T05:17:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1329-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:06.457060","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1330-V1.0","title":"RORSI_3125_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T05:34:30.000 to 2016-01-11T08:36:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1330-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:07.459427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1331-V1.0","title":"RORSI_3126_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T09:01:25.000 to 2016-01-11T11:16:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1331-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:08.460909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1332-V1.0","title":"RORSI_3127_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T11:43:25.000 to 2016-01-11T14:26:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1332-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:09.461116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1333-V1.0","title":"RORSI_3128_2016_011_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T17:05:00.000 to 2016-01-12T00:50:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1333-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:10.464908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1334-V1.0","title":"RORSI_3129_2016_012_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T01:07:20.000 to 2016-01-12T05:13:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1334-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:11.469345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1335-V1.0","title":"RORSI_3130_2016_012_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T05:30:15.000 to 2016-01-12T08:50:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1335-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:12.467353","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1336-V1.0","title":"RORSI_3131_2016_012_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T17:00:55.000 to 2016-01-13T00:15:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1336-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:13.503712","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1337-V1.0","title":"RORSI_3132_2016_013_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-13T05:26:05.000 to 2016-01-13T14:19:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1337-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:14.545460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1338-V1.0","title":"RORSI_3133_2016_013_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-13T16:56:55.000 to 2016-01-14T00:48:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1338-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:15.474720","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1340-V1.0","title":"RORSI_3134_2016_014_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T01:05:35.000 to 2016-01-14T05:05:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1340-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:16.479329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1341-V1.0","title":"RORSI_3135_2016_014_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T06:03:35.000 to 2016-01-14T09:15:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1341-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:17.479403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1342-V1.0","title":"RORSI_3136_2016_014_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T21:02:05.000 to 2016-01-15T00:47:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1342-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:18.485018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1343-V1.0","title":"RORSI_3137_2016_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T01:04:50.000 to 2016-01-15T05:01:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1343-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:19.483560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1344-V1.0","title":"RORSI_3138_2016_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T05:18:00.000 to 2016-01-15T14:11:50.999.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1344-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:20.485702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1345-V1.0","title":"RORSI_3139_2016_015_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T16:49:00.000 to 2016-01-16T00:15:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1345-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:21.489886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1346-V1.0","title":"RORSI_3140_2016_016_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-16T05:14:00.000 to 2016-01-16T14:07:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1346-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:22.492306","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1347-V1.0","title":"RORSI_3141_2016_016_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-16T23:29:50.000 to 2016-01-17T01:47:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1347-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:23.490139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1348-V1.0","title":"RORSI_3142_2016_017_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T02:07:05.000 to 2016-01-17T09:22:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1348-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:24.515558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1349-V1.0","title":"RORSI_3143_2016_017_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T09:39:50.000 to 2016-01-17T14:03:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1349-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:25.566678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1350-V1.0","title":"RORSI_3144_2016_017_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T19:34:20.000 to 2016-01-17T22:30:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1350-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:26.576557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1351-V1.0","title":"RORSI_3145_2016_018_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-18T01:03:05.000 to 2016-01-18T09:22:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1351-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:27.505674","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1352-V1.0","title":"RORSI_3146_2016_018_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-18T09:38:55.000 to 2016-01-18T13:59:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1352-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:28.505787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1353-V1.0","title":"RORSI_3147_2016_019_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T01:02:40.000 to 2016-01-19T09:20:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1353-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:29.506796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1354-V1.0","title":"RORSI_3148_2016_019_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T09:37:55.000 to 2016-01-19T13:55:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1354-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:30.504902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1355-V1.0","title":"RORSI_3149_2016_019_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T20:52:25.000 to 2016-01-19T22:28:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1355-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:31.511041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1356-V1.0","title":"RORSI_3150_2016_020_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T05:00:45.000 to 2016-01-20T07:00:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1356-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:32.510325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1357-V1.0","title":"RORSI_3151_2016_020_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T07:58:25.000 to 2016-01-20T13:51:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1357-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:33.506769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1358-V1.0","title":"RORSI_3152_2016_020_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T17:30:10.000 to 2016-01-20T20:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1358-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:34.517196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1359-V1.0","title":"RORSI_3153_2016_021_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-21T01:02:05.000 to 2016-01-21T06:30:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1359-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:35.524084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1360-V1.0","title":"RORSI_3154_2016_021_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-21T07:54:35.000 to 2016-01-21T13:47:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1360-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:36.571241","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1361-V1.0","title":"RORSI_3155_2016_022_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-22T01:34:05.000 to 2016-01-22T06:30:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1361-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:37.585289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1362-V1.0","title":"RORSI_3156_2016_022_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-22T15:52:40.000 to 2016-01-22T20:20:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1362-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:38.525676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1363-V1.0","title":"RORSI_3157_2016_023_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-23T09:19:45.000 to 2016-01-23T13:39:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1363-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:39.532402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1364-V1.0","title":"RORSI_3158_2016_023_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-23T19:37:05.000 to 2016-01-23T22:55:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1364-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:40.530324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1365-V1.0","title":"RORSI_3159_2016_024_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T01:38:35.000 to 2016-01-24T09:13:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1365-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:41.535072","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1366-V1.0","title":"RORSI_3160_2016_024_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T09:30:30.000 to 2016-01-24T13:34:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1366-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:42.536503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1367-V1.0","title":"RORSI_3161_2016_024_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T19:24:45.000 to 2016-01-24T21:42:51.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1367-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:43.541658","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1368-V1.0","title":"RORSI_3162_2016_025_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T01:01:40.000 to 2016-01-25T09:11:44.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1368-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:44.543742","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1369-V1.0","title":"RORSI_3163_2016_025_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T09:28:40.000 to 2016-01-25T13:30:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1369-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:45.542182","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1370-V1.0","title":"RORSI_3164_2016_025_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T16:23:40.000 to 2016-01-25T18:41:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1370-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:46.538632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1371-V1.0","title":"RORSI_3165_2016_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T01:01:40.000 to 2016-01-26T09:09:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1371-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:47.580952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1372-V1.0","title":"RORSI_3166_2016_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T09:26:40.000 to 2016-01-26T13:26:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1372-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:48.629249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1373-V1.0","title":"RORSI_3167_2016_026_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T20:21:40.000 to 2016-01-26T22:40:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1373-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:49.642878","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1374-V1.0","title":"RORSI_3168_2016_027_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T05:00:55.000 to 2016-01-27T09:07:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1374-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:50.555026","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1375-V1.0","title":"RORSI_3169_2016_027_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T09:24:35.000 to 2016-01-27T10:53:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1375-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:51.555857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1376-V1.0","title":"RORSI_3170_2016_027_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T17:21:05.000 to 2016-01-27T19:39:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1376-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:52.562379","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1377-V1.0","title":"RORSI_3171_2016_028_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-28T01:01:45.000 to 2016-01-28T09:05:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1377-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:53.563629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1378-V1.0","title":"RORSI_3172_2016_028_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-28T22:05:45.000 to 2016-01-29T00:59:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1378-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:54.567613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1379-V1.0","title":"RORSI_3173_2016_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T01:16:50.000 to 2016-01-29T09:03:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1379-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:55.566197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1380-V1.0","title":"RORSI_3174_2016_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T09:20:00.000 to 2016-01-29T13:12:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1380-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:56.565806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1381-V1.0","title":"RORSI_3175_2016_029_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T18:18:35.000 to 2016-01-29T20:36:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1381-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:57.570309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1382-V1.0","title":"RORSI_3176_2016_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T05:35:00.000 to 2016-01-30T09:01:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1382-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:58.596271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1383-V1.0","title":"RORSI_3177_2016_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T09:18:20.000 to 2016-01-30T13:08:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1383-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:02:59.638629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1384-V1.0","title":"RORSI_3178_2016_030_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T20:13:15.000 to 2016-01-30T23:14:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1384-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:00.655506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1385-V1.0","title":"RORSI_3179_2016_031_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T03:12:55.000 to 2016-01-31T08:58:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1385-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:01.574031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1386-V1.0","title":"RORSI_3180_2016_031_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T09:15:00.000 to 2016-01-31T13:03:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1386-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:02.583774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1387-V1.0","title":"RORSI_3181_2016_031_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T19:45:55.000 to 2016-01-31T21:34:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1387-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:03.584487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1388-V1.0","title":"RORSI_3182_2016_032_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-01T03:49:10.000 to 2016-02-01T08:55:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1388-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:04.589297","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1389-V1.0","title":"RORSI_3183_2016_032_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-01T09:12:25.000 to 2016-02-01T12:59:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1389-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:05.593657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1390-V1.0","title":"RORSI_3184_2016_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T02:39:30.000 to 2016-02-02T08:52:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1390-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:06.594542","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1391-V1.0","title":"RORSI_3185_2016_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T09:09:40.000 to 2016-02-02T12:54:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1391-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:07.600472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1392-V1.0","title":"RORSI_3186_2016_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T20:04:40.000 to 2016-02-02T22:06:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1392-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:08.608485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1393-V1.0","title":"RORSI_3187_2016_033_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T22:34:05.000 to 2016-02-02T23:45:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1393-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:09.606795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1394-V1.0","title":"RORSI_3188_2016_034_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T05:01:05.000 to 2016-02-03T08:50:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1394-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:10.656873","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1395-V1.0","title":"RORSI_3189_2016_034_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T09:07:40.000 to 2016-02-03T12:49:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1395-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:11.665218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1396-V1.0","title":"RORSI_3190_2016_034_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T22:19:20.000 to 2016-02-04T08:48:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1396-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:12.609338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1397-V1.0","title":"RORSI_3191_2016_035_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T09:05:00.000 to 2016-02-04T12:44:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1397-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:13.605914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1398-V1.0","title":"RORSI_3192_2016_035_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T20:48:20.000 to 2016-02-04T23:07:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1398-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:14.608102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1399-V1.0","title":"RORSI_3193_2016_035_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T23:33:05.000 to 2016-02-05T08:44:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1399-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:15.614950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1400-V1.0","title":"RORSI_3194_2016_036_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-05T09:01:00.000 to 2016-02-05T12:40:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1400-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:16.621213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1401-V1.0","title":"RORSI_3195_2016_037_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T04:43:05.000 to 2016-02-06T06:52:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1401-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:17.619545","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1402-V1.0","title":"RORSI_3196_2016_037_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T09:10:10.000 to 2016-02-06T11:06:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1402-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:18.831099","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1403-V1.0","title":"RORSI_3197_2016_037_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T20:17:50.000 to 2016-02-06T21:50:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1403-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:19.627699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1404-V1.0","title":"RORSI_3198_2016_038_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T04:47:05.000 to 2016-02-07T10:56:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1404-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:20.628283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1405-V1.0","title":"RORSI_3199_2016_038_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T11:24:10.000 to 2016-02-07T12:29:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1405-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:21.662298","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1406-V1.0","title":"RORSI_3200_2016_038_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T19:37:10.000 to 2016-02-07T21:43:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1406-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:22.709131","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1408-V1.0","title":"RORSI_3201_2016_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T06:50:00.000 to 2016-02-08T07:22:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1408-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:23.630044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1409-V1.0","title":"RORSI_3202_2016_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T07:49:10.000 to 2016-02-08T11:14:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1409-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:24.634488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1410-V1.0","title":"RORSI_3203_2016_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T11:42:10.000 to 2016-02-08T12:25:32.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1410-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:25.634448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1411-V1.0","title":"RORSI_3204_2016_039_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T14:42:35.000 to 2016-02-08T19:24:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1411-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:26.642025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1412-V1.0","title":"RORSI_3205_2016_040_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-09T03:10:25.000 to 2016-02-09T12:20:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1412-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:27.638513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1413-V1.0","title":"RORSI_3206_2016_040_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-09T14:38:15.000 to 2016-02-09T22:22:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1413-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:28.646981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1414-V1.0","title":"RORSI_3207_2016_041_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-10T04:58:05.000 to 2016-02-10T12:15:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1414-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:29.650447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1415-V1.0","title":"RORSI_3208_2016_041_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-10T14:33:55.000 to 2016-02-10T19:21:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1415-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:30.647217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1417-V1.0","title":"RORSI_3209_2016_042_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-11T14:29:30.000 to 2016-02-11T22:24:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1417-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:31.647104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1418-V1.0","title":"RORSI_3210_2016_043_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-12T02:57:25.000 to 2016-02-12T12:05:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1418-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:32.670881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1419-V1.0","title":"RORSI_3211_2016_043_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-12T14:59:32.000 to 2016-02-12T20:18:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1419-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:33.720859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1420-V1.0","title":"RORSI_3212_2016_044_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-13T05:01:10.000 to 2016-02-13T12:00:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1420-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:34.735406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1421-V1.0","title":"RORSI_3213_2016_044_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-13T14:20:35.000 to 2016-02-13T22:50:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1421-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:35.652529","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1422-V1.0","title":"RORSI_3214_2016_045_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-14T02:48:35.000 to 2016-02-14T11:55:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1422-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:36.656357","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1423-V1.0","title":"RORSI_3215_2016_045_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-14T14:16:05.000 to 2016-02-14T21:15:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1423-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:37.665337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1424-V1.0","title":"RORSI_3216_2016_046_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-15T02:44:10.000 to 2016-02-15T11:50:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1424-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:38.666143","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1425-V1.0","title":"RORSI_3217_2016_046_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-15T14:11:35.000 to 2016-02-15T17:00:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1425-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:39.665302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1426-V1.0","title":"RORSI_3218_2016_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-16T05:37:05.000 to 2016-02-16T11:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1426-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:40.668274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1427-V1.0","title":"RORSI_3219_2016_047_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-16T14:07:05.000 to 2016-02-16T22:13:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1427-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:41.668174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1428-V1.0","title":"RORSI_3220_2016_048_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-17T05:01:10.000 to 2016-02-17T10:56:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1428-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:42.671440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1429-V1.0","title":"RORSI_3221_2016_048_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-17T14:02:35.000 to 2016-02-17T19:12:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1429-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:43.683287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1430-V1.0","title":"RORSI_3222_2016_049_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-18T02:30:45.000 to 2016-02-18T09:11:43.999.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1430-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:44.732517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1431-V1.0","title":"RORSI_3223_2016_050_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-19T02:26:15.000 to 2016-02-19T11:29:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1431-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:45.742910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1433-V1.0","title":"RORSI_3224_2016_051_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-20T13:48:50.000 to 2016-02-20T22:37:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1433-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:46.684902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1434-V1.0","title":"RORSI_3225_2016_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T01:11:50.000 to 2016-02-21T06:48:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1434-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:47.686975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1435-V1.0","title":"RORSI_3226_2016_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T07:05:25.000 to 2016-02-21T11:18:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1435-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:48.686642","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1436-V1.0","title":"RORSI_3227_2016_052_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T18:49:30.000 to 2016-02-21T20:35:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1436-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:49.689442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1437-V1.0","title":"RORSI_3228_2016_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T02:24:55.000 to 2016-02-22T04:42:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1437-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:50.692886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1438-V1.0","title":"RORSI_3229_2016_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T04:59:55.000 to 2016-02-22T10:44:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1438-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:51.700964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1439-V1.0","title":"RORSI_3230_2016_053_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T19:03:00.000 to 2016-02-22T22:57:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1439-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:52.691856","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1440-V1.0","title":"RORSI_3231_2016_054_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-23T22:22:15.000 to 2016-02-24T07:48:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1440-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:53.697818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1442-V1.0","title":"RORSI_3232_2016_054_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-23T19:47:15.000 to 2016-02-23T22:05:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1442-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:54.706840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1443-V1.0","title":"RORSI_3233_2016_055_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-24T22:49:05.000 to 2016-02-25T02:04:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1443-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:55.741763","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1444-V1.0","title":"RORSI_3234_2016_055_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-24T08:12:05.000 to 2016-02-24T11:03:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1444-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:56.790568","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1445-V1.0","title":"RORSI_3235_2016_056_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-25T19:10:25.000 to 2016-02-25T22:27:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1445-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:57.800898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1446-V1.0","title":"RORSI_3236_2016_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-26T20:21:45.000 to 2016-02-27T00:14:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1446-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:58.709837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1447-V1.0","title":"RORSI_3237_2016_057_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-26T05:32:05.000 to 2016-02-26T10:52:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1447-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:03:59.715931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1448-V1.0","title":"RORSI_3238_2016_058_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-27T05:01:05.000 to 2016-02-27T07:36:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1448-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:00.716002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1449-V1.0","title":"RORSI_3239_2016_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T01:16:50.000 to 2016-02-28T07:32:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1449-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:01.719359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1450-V1.0","title":"RORSI_3240_2016_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T08:01:45.000 to 2016-02-28T10:41:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1450-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:02.757075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1451-V1.0","title":"RORSI_3241_2016_059_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T18:59:20.000 to 2016-02-28T22:25:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1451-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:03.724415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1452-V1.0","title":"RORSI_3242_2016_060_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-29T01:17:25.000 to 2016-02-29T03:20:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1452-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:04.728997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1453-V1.0","title":"RORSI_3243_2016_060_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-29T19:21:20.000 to 2016-02-29T22:20:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1453-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:05.723278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1454-V1.0","title":"RORSI_3244_2016_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-01T01:18:00.000 to 2016-03-01T07:03:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1454-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:06.748108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1455-V1.0","title":"RORSI_3245_2016_061_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-01T19:24:10.000 to 2016-03-01T22:14:55.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1455-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:07.800288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1456-V1.0","title":"RORSI_3246_2016_062_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-02T05:00:55.000 to 2016-03-02T07:17:56.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1456-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:08.813968","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1457-V1.0","title":"RORSI_3247_2016_063_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-03T02:04:05.000 to 2016-03-03T07:13:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1457-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:09.740064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1459-V1.0","title":"RORSI_3248_2016_067_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-07T01:07:10.000 to 2016-03-07T05:06:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1459-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:10.738645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1460-V1.0","title":"RORSI_3249_2016_068_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-08T01:02:25.000 to 2016-03-08T05:06:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1460-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:11.742007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1461-V1.0","title":"RORSI_3250_2016_069_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-09T05:00:40.000 to 2016-03-09T07:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1461-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:12.736631","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1462-V1.0","title":"RORSI_3251_2016_070_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-10T00:52:55.000 to 2016-03-10T05:06:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1462-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:13.748327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1463-V1.0","title":"RORSI_3252_2016_071_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-11T00:48:10.000 to 2016-03-11T04:06:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1463-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:14.740756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1464-V1.0","title":"RORSI_3253_2016_073_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-13T00:38:35.000 to 2016-03-13T05:06:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1464-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:15.746547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1465-V1.0","title":"RORSI_3254_2016_082_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-22T00:43:40.000 to 2016-03-22T04:04:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1465-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:16.749009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1466-V1.0","title":"RORSI_3255_2016_084_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-23T23:46:15.000 to 2016-03-24T07:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1466-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:17.758613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1467-V1.0","title":"RORSI_3256_2016_085_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-24T23:41:30.000 to 2016-03-25T06:59:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1467-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:18.806173","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1468-V1.0","title":"RORSI_3257_2016_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-26T23:32:05.000 to 2016-03-27T06:50:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1468-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:19.822891","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1469-V1.0","title":"RORSI_3258_2016_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-27T23:27:20.000 to 2016-03-28T01:05:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1469-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:20.760351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1470-V1.0","title":"RORSI_3259_2016_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-28T17:39:40.000 to 2016-03-28T19:27:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1470-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:21.761644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1471-V1.0","title":"RORSI_3260_2016_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-28T23:22:40.000 to 2016-03-29T05:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1471-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:22.769798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1472-V1.0","title":"RORSI_3261_2016_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-29T17:34:50.000 to 2016-03-29T20:34:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1472-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:23.768296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1473-V1.0","title":"RORSI_3262_2016_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-29T23:18:00.000 to 2016-03-30T04:05:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1473-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:24.770678","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1474-V1.0","title":"RORSI_3263_2016_091_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-31T23:08:35.000 to 2016-04-01T00:56:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1474-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:25.773237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1475-V1.0","title":"RORSI_3264_2016_092_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-01T17:20:25.000 to 2016-04-01T20:45:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1475-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:26.776121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1476-V1.0","title":"RORSI_3265_2016_092_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-01T23:04:00.000 to 2016-04-02T05:14:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1476-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:27.777118","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1477-V1.0","title":"RORSI_3266_2016_093_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-02T22:59:20.000 to 2016-04-03T01:48:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1477-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:28.775510","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1478-V1.0","title":"RORSI_3267_2016_094_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-03T17:11:00.000 to 2016-04-03T19:04:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1478-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:29.817786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1479-V1.0","title":"RORSI_3268_2016_094_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-03T22:54:45.000 to 2016-04-04T03:12:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1479-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:30.876359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1480-V1.0","title":"RORSI_3269_2016_095_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T17:06:20.000 to 2016-04-04T22:32:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1480-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:31.786711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1481-V1.0","title":"RORSI_3270_2016_095_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T04:01:30.000 to 2016-04-04T05:15:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1481-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:32.791744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1482-V1.0","title":"RORSI_3271_2016_095_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T22:50:05.000 to 2016-04-05T03:00:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1482-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:33.789394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT1-1483-V1.0","title":"RORSI_3272_2016_096_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-05T17:01:40.000 to 2016-04-05T19:59:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1483-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:34.794323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1484-V1.0","title":"RORSI_3273_2016_097_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-06T16:57:05.000 to 2016-04-06T20:24:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1484-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:35.795002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1485-V1.0","title":"RORSI_3274_2016_097_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-06T22:40:55.000 to 2016-04-07T03:55:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1485-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:36.795199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1486-V1.0","title":"RORSI_3275_2016_098_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-07T16:52:30.000 to 2016-04-07T20:04:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1486-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:37.806091","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1487-V1.0","title":"RORSI_3276_2016_098_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-07T22:36:20.000 to 2016-04-08T05:00:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1487-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:38.802619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1488-V1.0","title":"RORSI_3277_2016_099_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-08T16:48:00.000 to 2016-04-08T19:19:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1488-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:39.805075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1489-V1.0","title":"RORSI_3278_2016_100_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-09T16:43:30.000 to 2016-04-10T04:14:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1489-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:40.824235","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1490-V1.0","title":"RORSI_3279_2016_101_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-10T16:39:00.000 to 2016-04-10T19:25:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1490-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:41.882006","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1491-V1.0","title":"RORSI_3280_2016_101_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-10T22:22:45.000 to 2016-04-11T02:32:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1491-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:42.892752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1492-V1.0","title":"RORSI_3281_2016_102_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-11T16:34:35.000 to 2016-04-11T20:28:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1492-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:43.819685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1493-V1.0","title":"RORSI_3282_2016_102_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-11T22:18:15.000 to 2016-04-12T02:02:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1493-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:44.816130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1494-V1.0","title":"RORSI_3283_2016_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-12T16:30:15.000 to 2016-04-12T20:35:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1494-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:45.818018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1495-V1.0","title":"RORSI_3284_2016_103_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-12T22:13:45.000 to 2016-04-13T00:18:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1495-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:46.823537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1496-V1.0","title":"RORSI_3285_2016_104_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-13T16:25:50.000 to 2016-04-13T19:33:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1496-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:47.824452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1497-V1.0","title":"RORSI_3286_2016_104_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-13T22:09:20.000 to 2016-04-14T01:54:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1497-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:48.830796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1498-V1.0","title":"RORSI_3287_2016_105_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-14T16:21:30.000 to 2016-04-14T20:36:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1498-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:49.832898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1499-V1.0","title":"RORSI_3288_2016_105_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-14T22:04:50.000 to 2016-04-15T02:50:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1499-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:50.831175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1500-V1.0","title":"RORSI_3289_2016_106_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-15T16:17:15.000 to 2016-04-15T19:39:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1500-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:51.839106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1501-V1.0","title":"RORSI_3290_2016_106_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-15T22:00:25.000 to 2016-04-16T05:00:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1501-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:52.884916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1502-V1.0","title":"RORSI_3291_2016_107_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-16T16:13:00.000 to 2016-04-16T19:41:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1502-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:53.901397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1503-V1.0","title":"RORSI_3292_2016_107_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-16T21:56:00.000 to 2016-04-17T03:41:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1503-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:54.843254","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1504-V1.0","title":"RORSI_3293_2016_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-17T16:08:45.000 to 2016-04-17T19:44:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1504-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:55.840546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1505-V1.0","title":"RORSI_3294_2016_108_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-17T21:51:35.000 to 2016-04-18T03:37:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1505-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:56.846844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1506-V1.0","title":"RORSI_3295_2016_109_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-18T16:04:35.000 to 2016-04-18T19:47:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1506-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:57.848938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1508-V1.0","title":"RORSI_3296_2016_110_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-19T16:00:25.000 to 2016-04-19T20:47:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1508-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:58.849840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1509-V1.0","title":"RORSI_3297_2016_110_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-19T21:42:50.000 to 2016-04-20T00:19:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1509-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:04:59.951407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1510-V1.0","title":"RORSI_3298_2016_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T15:56:20.000 to 2016-04-20T19:52:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1510-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:00.849927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1511-V1.0","title":"RORSI_3299_2016_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T01:30:35.000 to 2016-04-20T03:25:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1511-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:01.851229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1512-V1.0","title":"RORSI_3300_2016_111_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T21:38:25.000 to 2016-04-21T02:24:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1512-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:02.856494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1513-V1.0","title":"RORSI_3301_2016_112_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-21T15:52:15.000 to 2016-04-21T21:40:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1513-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:03.899978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1514-V1.0","title":"RORSI_3302_2016_112_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-21T21:57:15.000 to 2016-04-22T05:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1514-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:04.945638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1515-V1.0","title":"RORSI_3303_2016_113_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-22T15:48:10.000 to 2016-04-22T19:57:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1515-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:05.861432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1516-V1.0","title":"RORSI_3304_2016_113_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-22T21:29:45.000 to 2016-04-23T05:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1516-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:06.863228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1517-V1.0","title":"RORSI_3305_2016_114_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-23T18:17:10.000 to 2016-04-24T00:20:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1517-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:07.869186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1518-V1.0","title":"RORSI_3306_2016_115_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-24T16:34:35.000 to 2016-04-25T03:08:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1518-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:08.870300","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1519-V1.0","title":"RORSI_3307_2016_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T16:33:35.000 to 2016-04-25T20:04:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1519-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:09.872711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1520-V1.0","title":"RORSI_3308_2016_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T22:57:05.000 to 2016-04-26T03:04:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1520-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:10.872507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1521-V1.0","title":"RORSI_3309_2016_116_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T08:46:50.000 to 2016-04-25T11:34:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1521-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:11.877731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1522-V1.0","title":"RORSI_3310_2016_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T16:32:35.000 to 2016-04-26T20:06:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1522-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:12.882413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1523-V1.0","title":"RORSI_3311_2016_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T21:12:40.000 to 2016-04-27T00:20:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1523-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:13.882424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1524-V1.0","title":"RORSI_3312_2016_117_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T08:53:05.000 to 2016-04-26T11:00:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1524-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:14.908956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1525-V1.0","title":"RORSI_3313_2016_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T16:31:30.000 to 2016-04-27T20:08:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1525-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:15.952733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1526-V1.0","title":"RORSI_3314_2016_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T01:29:35.000 to 2016-04-27T03:00:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1526-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:16.968247","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1527-V1.0","title":"RORSI_3315_2016_118_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T21:08:25.000 to 2016-04-28T04:08:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1527-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:17.888175","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1528-V1.0","title":"RORSI_3316_2016_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T16:30:30.000 to 2016-04-28T20:47:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1528-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:18.892470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1529-V1.0","title":"RORSI_3317_2016_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T21:04:10.000 to 2016-04-29T03:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1529-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:19.893270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1530-V1.0","title":"RORSI_3318_2016_119_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T08:34:10.000 to 2016-04-28T10:14:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1530-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:20.894348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1531-V1.0","title":"RORSI_3319_2016_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-29T16:29:20.000 to 2016-04-29T20:12:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1531-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:21.900346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1532-V1.0","title":"RORSI_3320_2016_120_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-29T21:00:00.000 to 2016-04-30T04:03:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1532-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:22.903240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1533-V1.0","title":"RORSI_3321_2016_121_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-30T15:27:15.000 to 2016-04-30T20:14:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1533-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:23.903417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1534-V1.0","title":"RORSI_3322_2016_121_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-30T08:25:50.000 to 2016-04-30T10:43:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1534-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:24.904977","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1535-V1.0","title":"RORSI_3323_2016_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-01T16:27:05.000 to 2016-05-01T20:16:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1535-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:25.916909","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1536-V1.0","title":"RORSI_3324_2016_122_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-01T20:51:35.000 to 2016-05-02T03:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1536-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:26.964483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1540-V1.0","title":"RORSI_3325_2016_123_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-02T16:26:00.000 to 2016-05-02T20:18:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1540-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:27.981502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1541-V1.0","title":"RORSI_3326_2016_123_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-02T20:47:25.000 to 2016-05-03T03:45:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1541-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:28.914985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1542-V1.0","title":"RORSI_3327_2016_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-03T17:43:40.000 to 2016-05-03T20:19:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1542-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:29.914128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1543-V1.0","title":"RORSI_3328_2016_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-03T21:30:40.000 to 2016-05-03T22:54:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1543-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:30.913887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1544-V1.0","title":"RORSI_3329_2016_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-04T15:56:50.000 to 2016-05-04T20:21:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1544-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:31.918188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1545-V1.0","title":"RORSI_3330_2016_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-04T20:39:10.000 to 2016-05-04T22:20:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1545-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:32.926575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1546-V1.0","title":"RORSI_3331_2016_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-05T16:22:30.000 to 2016-05-05T20:18:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1546-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:33.927152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1547-V1.0","title":"RORSI_3332_2016_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-05T20:35:05.000 to 2016-05-06T03:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1547-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:34.939605","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1548-V1.0","title":"RORSI_3333_2016_127_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-06T16:00:45.000 to 2016-05-06T20:14:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1548-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:35.922837","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1549-V1.0","title":"RORSI_3334_2016_127_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-06T20:31:00.000 to 2016-05-06T23:23:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1549-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:36.931883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1550-V1.0","title":"RORSI_3335_2016_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-07T16:02:00.000 to 2016-05-07T20:09:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1550-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:37.976260","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1551-V1.0","title":"RORSI_3336_2016_128_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-07T20:26:55.000 to 2016-05-07T23:25:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1551-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:39.025187","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1552-V1.0","title":"RORSI_3337_2016_129_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-08T16:18:50.000 to 2016-05-08T20:05:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1552-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:39.937427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1553-V1.0","title":"RORSI_3339_2016_129_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-08T20:22:50.000 to 2016-05-09T03:00:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1553-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:40.934756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1557-V1.0","title":"RORSI_3338_2016_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T16:17:35.000 to 2016-05-09T17:39:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1557-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:41.941041","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1558-V1.0","title":"RORSI_3340_2016_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T17:50:45.000 to 2016-05-09T19:34:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1558-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:42.941526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1559-V1.0","title":"RORSI_3341_2016_130_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T19:46:45.000 to 2016-05-10T02:06:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1559-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:43.945098","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1560-V1.0","title":"RORSI_3342_2016_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T15:12:05.000 to 2016-05-10T20:28:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1560-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:44.945747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1561-V1.0","title":"RORSI_3343_2016_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T21:41:45.000 to 2016-05-11T00:22:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1561-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:45.946768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1562-V1.0","title":"RORSI_3344_2016_131_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T10:58:05.000 to 2016-05-10T14:33:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1562-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:46.955911","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1563-V1.0","title":"RORSI_3345_2016_132_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-11T16:14:45.000 to 2016-05-12T01:58:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1563-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:47.955196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1564-V1.0","title":"RORSI_3346_2016_132_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-11T10:18:05.000 to 2016-05-11T15:57:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1564-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:48.987166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1565-V1.0","title":"RORSI_3347_2016_133_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T15:12:05.000 to 2016-05-12T20:30:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1565-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:50.035792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1566-V1.0","title":"RORSI_3348_2016_133_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T10:03:05.000 to 2016-05-12T13:07:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1566-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:51.049640","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1567-V1.0","title":"RORSI_3349_2016_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T23:43:40.000 to 2016-05-13T03:00:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1567-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:51.965051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1568-V1.0","title":"RORSI_3350_2016_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-13T16:11:45.000 to 2016-05-13T23:54:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1568-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:52.968170","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1569-V1.0","title":"RORSI_3351_2016_134_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-13T07:33:10.000 to 2016-05-13T15:54:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1569-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:53.963892","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1570-V1.0","title":"RORSI_3352_2016_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-14T16:10:05.000 to 2016-05-14T19:41:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1570-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:54.968122","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1571-V1.0","title":"RORSI_3353_2016_135_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-14T19:58:45.000 to 2016-05-15T01:35:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1571-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:55.975350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1572-V1.0","title":"RORSI_3354_2016_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-15T16:08:25.000 to 2016-05-15T19:37:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1572-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:56.973744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1573-V1.0","title":"RORSI_3355_2016_136_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-15T19:54:50.000 to 2016-05-15T23:14:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1573-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:57.978675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1574-V1.0","title":"RORSI_3356_2016_137_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-16T19:50:50.000 to 2016-05-16T21:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1574-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:58.978424","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1575-V1.0","title":"RORSI_3357_2016_138_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-17T00:42:05.000 to 2016-05-17T04:45:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1575-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:05:59.999342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1576-V1.0","title":"RORSI_3358_2016_139_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-18T16:02:40.000 to 2016-05-18T18:24:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1576-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:01.049154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1577-V1.0","title":"RORSI_3359_2016_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T16:00:40.000 to 2016-05-19T19:22:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1577-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:02.058082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1578-V1.0","title":"RORSI_3360_2016_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T19:39:05.000 to 2016-05-20T03:00:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1578-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:02.991078","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1579-V1.0","title":"RORSI_3361_2016_140_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T07:09:50.000 to 2016-05-19T12:19:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1579-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:03.993288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1580-V1.0","title":"RORSI_3362_2016_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-20T15:58:35.000 to 2016-05-21T01:22:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1580-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:04.993940","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1581-V1.0","title":"RORSI_3363_2016_141_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-20T07:05:55.000 to 2016-05-20T15:41:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1581-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:05.997864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1582-V1.0","title":"RORSI_3364_2016_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-21T15:56:25.000 to 2016-05-21T19:39:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1582-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:06.998504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1583-V1.0","title":"RORSI_3365_2016_142_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-21T19:57:05.000 to 2016-05-22T00:24:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1583-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:08.003844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1584-V1.0","title":"RORSI_3366_2016_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T15:54:10.000 to 2016-05-22T19:10:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1584-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:09.007108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1585-V1.0","title":"RORSI_3367_2016_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T01:25:35.000 to 2016-05-22T04:29:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1585-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:10.005883","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1586-V1.0","title":"RORSI_3368_2016_143_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T19:27:25.000 to 2016-05-23T03:00:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1586-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:11.017754","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1587-V1.0","title":"RORSI_3369_2016_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-23T15:51:50.000 to 2016-05-23T19:06:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1587-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:12.056600","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1588-V1.0","title":"RORSI_3370_2016_144_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-23T19:23:35.000 to 2016-05-24T04:22:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1588-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:13.069222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1589-V1.0","title":"RORSI_3371_2016_145_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-24T15:49:30.000 to 2016-05-25T00:24:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1589-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:14.015380","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1590-V1.0","title":"RORSI_3372_2016_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-25T15:47:05.000 to 2016-05-25T18:59:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1590-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:15.023637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1591-V1.0","title":"RORSI_3373_2016_146_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-25T19:15:55.000 to 2016-05-26T00:34:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1591-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:16.014149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1592-V1.0","title":"RORSI_3374_2016_147_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T15:44:40.000 to 2016-05-26T18:55:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1592-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:17.016213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1593-V1.0","title":"RORSI_3375_2016_147_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T19:12:05.000 to 2016-05-27T03:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1593-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:18.025811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1594-V1.0","title":"RORSI_3376_2016_147_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T06:43:05.000 to 2016-05-26T12:25:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1594-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:19.024895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1595-V1.0","title":"RORSI_3377_2016_148_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-27T15:42:10.000 to 2016-05-28T00:55:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1595-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:20.028452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1596-V1.0","title":"RORSI_3378_2016_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T15:39:45.000 to 2016-05-28T18:47:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1596-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:21.027354","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1597-V1.0","title":"RORSI_3379_2016_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T19:04:25.000 to 2016-05-28T23:44:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1597-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:22.030948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1598-V1.0","title":"RORSI_3380_2016_149_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T08:03:05.000 to 2016-05-28T13:51:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1598-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:23.064615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1599-V1.0","title":"RORSI_3381_2016_150_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-29T15:37:15.000 to 2016-05-30T00:48:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1599-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:24.114299","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1600-V1.0","title":"RORSI_3382_2016_150_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-29T15:26:00.000 to 2016-05-29T16:10:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1600-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:25.127558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1601-V1.0","title":"RORSI_3383_2016_151_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T16:07:54.000 to 2016-05-30T23:54:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1601-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:26.042481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1602-V1.0","title":"RORSI_3384_2016_151_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T12:11:02.000 to 2016-05-30T14:14:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1602-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:27.041976","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1603-V1.0","title":"RORSI_3385_2016_151_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T14:32:53.000 to 2016-05-30T15:06:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1603-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:28.047049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1604-V1.0","title":"RORSI_3386_2016_152_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-31T15:32:15.000 to 2016-06-01T00:26:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1604-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:29.048944","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1605-V1.0","title":"RORSI_3387_2016_152_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-31T06:24:25.000 to 2016-05-31T11:23:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1605-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:30.052960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1606-V1.0","title":"RORSI_3388_2016_153_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T15:29:45.000 to 2016-06-01T18:32:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1606-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:31.053751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1607-V1.0","title":"RORSI_3389_2016_153_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T18:49:20.000 to 2016-06-02T03:54:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1607-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:32.057997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1608-V1.0","title":"RORSI_3390_2016_153_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T07:56:51.000 to 2016-06-01T10:26:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1608-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:33.056794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1609-V1.0","title":"RORSI_3391_2016_154_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-02T15:27:20.000 to 2016-06-03T00:33:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1609-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:34.073792","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1610-V1.0","title":"RORSI_3392_2016_154_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-02T06:17:00.000 to 2016-06-02T15:10:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1610-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:35.124196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1611-V1.0","title":"RORSI_3393_2016_155_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T15:24:50.000 to 2016-06-03T20:41:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1611-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:36.137770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1612-V1.0","title":"RORSI_3394_2016_155_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T06:13:20.000 to 2016-06-03T11:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1612-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:37.067418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1613-V1.0","title":"RORSI_3395_2016_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T23:58:35.000 to 2016-06-04T03:48:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1613-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:38.066403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1614-V1.0","title":"RORSI_3396_2016_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-04T19:13:05.000 to 2016-06-05T03:45:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1614-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:39.066957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1615-V1.0","title":"RORSI_3397_2016_156_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-04T06:09:40.000 to 2016-06-04T10:27:25.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1615-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:40.075219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1616-V1.0","title":"RORSI_3398_2016_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T15:19:50.000 to 2016-06-05T18:17:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1616-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:41.173477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1617-V1.0","title":"RORSI_3399_2016_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T18:35:05.000 to 2016-06-05T22:44:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1617-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:42.079506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1618-V1.0","title":"RORSI_3400_2016_157_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T06:06:00.000 to 2016-06-05T09:09:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1618-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:43.080320","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1619-V1.0","title":"RORSI_3401_2016_158_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T15:17:15.000 to 2016-06-06T23:35:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1619-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:44.085020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1620-V1.0","title":"RORSI_3402_2016_158_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T02:13:05.000 to 2016-06-06T03:42:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1620-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:45.083114","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1621-V1.0","title":"RORSI_3403_2016_158_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T06:33:05.000 to 2016-06-06T09:07:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1621-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:46.132086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1622-V1.0","title":"RORSI_3404_2016_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T23:52:50.000 to 2016-06-07T03:39:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1622-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:47.147373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1623-V1.0","title":"RORSI_3405_2016_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-07T18:27:00.000 to 2016-06-08T00:27:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1623-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:48.087870","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1624-V1.0","title":"RORSI_3406_2016_159_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-07T05:58:45.000 to 2016-06-07T09:05:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1624-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:49.095745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1625-V1.0","title":"RORSI_3407_2016_160_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T15:12:05.000 to 2016-06-08T18:06:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1625-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:50.093920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1626-V1.0","title":"RORSI_3408_2016_160_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T01:22:45.000 to 2016-06-08T03:36:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1626-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:51.098253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1627-V1.0","title":"RORSI_3409_2016_160_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T18:23:20.000 to 2016-06-09T03:33:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1627-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:52.101259","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1628-V1.0","title":"RORSI_3410_2016_161_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-09T15:12:05.000 to 2016-06-09T18:02:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1628-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:53.103829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1629-V1.0","title":"RORSI_3411_2016_161_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-09T18:19:40.000 to 2016-06-10T03:30:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1629-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:54.105406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1630-V1.0","title":"RORSI_3412_2016_162_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T15:08:05.000 to 2016-06-10T23:28:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1630-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:55.102447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1631-V1.0","title":"RORSI_3413_2016_162_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T06:38:05.000 to 2016-06-10T08:59:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1631-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:56.105052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1632-V1.0","title":"RORSI_3414_2016_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T23:45:15.000 to 2016-06-11T03:27:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1632-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:57.146676","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1633-V1.0","title":"RORSI_3415_2016_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T18:12:20.000 to 2016-06-11T22:42:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1633-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:58.192925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1634-V1.0","title":"RORSI_3416_2016_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T22:44:15.000 to 2016-06-12T00:28:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1634-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:06:59.113881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1635-V1.0","title":"RORSI_3417_2016_163_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T05:44:15.000 to 2016-06-11T08:58:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1635-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:00.115548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1636-V1.0","title":"RORSI_3418_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T15:00:50.000 to 2016-06-12T17:51:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1636-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:01.120689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1637-V1.0","title":"RORSI_3419_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T02:01:05.000 to 2016-06-12T03:24:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1637-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:02.124228","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1638-V1.0","title":"RORSI_3420_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T18:08:40.000 to 2016-06-12T21:06:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1638-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:03.124647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1639-V1.0","title":"RORSI_3421_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T21:08:05.000 to 2016-06-13T00:55:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1639-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:04.123737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1640-V1.0","title":"RORSI_3422_2016_164_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T05:40:40.000 to 2016-06-12T08:14:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1640-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:05.133084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1641-V1.0","title":"RORSI_3423_2016_165_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T14:57:55.000 to 2016-06-13T23:22:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1641-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:06.130932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1642-V1.0","title":"RORSI_3424_2016_165_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T00:56:55.000 to 2016-06-13T03:21:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1642-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:07.128507","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1644-V1.0","title":"RORSI_3425_2016_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-14T15:57:05.000 to 2016-06-14T21:10:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1644-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:08.154946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1645-V1.0","title":"RORSI_3426_2016_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T23:39:35.000 to 2016-06-14T03:18:30.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1645-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:09.203294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1646-V1.0","title":"RORSI_3427_2016_166_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-14T21:27:25.000 to 2016-06-15T01:02:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1646-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:10.216391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1647-V1.0","title":"RORSI_3428_2016_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T15:57:05.000 to 2016-06-15T23:45:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1647-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:11.140217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1648-V1.0","title":"RORSI_3429_2016_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T10:23:30.000 to 2016-06-15T13:00:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1648-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:12.142696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1649-V1.0","title":"RORSI_3430_2016_167_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T13:51:33.000 to 2016-06-15T14:55:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1649-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:13.144478","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1650-V1.0","title":"RORSI_3431_2016_168_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-16T15:57:05.000 to 2016-06-16T23:41:33.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1650-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:14.146736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1651-V1.0","title":"RORSI_3432_2016_168_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-16T10:20:25.000 to 2016-06-16T14:55:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1651-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:15.148290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1652-V1.0","title":"RORSI_3433_2016_169_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-17T14:45:35.000 to 2016-06-17T23:37:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1652-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:16.148495","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1653-V1.0","title":"RORSI_3434_2016_169_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-17T05:22:50.000 to 2016-06-17T08:36:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1653-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:17.155464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1654-V1.0","title":"RORSI_3435_2016_170_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-18T14:42:25.000 to 2016-06-18T23:34:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1654-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:18.155027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1655-V1.0","title":"RORSI_3436_2016_170_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-18T05:19:15.000 to 2016-06-18T13:18:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1655-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:19.164212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1656-V1.0","title":"RORSI_3437_2016_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T14:39:15.000 to 2016-06-19T17:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1656-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:20.222622","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1657-V1.0","title":"RORSI_3438_2016_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T17:47:05.000 to 2016-06-20T03:01:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1657-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:21.227933","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1658-V1.0","title":"RORSI_3439_2016_171_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T05:15:45.000 to 2016-06-19T13:46:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1658-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:22.163553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1659-V1.0","title":"RORSI_3440_2016_172_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-20T14:36:00.000 to 2016-06-20T23:27:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1659-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:23.163680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1660-V1.0","title":"RORSI_3441_2016_172_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-20T05:12:15.000 to 2016-06-20T08:33:24.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1660-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:24.175854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1661-V1.0","title":"RORSI_3442_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T14:32:45.000 to 2016-06-21T17:30:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1661-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:25.164985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1662-V1.0","title":"RORSI_3443_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T17:47:05.000 to 2016-06-21T19:30:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1662-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:26.177929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1663-V1.0","title":"RORSI_3444_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T20:21:34.000 to 2016-06-21T22:31:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1663-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:27.174799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1664-V1.0","title":"RORSI_3445_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T23:23:34.000 to 2016-06-22T00:29:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1664-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:28.173812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1665-V1.0","title":"RORSI_3446_2016_173_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T05:08:45.000 to 2016-06-21T12:27:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1665-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:29.179061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1666-V1.0","title":"RORSI_3447_2016_174_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T14:29:35.000 to 2016-06-22T16:43:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1666-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:30.177420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1667-V1.0","title":"RORSI_3448_2016_174_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T21:02:05.000 to 2016-06-22T23:22:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1667-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:31.221240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1668-V1.0","title":"RORSI_3449_2016_174_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T05:05:10.000 to 2016-06-22T11:50:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1668-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:32.277274","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1669-V1.0","title":"RORSI_3450_2016_175_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T14:36:10.000 to 2016-06-23T17:30:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1669-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:33.186702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1670-V1.0","title":"RORSI_3451_2016_175_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T17:47:05.000 to 2016-06-24T02:49:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1670-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:34.186774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1671-V1.0","title":"RORSI_3452_2016_175_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T05:01:40.000 to 2016-06-23T14:19:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1671-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:35.189230","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1672-V1.0","title":"RORSI_3453_2016_176_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T14:23:15.000 to 2016-06-24T23:02:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1672-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:36.191294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1673-V1.0","title":"RORSI_3454_2016_176_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T04:58:10.000 to 2016-06-24T10:05:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1673-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:37.194552","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1674-V1.0","title":"RORSI_3455_2016_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-25T14:46:45.000 to 2016-06-25T23:09:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1674-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:38.194508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1675-V1.0","title":"RORSI_3456_2016_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T23:19:10.000 to 2016-06-25T02:46:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1675-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:39.201580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1676-V1.0","title":"RORSI_3462_2016_177_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-25T04:54:45.000 to 2016-06-25T14:29:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1676-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:40.201258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1677-V1.0","title":"RORSI_3457_2016_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T14:32:30.000 to 2016-06-26T17:30:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1677-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:41.203855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1678-V1.0","title":"RORSI_3458_2016_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T17:47:05.000 to 2016-06-27T02:41:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1678-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:42.231366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1679-V1.0","title":"RORSI_3459_2016_178_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T06:00:40.000 to 2016-06-26T14:15:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1679-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:43.281075","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1680-V1.0","title":"RORSI_3460_2016_179_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-27T14:14:10.000 to 2016-06-27T23:02:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1680-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:44.298050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1681-V1.0","title":"RORSI_3461_2016_179_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-27T04:47:45.000 to 2016-06-27T13:57:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1681-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:45.211633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1682-V1.0","title":"RORSI_3463_2016_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-28T04:44:15.000 to 2016-06-28T11:43:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1682-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:46.216585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1683-V1.0","title":"RORSI_3464_2016_180_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-28T14:11:15.000 to 2016-06-28T22:58:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1683-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:47.218136","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1684-V1.0","title":"RORSI_3465_2016_181_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-29T04:45:10.000 to 2016-06-29T07:41:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1684-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:48.218469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1685-V1.0","title":"RORSI_3466_2016_181_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-29T14:08:25.000 to 2016-06-29T22:55:05.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1685-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:49.225700","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1686-V1.0","title":"RORSI_3467_2016_182_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-30T04:37:20.000 to 2016-06-30T11:42:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1686-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:50.221492","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT2-1687-V1.0","title":"RORSI_3468_2016_182_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-30T14:05:40.000 to 2016-06-30T22:51:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1687-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:51.226211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1688-V1.0","title":"RORSI_3469_2016_183_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-01T04:33:55.000 to 2016-07-01T12:18:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1688-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:52.230914","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1689-V1.0","title":"RORSI_3470_2016_183_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-01T14:03:00.000 to 2016-07-01T22:47:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1689-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:53.241307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1690-V1.0","title":"RORSI_3471_2016_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-02T04:30:30.000 to 2016-07-02T09:26:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1690-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:54.295786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1691-V1.0","title":"RORSI_3472_2016_184_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-02T15:12:05.000 to 2016-07-02T22:44:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1691-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:55.305671","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1692-V1.0","title":"RORSI_3473_2016_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-03T04:27:05.000 to 2016-07-03T12:14:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1692-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:56.238538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1693-V1.0","title":"RORSI_3474_2016_185_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-03T17:02:05.000 to 2016-07-04T02:21:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1693-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:57.240077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1694-V1.0","title":"RORSI_3475_2016_186_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-04T04:23:35.000 to 2016-07-04T14:04:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1694-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:58.238740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1695-V1.0","title":"RORSI_3476_2016_186_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-04T15:06:55.000 to 2016-07-04T22:37:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1695-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:07:59.243386","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1696-V1.0","title":"RORSI_3477_2016_187_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-05T04:20:10.000 to 2016-07-05T07:35:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1696-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:00.245880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1697-V1.0","title":"RORSI_3478_2016_187_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-05T13:52:40.000 to 2016-07-05T22:33:52.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1697-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:01.251785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1698-V1.0","title":"RORSI_3479_2016_188_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-06T13:50:10.000 to 2016-07-06T22:30:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1698-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:02.253401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1699-V1.0","title":"RORSI_3480_2016_188_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-06T11:57:05.000 to 2016-07-06T13:33:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1699-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:03.253473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1700-V1.0","title":"RORSI_3481_2016_189_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-07T14:12:50.000 to 2016-07-07T22:26:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1700-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:04.261275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1701-V1.0","title":"RORSI_3483_2016_189_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-07T04:13:20.000 to 2016-07-07T13:55:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1701-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:05.301257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1702-V1.0","title":"RORSI_3482_2016_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-08T13:45:15.000 to 2016-07-08T22:23:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1702-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:06.348079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1703-V1.0","title":"RORSI_3484_2016_190_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-08T04:09:55.000 to 2016-07-08T12:07:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1703-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:07.262565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1704-V1.0","title":"RORSI_3485_2016_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T13:42:50.000 to 2016-07-09T17:30:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1704-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:08.265533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1705-V1.0","title":"RORSI_3486_2016_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T17:47:05.000 to 2016-07-09T23:52:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1705-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:09.264344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1706-V1.0","title":"RORSI_3487_2016_191_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T04:06:30.000 to 2016-07-09T08:22:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1706-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:10.267338","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1707-V1.0","title":"RORSI_3488_2016_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-10T14:04:30.000 to 2016-07-10T22:16:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1707-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:11.273456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1708-V1.0","title":"RORSI_3489_2016_192_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-10T05:58:20.000 to 2016-07-10T13:47:33.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1708-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:12.274526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1709-V1.0","title":"RORSI_3490_2016_193_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-11T13:38:00.000 to 2016-07-11T22:12:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1709-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:13.269525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1710-V1.0","title":"RORSI_3491_2016_193_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-11T04:59:45.000 to 2016-07-11T13:21:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1710-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:14.276731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1711-V1.0","title":"RORSI_3492_2016_194_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-12T13:59:00.000 to 2016-07-12T19:44:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1711-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:15.279020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1712-V1.0","title":"RORSI_3493_2016_194_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-12T03:56:20.000 to 2016-07-12T13:42:01.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1712-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:16.318402","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1713-V1.0","title":"RORSI_3494_2016_195_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-13T16:57:05.000 to 2016-07-13T22:05:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1713-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:17.364931","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1714-V1.0","title":"RORSI_3495_2016_195_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-13T04:42:55.000 to 2016-07-13T09:02:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1714-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:18.380509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1715-V1.0","title":"RORSI_3496_2016_196_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-14T13:30:55.000 to 2016-07-14T22:02:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1715-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:19.291480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1716-V1.0","title":"RORSI_3497_2016_196_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-14T03:49:35.000 to 2016-07-14T08:30:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1716-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:20.291978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1717-V1.0","title":"RORSI_3498_2016_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-15T13:50:45.000 to 2016-07-15T21:59:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1717-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:21.291695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1718-V1.0","title":"RORSI_3499_2016_197_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-15T03:46:15.000 to 2016-07-15T06:48:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1718-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:22.399657","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1719-V1.0","title":"RORSI_3500_2016_198_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-16T13:26:25.000 to 2016-07-16T21:55:34.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1719-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:23.300365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1720-V1.0","title":"RORSI_3501_2016_198_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-16T03:42:50.000 to 2016-07-16T11:14:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1720-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:24.298435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1721-V1.0","title":"RORSI_3502_2016_199_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T13:45:15.000 to 2016-07-17T17:30:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1721-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:25.298447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1722-V1.0","title":"RORSI_3503_2016_199_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T17:47:05.000 to 2016-07-18T01:44:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1722-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:26.306157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1723-V1.0","title":"RORSI_3504_2016_199_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T05:44:49.000 to 2016-07-17T13:28:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1723-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:27.325458","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1724-V1.0","title":"RORSI_3505_2016_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T13:22:05.000 to 2016-07-18T18:25:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1724-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:28.371165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1725-V1.0","title":"RORSI_3506_2016_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T22:02:05.000 to 2016-07-19T00:40:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1725-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:29.384138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1726-V1.0","title":"RORSI_3507_2016_200_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T03:36:10.000 to 2016-07-18T06:54:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1726-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:30.315252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1727-V1.0","title":"RORSI_3508_2016_201_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T13:27:00.000 to 2016-07-19T16:05:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1727-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:31.312149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1728-V1.0","title":"RORSI_3509_2016_201_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T16:22:20.000 to 2016-07-20T00:59:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1728-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:32.317867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1729-V1.0","title":"RORSI_3510_2016_201_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T03:32:45.000 to 2016-07-19T06:30:36.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1729-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:33.318310","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1730-V1.0","title":"RORSI_3511_2016_202_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-20T04:41:50.000 to 2016-07-20T06:31:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1730-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:34.321647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1731-V1.0","title":"RORSI_3512_2016_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T13:16:05.000 to 2016-07-21T16:13:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1731-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:35.323997","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1732-V1.0","title":"RORSI_3513_2016_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T16:30:10.000 to 2016-07-21T19:30:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1732-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:36.327543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1733-V1.0","title":"RORSI_3514_2016_203_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T04:02:47.000 to 2016-07-21T06:31:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1733-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:37.333783","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1734-V1.0","title":"RORSI_3515_2016_204_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-22T03:22:45.000 to 2016-07-22T06:31:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1734-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:38.332844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1735-V1.0","title":"RORSI_3516_2016_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T14:12:40.000 to 2016-07-23T16:21:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1735-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:39.376317","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1736-V1.0","title":"RORSI_3517_2016_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T16:38:25.000 to 2016-07-23T18:42:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1736-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:40.396132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1737-V1.0","title":"RORSI_3518_2016_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T19:42:09.000 to 2016-07-23T20:32:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1737-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:41.337412","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1738-V1.0","title":"RORSI_3519_2016_205_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T03:19:25.000 to 2016-07-23T10:32:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1738-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:42.353675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1739-V1.0","title":"RORSI_3520_2016_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T13:11:05.000 to 2016-07-24T16:25:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1739-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:43.354130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1740-V1.0","title":"RORSI_3521_2016_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T17:42:35.000 to 2016-07-24T23:32:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1740-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:44.348898","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1741-V1.0","title":"RORSI_3522_2016_206_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T03:16:05.000 to 2016-07-24T09:32:35.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1741-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:45.346993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1742-V1.0","title":"RORSI_3523_2016_207_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-25T17:07:05.000 to 2016-07-25T22:46:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1742-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:46.355790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1743-V1.0","title":"RORSI_3524_2016_207_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-25T06:47:05.000 to 2016-07-25T08:45:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1743-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:47.355744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1744-V1.0","title":"RORSI_3525_2016_208_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-26T16:34:50.000 to 2016-07-26T22:45:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1744-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:48.361593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1745-V1.0","title":"RORSI_3526_2016_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T14:07:05.000 to 2016-07-27T15:38:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1745-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:49.359559","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1746-V1.0","title":"RORSI_3527_2016_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T17:16:25.000 to 2016-07-27T20:22:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1746-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:50.388314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1747-V1.0","title":"RORSI_3528_2016_209_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T03:06:10.000 to 2016-07-27T05:24:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1747-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:51.436158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1748-V1.0","title":"RORSI_3529_2016_210_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-28T16:28:05.000 to 2016-07-28T21:42:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1748-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:52.452348","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1749-V1.0","title":"RORSI_3530_2016_210_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-28T03:02:52.000 to 2016-07-28T05:20:59.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1749-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:53.360594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1750-V1.0","title":"RORSI_3531_2016_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T14:12:05.000 to 2016-07-29T15:14:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1750-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:54.368154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1751-V1.0","title":"RORSI_3532_2016_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T16:31:05.000 to 2016-07-29T20:18:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1751-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:55.373049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1752-V1.0","title":"RORSI_3533_2016_211_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T02:59:33.000 to 2016-07-29T05:17:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1752-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:56.380184","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1753-V1.0","title":"RORSI_3534_2016_212_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-30T14:12:45.000 to 2016-07-30T15:10:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1753-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:57.372630","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1754-V1.0","title":"RORSI_3535_2016_212_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-30T16:27:05.000 to 2016-07-30T16:49:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1754-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:58.381172","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1755-V1.0","title":"RORSI_3536_2016_213_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T16:17:55.000 to 2016-07-31T20:36:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1755-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:08:59.379178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1756-V1.0","title":"RORSI_3537_2016_213_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T02:52:57.000 to 2016-07-31T08:10:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1756-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:00.383288","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1757-V1.0","title":"RORSI_3538_2016_213_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T03:59:46.000 to 2016-07-31T08:10:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1757-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:01.398401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1758-V1.0","title":"RORSI_3539_2016_214_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-01T16:14:35.000 to 2016-08-01T17:55:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1758-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:02.449806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1759-V1.0","title":"RORSI_3540_2016_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T14:02:00.000 to 2016-08-02T14:54:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1759-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:03.463418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1760-V1.0","title":"RORSI_3541_2016_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T16:11:15.000 to 2016-08-02T16:44:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1760-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:04.388617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1761-V1.0","title":"RORSI_3542_2016_215_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T20:57:05.000 to 2016-08-03T01:02:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1761-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:05.391690","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1762-V1.0","title":"RORSI_3543_2016_216_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-03T16:07:50.000 to 2016-08-03T20:39:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1762-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:06.393387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1763-V1.0","title":"RORSI_3544_2016_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-04T14:01:00.000 to 2016-08-04T15:26:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1763-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:07.398865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1764-V1.0","title":"RORSI_3545_2016_217_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-04T02:39:46.000 to 2016-08-04T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1764-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:08.400330","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1765-V1.0","title":"RORSI_3546_2016_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-05T16:07:05.000 to 2016-08-05T20:41:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1765-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:09.401433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1766-V1.0","title":"RORSI_3547_2016_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-06T16:37:50.000 to 2016-08-06T20:26:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1766-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:10.409393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1767-V1.0","title":"RORSI_3548_2016_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-06T02:33:12.000 to 2016-08-06T06:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1767-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:11.409178","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1768-V1.0","title":"RORSI_3549_2016_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-07T15:54:30.000 to 2016-08-07T23:43:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1768-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:12.412890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1769-V1.0","title":"RORSI_3550_2016_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-07T02:29:55.000 to 2016-08-07T05:18:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1769-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:13.469731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1770-V1.0","title":"RORSI_3551_2016_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-08T16:47:05.000 to 2016-08-08T20:19:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1770-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:14.472946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1771-V1.0","title":"RORSI_3552_2016_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-08T02:26:35.000 to 2016-08-08T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1771-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:15.412862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1772-V1.0","title":"RORSI_3553_2016_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-09T16:47:05.000 to 2016-08-09T20:01:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1772-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:16.416016","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1773-V1.0","title":"RORSI_3554_2016_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-09T02:57:07.000 to 2016-08-09T05:00:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1773-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:17.421340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1774-V1.0","title":"RORSI_3555_2016_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-10T17:57:05.000 to 2016-08-10T20:27:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1774-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:18.423104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1775-V1.0","title":"RORSI_3556_2016_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-10T15:44:25.000 to 2016-08-10T16:03:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1775-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:19.425574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1776-V1.0","title":"RORSI_3557_2016_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-11T15:41:10.000 to 2016-08-11T21:34:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1776-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:20.424213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1777-V1.0","title":"RORSI_3558_2016_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-11T03:17:07.000 to 2016-08-11T05:00:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1777-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:21.429580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1778-V1.0","title":"RORSI_3559_2016_225_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-12T15:37:50.000 to 2016-08-12T16:13:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1778-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:22.431467","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1779-V1.0","title":"RORSI_3560_2016_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-13T15:37:05.000 to 2016-08-13T16:11:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1779-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:23.427183","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1780-V1.0","title":"RORSI_3561_2016_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-13T02:10:18.000 to 2016-08-13T06:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1780-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:24.467701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1782-V1.0","title":"RORSI_3562_2016_228_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-15T02:03:47.000 to 2016-08-15T06:00:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1782-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:25.518614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1783-V1.0","title":"RORSI_3563_2016_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-16T02:00:32.000 to 2016-08-16T06:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1783-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:26.529739","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1784-V1.0","title":"RORSI_3564_2016_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T14:00:50.000 to 2016-08-17T16:25:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1784-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:27.439922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1785-V1.0","title":"RORSI_3565_2016_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T21:57:05.000 to 2016-08-18T00:23:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1785-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:28.448011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1786-V1.0","title":"RORSI_3566_2016_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T03:32:17.000 to 2016-08-17T06:00:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1786-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:29.451910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1787-V1.0","title":"RORSI_3567_2016_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-18T15:17:55.000 to 2016-08-18T21:17:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1787-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:30.455327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1788-V1.0","title":"RORSI_3568_2016_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-18T01:54:02.000 to 2016-08-18T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1788-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:31.451571","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1789-V1.0","title":"RORSI_3569_2016_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-19T15:14:35.000 to 2016-08-19T23:06:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1789-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:32.453593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1790-V1.0","title":"RORSI_3570_2016_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-19T01:50:47.000 to 2016-08-19T05:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1790-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:33.452880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1791-V1.0","title":"RORSI_3571_2016_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-20T15:11:15.000 to 2016-08-20T18:54:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1791-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:34.460031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1792-V1.0","title":"RORSI_3572_2016_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-20T01:47:33.000 to 2016-08-20T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1792-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:35.478039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1793-V1.0","title":"RORSI_3573_2016_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-21T15:08:00.000 to 2016-08-21T21:20:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1793-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:36.525145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1794-V1.0","title":"RORSI_3574_2016_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-21T01:44:18.000 to 2016-08-21T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1794-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:37.539011","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1795-V1.0","title":"RORSI_3575_2016_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-22T15:04:40.000 to 2016-08-22T21:14:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1795-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:38.464073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1796-V1.0","title":"RORSI_3576_2016_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-23T15:01:20.000 to 2016-08-23T21:16:40.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1796-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:39.465970","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1797-V1.0","title":"RORSI_3577_2016_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-23T01:37:45.000 to 2016-08-23T11:49:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1797-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:40.475209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1798-V1.0","title":"RORSI_3578_2016_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-24T14:58:05.000 to 2016-08-24T21:19:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1798-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:41.471938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1799-V1.0","title":"RORSI_3580_2016_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T01:31:21.000 to 2016-08-25T10:44:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1799-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:42.471646","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1800-V1.0","title":"RORSI_3581_2016_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T02:44:45.000 to 2016-08-25T11:44:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1800-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:43.473980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1801-V1.0","title":"RORSI_3582_2016_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T14:54:45.000 to 2016-08-25T21:21:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1801-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:44.475599","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1802-V1.0","title":"RORSI_3579_2016_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-24T01:34:35.000 to 2016-08-24T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1802-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:45.479129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1803-V1.0","title":"RORSI_3583_2016_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-26T14:51:30.000 to 2016-08-26T23:11:50.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1803-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:46.489887","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1804-V1.0","title":"RORSI_3584_2016_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-26T01:28:08.000 to 2016-08-26T07:55:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1804-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:47.537776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1805-V1.0","title":"RORSI_3585_2016_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-27T14:49:30.000 to 2016-08-27T22:03:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1805-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:48.552483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1806-V1.0","title":"RORSI_3586_2016_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-27T01:24:50.000 to 2016-08-27T09:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1806-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:49.487020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1807-V1.0","title":"RORSI_3587_2016_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T14:44:55.000 to 2016-08-28T21:29:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1807-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:50.488619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1808-V1.0","title":"RORSI_3588_2016_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T01:21:40.000 to 2016-08-28T10:35:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1808-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:51.492203","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1809-V1.0","title":"RORSI_3589_2016_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T02:35:45.000 to 2016-08-28T11:36:39.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1809-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:52.492767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1810-V1.0","title":"RORSI_3590_2016_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T14:41:35.000 to 2016-08-29T21:31:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1810-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:53.492325","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1811-V1.0","title":"RORSI_3591_2016_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T01:18:27.000 to 2016-08-29T04:11:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1811-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:54.496208","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1812-V1.0","title":"RORSI_3592_2016_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T01:18:27.000 to 2016-08-29T07:51:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1812-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:55.498677","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1813-V1.0","title":"RORSI_3593_2016_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-30T01:15:13.000 to 2016-08-30T08:02:57.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1813-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:56.501972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1814-V1.0","title":"RORSI_3594_2016_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-30T13:49:50.000 to 2016-08-30T15:48:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1814-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:57.504565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1815-V1.0","title":"RORSI_3595_2016_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-31T14:35:05.000 to 2016-08-31T21:37:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1815-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:58.549441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1816-V1.0","title":"RORSI_3596_2016_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-31T01:12:00.000 to 2016-08-31T05:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1816-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:09:59.593637","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1817-V1.0","title":"RORSI_3597_2016_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-01T19:57:00.000 to 2016-09-01T23:01:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1817-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:00.512185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1818-V1.0","title":"RORSI_3598_2016_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-01T01:08:47.000 to 2016-09-01T11:26:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1818-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:01.509655","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1819-V1.0","title":"RORSI_3599_2016_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-02T14:50:10.000 to 2016-09-02T22:05:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1819-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:02.515618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1820-V1.0","title":"RORSI_3600_2016_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-02T01:05:33.000 to 2016-09-02T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1820-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:03.636110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1821-V1.0","title":"RORSI_3601_2016_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-03T14:25:15.000 to 2016-09-03T16:25:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1821-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:04.525385","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1822-V1.0","title":"RORSI_3602_2016_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-03T01:02:21.000 to 2016-09-03T03:19:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1822-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:05.521031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1823-V1.0","title":"RORSI_3603_2016_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-04T14:21:55.000 to 2016-09-04T23:37:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1823-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:06.523974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1824-V1.0","title":"RORSI_3604_2016_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-04T02:18:07.000 to 2016-09-04T11:18:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1824-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:07.519009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1825-V1.0","title":"RORSI_3605_2016_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-05T14:50:30.000 to 2016-09-05T16:20:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1825-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:08.527533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1826-V1.0","title":"RORSI_3606_2016_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-05T00:55:56.000 to 2016-09-05T07:42:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1826-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:09.558280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1827-V1.0","title":"RORSI_3607_2016_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T20:07:50.000 to 2016-09-06T23:32:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1827-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:10.606992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1828-V1.0","title":"RORSI_3608_2016_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T01:13:36.000 to 2016-09-06T09:29:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1828-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:11.618232","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1829-V1.0","title":"RORSI_3609_2016_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T02:29:35.000 to 2016-09-06T09:29:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1829-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:12.533890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1830-V1.0","title":"RORSI_3610_2016_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-07T14:12:10.000 to 2016-09-07T19:26:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1830-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:13.539956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1831-V1.0","title":"RORSI_3611_2016_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T14:50:45.000 to 2016-09-08T16:15:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1831-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:14.543036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1832-V1.0","title":"RORSI_3612_2016_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T19:46:50.000 to 2016-09-08T22:00:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1832-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:15.542153","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1833-V1.0","title":"RORSI_3613_2016_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T00:46:18.000 to 2016-09-08T10:02:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1833-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:16.548035","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1834-V1.0","title":"RORSI_3614_2016_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-09T14:05:35.000 to 2016-09-09T22:14:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1834-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:17.546801","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1835-V1.0","title":"RORSI_3615_2016_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-09T01:37:55.000 to 2016-09-09T04:14:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1835-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:18.553233","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1836-V1.0","title":"RORSI_3616_2016_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-10T14:02:20.000 to 2016-09-10T22:07:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1836-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:19.553064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1837-V1.0","title":"RORSI_3617_2016_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-10T01:38:07.000 to 2016-09-10T05:00:17.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1837-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:20.568966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1838-V1.0","title":"RORSI_3618_2016_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-11T14:51:10.000 to 2016-09-11T22:10:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1838-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:21.614799","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1839-V1.0","title":"RORSI_3619_2016_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-11T00:36:42.000 to 2016-09-11T09:53:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1839-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:22.630772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1840-V1.0","title":"RORSI_3620_2016_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-12T13:55:50.000 to 2016-09-12T22:14:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1840-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:23.562729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1841-V1.0","title":"RORSI_3621_2016_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-12T01:48:07.000 to 2016-09-12T05:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1841-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:24.560015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1842-V1.0","title":"RORSI_3622_2016_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T14:24:35.000 to 2016-09-13T15:27:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1842-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:25.564543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1843-V1.0","title":"RORSI_3623_2016_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T19:39:25.000 to 2016-09-13T22:17:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1843-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:26.570866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1844-V1.0","title":"RORSI_3624_2016_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T00:30:18.000 to 2016-09-13T10:54:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1844-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:27.568195","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1845-V1.0","title":"RORSI_3625_2016_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-14T21:57:05.000 to 2016-09-14T23:11:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1845-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:28.570908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1846-V1.0","title":"RORSI_3626_2016_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-14T00:27:06.000 to 2016-09-14T04:59:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1846-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:29.575281","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1847-V1.0","title":"RORSI_3627_2016_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T13:46:05.000 to 2016-09-15T15:54:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1847-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:30.574579","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1848-V1.0","title":"RORSI_3628_2016_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T19:36:20.000 to 2016-09-15T22:24:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1848-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:31.576586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1849-V1.0","title":"RORSI_3629_2016_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T02:22:28.000 to 2016-09-15T10:26:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1849-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:32.628231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1850-V1.0","title":"RORSI_3630_2016_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T03:40:12.000 to 2016-09-15T10:26:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1850-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:33.639448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1851-V1.0","title":"RORSI_3631_2016_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-16T13:42:45.000 to 2016-09-16T16:53:04.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1851-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:34.582941","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1852-V1.0","title":"RORSI_3632_2016_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-16T00:20:42.000 to 2016-09-16T07:27:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1852-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:35.586287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1853-V1.0","title":"RORSI_3633_2016_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T14:51:35.000 to 2016-09-17T15:50:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1853-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:36.584647","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1854-V1.0","title":"RORSI_3634_2016_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T20:18:10.000 to 2016-09-17T22:31:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1854-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:37.590586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1855-V1.0","title":"RORSI_3635_2016_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T00:17:31.000 to 2016-09-17T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1855-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:38.590718","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1856-V1.0","title":"RORSI_3636_2016_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T13:36:15.000 to 2016-09-18T15:50:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1856-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:39.593603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1857-V1.0","title":"RORSI_3637_2016_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T20:18:05.000 to 2016-09-18T23:01:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1857-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:40.595344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1858-V1.0","title":"RORSI_3638_2016_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T00:14:15.000 to 2016-09-18T09:32:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1858-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:41.603257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1859-V1.0","title":"RORSI_3639_2016_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T01:32:33.000 to 2016-09-18T10:41:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1859-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:42.601583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1860-V1.0","title":"RORSI_3640_2016_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-19T13:33:00.000 to 2016-09-19T22:39:11.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1860-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:43.635394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1861-V1.0","title":"RORSI_3641_2016_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-19T00:11:07.000 to 2016-09-19T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1861-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:44.685442","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1862-V1.0","title":"RORSI_3642_2016_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-20T14:51:50.000 to 2016-09-20T15:45:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1862-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:45.698656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1863-V1.0","title":"RORSI_3643_2016_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-20T00:07:55.000 to 2016-09-20T07:22:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1863-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:46.609498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1864-V1.0","title":"RORSI_3644_2016_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-21T13:26:30.000 to 2016-09-21T22:52:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1864-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:47.612895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1865-V1.0","title":"RORSI_3645_2016_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T13:23:20.000 to 2016-09-22T15:39:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1865-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:48.613448","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1866-V1.0","title":"RORSI_3646_2016_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T20:15:20.000 to 2016-09-22T22:51:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1866-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:49.616744","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1867-V1.0","title":"RORSI_3647_2016_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T00:01:32.000 to 2016-09-22T05:00:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1867-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:50.622061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1868-V1.0","title":"RORSI_3648_2016_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-23T14:52:05.000 to 2016-09-23T15:34:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1868-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:51.624158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1869-V1.0","title":"RORSI_3649_2016_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T23:58:21.000 to 2016-09-23T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1869-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:52.624830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1870-V1.0","title":"RORSI_3650_2016_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T13:16:50.000 to 2016-09-24T15:33:33.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1870-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:53.626294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1871-V1.0","title":"RORSI_3651_2016_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T00:42:06.000 to 2016-09-24T05:00:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1871-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:54.646793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1872-V1.0","title":"RORSI_3652_2016_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-25T13:13:35.000 to 2016-09-25T15:29:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1872-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:55.695372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1873-V1.0","title":"RORSI_3653_2016_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T23:51:58.000 to 2016-09-25T05:00:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1873-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:56.711031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1874-V1.0","title":"RORSI_3654_2016_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T13:10:20.000 to 2016-09-26T16:35:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1874-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:57.634634","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1875-V1.0","title":"RORSI_3655_2016_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T17:26:05.000 to 2016-09-26T17:31:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1875-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:58.634217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1876-V1.0","title":"RORSI_3656_2016_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T00:48:06.000 to 2016-09-26T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1876-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:10:59.634276","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1877-V1.0","title":"RORSI_3657_2016_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T13:07:05.000 to 2016-09-27T15:05:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1877-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:00.641991","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1878-V1.0","title":"RORSI_3658_2016_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T19:57:10.000 to 2016-09-27T21:00:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1878-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:01.642540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1879-V1.0","title":"RORSI_3659_2016_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T00:45:35.000 to 2016-09-27T05:00:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1879-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:02.649151","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1880-V1.0","title":"RORSI_3660_2016_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-28T13:03:50.000 to 2016-09-28T15:24:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1880-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:03.658768","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-EXT3-1881-V1.0","title":"RORSI_3661_2016_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-29T19:37:10.000 to 2016-09-29T22:17:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1881-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:04.648207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0181-V1.0","title":"RORSI_2001_2014_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T00:22:05.000 to 2014-08-06T02:42:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0181-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:05.666827","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0182-V1.0","title":"RORSI_2002_2014_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T08:45:05.000 to 2014-08-06T12:29:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0182-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:06.706713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0183-V1.0","title":"RORSI_2003_2014_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T15:42:05.000 to 2014-08-06T19:43:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0183-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:07.718659","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0184-V1.0","title":"RORSI_2004_2014_218_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T20:42:05.000 to 2014-08-07T01:43:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0184-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:08.660152","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0185-V1.0","title":"RORSI_2005_2014_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T09:04:15.000 to 2014-08-07T14:04:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0185-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:09.658601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0186-V1.0","title":"RORSI_2006_2014_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T14:19:05.000 to 2014-08-07T19:38:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0186-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:10.659653","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0187-V1.0","title":"RORSI_2007_2014_219_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T19:55:45.000 to 2014-08-08T02:32:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0187-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:11.663053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0188-V1.0","title":"RORSI_2008_2014_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T08:59:30.000 to 2014-08-08T14:00:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0188-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:12.667469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0189-V1.0","title":"RORSI_2009_2014_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T14:14:35.000 to 2014-08-08T19:34:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0189-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:13.669159","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0190-V1.0","title":"RORSI_2010_2014_220_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T19:51:00.000 to 2014-08-09T02:27:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0190-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:14.669050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0191-V1.0","title":"RORSI_2011_2014_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T08:54:50.000 to 2014-08-09T13:55:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0191-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:15.676618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0192-V1.0","title":"RORSI_2012_2014_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T15:42:00.000 to 2014-08-09T19:29:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0192-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:16.681344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0193-V1.0","title":"RORSI_2013_2014_221_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T20:42:00.000 to 2014-08-10T02:13:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0193-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:17.715985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0194-V1.0","title":"RORSI_2014_2014_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T10:01:00.000 to 2014-08-10T13:50:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0194-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:18.765377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0195-V1.0","title":"RORSI_2015_2014_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T14:05:05.000 to 2014-08-10T19:24:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0195-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:19.776962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0196-V1.0","title":"RORSI_2016_2014_222_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T19:41:35.000 to 2014-08-11T02:18:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0196-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:20.684927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0197-V1.0","title":"RORSI_2017_2014_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-11T07:48:25.000 to 2014-08-11T13:46:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0197-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:21.690693","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0198-V1.0","title":"RORSI_2018_2014_223_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-11T14:00:35.000 to 2014-08-11T19:20:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0198-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:22.689280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0199-V1.0","title":"RORSI_2019_2014_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T07:43:45.000 to 2014-08-12T13:41:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0199-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:23.693411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0200-V1.0","title":"RORSI_2020_2014_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T13:56:05.000 to 2014-08-12T15:44:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0200-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:24.692687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0201-V1.0","title":"RORSI_2021_2014_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T16:41:55.000 to 2014-08-12T19:15:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0201-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:25.699543","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0202-V1.0","title":"RORSI_2022_2014_224_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T20:17:31.000 to 2014-08-12T20:43:49.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0202-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:26.698411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0203-V1.0","title":"RORSI_2023_2014_225_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-13T10:00:55.000 to 2014-08-13T13:36:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0203-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:27.702617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0204-V1.0","title":"RORSI_2024_2014_225_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-13T13:51:05.000 to 2014-08-13T19:10:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0204-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:28.724995","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0205-V1.0","title":"RORSI_2025_2014_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T07:34:30.000 to 2014-08-14T13:32:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0205-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:29.768752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0206-V1.0","title":"RORSI_2026_2014_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T13:46:35.000 to 2014-08-14T19:06:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0206-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:30.789363","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0207-V1.0","title":"RORSI_2027_2014_226_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T19:23:05.000 to 2014-08-15T01:59:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0207-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:31.710877","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0208-V1.0","title":"RORSI_2028_2014_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T08:22:55.000 to 2014-08-15T13:27:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0208-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:32.711590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0209-V1.0","title":"RORSI_2029_2014_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T13:42:05.000 to 2014-08-15T19:01:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0209-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:33.728166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0210-V1.0","title":"RORSI_2030_2014_227_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T19:18:30.000 to 2014-08-16T01:20:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0210-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:34.716174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0211-V1.0","title":"RORSI_2031_2014_228_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-16T08:17:20.000 to 2014-08-16T13:22:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0211-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:35.719902","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0212-V1.0","title":"RORSI_2032_2014_228_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-16T13:37:05.000 to 2014-08-16T18:57:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0212-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:36.728596","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0213-V1.0","title":"RORSI_2033_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T00:07:05.000 to 2014-08-17T06:45:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0213-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:37.726639","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0214-V1.0","title":"RORSI_2034_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T07:20:45.000 to 2014-08-17T08:15:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0214-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:38.732515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0215-V1.0","title":"RORSI_2035_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T10:00:45.000 to 2014-08-17T11:44:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0215-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:39.734264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0216-V1.0","title":"RORSI_2036_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T13:33:05.000 to 2014-08-17T16:44:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0216-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:40.790158","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0217-V1.0","title":"RORSI_2037_2014_229_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T17:41:45.000 to 2014-08-17T18:52:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0217-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:41.796929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0218-V1.0","title":"RORSI_2038_2014_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T07:16:15.000 to 2014-08-18T13:13:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0218-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:42.734850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0219-V1.0","title":"RORSI_2039_2014_230_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T13:28:05.000 to 2014-08-18T18:47:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0219-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:43.734082","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0220-V1.0","title":"RORSI_2040_2014_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T23:34:55.000 to 2014-08-19T01:41:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0220-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:44.840251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0221-V1.0","title":"RORSI_2041_2014_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T07:11:45.000 to 2014-08-19T13:09:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0221-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:45.755433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0222-V1.0","title":"RORSI_2042_2014_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T13:24:05.000 to 2014-08-19T18:43:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0222-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:46.745426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0223-V1.0","title":"RORSI_2043_2014_231_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T19:00:25.000 to 2014-08-20T01:37:20.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0223-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:47.746701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0224-V1.0","title":"RORSI_2044_2014_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T10:00:35.000 to 2014-08-20T13:04:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0224-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:48.751498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0225-V1.0","title":"RORSI_2045_2014_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T13:19:05.000 to 2014-08-20T18:39:01.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0225-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:49.752522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0226-V1.0","title":"RORSI_2046_2014_232_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T18:55:55.000 to 2014-08-21T01:32:53.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0226-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:50.754641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0227-V1.0","title":"RORSI_2072_2014_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T07:57:05.000 to 2014-08-21T13:00:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0227-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:51.793672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0228-V1.0","title":"RORSI_2047_2014_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T13:15:05.000 to 2014-08-21T18:34:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0228-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:52.841055","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0229-V1.0","title":"RORSI_2048_2014_233_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T18:51:30.000 to 2014-08-22T01:19:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0229-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:53.758486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0230-V1.0","title":"RORSI_2049_2014_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T07:52:25.000 to 2014-08-22T12:55:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0230-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:54.760930","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0231-V1.0","title":"RORSI_2050_2014_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T13:10:05.000 to 2014-08-22T18:30:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0231-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:55.762861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0232-V1.0","title":"RORSI_2051_2014_234_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T18:47:05.000 to 2014-08-23T00:05:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0232-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:56.767499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0233-V1.0","title":"RORSI_2052_2014_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T07:48:00.000 to 2014-08-23T12:51:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0233-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:57.768243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0234-V1.0","title":"RORSI_2053_2014_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T13:06:05.000 to 2014-08-23T18:14:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0234-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:58.768767","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0235-V1.0","title":"RORSI_2054_2014_235_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T22:52:45.000 to 2014-08-24T02:06:41.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0235-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:11:59.770858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0236-V1.0","title":"RORSI_2055_2014_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T06:49:35.000 to 2014-08-24T08:15:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0236-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:00.776263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0237-V1.0","title":"RORSI_2056_2014_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T10:00:40.000 to 2014-08-24T12:05:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0237-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:01.779217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0238-V1.0","title":"RORSI_2057_2014_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T13:10:25.000 to 2014-08-24T18:21:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0238-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:02.803021","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0239-V1.0","title":"RORSI_2059_2014_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T07:37:15.000 to 2014-08-25T12:42:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0239-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:03.853722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0240-V1.0","title":"RORSI_2058_2014_236_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T18:38:25.000 to 2014-08-25T02:00:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0240-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:04.865975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0241-V1.0","title":"RORSI_2060_2014_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T12:57:05.000 to 2014-08-25T18:17:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0241-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:05.788191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0242-V1.0","title":"RORSI_2061_2014_237_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T22:42:05.000 to 2014-08-26T00:42:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0242-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:06.788900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0243-V1.0","title":"RORSI_2062_2014_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T23:37:09.000 to 2014-08-26T02:02:22.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0243-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:07.792455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0244-V1.0","title":"RORSI_2063_2014_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T06:40:55.000 to 2014-08-26T12:38:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0244-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:08.794132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0245-V1.0","title":"RORSI_2064_2014_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T12:53:05.000 to 2014-08-26T18:12:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0245-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:09.795731","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0246-V1.0","title":"RORSI_2065_2014_238_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T23:02:45.000 to 2014-08-27T01:06:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0246-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:10.799438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0247-V1.0","title":"RORSI_2066_2014_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T06:36:40.000 to 2014-08-27T12:05:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0247-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:11.802315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0248-V1.0","title":"RORSI_2067_2014_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T13:10:40.000 to 2014-08-27T19:01:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0248-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:12.802750","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0249-V1.0","title":"RORSI_2068_2014_239_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T19:18:10.000 to 2014-08-27T23:29:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0249-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:13.813362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0250-V1.0","title":"RORSI_2069_2014_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T23:34:15.000 to 2014-08-28T01:02:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0250-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:14.862391","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0251-V1.0","title":"RORSI_2070_2014_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T06:32:20.000 to 2014-08-28T12:29:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0251-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:15.875757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0252-V1.0","title":"RORSI_2071_2014_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T12:44:05.000 to 2014-08-28T18:04:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0252-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:16.812687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0253-V1.0","title":"RORSI_2073_2014_240_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T18:21:15.000 to 2014-08-29T00:44:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0253-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:17.814332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0254-V1.0","title":"RORSI_2074_2014_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-29T06:38:05.000 to 2014-08-29T18:00:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0254-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:18.814436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0255-V1.0","title":"RORSI_2075_2014_241_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-29T18:17:00.000 to 2014-08-30T00:54:02.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0255-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:19.816736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0256-V1.0","title":"RORSI_2076_2014_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T09:02:05.000 to 2014-08-30T11:57:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0256-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:20.822406","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0257-V1.0","title":"RORSI_2077_2014_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T13:02:05.000 to 2014-08-30T15:17:37.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0257-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:21.821725","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0258-V1.0","title":"RORSI_2078_2014_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T15:22:05.000 to 2014-08-30T17:55:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0258-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:22.820286","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0259-V1.0","title":"RORSI_2079_2014_242_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T18:12:50.000 to 2014-08-31T00:39:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0259-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:23.827764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0260-V1.0","title":"RORSI_2080_2014_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T07:13:40.000 to 2014-08-31T08:16:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0260-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:24.831304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0261-V1.0","title":"RORSI_2081_2014_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T10:00:00.000 to 2014-08-31T12:20:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0261-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:25.870186","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0262-V1.0","title":"RORSI_2082_2014_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T12:31:00.000 to 2014-08-31T17:51:40.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0262-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:26.920951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0263-V1.0","title":"RORSI_2083_2014_243_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T18:08:40.000 to 2014-09-01T00:08:03.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0263-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:27.834020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0264-V1.0","title":"RORSI_2084_2014_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-01T07:12:05.000 to 2014-09-01T17:47:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0264-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:28.838935","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0265-V1.0","title":"RORSI_2085_2014_244_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-01T18:04:30.000 to 2014-09-02T00:29:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0265-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:29.837441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0266-V1.0","title":"RORSI_2086_2014_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-02T06:32:05.000 to 2014-09-02T18:08:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0266-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:30.854628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0267-V1.0","title":"RORSI_2087_2014_245_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-02T20:57:05.000 to 2014-09-03T01:37:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0267-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:31.847818","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0268-V1.0","title":"RORSI_2088_2014_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-03T11:27:05.000 to 2014-09-03T17:39:21.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0268-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:32.846859","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0269-V1.0","title":"RORSI_2089_2014_246_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-03T17:56:15.000 to 2014-09-04T00:30:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0269-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:33.849389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0270-V1.0","title":"RORSI_2090_2014_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-04T11:27:05.000 to 2014-09-04T17:35:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0270-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:34.851832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0271-V1.0","title":"RORSI_2091_2014_247_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-04T18:14:50.000 to 2014-09-05T00:29:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0271-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:35.854291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0272-V1.0","title":"RORSI_2092_2014_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-05T06:52:05.000 to 2014-09-05T17:31:17.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0272-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:36.885857","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0273-V1.0","title":"RORSI_2093_2014_248_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-05T17:48:10.000 to 2014-09-06T00:15:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0273-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:37.929885","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0274-V1.0","title":"RORSI_2094_2014_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-06T06:47:05.000 to 2014-09-06T17:27:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0274-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:38.945097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0275-V1.0","title":"RORSI_2095_2014_249_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-06T17:44:10.000 to 2014-09-07T00:10:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0275-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:39.859557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0276-V1.0","title":"RORSI_2096_2014_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T06:32:05.000 to 2014-09-07T08:16:26.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0276-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:40.867787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0277-V1.0","title":"RORSI_2097_2014_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T09:59:35.000 to 2014-09-07T17:23:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0277-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:41.874393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0278-V1.0","title":"RORSI_2098_2014_250_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T17:38:45.000 to 2014-09-07T23:27:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0278-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:42.868440","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0279-V1.0","title":"RORSI_2099_2014_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-08T06:43:05.000 to 2014-09-08T17:19:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0279-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:43.874962","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0280-V1.0","title":"RORSI_2100_2014_251_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-08T17:36:15.000 to 2014-09-09T00:00:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0280-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:44.871736","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0281-V1.0","title":"RORSI_2101_2014_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T06:37:05.000 to 2014-09-09T17:15:21.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0281-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:45.872760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0282-V1.0","title":"RORSI_2102_2014_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T17:32:20.000 to 2014-09-09T19:02:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0282-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:46.874097","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0283-V1.0","title":"RORSI_2103_2014_252_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T20:57:30.000 to 2014-09-10T00:42:35.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0283-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:47.892149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0284-V1.0","title":"RORSI_2104_2014_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T05:39:10.000 to 2014-09-10T08:16:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0284-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:48.943528","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0285-V1.0","title":"RORSI_2105_2014_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T09:59:25.000 to 2014-09-10T17:11:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0285-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:49.955051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0286-V1.0","title":"RORSI_2106_2014_253_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T17:28:22.000 to 2014-09-11T00:05:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0286-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:50.883954","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0287-V1.0","title":"RORSI_2107_2014_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-11T06:32:02.000 to 2014-09-11T17:07:34.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0287-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:51.887661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0288-V1.0","title":"RORSI_2108_2014_254_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-11T17:24:29.000 to 2014-09-12T01:05:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0288-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:52.892034","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0289-V1.0","title":"RORSI_2109_2014_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-12T06:27:02.000 to 2014-09-12T17:03:42.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0289-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:53.892938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0290-V1.0","title":"RORSI_2110_2014_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-12T17:20:38.000 to 2014-09-13T01:10:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0290-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:54.896663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0291-V1.0","title":"RORSI_2111_2014_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-13T06:22:02.000 to 2014-09-13T17:49:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0291-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:55.897283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0292-V1.0","title":"RORSI_2112_2014_256_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-13T22:12:03.000 to 2014-09-14T01:25:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0292-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:56.903785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0293-V1.0","title":"RORSI_2113_2014_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-14T06:17:02.000 to 2014-09-14T15:12:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0293-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:57.901574","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0294-V1.0","title":"RORSI_2114_2014_257_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-14T17:13:03.000 to 2014-09-14T23:35:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0294-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:58.911335","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0295-V1.0","title":"RORSI_2115_2014_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-15T06:17:02.000 to 2014-09-15T15:10:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0295-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:12:59.952583","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0296-V1.0","title":"RORSI_2116_2014_258_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-15T17:09:03.000 to 2014-09-16T03:36:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0296-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:01.000522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0297-V1.0","title":"RORSI_2117_2014_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-16T05:16:04.000 to 2014-09-16T15:09:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0297-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:01.911757","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0298-V1.0","title":"RORSI_2118_2014_259_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-16T17:05:04.000 to 2014-09-16T23:25:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0298-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:02.911548","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0299-V1.0","title":"RORSI_2119_2014_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-17T06:07:02.000 to 2014-09-17T15:08:07.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0299-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:03.915641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0300-V1.0","title":"RORSI_2120_2014_260_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-17T17:01:03.000 to 2014-09-18T03:42:45.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0300-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:04.918817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0301-V1.0","title":"RORSI_2121_2014_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-18T05:08:34.000 to 2014-09-18T15:07:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0301-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:05.919322","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0302-V1.0","title":"RORSI_2122_2014_261_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-18T16:57:04.000 to 2014-09-18T23:20:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0302-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:06.927490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0303-V1.0","title":"RORSI_2123_2014_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-19T06:02:02.000 to 2014-09-19T14:37:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0303-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:07.924745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0304-V1.0","title":"RORSI_2124_2014_262_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-19T16:54:05.000 to 2014-09-19T23:15:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0304-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:08.925314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0305-V1.0","title":"RORSI_2125_2014_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-20T05:57:05.000 to 2014-09-20T12:45:53.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0305-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:09.928364","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0306-V1.0","title":"RORSI_2126_2014_263_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-20T16:50:05.000 to 2014-09-21T00:27:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0306-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:10.959272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0307-V1.0","title":"RORSI_2127_2014_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T05:52:05.000 to 2014-09-21T08:17:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0307-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:12.006791","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0308-V1.0","title":"RORSI_2128_2014_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T11:38:40.000 to 2014-09-21T14:30:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0308-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:13.023669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0309-V1.0","title":"RORSI_2129_2014_264_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T16:47:05.000 to 2014-09-22T02:47:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0309-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:13.939980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0310-V1.0","title":"RORSI_2130_2014_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-22T04:53:55.000 to 2014-09-22T16:26:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0310-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:14.940737","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0311-V1.0","title":"RORSI_2131_2014_265_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-22T16:43:30.000 to 2014-09-23T01:06:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0311-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:15.943119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0312-V1.0","title":"RORSI_2132_2014_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-23T06:51:34.000 to 2014-09-23T16:22:57.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0312-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:16.948252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0313-V1.0","title":"RORSI_2133_2014_266_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-23T16:39:55.000 to 2014-09-24T00:03:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0313-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:17.942814","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0314-V1.0","title":"RORSI_2134_2014_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-24T09:58:25.000 to 2014-09-24T17:07:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0314-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:18.948316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0315-V1.0","title":"RORSI_2135_2014_267_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-24T17:24:50.000 to 2014-09-25T01:15:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0315-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:19.951999","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0316-V1.0","title":"RORSI_2136_2014_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-25T05:37:05.000 to 2014-09-25T15:12:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0316-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:20.952920","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0317-V1.0","title":"RORSI_2137_2014_268_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-25T16:32:50.000 to 2014-09-26T00:25:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0317-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:21.970479","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0318-V1.0","title":"RORSI_2138_2014_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-26T05:37:05.000 to 2014-09-26T16:12:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0318-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:23.022604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0319-V1.0","title":"RORSI_2139_2014_269_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-26T16:29:20.000 to 2014-09-27T01:10:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0319-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:24.033397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0320-V1.0","title":"RORSI_2140_2014_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-27T05:32:05.000 to 2014-09-27T16:08:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0320-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:24.961472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0321-V1.0","title":"RORSI_2141_2014_270_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-27T16:25:50.000 to 2014-09-28T00:05:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0321-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:26.128864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0322-V1.0","title":"RORSI_2142_2014_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-28T05:27:05.000 to 2014-09-28T16:05:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0322-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:26.967166","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0323-V1.0","title":"RORSI_2143_2014_271_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-28T16:22:20.000 to 2014-09-28T23:10:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0323-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:27.967785","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0324-V1.0","title":"RORSI_2144_2014_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-29T09:58:05.000 to 2014-09-29T16:01:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0324-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:28.970530","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0325-V1.0","title":"RORSI_2145_2014_272_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-29T16:18:55.000 to 2014-09-29T22:55:43.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0325-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:29.972128","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0326-V1.0","title":"RORSI_2146_2014_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-30T05:22:05.000 to 2014-09-30T15:58:30.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0326-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:30.974685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0327-V1.0","title":"RORSI_2147_2014_273_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-30T16:15:30.000 to 2014-10-01T01:15:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0327-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:31.987145","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0328-V1.0","title":"RORSI_2148_2014_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-01T12:53:55.000 to 2014-10-01T15:55:07.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0328-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:32.982407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0329-V1.0","title":"RORSI_2149_2014_274_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-01T16:12:05.000 to 2014-10-02T00:10:09.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0329-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:34.031589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0330-V1.0","title":"RORSI_2150_2014_275_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-02T05:17:05.000 to 2014-10-02T15:51:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0330-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:35.043437","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0331-V1.0","title":"RORSI_2151_2014_275_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-02T16:08:45.000 to 2014-10-02T22:55:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0331-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:35.985577","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0332-V1.0","title":"RORSI_2152_2014_276_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-03T05:12:05.000 to 2014-10-03T15:48:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0332-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:36.990922","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0333-V1.0","title":"RORSI_2153_2014_276_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-03T16:05:25.000 to 2014-10-04T03:37:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0333-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:37.988192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0334-V1.0","title":"RORSI_2154_2014_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-04T04:04:05.000 to 2014-10-04T15:45:05.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0334-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:38.993417","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0335-V1.0","title":"RORSI_2155_2014_277_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-04T16:02:05.000 to 2014-10-04T22:00:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0335-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:40.000589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0336-V1.0","title":"RORSI_2156_2014_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T05:07:05.000 to 2014-10-05T08:18:25.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0336-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:40.998002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0337-V1.0","title":"RORSI_2157_2014_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T08:41:35.000 to 2014-10-05T11:41:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0337-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:42.001669","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0338-V1.0","title":"RORSI_2158_2014_278_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T11:42:35.000 to 2014-10-05T16:26:47.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0338-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:43.002008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0339-V1.0","title":"RORSI_2159_2014_279_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-06T05:02:05.000 to 2014-10-06T15:38:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0339-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:44.002629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0340-V1.0","title":"RORSI_2160_2014_279_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-06T15:55:30.000 to 2014-10-06T22:32:15.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0340-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:45.039403","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0341-V1.0","title":"RORSI_2161_2014_280_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-07T05:02:05.000 to 2014-10-07T16:20:14.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0341-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:46.085635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0342-V1.0","title":"RORSI_2162_2014_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T03:50:50.000 to 2014-10-08T08:50:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0342-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:47.005061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0343-V1.0","title":"RORSI_2163_2014_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T09:50:50.000 to 2014-10-08T15:32:00.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0343-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:48.012083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0344-V1.0","title":"RORSI_2164_2014_281_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T15:48:55.000 to 2014-10-09T01:35:10.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0344-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:49.006222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0345-V1.0","title":"RORSI_2165_2014_282_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-09T04:52:05.000 to 2014-10-09T15:28:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0345-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:50.018849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0346-V1.0","title":"RORSI_2166_2014_282_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-09T15:45:45.000 to 2014-10-09T22:22:26.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0346-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:51.014083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0347-V1.0","title":"RORSI_2167_2014_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-10T04:52:05.000 to 2014-10-10T15:25:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0347-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:52.019950","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0348-V1.0","title":"RORSI_2168_2014_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-10T15:42:30.000 to 2014-10-10T23:10:13.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0348-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:53.022407","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0349-V1.0","title":"RORSI_2169_2014_284_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-11T03:41:10.000 to 2014-10-11T15:22:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0349-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:54.027312","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0350-V1.0","title":"RORSI_2170_2014_284_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-11T15:39:20.000 to 2014-10-11T22:16:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0350-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:55.033273","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0351-V1.0","title":"RORSI_2171_2014_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T03:13:11.000 to 2014-10-12T08:18:56.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0351-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:56.048189","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0352-V1.0","title":"RORSI_2172_2014_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T08:41:05.000 to 2014-10-12T11:38:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0352-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:57.097162","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0353-V1.0","title":"RORSI_2173_2014_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T12:29:59.000 to 2014-10-12T15:19:16.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0353-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:58.111171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0354-V1.0","title":"RORSI_2174_2014_285_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T15:36:10.000 to 2014-10-12T21:50:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0354-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:13:59.037984","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0355-V1.0","title":"RORSI_2175_2014_286_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-13T03:34:50.000 to 2014-10-13T15:16:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0355-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:00.036581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0356-V1.0","title":"RORSI_2176_2014_286_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-13T15:33:05.000 to 2014-10-13T22:09:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0356-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:01.039618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0357-V1.0","title":"RORSI_2177_2014_287_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-14T04:37:05.000 to 2014-10-14T15:12:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0357-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:02.048614","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0358-V1.0","title":"RORSI_2178_2014_287_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-14T15:29:55.000 to 2014-10-14T22:06:39.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0358-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:03.043494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0359-V1.0","title":"RORSI_2179_2014_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T04:37:05.000 to 2014-10-15T08:19:08.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0359-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:04.051025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0360-V1.0","title":"RORSI_2180_2014_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T08:40:55.000 to 2014-10-15T09:58:50.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0360-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:05.050433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0361-V1.0","title":"RORSI_2181_2014_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T10:50:11.000 to 2014-10-15T15:09:51.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0361-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:06.054764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0362-V1.0","title":"RORSI_2182_2014_288_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T15:26:50.000 to 2014-10-15T22:52:33.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0362-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:07.059925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0364-V1.0","title":"RORSI_2183_2014_289_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-16T15:23:45.000 to 2014-10-17T01:16:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0364-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:08.111285","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0365-V1.0","title":"RORSI_2184_2014_290_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-17T03:27:05.000 to 2014-10-17T15:03:46.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0365-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:09.121795","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0366-V1.0","title":"RORSI_2185_2014_290_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-17T15:20:40.000 to 2014-10-17T22:55:11.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0366-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:10.063589","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0367-V1.0","title":"RORSI_2186_2014_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-18T04:27:05.000 to 2014-10-18T15:00:42.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0367-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:11.065947","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0368-V1.0","title":"RORSI_2187_2014_291_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-18T15:17:40.000 to 2014-10-18T21:30:09.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0368-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:12.059362","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0369-V1.0","title":"RORSI_2188_2014_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T04:22:05.000 to 2014-10-19T08:19:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0369-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:13.069089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0370-V1.0","title":"RORSI_2189_2014_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T11:36:40.000 to 2014-10-19T14:57:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0370-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:14.070126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0371-V1.0","title":"RORSI_2190_2014_292_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T15:15:40.000 to 2014-10-19T22:01:23.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0371-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:15.072569","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0372-V1.0","title":"RORSI_2191_2014_293_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-20T12:27:10.000 to 2014-10-20T14:55:43.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0372-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:16.075841","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0373-V1.0","title":"RORSI_2192_2014_293_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-20T15:12:40.000 to 2014-10-20T21:48:12.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0373-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:17.082264","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0374-V1.0","title":"RORSI_2193_2014_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-21T04:17:05.000 to 2014-10-21T14:51:46.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0374-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:18.081110","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0375-V1.0","title":"RORSI_2194_2014_294_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-21T15:08:40.000 to 2014-10-21T22:16:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0375-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:19.114745","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0376-V1.0","title":"RORSI_2195_2014_295_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T04:17:05.000 to 2014-10-22T08:19:36.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0376-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:20.165525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0377-V1.0","title":"RORSI_2196_2014_295_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T11:36:25.000 to 2014-10-22T15:31:18.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0377-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:21.086389","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0378-V1.0","title":"RORSI_2197_2014_295_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T15:48:15.000 to 2014-10-22T22:57:04.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0378-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:22.089910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0379-V1.0","title":"RORSI_2198_2014_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T02:54:10.000 to 2014-10-23T14:45:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0379-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:23.094416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0380-V1.0","title":"RORSI_2199_2014_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T03:48:31.000 to 2014-10-23T14:45:48.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0380-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:24.093074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0381-V1.0","title":"RORSI_2200_2014_296_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T15:02:45.000 to 2014-10-23T21:39:15.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0381-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:25.096411","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0383-V1.0","title":"RORSI_2201_2014_297_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-24T14:59:50.000 to 2014-10-24T23:40:14.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0383-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:26.097042","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0384-V1.0","title":"RORSI_2202_2014_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T04:07:05.000 to 2014-10-25T07:49:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0384-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:27.101064","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0385-V1.0","title":"RORSI_2203_2014_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T12:21:15.000 to 2014-10-25T14:39:58.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0385-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:28.106394","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0386-V1.0","title":"RORSI_2204_2014_298_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T14:56:55.000 to 2014-10-25T21:33:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0386-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:29.106180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0387-V1.0","title":"RORSI_2205_2014_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-26T04:02:05.000 to 2014-10-26T14:37:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0387-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:30.128395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0388-V1.0","title":"RORSI_2206_2014_299_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-26T14:54:00.000 to 2014-10-26T21:30:32.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0388-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:31.182258","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0389-V1.0","title":"RORSI_2207_2014_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T04:02:05.000 to 2014-10-27T14:34:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0389-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:32.191397","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0390-V1.0","title":"RORSI_2208_2014_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T04:56:57.000 to 2014-10-27T14:34:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0390-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:33.110959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0391-V1.0","title":"RORSI_2209_2014_300_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T14:51:10.000 to 2014-10-27T22:16:27.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0391-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:34.115461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0392-V1.0","title":"RORSI_2210_2014_301_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-28T03:57:05.000 to 2014-10-28T12:19:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0392-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:35.117939","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0393-V1.0","title":"RORSI_2211_2014_301_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-28T14:48:20.000 to 2014-10-28T21:24:45.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0393-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:36.120868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0394-V1.0","title":"RORSI_2212_2014_302_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-29T14:45:30.000 to 2014-10-29T22:29:54.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0394-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:37.125315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0395-V1.0","title":"RORSI_2213_2014_303_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-30T09:53:05.000 to 2014-10-30T14:25:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0395-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:38.126004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0396-V1.0","title":"RORSI_2214_2014_303_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-30T14:42:40.000 to 2014-10-30T21:19:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0396-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:39.126272","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0397-V1.0","title":"RORSI_2215_2014_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-31T10:02:05.000 to 2014-10-31T14:22:55.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0397-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:40.125881","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0398-V1.0","title":"RORSI_2216_2014_304_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-31T14:39:50.000 to 2014-11-01T02:11:18.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0398-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:41.136526","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0400-V1.0","title":"RORSI_2217_2014_305_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-01T14:37:05.000 to 2014-11-01T21:13:28.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0400-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:42.186645","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0402-V1.0","title":"RORSI_2218_2014_306_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-02T16:26:10.000 to 2014-11-02T21:10:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0402-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:43.200199","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0403-V1.0","title":"RORSI_2219_2014_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T03:42:05.000 to 2014-11-03T08:20:20.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0403-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:44.134802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0404-V1.0","title":"RORSI_2220_2014_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T08:39:45.000 to 2014-11-03T11:40:02.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0404-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:45.140810","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0405-V1.0","title":"RORSI_2221_2014_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T12:31:23.000 to 2014-11-03T15:53:23.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0405-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:46.134868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0406-V1.0","title":"RORSI_2222_2014_307_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T15:11:05.000 to 2014-11-03T21:29:22.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0406-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:47.141864","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0408-V1.0","title":"RORSI_2223_2014_308_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-04T20:57:05.000 to 2014-11-04T23:24:48.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0408-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:48.147105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0409-V1.0","title":"RORSI_2224_2014_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-05T03:38:05.000 to 2014-11-05T10:25:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0409-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:49.149005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0410-V1.0","title":"RORSI_2225_2014_309_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-05T15:26:10.000 to 2014-11-05T19:39:27.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0410-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:50.153429","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0412-V1.0","title":"RORSI_2226_2014_310_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-06T14:23:25.000 to 2014-11-06T23:09:52.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0412-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:51.151218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0414-V1.0","title":"RORSI_2227_2014_311_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-07T15:00:45.000 to 2014-11-07T21:00:06.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0414-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:52.156794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0416-V1.0","title":"RORSI_2228_2014_312_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-08T14:57:05.000 to 2014-11-08T20:53:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0416-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:53.211927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0418-V1.0","title":"RORSI_2229_2014_313_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-09T15:52:16.000 to 2014-11-09T21:50:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0418-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:54.243666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0420-V1.0","title":"RORSI_2230_2014_314_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-10T14:51:05.000 to 2014-11-11T03:06:06.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0420-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:55.161134","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0422-V1.0","title":"RORSI_2231_2014_315_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-11T14:48:05.000 to 2014-11-12T03:03:12.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0422-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:56.157149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0423-V1.0","title":"RORSI_2232_2014_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T03:05:00.000 to 2014-11-12T07:04:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0423-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:57.165045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0424-V1.0","title":"RORSI_2233_2014_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T07:00:45.000 to 2014-11-12T11:04:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0424-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:58.167670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0426-V1.0","title":"RORSI_2234_2014_316_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T14:07:05.000 to 2014-11-13T02:42:38.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0426-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:14:59.168855","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0427-V1.0","title":"RORSI_2235_2014_317_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-13T01:55:40.000 to 2014-11-13T10:41:37.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0427-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:00.176494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0428-V1.0","title":"RORSI_2236_2014_317_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-13T11:32:54.000 to 2014-11-13T14:24:41.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0428-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:01.199817","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0430-V1.0","title":"RORSI_2237_2014_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T03:07:05.000 to 2014-11-14T06:11:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0430-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:02.177161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0431-V1.0","title":"RORSI_2238_2014_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T04:05:30.000 to 2014-11-14T14:20:54.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0431-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:03.177830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0432-V1.0","title":"RORSI_2239_2014_318_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T14:38:25.000 to 2014-11-15T02:38:24.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0432-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:04.206103","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0434-V1.0","title":"RORSI_2240_2014_319_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-15T14:35:50.000 to 2014-11-16T01:35:49.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0434-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:05.256483","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0435-V1.0","title":"RORSI_2241_2014_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T01:47:50.000 to 2014-11-16T05:20:58.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0435-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:06.267511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0436-V1.0","title":"RORSI_2242_2014_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T08:35:05.000 to 2014-11-16T14:14:59.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0436-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:07.368874","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0437-V1.0","title":"RORSI_2243_2014_320_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T14:32:20.000 to 2014-11-17T02:48:31.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0437-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:08.194295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0439-V1.0","title":"RORSI_2244_2014_321_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-17T13:54:50.000 to 2014-11-17T20:30:47.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0439-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:09.207896","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0440-V1.0","title":"RORSI_2245_2014_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T01:42:45.000 to 2014-11-18T09:42:44.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0440-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:10.201869","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0441-V1.0","title":"RORSI_2246_2014_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T02:41:29.000 to 2014-11-18T13:35:19.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0441-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:11.199061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0442-V1.0","title":"RORSI_2247_2014_322_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T13:52:15.000 to 2014-11-18T20:28:13.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0442-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:12.202278","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0443-V1.0","title":"RORSI_2248_2014_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T03:55:50.000 to 2014-11-19T07:00:19.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0443-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:13.201113","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0444-V1.0","title":"RORSI_2249_2014_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T06:14:49.000 to 2014-11-19T14:07:29.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0444-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:14.204212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-RSI-1/2/3-PRL-0445-V1.0","title":"RORSI_2250_2014_323_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T14:24:25.000 to 2014-11-19T20:35:08.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0445-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:15.222683","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC1-MTP010-V1.0","title":"ROSETTA VIRTIS ESC1-MTP010 DATA","description":"ROSETTA VIRTIS data for ESC1-MTP010 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:16.267464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC1-MTP010-V2.0","title":"ROSETTA VIRTIS ESC1-MTP010 DATA","description":"ROSETTA VIRTIS RAW data for ESC1-MTP010 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp010-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:17.281218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC1-MTP011-V1.0","title":"ROSETTA VIRTIS ESC1-MTP011 DATA","description":"ROSETTA VIRTIS data for ESC1-MTP011 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:18.219779","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC1-MTP011-V2.0","title":"ROSETTA VIRTIS ESC1-MTP011 DATA","description":"ROSETTA VIRTIS RAW data for ESC1-MTP011 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp011-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:19.225790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC1-MTP012-V1.0","title":"ROSETTA VIRTIS ESC1-MTP012 DATA","description":"ROSETTA VIRTIS data for ESC1-MTP012 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:20.227512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC1-MTP012-V2.0","title":"ROSETTA VIRTIS ESC1-MTP012 DATA","description":"ROSETTA VIRTIS RAW data for ESC1-MTP012 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp012-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:21.225359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC1-MTP013-V1.0","title":"ROSETTA VIRTIS ESC1-MTP013 DATA","description":"ROSETTA VIRTIS data for ESC1-MTP013 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:22.239665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC1-MTP013-V2.0","title":"ROSETTA VIRTIS ESC1-MTP013 DATA","description":"ROSETTA VIRTIS RAW data for ESC1-MTP013 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp013-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:23.240865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC2-MTP014-V1.0","title":"ROSETTA VIRTIS ESC2-MTP014 DATA","description":"ROSETTA VIRTIS data for ESC2-MTP014 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:24.240698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC2-MTP014-V2.0","title":"ROSETTA VIRTIS ESC2-MTP014 DATA","description":"ROSETTA VIRTIS RAW data for ESC2-MTP014 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp014-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:25.246313","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC2-MTP015-V1.0","title":"ROSETTA VIRTIS ESC2-MTP015 DATA","description":"ROSETTA VIRTIS data for ESC2-MTP015 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:26.249685","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC2-MTP015-V2.0","title":"ROSETTA VIRTIS ESC2-MTP015 DATA","description":"ROSETTA VIRTIS RAW data for ESC2-MTP015 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp015-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:27.273694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC2-MTP016-V1.0","title":"ROSETTA VIRTIS ESC2-MTP016 DATA","description":"ROSETTA VIRTIS data for ESC2-MTP016 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:28.325643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC2-MTP016-V2.0","title":"ROSETTA VIRTIS ESC2-MTP016 DATA","description":"ROSETTA VIRTIS RAW data for ESC2-MTP016 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp016-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:29.338150","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC2-MTP017-V1.0","title":"ROSETTA VIRTIS ESC2-MTP017 DATA","description":"ROSETTA VIRTIS data for ESC2-MTP017 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:30.260061","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC2-MTP017-V2.0","title":"ROSETTA VIRTIS ESC2-MTP017 DATA","description":"ROSETTA VIRTIS RAW data for ESC2-MTP017 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp017-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:31.265895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC3-MTP018-V1.0","title":"ROSETTA VIRTIS ESC3-MTP018 DATA","description":"ROSETTA VIRTIS data for ESC3-MTP018 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:32.269981","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC3-MTP018-V2.0","title":"ROSETTA VIRTIS ESC3-MTP018 DATA","description":"ROSETTA VIRTIS RAW data for ESC3-MTP018 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp018-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:33.269628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC3-MTP019-V1.0","title":"ROSETTA VIRTIS ESC3-MTP019 DATA","description":"ROSETTA VIRTIS data for ESC3-MTP019 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:34.281698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC3-MTP019-V2.0","title":"ROSETTA VIRTIS ESC3-MTP019 DATA","description":"ROSETTA VIRTIS RAW data for ESC3-MTP019 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp019-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:35.279471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC3-MTP020-V1.0","title":"ROSETTA VIRTIS ESC3-MTP020 DATA","description":"ROSETTA VIRTIS data for ESC3-MTP020 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:36.281604","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC3-MTP020-V2.0","title":"ROSETTA VIRTIS ESC3-MTP020 DATA","description":"ROSETTA VIRTIS RAW data for ESC3-MTP020 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp020-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:37.292384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC3-MTP021-V1.0","title":"ROSETTA VIRTIS ESC3-MTP021 DATA","description":"ROSETTA VIRTIS data for ESC3-MTP021 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:38.292447","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC3-MTP021-V2.0","title":"ROSETTA VIRTIS ESC3-MTP021 DATA","description":"ROSETTA VIRTIS RAW data for ESC3-MTP021 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp021-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:39.338015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC4-MTP022-V1.0","title":"ROSETTA VIRTIS ESC4-MTP022 DATA","description":"ROSETTA VIRTIS data for ESC4-MTP022 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:40.377534","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC4-MTP022-V2.0","title":"ROSETTA VIRTIS ESC4-MTP022 DATA","description":"ROSETTA VIRTIS RAW data for ESC4-MTP022 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp022-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:41.394576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC4-MTP023-V1.0","title":"ROSETTA VIRTIS ESC4-MTP023 DATA","description":"ROSETTA VIRTIS data for ESC4-MTP023 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:42.310280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC4-MTP023-V2.0","title":"ROSETTA VIRTIS ESC4-MTP023 DATA","description":"ROSETTA VIRTIS RAW data for ESC4-MTP023 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp023-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:43.313398","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC4-MTP024-V1.0","title":"ROSETTA VIRTIS ESC4-MTP024 DATA","description":"ROSETTA VIRTIS data for ESC4-MTP024 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:44.319375","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-ESC4-MTP024-V2.0","title":"ROSETTA VIRTIS ESC4-MTP024 DATA","description":"ROSETTA VIRTIS RAW data for ESC4-MTP024 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp024-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:45.333472","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT1-MTP025-V1.0","title":"ROSETTA VIRTIS EXT1-MTP025 DATA","description":"ROSETTA VIRTIS data for EXT1-MTP025 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:46.323723","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT1-MTP025-V2.0","title":"ROSETTA VIRTIS EXT1-MTP025 DATA","description":"ROSETTA VIRTIS RAW data for EXT1-MTP025 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp025-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:47.330340","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT1-MTP026-V1.0","title":"ROSETTA VIRTIS EXT1-MTP026 DATA","description":"ROSETTA VIRTIS data for EXT1-MTP026 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:48.329374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT1-MTP026-V2.0","title":"ROSETTA VIRTIS EXT1-MTP026 DATA","description":"ROSETTA VIRTIS RAW data for EXT1-MTP026 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp026-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:49.332522","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT1-MTP027-V1.0","title":"ROSETTA VIRTIS EXT1-MTP027 DATA","description":"ROSETTA VIRTIS data for EXT1-MTP027 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:50.341643","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT1-MTP027-V2.0","title":"ROSETTA VIRTIS EXT1-MTP027 DATA","description":"ROSETTA VIRTIS RAW data for EXT1-MTP027 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp027-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:51.391916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT2-MTP028-V1.0","title":"ROSETTA VIRTIS EXT2-MTP028 DATA","description":"ROSETTA VIRTIS data for EXT2-MTP028 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:52.405295","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT2-MTP028-V2.0","title":"ROSETTA VIRTIS EXT2-MTP028 DATA","description":"ROSETTA VIRTIS RAW data for EXT2-MTP028 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp028-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:53.347729","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT2-MTP029-V1.0","title":"ROSETTA VIRTIS EXT2-MTP029 DATA","description":"ROSETTA VIRTIS data for EXT2-MTP029 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:54.354309","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT2-MTP029-V2.0","title":"ROSETTA VIRTIS EXT2-MTP029 DATA","description":"ROSETTA VIRTIS RAW data for EXT2-MTP029 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp029-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:55.358740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT2-MTP030-V1.0","title":"ROSETTA VIRTIS EXT2-MTP030 DATA","description":"ROSETTA VIRTIS data for EXT2-MTP030 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:56.364374","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT2-MTP030-V2.0","title":"ROSETTA VIRTIS EXT2-MTP030 DATA","description":"ROSETTA VIRTIS RAW data for EXT2-MTP030 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp030-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:57.376697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP031-V1.0","title":"ROSETTA VIRTIS EXT3-MTP031 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP031 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:58.372426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP031-V2.0","title":"ROSETTA VIRTIS EXT3-MTP031 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP031 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp031-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:15:59.375838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP032-V1.0","title":"ROSETTA VIRTIS EXT3-MTP032 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP032 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:00.377504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP032-V2.0","title":"ROSETTA VIRTIS EXT3-MTP032 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP032 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp032-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:01.373802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP033-V1.0","title":"ROSETTA VIRTIS EXT3-MTP033 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP033 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:02.403586","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP033-V2.0","title":"ROSETTA VIRTIS EXT3-MTP033 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP033 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp033-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:03.454148","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP034-V1.0","title":"ROSETTA VIRTIS EXT3-MTP034 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP034 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:04.464660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP034-V2.0","title":"ROSETTA VIRTIS EXT3-MTP034 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP034 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp034-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:05.393444","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP035-V1.0","title":"ROSETTA VIRTIS EXT3-MTP035 DATA","description":"ROSETTA VIRTIS data for EXT3-MTP035 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:06.403420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-EXT3-MTP035-V2.0","title":"ROSETTA VIRTIS EXT3-MTP035 DATA","description":"ROSETTA VIRTIS RAW data for EXT3-MTP035 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp035-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:07.409775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-COM-V2.0","title":"ROSETTA VIRTIS PRL-COM DATA","description":"ROSETTA VIRTIS RAW data for PRL-COM phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-com-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:08.410069","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP004-V1.0","title":"ROSETTA VIRTIS PRL-MTP004 DATA","description":"ROSETTA VIRTIS data for PRL-MTP004 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:09.417227","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP004-V2.0","title":"ROSETTA VIRTIS PRL-MTP004 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP004 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp004-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:10.418188","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP005-V1.0","title":"ROSETTA VIRTIS PRL-MTP005 DATA","description":"ROSETTA VIRTIS data for PRL-MTP005 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:11.416314","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP005-V2.0","title":"ROSETTA VIRTIS PRL-MTP005 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP005 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp005-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:12.428978","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP006-V1.0","title":"ROSETTA VIRTIS PRL-MTP006 DATA","description":"ROSETTA VIRTIS data for PRL-MTP006 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:13.426418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP006-V2.0","title":"ROSETTA VIRTIS PRL-MTP006 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP006 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp006-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:14.455513","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP007-V1.0","title":"ROSETTA VIRTIS PRL-MTP007 DATA","description":"ROSETTA VIRTIS data for PRL-MTP007 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:15.515749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP007-V2.0","title":"ROSETTA VIRTIS PRL-MTP007 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP007 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp007-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:16.523926","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP008-V1.0","title":"ROSETTA VIRTIS PRL-MTP008 DATA","description":"ROSETTA VIRTIS data for PRL-MTP008 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:17.439165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP008-V2.0","title":"ROSETTA VIRTIS PRL-MTP008 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP008 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp008-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:18.442575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP009-V1.0","title":"ROSETTA VIRTIS PRL-MTP009 DATA","description":"ROSETTA VIRTIS data for PRL-MTP009 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:19.448753","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-2-PRL-MTP009-V2.0","title":"ROSETTA VIRTIS PRL-MTP009 DATA","description":"ROSETTA VIRTIS RAW data for PRL-MTP009 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp009-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:20.451419","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC1-MTP010-V1.0","title":"ROSETTA VIRTIS ESC1-MTP010 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP010 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:21.458200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC1-MTP010-V2.0","title":"ROSETTA VIRTIS ESC1-MTP010 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP010 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp010-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:22.459512","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC1-MTP011-V1.0","title":"ROSETTA VIRTIS ESC1-MTP011 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP011 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:23.466550","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC1-MTP011-V2.0","title":"ROSETTA VIRTIS ESC1-MTP011 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP011 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp011-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:24.465376","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC1-MTP012-V1.0","title":"ROSETTA VIRTIS ESC1-MTP012 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP012 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:25.474633","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC1-MTP012-V2.0","title":"ROSETTA VIRTIS ESC1-MTP012 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP012 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp012-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:26.526879","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC1-MTP013-V1.0","title":"ROSETTA VIRTIS ESC1-MTP013 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP013 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:27.533705","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC1-MTP013-V2.0","title":"ROSETTA VIRTIS ESC1-MTP013 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC1-MTP013 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp013-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:28.477664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC2-MTP014-V1.0","title":"ROSETTA VIRTIS ESC2-MTP014 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP014 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:29.483111","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC2-MTP014-V2.0","title":"ROSETTA VIRTIS ESC2-MTP014 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP014 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp014-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:30.483401","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC2-MTP015-V1.0","title":"ROSETTA VIRTIS ESC2-MTP015 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP015 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:31.486945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC2-MTP015-V2.0","title":"ROSETTA VIRTIS ESC2-MTP015 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP015 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp015-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:32.492830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC2-MTP016-V1.0","title":"ROSETTA VIRTIS ESC2-MTP016 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP016 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:33.496895","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC2-MTP016-V2.0","title":"ROSETTA VIRTIS ESC2-MTP016 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP016 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp016-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:34.497866","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC2-MTP017-V1.0","title":"ROSETTA VIRTIS ESC2-MTP017 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP017 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:35.502192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC2-MTP017-V2.0","title":"ROSETTA VIRTIS ESC2-MTP017 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC2-MTP017 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp017-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:36.509716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC3-MTP018-V1.0","title":"ROSETTA VIRTIS ESC3-MTP018 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP018 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:37.541490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC3-MTP018-V2.0","title":"ROSETTA VIRTIS ESC3-MTP018 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP018 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp018-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:38.579058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC3-MTP019-V1.0","title":"ROSETTA VIRTIS ESC3-MTP019 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP019 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:39.593009","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC3-MTP019-V2.0","title":"ROSETTA VIRTIS ESC3-MTP019 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP019 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp019-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:40.519969","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC3-MTP020-V1.0","title":"ROSETTA VIRTIS ESC3-MTP020 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP020 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:41.525480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC3-MTP020-V2.0","title":"ROSETTA VIRTIS ESC3-MTP020 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP020 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp020-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:42.527644","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC3-MTP021-V1.0","title":"ROSETTA VIRTIS ESC3-MTP021 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP021 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:43.537541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC3-MTP021-V2.0","title":"ROSETTA VIRTIS ESC3-MTP021 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC3-MTP021 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp021-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:44.538161","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC4-MTP022-V1.0","title":"ROSETTA VIRTIS ESC4-MTP022 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP022 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:45.553007","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC4-MTP022-V2.0","title":"ROSETTA VIRTIS ESC4-MTP022 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP022 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp022-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:46.547956","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC4-MTP023-V1.0","title":"ROSETTA VIRTIS ESC4-MTP023 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP023 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:47.555307","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC4-MTP023-V2.0","title":"ROSETTA VIRTIS ESC4-MTP023 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP023 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp023-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:48.652716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC4-MTP024-V1.0","title":"ROSETTA VIRTIS ESC4-MTP024 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP024 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:49.594149","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-ESC4-MTP024-V2.0","title":"ROSETTA VIRTIS ESC4-MTP024 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for ESC4-MTP024 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp024-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:50.640174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT1-MTP025-V1.0","title":"ROSETTA VIRTIS EXT1-MTP025 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP025 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:51.651490","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT1-MTP025-V2.0","title":"ROSETTA VIRTIS EXT1-MTP025 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP025 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp025-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:52.570660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT1-MTP026-V1.0","title":"ROSETTA VIRTIS EXT1-MTP026 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP026 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:53.567628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT1-MTP026-V2.0","title":"ROSETTA VIRTIS EXT1-MTP026 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP026 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp026-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:54.566496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT1-MTP027-V1.0","title":"ROSETTA VIRTIS EXT1-MTP027 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP027 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:55.576601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT1-MTP027-V2.0","title":"ROSETTA VIRTIS EXT1-MTP027 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT1-MTP027 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp027-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:56.588960","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT2-MTP028-V1.0","title":"ROSETTA VIRTIS EXT2-MTP028 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP028 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:57.583544","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT2-MTP028-V2.0","title":"ROSETTA VIRTIS EXT2-MTP028 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP028 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp028-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:58.588769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT2-MTP029-V1.0","title":"ROSETTA VIRTIS EXT2-MTP029 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP029 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:16:59.589593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT2-MTP029-V2.0","title":"ROSETTA VIRTIS EXT2-MTP029 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP029 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp029-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:00.597908","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT2-MTP030-V1.0","title":"ROSETTA VIRTIS EXT2-MTP030 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP030 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:01.646224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT2-MTP030-V2.0","title":"ROSETTA VIRTIS EXT2-MTP030 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT2-MTP030 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp030-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:02.661880","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP031-V1.0","title":"ROSETTA VIRTIS EXT3-MTP031 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP031 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:03.604107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP031-V2.0","title":"ROSETTA VIRTIS EXT3-MTP031 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP031 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp031-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:04.606561","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP032-V1.0","title":"ROSETTA VIRTIS EXT3-MTP032 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP032 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:05.615823","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP032-V2.0","title":"ROSETTA VIRTIS EXT3-MTP032 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP032 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp032-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:06.611955","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP033-V1.0","title":"ROSETTA VIRTIS EXT3-MTP033 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP033 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:07.620201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP033-V2.0","title":"ROSETTA VIRTIS EXT3-MTP033 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP033 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp033-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:08.630005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP034-V1.0","title":"ROSETTA VIRTIS EXT3-MTP034 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP034 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:09.633452","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP034-V2.0","title":"ROSETTA VIRTIS EXT3-MTP034 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP034 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp034-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:10.637059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP035-V1.0","title":"ROSETTA VIRTIS EXT3-MTP035 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP035 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:11.635426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-EXT3-MTP035-V2.0","title":"ROSETTA VIRTIS EXT3-MTP035 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for EXT3-MTP035 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp035-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:12.654294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP004-V1.0","title":"ROSETTA VIRTIS PRL-MTP004 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP004 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:13.708798","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP004-V2.0","title":"ROSETTA VIRTIS PRL-MTP004 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP004 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp004-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:14.717711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP005-V1.0","title":"ROSETTA VIRTIS PRL-MTP005 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP005 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:15.652461","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP005-V2.0","title":"ROSETTA VIRTIS PRL-MTP005 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP005 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp005-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:16.655716","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP006-V1.0","title":"ROSETTA VIRTIS PRL-MTP006 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP006 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:17.653381","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP006-V2.0","title":"ROSETTA VIRTIS PRL-MTP006 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP006 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp006-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:18.660239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP007-V1.0","title":"ROSETTA VIRTIS PRL-MTP007 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP007 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:19.662046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP007-V2.0","title":"ROSETTA VIRTIS PRL-MTP007 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP007 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp007-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:20.670168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP008-V1.0","title":"ROSETTA VIRTIS PRL-MTP008 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP008 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:21.674952","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP008-V2.0","title":"ROSETTA VIRTIS PRL-MTP008 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP008 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp008-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:22.682327","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP009-V1.0","title":"ROSETTA VIRTIS PRL-MTP009 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP009 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:23.682138","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-3-PRL-MTP009-V2.0","title":"ROSETTA VIRTIS PRL-MTP009 LEVEL 3 DATA","description":"ROSETTA VIRTIS level 3 data for PRL-MTP009 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp009-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:24.718549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C-VIRTIS-5-67P-MAPS-V1.0","title":"ROSETTA-ORBITER 67P VIRTIS 5 MAPS V1.0","description":"ROSETTA VIRTIS level 5 data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-5-67p-maps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:25.767521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-ALICE-2-CR4A-V1.0","title":"ROSETTA ALICE IN CRUISE 4A PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:26.778089","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-ALICE-2-RVM1-V1.0","title":"ROSETTA ALICE IN RVM1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:27.695665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-ALICE-3-CR4A-V1.0","title":"ROSETTA ALICE IN CRUISE 4A PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:28.698787","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-ALICE-3-EAR1-V1.0","title":"ROSETTA ALICE IN EARTH 1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the first Earth swing-by phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:29.702756","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-ALICE-4-CR4A-V1.0","title":"ROSETTA ALICE IN AST 1 PHASE, RESAMPLED DATA","description":"This volume contains calibrated, resampled data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-4-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:30.707473","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-COSIMA-3-V2.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO COMET PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-cosima-3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:31.712608","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-COSIMA-3-V3.0","title":"ROSETTA COSIMA CALIBRATION DATA UPTO COMET PHASE","description":"This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-cosima-3-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:32.717508","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-CVP-FULL-V1.0","title":"ROMID_1001","description":"Commissioning Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-cvp-full-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:33.722296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-CVP-FULL-V3.0","title":"MIDAS SCIENCE DATA FOR THE COMMISSIONING PHASE","description":"Commissioning Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-cvp-full-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:34.724697","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-GRND-REF-2008-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Reference Measurement Data of 2008","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:35.730198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-GRND-REF-2009-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:36.776294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-GRND-REF-2010-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:37.787267","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-GRND-REF-2011-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:38.736269","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-GRND-REF-2013-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:39.740839","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-GRND-REF-2014-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:40.744291","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIDAS-3-GRND-REF-2015-V1.0","title":"MIDAS SCIENCE DATA FOR THE GROUND PHASE","description":"Ground-based Reference Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:41.748133","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-MIRO-2-GRND-THERMAL-VAC-V1.0","title":"RAW MIRO DATA FOR THE GROUND PHASE","description":"This volume is the first containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during ground testing at NASA/JPL.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-miro-2-grnd-thermal-vac-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:42.749351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-NAVCAM-2-CR4B-V1.0","title":"NAVCAM RAW DATA FOR CRUISE 4-2 PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 4-2 Phase, Feb - Sept 2010","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:43.754246","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-NAVCAM-2-CR4B-V1.1","title":"NAVCAM RAW DATA FOR CRUISE 4-2 PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 4-2 Phase, Feb - Sept 2009","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cr4b-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:44.758196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-NAVCAM-2-CVP2-V1.0","title":"NAVCAM RAW DATA FROM COMISSIONING 2","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the COMISSIONING 2 PHASE.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:45.765465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-NAVCAM-2-CVP2-V1.1","title":"NAVCAM RAW DATA FROM COMISSIONING 2","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the COMISSIONING 2 PHASE.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cvp2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:46.763689","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-NAVCAM-2-RVM1-V1.0","title":"NAVCAM RAW DATA FOR RVM1","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the RVM1 phase, which took place between 2010-09-04 and 2011-07-13.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:47.786793","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-NAVCAM-2-RVM1-V1.1","title":"NAVCAM RAW DATA FOR RVM1","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the RVM1 phase, taken on 25th March 2011.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-rvm1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:48.835499","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-RPCIES-2-CVP-V1.0","title":"RPCIES RAW DATA FOR THE COMMISSIONING PHASE","description":"This volume contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the complete commissioning phase (CVP) between March and October 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcies-2-cvp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:49.845256","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-RPCMIP-3-CR2-V1.0","title":"RPCMIP CRUISE 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:50.783665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-RPCMIP-3-CR4A-V1.0","title":"RPCMIP CRUISE 4-1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:51.785748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-RPCMIP-3-CR4B-V1.0","title":"RPCMIP CRUISE 4-2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:52.790321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-RPCMIP-3-CR5-V1.0","title":"RPCMIP CRUISE 5 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:53.791527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-RPCMIP-3-CVP1-V1.0","title":"RPCMIP COMMISSIONING 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:54.794886","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-RPCMIP-3-CVP2-V1.0","title":"RPCMIP COMMISSIONING 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:55.798477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL-RPCMIP-3-RVM1-V1.0","title":"RPCMIP RENDEZVOUS MANOEUVRE 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:56.804020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL/E-ALICE-2-EAR2-V1.0","title":"ROSETTA ALICE IN EARTH 2 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed (raw) data obtained by the ALICE instrument on the Rosetta Orbiter during the second Earth swing-by phase of the mission. Also included are data from payload checkout #6 (PC6).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-2-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:57.806752","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL/E-ALICE-3-EAR2-V1.0","title":"ROSETTA ALICE IN EARTH 2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the second Earth swing-by phase of the mission. Also included are data from payload checkout #6 (PC6).","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-3-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:58.812740","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL/J/M-ALICE-2-MARS-V1.0","title":"ROSETTA ALICE IN THE MARS PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the Mars swing-by phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-2-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:17:59.841520","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL/J/M-ALICE-3-MARS-V1.0","title":"ROSETTA ALICE IN THE MARS PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Mars swing-by phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-3-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:00.893359","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL/X-ALICE-2-CVP2-V1.0","title":"ROSETTA ALICE COMMISSIONING 2 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 2 phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:01.905414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL/X-ALICE-2-EAR1-V1.0","title":"ROSETTA ALICE IN EARTH 1 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the first Earth swing-by phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:02.828560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-CAL/X-ALICE-3-CVP2-V1.0","title":"ROSETTA ALICE COMMISSIONING 2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 2 phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-3-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:03.825770","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC1-V1.0","title":"ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:04.833466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC1-V2.0","title":"ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:05.832432","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC1-V3.0","title":"ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:06.843384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC2-V1.0","title":"ROSETTA ALICE IN ESC2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:07.846212","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC2-V2.0","title":"ROSETTA ALICE IN ESC2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:08.846218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC3-V1.0","title":"ROSETTA ALICE IN ESC3 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:09.848910","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC3-V2.0","title":"ROSETTA ALICE IN ESC3 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:10.852106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC4-V1.0","title":"ROSETTA ALICE IN ESC4 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:11.897243","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-ESC4-V2.0","title":"ROSETTA ALICE IN ESC4 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:12.916253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-EXT1-V1.0","title":"ROSETTA ALICE IN EXT1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:13.862860","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-EXT1-V2.0","title":"ROSETTA ALICE IN EXT1 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:14.867471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-EXT2-V1.0","title":"ROSETTA ALICE IN EXT2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:15.868696","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-EXT2-V2.0","title":"ROSETTA ALICE IN EXT2 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:16.876893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-EXT3-V1.0","title":"ROSETTA ALICE IN EXT3 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:17.877764","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-EXT3-V2.0","title":"ROSETTA ALICE IN EXT3 PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:18.879829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-PRL-V1.0","title":"ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:19.883517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-PRL-V2.0","title":"ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:20.890020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-2-PRL-V3.0","title":"ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA","description":"This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:21.890916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC1-V1.0","title":"ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:22.909912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC1-V2.0","title":"ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:23.965141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC1-V3.0","title":"ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:24.974328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC2-V1.0","title":"ROSETTA ALICE IN ESC2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:25.904115","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC2-V2.0","title":"ROSETTA ALICE IN ESC2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:26.908619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC3-V1.0","title":"ROSETTA ALICE IN ESC3 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:27.911890","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC3-V2.0","title":"ROSETTA ALICE IN ESC3 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:28.918627","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC4-V1.0","title":"ROSETTA ALICE IN ESC4 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:30.033154","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-ESC4-V2.0","title":"ROSETTA ALICE IN ESC4 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:30.931551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-EXT1-V1.0","title":"ROSETTA ALICE IN EXT1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:31.932563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-EXT1-V2.0","title":"ROSETTA ALICE IN EXT1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:32.935946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-EXT2-V1.0","title":"ROSETTA ALICE IN EXT2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:33.936503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-EXT2-V2.0","title":"ROSETTA ALICE IN EXT2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:34.967470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-EXT3-V1.0","title":"ROSETTA ALICE IN EXT3 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:36.018139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-EXT3-V2.0","title":"ROSETTA ALICE IN EXT3 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:37.034271","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-PRL-V1.0","title":"ROSETTA ALICE IN PRL PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:37.954460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-PRL-V2.0","title":"ROSETTA ALICE IN PRL PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:38.959339","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-3-PRL-V3.0","title":"ROSETTA ALICE IN PRL PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:39.966290","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC1-V1.0","title":"ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:40.967758","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC1-V2.0","title":"ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:41.975726","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC1-V3.0","title":"ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:42.981191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC2-V1.0","title":"ROSETTA ALICE IN ESC2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:43.984786","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC2-V2.0","title":"ROSETTA ALICE IN ESC2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:44.997083","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC3-V1.0","title":"ROSETTA ALICE IN ESC3 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:45.992126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC3-V2.0","title":"ROSETTA ALICE IN ESC3 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:47.028829","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC4-V1.0","title":"ROSETTA ALICE IN ESC4 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc4-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:48.079934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-ESC4-V2.0","title":"ROSETTA ALICE IN ESC4 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc4-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:49.092004","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-EXT1-V1.0","title":"ROSETTA ALICE IN EXT1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:50.005333","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-EXT1-V2.0","title":"ROSETTA ALICE IN EXT1 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:51.009533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-EXT2-V1.0","title":"ROSETTA ALICE IN EXT2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:52.012684","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-EXT2-V2.0","title":"ROSETTA ALICE IN EXT2 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:53.019190","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-EXT3-V1.0","title":"ROSETTA ALICE IN EXT3 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:54.027465","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-EXT3-V2.0","title":"ROSETTA ALICE IN EXT3 PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:55.023218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-PRL-V1.0","title":"ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:56.030165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-PRL-V2.0","title":"ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:57.036229","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL-ALICE-4-PRL-V3.0","title":"ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:58.041828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL/X-ALICE-2-CR2-V1.0","title":"ROSETTA ALICE IN CRUISE 2 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the second cruise phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:18:59.086957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL/X-ALICE-2-CVP1-V1.0","title":"ROSETTA ALICE COMMISSIONING 1 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 1 phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:00.098625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL/X-ALICE-3-CR2-V1.0","title":"ROSETTA ALICE IN CRUISE 2 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the second cruise phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:01.050048","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/CAL/X-ALICE-3-CVP1-V1.0","title":"ROSETTA ALICE COMMISSIONING 1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 1 phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:02.052554","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/X-NAVCAM-2-CR2-V1.0","title":"NAVCAM RAW DATA FOR CRUISE 2 PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 2 Phase, June 2005 - March 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_x-navcam-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:03.055721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-C/X-NAVCAM-2-CR2-V1.1","title":"NAVCAM RAW DATA FOR CRUISE 2 PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 2 Phase, June 2005 - March 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-c_x-navcam-2-cr2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:04.058509","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-D-MIDAS-3-PRL-SAMPLES-V1.0","title":"RAW MIDAS DATA FOR THE PRELANDING PHASE","description":"Philae Prelanding Phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:05.061221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-D-MIDAS-3-PRL-SAMPLES-V2.0","title":"MIDAS SCIENCE DATA FOR THE PRELANDING PHASE","description":"Philae Prelanding Phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:06.064830","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-D-MIDAS-3-PRL-SAMPLES-V3.0","title":"MIDAS SCIENCE DATA FOR THE PRELANDING PHASE","description":"Prelanding Phase Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:07.069945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-MIRO-2-EAR1-EARTH1-V1.0","title":"RAW MIRO DATA FOR THE EARTH FLY-BY 1 PHASE","description":"This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear1-earth1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:08.076044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-MIRO-2-EAR2-EARTH2-V1.0","title":"RAW MIRO DATA FOR THE EARTH FLY-BY 2 PHASE","description":"This volume is the 8th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear2-earth2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:09.077024","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-MIRO-3-EAR1-EARTH1-V1.0","title":"CALIBRATED MIRO DATA FOR THE EARTH FLY-BY 1 PHASE","description":"This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Earth Swing-by 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear1-earth1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:10.096872","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-MIRO-3-EAR1-EARTH1-V1.1","title":"CALIBRATED MIRO DATA FOR THE EARTH FLY-BY 1 PHASE","description":"This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Earth Swing-by 1 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear1-earth1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:11.154029","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-MIRO-3-EAR2-EARTH2-V1.0","title":"RAW MIRO DATA FOR THE EARTH FLY-BY 2 PHASE","description":"This volume is the 9th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 2 Mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear2-earth2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:12.158938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-NAVCAM-2-EAR1-V1.0","title":"NAVCAM RAW DATA FOR EARTH 1 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 1 Swingby Phase of 4 March 2005 to 5 March 2005, with closest approach taking place on 4 March 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-navcam-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:13.089515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-NAVCAM-2-EAR1-V1.1","title":"NAVCAM RAW DATA FOR EARTH 1 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 1 Swingby Phase of 4 March 2005 to 5 March 2005, with closest approach taking place on 4 March 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-navcam-2-ear1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:14.102443","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear1-earthswingby1-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:15.154777","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V2.0","title":"RAW OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear1-earthswingby1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:16.102582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear2-earthswingby2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:17.156849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V2.0","title":"RAW OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear2-earthswingby2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:18.118695","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear3-earthswingby3-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:19.167927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V2.0","title":"RAW OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear3-earthswingby3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:20.117557","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear1-earthswingby1-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:21.164525","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear1-earthswingby1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:22.154532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear2-earthswingby2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:23.267766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear2-earthswingby2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:24.220951","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear3-earthswingby3-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:25.268626","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear3-earthswingby3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:26.141179","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR1-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:27.144471","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR1-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:28.150565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR1-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:29.154927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR1-EARTHSWINGBY1-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earthswingby1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:30.152698","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR2-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:31.161194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR2-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:32.160929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR2-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:33.168603","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR2-EARTHSWINGBY2-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earthswingby2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:34.216129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR3-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:35.261594","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR3-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:36.180861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR3-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:37.185867","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSINAC-4-EAR3-EARTHSWINGBY3-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earthswingby3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:38.188204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear1-earthswingby1-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:39.254663","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V2.0","title":"RAW OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear1-earthswingby1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:40.192036","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear2-earthswingby2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:41.250316","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V2.0","title":"RAW OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear2-earthswingby2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:42.201146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear3-earthswingby3-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:43.260371","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V2.0","title":"RAW OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear3-earthswingby3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:44.212546","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear1-earthswingby1-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:45.265194","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear1-earthswingby1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:46.275464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear2-earthswingby2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:47.330486","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear2-earthswingby2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:48.225457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear3-earthswingby3-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:49.284141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear3-earthswingby3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:50.229434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR1-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:51.240013","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR1-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:52.240302","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR1-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:53.244137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR1-EARTHSWINGBY1-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earthswingby1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:54.249053","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR2-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:55.246811","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR2-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:56.256051","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR2-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:57.283438","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR2-EARTHSWINGBY2-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earthswingby2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:58.333536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR3-EARTH-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:19:59.346377","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR3-EARTH-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:00.268840","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR3-EARTH-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:01.276015","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-OSIWAC-4-EAR3-EARTHSWINGBY3-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earthswingby3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:02.275519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-2-EAR1-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:03.283755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-2-EAR1-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR1 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:04.283929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-2-EAR1-RAW-V3.0","title":"ROSETTA-ORBITER EARTH RPCICA 2 EAR1 EDITED","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR1 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:05.290027","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-2-EAR2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:06.290875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-2-EAR2-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:07.295680","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-2-EAR2-RAW-V3.0","title":"ROSETTA-ORBITER EARTH RPCICA 2 EAR2 EDITED","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR2 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:08.300050","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-2-EAR3-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR3 UNCALIBRATED V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear3-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:09.342018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-2-EAR3-RAW-V2.0","title":"ROSETTA-ORBITER EARTH RPCICA 2 EAR3 EDITED","description":"ROSETTA-ORBITER EARTH RPCICA 2 EAR3 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear3-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:10.395157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-3-EAR1-CALIB-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 3 EAR1 CALIBRATED","description":"ROSETTA-ORBITER EARTH RPCICA 3 EAR1 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear1-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:11.506802","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-3-EAR2-CALIB-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 3 EAR2 CALIBRATED","description":"ROSETTA-ORBITER EARTH RPCICA 3 EAR2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:12.316580","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-3-EAR3-CALIB-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 3 EAR3 CALIBRATED","description":"ROSETTA-ORBITER EARTH RPCICA 3 EAR3 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear3-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:13.317163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-4-EAR1-CORR-CTS-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR_CTS","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:14.310927","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-4-EAR1-CORR-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:15.322560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-4-EAR2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR_CTS","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:16.319615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-4-EAR2-CORR-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:17.332846","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-4-EAR3-CORR-CTS-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR_CTS","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:18.331387","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCICA-4-EAR3-CORR-V1.0","title":"ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR","description":"ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:19.335464","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCIES-2-EAR1-V1.0","title":"RPCIES RAW DATA FOR EARTH SWINGBY 1","description":"This data set contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the first Earth Swingby (EAR1) in March 2005. The swingby took place between March 1 and March 7 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:20.351418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCIES-2-EAR3-V1.0","title":"RPCIES RAW DATA FOR THE EARTH SWINGBY 3","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Earth Swingby 3 in November 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:21.399200","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCLAP-2-EAR1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EAR1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 1 phase in 2004-2005 where the primary target was the planet EARTH. This particular data set contains data for the time period 2004-10-17T00:00:00.000 -- 2005-04-05T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:22.412287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCLAP-2-EAR2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EAR2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 2 phase in 2007-2008 where the primary target was the planet EARTH. This particular data set contains data for the time period 2007-09-13T00:00:00.000 -- 2008-01-28T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:23.355714","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCLAP-2-EAR3-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR EAR3","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 3 phase in 2009 where the primary target was the planet EARTH. This particular data set contains data for the time period 2009-09-14T00:00:00.000 -- 2009-12-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear3-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:24.360964","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCLAP-3-EAR1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EAR1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 1 phase in 2004-2005 where the primary target was the planet EARTH. This particular data set contains data for the time period 2004-10-17T00:00:00.000 -- 2005-04-05T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:25.363165","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCLAP-3-EAR2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EAR2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 2 phase in 2007-2008 where the primary target was the planet EARTH. This particular data set contains data for the time period 2007-09-13T00:00:00.000 -- 2008-01-28T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:26.369220","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCLAP-3-EAR3-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR EAR3","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 3 phase in 2009 where the primary target was the planet EARTH. This particular data set contains data for the time period 2009-09-14T00:00:00.000 -- 2009-12-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear3-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:27.369521","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-2-EAR1-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE FIRST EARTH FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:28.378197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-2-EAR1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE FIRST EARTH SWINGBY (EAR1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:29.382044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-2-EAR2-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE SECOND EARTH FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:30.380093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-2-EAR2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE SECOND EARTH SWINGBY (EAR2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:31.383533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-2-EAR3-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE THIRD EARTH SWINGBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear3-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:32.410560","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-2-EAR3-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE THIRD EARTH SWINGBY (EAR3)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear3-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:33.457650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-3-EAR1-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE FIRST EARTH FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear1-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:34.472435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-3-EAR1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: FIRST EARTH SWINGBY (EAR1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:35.410405","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-3-EAR2-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE SECOND EARTH FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear2-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:36.401796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-3-EAR2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: SECOND EARTH SWINGBY (EAR2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:37.403351","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-3-EAR3-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE THIRD EARTH SWINGBY","description":"This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear3-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:38.407766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-3-EAR3-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: THIRD EARTH SWINGBY (EAR3)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear3-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:39.416699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-4-EAR1-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE FIRST EARTH FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear1-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:40.417470","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-4-EAR1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: FIRST EARTH SWINGBY (EAR1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:41.421221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-4-EAR2-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE SECOND EARTH FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear2-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:42.422598","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-4-EAR2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: SECOND EARTH SWINGBY (EAR2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:43.430311","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-4-EAR3-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE THIRD EARTH SWINGBY","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear3-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:44.469625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMAG-4-EAR3-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: THIRD EARTH SWINGBY (EAR3)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear3-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:45.516234","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMIP-3-EAR1-V1.0","title":"RPCMIP EARTH SWING-BY 1 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:46.437849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMIP-3-EAR2-V1.0","title":"RPCMIP CALIBRATED DATA FOR THE EARTH SWING 2 BY PHASE","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the earth swing by 2 phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:47.439450","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMIP-3-EAR2-V2.0","title":"RPCMIP EARTH SWING-BY 2 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:48.444279","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E-RPCMIP-3-EAR3-V1.0","title":"RPCMIP EARTH SWING-BY 3 L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:49.442848","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E/CAL-NAVCAM-2-EAR2-V1.0","title":"NAVCAM RAW DATA FOR EARTH 2 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 2 Swingby Phase of 16 September 2007 to 22 January 2008, with closest approach taking place on 13 November 2007.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:50.452146","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E/CAL-NAVCAM-2-EAR2-V1.1","title":"NAVCAM RAW DATA FOR EARTH 2 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 2 Swingby Phase of 16 September 2007 to 22 January 2008, with closest approach taking place on 13 November 2007.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear2-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:51.452420","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E/CAL-NAVCAM-2-EAR3-V1.0","title":"NAVCAM RAW DATA FOR EARTH 3 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 3 Swingby Phase of 13 November 2009 to 30 November 2009, with closest approach taking place on 13 November 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:52.456549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E/CAL-NAVCAM-2-EAR3-V1.1","title":"NAVCAM RAW DATA FOR EARTH 3 SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 3 Swingby Phase of 13 November 2009 to 30 November 2009, with closest approach taking place on 13 November 2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear3-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:53.460682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E/X-NAVCAM-2-CR1-V1.0","title":"NAVCAM RAW DATA FOR CRUISE 1","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the CRUISE 1 Phase of 27 July 2004 to 1 August 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_x-navcam-2-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:54.461585","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-E/X-NAVCAM-2-CR1-V1.1","title":"NAVCAM RAW DATA FOR CRUISE 1","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the CRUISE 1 Phase of 27 July 2004 to 1 August 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-e_x-navcam-2-cr1-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:55.476494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSINAC-2-MARS-MARSSWINGBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSINAC-2-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-2-mars-marsswingby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:56.574399","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSINAC-2-MARS-MARSSWINGBY-V2.0","title":"RAW OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-2-mars-marsswingby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:57.544332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSINAC-3-MARS-MARSSWINGBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSINAC-3-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-3-mars-marsswingby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:58.592112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSINAC-3-MARS-MARSSWINGBY-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-3-mars-marsswingby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:20:59.480900","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSINAC-4-MARS-MARS-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:00.486619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSINAC-4-MARS-MARS-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:01.497711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSINAC-4-MARS-MARS-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:02.494701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSINAC-4-MARS-MARSSWINGBY-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-marsswingby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:03.502116","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSIWAC-2-MARS-MARSSWINGBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSIWAC-2-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-2-mars-marsswingby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:04.556928","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSIWAC-2-MARS-MARSSWINGBY-V2.0","title":"RAW OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-2-mars-marsswingby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:05.507862","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSIWAC-3-MARS-MARSSWINGBY-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSIWAC-3-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-3-mars-marsswingby-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:06.554156","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSIWAC-3-MARS-MARSSWINGBY-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-3-mars-marsswingby-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:07.539929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSIWAC-4-MARS-MARS-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:08.584005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSIWAC-4-MARS-MARS-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:09.601127","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSIWAC-4-MARS-MARS-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:10.523222","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-OSIWAC-4-MARS-MARSSWINGBY-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-marsswingby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:11.526372","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCICA-2-MARS-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:12.531498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCICA-2-MARS-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER MARS RPCICA 2 MARS UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:13.533210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCICA-2-MARS-RAW-V3.0","title":"ROSETTA-ORBITER MARS RPCICA 2 MARS EDITED","description":"ROSETTA-ORBITER MARS RPCICA 2 MARS UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:14.538972","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCICA-3-MARS-CALIB-V1.0","title":"ROSETTA-ORBITER MARS RPCICA 3 MARS CALIBRATED","description":"ROSETTA-ORBITER MARS RPCICA 3 MARS CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-3-mars-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:15.541304","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCICA-4-MARS-CORR-CTS-V1.0","title":"ROSETTA-ORBITER MARS RPCICA 4 MARS CORR_CTS","description":"ROSETTA-ORBITER MARS RPCICA 4 MARS CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:16.548833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCICA-4-MARS-CORR-V1.0","title":"ROSETTA-ORBITER MARS RPCICA 4 MARS CORR","description":"ROSETTA-ORBITER MARS RPCICA 4 MARS CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:17.551527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCLAP-2-MARS-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR MARS","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the MARS SWING-BY phase in 2006-2007 where the primary target was the planet MARS. This particular data set contains data for the time period 2006-07-29T00:00:00.000 -- 2007-05-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-2-mars-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:18.548532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCLAP-3-MARS-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR MARS","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the MARS SWING-BY phase in 2006-2007 where the primary target was the planet MARS. This particular data set contains data for the time period 2006-07-29T00:00:00.000 -- 2007-05-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-3-mars-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:19.592650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCMAG-2-MARS-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE MARS FLYBY","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-2-mars-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:20.643619","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCMAG-2-MARS-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE MARS SWINGBY (MARS)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-2-mars-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:21.564847","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCMAG-3-MARS-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE MARS FLYBY","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-3-mars-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:22.571563","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCMAG-3-MARS-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: MARS SWINGBY (MARS).","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-3-mars-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:23.566533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCMAG-4-MARS-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE MARS FLYBY","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-4-mars-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:24.570549","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCMAG-4-MARS-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: MARS SWINGBY (MARS).","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-4-mars-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:25.583675","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M-RPCMIP-3-MARS-V1.0","title":"RPCMIP MARS SWING-BY L3 DATA","description":"This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmip-3-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:26.585741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M/CAL-NAVCAM-2-MARS-V1.0","title":"NAVCAM RAW DATA FOR MARS SWINGBY","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the MARS Swingby Phase of 27 November 2006 to 24 February 2007, with closest approach taking place on 25 February 2007.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m_cal-navcam-2-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:27.588650","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-M/CAL-NAVCAM-2-MARS-V1.1","title":"NAVCAM RAW DATA FOR ESCORT PHASE","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise phase- Mars Swing by from 27, No 2006 to 24 Feb 2007.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-m_cal-navcam-2-mars-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:28.589533","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-2-CR2-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:29.598615","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-2-CR2-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER SW RPCICA 2 CR2 UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:30.608020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-2-CR2-RAW-V3.0","title":"ROSETTA-ORBITER SW RPCICA 2 CR2 EDITED","description":"ROSETTA-ORBITER SW RPCICA 2 CR2 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:31.656564","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-2-CR4-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:32.670137","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-2-CR4-RAW-V3.0","title":"ROSETTA-ORBITER SW RPCICA 2 CR4 EDITED","description":"ROSETTA-ORBITER SW RPCICA 2 CR4 UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:33.620924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-2-CR4B-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER SW RPCICA 2 CR4B UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4b-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:34.621239","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-3-CR2-CALIB-V1.0","title":"ROSETTA-ORBITER SW RPCICA 3 CR2 CALIBRATED","description":"ROSETTA-ORBITER SW RPCICA 3 CR2 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr2-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:35.621741","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-3-CR4-CALIB-V1.0","title":"ROSETTA-ORBITER SW RPCICA 3 CR4 CALIBRATED","description":"ROSETTA-ORBITER SW RPCICA 3 CR4 CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr4-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:36.621985","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-4-CR2-CORR-CTS-V1.0","title":"ROSETTA-ORBITER SW RPCICA 4 CR2 CORR_CTS","description":"ROSETTA-ORBITER SW RPCICA 4 CR2 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:37.624957","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-4-CR2-CORR-V1.0","title":"ROSETTA-ORBITER SW RPCICA 4 CR2 CORR","description":"ROSETTA-ORBITER SW RPCICA 4 CR2 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:38.634217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-4-CR4-CORR-CTS-V1.0","title":"ROSETTA-ORBITER SW RPCICA 4 CR4 CORR_CTS","description":"ROSETTA-ORBITER SW RPCICA 4 CR4 CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:39.639804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCICA-4-CR4-CORR-V1.0","title":"ROSETTA-ORBITER SW RPCICA 4 CR4 CORR","description":"ROSETTA-ORBITER SW RPCICA 4 CR4 CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:40.638621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCIES-2-CR2-V1.0","title":"RPCIES RAW DATA FOR CRUISE 2 PHASE","description":"This data set contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the second cruise phase (CR2) between April 2005 and June 2006.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:41.639485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCIES-2-CR5-V1.0","title":"RPCIES RAW DATA FOR CRUISE 5","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Cruise 5 Phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:42.662628","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCIES-2-RVM1-V1.0","title":"RPCIES RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1","description":"This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Rendezvous Manoeuvre 1 in November 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:43.714270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-2-CR2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CR2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 2 phase in 2005-2006 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2005-04-05T00:00:00.000 -- 2006-07-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:44.725206","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-2-CR4A-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CR4A","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-1 phase in 2008 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-01-28T00:00:00.000 -- 2008-08-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4a-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:45.665167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-2-CR4B-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CR4B","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-2 phase in 2008-2009 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-10-06T00:00:00.000 -- 2009-09-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4b-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:46.665356","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-2-CR5-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CR5","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 5 phase in 2009-2010 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2009-12-14T00:00:00.000 -- 2010-05-17T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr5-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:47.671106","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-2-RVM1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR RVM1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the RENDEZVOUS MANOEUVRE 1 phase in 2010-2011 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2010-09-04T00:00:00.000 -- 2011-06-08T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-rvm1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:48.673171","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-3-CR2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CR2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 2 phase in 2005-2006 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2005-04-05T00:00:00.000 -- 2006-07-29T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:49.678582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-3-CR4A-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CR4A","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-1 phase in 2008 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-01-28T00:00:00.000 -- 2008-08-04T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4a-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:50.683477","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-3-CR4B-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CR4B","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-2 phase in 2008-2009 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-10-06T00:00:00.000 -- 2009-09-14T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4b-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:51.692108","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-3-CR5-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CR5","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 5 phase in 2009-2010 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2009-12-14T00:00:00.000 -- 2010-05-17T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr5-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:52.807638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCLAP-3-RVM1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR RVM1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the RENDEZVOUS MANOEUVRE 1 phase in 2010-2011 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2010-09-04T00:00:00.000 -- 2011-06-08T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-rvm1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:53.692005","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-2-CR2-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE SECOND CRUISE PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-cr2-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:54.726046","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-2-CR2-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE SECOND CRUISE PHASE (CR2)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-cr2-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:55.771760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-2-PRL-RAW-V5.0","title":"RPCMAG RAW DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:56.785581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-2-PRL-RAW-V6.0","title":"RPCMAG RAW DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:57.715717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-2-PRL-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE PRELANDING PHASE (PRL)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:58.710213","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-2-RVM1-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-rvm1-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:21:59.717901","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-2-RVM1-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-rvm1-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:00.718002","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-3-CR2-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE SECOND CRUISE PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-cr2-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:01.720838","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-3-CR2-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: SECOND CRUISE PHASE (CR2)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-cr2-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:02.727236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-3-PRL-CALIBRATED-V6.0","title":"RPCMAG CALIBRATED DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-prl-calibrated-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:03.727747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-3-PRL-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: PRELANDING PHASE (PRL)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-prl-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:04.733425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-3-RVM1-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-rvm1-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:05.733666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-3-RVM1-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-rvm1-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:06.782812","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-4-CR2-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE SECOND CRUISE PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-cr2-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:07.832527","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-4-CR2-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: SECOND CRUISE PHASE (CR2)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-cr2-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:08.744948","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-4-PRL-RESAMPLED-V5.0","title":"RPCMAG RESMPLED DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v5.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:09.748457","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-4-PRL-RESAMPLED-V6.0","title":"RPCMAG RESMPLED DATA FOR THE PRELANDING PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v6.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:10.744157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-4-PRL-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: PRELANDING PHASE (PRL)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:11.756085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-4-RVM1-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-rvm1-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:12.759025","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-SS-RPCMAG-4-RVM1-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: RENDEZVOUS MANOEUVRE 1 (RVM1)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-rvm1-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:13.762209","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-ALICE-2-CR1-V1.0","title":"ROSETTA ALICE IN CRUISE 1 PHASE, EXPERIMENT DATA","description":"This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the first cruise phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-2-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:14.761081","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-ALICE-3-CR1-V1.0","title":"ROSETTA ALICE IN CRUISE 1 PHASE, REDUCED DATA","description":"This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the first cruise phase of the mission.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-3-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:15.766315","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-ALICE-6-SUPPLEMENTARY-V1.0","title":"ROSETTA ALICE SUPPLEMENTAL DOCUMENTATION and DATA","description":"This small dataset collects supplementary documentation and data for the Rosetta Alice instrument and its data products.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-6-supplementary-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:16.769551","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-GIA-2-CR2-CRUISE2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING CRUISE 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Cruise 2' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 1' (PC1) held on 02/03-10-2005; 'Passive Payload Checkout n. 2' (PC2) held on 05/06-03-2006. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cr2-cruise2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:17.795611","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-GIA-2-CVP1-COMMISSIONING1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMMISSIONING 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Commissioning 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'First GIADA switch ON' held on 03/04-04-2004. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp1-commissioning1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:18.844496","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-GIA-2-CVP2-COMMISSIONING2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING COMMISSIONING 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Commissioning 2' phase. More in detail it refers to the data provided during the following in-flight scenarios: 'Interference 1' held on 20/21/22-09-2004; 'Pointing 1' held on 23-09-2004; 'Pointing 2' held on 30-09-2004; 'Interference 2' held on 12/13/14-10-2004. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp2-commissioning2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:19.857003","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-GIA-2-EAR1-EARTHSWINGBY1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EARTH SWING-BY 1 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Earth swing-by 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 0' (PC0) held on 28/29-03-2005. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear1-earthswingby1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:20.788606","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-GIA-2-EAR2-EARTHSWINGBY2-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING EARTH SWING-BY 2 PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Earth swing-by 2' phase. More in detail it refers to the data provided during the following in-flight tests: 'Active Payload Checkout n. 6' (PC6) held on 15/16/17-09-2007 and 24-09-2007; 'Passive Payload Checkout n. 7' (PC7) held on 06/07-01-2008 and 17-01-2008. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear2-earthswingby2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:21.791539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-GIA-2-MARS-MARSSWINGBY-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING MARS SWING-BY PHASE","description":"This volume contains Experiment Data acquired by GIADA during 'Mars swing-by' phase. More in detail it refers to the data provided during the following in-flight tests: 'Active Payload Checkout n. 4' (PC4) held on 24/25-11-2006 and 04-12-2006; 'Passive Payload Checkout n. 5' (PC5) held on 20/21-05-2007. It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-mars-marsswingby-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:22.800020","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-GIA-2-RVM1-RENDEZMANOEUVRE1-V1.0","title":"ROSETTA GIADA EXPERIMENT DATA DURING RENDEZMANOUVRE 1","description":"This volume contains Experiment Data acquired by GIADA during 'Rendez-vous manoeuvre 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 13' (PC13) held on 1-12-2010 and It also contains documentation which describes the GIADA experiment.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-rvm1-rendezmanoeuvre1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:23.796366","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-ANTENNASTATUS-V1.0","title":"ROSETTA HK: ANTENNA STATUS","description":"This volume contains the status of the Rosetta Orbiter Antenna extracted from the MUST system for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-antennastatus-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:24.800425","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-AOCGEN-V1.0","title":"ROSETTA HK: AOC SYSTEM DATA","description":"This volume contains data from the Rosetta Attitude and Orbit Control System for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-aocgen-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:25.802990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-EDAC-V1.0","title":"ROSETTA HK: EDAC DATA","description":"This volume contains data from the Rosetta Error Detection and Correction System for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-edac-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:26.805819","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-HGAAPM-V1.0","title":"ROSETTA HK: HIGH GAIN ANTENNA DATA","description":"This volume contains data from the Rosetta High Gain Antenna and Antenna Pointing Mechanism for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-hgaapm-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:27.811681","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-IMP-V1.0","title":"ROSETTA HK: INERTIAL MEASUREMENT PACKAGE","description":"This volume contains data from the Rosetta Inertial Measurement Package for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-imp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:28.814485","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-NAVCAM-V1.0","title":"ROSETTA HK: NAVCAM ENGINEERING","description":"This volume contains engineering data from Rosetta's two Navigation cameras for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-navcam-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:29.850433","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-OCMRCS-V1.0","title":"ROSETTA HK: ORBITAL CONTROL MANOEUVRE REACTION CONTROL","description":"This volume contains key parameters from Rosetta's Orbit Control Manouevres and the thruster based Reaction Control Subsystem for for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-ocmrcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:30.898328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-RWL-V1.0","title":"ROSETTA HK: REACTION WHEEL ENGINEERING","description":"This volume contains engineering data from the four Reaction Wheels onboard Rosetta for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-rwl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:31.910797","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-SOLARARRAY-V1.0","title":"ROSETTA HK: SOLAR ARRAY POWER","description":"This volume contain key parameters of the Solar Array and Power housekeeping for Rosetta over the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-solararray-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:32.828427","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-STARTRACKER-V1.0","title":"ROSETTA HK: SOLAR ARRAY POWER","description":"This volume contains key parameters from the housekeeping of the two Star Trackers onboard Rosetta over the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-startracker-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:33.833079","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-HK-3-TCS-V1.0","title":"ROSETTA HK: EDAC DATA","description":"This volume contains selected data from the Rosetta Thermal Control System for the entire mission, from March 2004 until September 2016.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-tcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:34.833766","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-CR2-PC1-2-V1.0","title":"ROMID_1003","description":"Payload Checkout 1-2 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr2-pc1-2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:35.842617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-CR2-PC1-2-V3.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 2 PHASE","description":"Payload Checkout 1-2 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr2-pc1-2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:36.836263","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-CR4A-PC8-V1.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 4-1 PHASE","description":"Payload Checkout 8 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4a-pc8-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:37.845861","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-CR4A-PC8-V3.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 4-1 PHASE","description":"Payload Checkout 8 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4a-pc8-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:38.848434","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-CR4B-PC9-V1.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 4-2 PHASE","description":"Payload Checkout 9 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4b-pc9-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:39.851601","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-CR4B-PC9-V3.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 4-2 PHASE","description":"Payload Checkout 9 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4b-pc9-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:40.861400","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-CR5-PC12-V1.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 5 PHASE","description":"Payload Checkout 12 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr5-pc12-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:41.909126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-CR5-PC12-V3.0","title":"MIDAS SCIENCE DATA FOR THE CRUISE 5 PHASE","description":"Payload Checkout 12 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr5-pc12-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:42.925691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-EAR1-PC0-V1.0","title":"ROMID_1002","description":"Payload Checkout 0 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear1-pc0-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:43.873511","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-EAR1-PC0-V3.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 1 PHASE","description":"Payload Checkout 0 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear1-pc0-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:44.871993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-EAR2-PC6-7-V1.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 2 PHASE","description":"Payload Checkout 6-7 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear2-pc6-7-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:45.874751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-EAR2-PC6-7-V3.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 2 PHASE","description":"Payload Checkout 6-7 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear2-pc6-7-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:46.881474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-EAR3-PC10-V1.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 3 PHASE","description":"Payload Checkout 10 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear3-pc10-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:47.883217","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-EAR3-PC10-V3.0","title":"MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 3 PHASE","description":"Payload Checkout 10 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear3-pc10-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:48.889328","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-MARS-PC3-5-V1.0","title":"MIDAS SCIENCE DATA FOR THE MARS SWING-BY PHASE","description":"Payload Checkout 3-5 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-mars-pc3-5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:49.888215","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-MARS-PC3-5-V3.0","title":"MIDAS SCIENCE DATA FOR THE MARS SWING-BY PHASE","description":"Payload Checkout 3-5 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-mars-pc3-5-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:50.891733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-RVM1-PC13-V1.0","title":"MIDAS SCIENCE DATA FOR THE RENDEZVOUS MANOEUVRE 1 PHASE","description":"Payload Checkout 13 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-rvm1-pc13-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:51.893540","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIDAS-3-RVM1-PC13-V3.0","title":"MIDAS SCIENCE DATA FOR THE RENDEZVOUS MANOEUVRE 1 PHASE","description":"Payload Checkout 13 Data","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-rvm1-pc13-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:52.919484","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIRO-2-CVP-COMMISSIONING-V1.0","title":"RAW MIRO DATA FOR THE COMMISSIONING PHASE","description":"This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Commissioning mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-2-cvp-commissioning-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:53.970451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIRO-3-CVP-COMMISSIONING-V1.0","title":"CALIBRATED MIRO DATA FOR THE COMMISSIONING PHASE","description":"This volume is the first containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Commissioning mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-3-cvp-commissioning-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:54.982575","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-MIRO-3-CVP-COMMISSIONING-V1.1","title":"CALIBRATED MIRO DATA FOR THE COMMISSIONING PHASE","description":"This volume is the fourth containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Commissioning mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-3-cvp-commissioning-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:55.914925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-NAVCAM-2-PRL-COM-V1.0","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jan 2014 to May 2014","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-2-prl-com-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:56.917132","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-NAVCAM-2-PRL-COM-V1.1","title":"NAVCAM RAW DATA FOR PRELANDING","description":"This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jan 2014 to May 2014 just after hibernation in its journey to comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-2-prl-com-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:57.918834","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-NAVCAM-3-PRL-COM-V1.0","title":"NAVCAM CALIBRATED DATA FOR PRELANDING COMMISSIONING PHASE","description":"This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Feb. 2014, 08:10:01 to 30 Apr. 2014, 03:32:08, during the PRELANDING COMMISSIONING phase, when at the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-3-prl-com-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:58.925237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR1-CHECKOUT-V1.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 1 mission phase, covering the period from 2004-06-07T00:00:00.000 to 2004-09-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:22:59.924576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR2-CHECKOUT-V2.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr2-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:00.929139","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR2-CRUISE2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr2-cruise2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:01.993573","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR4A-CHECKOUT-V2.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4a-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:02.934632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR4A-CRUISE4A-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4a-cruise4a-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:04.007174","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR4B-CHECKOUT-V2.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 4-2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-2 mission phase, covering the period from 2008-10-06T00:00:00.000 to 2009-09-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4b-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:04.984667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR4B-CRUISE4B-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR4B-CRUISE4B-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4b-cruise4b-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:06.086045","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR5-CHECKOUT-V2.0","title":"RAW OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr5-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:07.041336","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CR5-CRUISE5-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr5-cruise5-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:08.091090","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CVP1-CHECKOUT-V1.0","title":"RAW OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cvp1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:09.964177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-CVP2-CHECKOUT-V1.0","title":"RAW OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:10.968790","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-2-RVM1-CHECKOUT-V1.0","title":"RAW OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:11.966656","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CR2-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr2-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:12.974085","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CR2-CRUISE2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-3-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr2-cruise2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:14.046074","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CR4A-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4a-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:14.979691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CR4A-CRUISE4A-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-3-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4a-cruise4a-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:16.041515","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CR4B-CRUISE4B-V1.4","title":"CALIBRATED OSIRIS NAC DATA FOR THE CRUISE 4-2 PHASE","description":"CALIBRATED OSIRIS NAC data from the CRUISE 4-2 mission phase. The data has been acquired between 2008-10-06 and 2009-09-14.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4b-cruise4b-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:17.035715","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CR5-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr5-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:18.049460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CR5-CRUISE5-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSINAC-3-CR5-CRUISE5-V1.2 and NASA Planetary Data System, ESA Planetary Science Archive, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr5-cruise5-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:19.140476","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CVP1-CHECKOUT-V1.0","title":"Menu: Skip within this page","description":"Special Note: When all OSIRIS calibrated data sets were reprocessed, this data set was split and any CR1 images did not qualify for calibration in their latest pipeline. See documentation in the CVP1/2 calibrated data set for details on selection.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cvp-commissioning-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:20.051706","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-CVP2-CHECKOUT-V1.0","title":"CALIBRATED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:22.011346","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-3-RVM1-CHECKOUT-V1.0","title":"CALIBRATED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:23.014253","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR2-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:24.016765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR2-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:25.019649","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR2-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:26.014422","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR2-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:27.023283","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR4A-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:28.046503","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR4A-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:29.094331","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR4A-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:30.110237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR4A-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:31.045018","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR5-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:32.043664","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR5-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:33.053052","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR5-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:34.145989","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CR5-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:35.054668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CVP1-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:36.061455","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CVP1-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:37.067086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CVP1-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:38.065460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CVP1-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:39.067393","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CVP2-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:40.101112","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CVP2-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:41.153825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CVP2-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:42.166854","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-CVP2-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:43.083765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-RVM1-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:44.086865","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-RVM1-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:45.104849","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-RVM1-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:46.103937","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSINAC-4-RVM1-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:47.105030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR1-CHECKOUT-V1.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 1 mission phase, covering the period from 2004-06-07T00:00:00.000 to 2004-09-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:48.109010","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR2-CHECKOUT-V2.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr2-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:49.114318","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR2-CRUISE2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr2-cruise2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:50.168851","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR4A-CHECKOUT-V2.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4a-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:51.118934","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR4A-CRUISE4A-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4a-cruise4a-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:52.224480","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR4B-CHECKOUT-V2.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 4-2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-2 mission phase, covering the period from 2008-10-06T00:00:00.000 to 2009-09-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4b-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:53.179430","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR4B-CRUISE4B-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR4B-CRUISE4B-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4b-cruise4b-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:54.268661","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR5-CHECKOUT-V2.0","title":"RAW OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr5-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:55.130202","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CR5-CRUISE5-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSIWAC-2-CR5-CRUISE5-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr5-cruise5-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:56.193086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CVP1-CHECKOUT-V1.0","title":"RAW OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cvp1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:58.148833","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-CVP2-CHECKOUT-V1.0","title":"RAW OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:23:59.145816","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-2-RVM1-CHECKOUT-V1.0","title":"RAW OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:00.153547","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-CR2-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr2-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:01.159191","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-CR2-CRUISE2-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-3-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr2-cruise2-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:02.216044","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-CR4A-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr4a-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:03.178804","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-CR4A-CRUISE4A-V1.4","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-3-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr4a-cruise4a-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:04.270240","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-CR5-CHECKOUT-V2.0","title":"CALIBRATED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr5-checkout-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:05.236760","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-CR5-CRUISE5-V1.2","title":"Menu: Skip within this page","description":"Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSIWAC-3-CR5-CRUISE5-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr5-cruise5-v1.2/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:06.322201","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-CVP1-CHECKOUT-V1.0","title":"Menu: Skip within this page","description":"Special Note: When all OSIRIS calibrated data sets were reprocessed, this data set was split and any CR1 images did not qualify for calibration in their latest pipeline. See documentation in the CVP1/2 calibrated data set for details on selection.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cvp-commissioning-v1.4/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:07.231129","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-CVP2-CHECKOUT-V1.0","title":"CALIBRATED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:09.189660","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-3-RVM1-CHECKOUT-V1.0","title":"CALIBRATED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:10.193287","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR2-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:11.196701","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR2-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:12.202828","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR2-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:13.200482","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR2-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:14.205498","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR4A-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:15.235459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR4A-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:16.285672","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR4A-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:17.295800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR4A-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:18.221296","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR5-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:19.227270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR5-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:20.234157","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR5-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:21.235205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CR5-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:22.245207","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CVP1-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:23.242343","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CVP1-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:24.253884","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CVP1-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:25.249192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CVP1-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:26.249070","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CVP2-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:27.289321","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CVP2-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:28.341993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CVP2-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:29.352039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-CVP2-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:30.274497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-RVM1-CHECKOUT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-checkout-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:31.273772","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-RVM1-CHKOUT-REFLECT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-reflect-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:32.275531","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-RVM1-CHKOUT-STR-REFL-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-str-refl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:33.276384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-OSIWAC-4-RVM1-CHKOUT-STRLIGHT-V1.0","title":"RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE","description":"This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-strlight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:34.289794","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-ROSINA-2-ENG-V1.0","title":"RO-X-ROSINA-2-ENG-V1.0","description":"This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Commissioning. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rosina-2-eng-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:35.297494","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCICA-2-CVP-RAW-V1.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0","description":"ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:36.297180","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCICA-2-CVP-RAW-V2.0","title":"ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0","description":"ROSETTA-ORBITER CHECK RPCICA 2 CVP UNCALIBRATED V2.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:37.301218","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCICA-2-CVP-RAW-V3.0","title":"ROSETTA-ORBITER CHECK RPCICA 2 CVP EDITED","description":"ROSETTA-ORBITER CHECK RPCICA 2 CVP UNCALIBRATED V3.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:38.306039","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCICA-3-CVP-CALIB-V1.0","title":"ROSETTA-ORBITER CHECK RPCICA 3 CVP CALIBRATED","description":"ROSETTA-ORBITER CHECK RPCICA 3 CVP CALIB V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-3-cvp-calib-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:39.349980","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCICA-4-CVP-CORR-CTS-V1.0","title":"ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR_CTS","description":"ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR-CTS V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-cts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:40.365416","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCICA-4-CVP-CORR-V1.0","title":"ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR","description":"ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR V1.0","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:41.313102","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCLAP-2-CVP1-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CVP1","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 1 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-03-05T00:00:00.000 -- 2006-09-17T00:02:36.148.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp1-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:42.319459","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCLAP-2-CVP2-EDITED2-V1.0","title":"RPCLAP EDITED DATA FOR CVP2","description":"This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 2 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-09-06T00:00:00.000 -- 2004-10-17T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp2-edited2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:43.323474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCLAP-3-CVP1-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CVP1","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 1 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-03-05T00:00:00.000 -- 2006-09-17T00:02:36.128.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp1-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:44.326665","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCLAP-3-CVP2-CALIB2-V1.0","title":"RPCLAP CALIBRATED DATA FOR CVP2","description":"This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 2 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-09-06T00:00:00.000 -- 2004-10-17T00:00:00.000.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp2-calib2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:45.328441","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-2-CR4A-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE CRUISE-4A PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4a-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:46.332177","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-2-CR4A-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE CRUISE-4A PHASE (CR4A)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4a-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:47.340043","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-2-CR4B-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE CRUISE-4B PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4b-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:48.344765","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-2-CR4B-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE CRUISE-4B PHASE (CR4B)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4b-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:49.346592","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-2-CR5-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE FIFTH CRUISE PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr5-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:50.364210","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-2-CR5-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE CRUISE-5 PHASE (CR5)","description":"This Volume contains magnetic field data (EDITED RAW DATA) from the RPC-MAG instrument for the Cruise Phase 5, called CR5, for the time interval December 2009 until June 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr5-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:51.409733","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-2-CVP-RAW-V3.0","title":"RPCMAG RAW DATA FOR THE COMMISSIONING PHASE","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cvp-raw-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:52.423710","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-2-CVP-RAW-V9.0","title":"RPCMAG RAW DATA FOR THE COMMISSIONING PHASE (CVP)","description":"This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2004 until 14. October 2004","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cvp-raw-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:53.368751","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-3-CR4A-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE CRUISE-4A PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4a-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:54.364415","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-3-CR4A-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: CRUISE-4A PHASE (CR4A)","description":"This Volume contains magnetic field data (CALIBRATED DATA)fromthe RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4a-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:55.363332","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-3-CR4B-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE CRUISE-4B PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4b-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:56.373899","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-3-CR4B-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: CRUISE-4B PHASE (CR4B)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4b-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:57.379576","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-3-CR5-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE FIFTH CRUISE PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr5-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:58.374301","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-3-CR5-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: CRUISE-5 PHASE (CR5)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the Cruise Phase 5, called CR5B, for the time interval December 2009 until June 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr5-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:24:59.382992","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-3-CVP-CALIBRATED-V3.0","title":"RPCMAG CALIBRATED DATA FOR THE COMMISSIONING PHASE","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cvp-calibrated-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:00.388850","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-3-CVP-CALIBRATED-V9.0","title":"RPCMAG CALIBRATED DATA FOR: COMMISSIONING PHASE (CVP)","description":"This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2014 until 14. October 2004","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cvp-calibrated-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:01.388888","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-4-CR4A-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE CRUISE-4A PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4a-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:02.423609","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-4-CR4A-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: CRUISE-4A PHASE (CR4A)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4a-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:03.472344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-4-CR4B-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE CRUISE-4B PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4b-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:04.481776","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-4-CR4B-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: CRUISE-4B PHASE (CR4B)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4b-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:05.407008","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-4-CR5-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE FIFTH CRUISE PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr5-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:06.406523","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-4-CR5-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: CRUISE-5 PHASE (CR5)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the Cruise Phase 5, called CR5, for the time interval December 2009 until June 2010.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr5-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:07.422625","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-4-CVP-RESAMPLED-V3.0","title":"RPCMAG RESAMPLED DATA FOR THE COMMISSIONING PHASE","description":"This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cvp-resampled-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:08.411965","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RPCMAG-4-CVP-RESAMPLED-V9.0","title":"RPCMAG RESAMPLED DATA FOR: COMMISSIONING PHASE (CVP)","description":"This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2004 until 14. October 2004","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cvp-resampled-v9.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:09.420197","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0001-V1.0","title":"RORSI_0001_2004_086_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-26T22:57:28.500 to 2004-03-27T07:10:52.950.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0001-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:10.415093","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0002-V1.0","title":"RORSI_0002_2004_087_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-27T21:51:39.500 to 2004-03-28T07:17:42.950.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0002-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:11.424694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0003-V1.0","title":"RORSI_0003_2004_088_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-28T21:51:03.500 to 2004-03-29T06:51:57.950.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:12.425691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0004-V1.0","title":"RORSI_0004_2004_089_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-29T22:59:42.500 to 2004-03-30T06:37:31.950.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:13.430570","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0005-V1.0","title":"RORSI_0005_2004_123_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-02T20:16:44.500 to 2004-05-03T02:32:29.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:14.478687","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0006-V1.0","title":"RORSI_0006_2004_124_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-03T21:38:35.500 to 2004-05-04T02:11:38.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:15.591982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0007-V1.0","title":"RORSI_0007_2004_125_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-04T20:17:40.500 to 2004-05-05T02:19:16.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:16.433252","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0008-V1.0","title":"RORSI_0008_2004_126_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-05T20:11:52.500 to 2004-05-06T02:21:10.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:17.433721","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP1-0009-V1.0","title":"RORSI_0009_2004_127_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-06T20:11:29.500 to 2004-05-07T02:16:28.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:18.433373","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP2-0010-V1.0","title":"RORSI_0010_2004_255_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 2 (CVP2). This is a Commissioning measurement from 2004-09-11T19:30:04.500 to 2004-09-12T02:15:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp2-0010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:19.437668","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-RSI-1/2/3-CVP2-0011-V1.0","title":"RORSI_0011_2004_283_V1.0","description":"This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 2 (CVP2). This is a Commissioning measurement from 2004-10-09T19:19:48.000 to 2004-10-10T02:29:03.500.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp2-0011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:20.438775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-AST1-V1.0","title":"SREM RAW COUNT RATE DATA FOR AST1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the AST1 (STEINS) mission phase, when in the vicinity of asteroid 2867 STEINS.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:21.440126","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-AST2-V1.0","title":"SREM RAW COUNT RATE DATA FOR AST2","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the AST2 (LUTETIA) mission phase, when in the vicinity of asteroid 21 LUTETIA.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:22.441192","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-CR1-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:23.448778","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-CR2-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR2","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:24.445613","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-CR3-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR3","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:25.487602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-CR4A-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR4A","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:26.533104","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-CR4B-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR4B","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 4B mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:27.445196","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-CR5-V1.0","title":"SREM RAW COUNT RATE DATA FOR CR5","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 5 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:28.451219","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-CVP1-V1.0","title":"SREM RAW COUNT RATE DATA FOR CVP1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CVP1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:29.457395","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-CVP2-V1.0","title":"SREM RAW COUNT RATE DATA FOR CVP2","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CVP2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:30.457538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EAR1-V1.0","title":"SREM RAW COUNT RATE DATA FOR EAR1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 1 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:31.468925","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EAR2-V1.0","title":"SREM RAW COUNT RATE DATA FOR EAR2","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 2 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:32.460635","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EAR3-V1.0","title":"SREM RAW COUNT RATE DATA FOR EAR3","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 3 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:33.468502","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC1-MTP010-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP010","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 10 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:34.468497","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC1-MTP011-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP011","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 11 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:35.467988","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC1-MTP012-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP012","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 12 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:36.494350","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC1-MTP013-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP013","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 13 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:37.543975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC2-MTP014-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP014","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 14 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:38.555748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC2-MTP015-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP015","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 15 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:39.474929","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC2-MTP016-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP016","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 16 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:40.469667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC2-MTP017-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP017","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 17 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:41.484347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC3-MTP018-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP018","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 18 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:42.482722","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC3-MTP019-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP019","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 19 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:43.485694","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC3-MTP020-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP020","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 20 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:44.493537","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC3-MTP021-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP021","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 21 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:45.487749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC4-MTP022-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP022","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 22 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:46.491704","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC4-MTP023-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP023","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 23 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:47.508602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-ESC4-MTP024-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP024","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 24 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:48.552334","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT1-MTP025-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP025","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 25 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:49.568292","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT1-MTP026-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP026","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 26 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:50.496636","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT1-MTP027-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP027","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 27 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:51.498249","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT2-MTP028-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP028","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 28 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:52.501140","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT2-MTP029-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP029","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 29 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:53.508682","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT2-MTP030-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP030","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 30 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:54.509487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT3-MTP031-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP031","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 31 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:55.508975","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT3-MTP032-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP032","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 32 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:56.515456","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT3-MTP033-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP033","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 33 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:57.513916","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT3-MTP034-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP034","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 34 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:58.522435","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-EXT3-MTP035-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP035","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 35 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:25:59.569691","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-MARS-V1.0","title":"SREM RAW COUNT RATE DATA FOR MARS","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the MARS mission phase, when in the vicinity of Mars.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:00.577168","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-PRL-COM-V1.0","title":"SREM RAW COUNT RATE DATA FOR PRL","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the PRELANDING COMISSIONING mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-com-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:01.524821","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-PRL-MTP003-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP003","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 3 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:02.528347","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-PRL-MTP004-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP004","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 4 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:03.525747","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-PRL-MTP005-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP005","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 5 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:04.522809","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-PRL-MTP006-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP006","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 6 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:05.532056","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-PRL-MTP007-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP007","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 7 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:06.533344","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-PRL-MTP008-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP008","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 8 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:07.534807","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-PRL-MTP009-V1.0","title":"SREM RAW COUNT RATE DATA FOR MTP009","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 9 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:08.532261","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-2-RVM1-V1.0","title":"SREM RAW COUNT RATE DATA FOR RVM1","description":"This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the RVM1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:09.541181","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-AST1-V1.0","title":"SREM DERIVED FLUX DATA FOR AST1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the AST1 (STEINS) mission phase, when in the vicinity of asteroid 2867 STEINS.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:10.574610","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-AST2-V1.0","title":"SREM DERIVED FLUX DATA FOR AST2","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the AST2 (LUTETIA) mission phase, when in the vicinity of asteroid 21 LUTETIA.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:11.625905","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-CR1-V1.0","title":"SREM DERIVED FLUX DATA FOR CR1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:12.635068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-CR2-V1.0","title":"SREM DERIVED FLUX DATA FOR CR2","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:13.548555","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-CR3-V1.0","title":"SREM DERIVED FLUX DATA FOR CR3","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 3 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:14.542602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-CR4A-V1.0","title":"SREM DERIVED FLUX DATA FOR CR4A","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 4A mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:15.553185","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-CR4B-V1.0","title":"SREM DERIVED FLUX DATA FOR CR4B","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 4B mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:16.551487","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-CR5-V1.0","title":"SREM DERIVED FLUX DATA FOR CR5","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 5 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:17.557517","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-CVP1-V1.0","title":"SREM DERIVED FLUX DATA FOR CVP1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CVP1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:18.547204","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-CVP2-V1.0","title":"SREM DERIVED FLUX DATA FOR CVP2","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CVP2 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:19.548519","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EAR1-V1.0","title":"SREM DERIVED FLUX DATA FOR EAR1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 1 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:20.560414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EAR2-V1.0","title":"SREM DERIVED FLUX DATA FOR EAR2","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 2 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:21.585946","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EAR3-V1.0","title":"SREM DERIVED FLUX DATA FOR EAR3","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 3 mission phase, when in the vicinity of Earth.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:22.631832","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC1-MTP010-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP010","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 10 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp010-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:23.646382","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC1-MTP011-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP011","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 11 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp011-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:24.569086","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC1-MTP012-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP012","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 12 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp012-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:25.568959","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC1-MTP013-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP013","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 13 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp013-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:26.572699","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC2-MTP014-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP014","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 14 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp014-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:27.571488","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC2-MTP015-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP015","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 15 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp015-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:28.573289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC2-MTP016-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP016","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 16 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp016-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:29.582141","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC2-MTP017-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP017","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 17 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp017-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:30.581342","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC3-MTP018-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP018","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 18 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp018-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:31.585666","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC3-MTP019-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP019","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 19 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp019-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:32.597990","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC3-MTP020-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP020","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 20 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp020-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:33.640702","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC3-MTP021-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP021","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 21 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp021-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:34.658924","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC4-MTP022-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP022","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 22 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp022-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:35.589590","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC4-MTP023-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP023","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 23 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp023-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:36.595121","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-ESC4-MTP024-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP024","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 24 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp024-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:37.586439","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT1-MTP025-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP025","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 25 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp025-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:38.591692","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT1-MTP026-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP026","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 26 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp026-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:39.600163","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT1-MTP027-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP027","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 27 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp027-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:40.603388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT2-MTP028-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP028","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 28 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp028-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:41.605030","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT2-MTP029-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP029","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 29 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp029-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:42.607451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT2-MTP030-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP030","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 30 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp030-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:43.609917","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT3-MTP031-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP031","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 31 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp031-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:44.655868","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT3-MTP032-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP032","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 32 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp032-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:45.668368","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT3-MTP033-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP033","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 33 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp033-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:46.612073","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT3-MTP034-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP034","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 34 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp034-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:47.617092","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-EXT3-MTP035-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP035","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 35 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp035-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:48.610065","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-MARS-V1.0","title":"SREM DERIVED FLUX DATA FOR MARS","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the MARS mission phase, when in the vicinity of Mars.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:49.613337","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-PRL-COM-V1.0","title":"SREM DERIVED FLUX DATA FOR PRL","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the PRELANDING COMISSIONING mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-com-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:50.624211","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-PRL-MTP003-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP003","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 3 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp003-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:51.623454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-PRL-MTP004-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP004","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 4 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp004-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:52.626932","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-PRL-MTP005-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP005","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 5 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp005-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:53.625345","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-PRL-MTP006-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP006","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 6 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp006-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:54.629986","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-PRL-MTP007-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP007","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 7 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp007-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:55.668454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-PRL-MTP008-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP008","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 8 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp008-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:56.812280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-PRL-MTP009-V1.0","title":"SREM DERIVED FLUX DATA FOR MTP009","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 9 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp009-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:57.725769","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO-X-SREM-5-RVM1-V1.0","title":"SREM DERIVED FLUX DATA FOR RVM1","description":"This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the RVM1 mission phase.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:58.633648","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-A-CONSERT-2-AST2-V1.0","title":"CONSERT RAW DATA FOR THE LUTETIA FLY_BY","description":"This volume contains data and supporting documentation from the Rosetta Lutetia fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-a-consert-2-ast2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:26:59.640504","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-2-FSS-V1.0","title":"CONSERT RAW DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:00.644641","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-2-FSS-V2.0","title":"CONSERT EDITED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-fss-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:01.644077","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-2-LTS-V1.0","title":"CONSERT RAW DATA FOR THE LTS PHASE","description":"This volume contains data and supporting documentation from the Rosetta LTS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-lts-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:02.643670","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-2-SDL-V1.0","title":"CONSERT RAW DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:03.648454","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-2-SDL-V2.0","title":"CONSERT EDITED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-sdl-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:04.646651","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-3-FSS-V1.0","title":"CONSERT CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:05.650717","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-3-FSS-V1.1","title":"CONSERT CALIBRATED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-fss-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:06.677275","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-3-SDL-V1.0","title":"CONSERT CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:07.725323","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-3-SDL-V1.1","title":"CONSERT CALIBRATED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-sdl-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:08.733539","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-4-FSS-V1.0","title":"CONSERT REFORMATTED DATA FOR THE FSS PHASE","description":"This volume contains data and supporting documentation from the Rosetta FSS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-fss-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:09.658974","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-C-CONSERT-4-SDL-V1.0","title":"CONSERT REFORMATTED DATA FOR THE SDL PHASE","description":"This volume contains data and supporting documentation from the Rosetta SDL mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-sdl-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:10.662466","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CR2-V1.0","title":"CONSERT RAW DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:11.663257","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CR2-V2.0","title":"CONSERT EDITED DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:12.670289","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CR4A-V1.0","title":"CONSERT RAW DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:13.669893","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CR4A-V2.0","title":"CONSERT EDITED DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4a-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:14.672270","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CR4B-V1.0","title":"CONSERT RAW DATA FOR THE CR4B PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4b-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:15.672553","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CR4B-V2.0","title":"CONSERT EDITED DATA FOR THE CR4B PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4B mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4b-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:16.676160","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CR5-V1.0","title":"CONSERT RAW DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:17.688806","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CR5-V2.0","title":"CONSERT EDITED DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr5-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:18.732221","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CVP-V1.0","title":"CONSERT RAW DATA FOR THE COMMISSIONING PHASE","description":"This volume contains data and supporting documentation from the Rosetta Commissiong mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:19.747068","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CVP1-V1.0","title":"CONSERT EDITED DATA FOR THE COMMISSIONING PHASE PART 1","description":"This volume contains data and supporting documentation from the Rosetta Commissiong mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:20.685105","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-CVP2-V1.0","title":"CONSERT EDITED DATA FOR THE COMMISSIONING PHASE PART 2","description":"This volume contains data and supporting documentation from the Rosetta Commissiong mission phase part 2","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:21.686748","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-EAR1-V2.0","title":"CONSERT EDITED DATA FOR THE EARTH SWING_BY 1","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:22.685875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-EAR2-V2.0","title":"CONSERT EDITED DATA FOR THE EARTH SWING-BY 2","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:23.688971","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-EAR3-V2.0","title":"CONSERT EDITED DATA FOR THE EARTH SWING-BY 3","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:24.694489","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-GRND-V1.0","title":"CONSERT EDITED DATA FOR THE GRND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GRND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grnd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:25.691224","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-GRNDBENCH-V1.0","title":"CONSERT CALIBRATION DATA FOR THE GROUND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GROUND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grndbench-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:26.699236","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-MARS-V2.0","title":"CONSERT EDITED DATA FOR THE MARS FLY-BY","description":"This volume contains edited data and supporting documentation from the Rosetta Mars fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-mars-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:27.696588","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-PDCS-V1.0","title":"CONSERT RAW DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:28.697384","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-PDCS-V2.0","title":"CONSERT EDITED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-pdcs-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:29.738205","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-PHC-V1.0","title":"CONSERT RAW DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:30.793294","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-PHC-V2.0","title":"CONSERT EDITED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC comet phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-phc-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:31.704225","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-RVM1-V1.0","title":"CONSERT RAW DATA FOR THE RVM1 PHASE","description":"This volume contains data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-rvm1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:32.710844","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-2-RVM1-V2.0","title":"CONSERT EDITED DATA FOR THE RVM1 PHASE","description":"This volume contains data and supporting documentation from the Rosetta RVM1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-rvm1-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:33.709945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-CR2-V1.0","title":"CONSERT CALIBRATED DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:34.712565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-CR2-V2.0","title":"CONSERT CALIBRATED DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:35.714876","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-CR4A-V1.0","title":"CONSERT CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:36.718280","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-CR4A-V2.0","title":"CONSERT CALIBRATED DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr4a-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:37.722028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-CR5-V1.0","title":"CONSERT CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:38.720713","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-CR5-V2.0","title":"CONSERT CALIBRATED DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr5-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:39.717506","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-EAR2-V1.0","title":"CONSERT CALIBRATED DATA FOR THE EAR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:40.752423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-EAR2-V2.0","title":"CONSERT CALIBRATED DATA FOR THE EAR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:41.800059","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-EAR3-V1.0","title":"CONSERT CALIBRATED DATA FOR THE EAR3 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:42.814248","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-EAR3-V2.0","title":"CONSERT CALIBRATED DATA FOR THE EAR3 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear3-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:43.728231","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-GRND-V1.0","title":"CONSERT CALIBRATED DATA FOR THE GROUND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GROUND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-grnd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:44.736413","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-GRND-V1.1","title":"CONSERT CALIBRATED DATA FOR THE GROUND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GROUND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-grnd-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:45.733875","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-MARS-V1.0","title":"CONSERT CALIBRATED DATA FOR THE MARS PHASE","description":"This volume contains data and supporting documentation from the Rosetta MARS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:46.740858","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-MARS-V2.0","title":"CONSERT CALIBRATED DATA FOR THE MARS PHASE","description":"This volume contains data and supporting documentation from the Rosetta MARS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-mars-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:47.740912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-PDCS-V1.0","title":"CONSERT CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:48.740667","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-PDCS-V1.1","title":"CONSERT CALIBRATED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-pdcs-v1.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:49.741130","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-PHC-V1.0","title":"CONSERT CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:50.749266","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-3-PHC-V2.0","title":"CONSERT CALIBRATED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-phc-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:51.763907","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-CR2-V1.0","title":"CONSERT REFORMATTED DATA FOR THE CR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:52.812088","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-CR4A-V1.0","title":"CONSERT REFORMATTED DATA FOR THE CR4A PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR4A mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr4a-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:53.822912","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-CR5-V1.0","title":"CONSERT REFORMATTED DATA FOR THE CR5 PHASE","description":"This volume contains data and supporting documentation from the Rosetta CR5 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr5-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:54.752414","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-EAR2-V1.0","title":"CONSERT REFORMATTED DATA FOR THE EAR2 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:55.760277","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-EAR3-V1.0","title":"CONSERT REFORMATTED DATA FOR THE EAR3 PHASE","description":"This volume contains data and supporting documentation from the Rosetta EAR3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:56.760423","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-GRND-V1.0","title":"CONSERT REFORMATTED DATA FOR THE GROUND PHASE","description":"This volume contains data and supporting documentation from the Rosetta GROUND mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-grnd-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:57.762618","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-MARS-V1.0","title":"CONSERT REFORMATTED DATA FOR THE MARS PHASE","description":"This volume contains data and supporting documentation from the Rosetta MARS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:58.765216","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-PDCS-V1.0","title":"CONSERT REFORMATTED DATA FOR THE PDCS PHASE","description":"This volume contains data and supporting documentation from the Rosetta PDCS mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-pdcs-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:27:59.768617","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-CAL-CONSERT-4-PHC-V1.0","title":"CONSERT REFORMATTED DATA FOR THE PHC PHASE","description":"This volume contains data and supporting documentation from the Rosetta PHC mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-phc-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:00.769597","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-E-CONSERT-2-EAR1-V1.0","title":"CONSERT RAW DATA FOR THE EARTH SWING_BY 1","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 1 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:01.772538","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-E-CONSERT-2-EAR2-V1.0","title":"CONSERT RAW DATA FOR THE EARTH SWING-BY 2","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 2 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:02.773773","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-E-CONSERT-2-EAR3-V1.0","title":"CONSERT RAW DATA FOR THE EARTH SWING-BY 3","description":"This volume contains data and supporting documentation from the Rosetta Earth swing by 3 mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear3-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:03.820324","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"RO/RL-M-CONSERT-2-MARS-V1.0","title":"CONSERT RAW DATA FOR THE MARS FLY-BY","description":"This volume contains data and supporting documentation from the Rosetta Mars fly by mission phase","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-m-consert-2-mars-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:04.834582","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SAKIG-C-IMF-3-RDR-HALLEY-V1.0","title":"SAKIGAKE MAGNETIC FIELD DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-imf-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:05.780365","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SAKIG-C-SOW-3-RDR-HALLEY-V1.0","title":"SAKIGAKE SOLAR WIND DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-sow-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:06.789012","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-A-NAVCAM-2-EDR-ANNEFRANK-V1.0","title":"STARDUST NAVCAM IMAGES OF ASTEROID ANNEFRANK","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the asteroid Annefrank encounter (between July 22, 2002 and December 2, 2002.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:07.779084","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-A-NAVCAM-2-EDR-ANNEFRANK-V2.0","title":"STARDUST NAVCAM IMAGES OF ASTEROID ANNEFRANK","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the asteroid Annefrank encounter (between July 22, 2002 and December 2, 2002.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:08.781825","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-A-NAVCAM-2-EDR-ANNEFRANK-V3.0","title":"STARDUST NAVCAM EDR DATA","description":"This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:09.788593","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-A-NAVCAM-3-RDR-ANNEFRANK-V1.0","title":"STARDUST NAVCAM RDR DATA","description":"This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-3-rdr-annefrank-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:10.792418","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-DFMI-2-EDR-WILD2-V1.0","title":"STARDUST DFMI WILD 2 ENCOUNTER EDR DATA","description":"This volume contains the EDR data collected by the STARDUST Dust Flux Monitor Instrument (DFMI) during Wild 2 encounter. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dfmi-2-edr-wild2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:11.791109","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-DYNSCI-2-WILD2-V1.0","title":"STARDUST WILD 2 ENCOUNTER DYNAMIC SCIENCE DATA VOLUME_ID =","description":"This volume contains the Dynamic Science Experiment data collected by the STARDUST spacecraft during Wild 2 encounter. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dynsci-2-wild2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:12.797031","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-2-EDR-WILD2-V1.0","title":"STARDUST NAVCAM IMAGES OF COMET WILD 2","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:13.798602","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-2-EDR-WILD2-V2.0","title":"STARDUST NAVCAM IMAGES OF COMET WILD 2","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:14.831565","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-2-EDR-WILD2-V3.0","title":"STARDUST NAVCAM EDR DATA","description":"This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:15.886993","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-3-RDR-WILD2-V1.0","title":"STARDUST NAVCAM CALIBRATED IMAGES OF COMET WILD 2","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) These images have been calibrated using the best available information at the time of creation. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set. Final data preparation for PDS archiving was done by personnel of the Small Bodies Node","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:16.797237","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-3-RDR-WILD2-V2.0","title":"STARDUST NAVCAM CALIBRATED IMAGES OF COMET WILD 2","description":"This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) These images have been calibrated using the best available information at the time of creation. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set. Final data preparation for PDS archiving was done by personnel of the Small Bodies Node","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:17.800404","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-3-RDR-WILD2-V3.0","title":"STARDUST NAVCAM RDR DATA","description":"This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v3.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:18.803049","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V1.0","title":"SBN DELIVERY VOLUME 5, 2005","description":"This delivery volume holds the data set containing the basic tri-axial ellipsoid shape model of comet 81P/Wild 2 derived from Stardust NAVCAM images.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:19.808451","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V2.0","title":"SBN DELIVERY VOLUME 3, 2006","description":"This delivery volume holds the data sets containing both the basic tri-axial ellipsoid shape model and the detailed plate model of comet 81P/Wild 2. Both were derived from Stardust NAVCAM images.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:20.810198","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V2.1","title":"SBN DELIVERY VOLUME 1, 2007","description":"This delivery volume holds the data sets containing both the basic tri-axial ellipsoid shape model and the detailed plate model of comet 81P/Wild 2. Both were derived from Stardust NAVCAM images. Version 2.1 of this data set includes corrections to file desriptor keywords in two of the data file labels.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v2.1/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:21.814251","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-SRC-2-TEMPS-V1.0","title":"STARDUST SRC TEMPERATURE MEASUREMENTS","description":"This volume contains measurements from multiple temperature sensors in the Sample Return Collector.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-2-temps-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:22.812469","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C-SRC-6-GEOMETRY-V1.0","title":"STARDUST SRC GEOMETRY MEASUREMENTS","description":"This volume contains data describing the geometry and orientation of the spacecraft and dust collector plate during the two insterstellar dust collecting phases and the encounter with comet Wild 2.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-6-geometry-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:23.813629","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C/CAL-NAVCAM-2-NEXT-TEMPEL1-V1.0","title":"STARDUST-NEXT NAVCAM EDR DATA","description":"This volume contains the data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-2-next-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:24.821632","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C/CAL-NAVCAM-3-NEXT-TEMPEL1-V1.0","title":"STARDUST-NEXT NAVCAM RDR DATA","description":"This volume contains the data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-3-next-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:25.841167","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C/D-CIDA-1-EDF/HK-V1.0","title":"STARDUST CIDA DATA","description":"This volume contains the data collected by the STARDUST Cometary and Interstellar Dust Analyser (CIDA) during the whole mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-1-edf_hk-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:26.892558","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C/D-CIDA-2/3-NEXT-TEMPEL1-V1.0","title":"STARDUST-NEXT CIDA EDR/RDR DATA","description":"This volume contains the data collected by the STARDUST Cometary and Interstellar Dust Analyzer (CIDA) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-2_3-next-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:27.905124","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SDU-C/D-DFMI-2/3-NEXT-TEMPEL1-V1.0","title":"STARDUST-NEXT DFMI EDR/RDR DATA","description":"This volume contains the data collected by the STARDUST Dust Flux Monitor Instrument (DFMI) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-dfmi-2_3-next-tempel1-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:28.824749","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SOHO-C-LASCO-4-COMETIMAGES-V1.0","title":"COMETIMAGES DELIVERY VOLUME","description":"This volume contains the data for the SOHO LASCO COMET IMAGES V1.0 data set, ID: SOHO-C-LASCO-4-COMETIMAGES-V1.0. The data set was submitted by Matthew Knight. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-4-cometimages-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:29.871541","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SOHO-C-LASCO-5-KREUTZPHOTOM-V1.0","title":"KREUTZPHOTOM DELIVERY VOLUME","description":"This volume contains the data for the SOHO LASCO Comet Photometry V1.0 data set, ID: SOHO-C-LASCO-5-KREUTZPHOTOM-V1.0. The data set was submitted by Matthew Knight. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-5-kreutzphotom-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:30.875058","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"STARDUST-CAL-NC-2-PREFLIGHT-V1.0","title":"VOLUME 1: SDU NAVCAM PREFLIGHT CALIBRATION","description":"This volume contains the images taken by the STARDUST navigation camera on April 8-10, 1998, prior to flight. The images were acquired while the flight camera unit was in a thermal vacuum chamber and conditions varied to fully characterize the flight unit. A calibration report is also included to describe the calibration process and concerns. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-cal-nc-2-preflight-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:31.836107","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"STARDUST-CAL-NC-2-PREFLIGHT-V2.0","title":"STARDUST NAVCAM RAW PREFLIGHT CALIBRATION IMAGES","description":"This volume contains the raw, preflight, thermal-vacuum calibration images collected by the Navigation Camera (NAVCAM) on 8-10 April 1998 for the Stardust mission. This is version 2.0 of the dataset, in which the original image data were converted from the standard PDS IMG format to the FITS format; no corrections were applied. The NExT mission to comet 9P/Tempel 1 used some of these preflight data to check the exposure time offsets due to shutter reversal and to determine dark current rates. This dataset supersedes version 1.0 which was safed by PDS because the data were not considered to be scientifically useful for the Stardust mission. This volume also contains detailed documentation about the Stardust and NExT missions, spacecraft, instrument, and data set, as well as calibration information and PDS-required index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-cal-nc-2-preflight-v2.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:32.836326","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"STARDUST-C/E/L-DFMI-2-EDR-V1.0","title":"VOLUME 1: SDU DUST FLUX MONITOR INSTRUMENT","description":"This volume contains the data taken by the STARDUST Dust Flux Monitor Instrument during flight from February 19, 1999 until September 13, 1999. A calibration report is also included to describe the calibration process and concerns. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-dfmi-2-edr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:33.841028","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"STARDUST-C/E/L-NC-2-EDR-V1.0","title":"VOLUME 1: SDU NAVCAM EARLY CRUISE IMAGES","description":"This volume contains the images taken by the STARDUST navigation camera in flight from the launch of the satellite, February 7, 2000, until October 29, 2001. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-nc-2-edr-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:34.845119","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"SUISEI-C-ESP-3-RDR-HALLEY-V1.0","title":"SUISEI SOLAR WIND EXPERIMENT DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/suisei-c-esp-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:35.842982","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-DUCMA-3-RDR-HALLEY-V1.0","title":"VEGA1 DUCMA DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:36.852966","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-IKS-2-RDR-HALLEY-V1.0","title":"VEGA 1 IKS IMAGE MODE DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:38.007945","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-IKS-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA 1 IKS HIGH-RES IR SPECTRA of COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:38.912621","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-MISCHA-3-RDR-HALLEY-V1.0","title":"VEGA1 MISCHA DATA FOR COMET 1P/HALLEY ENCOUNTER","description":"Data extracted from the HAL_1003 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:39.855388","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-PM1-2-RDR-HALLEY-V1.0","title":"VEGA 1 PLASMA ENERGY ANALYZER DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:40.851800","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-PUMA-2-RDR-HALLEY-V1.0","title":"VEGA 1 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:41.855532","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-PUMA-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA 1 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:42.856774","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-SP1-2-RDR-HALLEY-V1.0","title":"VEGA1 SP1 DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:43.862329","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-SP2-2-RDR-HALLEY-V1.0","title":"VEGA1 SP2 DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:44.861775","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-TNM-2-RDR-HALLEY-V1.0","title":"VEGA1 TUNDE-M DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tnm-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:45.863796","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-TVS-2-RDR-HALLEY-V1.0","title":"VEGA1 TELEVISION SYSTEM DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:46.867755","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C-TVS-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA1 PROCESSED TELEVISION DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:47.871481","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-C/SW-MISCHA-3-RDR-ORIGINAL-V1.0","title":"VEGA1 MISCHA ORIGINAL SUBMISSION FOR CRUISE/HALLEY","description":"Data extracted from the HAL_1004 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-c_sw-mischa-3-rdr-original-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:48.910460","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA1-SW-MISCHA-3-RDR-CRUISE-V1.0","title":"VEGA1 MISCHA DATA FROM PRE-HALLEY CRUISE","description":"Data extracted from the HAL_1003 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega1-sw-mischa-3-rdr-cruise-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:49.958536","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-DUCMA-3-RDR-HALLEY-V1.0","title":"VEGA2 DUCMA DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:50.873581","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-PM1-2-RDR-HALLEY-V1.0","title":"VEGA 2 PLASMA ENERGY ANALYZER DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:51.866938","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-PUMA-2-RDR-HALLEY-V1.0","title":"VEGA 2 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:52.878474","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-PUMA-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA 2 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:53.880319","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-SP1-2-RDR-HALLEY-V1.0","title":"VEGA2 SP1 DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:54.882711","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-SP2-2-RDR-HALLEY-V1.0","title":"VEGA2 SP2 DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:55.880436","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-TVS-2-RDR-HALLEY-V1.0","title":"VEGA2 UNPROCESSED TELEVISION DATA FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:56.886426","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-TVS-3-RDR-HALLEY-PROCESSED-V1.0","title":"VEGA2 TV DATA PROCESSED BY KFKI, FOR COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-3-rdr-halley-processed-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:57.890903","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C-TVS-5-RDR-HALLEY-TRANSFORM-V1.0","title":"VEGA2 TRANSFORMED TV IMAGE OF COMET 1P/HALLEY","description":"Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-5-rdr-halley-transform-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:58.885524","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VEGA2-C/SW-MISCHA-3-RDR-ORIGINAL-V1.0","title":"VEGA2 MISCHA ORIGINAL SUBMISSION FOR CRUISE/HALLEY","description":"Data extracted from the HAL_1004 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:28:59.918638","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"VG2-J-UVS-0--SL9-NULL-RESULTS-V1.0","title":"VOLUME 1009","description":"This volume contains the data for the VOYAGER 2 JUPITER/SHOEMAKER-LEVY 9 UVS NULL RESULTS V1.0 data set, ID: VG2-J-UVS-0--SL9-NULL-RESULTS-V1.0. A statement of null results is included for the Voyager 2 UVS instrument.","node":"sbn","pds_version":"PDS3","type":"volume","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/vg2-j-uvs-0--sl9-null-results-v1.0/","download_url":null,"label_url":null,"source_url":"https://pds-smallbodies.astro.umd.edu/holdings/","scraped_at":"2026-02-18T04:29:00.971943","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs::1.0","title":"DART Telescopic Observation Archive","description":"The DART Telescopic Observation Bundle contains raw, calibrated, and derived data products taken from several ground observations in support of the DART mission. The bundle also includes documentation organized by ground observatory that describes the observatory data collections.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/bundle.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.736899Z","keywords":["Lowell"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_lightcurve_derived_parameters::1.0","title":"ASTEROID LIGHTCURVE DERIVED DATA","description":"This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1913-01-01","stop_date":"2017-02-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/bundle_ast_lightcurve_derived_parameters.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/bundle_ast_lightcurve_derived_parameters.xml","scraped_at":"2026-02-25T20:02:10.736962Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-mb.reddy.spectra::1.0","title":"REDDY MAIN BELT ASTEROID SPECTRA","description":"This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(101) Helena","(105) Artemis","(1086) Nata","(1124) Stroobantia","(113) Amalthea","(1145) Robelmonte","(12) Victoria","(121) Hermione","(1251) Hedera","(1284) Latvia","(130) Elektra","(1329) Eliane","(135) Hertha","(138) Tolosa","(1503) Kuopio","(1616) Filipoff","(1626) Sadeya","(167) Urda","(170) Maria","(1717) Arlon","(182) Elsa","(1830) Pogson","(184) Dejopeja","(1883) Rimito","(192) Nausikaa","(1929) Kollaa","(2) Pallas","(20) Massalia","(2011) Veteraniya","(2014) Vasilevskis","(2045) Peking","(213) Lilaea","(214) Aschera","(22) Kalliope","(233) Asterope","(243) Ida","(253) Mathilde","(255) Oppavia","(256) Walpurga","(264) Libussa","(273) Atropos","(276) Adelheid","(283) Emma","(289) Nenetta","(30) Urania","(306) Unitas","(308) Polyxo","(317) Roxane","(349) Dembowska","(37) Fides","(379) Huenna","(385) Ilmatar","(389) Industria","(4) Vesta","(403) Cyane","(41) Daphne","(419) Aurelia","(434) Hungaria","(44) Nysa","(442) Eichsfeldia","(446) Aeternitas","(45) Eugenia","(458) Hercynia","(470) Kilia","(472) Roma","(482) Petrina","(502) Sigune","(504) Cora","(51) Nemausa","(56) Melete","(569) Misa","(620) Drakonia","(63) Ausonia","(64) Angelina","(66) Maja","(663) Gerlinde","(670) Ottegebe","(704) Interamnia","(741) Botolphia","(762) Pulcova","(809) Lundia","(84) Klio","(858) El Djezair","(863) Benkoela","(87) Sylvia","(872) Holda","(877) Walkure","(9) Metis","(951) Gaspra","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2001-03-11","stop_date":"2012-06-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/bundle_gbo.ast-mb.reddy.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/bundle_gbo.ast-mb.reddy.spectra.xml","scraped_at":"2026-02-25T20:02:10.736972Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.2mass.phot::1.0","title":"2MASS ASTEROID AND COMET SURVEY","description":"This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2MASS Camera - North","2MASS 1.3m Telescope at Fred L. Whipple Observatory","2MASS Camera - South","2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"],"instrument_hosts":["Fred L. Whipple Observatory","Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"1997-06-07","stop_date":"2001-02-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/bundle_gbo.ast.2mass.phot.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/bundle_gbo.ast.2mass.phot.xml","scraped_at":"2026-02-25T20:02:10.736978Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:tno-centaur_diam-albedo-density::1.0","title":"TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0","description":"This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":[],"start_date":"1986-01-01","stop_date":"2018-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/bundle_tno-centaur_diam-albedo-density.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/bundle_tno-centaur_diam-albedo-density.xml","scraped_at":"2026-02-25T20:02:10.736981Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.polarimetry::1.0","title":"POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS","description":"The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)","8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory","Sanglok Observatory Photometer-Polarimeter","RCC Richey-Chretien Telescope at Institute of Astrophysics","KPNO Single Channel Polarimeter","1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory","McDonald Observatory Linear Polarimeter","2.1-m Struve Warner &"],"instrument_hosts":["European Southern Observatory on Cerro Paranal","Institute of Astrophysics","Kitt Peak National Observatory","McDonald Observatory"],"data_types":[],"start_date":"1972-04-08","stop_date":"2012-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/bundle_compil.tno-centaur.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/bundle_compil.tno-centaur.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.736987Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.dione.shape-model::1.0","title":"GASKELL DIONE SHAPE MODEL","description":"The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS"],"targets":["Saturn IV (Dione)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":[],"start_date":"2004-12-14","stop_date":"2010-12-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/bundle_gaskell.dione.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/bundle_gaskell.dione.shape-model.xml","scraped_at":"2026-02-25T20:02:10.736991Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.mimas.shape-model::1.0","title":"GASKELL MIMAS SHAPE MODEL","description":"The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS","VOYAGER"],"targets":["Saturn I (Mimas)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","VOYAGER 1","CASSINI ORBITER"],"data_types":[],"start_date":"1980-11-12","stop_date":"2011-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/bundle_gaskell.mimas.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/bundle_gaskell.mimas.shape-model.xml","scraped_at":"2026-02-25T20:02:10.736996Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.phoebe.shape-model::1.0","title":"GASKELL PHOEBE SHAPE MODEL","description":"The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS"],"targets":["Saturn IX (Phoebe)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":[],"start_date":"2004-06-11","stop_date":"2004-06-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/bundle_gaskell.phoebe.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/bundle_gaskell.phoebe.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737000Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.tethys.shape-model::1.0","title":"GASKELL TETHYS SHAPE MODEL","description":"The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS"],"targets":["Saturn III (Tethys)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":[],"start_date":"2004-10-28","stop_date":"2010-08-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/bundle_gaskell.tethys.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/bundle_gaskell.tethys.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737003Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.smass.spectra::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0","description":"The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(541) Deborah","(4179) Toutatis","(1166) Sakuntala","(38) Leda","(495) Eulalia","(808) Merxia","(234) Barbara","(7341) 1991 VK","(631) Philippina","(319) Leona","(3494) Purplemountain","(4606) Saheki","(3748) Tatum","(111) Ate","(2645) Daphneplane","(297) Caecilia","(314) Rosalia","(3321) Dasha","(5143) Heracles","(169) Zelia","(4038) Kristina","(86) Semele","(2538) Vanderlinden","(4031) Mueller","(722) Frieda","(509) Iolanda","(126) Velleda","(4219) Nakamura","(1451) Grano","(28) Bellona","(39) Laetitia","(8) Flora","(415690) 1992 UB","(3935) Toatenmongakkai","1991 XB","(339) Dorothea","(36) Atalante","(4165) Didkovskij","(4640) Hara","(248) Lameia","(2091) Sampo","(374) Burgundia","(481) Emita","(702) Alauda","(3220) Murayama","(402) Chloe","(6) Hebe","(32) Pomona","(2365) Interkosmos","(239) Adrastea","(204) Kallisto","(3332) Raksha","(3760) Poutanen","(54) Alexandra","(4370) Dickens","(4156) Okadanoboru","(4373) Crespo","(1375) Alfreda","(471) Papagena","(511) Davida","(1697) Koskenniemi","(3578) Carestia","(470) Kilia","(137) Meliboea","(2923) Schuyler","(384) Burdigala","(4104) Alu","(61) Danae","(3528) Counselman","(2074) Shoemaker","(3167) Babcock","(10) Hygiea","(2174) Asmodeus","(2299) Hanko","(4761) Urrutia","(480) Hansa","(55) Pandora","(1626) Sadeya","(2215) Sichuan","(1279) Uganda","(2775) Odishaw","(4085) Weir","(3155) Lee","(3915) Fukushima","(8176) 1991 WA","(529) Preziosa","(4353) Onizaki","(4635) Rimbaud","(653) Berenike","(2259) Sofievka","(243) Ida","(416) Vaticana","(737) Arequipa","(2140) Kemerovo","(3759) Piironen","(138) Tolosa","(1534) Nasi","(803) Picka","(72) Feronia","(1577) Reiss","(1325) Inanda","(2558) Viv","(2442) Corbett","(3677) Magnusson","(371) Bohemia","(1772) Gagarin","(3381) Mikkola","(4956) Noymer","(582) Olympia","(1143) Odysseus","(134) Sophrosyne","(2590) Mourao","(639) Latona","(350) Ornamenta","(3792) Preston","(2070) Humason","(128) Nemesis","(4) Vesta","(441) Bathilde","(230) Athamantis","(2107) Ilmari","(256) Walpurga","(43) Ariadne","(519) Sylvania","(3657) Ermolova","(1906) Naef","(2444) Lederle","(599) Luisa","(2908) Shimoyama","(185) Eunike","(2011) Veteraniya","(1653) Yakhontovia","(14) Irene","(196) Philomela","(4006) Sandler","(1145) Robelmonte","(2078) Nanking","(235) Carolina","(787) Moskva","(2599) Veseli","(2965) Surikov","(879) Ricarda","(2130) Evdokiya","(1393) Sofala","(3431) Nakano","(1749) Telamon","(3559) Violaumayer","(7474) 1992 TC","(149) Medusa","(82) Alkmene","(22) Kalliope","(1198) Atlantis","(1501) Baade","(7) Iris","(3740) Menge","(1712) Angola","(245) Vera","(4062) Schiaparelli","(4376) Shigemori","(4215) Kamo","(4562) Poleungkuk","(3268) Desanctis","(131) Vala","(788) Hohensteina","(1584) Fuji","(918) Itha","(1110) Jaroslawa","(116) Sirona","(3501) Olegiya","(4159) Freeman","(518) Halawe","(88) Thisbe","(2420) Ciurlionis","(5065) Johnstone","(1967) Menzel","(65706) 1992 NA","(42) Isis","(430) Hybris","(4440) Tchantches","(2060) Chiron","(512) Taurinensis","(68) Leto","(3944) Halliday","(3158) Anga","(446) Aeternitas","(2159) Kukkamaki","(3674) Erbisbuhl","(1646) Rosseland","(2204) Lyyli","(4005) Dyagilev","(2024) Mclaughlin","(346) Hermentaria","(292) Ludovica","(456) Abnoba","(1358) Gaika","(1892) Lucienne","(3963) Paradzhanov","(1722) Goffin","(4546) Franck","(1679) Nevanlinna","(1302) Werra","(2327) Gershberg","(290) Bruna","(1934) Jeffers","(354) Eleonora","(1781) Vanbiesbroeck","(1084) Tamariwa","(1478) Vihuri","(5145) Pholus","(1257) Mora","(1658) Innes","(4673) Bortle","(3231) Mila","(2728) Yatskiv","(724) Hapag","(1607) Mavis","(1463) Nordenmarkia","(218) Bianca","(1264) Letaba","(2966) Korsunia","(1995) Hajek","(4282) Endate","(1651) Behrens","(2128) Wetherill","(291) Alice","(4939) Scovil","(1289) Kutaissi","(3523) Arina","(2143) Jimarnold","(25) Phocaea","(563) Suleika","(774) Armor","(2790) Needham","(289) Nenetta","(2403) Sumava","(1063) Aquilegia","(1854) Skvortsov","(2014) Vasilevskis","(4145) Maximova","(915) Cosette","(73) Klytia","(158) Koronis","(1725) Crao","Multiple Asteroids","(1471) Tornio","(231) Vindobona","(3109) Machin","(683) Lanzia","(1807) Slovakia","(2440) Educatio","(3869) Norton","(3285) Ruthwolfe","(2149) Schwambraniya","(1165) Imprinetta","(29) Amphitrite","(2503) Liaoning","(1929) Kollaa","(349) Dembowska","(237) Coelestina","(3586) Vasnetsov","(71) Niobe","(1907) Rudneva","(1933) Tinchen","(1480) Aunus","(2119) Schwall","(467) Laura","(477) Italia","(3968) Koptelov","(1743) Schmidt","(53) Kalypso","(2017) Wesson","(811) Nauheima","(345) Tercidina","(211) Isolda","(863) Benkoela","(2253) Espinette","(1144) Oda","(157) Dejanira","(4002) Shinagawa","(4025) Ridley","(720) Bohlinia","(3628) Boznemcova","(550) Senta","(851) Zeissia","(5118) Elnapoul","(4510) Shawna","(186) Celuta","(18) Melpomene","(3354) Mcnair","(1379) Lomonosowa","(2920) Automedon","(287) Nephthys","(752) Sulamitis","(474) Prudentia","(900) Rosalinde","(221) Eos","(1071) Brita","(11066) Sigurd","(951) Gaspra","(1273) Helma","(1518) Rovaniemi","(732) Tjilaki","(2946) Muchachos","(813) Baumeia","(167) Urda","(2105) Gudy","(3665) Fitzgerald","(1628) Strobel","(675) Ludmilla","(3153) Lincoln","(4147) Lennon","(124) Alkeste","(2113) Ehrdni","(4948) Hideonishimura","(3999) Aristarchus","(3) Juno","(2098) Zyskin"],"instruments":["2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory"],"data_types":[],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/bundle_gbo.ast.smass.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/bundle_gbo.ast.smass.spectra.xml","scraped_at":"2026-02-25T20:02:10.737025Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.7-color-survey::1.0","title":"SEVEN COLOR ASTEROID SURVEY","description":"The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Primo I Photometer","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"1992-07-01","stop_date":"1994-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/bundle_gbo.ast.7-color-survey.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/bundle_gbo.ast.7-color-survey.xml","scraped_at":"2026-02-25T20:02:10.737031Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.satellite.polarimetry::1.0","title":"POLARIMETRY OF PLANETARY SATELLITES","description":"This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Satellites"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1966-12-12","stop_date":"2011-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/bundle_compil.satellite.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/bundle_compil.satellite.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.737035Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.pluto-charon.mutual-events::1.0","title":"PLUTO-CHARON MUTUAL EVENTS","description":"Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(134340) Pluto"],"instruments":["Tinsley Photometer","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory","Tinsley Photometer","61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory","McDonald P45a Two-Channel Photometer","2.7m Telescope","McDonald P45a Two-Channel Photometer","2.1-m Struve Warner &","McDonald P45a Two-Channel Photometer","91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory","Literature Compilation"],"instrument_hosts":["Mauna Kea Observatory","Mauna Kea Observatory","McDonald Observatory","McDonald Observatory","McDonald Observatory"],"data_types":[],"start_date":"1985-01-16","stop_date":"1990-09-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/bundle_gbo.pluto-charon.mutual-events.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/bundle_gbo.pluto-charon.mutual-events.xml","scraped_at":"2026-02-25T20:02:10.737041Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.ecas.phot::1.0","title":"EIGHT COLOR ASTEROID SURVEY","description":"This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1979-05-31","stop_date":"1983-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/bundle_gbo.ast.ecas.phot.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/bundle_gbo.ast.ecas.phot.xml","scraped_at":"2026-02-25T20:02:10.737045Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.albedos::1.0","title":"ASTEROID ALBEDOS","description":"This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1973-01-01","stop_date":"2001-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/bundle_compil.ast.albedos.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/bundle_compil.ast.albedos.xml","scraped_at":"2026-02-25T20:02:10.737050Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.magnitude-slope::1.0","title":"ASTEROID ABSOLUTE MAGNITUDES","description":"Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1990-12-02","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/bundle_compil.ast.magnitude-slope.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/bundle_compil.ast.magnitude-slope.xml","scraped_at":"2026-02-25T20:02:10.737053Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.names::1.0","title":"ASTEROID NAMES AND DISCOVERY","description":"This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1801-01-01","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/bundle_compil.ast.names.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/bundle_compil.ast.names.xml","scraped_at":"2026-02-25T20:02:10.737057Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.radar-properties::1.0","title":"ASTEROID RADAR","description":"This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1968-01-01","stop_date":"2011-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/bundle_compil.ast.radar-properties.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/bundle_compil.ast.radar-properties.xml","scraped_at":"2026-02-25T20:02:10.737061Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.jpl.radar.shape_models::1.0","title":"Radar shape models of asteroids compiled by Lawrence V1.0","description":"This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(33342) 1998 WT24","(10115) 1992 SK","(276049) 2002 CE26","(29075) 1950 DA","(341843) 2008 EV5","(54509) YORP","(136617) 1994 CC","(2100) Ra-Shalom","(4486) Mithra","(4660) Nereus","(66391) 1999 KW4"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":[],"start_date":"1999-02-07","stop_date":"2009-06-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/bundle_gbo.ast.jpl.radar.shape_models.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/bundle_gbo.ast.jpl.radar.shape_models.xml","scraped_at":"2026-02-25T20:02:10.737068Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.ubv-photometry::1.0","title":"UBV MEAN ASTEROID COLORS","description":"This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1951-01-01","stop_date":"1989-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/bundle_compil.ast.ubv-photometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/bundle_compil.ast.ubv-photometry.xml","scraped_at":"2026-02-25T20:02:10.737072Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.magnitude-phase::1.0","title":"KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS","description":"A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1978-04-28","stop_date":"2008-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/bundle_compil.ast.magnitude-phase.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/bundle_compil.ast.magnitude-phase.xml","scraped_at":"2026-02-25T20:02:10.737075Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.colors::1.0","title":"TNO AND CENTAUR COLORS","description":"This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Multiple Comets"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1985-09-23","stop_date":"2014-03-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/bundle_compil.tno-centaur.colors.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/bundle_compil.tno-centaur.colors.xml","scraped_at":"2026-02-25T20:02:10.737079Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.lightcurves::1.0","title":"TRANS-NEPTUNIAN OBJECT LIGHTCURVES","description":"This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(19521) Chaos","(79360) Sila-Nunam","(91133) 1998 HK151","1998 XY95","(40314) 1999 KR16","(47932) 2000 GN171","(150642) 2001 CZ31","(82155) 2001 FZ173","(38628) Huya","Multiple Asteroids","(15875) 1996 TP66","(19255) 1994 VK8","(19308) 1996 TO66","(26181) 1996 GQ21","(26375) 1999 DE9","(33128) 1998 BU48","(33340) 1998 VG44"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1997-08-27","stop_date":"2001-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/bundle_compil.tno-centaur.lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/bundle_compil.tno-centaur.lightcurves.xml","scraped_at":"2026-02-25T20:02:10.737083Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.masses::1.0","title":"ASTEROID MASSES","description":"This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1991-01-01","stop_date":"2012-04-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/bundle_compil.ast.masses.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/bundle_compil.ast.masses.xml","scraped_at":"2026-02-25T20:02:10.737087Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.vilas.spectra::1.0","title":"VILAS ASTEROID SPECTRA","description":"This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(102) Miriam","(1036) Ganymed","(1162) Larissa","(1167) Dubiago","(1172) Aneas","(1208) Troilus","(121) Hermione","(130) Elektra","(134) Sophrosyne","(1368) Numidia","(1390) Abastumani","(142) Polana","(1467) Mashona","(1512) Oulu","(152) Atala","(153) Hilda","(165) Loreley","(17) Thetis","(1722) Goffin","(181) Eucharis","(1866) Sisyphus","(1867) Deiphobus","(187) Lamberta","(19) Fortuna","(190) Ismene","(2) Pallas","(2113) Ehrdni","(2241) Alcathous","(225) Henrietta","(2357) Phereclos","(2674) Pandarus","(276) Adelheid","(292) Ludovica","(31) Euphrosyne","(326) Tamara","(3288) Seleucus","(334) Chicago","(368) Haidea","(375) Ursula","(407) Arachne","(409) Aspasia","(41) Daphne","(420) Bertholda","(433) Eros","(466) Tisiphone","(483) Seppina","(495) Eulalia","(499) Venusia","(528) Rezia","(54) Alexandra","(559) Nanon","(566) Stereoskopia","(570) Kythera","(606) Brangane","(624) Hektor","(643) Scheherezade","(65) Cybele","(654) Zelinda","(66) Maja","(692) Hippodamia","(695) Bella","(709) Fringilla","(733) Mocia","(748) Simeisa","(76) Freia","(773) Irmintraud","(776) Berbericia","(797) Montana","(87) Sylvia","(877) Walkure","(884) Priamus","(908) Buda","(914) Palisana","(940) Kordula","Multiple Asteroids"],"instruments":["CTIO 1.5-meter Cassegrain Spectrograph","1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory","Fink Spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station","CTIO 1.0m 2DFrutti Spectrograph","1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory","Larson IHW spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"],"instrument_hosts":["Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station","Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station"],"data_types":[],"start_date":"1982-02-04","stop_date":"1998-09-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/bundle_gbo.ast.vilas.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/bundle_gbo.ast.vilas.spectra.xml","scraped_at":"2026-02-25T20:02:10.737098Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-vesta.reddy.spectra::1.0","title":"REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA","description":"This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(4) Vesta"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2010-03-27","stop_date":"2010-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/bundle_gbo.ast-vesta.reddy.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/bundle_gbo.ast-vesta.reddy.spectra.xml","scraped_at":"2026-02-25T20:02:10.737104Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.24-color-survey::1.0","title":"24-COLOR ASTEROID SURVEY","description":"This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(1015) Christa","(1019) Strackea","(1025) Riema","(1036) Ganymed","(105) Artemis","(1055) Tynka","(1058) Grubba","(106) Dione","(1075) Helina","(108) Hecuba","(1088) Mitaka","(11) Parthenope","(110) Lydia","(1103) Sequoia","(113) Amalthea","(115) Thyra","(116) Sirona","(1162) Larissa","(1172) Aneas","(1173) Anchises","(119) Althaea","(1199) Geldonia","(12) Victoria","(1208) Troilus","(121) Hermione","(1212) Francette","(122) Gerda","(124) Alkeste","(1263) Varsavia","(128) Nemesis","(1284) Latvia","(129) Antigone","(13) Egeria","(130) Elektra","(1317) Silvretta","(1330) Spiridonia","(136) Austria","(1364) Safara","(139) Juewa","(14) Irene","(140) Siwa","(141) Lumen","(144) Vibilia","(1449) Virtanen","(145) Adeona","(149) Medusa","(1493) Sigrid","(15) Eunomia","(150) Nuwa","(1512) Oulu","(1529) Oterma","(156) Xanthippe","(1566) Icarus","(158) Koronis","(1580) Betulia","(1595) Tanga","(16) Psyche","(1620) Geographos","(1627) Ivar","(163) Erigone","(1636) Porter","(164) Eva","(1645) Waterfield","(1656) Suomi","(166) Rhodope","(167) Urda","(1685) Toro","(169) Zelia","(17) Thetis","(170) Maria","(1717) Arlon","(1727) Mette","(175) Andromache","(176) Iduna","(18) Melpomene","(181) Eucharis","(1830) Pogson","(185) Eunike","(1862) Apollo","(19) Fortuna","(1915) Quetzalcoatl","(192) Nausikaa","(194) Prokne","(196) Philomela","(197) Arete","(198) Ampella","(2) Pallas","(20) Massalia","(200) Dynamene","(208) Lacrimosa","(21) Lutetia","(210) Isabella","(2100) Ra-Shalom","(213) Lilaea","(216) Kleopatra","(217) Eudora","(22) Kalliope","(220) Stephania","(2201) Oljato","(221) Eos","(23) Thalia","(230) Athamantis","(236) Honoria","(24) Themis","(243) Ida","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(262) Valda","(264) Libussa","(268) Adorea","(27) Euterpe","(279) Thule","(28) Bellona","(281) Lucretia","(29) Amphitrite","(293) Brasilia","(3) Juno","(30) Urania","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(313) Chaldaea","(32) Pomona","(323) Brucia","(324) Bamberga","(325) Heidelberga","(326) Tamara","(335) Roberta","(337) Devosa","(338) Budrosa","(339) Dorothea","(34) Circe","(340) Eduarda","(341) California","(344) Desiderata","(345) Tercidina","(347) Pariana","(349) Dembowska","(354) Eleonora","(356) Liguria","(36) Atalante","(361) Bononia","(363) Padua","(365) Corduba","(37) Fides","(372) Palma","(374) Burgundia","(375) Ursula","(386) Siegena","(389) Industria","(39) Laetitia","(391) Ingeborg","(4) Vesta","(40) Harmonia","(402) Chloe","(403) Cyane","(409) Aspasia","(41) Daphne","(413) Edburga","(415) Palatia","(416) Vaticana","(419) Aurelia","(42) Isis","(423) Diotima","(426) Hippo","(43) Ariadne","(433) Eros","(434) Hungaria","(435) Ella","(439) Ohio","(44) Nysa","(441) Bathilde","(446) Aeternitas","(45) Eugenia","(453) Tea","(46) Hestia","(462) Eriphyla","(468) Lina","(471) Papagena","(472) Roma","(48) Doris","(481) Emita","(488) Kreusa","(490) Veritas","(496) Gryphia","(5) Astraea","(505) Cava","(51) Nemausa","(510) Mabella","(511) Davida","(513) Centesima","(52) Europa","(526) Jena","(53) Kalypso","(532) Herculina","(54) Alexandra","(554) Peraga","(558) Carmen","(560) Delila","(562) Salome","(563) Suleika","(574) Reginhild","(579) Sidonia","(5797) Bivoj","(58) Concordia","(582) Olympia","(584) Semiramis","(588) Achilles","(599) Luisa","(6) Hebe","(60) Echo","(613) Ginevra","(617) Patroclus","(62) Erato","(624) Hektor","(628) Christine","(63) Ausonia","(639) Latona","(64) Angelina","(648) Pippa","(65) Cybele","(654) Zelinda","(66) Maja","(660) Crescentia","(674) Rachele","(676) Melitta","(68) Leto","(69) Hesperia","(695) Bella","(696) Leonora","(7) Iris","(704) Interamnia","(71) Niobe","(712) Boliviana","(714) Ulula","(739) Mandeville","(741) Botolphia","(747) Winchester","(750) Oskar","(758) Mancunia","(760) Massinga","(770) Bali","(772) Tanete","(773) Irmintraud","(78) Diana","(781) Kartvelia","(782) Montefiore","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(8) Flora","(80) Sappho","(801) Helwerthia","(811) Nauheima","(82) Alkmene","(83) Beatrix","(839) Valborg","(84) Klio","(846) Lipperta","(85) Io","(858) El Djezair","(87) Sylvia","(88) Thisbe","(884) Priamus","(887) Alinda","(89) Julia","(895) Helio","(9) Metis","(90) Antiope","(909) Ulla","(911) Agamemnon","(92) Undina","(925) Alphonsina","(93) Minerva","(94) Aurora","(944) Hidalgo","(969) Leocadia","(97) Klotho","(976) Benjamina","Multiple Asteroids"],"instruments":["DUAL BEAM PHOTOMETER"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":"1981-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/bundle_gbo.ast.24-color-survey.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/bundle_gbo.ast.24-color-survey.xml","scraped_at":"2026-02-25T20:02:10.737123Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra::1.0","title":"SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS","description":"This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1172) Aneas","(1173) Anchises","(18268) Dardanos","(1871) Astyanax","(192388) 1996 RD29","(192929) 2000 AT44","(2223) Sarpedon","(2357) Phereclos","(30698) Hippokoon","(3548) Eurybates","(4829) Sergestus","(5130) Ilioneus","(5511) Cloanthus","(6998) Tithonus","(9430) Erichthonios","(9818) Eurymachos","Multiple Asteroids","(105685) 2000 SC51","(11089) 1994 CS8","(111113) 2001 VK85","(11351) Leucus","(11488) 1988 RM11","(11663) 1997 GO24","(120453) 1988 RE12","(124729) 2001 SB173","(12921) 1998 WZ5","(13862) 1999 XT160","(14707) 2000 CC20","(15502) 1999 NV27","(15977) 1998 MA11","(163135) 2002 CT22","(163216) 2002 EN68","(17416) 1988 RR10","(18060) 1999 XJ156","(18137) 2000 OU30","(18493) Demoleon","(18940) 2000 QV49","(23549) Epicles","(23694) 1997 KZ3","(24233) 1999 XD94","(24341) 2000 AJ87","(24380) 2000 AA160","(24420) 2000 BU22","(24426) 2000 CR12","(24452) 2000 QU167","(24467) 2000 SS165","(25347) 1999 RQ116","(28958) 2001 CQ42","(31820) 1999 RT186","(31821) 1999 RK225","(32430) 2000 RQ83","(32615) 2001 QU277","(32794) 1989 UE5","(34785) 2001 RG87","(39285) 2001 BP75","(4035) 1986 WD","(43212) 2000 AL113","(47967) 2000 SL298","(48249) 2001 SY345","(48252) 2001 TL212","(51359) 2000 SC17","(53469) 2000 AX8","(56968) 2000 SA92","(65150) 2002 CA126","(65225) 2002 EK44","(6545) 1986 TR6","(7352) 1994 CO","(76804) 2000 QE","(84709) 2002 VW120","(9030) 1989 UX5","(99328) 2001 UY123"],"instruments":["Eso Multimode Instrument","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":[],"start_date":"2002-11-09","stop_date":"2005-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/bundle_gbo.ast-trojan.fornasier-etal.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/bundle_gbo.ast-trojan.fornasier-etal.spectra.xml","scraped_at":"2026-02-25T20:02:10.737134Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.sdss-moc.phot::1.0","title":"SDSS MOVING OBJECT CATALOG","description":"The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":[],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/bundle_gbo.sdss-moc.phot.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/bundle_gbo.sdss-moc.phot.xml","scraped_at":"2026-02-25T20:02:10.737139Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.triad.radiometry::1.0","title":"TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS","description":"This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"1972-01-01","stop_date":"1978-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/bundle_compil.ast.triad.radiometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/bundle_compil.ast.triad.radiometry.xml","scraped_at":"2026-02-25T20:02:10.737143Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.sdss-based-taxonomy::1.0","title":"SDSS-BASED ASTEROID TAXONOMY","description":"The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":[],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/bundle_ast.sdss-based-taxonomy.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/bundle_ast.sdss-based-taxonomy.xml","scraped_at":"2026-02-25T20:02:10.737147Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-iannini-family.spectra::1.0","title":"IANNINI ASTEROID FAMILY SPECTRA","description":"Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(202951) 1999 RE","(217773) 2000 RO76","(122633) 2000 RA80","(122636) 2000 RZ81","(147311) 2003 AF89","(150781) 2001 QO282","(61207) 2000 OZ7","(61928) 2000 RP4","(81550) 2000 HU23","(87239) 2000 OH45","(88187) 2000 XZ42"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"],"instrument_hosts":["W.M. Keck Observatory"],"data_types":[],"start_date":"2004-11-10","stop_date":"2007-03-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/bundle_gbo.ast-iannini-family.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/bundle_gbo.ast-iannini-family.spectra.xml","scraped_at":"2026-02-25T20:02:10.737151Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra::1.0","title":"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC","description":"These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(334008) 2000 UP66","(5498) Gustafsson","(7558) Yurlov","(9147) Kourakuen","(9254) Shunkai","(9481) Menchu","(9553) Colas","(10537) 1991 RY16","(111515) 2001 YC91","(113844) 2002 TV237","(114544) 2003 BN28","(122357) 2000 QH49","(12543) 1998 QM5","(131010) 2000 XQ9","(134455) 1998 ST116","(24941) 1997 JM14","(26886) 1994 TJ2","(28034) 1998 EU13","(28517) 2000 DD7","(36840) 2000 SH112","(37304) 2001 EW23","(38070) Redwine","(44447) 1998 UM21","(46690) 1997 AN23","(53143) 1999 BB9","(56026) 1998 VN52","(56570) 2000 JA21","(60669) 2000 GE4","(94005) 2000 XO25"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory","Supernova Integral Field Spectrograph (SNIFS)","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"],"instrument_hosts":["W.M. Keck Observatory","Mauna Kea Observatory"],"data_types":[],"start_date":"2004-11-10","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/bundle_gbo.ast-v-type.moscovitz.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/bundle_gbo.ast-v-type.moscovitz.spectra.xml","scraped_at":"2026-02-25T20:02:10.737159Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.fieber-beyer.spectra::1.0","title":"FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA","description":"The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1018) Arnolda","(1036) Ganymed","(1064) Aethusa","(1158) Luda","(1166) Sakuntala","(1215) Boyer","(1358) Gaika","(1368) Numidia","(1379) Lomonosowa","(1391) Carelia","(1447) Utra","(1501) Baade","(1587) Kahrstedt","(1607) Mavis","(1644) Rafita","(1722) Goffin","(1772) Gagarin","(1854) Skvortsov","(1960) Guisan","(198) Ampella","(2089) Cetacea","(248) Lameia","(2497) Kulikovskij","(292) Ludovica","(3066) McFadden","(329) Svea","(3345) Tarkovskij","(335) Roberta","(355) Gabriella","(3637) O'Meara","(3760) Poutanen","(3999) Aristarchus","(421) Zahringia","(46) Hestia","(495) Eulalia","(556) Phyllis","(5676) Voltaire","(619) Triberga","(623) Chimaera","(652) Jubilatrix","(660) Crescentia","(6649) Yokotatakao","(695) Bella","(714) Ulula","(787) Moskva","(797) Montana","(875) Nymphe","(879) Ricarda","(897) Lysistrata","(908) Buda","(974) Lioba","Multiple Asteroids","(6212) 1993 MS1"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2000-06-30","stop_date":"2014-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/bundle_gbo.ast.fieber-beyer.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/bundle_gbo.ast.fieber-beyer.spectra.xml","scraped_at":"2026-02-25T20:02:10.737168Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.belskaya.polarimetry::1.0","title":"BELSKAYA ASTEROID POLARIMETRY","description":"This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["AFOSC Polarimeter","Copernico 1.82m Telescope at Asiago Astrophysical Observatory","CrAO Five-Channel Photopolarimeter","1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"],"instrument_hosts":["Asiago Astrophysical Observatory","Crimean Astrophysical Observatory-Partizanskoye"],"data_types":[],"start_date":"1996-06-09","stop_date":"2006-03-07","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/bundle_gbo.ast.belskaya.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/bundle_gbo.ast.belskaya.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.737173Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.delbo.radiometric-diameters-albedos::1.0","title":"DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS","description":"This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Thermal Infrared Multi-Mode Instrument 2","3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory","JPL Mid-InfraRed Large-well Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","MIRSI - Mid-Infrared Spectrometer and Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","Keck I Long Wavelength Spectrograph (IR)","W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"],"instrument_hosts":["European Southern Observatory","Mauna Kea Observatory","Mauna Kea Observatory","W.M. Keck Observatory"],"data_types":[],"start_date":"2000-03-16","stop_date":"2003-06-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/bundle_ast.delbo.radiometric-diameters-albedos.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/bundle_ast.delbo.radiometric-diameters-albedos.xml","scraped_at":"2026-02-25T20:02:10.737179Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.bus-demeo.taxonomy::1.0","title":"BUS-DEMEO ASTEROID TAXONOMY","description":"The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1991-10-25","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/bundle_ast.bus-demeo.taxonomy.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/bundle_ast.bus-demeo.taxonomy.xml","scraped_at":"2026-02-25T20:02:10.737183Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.mrc.families::1.0","title":"MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES","description":"This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/bundle_ast.mrc.families.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/bundle_ast.mrc.families.xml","scraped_at":"2026-02-25T20:02:10.737187Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.wisniewski.magnitudes::1.0","title":"WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES","description":"Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1976-10-19","stop_date":"1993-12-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/bundle_gbo.ast.wisniewski.magnitudes.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/bundle_gbo.ast.wisniewski.magnitudes.xml","scraped_at":"2026-02-25T20:02:10.737190Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ices.mastrapa.lab-spectra::1.0","title":"OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE","description":"Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Terrestrial Water Ice"],"instruments":["VARIAN EXCALIBUR SERIES FTS 3000"],"instrument_hosts":[],"data_types":[],"start_date":"2006-04-12","stop_date":"2006-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/bundle_gbo.ices.mastrapa.lab-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/bundle_gbo.ices.mastrapa.lab-spectra.xml","scraped_at":"2026-02-25T20:02:10.737194Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra::1.0","title":"LEBOFSKY ET AL. 3-MICRON ASTEROID DATA","description":"3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(111) Ate","(114) Kassandra","(1172) Aneas","(13) Egeria","(130) Elektra","(139) Juewa","(148) Gallia","(16) Psyche","(173) Ino","(18) Melpomene","(1867) Deiphobus","(19) Fortuna","(2) Pallas","(233) Asterope","(24) Themis","(247) Eukrate","(308) Polyxo","(31) Euphrosyne","(313) Chaldaea","(324) Bamberga","(344) Desiderata","(349) Dembowska","(36) Atalante","(375) Ursula","(386) Siegena","(4) Vesta","(409) Aspasia","(410) Chloris","(423) Diotima","(5) Astraea","(505) Cava","(51) Nemausa","(511) Davida","(52) Europa","(532) Herculina","(55) Pandora","(554) Peraga","(570) Kythera","(65) Cybele","(70) Panopaea","(704) Interamnia","(72) Feronia","(721) Tabora","(74) Galatea","(748) Simeisa","(773) Irmintraud","(776) Berbericia","(87) Sylvia","(88) Thisbe","(92) Undina","Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1977-02-17","stop_date":"1989-04-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/bundle_gbo.ast.lebofsky-etal.3-micron-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/bundle_gbo.ast.lebofsky-etal.3-micron-spectra.xml","scraped_at":"2026-02-25T20:02:10.737200Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.smass2.spectra::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0","description":"This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(140) SIWA","(2912) LAPALMA","(4352) KYOTO","(4701) MILANI","(2305) KING","(245) VERA","(5563) 1991 VZ1","(1541) ESTONIA","(125) LIBERATRIX","(634) UTE","(3151) TALBOT","(4276) CLIFFORD","(4382) STRAVINSKY","(70) PANOPAEA","(2118) FLAGSTAFF","(7564) GOKUMENON","(1041) ASTA","(188) MENIPPE","(2106) HUGO","(3306) BYRON","(3809) AMICI","(4649) SUMOTO","(606) BRANGANE","(1785) WURM","(1135) COLCHIS","(1830) POGSON","(3340) YINHAI","(670) OTTEGEBE","(1147) STAVROPOLIS","(1348) MICHEL","(7817) ZIBITURTLE","(50) VIRGINIA","(625) XENIA","(338) BUDROSA","(3435) BOURY","(147) PROTOGENEIA","(5184) CAVAILLE-COLL","(192) NAUSIKAA","(26) PROSERPINA","(8516) HYAKKAI","(6500) KODAIRA","(1424) SUNDMANIA","(1618) DAWN","(897) LYSISTRATA","(2813) ZAPPALA","(4591) BRYANTSEV","(133) CYRENE","(1777) GEHRELS","(4200) SHIZUKAGOZEN","(4686) MAISICA","(1998) WS","(741) BOTOLPHIA","(5261) EUREKA","(354) ELEONORA","(478) TERGESTE","(5588) JENNABELLE","(154) BERTHA","(170) MARIA","(211) ISOLDA","(3759) PIIRONEN","(2902) WESTERLUND","(2246) BOWELL","(6582) FLAGSYMPHONY","(868) LOVA","(1594) DANJON","(228) AGATHE","(3389) SINZOT","(4993) COSSARD","(301) BAVARIA","(1176) LUCIDOR","(2504) GAVIOLA","(5965) 1990 SV15","(106) DIONE","(4512) SINUHE","(153) HILDA","(230) ATHAMANTIS","(2875) LAGERKVIST","(6071) SAKITAMA","(2038) BISTRO","(3037) ALKU","(4968) SUZAMUR","(306) UNITAS","(504) CORA","(815) COPPELIA","(912) MARITIMA","(159) AEMILIA","(15) EUNOMIA","(2631) ZHEJIANG","(3900) KNEZEVIC","(3395) JITKA","(3775) ELLENBETH","(4909) COUTEAU","(6509) GIOVANNIPRATESI","(98) IANTHE","(1094) SIBERIA","(2681) OSTROVSKIJ","(3491) FRIDOLIN","(3813) FORTOV","(1056) AZALEA","(4945) IKENOZENNI","(826) HENRIKA","(12) VICTORIA","(4951) IWAMOTO","(2271) KISO","(181) EUCHARIS","(1052) BELGICA","(193) AMBROSIA","(387) AQUITANIA","(759) VINIFERA","(1848) DELVAUX","(1659) PUNKAHARJU","(358) APOLLONIA","(10473) THIROUIN","(105) ARTEMIS","(539) PAMINA","(564) DUDU","(3635) KREUTZ","(2141) SIMFEROPOL","(3265) FLETCHER","(103) HERA","(2370) VAN ALTENA","(631) PHILIPPINA","(1882) RAUMA","(17) THETIS","(269) JUSTITIA","(136) AUSTRIA","(984) GRETIA","(162) LAURENTIA","(161) ATHOR","(90) ANTIOPE","(3678) MONGMANWAI","(2147) KHARADZE","(378) HOLMIA","(476) HEDWIG","(383) JANINA","(795) FINI","(753) TIFLIS","(1071) BRITA","(3074) POPOV","(2575) BULGARIA","(1214) RICHILDE","(592) BATHSEBA","(177) IRMA","(5242) KENREIMONIN","(4804) PASTEUR","(194) PROKNE","(534) NASSOVIA","(973) ARALIA","(2559) SVOBODA","(5318) DIENTZENHOFER","(4718) ARAKI","(30) URANIA","(6078) BURT","(4774) HOBETSU","(279) THULE","(808) MERXIA","(5010) AMENEMHET","(345) TERCIDINA","(677) AALTJE","(2086) NEWELL","(1433) GERAMTINA","(4982) BARTINI","(3307) ATHABASCA","(1502) ARENDA","(152) ATALA","(1539) BORRELLY","(208) LACRIMOSA","(2917) SAWYER HOGG","(679) PAX","(1730) MARCELINE","(1385) GELRIA","(1534) NASI","(547) PRAXEDIS","(2444) LEDERLE","(3885) BOGORODSKIJ","(1271) ISERGINA","(3406) OMSK","(4619) POLYAKHOVA","(481) EMITA","(4726) FEDERER","(1490) LIMPOPO","(494) VIRTUS","(7225) HUNTRESS","(642) CLARA","(1086) NATA","(3865) LINDBLOOM","(205) MARTHA","(3020) NAUDTS","(1783) ALBITSKIJ","(3654) AAS","(554) PERAGA","(7081) LUDIBUNDA","(4547) MASSACHUSETTS","(668) DORA","(2818) JUVENALIS","(46) HESTIA","(1228) SCABIOSA","(4265) KANI","(88) THISBE","(4570) RUNCORN","(3762) AMARAVELLA","(1329) ELIANE","(179) KLYTAEMNESTRA","(56) MELETE","(399) PERSEPHONE","(5348) KENNOGUCHI","(1702) KALAHARI","(3704) GAOSHIQI","(4706) DENNISREUTER","(5595) ROTH","(7405) 1988 FF","(1929) KOLLAA","(1301) YVONNE","(3546) ATANASOFF","(122) GERDA","(2401) AEHLITA","(1601) PATRY","(507) LAODICA","(674) RACHELE","(3249) MUSASHINO","(87) SYLVIA","(737) AREQUIPA","(5344) RYABOV","(7304) NAMIKI","(824) ANASTASIA","(3474) LINSLEY","(886) WASHINGTONIA","(8008) 1988 TQ4","(3363) BOWEN","(2430) BRUCE HELIN","(1332) MARCONIA","(3576) GALINA","(1891) GONDOLA","(3314) BEALS","(142) POLANA","(9970) 1992 ST1","(2852) DECLERCQ","(130) ELEKTRA","(261) PRYMNO","(377) CAMPANIA","(7451) VERBITSKAYA","(189) PHTHIA","(783) NORA","(751) FAINA","(1474) BEIRA","(336) LACADIERA","(4304) GEICHENKO","(4786) TATIANINA","(1304) AROSA","(410) CHLORIS","(337) DEVOSA","(3796) LENE","(543) CHARLOTTE","(1110) JAROSLAWA","(2402) SATPAEV","(1716) PETER","(3371) GIACCONI","(747) WINCHESTER","(2754) EFIMOV","(1015) CHRISTA","(1970) SUMERIA","(353) RUPERTO-CAROLA","(2930) EURIPIDES","(2446) LUNACHARSKY","(2369) CHEKHOV","(331) ETHERIDGEA","(2448) SHOLOKHOV","(3311) PODOBED","(3587) DESCARTES","(5892) MILESDAVIS","(980) ANACOSTIA","(1188) GOTHLANDIA","(384) BURDIGALA","(1903) ADZHIMUSHKAJ","(5690) 1992 EU","(247) EUKRATE","(2244) TESLA","(395) DELIA","(167) URDA","(2744) BIRGITTA","(1751) HERGET","(3862) AGEKIAN","(7404) 1988 AA5","(6086) VRCHLICKY","(3713) PIETERS","(8334) 1984 CF","(4733) ORO","(1734) ZHONGOLOVICH","(4548) WIELEN","(720) BOHLINIA","(4082) SWANN","(4311) ZGURIDI","(2640) HALLSTROM","(3248) FARINELLA","(327) COLUMBIA","(281) LUCRETIA","(365) CORDUBA","(180) GARUMNA","(398) ADMETE","(6585) O'KEEFE","(2567) ELBA","(1638) RUANDA","(3844) LUJIAXI","(3850) PELTIER","(523) ADA","(288) GLAUKE","(1542) SCHALEN","(4284) KAHO","(5195) KAENDLER","(51) NEMAUSA","(1336) ZEELANDIA","(742) EDISONA","(1284) LATVIA","(134) SOPHROSYNE","(4737) KILADZE","(2851) HARBIN","(101) HELENA","(1977) SHURA","(119) ALTHAEA","(4426) ROERICH","(2085) HENAN","(924) TONI","(2107) ILMARI","(2582) HARIMAYA-BASHI","(3175) NETTO","(1839) RAGAZZA","(2736) OPS","(7245) 1991 RN10","(785) ZWETANA","(3542) TANJIAZHEN","(614) PIA","(174) PHAEDRA","(3209) BUCHWALD","(1664) FELIX","(201) PENELOPE","(3155) LEE","(3443) LEETSUNGDAO","(1351) UZBEKISTANIA","(2973) PAOLA","(1857) PARCHOMENKO","(2579) SPARTACUS","(2675) TOLKIEN","Multiple Asteroids","(675) LUDMILLA","(3827) ZDENEKHORSKY","(3873) RODDY","(845) NAEMA","(3767) DIMAGGIO","(1251) HEDERA","(1798) WATTS","(844) LEONTINA","(75) EURYDIKE","(638) MOIRA","(84) KLIO","(462) ERIPHYLA","(1021) FLAMMARIO","(1045) MICHELA","(24) THEMIS","(994) OTTHILD","(2251) TIKHOV","(513) CENTESIMA","(107) CAMILLA","(3971) VORONIKHIN","(6146) ADAMKRAFFT","(62) ERATO","(13) EGERIA","(3737) BECKMAN","(584) SEMIRAMIS","(4036) WHITEHOUSE","(898) HILDEGARD","(1738) OOSTERHOFF","(1480) AUNUS","(4292) AOBA","(2386) NIKONOV","(2911) MIAHELENA","(5079) BRUBECK","(622) ESTHER","(186) CELUTA","(416) VATICANA","(3563) CANTERBURY","(458) HERCYNIA","(1724) VLADIMIR","(1904) MASSEVITCH","(1729) BERYL","(2708) BURNS","(109) FELICITAS","(2635) HUGGINS","(263) DRESDA","(460) SCANIA","(6386) KEITHNOLL","(2604) MARSHAK","(3287) OLMSTEAD","(453) TEA","(1560) STRATTONIA","(164) EVA","(35) LEUKOTHEA","(2042) SITARSKI","(1635) BOHRMANN","(485) GENUA","(519) SYLVANIA","(1128) ASTRID","(286) ICLEA","(1603) NEVA","(3040) KOZAI","(7211) XERXES","(2715) MIELIKKI","(4215) KAMO","(28) BELLONA","(553) KUNDRY","(65) CYBELE","(997) PRISKA","(1888) ZU CHONG-ZHI","(14) IRENE","(4917) YURILVOVIA","(61) DANAE","(386) SIEGENA","(5108) LUBECK","(278) PAULINA","(233) ASTEROPE","(360) CARLOVA","(1494) SAVO","(4845) TSUBETSU","(21) LUTETIA","(5553) CHODAS","(6907) HARRYFORD","(1025) RIEMA","(250) BETTINA","(856) BACKLUNDA","(1386) STORERIA","(266) ALINE","(4033) YATSUGATAKE","(556) PHYLLIS","(4) VESTA","(60) ECHO","(1104) SYRINGA","(729) WATSONIA","(735) MARGHANNA","(1373) CINCINNATI","(4536) DREWPINSKY","(3782) CELLE","(2346) LILIO","(491) CARINA","(1517) BEOGRAD","(5840) RAYBROWN","(496) GRYPHIA","(531) ZERLINA","(3670) NORTHCOTT","(925) ALPHONSINA","(3376) ARMANDHAMMER","(7) IRIS","(1020) ARCADIA","(521) BRIXIA","(687) TINETTE","(2331) PARVULESCO","(102) MIRIAM","(3394) BANNO","(1022) OLYMPIADA","(1201) STRENUA","(1799) KOUSSEVITZKY","(5234) SECHENOV","(516) AMHERSTIA","(779) NINA","(200) DYNAMENE","(1102) PEPITA","(6005) 1989 BD","(375) URSULA","(2354) LAVROV","(321) FLORENTINA","(853) NANSENIA","(971) ALSATIA","(2089) CETACEA","(304) OLGA","(4434) NIKULIN","(2152) HANNIBAL","(4182) MOUNT LOCKE","(2547) HUBEI","(579) SIDONIA","(7056) KIERKEGAARD","(2952) LILLIPUTIA","(781) KARTVELIA","(160) UNA","(3262) MIUNE","(3526) JEFFBELL","(1234) ELYNA","(63) AUSONIA","(6354) VANGELIS","(1014) SEMPHYRA","(2507) BOBONE","(1252) CELESTIA","(2509) CHUKOTKA","(135) HERTHA","(3642) FRIEDEN","(95) ARETHUSA","(1140) CRIMEA","(409) ASPASIA","(5103) DIVIS","(246) ASPORINA","(671) CARNEGIA","(2704) JULIAN LOEWE","(4610) KAJOV","(934) THURINGIA","(226) WERINGIA","(4611) VULKANEIFEL","(3364) ZDENKA","(392) WILHELMINA","(895) HELIO","(3417) TAMBLYN","(5081) SANGUIN","(782) MONTEFIORE","(363) PADUA","(2194) ARPOLA","(423) DIOTIMA","(1107) LICTORIA","(1634) NDOLA","(388) CHARYBDIS","(3375) AMY","(374) BURGUNDIA","(7224) VESNINA","(1055) TYNKA","(3192) A'HEARN","(2737) KOTKA","(5685) SANENOBUFUKUI","(731) SORGA","(776) BERBERICIA","(6211) TSUBAME","(78) DIANA","(115) THYRA","(1930) LUCIFER","(2762) FOWLER","(425) CORNELIA","(431) NEPHELE","(2157) ASHBROOK","(5647) SAROJININAIDU","(1548) PALOMAA","(1587) KAHRSTEDT","(175) ANDROMACHE","(58) CONCORDIA","(2772) DUGAN","(5534) 1941 UN","(3458) BODUOGNAT","(34) CIRCE","(2957) TATSUO","(3829) GUNMA","(1148) RARAHU","(965) ANGELICA","(3198) WALLONIA","(236) HONORIA","(144) VIBILIA","(2396) KOCHI","(4051) HATANAKA","(396) AEOLIA","(2185) GUANGDONG","(4516) PUGOVKIN","(1352) WAWEL","(99913) 1997 CZ5","(2371) DIMITROV","(2720) PYOTR PERVYJ","(3534) SAX","(3430) BRADFIELD","(4135) SVETLANOV","(69) HESPERIA","(611) VALERIA","(3701) PURKYNE","(393) LAMPETIA","(1262) SNIADECKIA","(4817) GLIBA","(6) HEBE","(2508) ALUPKA","(5552) STUDNICKA","(715) TRANSVAALIA","(5240) KWASAN","(3611) DABU","(5134) EBILSON","(1428) MOMBASA","(484) PITTSBURGHIA","(165) LORELEY","(3858) DORCHESTER","(8450) EGOROV","(1323) TUGELA","(4997) KSANA","(148) GALLIA","(3647) DERMOTT","(397) VIENNA","(129) ANTIGONE","(1493) SIGRID","(5632) INGELEHMANN","(2468) REPIN","(3800) KARAYUSUF","(3365) RECOGNE","(3841) DICICCO","(4923) CLARKE","(2022) WEST","(85) IO","(1680) PER BRAHE","(6192) JAVIERGOROSABEL","(673) EDDA","(443) PHOTOGRAPHICA","(111) ATE","(2501) LOHJA","(2521) HEIDI","(5091) ISAKOVSKIJ","(112) IPHIGENIA","(3734) WALAND","(6364) CASARINI","(1204) RENZIA","(2864) SODERBLOM","(3628) BOZNEMCOVA","(4628) LAPLACE","(1483) HAKOILA","(413) EDBURGA","(1300) MARCELLE","(1706) DIECKVOSS","(187) LAMBERTA","(1562) GONDOLATSCH","(355) GABRIELLA","(7763) CRABEELS","(359) GEORGIA","(569) MISA","(1106) CYDONIA","(127) JOHANNA","(3349) MANAS","(4096) KUSHIRO","(804) HISPANIA","(1640) NEMO","(773) IRMINTRAUD","(2881) MEIDEN","(191) KOLGA","(2380) HEILONGJIANG","(1076) VIOLA","(1600) VYSSOTSKY","(2949) KAVERZNEV","(114) KASSANDRA","(541) DEBORAH","(1048) FEODOSIA","(5159) BURBINE","(3686) ANTOKU","(1458) MINEURA","(2789) FOSHAN","(4422) JARRE","(1471) TORNIO","(128) NEMESIS","(866) FATME","(1088) MITAKA","(1263) VARSAVIA","(2099) OPIK","(2801) HUYGENS","(1406) KOMPPA","(6906) JOHNMILLS","(2750) LOVIISA","(4256) KAGAMIGAWA","(4272) ENTSUJI","(4944) KOZLOVSKIJ","(2527) GREGORY","(596) SCHEILA","(961) GUNNIE","(206) HERSILIA","(1807) SLOVAKIA","(7728) GIBLIN","(3669) VERTINSKIJ","(23) THALIA","(4995) GRIFFIN","(4297) EICHHORN","(4719) BURNABY","(985) ROSINA","(258) TYCHE","(166) RHODOPE","(6592) GOYA","(80) SAPPHO","(1653) YAKHONTOVIA","(4107) RUFINO","(79) EURYNOME","(2988) KORHONEN","(207) HEDDA","(1520) IMATRA","(414) LIRIOPE","(578) HAPPELIA","(4342) FREUD","(702) ALAUDA","(342) ENDYMION","(3949) MACH","(402) CHLOE","(444) GYPTIS","(600) MUSA","(6782) 1990 SU10","(4682) BYKOV","(3440) STAMPFER","(1565) LEMAITRE","(511) DAVIDA","(649) JOSEFA","(190) ISMENE","(4037) IKEYA","(2060) CHIRON","(26209) 1997 RD1","(282) CLORINDE","(3137) HORKY","(4287) TRISOV","(2732) WITT","(3687) DZUS","(2335) JAMES","(178) BELISANA","(3007) REAVES","(38) LEDA","(7604) KRIDSADAPORN","(3985) RAYBATSON","(1294) ANTWERPIA","(173) INO","(209) DIDO","(116) SIRONA","(3169) OSTRO","(3861) LORENZ","(1185) NIKKO","(3090) TJOSSEM","(4713) STEEL","(555) NORMA","(372) PALMA","(2035) STEARNS","(633) ZELIMA","(37) FIDES","(1189) TERENTIA","(5416) ESTREMADOYRO","(244) SITA","(2390) NEZARKA","(64) ANGELINA","(5133) PHILLIPADAMS","(970) PRIMULA","(4942) MUNROE","(2167) ERIN","(477) ITALIA","(242) KRIEMHILD","(381) MYRRHA","(5069) TOKEIDAI","(1017) JACQUELINE","(2834) CHRISTY CAROL","(3214) MAKARENKO","(3920) AUBIGNAN","(2410) MORRISON","(241) GERMANIA","(705) ERMINIA","(5111) JACLIFF","(2465) WILSON","(3) JUNO","(5397) VOJISLAVA","(4607) SEILANDFARM","(48) DORIS","(4396) GRESSMANN","(1152) PAWONA","(1968) MEHLTRETTER","(1936) LUGANO","(5102) BENFRANKLIN","(6283) 1980 VX1","(2328) ROBESON","(3910) LISZT","(1726) HOFFMEISTER","(3976) LISE","(2428) KAMENYAR","(1374) ISORA","(1858) LOBACHEVSKIJ","(3684) BERRY","(1563) NOEL","(3630) LUBOMIR","(597) BANDUSIA","(237) COELESTINA","(4417) LECAR","(89) JULIA","(490) VERITAS","(560) DELILA","(10504) DOGA","(4435) HOLT","(151) ABUNDANTIA","(1836) KOMAROV","(470) KILIA","(5482) KORANKEI","(308) POLYXO","(5196) BUSTELLI","(10199) CHARIKLO","(3579) ROCKHOLT","(1007) PAWLOWIA","(2258) VIIPURI","(3744) HORN-D'ARTURO","(2809) VERNADSKIJ","(559) NANON","(2840) KALLAVESI","(3181) AHNERT","(2378) PANNEKOEK","(2791) PARADISE","(2427) KOBZAR","(3320) NAMBA","(1715) SALLI","(5) ASTRAEA","(110) LYDIA","(4678) NINIAN","(5243) CLASIEN","(240) VANADIS","(860) URSINA","(5610) BALSTER","(563) SULEIKA","(2353) ALVA","(4188) KITEZH","(757) PORTLANDIA","(3636) PAJDUSAKOVA","(3451) MENTOR","(150) NUWA","(184) DEJOPEJA","(17480) 1991 PE10","(2934) ARISTOPHANES","(3309) BRORFELDE","(792) METCALFIA","(4261) GEKKO","(1131) PORZIA","(2827) VELLAMO","(4372) QUINCY","(512) TAURINENSIS","(1069) PLANCKIA","(1293) SONJA","(3833) CALINGASTA","(1248 )JUGURTHA","(2598) MERLIN","(2746) HISSAO","(1667) PELS","(5448) SIEBOLD","(5641) MCCLEESE","(2748) PATRICK GENE","(139) JUEWA","(1058) GRUBBA","(1187) AFRA","(2029) BINOMI","(2733) HAMINA","(4900) MAYMELOU","(3345) TARKOVSKIJ","(4479) CHARLIEPARKER","(2409) CHAPMAN","(2625) JACK LONDON","(627) CHARIS","(171) OPHELIA","(4194) SWEITZER","(405) THIA","(7170) LIVESEY","(42) ISIS","(1797) SCHAUMASSE","(322) PHAEO","(257) SILESIA","(4604) STEKARSTROM","(29) AMPHITRITE","(2879) SHIMIZU","(52) EUROPA","(2925) BEATTY","(3788) STEYAERT","(4910) KAWASATO","(146) LUCINA","(2874) JIM YOUNG","(5379) ABEHIROSHI","(5253) FREDCLIFFORD","(5333) KANAYA","(872) HOLDA","(4116) ELACHI","(4156) OKADANOBORU","(551) ORTRUD","(3170) DZHANIBEKOV","(253) MATHILDE","(295) THERESIA","(4838) BILLMCLAUGHLIN","(950) AHRENSA","(905) UNIVERSITAS","(389) INDUSTRIA","(8333) 1982 VF","(1196) SHEBA","(4369) SEIFERT","(1155) AENNA","(348) MAY","(739) MANDEVILLE","(5956) D'ALEMBERT","(1065) AMUNDSENIA","(1660) WOOD","(6716) 1990 RO1","(4969) LAWRENCE","(2169) TAIWAN","(4650) MORI","(1695) WALBECK","(2857) NOT","(1831) NICHOLSON","(5329) DECARO","(929) ALGUNDE","(2040) CHALONGE","(57) MNEMOSYNE","(1860) BARBAROSSA","(2482) PERKIN","(310) MARGARITA","(121) HERMIONE","(1856) RUZENA","(3536) SCHLEICHER","(4702) BEROUNKA","(4424) ARKHIPOVA","(243) IDA","(442) EICHSFELDIA","(352) GISELA","(2045) PEKING","(2566) KIRGHIZIA","(2065) SPICER","(586) THEKLA","(2560) SIEGMA","(4750) MUKAI","(713) LUSCINIA","(2078) NANKING","(2478) TOKAI","(870) MANTO","(94) AURORA","(275) SAPIENTIA","(767) BONDIA","(1508) KEMI","(234) BARBARA","(503) EVELYN","(1016) ANITRA","(1264) LETABA","(1747) WRIGHT","(7397) 1986 QS","(1847) STOBBE","(1407) LINDELOF","(3658) FELDMAN","(196) PHILOMELA","(412) ELISABETHA","(1484) POSTREMA","(2467) KOLLONTAI","(6410) FUJIWARA","(6908) KUNIMOTO","(1604) TOMBAUGH","(1046) EDWIN","(22449) OTTIJEFF","(2373) IMMO","(71) NIOBE","(4534) RIMSKIJ-KORSAKOV","(4001) PTOLEMAEUS","(3712) KRAFT","(572) REBEKKA","(5230) ASAHINA","(604) TEKMESSA","(27) EUTERPE","(2) PALLAS","(1278) KENYA","(3533) TOYOTA","(3831) PETTENGILL","(1360) TARKA","(1350) ROSSELIA","(66) MAJA","(32) POMONA","(2493) ELMER","(1545) THERNOE","(5330) SENRIKYU","(784) PICKERINGIA","(796) SARITA","(2873) BINZEL","(532) HERCULINA","(4072) YAYOI","(172) BAUCIS","(1024) HALE","(117) LOMIA","(3028) ZHANGGUOXI","(456) ABNOBA","(3819) ROBINSON","(4849) ARDENNE","(771) LIBERA","(1593) FAGNES","(4839) DAISETSUZAN","(2872) GENTELEC","(33) POLYHYMNIA","(1212) FRANCETTE","(156) XANTHIPPE","(1998) TITIUS","(2087) KOCHERA","(4711) KATHY","(4853) MARIELUKAC","(2001) EINSTEIN","(2280) KUNIKOV","(5649) DONNASHIRLEY","(3972) RICHARD","(527) EURYANTHE","(3258) SOMNIUM","(951) GASPRA","(4390) MADRETERESA","(12281) CHAUMONT","(2977) CHIVILIKHIN","(3792) PRESTON","(83) BEATRIX","(6233) KIMURA","(1403) IDELSONIA","(910) ANNELIESE","(3581) ALVAREZ","(5565) UKYOUNODAIBU","(1427) RUVUMA","(2423) IBARRURI","(3401) VANPHILOS","(1948) KAMPALA","(259) ALETHEIA","(913) OTILA","(2382) NONIE","(4374) TADAMORI","(4491) OTARU","(108) HECUBA","(2953) VYSHESLAVIA","(3367) ALEX","(1550) TITO","(2349) KURCHENKO","(4327) RIES","(19) FORTUNA","(2906) CALTECH","(479) CAPRERA","(3567) ALVEMA","(404) ARSINOE","(5067) OCCIDENTAL","(5214) OOZORA","(2511) PATTERSON","(3853) HAAS","(11906) 1992 AE1","(216) KLEOPATRA","(2161) GRISSOM","(2455) SOMVILLE","(100480) 1996 UK","(376) GEOMETRIA","(749) MALZOVIA","(930) WESTPHALIA","(4461) SAYAMA","(6077) MESSNER","(2816) PIEN","(5510) 1988 RF7","(4280) SIMONENKO","(74) GALATEA","(3511) TSVETAEVA","(4340) DENCE","(141) LUMEN","(2905) PLASKETT","(3566) LEVITAN","(4748) TOKIWAGOZEN","(688) MELANIE","(4222) NANCITA","(661) CLOELIA","(4407) TAIHAKU","(39) LAETITIA","(471) PAPAGENA","(3385) BRONNINA","(704) INTERAMNIA","(1951) LICK","(403) CYANE","(123) BRUNHILD","(349) DEMBOWSKA","(4844) MATSUYAMA","(169) ZELIA","(317) ROXANE","(2778) TANGSHAN","(197) ARETE","(2996) BOWMAN","(716) BERKELEY","(6230) FRAM","(1186) TURNERA","(629) BERNARDINA","(3903) KLIMENT OHRIDSKI","(2053) NUKI","(3493) STEPANOV","(5051) RALPH","(5438) LORRE","(3096) BEZRUC","(862) FRANZIA","(1613) SMILEY","(3640) GOSTIN","(82) ALKMENE","(18) MELPOMENE","(1553) BAUERSFELDA","(5013) SUZHOUSANZHONG","(3527) MCCORD","(3700) GEOWILLIAMS","(120) LACHESIS","(1327) NAMAQUA","(723) HAMMONIA","(113) AMALTHEA","(267) TIRZA","(5401) MINAMIODA","(16) PSYCHE","(2088) SAHLIA","(2308) SCHILT","(5485) KAULA","(5467) 1988 AG","(5492) THOMA","(5208) ROYER","(158) KORONIS","(4157) IZU","(47) AGLAJA","(264) LIBUSSA","(4343) TETSUYA","(176) IDUNA","(1795) WOLTJER","(2056) NANCY","(2855) BASTIAN","(4305) CLAPTON","(2282) ANDRES BELLO","(124) ALKESTE","(41) DAPHNE","(7562) KAGIROINO-OKA","(2064) THOMSEN","(22) KALLIOPE","(379) HUENNA","(118) PEITHO","(77) FRIGGA","(1414) JEROME","(11785) SARGENT","(5294) ONNETOH","(1032) PAFURI","(2730) BARKS","(3860) PLOVDIV","(2231) DURRELL","(945) BARCELONA","(1039) SONNEBERGA","(1181) LILITH","(1692) SUBBOTINA","(3121) TAMINES","(626) NOTBURGA","(2306) BAUSCHINGER","(3085) DONNA","(4353) ONIZAKI","(11) PARTHENOPE","(18514) 1996 TE11","(4977) RAUTHGUNDIS","(7512) MONICALAZZARIN","(2234) SCHMADEL","(3575) ANYUTA","(825) TANINA","(93) MINERVA","(198) AMPELLA","(706) HIRUNDO","(1222) TINA","(20) MASSALIA","(5008) MIYAZAWAKENJI","(54) ALEXANDRA","(43) ARIADNE","(446) AETERNITAS","(4039) SOUSEKI","(67) ASIA","(941) MURRAY","(3886) SHCHERBAKOVIA","(213) LILAEA","(5038) OVERBEEK","(533) SARA","(545) MESSALINA","(819) BARNARDIANA","(5678) DUBRIDGE","(2606) ODESSA","(2892) FILIPENKO","(6704) 1988 CJ","(183) ISTRIA","(3592) NEDBAL","(417) SUEVIA","(1423) JOSE","(210) ISABELLA","(4124) HERRIOT","(654) ZELINDA","(1098) HAKONE","(1331) SOLVEJG","(1034) MOZARTIA","(7110) JOHNPEARSE","(2569) MADELINE","(2703) RODARI","(3255) THOLEN","(289) NENETTA","(821) FANNY","(653) BERENIKE","(3498) BELTON","(570) KYTHERA","(3710) BOGOSLOVSKIJ","(4558) JANESICK","(2795) LEPAGE","(4584) AKAN","(145) ADEONA","(2807) KARL MARX","(2268) SZMYTOWNA","(2451) DOLLFUS","(391) INGEBORG","(168) SIBYLLA","(2438) OLESHKO","(441) BATHILDE","(3645) FABINI","(3254) BUS","(4299) WIYN","(45) EUGENIA","(3179) BERUTI","(346) HERMENTARIA","(366) VINCENTINA","(185) EUNIKE","(6129) DEMOKRITOS","(2019) VAN ALBADA","(3849) INCIDENTIA","(10) HYGIEA","(789) LENA","(4824) STRADONICE","(2317) GALYA","(25) PHOCAEA","(394) ARDUINA","(863) BENKOELA","(2956) YEOMANS","(5622) PERCYJULIAN","(464) MEGAIRA","(99) DIKE","(238) HYPATIA","(515) ATHALIA","(5227) BOCACARA","(92) UNDINA","(1642) HILL","(2189) ZARAGOZA","(4796) LEWIS","(581) TAUNTONIA","(908) BUDA","(3416) DORRIT","(55) PANDORA","(3256) DAGUERRE","(2724) ORLOV","(3627) SAYERS","(8513) 1991 PK11","(376713) 1995 WQ5","(4332) MILTON","(4744) ROVERETO","(1316) KASAN","(3224) IRKUTSK","(4142) DERSU-UZALA","(5585) PARKS","(4387) TANAKA","(272) ANTONIA","(847) AGNIA","(1372) HAREMARI","(5349) PAULHARRIS","(104) KLYMENE","(40) HARMONIA","(5142) OKUTAMA","(1420) RADCLIFFE","(31) EUPHROSYNE","(4950) HOUSE","(1592) MATHIEU","(284) AMALIA","(743) EUGENISIS","(1549) MIKKO","(2929) HARRIS","(7402) 1987 YH","(712) BOLIVIANA","(332) SIRI","(1796) RIGA","(1324) KNYSNA","(59) ELPIS","(1272) GEFION","(163) ERIGONE","(5732) 1988 WC","(2073) JANACEK","(3545) GAFFEY","(2131) MAYALL","(143) ADRIA","(754) MALABAR","(4523) MIT","(5275) ZDISLAVA","(3730) HURBAN","(1011) LAODAMIA","(44) NYSA","(6249) JENNIFER","(4884) BRAGARIA","(1) CERES","(214) ASCHERA","(3317) PARIS","(4767) SUTOKU","(509) IOLANDA","(601) NERTHUS","(1139) ATAMI","(3674) ERBISBUHL","(129493) 1995 BM2","(4205) DAVID HUGHES","(919) ILSEBILL","(3507) VILAS","(4456) MAWSON","(339) DOROTHEA","(2861) LAMBRECHT","(1134) KEPLER","(1343 )NICOLE","(599) LUISA","(371) BOHEMIA","(3958) KOMENDANTOV","(335) ROBERTA","(5817) ROBERTFRAZER","(5407) 1992 AX","(678) FREDEGUNDIS","(793) ARIZONA","(5087) EMEL'YANOV","(221) EOS","(81) TERPSICHORE","(5576) ALBANESE","(432) PYTHIA","(1510) CHARLOIS","(1567) ALIKOSKI","(1705) TAPIO","(3000) LEONARDO","(76) FREIA","(5392) PARKER","(5364) 1980 RC1","(2659) MILLIS","(1277) DOLORES","(5222) IOFFE","(195) EURYKLEIA","(1655) COMAS SOLA","(1932) JANSKY","(1103) SEQUOIA","(1126) OTERO","(49) PALES","(312) PIERRETTA","(907) RHODA","(2653) PRINCIPIA","(2709) SAGAN","(182) ELSA","(2763) JEANS","(797) MONTANA","(1923) OSIRIS","1996 PW","(3060) DELCANO","(2850) MOZHAISKIJ","(6847) KUNZ-HALLSTEIN","(132) AETHRA","(1629) PECKER","(718) ERIDA","(131) VALA","(5591) KOYO","(6669) OBI","(571) DULCINEA","(2629) RUDRA","(3824) BRENDALEE","(91) AEGINA","(199) BYBLIS","(3197) WEISSMAN","(1766) SLIPHER","(1989) TATRY","(1662) HOFFMANN","(699) HELA","(3065) SARAHILL","(598) OCTAVIA","(1114) LORRAINE","(2316) JO-ANN","(1768) APPENZELLA","(2955) NEWBURN","(96) AEGLE","(814) TAURIS","(100) HEKATE","(3216) HARRINGTON","(434) HUNGARIA"],"instruments":["1.3-m Tinsley Cassegrain/Coude reflector","Mark III Spectrograph","2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory","McGraw-Hill Observatory"],"data_types":[],"start_date":"1993-08-21","stop_date":"1999-03-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/bundle_gbo.ast.smass2.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/bundle_gbo.ast.smass2.spectra.xml","scraped_at":"2026-02-25T20:02:10.737271Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_binary_parameters_compilation::3.0","title":"BINARY MINOR PLANETS V3.0","description":"The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":[],"start_date":"1978-12-01","stop_date":"2019-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/bundle_ast_binary_parameters_compilation.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/bundle_ast_binary_parameters_compilation.xml","scraped_at":"2026-02-25T20:02:10.737286Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images::1.0","title":"OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Purgathofer SA71-20","Landolt SA114-790","Landolt SA114-223","(101955) Bennu","Purgathofer SA71-07"],"instruments":["University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope"],"instrument_hosts":["Steward Observatory"],"data_types":[],"start_date":"2005-09-14","stop_date":"2005-09-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/bundle_orex.gbo.ast-bennu.lightcurves-images.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/bundle_orex.gbo.ast-bennu.lightcurves-images.xml","scraped_at":"2026-02-25T20:02:10.737291Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.zappala-etal.families::1.0","title":"Zappala et al. (1995) Asteroid Dynamical Families V1.0","description":"Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/bundle_ast.zappala-etal.families.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/bundle_ast.zappala-etal.families.xml","scraped_at":"2026-02-25T20:02:10.737295Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.phobos.shape-model::1.0","title":"Gaskell Phobos Shape Model V1.0","description":"The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Viking","Phobos 2"],"targets":["Mars I (Phobos)"],"instruments":["Visual Imaging Subsystem - Camera A","Visual Imaging Subsystem - Camera B","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat"],"instrument_hosts":["Viking Orbiter 2","Viking Orbiter 2","Viking Orbiter 1","Viking Orbiter 1","Phobos 2"],"data_types":[],"start_date":"1976-07-24","stop_date":"1989-03-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/bundle_gaskell.phobos.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/bundle_gaskell.phobos.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737300Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra::1.0","title":"IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS","description":"This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1014) Semphyra","(1020) Arcadia","(1039) Sonneberga","(1098) Hakone","(110) Lydia","(1103) Sequoia","(112) Iphigenia","(1228) Scabiosa","(1251) Hedera","(1275) Cimbria","(129) Antigone","(1317) Silvretta","(135) Hertha","(136) Austria","(143) Adria","(144) Vibilia","(1468) Zomba","(1545) Thernoe","(1580) Betulia","(16) Psyche","(166) Rhodope","(1662) Hoffmann","(17) Thetis","(173) Ino","(179) Klytaemnestra","(1858) Lobachevskij","(186) Celuta","(1903) Adzhimushkaj","(1929) Kollaa","(2) Pallas","(2042) Sitarski","(2045) Peking","(2048) Dwornik","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(213) Lilaea","(214) Aschera","(216) Kleopatra","(217) Eudora","(221) Eos","(224) Oceana","(229) Adelinda","(233) Asterope","(234) Barbara","(2371) Dimitrov","(2401) Aehlita","(2442) Corbett","(246) Asporina","(250) Bettina","(2501) Lohja","(2504) Gaviola","(2511) Patterson","(25143) Itokawa","(2566) Kirghizia","(2579) Spartacus","(260) Huberta","(2606) Odessa","(2653) Principia","(27343) Deannashea","(2763) Jeans","(2795) Lepage","(2823) van der Laan","(283) Emma","(284) Amalia","(2851) Harbin","(289) Nenetta","(2912) Lapalma","(304) Olga","(3103) Eger","(3155) Lee","(317) Roxane","(322) Phaeo","(335) Roberta","(3363) Bowen","(337) Devosa","(3395) Jitka","(347) Pariana","(354) Eleonora","(359) Georgia","(3657) Ermolova","(3703) Volkonskaya","(375) Ursula","(3782) Celle","(379) Huenna","(38070) Redwine","(3819) Robinson","(383) Janina","(387) Aquitania","(397) Vienna","(4) Vesta","(4038) Kristina","(409) Aspasia","(41) Daphne","(417) Suevia","(4188) Kitezh","(419) Aurelia","(4215) Kamo","(426) Hippo","(43) Ariadne","(434) Hungaria","(44) Nysa","(441) Bathilde","(4426) Roerich","(446) Aeternitas","(46) Hestia","(4796) Lewis","(497) Iva","(50) Virginia","(505) Cava","(5111) Jacliff","(517) Edith","(53) Kalypso","(536) Merapi","(547) Praxedis","(5481) Kiuchi","(5498) Gustafsson","(55) Pandora","(559) Nanon","(572) Rebekka","(5840) Raybrown","(599) Luisa","(62) Erato","(64) Angelina","(661) Cloelia","(676) Melitta","(678) Fredegundis","(679) Pax","(686) Gersuind","(709) Fringilla","(71) Niobe","(712) Boliviana","(739) Mandeville","(742) Edisona","(75) Eurydike","(757) Portlandia","(758) Mancunia","(768) Struveana","(77) Frigga","(771) Libera","(779) Nina","(7800) Zhongkeyuan","(785) Zwetana","(789) Lena","(808) Merxia","(809) Lundia","(844) Leontina","(847) Agnia","(863) Benkoela","(87) Sylvia","(872) Holda","(89) Julia","(899) Jokaste","(909) Ulla","(9481) Menchu","(9553) Colas","(956) Elisa","(97) Klotho","(973) Aralia","(976) Benjamina","(980) Anacostia","(984) Gretia","(99) Dike","Multiple Asteroids","(10537) 1991 RY16","(139359) 2001 ME1","(16416) 1987 SM3","(26760) 2001 KP41","(26886) 1994 TJ2","(29075) 1950 DA","(33881) 2000 JK66","(36412) 2000 OP49","(50098) 2000 AG98","(97276) 1999 XC143"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2000-09-04","stop_date":"2009-08-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/bundle_gbo.ast.irtf-spex-collection.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/bundle_gbo.ast.irtf-spex-collection.spectra.xml","scraped_at":"2026-02-25T20:02:10.737314Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.torino.polarimetry::1.0","title":"TORINO ASTEROID POLARIMETRY","description":"This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":[],"start_date":"1995-01-01","stop_date":"2005-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/bundle_gbo.ast.torino.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/bundle_gbo.ast.torino.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.737321Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.denis.ir-photometry::1.0","title":"NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS","description":"The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["DENIS 3-Channel Near-Infrared Camera","1-m photometric Cassegrain reflector at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":[],"start_date":"1995-12-01","stop_date":"1999-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/bundle_gbo.ast.denis.ir-photometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/bundle_gbo.ast.denis.ir-photometry.xml","scraped_at":"2026-02-25T20:02:10.737325Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-153591.radar.shape-model::1.0","title":"SHAPE MODEL OF ASTEROID (153591) 2001 SN263","description":"We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(153591) 2001 SN263","(153591) 2001 SN263"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-9E","Leura 0.25m","SBIG ST-6","1-m Grubb reflector","FLI--FL-PL3041-1-BB","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Apogee AP8","Modra 0.6-m","Observatoire de Haute-Provence 1.2m CCD 1996-2014","1.20-m Newtonian reflector at Observatory of Haute-Provence","Palmer Divide 0.5m CCD","0.5m"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Leura","Crimean Astrophysical Observatory-Simeis","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Modra","Observatory of Haute-Provence","Palmer Divide Observatory"],"data_types":[],"start_date":"2007-01-12","stop_date":"2008-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/bundle_gbo.ast-153591.radar.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/bundle_gbo.ast-153591.radar.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737334Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-8567.radar.shape-model::1.0","title":"SHAPE AND ROTATION OF (8567) 1996 HW1","description":"We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(8567) 1996 HW1"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-8","SBIG ST-6","1-m Grubb reflector","SBIG ST-6","Apogee AP8","Modra 0.6-m","APOGEE AP8"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Crimean Astrophysical Observatory-Simeis","Modra"],"data_types":[],"start_date":"2005-06-26","stop_date":"2009-01-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/bundle_gbo.ast-8567.radar.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/bundle_gbo.ast-8567.radar.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737341Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves::1.0","title":"SUBMILLIMETER LIGHTCURVES OF ASTEROIDS","description":"Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(12) Victoria","(2) Pallas","(3) Juno","(4) Vesta","(511) Davida","(85) Io","Multiple Asteroids"],"instruments":["SMT MPIfR 19-channel Bolometer","10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"],"instrument_hosts":["Submillimeter Telescope Observatory"],"data_types":[],"start_date":"2003-01-04","stop_date":"2004-05-06","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/bundle_gbo.ast.chamberlain.sub-mm-lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/bundle_gbo.ast.chamberlain.sub-mm-lightcurves.xml","scraped_at":"2026-02-25T20:02:10.737346Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.skads.astrometry-photometry::1.0","title":"SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)","description":"The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Kitt Peak Mosaic Camera","4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":[],"start_date":"2001-03-21","stop_date":"2001-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/bundle_gbo.ast.skads.astrometry-photometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/bundle_gbo.ast.skads.astrometry-photometry.xml","scraped_at":"2026-02-25T20:02:10.737350Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteoroid.cmor.radar-survey::1.0","title":"CMOR METEOROID STREAM SURVEY","description":"A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple"],"instruments":["Canadian Meteor Orbit Radar (CMOR)","Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"],"instrument_hosts":["UWO Meteor Radar Complex"],"data_types":[],"start_date":"2002-01-01","stop_date":"2008-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/bundle_gbo.meteoroid.cmor.radar-survey.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/bundle_gbo.meteoroid.cmor.radar-survey.xml","scraped_at":"2026-02-25T20:02:10.737354Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-m-type.fornasier.spectra::1.0","title":"FORNASIER SPECTRA OF M ASTEROIDS","description":"This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(110) Lydia","(125) Liberatrix","(129) Antigone","(132) Aethra","(135) Hertha","(16) Psyche","(161) Athor","(201) Penelope","(216) Kleopatra","(22) Kalliope","(224) Oceana","(250) Bettina","(325) Heidelberga","(338) Budrosa","(347) Pariana","(369) Aeria","(382) Dodona","(418) Alemannia","(441) Bathilde","(498) Tokio","(516) Amherstia","(55) Pandora","(558) Carmen","(69) Hesperia","(755) Quintilla","(785) Zwetana","(849) Ara","(860) Ursina","(872) Holda","(97) Klotho","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","ESO Multi-Mode Instrument: RILD Mode","New Technology Telescope (NTT) at European Southern Observatory","DOLORES (Device Optimized for LOw RESolution)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","Near Infrared Camera Spectrometer (NICS)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","SOFI (Son OF Isaac)","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["Mauna Kea Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","European Southern Observatory"],"data_types":[],"start_date":"2004-02-29","stop_date":"2008-12-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/bundle_gbo.ast-m-type.fornasier.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/bundle_gbo.ast-m-type.fornasier.spectra.xml","scraped_at":"2026-02-25T20:02:10.737362Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.52-color-survey::1.0","title":"52-COLOR ASTEROID SURVEY","description":"This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(101) Helena","(103) Hera","(1036) Ganymed","(1056) Azalea","(106) Dione","(11) Parthenope","(113) Amalthea","(114) Kassandra","(115) Thyra","(116) Sirona","(12) Victoria","(1219) Britta","(13) Egeria","(130) Elektra","(135) Hertha","(138) Tolosa","(145) Adeona","(15) Eunomia","(152) Atala","(153) Hilda","(16) Psyche","(1627) Ivar","(18) Melpomene","(1866) Sisyphus","(19) Fortuna","(2) Pallas","(20) Massalia","(21) Lutetia","(218) Bianca","(22) Kalliope","(221) Eos","(233) Asterope","(235) Carolina","(241) Germania","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(264) Libussa","(267) Tirza","(27) Euterpe","(270) Anahita","(289) Nenetta","(29) Amphitrite","(3) Juno","(308) Polyxo","(31) Euphrosyne","(317) Roxane","(32) Pomona","(324) Bamberga","(33) Polyhymnia","(336) Lacadiera","(346) Hermentaria","(349) Dembowska","(352) Gisela","(354) Eleonora","(3551) Verenia","(356) Liguria","(364) Isara","(367) Amicitia","(368) Haidea","(37) Fides","(376) Geometria","(379) Huenna","(385) Ilmatar","(387) Aquitania","(389) Industria","(39) Laetitia","(4) Vesta","(40) Harmonia","(42) Isis","(422) Berolina","(43) Ariadne","(431) Nephele","(44) Nysa","(446) Aeternitas","(46) Hestia","(476) Hedwig","(5) Astraea","(511) Davida","(521) Brixia","(532) Herculina","(554) Peraga","(57) Mnemosyne","(584) Semiramis","(59) Elpis","(6) Hebe","(6063) Jason","(63) Ausonia","(639) Latona","(64) Angelina","(65) Cybele","(653) Berenike","(661) Cloelia","(67) Asia","(674) Rachele","(68) Leto","(69) Hesperia","(7) Iris","(702) Alauda","(704) Interamnia","(714) Ulula","(76) Freia","(762) Pulcova","(772) Tanete","(773) Irmintraud","(80) Sappho","(82) Alkmene","(823) Sisigambis","(849) Ara","(86) Semele","(863) Benkoela","(89) Julia","(9) Metis","(92) Undina","(96) Aegle","(980) Anacostia","Multiple Asteroids"],"instruments":["Circularly Variable Filter","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"1983-06-11","stop_date":"1987-04-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/bundle_gbo.ast.52-color-survey.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/bundle_gbo.ast.52-color-survey.xml","scraped_at":"2026-02-25T20:02:10.737373Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.kbo-centaur.magnitudes::1.0","title":"KBO AND CENTAUR ABSOLUTE MAGNITUDES","description":"This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1995-01-01","stop_date":"2001-05-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/bundle_gbo.kbo-centaur.magnitudes.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/bundle_gbo.kbo-centaur.magnitudes.xml","scraped_at":"2026-02-25T20:02:10.737410Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:meteoroid.steel.orbits::1.0","title":"METEOROID ORBITS","description":"This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1936-10-21","stop_date":"1983-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/bundle_meteoroid.steel.orbits.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/bundle_meteoroid.steel.orbits.xml","scraped_at":"2026-02-25T20:02:10.737415Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos::1.0","title":"ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS","description":"This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1958-02-19","stop_date":"2005-02-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/bundle_ast.shevchenko-tedesco.occultation-albedos.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/bundle_ast.shevchenko-tedesco.occultation-albedos.xml","scraped_at":"2026-02-25T20:02:10.737418Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.olivines.pitman.lab-spectra::1.0","title":"OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA","description":"Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["METEORITIC FO81","Natural Fayalite (FO0)","Natural FO14","Natural FO31","Natural FO41","Natural FO45","Natural FO54","Natural FO63","Natural FO68","Natural FO9","Natural FO91","Natural FO93","msng (FO0)","Synthetic FO100","Synthetic FO50","Synthetic FO67","Synthetic FO75","Synthetic FO80"],"instruments":["BOMEM DA 3.02 FT-IR SPECTROMETER"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/bundle_gbo.olivines.pitman.lab-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/bundle_gbo.olivines.pitman.lab-spectra.xml","scraped_at":"2026-02-25T20:02:10.737423Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves::1.0","title":"NEAR EARTH ASTEROID LIGHTCURVES","description":"This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(11066) Sigurd","(1627) Ivar","(1943) Anteros","1998 KY26","(2063) Bacchus","(2100) Ra-Shalom","(2102) Tantalus","(2212) Hephaistos","(3103) Eger","(3122) Florence","(3199) Nefertiti","(3200) Phaethon","(3691) Bede","(3752) Camillo","(4341) Poseidon","(4957) Brucemurray","(5143) Heracles","(5751) Zao","(7341) 1991 VK","(7474) 1992 TC","(7480) Norwan","(8034) Akka","Multiple Asteroids","(13651) 1997 BR","(17511) 1992 QN","(19356) 1997 GH3","(422638) 1994 CB","1995 FX","1997 GL3","(35107) 1991 VH","(5587) 1990 SB","(6053) 1993 BW3","(6322) 1991 CQ","(65679) 1989 UQ","(6569) Ondaatje","(7025) 1993 QA","(7482) 1994 PC1","(7822) 1991 CS","(7888) 1993 UC","(7889) 1994 LX","(8201) 1994 AH2","(85490) 1997 SE5","(99907) 1989 VA"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1984-08-29","stop_date":"1998-06-05","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/bundle_gbo.ast-neo.ondrejov.lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/bundle_gbo.ast-neo.ondrejov.lightcurves.xml","scraped_at":"2026-02-25T20:02:10.737434Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-high-inclination.gil-hutton.families::1.0","title":"HIGH-INCLINATION ASTEROID FAMILIES","description":"This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":[],"start_date":"2005-03-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/bundle_ast-high-inclination.gil-hutton.families.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/bundle_ast-high-inclination.gil-hutton.families.xml","scraped_at":"2026-02-25T20:02:10.737438Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot::1.0","title":"Whiteley NEO Photometry V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2.24-m Cassegrain/Coude reflector","UH Tektronix 2K CCD"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"1996-02-15","stop_date":"2000-07-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/bundle_gbo.ast-neo.whiteley.ecas-phot.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/bundle_gbo.ast-neo.whiteley.ecas-phot.xml","scraped_at":"2026-02-25T20:02:10.737442Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra::1.0","title":"Gaffey Meteorite Spectra V1.0","description":"This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Hamlet","Elenovka","Queen's Mercy","Barwise","Chainpur","Sevrukovo","Cynthiana","Murchison","Shelburne","Mighei","Homestead","Coolidge","Butler","Aumale","Girgenti","Atlanta","Bruderheim","Kainsaz","Babb's Mill (Troost's Iron)","Ausson","Olivenza","Orgueil","Pantar","Alfianello","Mokoia","Cold Bokkeveld","Hvittis","Pillistfer","Nerft","Utrecht","Collescipoli","Allegan","Petersburg","Olmedilla de Alarcon","Ochansk","Chulafinnee","Tatahouine","Colby (Wisconsin)","Nakhla","Karoonda","Mezoe-Madaras","METEORITE","Leedey","Lance","Jonzac","Zavid","Manbhoom","Nanjemoy","Soko-Banja","Cabezo de Mayo","Murray","Tourinnes-la-Grosse","Daniel's Kuil","Veramin","Bereba","Vigarano","Warrenton","Khairpur","Shalka","Zhovtnevyi","Farmington","Buschhof","Casey County","Paragould","Parnellee","Juvinas","Sioux County","Rose City","Frankfort (stone)","Drake Creek","Leoville","Felix","Andover","Castalia","Alais","Haraiya","Bald Mountain","Le Teilleul","Abee","Grueneberg","Tieschitz","Saratov","Stannern","Allende","St. Mark's","Johnstown","Ornans","Jelica","Grosnaja","Forest City","Roda","Quenggouk","Chassigny","Pasamonte","Vavilovka","Nogoya","Angra dos Reis","MULTIPLE","St. Michel","Nobleborough","Indarch","Knyahina","Lancon","Padvarninkai","Pavlovka"],"instruments":["Beckman DK2A Ratio Recording Spectroreflectometer"],"instrument_hosts":["Terrestrial Laboratory"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/bundle_gbo.meteorite.gaffey.lab-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/bundle_gbo.meteorite.gaffey.lab-spectra.xml","scraped_at":"2026-02-25T20:02:10.737451Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.radar.shape-models::1.0","title":"Small Bodies Radar Shape Models V1.0","description":"This data set contains radar-based shape models for small solar system bodies, prepared by various authors.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1620) Geographos","(52760) 1998 ML14","(4769) Castalia","1998 KY26","(6489) Golevka","(216) Kleopatra","(4179) Toutatis","(25143) Itokawa","(2063) Bacchus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":[],"start_date":"1989-08-19","stop_date":"2001-04-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/bundle_compil.ast.radar.shape-models.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/bundle_compil.ast.radar.shape-models.xml","scraped_at":"2026-02-25T20:02:10.737458Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra::1.0","title":"Gartrelle et al. IRTF Asteroid Spectra V1.0","description":"This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(3283) Skorina","(1542) Schalen","(1746) Brouwer","(2207) Antenor","Multiple Asteroids","(721) Tabora","(1269) Rollandia","(2208) Pushkin","(1256) Normannia","(1583) Antilochus","(2246) Bowell","(2357) Phereclos","(2311) El Leoncito","(884) Priamus","(336) Lacadiera","(1702) Kalahari","(2266) Tchaikovsky","(368) Haidea","(1167) Dubiago","(2872) Gentelec","(4744) Rovereto","(2674) Pandarus","(267) Tirza","(2893) Peiroos","(773) Irmintraud","(3248) Farinella"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2016-12-29","stop_date":"2019-01-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/bundle_gbo.ast-dtype.gartrelleetal.irtf.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/bundle_gbo.ast-dtype.gartrelleetal.irtf.spectra.xml","scraped_at":"2026-02-25T20:02:10.737482Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.ast-eros.shape-model::1.1","title":"Gaskell Eros Shape Model V1.1","description":"The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":[],"start_date":"2000-02-15","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/bundle_gaskell.ast-eros.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/bundle_gaskell.ast-eros.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737486Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.ast-itokawa.shape-model::1.1","title":"Gaskell Itokawa Shape Model V1.1","description":"The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":[],"start_date":"2005-09-11","stop_date":"2005-11-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/bundle_gaskell.ast-itokawa.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/bundle_gaskell.ast-itokawa.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737490Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-eros.roberts.ponds-catalog::1.1","title":"Roberts Eros Ponds Catalog V1.1","description":"This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":[],"start_date":"2000-05-01","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/bundle_ast-eros.roberts.ponds-catalog.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/bundle_ast-eros.roberts.ponds-catalog.xml","scraped_at":"2026-02-25T20:02:10.737493Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry::1.1","title":"POLARIMETRY OF ASTEROID ITOKAWA","description":"This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(25143) Itokawa"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":[],"start_date":"2004-06-28","stop_date":"2004-07-04","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/bundle_gbo.ast-itokawa.torino.polarimetry.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/bundle_gbo.ast-itokawa.torino.polarimetry.xml","scraped_at":"2026-02-25T20:02:10.737497Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.alcdef-database::1.0","title":"Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0","description":"The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1986-07-03","stop_date":"2021-09-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/bundle_gbo.ast.alcdef-database.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/bundle_gbo.ast.alcdef-database.xml","scraped_at":"2026-02-25T20:02:10.737503Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-lightcurve-database::4.0","title":"Asteroid Lightcurve Database (LCDB) V4.0","description":"The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1913-01-01","stop_date":"2021-09-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/bundle_ast-lightcurve-database.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/bundle_ast-lightcurve-database.xml","scraped_at":"2026-02-25T20:02:10.737506Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-sat.thomas.shape-models::1.0","title":"Small Body Optical Shape Models V1.0","description":"The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HST","Voyager","Galileo","Near Earth Asteroid Rendezvous","Viking","Phobos 2","Mariner71"],"targets":["(253) Mathilde","Mars I (Phobos)","Saturn XI (Epimetheus)","Mars II (Deimos)","(243) Ida","(951) Gaspra","(4) Vesta","Mars II (Deimos)","Saturn VII (Hyperion)","Saturn VII (Hyperion)","Saturn X (Janus)","Mars I (Phobos)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","Visual Imaging Subsystem - Camera A for VO2","Imaging Science Subsystem","Visual Imaging Subsystem - Camera B for VO2","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","Multi-spectral Imager","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","Solid State Imaging System","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat","Wide Field Planetary Camera 2"],"instrument_hosts":["Voyager 1","Viking Orbiter 2","Mariner 9","Viking Orbiter 2","Voyager 2","Near Earth Asteroid Rendezvous","Viking Orbiter 1","Galileo Orbiter","Viking Orbiter 1","Phobos 2","Hubble Space Telescope"],"data_types":[],"start_date":"1976-06-22","stop_date":"1997-06-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/bundle_ast-sat.thomas.shape-models.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/bundle_ast-sat.thomas.shape-models.xml","scraped_at":"2026-02-25T20:02:10.737514Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-bennu.radar.shape-model::1.1","title":"Asteroid (101955) Bennu Radar Shape Model V1.1","description":"We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(101955) Bennu"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70 cm AZT-8","SBIG ST-6 UV camera","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Steward Observatory","Arecibo Observatory","Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station","Goldstone Complex","Goldstone Complex"],"data_types":[],"start_date":"1999-09-21","stop_date":"2005-10-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/bundle_ast-bennu.radar.shape-model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/bundle_ast-bennu.radar.shape-model.xml","scraped_at":"2026-02-25T20:02:10.737522Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:asteroid_polarimetric_database::2.0","title":"Asteroid Polarimetric Database V2.0","description":"The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":[],"start_date":"1958-10-22","stop_date":"2020-12-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/bundle_asteroid_polarimetric_database.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/bundle_asteroid_polarimetric_database.xml","scraped_at":"2026-02-25T20:02:10.737526Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-ceres.alma.images-spectra::1.0","title":"ALMA Ceres Imaging and Spectrum V1.0","description":"This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres"],"instruments":["Atacama Millimeter/submillimeter Array (ALMA)","ALMA Radio Receivers"],"instrument_hosts":["European Southern Observatory - Chajnantor"],"data_types":[],"start_date":"2015-10-31","stop_date":"2017-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/bundle_gbo.ast-ceres.alma.images-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/bundle_gbo.ast-ceres.alma.images-spectra.xml","scraped_at":"2026-02-25T20:02:10.737531Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.amica.itokawa.backplanes::1.0","title":"Hayabusa AMICA Images with Geometry Backplanes V1.0","description":"The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":[],"start_date":"2005-09-11","stop_date":"2005-10-28","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/bundle_hay.amica.itokawa.backplanes.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/bundle_hay.amica.itokawa.backplanes.xml","scraped_at":"2026-02-25T20:02:10.738065Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_high_rate_detector::1.0","title":"CASSINI HIGH RATE DETECTOR","description":"The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":[],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/bundle_cassini_high_rate_detector.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/bundle_cassini_high_rate_detector.xml","scraped_at":"2026-02-25T20:02:10.738069Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_satellite_shape_models::1.0","title":"Saturn Small Moon Shape Models V1.0","description":"Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-huygens"],"targets":["Saturn XVI (Prometheus)","Saturn XV (Atlas)","Saturn XIV (Calypso)","PAN","PANDORA","EPIMETHEUS","Saturn VII (Hyperion)","Saturn XXXV (Daphnis)","Saturn X (Janus)","Saturn XII (Helene)","Saturn XIII (Telesto)"],"instruments":["Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/bundle_saturn_satellite_shape_models.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/bundle_saturn_satellite_shape_models.xml","scraped_at":"2026-02-25T20:02:10.738073Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ceres::1.0","title":"DAWN GRaND Ceres Bundle","description":"This bundle collects the Ceres products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"2015-03-13","stop_date":"2018-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/bundle_dawn-grand-ceres.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/bundle_dawn-grand-ceres.xml","scraped_at":"2026-02-25T20:02:10.738078Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-vesta::1.0","title":"DAWN GRaND Vesta Bundle","description":"This bundle collects the Vesta products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"2011-05-03","stop_date":"2012-08-09","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/bundle_dawn-grand-vesta.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/bundle_dawn-grand-vesta.xml","scraped_at":"2026-02-25T20:02:10.738082Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-cruise::1.0","title":"DAWN GRaND Cruise Bundle","description":"This bundle collects the cruise products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"2007-10-16","stop_date":"2014-07-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/bundle_dawn-grand-cruise.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/bundle_dawn-grand-cruise.xml","scraped_at":"2026-02-25T20:02:10.738086Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ancillary::1.0","title":"DAWN GRaND Ancillary Bundle","description":"This bundle collects the ancillary products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/bundle_dawn-grand-ancillary.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/bundle_dawn-grand-ancillary.xml","scraped_at":"2026-02-25T20:02:10.738089Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-mars::1.0","title":"DAWN GRaND Mars Bundle","description":"This bundle collects the Mars products for the GRaND instrument on the DAWN mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":[],"start_date":"2009-01-20","stop_date":"2009-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/bundle_dawn-grand-mars.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/bundle_dawn-grand-mars.xml","scraped_at":"2026-02-25T20:02:10.738093Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.mission::9.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Mission Bundle","description":"This bundle collects all the mission wide information needed to use and understand the scientific data products produced by the Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx) mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS","OCAMS","OLA","OTES","OVIRS","REXIS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/bundle_mission.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/bundle_mission.xml","scraped_at":"2026-02-25T20:02:10.738099Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Laser Altimeter (OLA) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Laser Altimeter (OLA). OLA is used for the topographic characterization of the surface of (101955) Bennu.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/bundle_ola.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/bundle_ola.xml","scraped_at":"2026-02-25T20:02:10.738104Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.otes::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Emission Spectrometer (OTES) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Thermal Emission (OTES). OTES is used for the spectral characterization of the surface of (101955) Bennu.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/bundle_otes.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/bundle_otes.xml","scraped_at":"2026-02-25T20:02:10.738116Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_nirs3::1.0","title":"Hayabusa2 NIRS3 Bundle","description":"This bundle collects all the operational data products produced by the Hayabusa2 NIRS3 instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/bundle_hyb2_nirs3.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/bundle_hyb2_nirs3.xml","scraped_at":"2026-02-25T20:02:10.738121Z","keywords":["Hayabusa2","NIRS3","Spectrometer","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_tir::1.0","title":"Hayabusa2 TIR Bundle","description":"This bundle collects all the operational data products produced by the Hayabusa2 TIR instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/bundle_hyb2_tir.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/bundle_hyb2_tir.xml","scraped_at":"2026-02-25T20:02:10.738127Z","keywords":["Hayabusa2","TIR","Thermal Infrared Imager","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_spectra_reddy_neos_marscrossers::1.0","title":"REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS","description":"This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1036) Ganymed","(1170) Siva","(1727) Mette","(1916) Boreas","2004 RS109","2008 RW24","(2035) Stearns","(323) Brucia","(391) Ingeborg","(4179) Toutatis","(7088) Ishtar","Multiple Asteroids","(137032) 1998 UO1","(137924) 2000 BD19","(143678) 2003 SA224","(143947) 2003 YQ117","(144411) 2004 EW9","(163000) 2001 SW169","(21374) 1997 WS22","(23183) 2000 OY21","(391151) 2005 YY93","(39572) 1993 DQ1","(446791) 1998 SJ70","(66063) 1998 RO1","(68950) 2002 QF15","(85709) 1998 SG36","(85713) 1998 SS49","(87684) 2000 SY2"],"instruments":["SpeX","Infrared Telescope Facility"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2001-09-29","stop_date":"2008-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/bundle_ast_spectra_reddy_neos_marscrossers.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/bundle_ast_spectra_reddy_neos_marscrossers.xml","scraped_at":"2026-02-25T20:02:10.738133Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:epoxi_mri::1.0","title":"EPOXI MRI Observations Bundle","description":"This bundle contains observations collected with the MRI instrument on the Deep Impact Flyby Spacecraft during the EPOXI mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["EPOXI"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738258Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet::4.0","title":"Comet Data Compilations from Published Sources","description":"The collections in this archive contain results that have been reported in the literature, or in some cases made available by private communication, for various comet properties. Individual collections focus on one or several closely related properties or targets of high interest.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Comets"],"instruments":["Compilation"],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738263Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:spitzer::1.0","title":"Data from the Spitzer Space Telescope","description":"This archive bundle contains collections of observations and derived results from the Spitzer Heritage Archive, with related documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Spitzer Space Telescope"],"targets":[],"instruments":[],"instrument_hosts":["Spitzer Space Telescope"],"data_types":[],"start_date":"2003-11-23","stop_date":"2009-04-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738285Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-ctio::1.0","title":"Groundbased Observations at Cerro Tololo Inter-American Observatory","description":"This bundle collects data taken at Cerro Tololo Inter-American Observatory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["19P/1904 Y2 (Borrelly 1)"],"instruments":["1.5-m Ritchey-Chretien Cassegrain reflector","Cassegrain Focus Direct Image CCD Camera"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"2000-07-28","stop_date":"2000-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738290Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison::1.0","title":"Comet C/ISON (2012 S1) Ground-Based Observations Bundle","description":"This bundle contains raw, processed, and derived imaging and spectroscopic data of comet ISON taken in 2013.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738293Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-irtf::2.0","title":"Groundbased Observations at the NASA Infrared Telescope Facility (IRTF)","description":"This bundle collects data taken at IRTF and associated document files.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["IRTF 3.0-Meter Telescope","SpeX","Mid-Infrared Spectrometer and Imager"],"instrument_hosts":["NASA Infrared Telescope Facility"],"data_types":[],"start_date":"2005-06-24","stop_date":"2005-07-18","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738304Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald::3.0","title":"Groundbased Observations at McDonald Observatory","description":"This bundle collects data taken at McDonald Observatory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Comets","9P/1867 G1 (Tempel 1)","19P/1904 Y2 (Borrelly 1)"],"instruments":["2.7m Telescope","2.1m Otto Struve telescope","Image Dissector Scanner","Large Cassegrain Spectrograph","Imaging Grism Instrument"],"instrument_hosts":["McDonald Observatory"],"data_types":[],"start_date":"1981-01-03","stop_date":"1995-10-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738309Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno::4.0","title":"Groundbased Observations at Kitt Peak National Observatory (KPNO)","description":"This bundle collects data taken at Kitt Peak National Observatory and associated document files.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":["C/1996 B2 (Hyakutake)","9P/1867 G1 (Tempel 1)","19P/1904 Y2 (Borrelly 1)"],"instruments":[],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":[],"start_date":"1996-03-26","stop_date":"2005-07-09","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738312Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ro_derived::1.0","title":"Rosetta Derived Data Bundle","description":"This bundle contains collections of products derived from archival Rosetta data that are separate from deliveries by the Rosetta team.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["INTERNATIONAL ROSETTA MISSION"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/bundle.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738412Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbl-classe::1.0","title":"Laboratory Experiments at the Center for Laboratory Astrophysics and Space Science Experiments (CLASSE)","description":"This bundle contains collections of data from instrument suites at the Southwest Research Institute (SwRI) Center for Laboratory Astrophysics and Space Science Experiments (CLASSE).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":["CLASSE"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/bundle.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.738939Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.nesvorny.families::2.0","title":"Nesvorny HCM Asteroid Families","description":"The proper elements of asteroids are obtained from the instantaneous orbital elements by removing periodic oscillations produced by gravitational interactions with planets. They are unchanging in time, at least if chaotic dynamics and non-gravitational forces could be ignored, and can therefore be used to identify fragments of major collisions (asteroid families) that happened eons ago. Here we publish a new catalog of proper elements for 1.25 million main belt asteroids. A systematic search for families yielded 153 cases not reported in Nesvorn\\'y at al. (2015) -- 17 of these cases were identified in various other publications, 136 cases are new discoveries. There are now 274 families in the asteroid belt in total (plus a handful of new families in the resonant Hilda population). The present package contains member identifications for 153 new families.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Asteroids","Multiple Asteroids"],"instruments":["Literature search","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/bundle_ast.nesvorny.families.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/bundle_ast.nesvorny.families.xml","scraped_at":"2026-02-25T20:02:10.739582Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:smallbodiesoccultations::4.0","title":"Small Bodies Occultations V4.0","description":"This data set is intended to include all reported timings of observed asteroid, comet nucleus, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version contains 9729 occultations. It is complete through to June 2023, with partial observations up until December 2023.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Multiple Satellites","Multiple Planets","Multiple Dwarf Planets","Multiple Comets"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1911-08-14","stop_date":"2024-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/bundle_smallbodiesoccultations.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/bundle_smallbodiesoccultations.xml","scraped_at":"2026-02-25T20:02:10.739590Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-1999td10.images-lightcurves::2.0","title":"Visual Imaging and Photometry of (29981) 1999 TD10 V2.0","description":"The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Landolt PG 2213-006","Landolt SA 95","Landolt PG 0231+051","Landolt SA 92","(29981) 1999 TD10"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","CFIM+T2KA"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":[],"start_date":"2001-09-21","stop_date":"2002-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/bundle_gbo.ast-1999td10.images-lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/bundle_gbo.ast-1999td10.images-lightcurves.xml","scraped_at":"2026-02-25T20:02:10.739595Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.primass-l.spectra::2.0","title":"PRIMASS-L V2.0","description":"PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of the end of 2023 this library contains 438 visible and 264 near-infrared spectra of primitive asteroids from 10 families and two groups that had been sparsely studied before. PRIMASS-L contains spectra from a variety of ground-based facilities. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(78921) 2003 SP108","(84536) 2002 UV19","(86812) 2000 GB125","(3185) Clintford","(79044) 3919 T-2","(96690) 1999 JA73","(96918) 1999 TJ113","(178844) 2001 HG53","(5594) Jimmiller","(3064) Zimmer","(1754) Cunningham","(5158) Ogarev","(28424) 1999 XA","(1209) Pumma","(1439) Vogtia","(34487) 2000 SE133","(107070) 2001 AH16","(66333) 1999 JS60","(12421) Zhenya","(39260) 2000 YE138","(53537) Zhangyun","(29623) 1998 SR164","(72384) 2001 CF12","(20432) 1999 BD12","(30514) Chiomento","(162755) Spacesora","(57473) 2001 SE127","(17230) 2000 CX116","(35358) Lorifini","(237295) 2008 YN7","(3162) Nostalgia","(528) Rezia","(132509) 2002 JU41","(65354) 2002 NG43","(940) Kordula","(174594) 2003 QH56","(34210) 2000 QV67","(1511) Dalera","(6237) Chikushi","(6661) Ikemura","(203620) 2002 EU125","(72143) 2000 YQ86","(20771) 2000 QY150","(71932) 2000 WO61","(52870) 1998 SC26","(79143) 1992 BQ2","(85) Io","(2081) Sazava","(13997) 1993 FB32","(213825) 2003 QW63","(110819) 2001 UW49","(767) Bondia","(252953) 2002 PB91","(13537) 1991 SG","(61309) 2000 OF50","(78826) 2003 QE17","(1768) Appenzella","(25829) 2000 DU108","(122109) 2000 HJ94","(8091) 1992 BG","(20992) 1985 RV2","(6698) Malhotra","(44773) 1999 TU140","(2624) Samitchell","(92634) 2000 QN19","(210564) 1999 TR195","(84) Klio","(623) Chimaera","(43346) 2000 RT103","(174120) 2002 JC146","(11214) 1999 HP8","(34890) Vasikaran","(853) Nansenia","(28620) Anicia","(6578) Zapesotskij","(81010) 2000 EL35","(109030) 2001 QL10","(85626) 1998 HM141","(243648) 1999 TX176","(9723) Binyang","(6118) Mayuboshi","(190) Ismene","(249427) 2009 EH18","(6542) Jacquescousteau","(24726) Nagatatetsuya","(24956) Qiannan","(3298) Massandra","(57442) 2001 SF54","(5368) Vitagliano","(32847) 1992 JO3","(329) Svea","(39955) 1998 FV118","(37437) 2576 P-L","(17233) Stanshapiro","(11118) Modra","(67891) 2000 WR61","(65264) 2002 GW16","(42552) 1996 RH25","(42431) 1051 T-3","(242324) 2003 YY12","(16132) Angelakim","(4231) Fireman","(2728) Yatskiv","(29626) 1998 TV12","(3130) Hillary","(151019) 2001 UF119","(123979) 2001 FB38","(52891) 1998 SM61","(33804) 1999 WL4","(25381) Jerrynelson","(25490) Kevinkelly","(1539) Borrelly","(6039) Parmenides","(33913) 2000 LK14","(132383) 2002 GQ83","(42781) 1998 VL28","(132056) 2002 CA141","(1190) Pelagia","(42006) 2000 YA50","(11750) 1999 NM33","(557) Violetta","(126046) 2001 YH72","(67586) 2000 SH125","(362332) 2010 KW34","(11338) Schiele","(1700) Zvezdara","(48153) 2001 FW172","(2171) Kiev","(72047) 2000 YZ6","(6343) 1993 VK","(212417) 2006 KJ103","(38657) 2000 OO46","(6125) Singto","(320575) 2008 AM110","(164286) 2004 XO86","(262102) 2006 RE98","(24638) 1981 UC23","(169633) 2002 HQ12","(69706) 1998 HJ77","(11751) Davidcarroll","(59317) 1999 CN89","(80062) 1999 JX85","(752) Sulamitis","(133123) 2003 PO1","(401) Ottilia","(85727) 1998 SC75","(54286) 2000 JD51","(36469) 2000 QT23","(142297) 2002 RF145","(61500) 2000 QV51","(44766) 1999 TM123","(72169) 2000 YW107","(42347) 2002 AV155","(18477) 1995 WA11","(72230) 2001 AN15","(59) Elpis","(3036) Krat","(110518) 2001 TY78","(251796) 1999 TO9","(67940) 2000 WT143","(120384) 2005 QU29","(58240) 1993 FV81","(13737) 1998 RU76","(28736) 2000 GE133","(163) Erigone","(132091) 2002 CC175","(25932) 2001 DB72","(39094) 2000 VQ58","(147535) 2004 EH14","(136267) 2003 YR80","(147777) 2005 QV103","(253538) 2003 SX220","(3485) Barucci","(1280) Baillauda","(36342) 2000 NX15","(106085) 2000 SO355","(1183) Jutta","(19415) Parvamenon","(5771) Somerville","(69679) 1998 HR15","(3146) Dato","(45892) 2000 WR179","(42802) 1999 GE15","(14849) 1989 GQ1","(6415) 1993 VR3","(370) Modestia","(70394) 1999 RP237","(66403) 1999 LM13","(40976) 1999 TV272","(13509) Guayaquil","(52951) 1998 SO147","(5116) Korsor","(3470) Yaronika","(304858) 2007 RQ77","(50239) 2000 BW3","(156670) 2002 JK111","(76922) 2001 AH15","(39888) 1998 ES20","(5661) Hildebrand","(933) Susi","(5794) Irmina","(265259) 2004 EW82","(19862) 2556 P-L","(43482) 2001 BW32","(2066) Palala","(45357) 2000 AC102","(107032) 2000 YB1240","(169066) 2001 FR157","(282) Clorinde","(35135) 1992 RO1","(10979) Fristephenson","(70361) 1999 RK189","(117745) 2005 GP37","(4100) Sumiko","(6840) 1995 WW5","(186446) 2002 SM30","(57068) 2001 OC1","(7748) 1987 TA","(22118) 2000 SL86","(44463) 1998 VT18","(135384) 2001 TT166","(53170) 1999 CH19","(12072) Anupamakotha","(2839) Annette","(36465) 2000 QR19","(5333) Kanaya","(6647) Josse","(2067) Aksnes","(232922) 2005 AP26","(14179) Skinner","(60852) 2000 HU65","(3561) Devine","(14264) 2000 AH142","(238992) 2006 BH260","(138668) 2000 RB103","(1924) Horus","(59322) 1999 CB95","(38106) 1999 JG23","(66325) 1999 JF55","(85241) 1993 PC3","(119526) 2001 UF175","(3562) Ignatius","(100784) 1998 FM61","(5327) Gertwilkens","(133197) 2003 QS59","(186530) 2002 VX78","(24656) 1987 QT7","(2918) Salazar","(65540) 7628 P-L","(122871) 2000 SX138","(32061) 2000 JK48","(15134) 2000 ED92","(183911) 2004 CB100","(3247) Di Martino","(93347) 2000 SX247","(1923) Osiris","(1705) Tapio","(49859) 1999 XB100","(208048) 1999 TL149","(15561) 2000 GU36","(249089) 2007 VL55","(74962) 1999 TW200","(27506) Glassmeier","(155162) 2005 UZ104","(42155) 2001 BA63","(85167) 1989 RS2","(4589) McDowell","(2279) Barto","(38661) 2000 OC49","(20168) 1996 VY4","(1021) Flammario","(12051) Picha","(14000) 1993 FZ55","(1493) Sigrid","(73860) 1996 XR5","(325852) 2010 TO53","(80754) 2000 CV49","(9052) Uhland","(250431) 2003 WL117","(175194) 2005 EL268","(1902) Shaposhnikov","(2276) Warck","(208039) 1999 RV113","(10866) Peru","(37233) 2000 WV154","(37354) 2001 TN107","(74755) 1999 RL199","(66432) 1999 NL46","(149396) 2003 AU39","(11856) Nicolabonev","(3330) Gantrisch","(98391) 2000 TL62","Multiple Asteroids","(12) Victoria","(73205) 2002 JY16","(255959) 2006 TP34","(109019) 2001 QT6","(26516) 2000 CW56","(78069) 2002 LU4","(113374) 2002 SB8","(65102) 2002 CY17","(23893) Lauman","(1177) Gonnessia","(80789) 2000 CC85","(161079) 2002 LP61","(96405) 1998 ES","(96768) 1999 RH50","(70158) 1999 NZ37","(34923) 4870 P-L","(39895) 1998 FK15","(66421) 1999 NQ19","(27738) 1990 TT4","(173657) 2001 HN14","(66336) 1999 JB62","(175811) 1999 RS193","(18759) 1999 HO2","(66062) 1998 RG1","(36286) 2000 EL14","(5429) 1988 BZ1","(53918) 2000 GM18","(63312) 2001 FH24","(1386) Storeria","(1144) Oda","(3577) Putilin","(1035) Amata","(7078) Unojonsson","(3202) Graff","(268) Adorea","(15794) 1993 TG31","(220) Stephania","(15540) 2000 CF18","(208724) 2002 JV130","(300289) 2007 OM10","(4219) Nakamura","(27715) 1989 CR1","(8398) Rubbia","(165403) 2000 XM43","(80993) 2000 EY26","(3566) Levitan","(332038) 2005 QZ73","(7030) Colombini","(137397) 1999 TH165","(112) Iphigenia","(2441) Hibbs","(8927) Ryojiro","(56970) 2000 SJ111","(75089) 1999 VY30","(1806) Derice","(790) Pretoria","(165536) 2001 DC6","(2259) Sofievka","(909) Ulla","(2332) Kalm","(5524) Lecacheux","(3006) Livadia","(106918) 2000 YZ52","(48876) 1998 HE103","(917) Lyka","(1267) Geertruida","(133873) 2004 LB26","(15202) Yamada-Houkoku","(7274) Washioyama","(7394) Xanthomalitia","(4750) Mukai","(4229) Plevitskaya","(34857) Sutaria","Multiple","(74832) 1999 TH26","(59065) 1998 UB43","(171027) 2005 EN57","(41525) 2000 QP218","(1484) Postrema","(32898) 1994 PS1","(1012) Sarema","(30120) 2000 FZ38","(129818) 1999 NE28","(37917) 1998 FJ103","(4422) Jarre","(4458) Oizumi","(9476) Vincenthuang","(49833) 1999 XB84","(24650) 1986 QM","(53178) 1999 CT35","(31487) Parthchopra","(61560) 2000 QT74","(203141) 2000 UV41","(41746) 2000 VD16","(90975) 1997 WF37","(46566) 1991 RW21","(71655) 2000 EF121","(5506) Artiglio","(77495) 2001 HM37","(24358) 2000 AV117","(172478) 2003 SM87","(1003) Lilofee","(56600) 2000 JK50","(1269) Rollandia","(66309) 1999 JX41","(72308) 2001 BZ34","(142751) 2002 TG300","(6769) Brokoff","(24322) 2000 AM43","(177258) 2003 WX39","(2662) Kandinsky","(98178) 2000 SU99","(5711) Eneev","(106919) 2000 YC53","(916) America","(111789) 2002 CQ236","(1159) Granada","(49863) 1999 XK104","(112308) 2002 LR47","(1244) Deira","(68490) 2001 TH239","(122596) 2000 RG35","(98818) 2000 YH125","(10992) Veryuslaviya","(495) Eulalia","(18075) Donasharma","(99691) 2002 JP27","(2990) Trimberger","(77278) 2001 FL61","(2348) Michkovitch","(108631) 2001 NG","(2772) Dugan","(63310) 2001 FS21","(95018) 2002 AZ9","(244905) 2003 WJ120","(173129) 1994 JH2","(364204) 2006 QR100","(84211) 2002 RV141","(49731) 1999 VR80","(3579) Rockholt","(3228) Pire","(148658) 2001 SG128","(21176) 1994 CN13","(9121) Stefanovalentini","(383) Janina","(4524) Barklajdetolli","(10446) Siegbahn","(39694) 1996 ST2","(2139) Makharadze","(42089) 2001 AQ15","(2563) Boyarchuk","(2575) Bulgaria","(8152) Martinlee","(35627)1998 KW9","(168936) 2000 YN95","(20604) Vrishikpatil","(133503) 2003 SW288","(3556) Lixiaohua","(70312) 1999 RM137","(5081) Sanguin","(6712) Hornstein","(45378) 2000 AD118","(180349) 2003 YW71","(142) Polana","(16090) Lukaszewski","(43152) 1999 XM115","(246226) 2007 RH212","(26394) Kandola","(4317) Garibaldi","(6857) Castelli","(10542) Ruckers","(2794) Kulik","(2007) McCuskey","(2322) Kitt Peak","(8032) Michaeladams","(253798) 2003 XP17","(59397) 1999 FT26","(19145) 1989 YC","(26719) 2001 HQ5","(68685) 2002 CK142","(38166) 1999 JV84","(23397) 5122 T-3","(1782) Schneller","(6806) Kaufmann","(531) Zerlina","(15415) Rika","(313) Chaldaea","(1358) Gaika","(34326) Zhaurova","(131119) 2001 BK4","(217593) 2008 FK3","(106794) 2000 XK26","(112414) 2002 NV42","(2642) Vesale","(142282) 2002 RT128","(42411) 3249 T-1","(14530) 1997 PR","(50068) 2000 AR77","(72292) 2001 BE22","(229) Adelinda","(24907) Alfredhaar","(750) Oskar","(302) Clarissa","(689) Zita","(206344) 2003 PA8","(34339) 2000 QH218","(147241) 2002 XW62","(3429) Chuvaev","(2534) Houzeau","(44942) 1999 VM55","(20080) Maeharatorakichi","(2328) Robeson","(6471) Collins","(162795) 2000 YF52","(6374) Beslan","(2776) Baikal","(14215) 1999 TV6","(23916) 1998 SD131","(57400) 2001 RR90","(107861) 2001 FN80","(67918) 2000 WW109","(24037) 1999 SB7","(214) Aschera","(335) Roberta","(170184) 2003 MV11","(70511) 1999 TL103","(120548) 1995 BO","(67352) 2000 JN80","(9667) Amastrinc","(2446) Lunacharsky","(6278) Ametkhan","(20843) Kuotzuhao","(132352) 2002 GV54","(2773) Brooks","(53103) 1999 AB2","(68114) Deakferenc","(6133) Royaldutchastro","(242858) 2006 GJ9","(78889) 2003 SA36","(26807) 1982 RK1","(27354) Stiklaitis","(8106) Carpino","(1202) Marina","(45846) Avdellidou","(1650) Heckmann","(24048) Pedroduque","(1674) Groeneveld","(3633) Mira","(9860) Archaeopteryx","(72941) 2002 CD8","(4648) Tirion","(98246) 2000 SY166","(107742) 2001 FH33","(120190) 2004 CL97","(71966) 2000 WP118","(3723) Voznesenskij","(3626) Ohsaki","(56349) 2000 AZ90","(357) Ninina","(1544) Vinterhansenia","(69266) 1988 RJ6","(26121) 1992 BX","(79610) 1998 RF51","(8233) Asada","(16715) Trettenero","(123915) 2001 DK95","(249) Ilse","(15505) 1999 RF56","(431) Nephele","(1216) Askania","(225) Henrietta","(7132) Casulli","(334) Chicago","(9792) Nonodakesan","(106797) 2000 XX27","(9200) 1993 FK21","(18483) 1995 YY2","(6815) Mutchler","(3627) Sayers","(70427) 1999 TB1","(96463) 1998 HW51","(4173) Thicksten","(98345) 2000 SQ304","(166264) 2002 GL74","(55454) 2001 TJ128","(5900) Jensen","(262642) 2006 WT49","(5924) Teruo","(70528) 1999 TF116","(3999) Aristarchus","(15417) Babylon","(1740) Paavo Nurmi","(1655) Comas Sola","(60571) 2000 ER116","(15998) 1999 AG2","(23270) Kellerman","(121096) 1999 FG51","(114308) 2002 XY50","(561) Ingwelde","(9566) Rykhlova","(77421) 2001 GB","(12455) 1997 AR","(25024) Calebmcgraw","(334314) 2001 VY132","(25036) Elizabethof","(3843) OISCA","(38173) 1999 JZ112","(256789) 2008 CY45","(30043) Lisamichaels","(7231) Porco","(116717) 2004 DU8","(34228) 2000 QF90","(153694) 2001 UV28","(28894) Ryanchung","(134740) 2000 AX187","(2536) Kozyrev","(6142) Tantawi","(186714) 2004 BV88","(2778) Tangshan","(132248) 2002 EM90"],"instruments":["IRTF 3.2m","SpeX","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","DOLORES (Device Optimized for LOw RESolution)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","Near Infrared Camera Spectrometer (NICS)","New Technology Telescope (NTT)","ESO Faint Object Spectrograph and Camera 2","Gran Telescopio Canaria (GTC)","GTC OSIRIS Optical Imager and Spectrograph","2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)","Intermediate Dispersion Spectrograph (IDS)","SOAR","SOAR-GHTS"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"2001-08-04","stop_date":"2020-02-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/bundle_gbo.ast.primass-l.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/bundle_gbo.ast.primass-l.spectra.xml","scraped_at":"2026-02-25T20:02:10.739636Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo_ast_fieber-beyer_spectra::2.0","title":"Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0","description":"The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(495) Eulalia","Multiple Asteroids","(897) Lysistrata","(6212) Franzthaler","(1215) Boyer","(292) Ludovica","(2038) Bistro","(329) Svea","(248) Lameia","(3637) O'Meara","(198) Ampella","(115) Thyra","(335) Roberta","(421) Zahringia","(1064) Aethusa","(162385) 2000 BM19","(1644) Rafita","(1772) Gagarin","(1368) Numidia","(1379) Lomonosowa","(1722) Goffin","(714) Ulula","(556) Phyllis","(6) Hebe","(6649) Yokotatakao","(797) Montana","(46) Hestia","(3066) McFadden","(974) Lioba","(1158) Luda","(285263) 1998 QE2","(481532) 2007 LE","(695) Bella","(19727) Allen","(619) Triberga","(3345) Tarkovskij","(5676) Voltaire","(355) Gabriella","(3999) Aristarchus","(623) Chimaera","(1166) Sakuntala","(518) Halawe","(1391) Carelia","(908) Buda","(1854) Skvortsov","(1607) Mavis","(1587) Kahrstedt","(3760) Poutanen","(5129) Groom","(652) Jubilatrix","(1501) Baade","(2497) Kulikovskij","(1447) Utra","(660) Crescentia","(875) Nymphe","(1960) Guisan","(1018) Arnolda","(787) Moskva","(1036) Ganymed","(354) Eleonora","(879) Ricarda","(2089) Cetacea","(1358) Gaika"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":[],"start_date":"2000-06-30","stop_date":"2017-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/bundle_gbo.ast.fieber-beyer.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/bundle_gbo.ast.fieber-beyer.spectra.xml","scraped_at":"2026-02-25T20:02:10.739648Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.nirs::1.0","title":"The Hayabusa NIRS Bundle","description":"This data set includes the 117,937 raw spectra returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission, along with 111,226 calibrated spectra of asteroid 25143 Itokawa. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The raw data cover the period from May 12, 2003 through November 24, 2005, and the calibrated data cover the Itokawa encounter phases of the mission, from Aug. 31 through November 24, 2005.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":[],"start_date":"2005-08-31","stop_date":"2005-11-24","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/bundle_hay.nirs.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/bundle_hay.nirs.xml","scraped_at":"2026-02-25T20:02:10.739658Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Bundle","description":"This bundle collects all the operational data products produced by Hayabusa2 Optical Navigation Camera (ONC).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/bundle_hyb2_onc.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/bundle_hyb2_onc.xml","scraped_at":"2026-02-25T20:02:10.739663Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mag::1.0","title":"Hayabusa2/MASCOT Magnetometer Bundle","description":"This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT Fluxgate Magnetometer.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASMAG"],"instrument_hosts":["MASCOT"],"data_types":[],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/bundle_hyb2_mascot_mag.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/bundle_hyb2_mascot_mag.xml","scraped_at":"2026-02-25T20:02:10.739668Z","keywords":["Hayabusa2","MASMAG","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mara::1.0","title":"Hayabusa2/MASCOT MARA Radiometer Bundle","description":"This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT MARA Radiometer.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["MASCOT"],"data_types":[],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/bundle_hyb2_mascot_mara.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/bundle_hyb2_mascot_mara.xml","scraped_at":"2026-02-25T20:02:10.739672Z","keywords":["Hayabusa2","MARA","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mascam::1.0","title":"Hayabusa2/MASCOT Camera Bundle","description":"This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT Camera, MASCAM.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA2 ASTEROID SAMPLE RETURN MISSION"],"targets":["(162173) RYUGU"],"instruments":["MASCOT CAMERA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":[],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/bundle_hyb2_mascot_mascam.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/bundle_hyb2_mascot_mascam.xml","scraped_at":"2026-02-25T20:02:10.739677Z","keywords":["Hayabusa2","MASCAM","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel::1.0","title":"DART Shapemodel Archive Bundle","description":"The DART Shapemodel Bundle contains derived stereophotoclinometry (SPC) data products produced by the DART project. The primary inputs to the shape model collections are the calibrated Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) images from the DART spacecraft and the LICIACube Unit Key Explorer (LUKE) images from LICIAcube spacecraft, as well as SPICE ancillary information. These data are processed through a variety of algorithms resulting in shape, topographic, and geometric information. The bundle also includes documentation that describes the data products for each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos","(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/bundle_dart_shapemodel.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/bundle_dart_shapemodel.xml","scraped_at":"2026-02-25T20:02:10.739786Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart::2.0","title":"DART Spacecraft Archive Bundle","description":"The DART Spacecraft Bundle contains raw and calibrated data products taken from the DRACO imager on board the DART spacecraft, Radio Science products received from the Deep Space Network (DSN), and Maneuver Acceleration File (MAF) data for DART. The bundle also includes documentation that describes the data products for each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos","(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/bundle_dart_spacecraft.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/bundle_dart_spacecraft.xml","scraped_at":"2026-02-25T20:02:10.739795Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice::2.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739810Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa::2.0","title":"New Horizons Linear Etalon Imaging Spectral Array Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739814Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic::2.0","title":"New Horizons MVIC Data Archive","description":"This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739818Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc::2.0","title":"New Horizons Student Dust Counter (SDC) Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739822Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:soho::1.3","title":"Comet Data from the Solar and Heliospheric Observatory (SOHO)","description":"This archive bundle contains collections of comet observations and derived results from the SOHO data archives, with related documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Solar and Heliospheric Observatory"],"targets":[],"instruments":[],"instrument_hosts":["Solar and Heliospheric Observatory"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/bundle.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/bundle.xml","scraped_at":"2026-02-25T20:02:10.739886Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi::2.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739903Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri::1.0","title":"Lucy Mission L'LORRI Instrument Bundle","description":"This bundle collects all the operational data products produced by the Lucy LOng Range Reconnaissance Imager.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Lucy Mission"],"targets":["(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":[],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/bundle.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/bundle.xml","scraped_at":"2026-02-25T20:02:10.739908Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_secondary::1.0","title":"Secondary Collections to Support New Horizons Research Results","description":"This bundle provides a place to create collections containing only secondary members to support lists of product IDs related to derived data sets and analytical references in publications. The collection labels will indicate the relevant data sets or publications.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739933Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived::4.0","title":"Derived Products from New Horizons Data","description":"This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.739936Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_rex::1.0","title":"New Horizons Radio Science Experiment (REX) Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Radio Science Experiment (REX) instrument onboard the New Horizons spacecraft, as well related Tracking and Navigation Files (TNF) used by the project.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission 1"],"targets":[],"instruments":["Radio Science Experiment"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.740007Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap::2.1","title":"New Horizons Solar Wind Around Pluto (SWAP) Instrument Archive Bundle","description":"This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/bundle.lblx","scraped_at":"2026-02-25T20:02:10.740147Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents::4.3","title":"New Horizons Mission Instrument-Specific and Mission-Wide Documents","description":"This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission","New Horizons Kuiper Belt Extended Mission 2"],"targets":[],"instruments":[],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/bundle.lblx","scraped_at":"2026-02-25T20:02:10.740151Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri::2.0","title":"New Horizons LORRI Data Archive","description":"This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission (KEM1)"],"targets":[],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/bundle.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/bundle.lblx","scraped_at":"2026-02-25T20:02:10.740695Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar::2.0","title":"Hayabusa2 LIDAR Bundle","description":"This bundle collects all the operational data products produced by the Hayabusa2 LIDAR instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["LIght Detection And Ranging (LIDAR)"],"instrument_hosts":["Hayabusa2"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/bundle_hyb2_lidar_v002.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/bundle_hyb2_lidar_v002.xml","scraped_at":"2026-02-25T20:02:10.740711Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2::4.0","title":"Hayabusa2 Mission Bundle","description":"This bundle collects all the mission wide information needed to use and understand the scientific data products produced by the Hayabusa2 mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Small Monitor Camera (CAM-H)","LIght Detection And Ranging (LIDAR)","Near InfraRed Spectrometer (NIRS3)","Optical Navigation Camera","Small Carry-on Impactor (SCI)","Thermal Infrared Imager (TIR)","DCAM3-A (DCAM3 Analog)","DCAM3-D (DCAM3 Digital)","MASCOT Camera","MASCOT Fluxgate Magnetometer","MARA","MicrOmega"],"instrument_hosts":["Hayabusa2","DCAM3 (Deployable Camera 3)","MASCOT","MINERVA-II1 Rover-1a HIBOU","MINERVA-II1 Rover-1b OWL","MINERVA-II2 Rover-2 ULULA"],"data_types":[],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/bundle_hyb2_v004.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/bundle_hyb2_v004.xml","scraped_at":"2026-02-25T20:02:10.740720Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.satellite.colors::1.0","title":"Small Planetary Satellite Colors V1.0","description":"This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["MULTIPLE"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":[],"start_date":"1977-09-11","stop_date":"2002-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/bundle_compil.satellite.colors.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/bundle_compil.satellite.colors.xml","scraped_at":"2026-02-25T20:02:10.740723Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics::1.0","title":"Ceres Urvara Dawn FC C2E mosaics V1.0","description":"This bundle contains controlled mosaics of the Urvara crater region using Dawn FC2 level 1b calibrated images from the Ceres X2 Elliptical (C2E) mission phase. Approximately 1600 images are used, with resolutions varying from a few m/pixel to around 40 m/pixel. Images are controlled relative to each other and to the Dawn LAMO basemap, and are photometrically corrected to account for varying illumination conditions. A single large mosaic is included, with all images scaled to 5 m/pixel resolution, along with four subset mosaics incorporating only those images in different ranges of native resolution: 3.5-7 m/pixel, 7-14 m/pixel, 14-28 m/pixel, and greater than 28 m/pixel. When layered together, the four submosaics include all images contained in the full mosaic.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/bundle_dwarf_planet-ceres.dawn-fc.urvara-mosaics.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/bundle_dwarf_planet-ceres.dawn-fc.urvara-mosaics.xml","scraped_at":"2026-02-25T20:02:10.740727Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo-dds::1.0","title":"Galileo Dust Detection System Bundle","description":"This bundle contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission. Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["GALILEO"],"targets":["Calibration Target","Dust"],"instruments":["GALILEO DUST DETECTION SYSTEM"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1989-10-18","stop_date":"2003-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/bundle_galileo-dds.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/bundle_galileo-dds.xml","scraped_at":"2026-02-25T20:02:10.740730Z","keywords":[],"processing_level":"Raw | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra::1.0","title":"Reddy IRTF Near Earth Asteroid Spectra V1.0","description":"This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of 40 near-Earth asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra that were obtained as part of Vishnu Reddy's Ph.D. disseration at the University of North Dakota. They have been used for detailed mineralogical/compositional analysis and thermal modeling to constrain the albedo of these objects.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"2005-06-30","stop_date":"2009-10-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/bundle_gbo.ast-neo.reddy.irtf.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/bundle_gbo.ast-neo.reddy.irtf.spectra.xml","scraped_at":"2026-02-25T20:02:10.740734Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra::1.0","title":"Near-infrared spectra of small NEOs by Sanchez and Reddy","description":"This dataset includes near-infrared (NIR) spectra (~0.7-2.5 microns) of 82 small near-Earth objects (NEOs) with absolute visual magnitudes H > 20 (mean diameter of 126 m). All spectra were obtained with the IRTF and the SpeX instrument over the course of ~7 years. These NIR spectra are published in [SANCHEZETAL2024].","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["2019 JX7","2016 CO247","2007 EC","2020 HS6","2014 WZ120","(438908) 2009 XO","2016 EV27","2019 JL3","(501647) 2014 SD224","2012 ER14","2002 LY1","2006 XY","2017 BY93","(459872) 2014 EK24","2019 UO13","2020 KC5","2016 BC14","2014 WY119","(85990) 1999 JV6","2020 SN","2020 YQ3","2019 RC","2001 YV3","2013 XA22","2016 CM194","2015 LK24","2019 AN5","2014 VQ","2015 AK45","2014 PL51","2016 EB1","2014 PR62","(469737) 2005 NW44","(163348) 2002 NN4","(496816) 1989 UP","2017 CR32","2015 HA1","2019 GT3","2015 WF13","2017 OL1","2017 RR15","(528159) 2008 HS3","2014 SS1","2016 EF28","2016 FV13","2016 LG","2015 BC","2019 YM3","(436724) 2011 UW158","2015 TB25","2005 TF","2017 BS5","2020 ST1","2017 OP68","2018 XG5","2020 DZ1","2014 WN4","2015 TF","2005 NE21","2017 WX12","2020 RO6","(412995) 1999 LP28","2018 XS4","2015 BK509","2015 FL","2019 SH6","2017 FU64","(471240) 2011 BT15","(467336) 2002 LT38","2017 DR34","2015 XC","(515767) 2015 JA2","2015 VE66","2015 AP43","2014 VH2","(363599) 2004 FG11","2016 GU","2015 NA14","2013 CW32","2000 TU28","2017 BW","(437844) 1999 MN"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"2013-10-14","stop_date":"2021-01-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/bundle_gbo.ast-neo.sanchez-reddy.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/bundle_gbo.ast-neo.sanchez-reddy.spectra.xml","scraped_at":"2026-02-25T20:02:10.740743Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.hardersen.spectra::1.0","title":"Hardersen IRTF NIR Asteroid Reflectance Spectra","description":"This dataset includes average near-infrared (NIR) reflectance spectra for 68 main-belt asteroids that were observed at the NASA Infrared Telescope Facility (IRTF), Mauna Kea, Hawaii, from April 2001 to January 2015. Raw NIR spectral data were obtained under mostly uniform instrumental conditions and include observations of the asteroids, extinction stars, and solar analog stars that were necessary for data reduction and production of the final average asteroid NIR reflectance spectra. SpecPR and Spextool were used during data reduction to produce the final spectra and both programs utilize similar functions that include sky background subtraction, telluric corrections, channel shifting, and averaging routines. The set of asteroids observed include a wide variety of taxonomic types and include V-, S-, M-, X-types that correspond to a wide variety of surface mineralogies, rock types, and potential meteorite analogs.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"2001-04-29","stop_date":"2015-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/bundle_gbo.ast.hardersen.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/bundle_gbo.ast.hardersen.spectra.xml","scraped_at":"2026-02-25T20:02:10.740747Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra::1.0","title":"Rivkin Three Micron Asteroid Data","description":"This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Multiple Asteroids","Phobos","Deimos"],"instruments":["IRTF 3.2m","RC2","NSFCam","Infrared cold coronagraph (CoCo)"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"1991-12-29","stop_date":"1999-04-26","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/bundle_gbo.ast.rivkin.3-micron-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/bundle_gbo.ast.rivkin.3-micron-spectra.xml","scraped_at":"2026-02-25T20:02:10.740753Z","keywords":["3-micron data","asteroids","Phobos","Deimos"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.s3os2.spectra::1.0","title":"Small Solar System Objects Spectroscopic Survey V1.0","description":"This dataset contains the visible spectra of 820 asteroids obtained between November 1996 and May 2001 at the 1.52m telescope at ESO (La Silla). The useful spectral range is between about 4900 and 9200 Angstroms. The global spatial distribution of the objects covers the region between 2.2 and 3.3 AU. Some concentrations are apparent, since part of the survey was focused on particularly interesting groups or families of asteroids. The observed asteroids have been classified according to the Tholen and the Bus taxonomies, with a good agreement between both in most of the cases.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["(1) Ceres","(3) Juno","(9) Metis","(12) Victoria","(21) Lutetia","(23) Thalia","(24) Themis","(25) Phocaea","(27) Euterpe","(29) Amphitrite","(33) Polyhymnia","(37) Fides","(43) Ariadne","(47) Aglaja","(50) Virginia","(56) Melete","(57) Mnemosyne","(58) Concordia","(62) Erato","(65) Cybele","(68) Leto","(78) Diana","(84) Klio","(85) Io","(87) Sylvia","(89) Julia","(90) Antiope","(91) Aegina","(93) Minerva","(95) Arethusa","(98) Ianthe","(104) Klymene","(105) Artemis","(106) Dione","(107) Camilla","(109) Felicitas","(112) Iphigenia","(115) Thyra","(117) Lomia","(119) Althaea","(127) Johanna","(130) Elektra","(133) Cyrene","(140) Siwa","(141) Lumen","(145) Adeona","(148) Gallia","(154) Bertha","(156) Xanthippe","(164) Eva","(166) Rhodope","(168) Sibylla","(169) Zelia","(170) Maria","(171) Ophelia","(173) Ino","(176) Iduna","(177) Irma","(181) Eucharis","(183) Istria","(184) Dejopeja","(191) Kolga","(194) Prokne","(199) Byblis","(205) Martha","(207) Hedda","(214) Aschera","(217) Eudora","(219) Thusnelda","(220) Stephania","(223) Rosa","(224) Oceana","(226) Weringia","(227) Philosophia","(229) Adelinda","(233) Asterope","(241) Germania","(246) Asporina","(249) Ilse","(251) Sophia","(252) Clementina","(254) Augusta","(255) Oppavia","(258) Tyche","(259) Aletheia","(260) Huberta","(265) Anna","(266) Aline","(268) Adorea","(270) Anahita","(271) Penthesilea","(273) Atropos","(274) Philagoria","(283) Emma","(286) Iclea","(293) Brasilia","(294) Felicia","(298) Baptistina","(303) Josephina","(307) Nike","(309) Fraternitas","(311) Claudia","(314) Rosalia","(316) Goberta","(323) Brucia","(324) Bamberga","(329) Svea","(332) Siri","(339) Dorothea","(350) Ornamenta","(352) Gisela","(354) Eleonora","(356) Liguria","(357) Ninina","(361) Bononia","(362) Havnia","(365) Corduba","(366) Vincentina","(372) Palma","(373) Melusina","(381) Myrrha","(386) Siegena","(388) Charybdis","(390) Alma","(391) Ingeborg","(393) Lampetia","(394) Arduina","(397) Vienna","(400) Ducrosa","(403) Cyane","(404) Arsinoe","(405) Thia","(407) Arachne","(412) Elisabetha","(414) Liriope","(415) Palatia","(417) Suevia","(418) Alemannia","(419) Aurelia","(422) Berolina","(424) Gratia","(426) Hippo","(429) Lotis","(431) Nephele","(434) Hungaria","(436) Patricia","(437) Rhodia","(439) Ohio","(445) Edna","(447) Valentine","(451) Patientia","(455) Bruchsalia","(457) Alleghenia","(459) Signe","(461) Saskia","(465) Alekto","(468) Lina","(469) Argentina","(472) Roma","(479) Caprera","(480) Hansa","(485) Genua","(487) Venetia","(488) Kreusa","(489) Comacina","(491) Carina","(493) Griseldis","(494) Virtus","(500) Selinur","(501) Urhixidur","(502) Sigune","(504) Cora","(506) Marion","(508) Princetonia","(510) Mabella","(511) Davida","(514) Armida","(517) Edith","(521) Brixia","(522) Helga","(524) Fidelio","(525) Adelaide","(526) Jena","(527) Euryanthe","(530) Turandot","(536) Merapi","(537) Pauly","(539) Pamina","(544) Jetta","(545) Messalina","(547) Praxedis","(558) Carmen","(565) Marbachia","(567) Eleutheria","(568) Cheruskia","(569) Misa","(573) Recha","(576) Emanuela","(579) Sidonia","(581) Tauntonia","(589) Croatia","(595) Polyxena","(598) Octavia","(601) Nerthus","(602) Marianna","(607) Jenny","(612) Veronika","(616) Elly","(618) Elfriede","(619) Triberga","(621) Werdandi","(625) Xenia","(626) Notburga","(628) Christine","(630) Euphemia","(635) Vundtia","(640) Brambilla","(657) Gunlod","(660) Crescentia","(662) Newtonia","(663) Gerlinde","(665) Sabine","(666) Desdemona","(667) Denise","(680) Genoveva","(683) Lanzia","(685) Hermia","(690) Wratislavia","(692) Hippodamia","(694) Ekard","(696) Leonora","(697) Galilea","(699) Hela","(702) Alauda","(704) Interamnia","(705) Erminia","(713) Luscinia","(714) Ulula","(716) Berkeley","(717) Wisibada","(721) Tabora","(726) Joella","(727) Nipponia","(728) Leonisis","(729) Watsonia","(732) Tjilaki","(734) Benda","(739) Mandeville","(740) Cantabia","(746) Marlu","(747) Winchester","(752) Sulamitis","(753) Tiflis","(756) Lilliana","(760) Massinga","(761) Brendelia","(762) Pulcova","(764) Gedania","(768) Struveana","(772) Tanete","(775) Lumiere","(777) Gutemberga","(778) Theobalda","(779) Nina","(780) Armenia","(788) Hohensteina","(790) Pretoria","(791) Ani","(796) Sarita","(804) Hispania","(808) Merxia","(809) Lundia","(814) Tauris","(815) Coppelia","(816) Juliana","(817) Annika","(822) Lalage","(829) Academia","(834) Burnhamia","(838) Seraphina","(846) Lipperta","(847) Agnia","(848) Inna","(850) Altona","(857) Glasenappia","(859) Bouzareah","(869) Mellena","(870) Manto","(874) Rotraut","(881) Athene","(882) Swetlana","(889) Erynia","(891) Gunhild","(892) Seeligeria","(893) Leopoldina","(894) Erda","(897) Lysistrata","(899) Jokaste","(904) Rockefellia","(906) Repsolda","(911) Agamemnon","(914) Palisana","(917) Lyka","(921) Jovita","(923) Herluga","(928) Hildrun","(929) Algunde","(932) Hooveria","(936) Kunigunde","(943) Begonia","(947) Monterosa","(949) Hel","(950) Ahrensa","(952) Caia","(953) Painleva","(954) Li","(955) Alstede","(956) Elisa","(957) Camelia","(966) Muschi","(968) Petunia","(972) Cohnia","(973) Aralia","(977) Philippa","(978) Aidamina","(979) Ilsewa","(981) Martina","(982) Franklina","(983) Gunila","(986) Amelia","(987) Wallia","(988) Appella","(989) Schwassmannia","(1000) Piazzia","(1003) Lilofee","(1004) Belopolskya","(1005) Arago","(1006) Lagrangea","(1013) Tombecka","(1018) Arnolda","(1021) Flammario","(1022) Olympiada","(1023) Thomana","(1024) Hale","(1025) Riema","(1028) Lydina","(1030) Vitja","(1031) Arctica","(1034) Mozarita","(1035) Amata","(1036) Ganymed","(1042) Amazone","(1050) Meta","(1051) Merope","(1056) Azalea","(1057) Wanda","(1060) Magnolia","(1067) Lunaria","(1075) Helina","(1077) Campanula","(1086) Nata","(1089) Tama","(1090) Sumida","(1094) Siberia","(1095) Tulipa","(1097) Vicia","(1099) Figneria","(1101) Clematis","(1108) Demeter","(1109) Tata","(1114) Lorraine","(1115) Sabauda","(1117) Reginita","(1118) Hanskya","(1122) Neith","(1123) Shapleya","(1127) Mimi","(1130) Skuld","(1137) Raissa","(1139) Atami","(1146) Biarmia","(1149) Volga","(1150) Achaia","(1154) Astronomia","(1164) Kobolda","(1171) Rusthawelia","(1177) Gonnessia","(1178) Irmela","(1180) Rita","(1194) Aletta","(1209) Pumma","(1213) Algeria","(1215) Boyer","(1219) Britta","(1226) Golia","(1229) Tilia","(1236) Thais","(1242) Zambesia","(1243) Pamela","(1244) Deira","(1246) Chaka","(1252) Celestia","(1261) Legia","(1263) Varsavia","(1266) Tone","(1274) Delportia","(1276) Ucclia","(1280) Baillauda","(1281) Jeanne","(1282) Utopia","(1283) Komsomolia","(1284) Latvia","(1294) Antwerpia","(1301) Yvonne","(1306) Scythia","(1312) Vassar","(1317) Silvretta","(1318) Nerina","(1319) Disa","(1320) Impala","(1321) Majuba","(1322) Coppernicus","(1326) Losaka","(1328) Devota","(1329) Eliane","(1330) Spiridonia","(1333) Cevenola","(1335) Demoulina","(1337) Gerarda","(1340) Yvette","(1351) Uzbekistania","(1355) Magoeba","(1356) Nyanza","(1361) Leuschneria","(1362) Griqua","(1365) Henyey","(1367) Nongoma","(1369) Ostanina","(1384) Kniertje","(1392) Pierre","(1396) Outeniqua","(1399) Teneriffa","(1400) Tirela","(1403) Idelsonia","(1409) Isko","(1414) Jerome","(1425) Tuorla","(1431) Luanda","(1432) Ethiopia","(1436) Salonta","(1444) Pannonia","(1449) Virtanen","(1455) Mitchella","(1459) Magnya","(1467) Mashona","(1469) Linzia","(1481) Tubingia","(1487) Boda","(1499) Pori","(1506) Xosa","(1509) Esclangona","(1530) Rantaseppa","(1531) Hartmut","(1535) Paijanne","(1539) Borrelly","(1546) Izsak","(1554) Yugoslavia","(1556) Wingolfia","(1568) Aisleen","(1571) Cesco","(1573) Vaisala","(1574) Meyer","(1575) Winifred","(1576) Fabiola","(1579) Herrick","(1585) Union","(1591) Baize","(1600) Vyssotsky","(1602) Indiana","(1605) Milankovitch","(1609) Brenda","(1615) Bardwell","(1621) Druzhba","(1625) The NORC","(1637) Swings","(1646) Rosseland","(1654) Bojeva","(1656) Suomi","(1660) Wood","(1665) Gaby","(1677) Tycho Brahe","(1685) Toro","(1689) Floris-Jan","(1691) Oort","(1693) Hertzsprung","(1694) Kaiser","(1701) Okavango","(1728) Goethe Link","(1731) Smuts","(1747) Wright","(1750) Eckert","(1754) Cunningham","(1759) Kienle","(1765) Wrubel","(1771) Makover","(1775) Zimmerwald","(1793) Zoya","(1796) Riga","(1798) Watts","(1806) Derice","(1816) Liberia","(1819) Laputa","(1828) Kashirina","(1838) Ursa","(1841) Masaryk","(1883) Rimito","(1901) Moravia","(1904) Massevitch","(1919) Clemence","(1936) Lugano","(1943) Anteros","(1980) Tezcatlipoca","(1992) Galvarino","(1994) Shane","(1999) Hirayama","(2001) Einstein","(2014) Vasilevskis","(2019) van Albada","(2031) BAM","(2050) Francis","(2060) Chiron","(2074) Shoemaker","(2091) Sampo","(2093) Genichesk","(2096) Vaino","(2103) Laverna","(2104) Toronto","(2105) Gudy","(2111) Tselina","(2112) Ulyanov","(2121) Sevastopol","(2150) Nyctimene","(2151) Hadwiger","(2157) Ashbrook","(2204) Lyyli","(2235) Vittore","(2263) Shaanxi","(2266) Tchaikovsky","(2272) Montezuma","(2291) Kevo","(2292) Seili","(2296) Kugultinov","(2303) Retsina","(2332) Kalm","(2341) Aoluta","(2349) Kurchenko","(2374) Vladvysotskij","(2381) Landi","(2397) Lappajarvi","(2407) Haug","(2448) Sholokhov","(2463) Sterpin","(2464) Nordenskiold","(2478) Tokai","(2489) Suvorov","(2490) Bussolini","(2491) Tvashtri","(2510) Shandong","(2519) Annagerman","(2524) Budovicium","(2525) O'Steen","(2548) Leloir","(2577) Litva","(2612) Kathryn","(2634) James Bradley","(2651) Karen","(2655) Guangxi","(2685) Masursky","(2717) Tellervo","(2780) Monnig","(2796) Kron","(2810) Lev Tolstoj","(2815) Soma","(2820) Iisalmi","(2829) Bobhope","(2841) Puijo","(2891) McGetchin","(2906) Caltech","(2911) Miahelena","(2914) Glarnisch","(2927) Alamosa","(2938) Hopi","(2959) Scholl","(2961) Katsurahama","(2962) Otto","(2965) Surikov","(2975) Spahr","(2988) Korhonen","(2991) Bilbo","(2993) Wendy","(3015) Candy","(3022) Dobermann","(3023) Heard","(3033) Holbaek","(3036) Krat","(3043) San Diego","(3063) Makhaon","(3066) McFadden","(3067) Akhmatova","(3073) Kursk","(3101) Goldberger","(3104) Durer","(3105) Stumpff","(3106) Morabito","(3116) Goodricke","(3128) Obruchev","(3139) Shantou","(3141) Buchar","(3152) Jones","(3162) Nostalgia","(3169) Ostro","(3181) Ahnert","(3182) Shimanto","(3197) Weissman","(3198) Wallonia","(3204) Lindgren","(3225) Hoag","(3242) Bakhchisaraj","(3246) Bidstrup","(3259) Brownlee","(3267) Glo","(3274) Maillen","(3296) Bosque Alegre","(3300) McGlasson","(3308) Ferreri","(3309) Brorfelde","(3328) Interposita","(3330) Gantrisch","(3333) Schaber","(3341) Hartmann","(3343) Nedzel","(3352) McAuliffe","(3388) Tsanghinchi","(3400) Aotearoa","(3445) Pinson","(3447) Burckhalter","(3478) Fanale","(3483) Svetlov","(3492) Petra-Pepi","(3507) Vilas","(3533) Toyota","(3573) Holmberg","(3600) Archimedes","(3615) Safronov","(3635) Kreutz","(3663) Tisserand","(3682) Welther","(3702) Trubetskaya","(3709) Polypoites","(3728) IRAS","(3753) Cruithne","(3767) DiMaggio","(3786) Yamada","(3787) Aivazovskij","(3789) Zhongguo","(3793) Leonteus","(3816) Chugainov","(3829) Gunma","(3832) Shapiro","(3873) Roddy","(3875) Staehle","(3880) Kaiserman","(3888) Hoyt","(3894) Williamcooke","(3906) Chao","(3913) Chemin","(3915) Fukushima","(3925) Tret'yakov","(3939) Huruhata","(3940) Larion","(3990) Heimdal","(3995) Sakaino","(4055) Magellan","(4056) Timwarner","(4060) Deiplyos","(4063) Euforbo","(4068) Menestheus","(4083) Jody","(4100) Sumiko","(4103) Chahine","(4112) Hrabal","(4116) Elachi","(4121) Carlin","(4125) Lew Allen","(4127) Kyogoku","(4132) Bartok","(4143) Huziak","(4175) Billbaum","(4191) Assesse","(4201) Orosz","(4220) Flood","(4276) Clifford","(4278) Harvey","(4299) WIYN","(4340) Dence","(4375) Kiyomori","(4422) Jarre","(4448) Phildavis","(4457) van Gogh","(4460) Bihoro","(4483) Petofi","(4484) Sif","(4489) Dracius","(4490) Bambery","(4497) Taguchi","(4502) Elizabethann","(4511) Rembrandt","(4520) Dovzhenko","(4522) Britastra","(4533) Orth","(4556) Gumilyov","(4558) Janesick","(4580) Child","(4601) Ludkewycz","(4613) Mamoru","(4617) Zadunaisky","(4621) Tambov","(4666) Dietz","(4695) Mediolanum","(4706) Dennisreuter","(4713) Steel","(4725) Milone","(4730) Xingmingzhou","(4759) Aretta","(4764) Joneberhart","(4770) Lane","(4778) Fuss","(4820) Fay","(4826) Wilhelms","(4833) Meges","(4835) Asaeus","(4843) Megantic","(4856) Seaborg","(4880) Tovstonogov","(4889) Praetorius","(4902) Thessandrus","(4914) Pardina","(4931) Tomsk","(4950) House","(4954) Eric","(4955) Gold","(4957) Brucemurray","(5016) Migirenko","(5045) Hoyin","(5057) Weeks","(5090) Wyeth","(5122) Mucha","(5147) Maruyama","(5215) Tsurui","(5216) Cannizzo","(5230) Asahina","(5264) Telephus","(5301) Novobranets","(5343) Ryzhov","(5362) Johnyoung","(5461) Autumn","(5481) Kiuchi","(5559) Beategordon","(5592) Oshima","(5600) 1991 UY","(5639) Cuk","(5648) Axius","(5651) Traversa","(5751) Zao","(5818) 1989 RC1","(5832) Martaprincipe","(5870) Baltimore","(5914) Kathywhaler","(5959) Shaklan","(6051) Anaximenes","(6057) Robbia","(6084) Bascom","(6139) Naomi","(6193) Manabe","(6297) 1988 VZ1","(6307) Maiztegui","(6310) Jankonke","(6384) Kervin","(6394) 1990 QM2","(6447) Terrycole","(6461) Adam","(6493) Cathybennett","(6560) Pravdo","(6916) Lewispearce","(6974) Solti","(7002) Bronshten","(7052) Octaviabutler","(7353) Kazuya","(7480) Norwan","(7482) 1994 PC1","(7496) Miroslavholub","(7516) Kranjc","(7638) Gladman","(7868) Barker","(7898) Ohkuma","(8106) Carpino","(8518) 1992 DM6","(8795) Dudorov","(8906) Yano","(9219) 1995 WO8","(10007) Malytheatre","(10094) Eijikato","(10261) Nikdollezhal'","(11079) Mitsunori","(11548) Jerrylewis","(12447) Yatescup","(13111) Papacosmas","(14465) 1993 NB","(26879) Haines","(43754) 1983 AA"],"instruments":["1.52-m spectrographic Cassegrain/Coude reflector","ESO Boller and Chivens Spectrograph"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":[],"start_date":"1996-11-17","stop_date":"2001-10-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/bundle_gbo.ast.s3os2.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/bundle_gbo.ast.s3os2.spectra.xml","scraped_at":"2026-02-25T20:02:10.740796Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteorites.friability::1.0","title":"Friability of Meteorites V1.0","description":"This bundle contains the complete experimental dataset and visual documentation from the friability analysis of seven meteorites: Richardton (H5), Tamdakht (H5), Zhob (H3/4), New Concord (L6), Allende (CV3), Murchison (CM2), and Aguas Zarcas (CM2). The dataset records the mass retained in each sieve bin after successive tumbling stages of 10, 100, 1,000, 10,000, and 100,000 revolutions, performed using the PTF-100 friability tester. All measurements were conducted according to the USP 1216 friability standard, using a 28.7 cm diameter drum that rotated at 25 rpm. Corresponding sieve sizes are 2000, 841, 400, 250, 177, 125, 63, 37, and 0.1. The data quantify the progressive mechanical disaggregation and redistribution of fragment sizes across increasing revolution counts, providing a quantitative basis for modeling the friability of meteorites. Seven chondritic meteorites representing diverse lithologies. The archive enables reproduction of all plots and calculations related to the evolution of friability as a bounded, multiplicative process, and provides a benchmark for linking laboratory comminution to asteroid surface processes.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["Aguas Zarcas","New Concord","Murchison","Zhob","Richardton","Tamdakht","Allende"],"instruments":["PTF 100 Friability Tester"],"instrument_hosts":["EM3 Lab"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/bundle_gbo.meteorites.friability.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/bundle_gbo.meteorites.friability.xml","scraped_at":"2026-02-25T20:02:10.740807Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.pluto.benecchi-etal.occultation::1.0","title":"Occultation of star P445.3 by Pluto","description":"The dataset includes simultaneous imaging obtained at the MMT in the infrared (H-band, 1.65 micron) and visible (unfiltered, approximately 0.24-1.24 micron) of Pluto occulting the star P445.3 (2UCAC 25823784 = Gaia DR2 4144912550502784384) on 2007 March 18. The measurements included in the dataset were obtained continuously from 10:10:00 to 11:30:00 UTC. The midpoint of the occultation, at the MMT, was 10:53:49+/-00:01. The event was grazing and gives information about the atmosphere of Pluto to a depth of 1348 km above the surface. Images from the other observing sites for this event are not contained within this dataset, however lightcurve tables are included.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["(134340) Pluto","(134340) Pluto"],"instruments":["6.5-m Single Mirror (MMT)","POETS: Portable Occultation, Eclipse, and Transit System","USNO 1.55m","POETS: Portable Occultation, Eclipse, and Transit System","8.4/8.4-m Large Binocular Telescope (LBT)","LBC Guide Camera","MRO 2.4m","POETS: Portable Occultation, Eclipse, and Transit System","FPO 0.32m","SBIG ST-10XME","6.5-m Single Mirror (MMT)","PISCES"],"instrument_hosts":["MMT Observatory","US Naval Observatory","Large Binocular Telescope Observatory","Magdelena Ridge Observatory","Fremont Peak Observatory","MMT Observatory"],"data_types":[],"start_date":"2007-03-18","stop_date":"2007-03-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/bundle_gbo.pluto.benecchi-etal.occultation.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/bundle_gbo.pluto.benecchi-etal.occultation.xml","scraped_at":"2026-02-25T20:02:10.740813Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.grs::1.0","title":"NEAR Gamma-Ray Spectrometer (GRS) Data Bundle","description":"The NEAR Gamma-Ray Spectrometer (GRS) is part of the X-Ray/Gamma-Ray Spectrometer (XGRS) instrument package on the NEAR spacecraft. This bundle contains all of the raw and calibrated GRS instrument data from the NEAR mission, plus derived results.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":[],"start_date":"1997-08-27","stop_date":"2001-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/bundle_near.grs.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/bundle_near.grs.xml","scraped_at":"2026-02-25T20:02:10.740817Z","keywords":[],"processing_level":"Raw | Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.nlr::1.0","title":"NEAR Laser Rangefinder (NLR) Instrument Bundle V1.0","description":"The NEAR NLR Laser Rangefinder (NLR) is an instrument on the NEAR spacecraft. This bundle contains all of the raw NLR instrument data, plus derived results.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SPACE"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":[],"start_date":"1996-04-25","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/bundle_near.nlr.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/bundle_near.nlr.xml","scraped_at":"2026-02-25T20:02:10.740821Z","keywords":[],"processing_level":"Calibrated | Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:neowise_diameters_albedos::2.0","title":"NEOWISE Diameters and Albedos V2.0","description":"This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["NEOWISE"],"targets":["Multiple Asteroids","SATELLITE","COMET"],"instruments":["WISE Camera"],"instrument_hosts":["Wide-Field Infrared Survey Explorer"],"data_types":[],"start_date":"2010-01-07","stop_date":"2016-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/bundle_neowise_diameters_albedos.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/bundle_neowise_diameters_albedos.xml","scraped_at":"2026-02-25T20:02:10.740825Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ast-bennu.simulated-shape-models::1.0","title":"OSIRIS-REx Simulated Test Models V1.0","description":"This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"],"targets":["(101955) Bennu"],"instruments":["Simulation","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":["OSIRIS-REx"],"data_types":[],"start_date":"2016-02-03","stop_date":"2016-10-21","browse_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/bundle_orex.ast-bennu.simulated-shape-models.xml","source_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/bundle_orex.ast-bennu.simulated-shape-models.xml","scraped_at":"2026-02-25T20:02:10.740829Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.grs::2.0","title":"The Psyche Gamma Ray Spectrometer Bundle","description":"The Psyche Gamma Ray Spectrometer (GRS) Raw and Calibrated Bundle contains the raw and calibrated data products generated from the GRS instrument on the Psyche spacecraft. The bundle includes the documentation that describes the data products for each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Psyche Mission"],"targets":["Solar System"],"instruments":["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":[],"start_date":"2023-11-06","stop_date":"2025-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/bundle_psyche_grs.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/bundle_psyche_grs.xml","scraped_at":"2026-02-25T20:02:10.740856Z","keywords":["Psyche","Gamma Ray Spectrometer","GRS"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps::2.0","title":"Ceres SPC Shape and Regional Models V2.0","description":"This bundle contains topography and albedo generated for 9 polar craters on asteroid Ceres. Utilizing secondary illumination allows heights to be determined inside Permanently Shadowed Regions (PSRs). A global model is provided for context.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["The Dawn Mission To Vesta And Ceres"],"targets":["1 Ceres"],"instruments":["Framing Camera 2 (FC2) for Dawn","Framing Camera 1 (FC1) for Dawn"],"instrument_hosts":["The Dawn Spacecraft","The Dawn Spacecraft"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/bundle_dwarf_planet-ceres.dawn.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/bundle_dwarf_planet-ceres.dawn.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740861Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.mission::1.0","title":"The Psyche Mission Bundle","description":"The Psyche Mission Bundle","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Psyche Mission"],"targets":["16 Psyche"],"instruments":["The Psyche Imager (PMI) aboard the Psyche spacecraft","The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft","The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft","The Psyche Magnetometer (MAG) aboard the Psyche spacecraft","Psyche Radio Science Subsystem (RSS)"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":[],"start_date":"2020-07-31","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/bundle_psyche_mission.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/bundle_psyche_mission.xml","scraped_at":"2026-02-25T20:02:10.740866Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.ns::2.0","title":"The Psyche Neutron Spectrometer Bundle","description":"The Psyche Neutron Spectrometer (NS) Raw and Calibrated Bundle contains the raw and calibrated data products generated from the NS instrument on the Psyche spacecraft. The bundle includes the documentation that describes the data products for each data collection.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Psyche Mission"],"targets":["Solar System"],"instruments":["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":[],"start_date":"2023-12-11","stop_date":"2025-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/bundle_psyche_ns.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/bundle_psyche_ns.xml","scraped_at":"2026-02-25T20:02:10.740871Z","keywords":["Psyche","Neutron Spectrotometer","NS"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-dione.cassini.shape-models-maps::1.0","title":"Dione SPC Shape Models and Assessment Products V1.0","description":"This bundle contains global and regional topography of Saturn’s moon Dione, as well as photometric data for each of the regional models. Data products were generated using the Gaskell Stereophotoclinometry (SPC) software suite with images from the Cassini mission to Saturn. The global model is an update to the archived \"Gaskell Dione Shape Model\", and is generated with more images. In addition to the topographic models, we also provide assessment data to understand the uncertainty of the models.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Dione"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/bundle_satellite-dione.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/bundle_satellite-dione.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740875Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-mimas.cassini.shape-models-maps::1.0","title":"Mimas SPC Shape Model and Assessment Products V1.0","description":"This bundle contains a shape model for the Saturnian moon Mimas, along with quality assessment data. The global model is an update to the archived \"Gaskell Mimas Shape Model\", and is generated with more images and has higher resolution topography in some locations. The data is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Mimas"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/bundle_satellite-mimas.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/bundle_satellite-mimas.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740880Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-rhea.cassini.shape-models-maps::1.0","title":"Rhea SPC Shape Model and Assessment Products V1.0","description":"This bundle contains the first shape model for the Saturnian moon Rhea submitted to the PDS, along with quality assessment data. The data is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Rhea"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/bundle_satellite-rhea.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/bundle_satellite-rhea.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740883Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-tethys.cassini.shape-models-maps::1.0","title":"Tethys SPC Shape Models and Assessment Products V1.0","description":"This bundle contains global and regional topography of Saturn’s moon Tethys, as well as photometric data for each of the regional models. Data products were generated using the Gaskell Stereophotoclinometry (SPC) software suite with images from the Cassini mission to Saturn. The global model is an update to the archived \"Gaskell Tethys Shape Model\", and is generated with more images and has higher resolution topography in some locations. In addition to the topographic models, we also provide assessment data to understand the uncertainty of the models.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-Huygens"],"targets":["Tethys"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/bundle_satellite-tethys.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/bundle_satellite-tethys.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.740887Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:small_bodies.stooke.maps::1.0","title":"Stooke small bodies maps","description":"This bundle contains maps of small solar system bodies which have been prepared by Philip Stooke of the University of Western Ontario. It includes 270 map sheets of six asteroids, five planetary satellites, and three comets, all prepared from spacecraft images.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo","Near Earth Asteroid Rendezvous Mission","International Rosetta Mission","Hayabusa Mission","Viking Project","Mars Global Surveyor","Mars Express","Mars Reconnaissance Orbiter","The Mariner Mars '71 (Mariner 9) Mission","Voyager"],"targets":["103P/Hartley 2","19P/Borrelly","243 Ida","25143 Itokawa","253 Mathilde","2867 Steins","433 Eros","81P/Wild 2","951 Gaspra","Amalthea","Phobos","Deimos","Epimetheus","Hyperion"],"instruments":["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker","Solid State Imaging System for GO","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter","The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B","Mars Global Surveyor Spacecraft Mars Orbiter Camera","Mars Express Orbiter High Resolution Stereo Camera","Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment","Imaging Science Subsystem for MR9","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"],"instrument_hosts":["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft","GALILEO ORBITER","The Rosetta Orbiter Spacecraft","The Hayabusa Spacecraft","The Viking Orbiter 1 Spacecraft","The Viking Orbiter 2 Spacecraft","The Mars Global Surveyor Spacecraft","Mars Express","Mars Reconnaissance Orbiter","The Mariner 9 Spacecraft","VOYAGER 1","VOYAGER 2"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/bundle_small_bodies.stooke.maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/bundle_small_bodies.stooke.maps.xml","scraped_at":"2026-02-25T20:02:10.740899Z","keywords":["jpg maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:small_bodies.stooke.shape-models::1.0","title":"Stooke small bodies shape models","description":"This data set contains Philip Stooke shape models for 243 Ida, 253 Mathilde, 951 Gaspra, comet Halley, J5 Amalthea, J14 Thebe, N7 Larissa, N8 Proteus, S10 Janus, S11 Epimetheus, S16 Prometheus, and S17 Pandora, based on optical data from the NEAR, Galileo, Giotto, Vega 1, Vega 2, and Voyager missions.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["243 Ida","253 Mathilde","951 Gaspra","Pandora","Amalthea","Thebe","Larissa","Proteus","Janus","Epimetheus","Prometheus","1P/Halley"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","The Halley Multicolor Camera (HMC) for Giotto","The Television System (TVS) for Vega 1","The Television System (TVS) for Vega 2","Solid State Imaging System for GO","The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"],"instrument_hosts":["VOYAGER 1","VOYAGER 2","The Giotto Spacecraft","The Vega 1 Spacecraft","The Vega 2 Spacecraft","GALILEO ORBITER","The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/bundle_small_bodies.stooke.shape-models.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/bundle_small_bodies.stooke.shape-models.xml","scraped_at":"2026-02-25T20:02:10.740909Z","keywords":["shape models"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-udds::1.0","title":"Ulysses Dust Detection System Instrument Bundle","description":"This bundle contains the data from the Ulysses dust detector system (UDDS) from start of mission through the end of mission, 1990-2007. (As the dust detector was turned off after Nov. 30, 2007, this is the last date for which UDDS data is recorded.) Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["ULYSSES"],"targets":["Calibration Target","Dust"],"instruments":["ULYSSES DUST DETECTION SYSTEM"],"instrument_hosts":["ULYSSES"],"data_types":[],"start_date":"1990-01-01","stop_date":"2007-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/bundle_ulysses.udds.xml","source_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/bundle_ulysses.udds.xml","scraped_at":"2026-02-25T20:02:10.740913Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.tagcams::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Touch-and_Go Camera Suite (TAGCAMS). TAGCAMS is a suite of engineering cameras used for optical navigation (navcam), natural feature tracking (nftcam), and documenting sample stowage (stowcam).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/bundle_tagcams.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/bundle_tagcams.xml","scraped_at":"2026-02-25T20:02:10.740916Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msx.mimps::1.0","title":"Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Bundle","description":"Infrared observations of asteroids serendipitously observed by the Midcourse Space Experiment","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":[],"start_date":"1996-04-01","stop_date":"1997-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/bundle.msx.mimps.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/bundle.msx.mimps.xml","scraped_at":"2026-02-25T20:02:10.740920Z","keywords":[],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msx.zody.dust::1.0","title":"Midcourse Space Experiment (MSX) Zodiacal Dust Data Bundle","description":"The Midcourse Space Experiment (MSX) mid-infrared emission measurements from the zodiacal dust cloud in spectral bands centered at 8.3 12, 15, and 21 microns.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":[],"start_date":"1986-05-28","stop_date":"1997-02-04","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/bundle.msx.zody.dust.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/bundle.msx.zody.dust.xml","scraped_at":"2026-02-25T20:02:10.740924Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-ceres::1.0","title":"Dawn Ceres Gravity Science Derived Data Bundle","description":"This bundle contains derived gravity data for the Dawn Radio Science Gravity Field Determination experiments during the Ceres encounter, including spherical harmonics and gravity maps.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":[],"start_date":"2015-02-02","stop_date":"2018-10-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/bundle-dawn-rss-der-ceres.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/bundle-dawn-rss-der-ceres.xml","scraped_at":"2026-02-25T20:02:10.740927Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-vesta::1.0","title":"Dawn Vesta Gravity Science Derived Data Bundle","description":"This bundle contains derived gravity data for the Dawn Radio Science Gravity Field Determination experiments during the Vesta encounter, including spherical harmonics and gravity maps.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":[],"start_date":"2011-07-13","stop_date":"2012-07-25","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/bundle-dawn-rss-der-vesta.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/bundle-dawn-rss-der-vesta.xml","scraped_at":"2026-02-25T20:02:10.740930Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.thermal::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Derived Thermal Data Products Bundle","description":"This bundle collects the derived thermal data products produced by the OSIRIS-REx Thermal Working Group (TAWG). Derived prodcuts include (101955) Bennu global and sample site specific thermal inertia maps, and global predicted temperature maps.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES","OVIRS","OCAMS","OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/bundle_thermal.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/bundle_thermal.xml","scraped_at":"2026-02-25T20:02:10.740934Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.radioscience::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Radio Science Bundle","description":"This bundle collects mission specific Tracking and Navigation Files (TNF), Ionospheric Data Files (ION), and Small Forces Files (SFF) acquired by the Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx) spacecraft and the Deep Space Network (DSN) on Earth. Derived Radio science products such as gravity, spherical harmonic coefficients, and final ephemeris data are also collected.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OSIRIS-REx Radio Science (Telecom) Subsystem","OSIRIS-REx Propulsion Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/bundle_orex_radioscience.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/bundle_orex_radioscience.xml","scraped_at":"2026-02-25T20:02:10.740939Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.apc.lightcurves::1.0","title":"Asteroid Photometric Catalog V1.0","description":"The Asteroid Photometric Catalog (3rd update), Lagerkvist et al. 1993 [LAGERKVISTETAL1993], is a compilation of all asteroid lightcurve photometry published up to and including the year 1992. The dataset includes the lightcurves in digital form and a table of references to all original publications.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(1) Ceres","Multiple Asteroids","(4) Vesta","(10) Hygiea","(100) Hekate","(101) Helena","(1012) Sarema","(1013) Tombecka","(1018) Arnolda","(102) Miriam","(1029) La Plata","(103) Hera","(1036) Ganymed","(104) Klymene","(105) Artemis","(1057) Wanda","(1058) Grubba","(106) Dione","(1062) Ljuba","(1063) Aquilegia","(1067) Lunaria","(1068) Nofretete","(107) Camilla","(1076) Viola","(1079) Mimosa","(1084) Tamariwa","(109) Felicitas","(1090) Sumida","(1092) Lilium","(1095) Tulipa","(11) Parthenope","(110) Lydia","(111) Ate","(1111) Reinmuthia","(1112) Polonia","(1129) Neujmina","(113) Amalthea","(1137) Raissa","(1139) Atami","(114) Kassandra","(1143) Odysseus","(1149) Volga","(115) Thyra","(1159) Granada","(116) Sirona","(1167) Dubiago","(1168) Brandia","(1173) Anchises","(1178) Irmela","(118) Peitho","(1180) Rita","(1186) Turnera","(11868) Kleinrichert","(119) Althaea","(1192) Prisma","(1196) Sheba","(1197) Rhodesia","(12) Victoria","(120) Lachesis","(1207) Ostenia","(121) Hermione","(1210) Morosovia","(1212) Francette","(1219) Britta","(1220) Crocus","(1223) Neckar","(1224) Fantasia","(123) Brunhild","(1234) Elyna","(1236) Thais","(1237) Genevieve","(124) Alkeste","(1240) Centenaria","(1245) Calvinia","(125) Liberatrix","(1250) Galanthus","(1256) Normannia","(1257) Mora","(1259) Ogyalla","(126) Velleda","(1262) Sniadeckia","(1267) Geertruida","(1279) Uganda","(128) Nemesis","(1284) Latvia","(1288) Santa","(1289) Kutaissi","(129) Antigone","(1291) Phryne","(13) Egeria","(130) Elektra","(13014) Hasslacher","(1305) Pongola","(1317) Silvretta","(132) Aethra","(1321) Majuba","(1322) Coppernicus","(133) Cyrene","(1331) Solvejg","(1337) Gerarda","(134) Sophrosyne","(1346) Gotha","(135) Hertha","(1350) Rosselia","(136) Austria","(1362) Griqua","(1366) Piccolo","(1368) Numidia","(137) Meliboea","(1379) Lomonosowa","(138) Tolosa","(1389) Onnie","(139) Juewa","(1392) Pierre","(1397) Umtata","(14) Irene","(140) Siwa","(1404) Ajax","(141) Lumen","(1416) Renauxa","(143) Adria","(1434) Margot","(1437) Diomedes","(144) Vibilia","(145) Adeona","(146) Lucina","(1468) Zomba","(147) Protogeneia","(1478) Vihuri","(148) Gallia","(1481) Tubingia","(1482) Sebastiana","(14827) Hypnos","(149) Medusa","(15) Eunomia","(150) Nuwa","(1504) Lappeenranta","(151) Abundantia","(1513) Matra","(152) Atala","(1522) Kokkola","(1523) Pieksmaki","(153) Hilda","(1533) Saimaa","(154) Bertha","(1556) Wingolfia","(156) Xanthippe","(1562) Gondolatsch","(1566) Icarus","(1576) Fabiola","(158) Koronis","(1580) Betulia","(1583) Antilochus","(1584) Fuji","(1585) Union","(159) Aemilia","(1590) Tsiolkovskaja","(1593) Fagnes","(16) Psyche","(1604) Tombaugh","(1609) Brenda","(161) Athor","(1615) Bardwell","(161989) Cacus","(162) Laurentia","(1620) Geographos","(1627) Ivar","(1628) Strobel","(163) Erigone","(164) Eva","(1641) Tana","(1644) Rafita","(1646) Rosseland","(165) Loreley","(1665) Gaby","(167) Urda","(1670) Minnaert","(1672) Gezelle","(1674) Groeneveld","(1685) Toro","(1687) Glarona","(1689) Floris-Jan","(169) Zelia","(1693) Hertzsprung","(17) Thetis","(1709) Ukraina","(171) Ophelia","(1715) Salli","(172) Baucis","(1722) Goffin","(1723) Klemola","(1727) Mette","(173) Ino","(174) Phaedra","(1742) Schaifers","(1743) Schmidt","(1753) Mieke","(1757) Porvoo","(1759) Kienle","(1772) Gagarin","(178) Belisana","(1780) Kippes","(1789) Dobrovolsky","(179) Klytaemnestra","(1793) Zoya","(18) Melpomene","(181) Eucharis","(182) Elsa","(183) Istria","(184) Dejopeja","(185) Eunike","(186) Celuta","(1862) Apollo","(1863) Antinous","(1864) Daedalus","(1865) Cerberus","(189) Phthia","(1892) Lucienne","(19) Fortuna","(190) Ismene","(1902) Shaposhnikov","(1915) Quetzalcoatl","(1917) Cuyo","(192) Nausikaa","(1928) Summa","(194) Prokne","(1941) Wild","(1943) Anteros","(1946) Walraven","(1951) Lick","(1957) Angara","(196) Philomela","(1960) Guisan","(197) Arete","(1972) Yi Xing","(2) Pallas","(20) Massalia","(200) Dynamene","(201) Penelope","(2017) Wesson","(203) Pompeja","(204) Kallisto","(206) Hersilia","95P/1977 UB (Chiron) [(2060) Chiron]","(2061) Anza","(2064) Thomsen","(2072) Kosmodemyanskaya","(208) Lacrimosa","(2088) Sahlia","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(2109) Dhotel","(211) Isolda","(2113) Ehrdni","(213) Lilaea","(214) Aschera","(2156) Kate","(2159) Kukkamaki","(216) Kleopatra","(2167) Erin","(218) Bianca","(219) Thusnelda","(22) Kalliope","(2201) Oljato","(221) Eos","(222) Lucia","(224) Oceana","(225) Henrietta","(226) Weringia","(23) Thalia","(230) Athamantis","(2317) Galya","(233) Asterope","(2339) Anacreon","(234) Barbara","(235) Carolina","(236) Honoria","(2363) Cebriones","(238) Hypatia","(24) Themis","(241) Germania","(243) Ida","(245) Vera","(246) Asporina","(247) Eukrate","(248) Lameia","(249) Ilse","(25) Phocaea","(250) Bettina","(254) Augusta","(255) Oppavia","(258) Tyche","(259) Aletheia","(26) Proserpina","(2608) Seneca","(261) Prymno","(263) Dresda","(264) Libussa","(267) Tirza","(2674) Pandarus","(268) Adorea","(2687) Tortali","(269) Justitia","(27) Euterpe","(270) Anahita","(273) Atropos","(2744) Birgitta","(277) Elvira","(279) Thule","(2797) Teucer","(28) Bellona","(280) Philia","(281) Lucretia","(282) Clorinde","(283) Emma","(2830) Greenwich","(284) Amalia","(287) Nephthys","(288) Glauke","(289) Nenetta","(2895) Memnon","(29) Amphitrite","(291) Alice","(292) Ludovica","(2952) Lilliputia","(3) Juno","(30) Urania","(302) Clarissa","(304) Olga","(306) Unitas","(3063) Makhaon","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(3103) Eger","(311) Claudia","Chaldaea","(3169) Ostro","(317) Roxane","(3199) Nefertiti","(32) Pomona","(321) Florentina","(322) Phaeo","(323) Brucia","(324) Bamberga","(325) Heidelberga","(3254) Bus","(326) Tamara","(3268) De Sanctis","(329) Svea","(33) Polyhymnia","(3317) Paris","(332) Siri","(334) Chicago","(335) Roberta","(336) Lacadiera","(3361) Orpheus","(337) Devosa","(338) Budrosa","(34) Circe","(340) Eduarda","(343) Ostara","(344) Desiderata","(345) Tercidina","(346) Hermentaria","(347) Pariana","(349) Dembowska","(35) Leukothea","(352) Gisela","(3536) Schleicher","(354) Eleonora","(3540) Protesilaos","(3551) Verenia","(3552) Don Quixote","(356) Liguria","(357) Ninina","(359) Georgia","(36) Atalante","(360) Carlova","(361) Bononia","(362) Havnia","(363) Padua","(364) Isara","(3651) Friedman","(3671) Dionysus","(3686) Antoku","(369) Aeria","(37) Fides","(372) Palma","(3737) Beckman","(375) Ursula","(376) Geometria","(377) Campania","(379) Huenna","(38) Leda","(381) Myrrha","(382) Dodona","(383) Janina","(385) Ilmatar","(386) Siegena","(387) Aquitania","(388) Charybdis","(389) Industria","(39) Laetitia","(3908) Nyx","(393) Lampetia","(394) Arduina","(396) Aeolia","(397) Vienna","(40) Harmonia","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(404) Arsinoe","(405) Thia","(407) Arachne","(409) Aspasia","(41) Daphne","(410) Chloris","(412) Elisabetha","(416) Vaticana","(417) Suevia","(418) Alemannia","(419) Aurelia","(42) Isis","(420) Bertholda","(422) Berolina","(423) Diotima","(429) Lotis","(43) Ariadne","(431) Nephele","(432) Pythia","(433) Eros","(434) Hungaria","(435) Ella","(437) Rhodia","(439) Ohio","(44) Nysa","(441) Bathilde","(4432) McGraw-Hill","(444) Gyptis","(449) Hamburga","(45) Eugenia","(451) Patientia","(454) Mathesis","(458) Hercynia","(459) Signe","(46) Hestia","(462) Eriphyla","(464) Megaira","(4659) Roddenberry","(468) Lina","(47) Aglaja","(470) Kilia","(471) Papagena","(476) Hedwig","(478) Tergeste","(48) Doris","(482) Petrina","(483) Seppina","(484) Pittsburghia","(485) Genua","(487) Venetia","(488) Kreusa","(489) Comacina","(49) Pales","(4924) Hiltner","(495) Eulalia","(497) Iva","(498) Tokio","(5) Astraea","(50) Virginia","(501) Urhixidur","(502) Sigune","(504) Cora","(505) Cava","(5080) Oja","(51) Nemausa","(510) Mabella","(511) Davida","(512) Taurinensis","(513) Centesima","(514) Armida","(5145) Pholus","(516) Amherstia","(517) Edith","(519) Sylvania","(52) Europa","(520) Franziska","(521) Brixia","(528) Rezia","(529) Preziosa","(53) Kalypso","(532) Herculina","(534) Nassovia","(537) Pauly","(5370) Taranis","(539) Pamina","(54) Alexandra","(545) Messalina","(55) Pandora","(550) Senta","(554) Peraga","(556) Phyllis","(558) Carmen","(56) Melete","(560) Delila","(562) Salome","(563) Suleika","(566) Stereoskopia","(568) Cheruskia","(57) Mnemosyne","(5761) Andreivanov","(579) Sidonia","(5797) Bivoj","(58) Concordia","(584) Semiramis","(588) Achilles","(59) Elpis","(590) Tomyris","(591) Irmgard","(593) Titania","(594) Mireille","(599) Luisa","(6) Hebe","(60) Echo","(600) Musa","(602) Marianna","(606) Brangane","(61) Danae","(618) Elfriede","(619) Triberga","(62) Erato","(621) Werdandi","(622) Esther","(624) Hektor","(628) Christine","(63) Ausonia","(631) Philippina","(632) Pyrrha","(639) Latona","(64) Angelina","(641) Agnes","(644) Cosima","(645) Agrippina","(65) Cybele","(653) Berenike","(654) Zelinda","(657) Gunlod","(658) Asteria","(659) Nestor","(66) Maja","(660) Crescentia","(67) Asia","(674) Rachele","(675) Ludmilla","(677) Aaltje","(678) Fredegundis","(679) Pax","(68) Leto","(683) Lanzia","(684) Hildburg","(688) Melanie","(69) Hesperia","(690) Wratislavia","(692) Hippodamia","(694) Ekard","(695) Bella","(699) Hela","(7) Iris","(70) Panopaea","(700) Auravictrix","(702) Alauda","(704) Interamnia","(7041) Nantucket","(705) Erminia","(709) Fringilla","(71) Niobe","(712) Boliviana","(714) Ulula","(716) Berkeley","(72) Feronia","(720) Bohlinia","(721) Tabora","(726) Joella","(73) Klytia","(733) Mocia","(736) Harvard","(737) Arequipa","(739) Mandeville","(74) Galatea","(746) Marlu","(747) Winchester","(75) Eurydike","(751) Faina","(753) Tiflis","(7550) Woolum","(76) Freia","(766) Moguntia","(77) Frigga","(771) Libera","(775) Lumiere","(776) Berbericia","(778) Theobalda","(779) Nina","(78) Diana","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(792) Metcalfia","(796) Sarita","(798) Ruth","(8) Flora","(80) Sappho","(800) Kressmannia","(8013) Gordonmoore","(804) Hispania","(807) Ceraskia","(81) Terpsichore","(811) Nauheima","(814) Tauris","(82) Alkmene","(83) Beatrix","(832) Karin","(838) Seraphina","(8395) Rembaut","(84) Klio","(841) Arabella","(846) Lipperta","(849) Ara","(85) Io","(850) Altona","(852) Wladilena","(853) Nansenia","(856) Backlunda","(8589) Stellaris","(86) Semele","(863) Benkoela","(87) Sylvia","(870) Manto","(873) Mechthild","(876) Scott","(877) Walkure","(88) Thisbe","(887) Alinda","(89) Julia","(9) Metis","(900) Rosalinde","(905) Universitas","(908) Buda","(91) Aegina","(911) Agamemnon","(914) Palisana","(916) America","(92) Undina","(925) Alphonsina","(93) Minerva","(939) Isberga","(94) Aurora","(940) Kordula","(944) Hidalgo","(945) Barcelona","(95) Arethusa","(951) Gaspra","(952) Caia","(96) Aegle","(97) Klotho","(974) Lioba","(98) Ianthe","(980) Anacostia","(984) Gretia","(987) Wallia","(99) Dike","(994) Otthild","(995) Sternberga","(10475) Maxpoilane","(11457) Hitomikobayashi","(129442) 1981 EC15","(12989) Chriseanderson","(14761) 6608 P-L","(16382) 1981 ER27","(17383) 1981 EE12","(20749) 2000 AD199","(23429) 1981 EO35","(29196) Dius","(30762) 1981 ES42","(32755) 1981 EP15","(37546) 1981 ET20","(3757) Anagolay","(5646) 1990 TR","(58119) 1981 EJ9","(6178) 1986 DA","(8252) Elkins-Tanton","(8253) Brunetto","(8794) Joepatterson","(8796) Sonnett","(9286) Patricktaylor","(9527) Sherrypervan","(9723) Binyang","(99980) 1981 ER18"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":[],"start_date":"1913-08-20","stop_date":"1992-03-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/bundle_compil.ast.apc.lightcurves.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/bundle_compil.ast.apc.lightcurves.xml","scraped_at":"2026-02-25T20:02:10.740981Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-mission::1.0","title":"Dawn Mission Bundle","description":"This bundle contains the Dawn Mission Documentation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["Framing Camera 1","FRAMING CAMERA 2","GAMMA-RAY AND NEUTRON DETECTOR","GRAVITY SCIENCE INSTRUMENT","VISIBLE AND INFRARED SPECTROMETER"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":[],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/bundle-dawn.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/bundle-dawn.xml","scraped_at":"2026-02-25T20:02:10.740990Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres::1.0","title":"Dawn RSS Raw Data Bundle For Dwarf Planet 1 Ceres","description":"This bundle contains raw radio data that can be used to determine the position and velocity of the DAWN spacecraft during its encounter with 1 Ceres. The bundle also contains the calibration data for the effects of Earth's ionosphere and troposphere, meteorological conditions at stations of the NASA Deep Space Network, thruster activity, spacecraft mass history, and changes in spacecraft antenna selection. The data were used to determine the gravity field and shape of 1 Ceres. Documents describing these data are also included in the bundle. The bundle is a migration of data from the original PDS3 archive.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Dawn","DSN Media Calibration"],"targets":["1 Ceres","Earth","Dawn"],"instruments":["RSS","Global Positioning System","Global Positioning System","DSN Media Instrumentation","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 35","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":[],"start_date":"2007-09-27","stop_date":"2018-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/bundle_dawn-rss_raw_ceres.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/bundle_dawn-rss_raw_ceres.xml","scraped_at":"2026-02-25T20:02:10.740997Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectra::1.0","title":"Galileo NIMS Radiance Point Spectra of Gaspra V1.0","description":"This data volume contains radiometrically corrected point spectra of asteroid 951 as acquired by the Galileo spacecraft Near Infrared Mapping Spectrometer (NIMS) on October 29, 1991. They record the spectra collected as the Galileo spacecraft approached the target asteroid. These data are products of the calibration of the raw data number files gap015tn.qub, gap035tn.qub, gap036tn.qub, gap037tn.qub, and gap038tn.qub (DATA SET ID ='GO-A-NIMS-3 TUBE-V1.0') with calibration factors acquired during the first Earth/Moon encounter of the Galileo mission. These raw data .qub files are archived in the Imaging Node of the NASA Planetary Data System (PDS). The calibrated spectra consist of radiance measurements for wavelengths between 0.7 - 5.2 micrometers.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/bundle_galileo.ast-gaspra.nims.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/bundle_galileo.ast-gaspra.nims.spectra.xml","scraped_at":"2026-02-25T20:02:10.741002Z","keywords":["NIMS spectra","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube::1.0","title":"Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","description":"This bundle contains a radiometrically corrected spectral image cube of the highest spatial resolution observation of asteroid 951 Gaspra as acquired by the Galileo spacescraft Near Infrared Mapping Spectrometer (NIMS) on October 29, 1991. It is the product of the calibration of the raw data number file gap016tn.qub with calibration factors contained in the file e1wanta2.qub and projected in a point perspective geometry. Both files are contained within the NASA pds archive of Galileo NIMS data. This spectral image cube, gaspra_nims_hires_radiance.fit, combines data acquired during the asteroid 951 Gaspra encounter and the Earth encounters to produce a radiometrically calibrated product.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/bundle_galileo.ast-gaspra.nims.spectral-cube.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/bundle_galileo.ast-gaspra.nims.spectral-cube.xml","scraped_at":"2026-02-25T20:02:10.741007Z","keywords":["NIMS spectral cube","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images::1.0","title":"Galileo SSI Gaspra Radiometrically Calibrated Images V1.0","description":"This dataset includes the Galileo Orbiter Solid State Imaging data on the asteroid 951 Gaspra. The raw data have already been archived in PDS with the data set name 'Galileo Imaging (SSI) Asteroid, Earth and Moon Experiment Data Records' and can be found by searching on the data set identification 'GO-A/E-SSI-2-REDR-V1.0'. Only those images in which Gaspra actually appears have been included here. Images in both FITS and ISIS Cube format are provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/bundle_galileo.ast-gaspra.ssi.cal-images.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/bundle_galileo.ast-gaspra.ssi.cal-images.xml","scraped_at":"2026-02-25T20:02:10.741012Z","keywords":["SSI calibrated Images","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectra::1.0","title":"Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","description":"This data volume contains radiometrically corrected point spectra of asteroid 243 Ida and a spectrum of the asteroid satellite Dactyl (Ida I) as acquired by the Galileo spacecraft Near Infrared Mapping Spectrometer (NIMS) on August 28, 1993. They record the spectra collected as the Galileo spacecraft approached the 243 Ida system. These data are products of the calibration of the raw data number files idu002tn.qub, idu005tn.qub, idu006tn.qub, idu007tn.qub, idu019tn.qub, idu020tn.qub, idu022tn.qub, idu028tn.qub, idu032tn.qub, idu033tn.qub, and idu035tn.qub (DATA SET ID ='GO-A-NIMS-3-TUBE-V1.0') with calibration factors acquired during the Jovian tour of the Galileo mission. These raw data .qub files are archived in the Imaging Node of the NASA Planetary Data System (PDS). The calibrated spectra consist of radiance and incidence/flux measurements for wavelengths between 0.7 - 5.2 micrometers.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["243 Ida","(243) Ida I (Dactyl)"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/bundle_galileo.ast-ida.nims.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/bundle_galileo.ast-ida.nims.spectra.xml","scraped_at":"2026-02-25T20:02:10.741018Z","keywords":["NIMS spectra","241 Ida","Dactyl (243 Ida I)"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes::1.0","title":"Hi-Res Galileo NIMS Ida Spectral Image Cube V1.0","description":"This bundle contains 17 channel spectral image cubes of asteroid 243 Ida ranging from 0.7 to 5.2 micrometers in wavelength in cgs units of radiance. These data were obtained by the Galileo spacecraft Near Infrared Mapping Spectrometer on August 28, 1993. They were radiometrically calibrated using calibration measurements obtained by the Near Infrared Mapping Spectrometer during its observations of Europa on June 28, 1996.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/bundle_galileo.ast-ida.nims.spectral-cubes.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/bundle_galileo.ast-ida.nims.spectral-cubes.xml","scraped_at":"2026-02-25T20:02:10.741024Z","keywords":["NIMS spectral cube","243 Ida"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.ssi.cal-images::1.0","title":"Galileo SSI Ida Radiometrically Calibrated Images V1.0","description":"This data set includes Galileo Orbiter SSI radiometrically calibrated images of the asteroid 243 Ida, created using ISIS software and assuming nadir pointing. This is an original delivery of radiometrically calibrated files, not an update to existing files. All images archived include the asteroid within the image frame. Calibration was performed in 2013-2014.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":[],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/bundle_galileo.ast-ida.ssi.cal-images.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/bundle_galileo.ast-ida.ssi.cal-images.xml","scraped_at":"2026-02-25T20:02:10.741028Z","keywords":["SSI calibrated Images","243 Ida"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta::1.0","title":"Dawn RSS Raw Data Bundle For Asteroid 4 Vesta","description":"This bundle contains raw radio data that can be used to determine the position and velocity of the DAWN spacecraft during its encounter with 4 Vesta. The bundle also contains the calibration data for the effects of Earth's ionosphere and troposphere, meteorological conditions at stations of the NASA Deep Space Network, thruster activity, spacecraft mass history, and changes in spacecraft antenna selection. The data were used to determine the gravity field and shape of 4 Vesta. Documents describing these data are also included in the bundle. The bundle is a migration of data from the original PDS3 archive.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Dawn","DSN Media Calibration"],"targets":["4 Vesta","Earth","Dawn"],"instruments":["RSS","Global Positioning System","Global Positioning System","DSN Media Instrumentation","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":[],"start_date":"2007-09-27","stop_date":"2012-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/bundle_dawn-rss_raw_vesta.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/bundle_dawn-rss_raw_vesta.xml","scraped_at":"2026-02-25T20:02:10.741034Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.des.taxonomy::1.0","title":"DES_Asteroid_taxonomy V1.0","description":"We provide taxonomical information from Dark Energy Survey (DES) data for 16517 asteroids for which gri slope and i-z colors are available, taxonomical complex information for 58116 asteroids with DES colors g-r, g-i, and a list of 409 new possible V-type objects.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["Multiple Asteroids","Asteroids"],"instruments":["Victor Blanco 4.0m Telescope","Dark Energy Camera (DECam)"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":[],"start_date":"2013-08-31","stop_date":"2019-01-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/bundle_gbo.ast.des.taxonomy.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/bundle_gbo.ast.des.taxonomy.xml","scraped_at":"2026-02-25T20:02:10.741038Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021::1.0","title":"MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0","description":"This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["2020 RC","(415029) 2011 UL21","(65996) 1998 MX5","(3288) Seleucus","2018 MM8","(11405) 1999 CV3","(143404) 2003 BD44","(6569) Ondaatje","1996 AE2","2002 LY1","(5011) Ptah","2015 FS332","(5626) Melissabrucker","(7888) 1993 UC","(52762) 1998 MT24","(7358) Oze","(613512) 2006 SK134","2019 YH2","2016 NL15","(1627) Ivar","2011 WN15","(612098) 1999 RM45","(19356) 1997 GH3","(137126) 1999 CF9","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(137799) 1999 YB","(154302) 2002 UQ3","2008 QS11","(318411) 2005 AH14","(163348) 2002 NN4","(496816) 1989 UP","(380128) 1997 WB21","2007 XY9","(454177) 2013 GJ35","(142040) 2002 QE15","(438902) 2009 WF104","(11066) Sigurd","2016 LG","(455148) 1994 UG","(52768) 1998 OR2","(612484) 2002 TS67","(301964) 2000 EJ37","(53426) 1999 SL5","(217796) 2000 TO64","(186822) 2004 FE31","(413577) 2005 UL5","(523586) 1999 LK1","(380981) 2006 SU131","(4953) 1990 MU","(217807) 2000 XK44","(36017) 1999 ND43","(3691) Bede","(194386) 2001 VG5","(480004) 2014 KD91","(495102) 2011 UU106","2003 AF23","2018 WX1","(4179) Toutatis","2014 QK434","2015 OX78","(101955) Bennu","(162142) 1998 VR","(503871) 2000 SL","(7482) 1994 PC1","2014 AD17","(496817) 1989 VB","(411165) 2010 DF1","(457260) 2008 RY24","2015 BF92","2019 CH","2015 WH9","(153814) 2001 WN5","(363067) 2000 CO101","(144332) 2004 DV24","(2335) James","(163697) 2003 EF54","(200840) 2001 XN254","(141525) 2002 FV5","(528650) 2008 WX32","(155110) 2005 TB","(163081) 2002 AG29","(275611) 1999 XX262","2018 TT1","(162186) 1999 OP3","(3554) Amun","2002 AV","(2340) Hathor","(437844) 1999 MN","(85989) 1999 JD6","(488645) 2003 OV","(511684) 2015 BN509","(24445) 2000 PM8","(326290) Akhenaten","2017 BQ93","(67367) 2000 LY27","2011 UA","(21088) Chelyabinsk","(100926) 1998 MQ","(1011) Laodamia","2020 WU5","(6585) O'Keefe","(163373) 2002 PZ39","2018 QN1","(88188) 2000 XH44","(170502) 2003 WM7","(171819) 2001 FZ6","(137924) 2000 BD19","(363831) 2005 PY16","(143651) 2003 QO104","(1916) Boreas","(1508) Kemi","(65717) 1993 BX3","(357024) 1999 YR14","(3833) Calingasta","(2212) Hephaistos","(4688) 1980 WF","(236716) 2007 FV42","(612143) 2000 BO28","2015 NU13","2014 UR116","(161998) 1988 PA","(440212) 2004 OB","(1468) Zomba","2018 RC","(310442) 2000 CH59","(99907) 1989 VA","2015 OL35","(194126) 2001 SG276","2013 PY6","(68216) 2001 CV26","(5653) Camarillo","(138937) 2001 BK16","(398188) Agni","(453707) 2010 XY72","(13553) Masaakikoyama","(2063) Bacchus","(214869) 2007 PA8","(2449) Kenos","(10145) 1994 CK1","(5604) 1992 FE","(24475) 2000 VN2","(5587) 1990 SB","2016 ED85","2020 RO6","(457768) 2009 KN4","(413002) 1999 VG22","(96189) Pygmalion","2020 ME1","2015 BK509","(349063) 2006 XA","2020 RF","(3199) Nefertiti","(5261) Eureka","(468583) 2007 LS","2018 KE3","(244670) 2003 KN18","2016 CL136","2019 DN","(612813) 2004 RF84","(370307) 2002 RH52","(523631) 2009 SX1","(19127) Olegefremov","(162058) 1997 AE12","(88254) 2001 FM129","2020 TB12","(3402) Wisdom","(523817) 2009 TK","(144898) 2004 VD17","(159504) 2000 WO67","(4769) Castalia","(18736) 1998 NU","(154007) 2002 BY","(450648) 2006 UC63","(484795) 2009 DE47","2020 PM7","(11398) 1998 YP11","2019 BK","(189552) 2000 RL77","2016 LX48","(453778) 2011 JK","(699) Hela","2006 NL","(380359) 2002 TN30","(496818) 1993 RA","(137199) 1999 KX4","2011 WA","(250706) 2005 RR6","(265962) 2006 CG","(518735) 2009 JL1","(85990) 1999 JV6","2020 XU6","(226514) 2003 UX34","2017 MC4","(154347) 2002 XK4","(496005) 2007 XJ16","2017 CS","(6053) 1993 BW3","(3361) Orpheus","2017 YE5","(1951) Lick","(416186) 2002 TD60","(6386) Keithnoll","(99942) Apophis","(35107) 1991 VH","(414586) 2009 UV18","(137084) 1998 XS16","(18882) 1999 YN4","(329437) 2002 OA22","(433) Eros","(17182) 1999 VU","(1139) Atami","(36284) 2000 DM8","2014 YM9","(3988) Huma","2011 YS62","(242708) 2005 UK1","(380160) 2000 JO78","(505657) 2014 SR339","2019 FU","(465749) 2009 WO6","(141354) 2002 AJ29","(169675) 2002 JM97","2013 UX14","(159402) 1999 AP10","2015 RF36","(441987) 2010 NY65","(54690) 2001 EB","(480883) 2001 YE4","(4995) Griffin","(25916) 2001 CP44","(66063) 1998 RO1","(303174) 2004 FH11","(1981) Midas","(450649) 2006 UY64","(527715) 2007 YQ56","(137120) 1999 BJ8","(4183) Cuno","(1685) Toro","(471240) 2011 BT15","(153201) 2000 WO107","(154807) 2004 PP97","(138258) 2000 GD2","(162911) 2001 LL5","(90416) 2003 YK118","(25143) Itokawa","(2368) Beltrovata","(337866) 2001 WL15","(376864) 2001 TP103","(474179) 1999 VS6","(162082) 1998 HL1","(297300) 1998 SC15","(1865) Cerberus","2016 NV38","(5407) 1992 AX","2016 GU","(54789) 2001 MZ7","(4451) Grieve","(86450) 2000 CK33","(312473) 2008 SX245","(242211) 2003 QB90","(1198) Atlantis","2007 EC","(4341) Poseidon","(66146) 1998 TU3","(162004) 1991 VE","(1580) Betulia","2018 NB","(1204) Renzia","2016 AZ8","(458198) 2010 RT11","(21374) 1997 WS22","(388945) 2008 TZ3","(2102) Tantalus","(68950) 2002 QF15","(136874) 1998 FH74","(243025) 2006 UM216","(11500) Tomaiyowit","(385343) 2002 LV","2021 CG","(2078) Nanking","(5693) 1993 EA","2018 PP10","(354030) 2001 RB18","(24761) Ahau","(8014) 1990 MF","(7336) Saunders","2014 LW21","(132) Aethra","2016 XH1","(4197) Morpheus","2017 RL","(361123) 2006 GW2","(444584) 2006 UK","(382503) 2001 RE8","(66272) 1999 JW6","(53435) 1999 VM40","(162998) 2001 SK162","(3920) Aubignan","(7304) Namiki","2015 BC","2016 ES155","(283460) 2001 PD1","(152563) 1992 BF","(1566) Icarus","(17511) 1992 QN","(1862) Apollo","(3200) Phaethon","(141018) 2001 WC47","(25330) 1999 KV4","(265482) 2005 EE","(3671) Dionysus","(241662) 2000 KO44","(452389) 2002 NW16","(206378) 2003 RB","(138911) 2001 AE2","(138404) 2000 HA24","(389694) 2011 QD48","(85628) 1998 KV2","(887) Alinda","(139622) 2001 QQ142","(15817) Lucianotesi","(1310) Villigera","(452561) 2005 AB","(68359) 2001 OZ13","(531060) 2012 DJ61","(416151) 2002 RQ25","(399774) 2005 NB7","(53319) 1999 JM8","2016 UE101","(8567) 1996 HW1","(381677) 2009 BJ81","(612777) 2004 LU3","(416584) 2004 JB12","2017 DA36","(203217) 2001 FX9","(22771) 1999 CU3","(153842) 2001 XT30","(302830) 2003 FB","2017 MB1","2020 RJ3","(31345) 1998 PG","(7088) Ishtar","2020 DX","(86819) 2000 GK137","(99799) 2002 LJ3","(163899) 2003 SD220","(523811) 2008 TQ2","(6239) Minos","(20790) 2000 SE45","(495615) 2015 PQ291","(6411) Tamaga","(138524) 2000 OJ8","(719) Albert","(175189) 2005 EC224","(189040) 2000 MU1","2018 LQ2","(141053) 2001 XT1","(512) Taurinensis","(5131) 1990 BG","(489486) 2007 GS3","(294739) 2008 CM","(86039) 1999 NC43","2019 AN5","2020 TY1","(140158) 2001 SX169","2020 SY4","2015 TA25","(3103) Eger","(7889) 1994 LX","2018 BP","2016 PR8","(267494) 2002 JB9","(4486) Mithra","(190208) 2006 AQ","(5392) Parker","(451157) 2009 SQ104","(137108) 1999 AN10","(2059) Baboquivari","(482650) 2013 BK18","(365424) 2010 KX7","2015 XB379","2017 RR15","(163249) 2002 GT","(5817) Robertfrazer","(96590) 1998 XB","(338292) 2002 UA31","(98943) 2001 CC21","(163902) 2003 SW222","(333888) 1998 ST4","(5189) 1990 UQ","(63164) 2000 YU14","(141498) 2002 EZ16","2015 JJ2","(29075) 1950 DA","(65679) 1989 UQ","(5646) 1990 TR","(326777) 2003 SV222","(39572) 1993 DQ1","2015 DB","(35396) 1997 XF11","(152931) 2000 EA107","2005 GR33","(10115) 1992 SK","2015 JY1","(4954) Eric","(163696) 2003 EB50","(3102) Krok","(86212) 1999 TG21","(142464) 2002 TC9","(5879) Almeria","2018 JA","(66391) Moshup","(7341) 1991 VK","(450160) 2000 RM12","(414960) 2011 CS4","2008 SR1","(326291) 1998 HM3","(363599) 2004 FG11","(348400) 2005 JF21","(3908) Nyx","(88710) 2001 SL9","(470510) 2008 CJ116","(3552) Don Quixote","2020 PD1","2013 CW32","(6611) 1993 VW","(163000) 2001 SW169","(410778) 2009 FG19","(250577) 2005 AC","(175706) 1996 FG3","2018 QV1","2016 LV","(313276) 2002 AX1","(164202) 2004 EW","(5230) Asahina","(237805) 2002 CF26","(52760) 1998 ML14","(173664) 2001 JU2","(162173) Ryugu","2020 WL3","(102528) 1999 US3","(153591) 2001 SN263","(5660) 1974 MA","(443103) 2013 WT67","(162510) 2000 QW69","(483422) 2000 CE59","(162781) 2000 XL44","Multiple Asteroids","(422686) 2000 AC6","(512245) 2016 AU8","(66251) 1999 GJ2","(469737) 2005 NW44","2020 QW","(1640) Nemo","2015 SV2","2019 HC","(308635) 2005 YU55","(141670) 2002 JS100","(438955) 2010 LN14","(4558) Janesick","(194268) 2001 UY4","2017 AE5","(612199) 2000 WL63","(154244) 2002 KL6","(355256) 2007 KN4","(34613) 2000 UR13","(5143) Heracles","(612348) 2002 GZ8","(2099) Opik","(467963) 2012 JT17","(22753) 1998 WT","(87684) 2000 SY2","2016 YM","(405058) 2001 TX16","(154330) 2002 VX94","2017 BM123","2018 QU1","(437316) 2013 OS3","2014 UF206","(85709) 1998 SG36","(2062) Aten","2020 WM3","(1374) Isora","(154993) 2005 EA94","(90147) 2002 YK14","2007 RU17","(455322) 2002 NX18","(1036) Ganymed","(410777) 2009 FD","(448003) 2008 DE","2019 CD5","(68278) 2001 FC7","(1131) Porzia","(413038) 2001 MF1","(5786) Talos","(154276) 2002 SY50","(454100) 2013 BO73","(6455) 1992 HE","2020 PS","(9400) 1994 TW1","(13353) 1998 TU12","(297418) 2000 SP43","(143992) 2004 AF","(333889) 1998 SV4","2019 AP3","2005 WS3","(141593) 2002 HK12","(37336) 2001 RM","(475665) 2006 VY13","(85804) 1998 WQ5","(203015) 1999 YF3","(523667) 2012 TM139","(112221) 2002 KH4","2016 UU80","(250620) 2005 GE59","(1864) Daedalus","2015 DP155","2016 YK","(416591) 2004 LC2","(401857) 2000 PG3","(3674) Erbisbuhl","2012 SG32","(137170) 1999 HF1","(162687) 2000 UH1","(1565) Lemaitre","2020 SN","2004 QD3","(85818) 1998 XM4","(136923) 1998 JH2","(190166) 2005 UP156","2009 SV17","2015 AZ43","(326683) 2002 WP","(33342) 1998 WT24","(26760) 2001 KP41","(526238) 2005 YY36","(2074) Shoemaker","(329340) 2001 LM5","(3753) Cruithne","(438429) 2006 WN1","(385186) 1994 AW1","(471241) 2011 BX18","2011 WK15","(451397) 2011 EZ78","(5836) 1993 MF","(523788) 2015 FP118","2015 SY","(2064) Thomsen","(2061) Anza","2005 TF","(163364) 2002 OD20","2020 ST1","(108519) 2001 LF","(30825) 1990 TG1","(68347) 2001 KB67","2018 WD2","2018 XG5","(311554) 2006 BQ147","(253841) 2003 YG118","(481394) 2006 SF6","(3352) McAuliffe","(442243) 2011 MD11","2015 QT9","(155334) 2006 DZ169","2020 WK3","(32906) 1994 RH","(144411) 2004 EW9","2018 UQ1","(410088) 2007 EJ","(477885) 2011 JT9","(52340) 1992 SY","2014 RL12","2019 UC","(219071) 1997 US9","(485652) 2011 WO41","(498066) 2007 RM133","2015 SZ","(8037) 1993 HO1","(345705) 2006 VB14","(65690) 1991 DG","(153958) 2002 AM31","(136993) 1998 ST49","(154029) 2002 CY46","(14402) 1991 DB","2016 CO247","(302311) 2002 AA","2020 XH1","(106589) 2000 WN107","(285263) 1998 QE2","(481532) 2007 LE","2011 HP","(459872) 2014 EK24","2007 TQ24","(420302) 2011 XZ1","(525477) 2005 FC3","(89355) 2001 VS78","(220839) 2004 VA","(2329) Orthos","(422699) 2000 PD3","(68346) 2001 KZ66","2020 RB6","(1980) Tezcatlipoca","(145656) 4788 P-L","(96631) 1999 FP59","(506459) 2002 AL14","2003 YJ","(416071) 2002 NV","2010 GT7","2016 NA1","(3635) Kreutz","(8566) 1996 EN","(19764) 2000 NF5","(152978) 2000 GJ147","(388838) 2008 EZ5","(16834) 1997 WU22","(461501) 2003 FT3","(69230) Hermes","(10636) 1998 QK56","2020 SS4","(492143) 2013 OE","2011 CT4","2017 CR32","(89830) 2002 CE","(137062) 1998 WM","2019 GT3","(1620) Geographos","2018 EJ4","(1917) Cuyo","(1943) Anteros","(15745) Yuliya","(141052) 2001 XR1","(1866) Sisyphus","2017 VC","(3198) Wallonia","(500080) 2011 WV134","(7822) 1991 CS","(143624) 2003 HM16","2019 YP5","(137032) 1998 UO1","(16960) 1998 QS52","(4581) Asclepius","(3858) Dorchester","(3122) Florence","(6037) 1988 EG","(5863) Tara","(442037) 2010 PR66","(192563) 1998 WZ6","(446833) 2001 RB12","(465616) 2009 EC","(462959) 2011 DU","2019 SH6","2014 WG365","(174050) 2002 CC19","(138852) 2000 WN10","(4055) Magellan","(515767) 2015 JA2","(3255) Tholen","(411201) 2010 LJ14","2002 NY40","(17274) 2000 LC16","(433953) 1997 XR2","(159608) 2002 AC2","(5645) 1990 SP","(40329) 1999 ML","(12711) Tukmit","(2100) Ra-Shalom","(243147) 2007 TX18","(331471) 1984 QY1","(464798) 2004 JX20"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":[],"start_date":"2000-09-04","stop_date":"2021-02-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/bundle_gbo.ast.mithneos.spectra_2000-2021.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/bundle_gbo.ast.mithneos.spectra_2000-2021.xml","scraped_at":"2026-02-25T20:02:10.741075Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.sawyer.spectra::1.0","title":"Sawyer Asteroid Spectra V1.0","description":"This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["None"],"targets":["(107) Camilla","(34) Circe","(230) Athamantis","(419) Aurelia","(704) Interamnia","(410) Chloris","(130) Elektra","(91) Aegina","(203) Pompeja","(85) Io","(476) Hedwig","(5) Astraea","(72) Feronia","(65) Cybele","(87) Sylvia","(45) Eugenia","(27) Euterpe","(1268) Libya","(14) Irene","(173) Ino","(57) Mnemosyne","(532) Herculina","(51) Nemausa","Multiple Asteroids","(64) Angelina","(386) Siegena","(41) Daphne","(712) Boliviana","(111) Ate","(171) Ophelia","(1167) Dubiago","(702) Alauda","(52) Europa","Solar Analog Stars","(148) Gallia","(434) Hungaria","(19) Fortuna","(2) Pallas","(804) Hispania","(63) Ausonia","(329) Svea","(1172) Aneas","(128) Nemesis","(30) Urania","(70) Panopaea","(54) Alexandra","(10) Hygiea","(127) Johanna","(387) Aquitania","(190) Ismene","(212) Medea","(194) Prokne","(13) Egeria","(511) Davida","(48) Doris","(137) Meliboea","(241) Germania","(95) Arethusa","(98) Ianthe","(537) Pauly","(405) Thia","(9) Metis","(602) Marianna","(93) Minerva","(409) Aspasia","(617) Patroclus","(44) Nysa","(20) Massalia","(431) Nephele","(505) Cava"],"instruments":["2.7m Telescope","Large Cassegrain Spectrometer","2.1-m Struve Warner & Swasey reflector","Cassegrain Spectrometer","Literature search"],"instrument_hosts":["McDonald Observatory","McDonald Observatory"],"data_types":[],"start_date":"1983-09-15","stop_date":"1990-07-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/bundle_gbo.ast.sawyer.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/bundle_gbo.ast.sawyer.spectra.xml","scraped_at":"2026-02-25T20:02:10.741089Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hst.ast-ceres.images-albedo-shape::1.0","title":"HST images, albedo maps, and shape of (1) Ceres V1.0","description":"This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HST"],"targets":["(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":[],"start_date":"2003-12-28","stop_date":"2004-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/bundle_hst.ast-ceres.images-albedo-shape.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/bundle_hst.ast-ceres.images-albedo-shape.xml","scraped_at":"2026-02-25T20:02:10.741094Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hst.ast-ceres.uv-spectra::1.0","title":"HST UV Slitless Reflectance Spectra of (1) Ceres V1.0","description":"This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HST"],"targets":["(1) Ceres","(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":[],"start_date":"2007-11-25","stop_date":"2007-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/bundle_hst.ast-ceres.uv-spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/bundle_hst.ast-ceres.uv-spectra.xml","scraped_at":"2026-02-25T20:02:10.741098Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.amica::1.0","title":"The Hayabusa AMICA Bundle","description":"The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission, plus pre-flight flat field images.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA"],"targets":["(25143) Itokawa","* 31 Leo","* alf Crv","* alf Aur","* alf Leo","* alf Ori","* alf Sco","* alf Vir","* bet Tau","Calibration Target","Earth","Calibration Lamp","Flat Field","Mars","Earth I (Moon)","Saturn","Sky","* tau Sco"],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","SBIG ST-9E","Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"],"instrument_hosts":["HAYABUSA","Goodricke-Pigott Observatory"],"data_types":[],"start_date":"2003-03-18","stop_date":"2005-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/bundle_hay.amica.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/bundle_hay.amica.xml","scraped_at":"2026-02-25T20:02:10.741104Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.lidar::1.0","title":"The Hayabusa LIDAR Bundle","description":"The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optimizing the spacecraft trajectory.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["LIGHT DETECTION AND RANGING INSTRUMENT"],"instrument_hosts":["HAYABUSA"],"data_types":[],"start_date":"2005-09-11","stop_date":"2005-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/bundle_hay.lidar.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/bundle_hay.lidar.xml","scraped_at":"2026-02-25T20:02:10.741109Z","keywords":[],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.mission::1.0","title":"Hayabusa Mission Bundle","description":"This bundle contains all the mission wide information needed to use and understand the scientific data products produced by the Hayabusa mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","NEAR-INFRARED SPECTROMETER","LIGHT DETECTION AND RANGING INSTRUMENT"],"instrument_hosts":["HAYABUSA"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/bundle_hay.mission.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/bundle_hay.mission.xml","scraped_at":"2026-02-25T20:02:10.741113Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iras::1.0","title":"The IRAS Mission Data Bundle","description":"The InfraRed Astronomical Satellite (IRAS) was launched on January 26, 1983 from Vandenburg Air Force Base in California. It was a joint program of the United States, the Netherlands, and the United Kingdom. The primary mission of IRAS was to conduct a sensitive and unbiased survey of the sky in four wavelength bands centered at 12, 25, 60, and 100 microns. It also made pointed observatons of selected astronomical and solar system objects. This bundle contains the PDS data holdings from the IRAS mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["INFRARED ASTRONOMICAL SATELLITE (IRAS)"],"targets":["Multiple Asteroids","9P/Tempel 1","DUST"],"instruments":["FOCAL PLANE ARRAY for IRAS"],"instrument_hosts":["INFRARED ASTRONOMICAL SATELLITE"],"data_types":[],"start_date":"1983-01-26","stop_date":"1983-11-22","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/bundle_iras.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/bundle_iras.xml","scraped_at":"2026-02-25T20:02:10.741116Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iue.ast.hendrix.spectra::2.0","title":"Hendrix IUE asteroid reflectance spectra V2.0","description":"This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Iue"],"targets":["(308) Polyxo","(41) Daphne","(42) Isis","(12) Victoria","(1620) Geographos","(40) Harmonia","(14) Irene","(433) Eros","(29) Amphitrite","(410) Chloris","(27) Euterpe","(654) Zelinda","(10) Hygiea","(471) Papagena","(16) Psyche","(63) Ausonia","(8) Flora","(135) Hertha","(4179) Toutatis","(18) Melpomene","(51) Nemausa","(20) Massalia","(511) Davida","(75) Eurydike","(349) Dembowska","(21) Lutetia","(54) Alexandra","(9) Metis","(23) Thalia","Multiple Asteroids","(129) Antigone","(324) Bamberga","(88) Thisbe","(15) Eunomia","(216) Kleopatra","(44) Nysa","(532) Herculina","(1566) Icarus","(354) Eleonora","(704) Interamnia"],"instruments":["LONG-WAVELENGTH REDUNDANT for IUE","LONG-WAVELENGTH PRIME for IUE"],"instrument_hosts":["International Ultraviolet Explorer","International Ultraviolet Explorer"],"data_types":[],"start_date":"1978-05-21","stop_date":"1994-09-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/bundle_iue.ast.hendrix.spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/bundle_iue.ast.hendrix.spectra.xml","scraped_at":"2026-02-25T20:02:10.741122Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps::1.0","title":"Phoebe SPC Shape Model and Assessment Products V1.0","description":"This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Cassini-huygens"],"targets":["Saturn IX (Phoebe)"],"instruments":["Imaging Science Subsystem - Wide Angle","Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/bundle_satellite-phoebe.cassini.shape-models-maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/bundle_satellite-phoebe.cassini.shape-models-maps.xml","scraped_at":"2026-02-25T20:02:10.741126Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.mission::2.0","title":"NEAR Mission Information Bundle","description":"The bundle contains all the mission wide information needed to use and understand the scientific data products produced by the NEAR mission.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["NEAR"],"targets":["433 Eros","253 Mathilde","Earth","C/1996 B2 (Hyakutake)","SOLAR_SYSTEM","Interplanetary Magnetic Field","SPACE"],"instruments":["GAMMA RAY SPECTROMETER for NEAR","MAGNETOMETER for NEAR","MULTI-SPECTRAL IMAGER for NEAR","NEAR INFRARED SPECTROMETER for NEAR","NEAR LASER RANGEFINDER for NEAR","XRAY SPECTROMETER for NEAR","RADIO SCIENCE SUBSYSTEM for NEAR"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":[],"start_date":"1996-02-17","stop_date":"2001-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/bundle_near.mission.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/bundle_near.mission.xml","scraped_at":"2026-02-25T20:02:10.741132Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.spectral_analysis::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Spectral Analysis Bundle","description":"This bundle collects all the derived spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) and the OSIRIS-REx Thermal Emission Spectrometer (OTES). These products include resampled and reflectance OVIRS spectra, and temperature/emissivity OTES data products. Additionally, both visible and near infrared (vnir) and thermal infrared (tir) map products are collected.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES","OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/bundle_spectral_analysis.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/bundle_spectral_analysis.xml","scraped_at":"2026-02-25T20:02:10.741137Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_raw::1.1","title":"NEAR Radio Science Subsystem (RSS) raw data bundle","description":"This bundle contains raw radio science tracking data and associated calibration files. There are six product types: Orbit Determination Files (ODF), Earth Orientation Parameters (EOP), Troposphere (TRO), Ionosphere (ION), Numberical Model (nmlmodl), and solution pages (Paramsum).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros","253 Mathilde"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":[],"start_date":"1997-07-03","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/bundle_near_rss_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/bundle_near_rss_raw.xml","scraped_at":"2026-02-25T20:02:10.741144Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_derived::1.1","title":"NEAR Radio Science Subsystem (RSS) derived data bundle","description":"The bundle contains derived models of Eros gravity and topography from radio science tracking. There are four product types: Landmark, Image, Spherical Harmonics ASCII Data Records (SHADR), and the Spherical Harmonics Binary Data Records (SHBDR).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":[],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/bundle_near_rs_derived.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/bundle_near_rs_derived.xml","scraped_at":"2026-02-25T20:02:10.741147Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams::11.1","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Camera Suite (OCAMS). OCAMS is a suite of scientific cameras used for the characterization of the surface of (101955) Bennu. http://doi.org/10.26033/asca-b202.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/bundle_ocams.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/bundle_ocams.xml","scraped_at":"2026-02-25T20:02:10.741151Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ovirs::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible and InfraRed Spectrometer (OVIRS) Bundle","description":"This bundle collects all the operational data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS). OVIRS is used for the spectral characterization of the surface of (101955) Bennu.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/bundle_ovirs.xml","source_url":"https://sbnarchive.psi.edu/pds4/bundle_ovirs.xml","scraped_at":"2026-02-25T20:02:10.741154Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.sample_site::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Derived Sample Site Products Bundle","description":"This collection contains detailed catalogs created during the Sample Site Selection Phase of the OSIRIS-REx mission. Each catalog features geospatial maps with comparative visualizations across all candidate sites. These catalogs are decisional products, and as such are historical documents. They are not final curated science products.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS","OLA","OTES","OVIRS","TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":[],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/bundle_sample_site.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/bundle_sample_site.xml","scraped_at":"2026-02-25T20:02:10.741163Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clipper.sud_ground_cal::1.0","title":"Europa Clipper SUDA Ground Calibration Bundle","description":"This bundle collects all the ground calibration data products produced by the SUDA instrument.","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":[],"start_date":"2022-07-07","stop_date":"2022-08-31","browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/bundle_suda.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/bundle_suda.xml","scraped_at":"2026-02-25T20:02:10.741183Z","keywords":[],"processing_level":"Partially Processed | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model::1.0","title":"Radar shape model of asteroid (99942) Apophis","description":"This data set contains a preliminary three-dimensional shape model and spin state of near-Earth asteroid (99942) Apophis based on ground-based radar images as reported by Brozovic et al. (2018).","node":"sbn","pds_version":"PDS4","type":"bundle","missions":["No Specific Investigation"],"targets":["(99942) Apophis"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","DSS-14 70-m Radio Telescope","DSS-14 X-band Goldstone Solar System Radar Transmitter","DSS-14 X-band Goldstone Solar System Radar Receiver"],"instrument_hosts":["Arecibo Observatory","Goldstone Deep Space Communications Complex"],"data_types":[],"start_date":"2012-12-21","stop_date":"2013-03-16","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/bundle_gbo.ast-apophis.jpl.radar.shape_model.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/bundle_gbo.ast-apophis.jpl.radar.shape_model.xml","scraped_at":"2026-02-25T20:02:10.741193Z","keywords":["radar shape model"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtcal::1.0","title":"DART Lowell Discovery Telescope (LDT) Calibrated Data Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the Lowell calibrated images, the supporting calibration images: master bias frame images, and master flat field images, and the reference star PNGs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Lowell Discovery Telescope (LDT)","Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/collection.xml","scraped_at":"2026-02-25T20:02:10.750193Z","keywords":["Lowell"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtddp::1.0","title":"DART Lowell Discovery Telescope (LDT) Derived Data Product Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the photometry summary tables, which are a PDS4 derived product.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Lowell Discovery Telescope (LDT)","Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/collection.xml","scraped_at":"2026-02-25T20:02:10.750197Z","keywords":["Lowell"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:data_ldtraw::1.0","title":"DART Lowell Discovery Telescope (LDT) Raw Data Collection","description":"We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the Lowell Raw Images.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Lowell Discovery Telescope (LDT)","Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":["Data"],"start_date":"2020-12-17","stop_date":"2021-03-06","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/collection.xml","scraped_at":"2026-02-25T20:02:10.750203Z","keywords":["Lowell"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_teleobs:document_ldt::1.0","title":"DART Lowell Document Collection","description":"This collection contains documents relevant to the Lowell Discovery Telescope ground observations in support of the Double Asteroid Redirection Test mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["Lowell Discovery Telescope (LDT)","Large Monolithic Imager"],"instrument_hosts":["Lowell Observatory"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/collection.xml","scraped_at":"2026-02-25T20:02:10.750206Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_lightcurve_derived_parameters:data::1.0","title":"data collection for the \"ASTEROID LIGHTCURVE DERIVED DATA\" bundle","description":"This is the data collection for the ast_lightcurve_derived_parameters bundle. This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1913-01-01","stop_date":"2017-02-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/collection_ast_lightcurve_derived_parameters_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/collection_ast_lightcurve_derived_parameters_data.xml","scraped_at":"2026-02-25T20:02:10.750496Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_lightcurve_derived_parameters:document::1.0","title":"document collection for the \"ASTEROID LIGHTCURVE DERIVED DATA\" bundle","description":"This is the document collection for the ast_lightcurve_derived_parameters bundle. This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1913-01-01","stop_date":"2017-02-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/collection_ast_lightcurve_derived_parameters_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/collection_ast_lightcurve_derived_parameters_document.xml","scraped_at":"2026-02-25T20:02:10.750499Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-mb.reddy.spectra:document::1.0","title":"document collection for the \"REDDY MAIN BELT ASTEROID SPECTRA\" bundle","description":"This is the document collection for the gbo.ast-mb.reddy.spectra bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(101) Helena","(105) Artemis","(1086) Nata","(1124) Stroobantia","(113) Amalthea","(1145) Robelmonte","(12) Victoria","(121) Hermione","(1251) Hedera","(1284) Latvia","(130) Elektra","(1329) Eliane","(135) Hertha","(138) Tolosa","(1503) Kuopio","(1616) Filipoff","(1626) Sadeya","(167) Urda","(170) Maria","(1717) Arlon","(182) Elsa","(1830) Pogson","(184) Dejopeja","(1883) Rimito","(192) Nausikaa","(1929) Kollaa","(2) Pallas","(20) Massalia","(2011) Veteraniya","(2014) Vasilevskis","(2045) Peking","(213) Lilaea","(214) Aschera","(22) Kalliope","(233) Asterope","(243) Ida","(253) Mathilde","(255) Oppavia","(256) Walpurga","(264) Libussa","(273) Atropos","(276) Adelheid","(283) Emma","(289) Nenetta","(30) Urania","(306) Unitas","(308) Polyxo","(317) Roxane","(349) Dembowska","(37) Fides","(379) Huenna","(385) Ilmatar","(389) Industria","(4) Vesta","(403) Cyane","(41) Daphne","(419) Aurelia","(434) Hungaria","(44) Nysa","(442) Eichsfeldia","(446) Aeternitas","(45) Eugenia","(458) Hercynia","(470) Kilia","(472) Roma","(482) Petrina","(502) Sigune","(504) Cora","(51) Nemausa","(56) Melete","(569) Misa","(620) Drakonia","(63) Ausonia","(64) Angelina","(66) Maja","(663) Gerlinde","(670) Ottegebe","(704) Interamnia","(741) Botolphia","(762) Pulcova","(809) Lundia","(84) Klio","(858) El Djezair","(863) Benkoela","(87) Sylvia","(872) Holda","(877) Walkure","(9) Metis","(951) Gaspra","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2001-03-11","stop_date":"2012-06-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/collection_gbo.ast-mb.reddy.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/collection_gbo.ast-mb.reddy.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750508Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-mb.reddy.spectra:data::1.0","title":"data collection for the \"REDDY MAIN BELT ASTEROID SPECTRA\" bundle","description":"This is the data collection for the gbo.ast-mb.reddy.spectra bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(101) Helena","(105) Artemis","(1086) Nata","(1124) Stroobantia","(113) Amalthea","(1145) Robelmonte","(12) Victoria","(121) Hermione","(1251) Hedera","(1284) Latvia","(130) Elektra","(1329) Eliane","(135) Hertha","(138) Tolosa","(1503) Kuopio","(1616) Filipoff","(1626) Sadeya","(167) Urda","(170) Maria","(1717) Arlon","(182) Elsa","(1830) Pogson","(184) Dejopeja","(1883) Rimito","(192) Nausikaa","(1929) Kollaa","(2) Pallas","(20) Massalia","(2011) Veteraniya","(2014) Vasilevskis","(2045) Peking","(213) Lilaea","(214) Aschera","(22) Kalliope","(233) Asterope","(243) Ida","(253) Mathilde","(255) Oppavia","(256) Walpurga","(264) Libussa","(273) Atropos","(276) Adelheid","(283) Emma","(289) Nenetta","(30) Urania","(306) Unitas","(308) Polyxo","(317) Roxane","(349) Dembowska","(37) Fides","(379) Huenna","(385) Ilmatar","(389) Industria","(4) Vesta","(403) Cyane","(41) Daphne","(419) Aurelia","(434) Hungaria","(44) Nysa","(442) Eichsfeldia","(446) Aeternitas","(45) Eugenia","(458) Hercynia","(470) Kilia","(472) Roma","(482) Petrina","(502) Sigune","(504) Cora","(51) Nemausa","(56) Melete","(569) Misa","(620) Drakonia","(63) Ausonia","(64) Angelina","(66) Maja","(663) Gerlinde","(670) Ottegebe","(704) Interamnia","(741) Botolphia","(762) Pulcova","(809) Lundia","(84) Klio","(858) El Djezair","(863) Benkoela","(87) Sylvia","(872) Holda","(877) Walkure","(9) Metis","(951) Gaspra","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2001-03-11","stop_date":"2012-06-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/collection_gbo.ast-mb.reddy.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/collection_gbo.ast-mb.reddy.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750516Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.2mass.phot:document::1.0","title":"document collection for the \"2MASS ASTEROID AND COMET SURVEY\" bundle","description":"This is the document collection for the gbo.ast.2mass.phot bundle. This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2MASS Camera - North","2MASS 1.3m Telescope at Fred L. Whipple Observatory","2MASS Camera - South","2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"],"instrument_hosts":["Fred L. Whipple Observatory","Cerro Tololo Inter-American Observatory"],"data_types":["Document"],"start_date":"1997-06-07","stop_date":"2001-02-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/collection_gbo.ast.2mass.phot_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/collection_gbo.ast.2mass.phot_document.xml","scraped_at":"2026-02-25T20:02:10.750521Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.2mass.phot:data::1.0","title":"data collection for the \"2MASS ASTEROID AND COMET SURVEY\" bundle","description":"This is the data collection for the gbo.ast.2mass.phot bundle. This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2MASS Camera - North","2MASS 1.3m Telescope at Fred L. Whipple Observatory","2MASS Camera - South","2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"],"instrument_hosts":["Fred L. Whipple Observatory","Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"1997-06-07","stop_date":"2001-02-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/collection_gbo.ast.2mass.phot_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/collection_gbo.ast.2mass.phot_data.xml","scraped_at":"2026-02-25T20:02:10.750526Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:tno-centaur_diam-albedo-density:data::1.0","title":"TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0","description":"This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1986-01-01","stop_date":"2018-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/collection_tno-centaur_diam-albedo-density_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/collection_tno-centaur_diam-albedo-density_data.xml","scraped_at":"2026-02-25T20:02:10.750529Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:tno-centaur_diam-albedo-density:document::1.0","title":"TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0","description":"This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1986-01-01","stop_date":"2018-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/collection_tno-centaur_diam-albedo-density_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/collection_tno-centaur_diam-albedo-density_document.xml","scraped_at":"2026-02-25T20:02:10.750534Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.polarimetry:document::1.0","title":"document collection for the \"POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS\" bundle","description":"This is the document collection for the compil.tno-centaur.polarimetry bundle. The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)","8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory","Sanglok Observatory Photometer-Polarimeter","RCC Richey-Chretien Telescope at Institute of Astrophysics","KPNO Single Channel Polarimeter","1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory","McDonald Observatory Linear Polarimeter","2.1-m Struve Warner &"],"instrument_hosts":["European Southern Observatory on Cerro Paranal","Institute of Astrophysics","Kitt Peak National Observatory","McDonald Observatory"],"data_types":["Document"],"start_date":"1972-04-08","stop_date":"2012-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/collection_compil.tno-centaur.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/collection_compil.tno-centaur.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.750540Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.polarimetry:data::1.0","title":"data collection for the \"POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS\" bundle","description":"This is the data collection for the compil.tno-centaur.polarimetry bundle. The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)","8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory","Sanglok Observatory Photometer-Polarimeter","RCC Richey-Chretien Telescope at Institute of Astrophysics","KPNO Single Channel Polarimeter","1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory","McDonald Observatory Linear Polarimeter","2.1-m Struve Warner &"],"instrument_hosts":["European Southern Observatory on Cerro Paranal","Institute of Astrophysics","Kitt Peak National Observatory","McDonald Observatory"],"data_types":["Data"],"start_date":"1972-04-08","stop_date":"2012-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/collection_compil.tno-centaur.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/collection_compil.tno-centaur.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.750545Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.dione.shape-model:document::1.0","title":"document collection for the \"GASKELL DIONE SHAPE MODEL\" bundle","description":"This is the document collection for the gaskell.dione.shape-model bundle. The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn IV (Dione)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Document"],"start_date":"2004-12-14","stop_date":"2010-12-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/collection_gaskell.dione.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/collection_gaskell.dione.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.750549Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.dione.shape-model:data::1.0","title":"data collection for the \"GASKELL DIONE SHAPE MODEL\" bundle","description":"This is the data collection for the gaskell.dione.shape-model bundle. The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn IV (Dione)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Data"],"start_date":"2004-12-14","stop_date":"2010-12-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/collection_gaskell.dione.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/collection_gaskell.dione.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.750553Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.mimas.shape-model:document::1.0","title":"document collection for the \"GASKELL MIMAS SHAPE MODEL\" bundle","description":"This is the document collection for the gaskell.mimas.shape-model bundle. The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS","VOYAGER"],"targets":["Saturn I (Mimas)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","VOYAGER 1","CASSINI ORBITER"],"data_types":["Document"],"start_date":"1980-11-12","stop_date":"2011-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/collection_gaskell.mimas.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/collection_gaskell.mimas.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.750557Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.mimas.shape-model:data::1.0","title":"data collection for the \"GASKELL MIMAS SHAPE MODEL\" bundle","description":"This is the data collection for the gaskell.mimas.shape-model bundle. The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS","VOYAGER"],"targets":["Saturn I (Mimas)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","VOYAGER 1","CASSINI ORBITER"],"data_types":["Data"],"start_date":"1980-11-12","stop_date":"2011-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/collection_gaskell.mimas.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/collection_gaskell.mimas.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.750561Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.phoebe.shape-model:document::1.0","title":"document collection for the \"GASKELL PHOEBE SHAPE MODEL\" bundle","description":"This is the document collection for the gaskell.phoebe.shape-model bundle. The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn IX (Phoebe)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Document"],"start_date":"2004-06-11","stop_date":"2004-06-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/collection_gaskell.phoebe.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/collection_gaskell.phoebe.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.750565Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.phoebe.shape-model:data::1.0","title":"data collection for the \"GASKELL PHOEBE SHAPE MODEL\" bundle","description":"This is the data collection for the gaskell.phoebe.shape-model bundle. The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn IX (Phoebe)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Data"],"start_date":"2004-06-11","stop_date":"2004-06-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/collection_gaskell.phoebe.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/collection_gaskell.phoebe.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.750570Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.tethys.shape-model:document::1.0","title":"document collection for the \"GASKELL TETHYS SHAPE MODEL\" bundle","description":"This is the document collection for the gaskell.tethys.shape-model bundle. The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn III (Tethys)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Document"],"start_date":"2004-10-28","stop_date":"2010-08-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/collection_gaskell.tethys.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/collection_gaskell.tethys.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.750574Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.tethys.shape-model:data::1.0","title":"data collection for the \"GASKELL TETHYS SHAPE MODEL\" bundle","description":"This is the data collection for the gaskell.tethys.shape-model bundle. The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Saturn III (Tethys)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"],"instrument_hosts":["CASSINI ORBITER","CASSINI ORBITER"],"data_types":["Data"],"start_date":"2004-10-28","stop_date":"2010-08-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/collection_gaskell.tethys.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/collection_gaskell.tethys.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.750578Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.smass.spectra:data::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0","description":"The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(541) Deborah","(4179) Toutatis","(1166) Sakuntala","(38) Leda","(495) Eulalia","(808) Merxia","(234) Barbara","(7341) 1991 VK","(631) Philippina","(319) Leona","(3494) Purplemountain","(4606) Saheki","(3748) Tatum","(111) Ate","(2645) Daphneplane","(297) Caecilia","(314) Rosalia","(3321) Dasha","(5143) Heracles","(169) Zelia","(4038) Kristina","(86) Semele","(2538) Vanderlinden","(4031) Mueller","(722) Frieda","(509) Iolanda","(126) Velleda","(4219) Nakamura","(1451) Grano","(28) Bellona","(39) Laetitia","(8) Flora","(415690) 1992 UB","(3935) Toatenmongakkai","1991 XB","(339) Dorothea","(36) Atalante","(4165) Didkovskij","(4640) Hara","(248) Lameia","(2091) Sampo","(374) Burgundia","(481) Emita","(702) Alauda","(3220) Murayama","(402) Chloe","(6) Hebe","(32) Pomona","(2365) Interkosmos","(239) Adrastea","(204) Kallisto","(3332) Raksha","(3760) Poutanen","(54) Alexandra","(4370) Dickens","(4156) Okadanoboru","(4373) Crespo","(1375) Alfreda","(471) Papagena","(511) Davida","(1697) Koskenniemi","(3578) Carestia","(470) Kilia","(137) Meliboea","(2923) Schuyler","(384) Burdigala","(4104) Alu","(61) Danae","(3528) Counselman","(2074) Shoemaker","(3167) Babcock","(10) Hygiea","(2174) Asmodeus","(2299) Hanko","(4761) Urrutia","(480) Hansa","(55) Pandora","(1626) Sadeya","(2215) Sichuan","(1279) Uganda","(2775) Odishaw","(4085) Weir","(3155) Lee","(3915) Fukushima","(8176) 1991 WA","(529) Preziosa","(4353) Onizaki","(4635) Rimbaud","(653) Berenike","(2259) Sofievka","(243) Ida","(416) Vaticana","(737) Arequipa","(2140) Kemerovo","(3759) Piironen","(138) Tolosa","(1534) Nasi","(803) Picka","(72) Feronia","(1577) Reiss","(1325) Inanda","(2558) Viv","(2442) Corbett","(3677) Magnusson","(371) Bohemia","(1772) Gagarin","(3381) Mikkola","(4956) Noymer","(582) Olympia","(1143) Odysseus","(134) Sophrosyne","(2590) Mourao","(639) Latona","(350) Ornamenta","(3792) Preston","(2070) Humason","(128) Nemesis","(4) Vesta","(441) Bathilde","(230) Athamantis","(2107) Ilmari","(256) Walpurga","(43) Ariadne","(519) Sylvania","(3657) Ermolova","(1906) Naef","(2444) Lederle","(599) Luisa","(2908) Shimoyama","(185) Eunike","(2011) Veteraniya","(1653) Yakhontovia","(14) Irene","(196) Philomela","(4006) Sandler","(1145) Robelmonte","(2078) Nanking","(235) Carolina","(787) Moskva","(2599) Veseli","(2965) Surikov","(879) Ricarda","(2130) Evdokiya","(1393) Sofala","(3431) Nakano","(1749) Telamon","(3559) Violaumayer","(7474) 1992 TC","(149) Medusa","(82) Alkmene","(22) Kalliope","(1198) Atlantis","(1501) Baade","(7) Iris","(3740) Menge","(1712) Angola","(245) Vera","(4062) Schiaparelli","(4376) Shigemori","(4215) Kamo","(4562) Poleungkuk","(3268) Desanctis","(131) Vala","(788) Hohensteina","(1584) Fuji","(918) Itha","(1110) Jaroslawa","(116) Sirona","(3501) Olegiya","(4159) Freeman","(518) Halawe","(88) Thisbe","(2420) Ciurlionis","(5065) Johnstone","(1967) Menzel","(65706) 1992 NA","(42) Isis","(430) Hybris","(4440) Tchantches","(2060) Chiron","(512) Taurinensis","(68) Leto","(3944) Halliday","(3158) Anga","(446) Aeternitas","(2159) Kukkamaki","(3674) Erbisbuhl","(1646) Rosseland","(2204) Lyyli","(4005) Dyagilev","(2024) Mclaughlin","(346) Hermentaria","(292) Ludovica","(456) Abnoba","(1358) Gaika","(1892) Lucienne","(3963) Paradzhanov","(1722) Goffin","(4546) Franck","(1679) Nevanlinna","(1302) Werra","(2327) Gershberg","(290) Bruna","(1934) Jeffers","(354) Eleonora","(1781) Vanbiesbroeck","(1084) Tamariwa","(1478) Vihuri","(5145) Pholus","(1257) Mora","(1658) Innes","(4673) Bortle","(3231) Mila","(2728) Yatskiv","(724) Hapag","(1607) Mavis","(1463) Nordenmarkia","(218) Bianca","(1264) Letaba","(2966) Korsunia","(1995) Hajek","(4282) Endate","(1651) Behrens","(2128) Wetherill","(291) Alice","(4939) Scovil","(1289) Kutaissi","(3523) Arina","(2143) Jimarnold","(25) Phocaea","(563) Suleika","(774) Armor","(2790) Needham","(289) Nenetta","(2403) Sumava","(1063) Aquilegia","(1854) Skvortsov","(2014) Vasilevskis","(4145) Maximova","(915) Cosette","(73) Klytia","(158) Koronis","(1725) Crao","Multiple Asteroids","(1471) Tornio","(231) Vindobona","(3109) Machin","(683) Lanzia","(1807) Slovakia","(2440) Educatio","(3869) Norton","(3285) Ruthwolfe","(2149) Schwambraniya","(1165) Imprinetta","(29) Amphitrite","(2503) Liaoning","(1929) Kollaa","(349) Dembowska","(237) Coelestina","(3586) Vasnetsov","(71) Niobe","(1907) Rudneva","(1933) Tinchen","(1480) Aunus","(2119) Schwall","(467) Laura","(477) Italia","(3968) Koptelov","(1743) Schmidt","(53) Kalypso","(2017) Wesson","(811) Nauheima","(345) Tercidina","(211) Isolda","(863) Benkoela","(2253) Espinette","(1144) Oda","(157) Dejanira","(4002) Shinagawa","(4025) Ridley","(720) Bohlinia","(3628) Boznemcova","(550) Senta","(851) Zeissia","(5118) Elnapoul","(4510) Shawna","(186) Celuta","(18) Melpomene","(3354) Mcnair","(1379) Lomonosowa","(2920) Automedon","(287) Nephthys","(752) Sulamitis","(474) Prudentia","(900) Rosalinde","(221) Eos","(1071) Brita","(11066) Sigurd","(951) Gaspra","(1273) Helma","(1518) Rovaniemi","(732) Tjilaki","(2946) Muchachos","(813) Baumeia","(167) Urda","(2105) Gudy","(3665) Fitzgerald","(1628) Strobel","(675) Ludmilla","(3153) Lincoln","(4147) Lennon","(124) Alkeste","(2113) Ehrdni","(4948) Hideonishimura","(3999) Aristarchus","(3) Juno","(2098) Zyskin"],"instruments":["2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory"],"data_types":["Data"],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/collection_gbo.ast.smass.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/collection_gbo.ast.smass.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750597Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.smass.spectra:document::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0","description":"The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(541) Deborah","(4179) Toutatis","(1166) Sakuntala","(38) Leda","(495) Eulalia","(808) Merxia","(234) Barbara","(7341) 1991 VK","(631) Philippina","(319) Leona","(3494) Purplemountain","(4606) Saheki","(3748) Tatum","(111) Ate","(2645) Daphneplane","(297) Caecilia","(314) Rosalia","(3321) Dasha","(5143) Heracles","(169) Zelia","(4038) Kristina","(86) Semele","(2538) Vanderlinden","(4031) Mueller","(722) Frieda","(509) Iolanda","(126) Velleda","(4219) Nakamura","(1451) Grano","(28) Bellona","(39) Laetitia","(8) Flora","(415690) 1992 UB","(3935) Toatenmongakkai","1991 XB","(339) Dorothea","(36) Atalante","(4165) Didkovskij","(4640) Hara","(248) Lameia","(2091) Sampo","(374) Burgundia","(481) Emita","(702) Alauda","(3220) Murayama","(402) Chloe","(6) Hebe","(32) Pomona","(2365) Interkosmos","(239) Adrastea","(204) Kallisto","(3332) Raksha","(3760) Poutanen","(54) Alexandra","(4370) Dickens","(4156) Okadanoboru","(4373) Crespo","(1375) Alfreda","(471) Papagena","(511) Davida","(1697) Koskenniemi","(3578) Carestia","(470) Kilia","(137) Meliboea","(2923) Schuyler","(384) Burdigala","(4104) Alu","(61) Danae","(3528) Counselman","(2074) Shoemaker","(3167) Babcock","(10) Hygiea","(2174) Asmodeus","(2299) Hanko","(4761) Urrutia","(480) Hansa","(55) Pandora","(1626) Sadeya","(2215) Sichuan","(1279) Uganda","(2775) Odishaw","(4085) Weir","(3155) Lee","(3915) Fukushima","(8176) 1991 WA","(529) Preziosa","(4353) Onizaki","(4635) Rimbaud","(653) Berenike","(2259) Sofievka","(243) Ida","(416) Vaticana","(737) Arequipa","(2140) Kemerovo","(3759) Piironen","(138) Tolosa","(1534) Nasi","(803) Picka","(72) Feronia","(1577) Reiss","(1325) Inanda","(2558) Viv","(2442) Corbett","(3677) Magnusson","(371) Bohemia","(1772) Gagarin","(3381) Mikkola","(4956) Noymer","(582) Olympia","(1143) Odysseus","(134) Sophrosyne","(2590) Mourao","(639) Latona","(350) Ornamenta","(3792) Preston","(2070) Humason","(128) Nemesis","(4) Vesta","(441) Bathilde","(230) Athamantis","(2107) Ilmari","(256) Walpurga","(43) Ariadne","(519) Sylvania","(3657) Ermolova","(1906) Naef","(2444) Lederle","(599) Luisa","(2908) Shimoyama","(185) Eunike","(2011) Veteraniya","(1653) Yakhontovia","(14) Irene","(196) Philomela","(4006) Sandler","(1145) Robelmonte","(2078) Nanking","(235) Carolina","(787) Moskva","(2599) Veseli","(2965) Surikov","(879) Ricarda","(2130) Evdokiya","(1393) Sofala","(3431) Nakano","(1749) Telamon","(3559) Violaumayer","(7474) 1992 TC","(149) Medusa","(82) Alkmene","(22) Kalliope","(1198) Atlantis","(1501) Baade","(7) Iris","(3740) Menge","(1712) Angola","(245) Vera","(4062) Schiaparelli","(4376) Shigemori","(4215) Kamo","(4562) Poleungkuk","(3268) Desanctis","(131) Vala","(788) Hohensteina","(1584) Fuji","(918) Itha","(1110) Jaroslawa","(116) Sirona","(3501) Olegiya","(4159) Freeman","(518) Halawe","(88) Thisbe","(2420) Ciurlionis","(5065) Johnstone","(1967) Menzel","(65706) 1992 NA","(42) Isis","(430) Hybris","(4440) Tchantches","(2060) Chiron","(512) Taurinensis","(68) Leto","(3944) Halliday","(3158) Anga","(446) Aeternitas","(2159) Kukkamaki","(3674) Erbisbuhl","(1646) Rosseland","(2204) Lyyli","(4005) Dyagilev","(2024) Mclaughlin","(346) Hermentaria","(292) Ludovica","(456) Abnoba","(1358) Gaika","(1892) Lucienne","(3963) Paradzhanov","(1722) Goffin","(4546) Franck","(1679) Nevanlinna","(1302) Werra","(2327) Gershberg","(290) Bruna","(1934) Jeffers","(354) Eleonora","(1781) Vanbiesbroeck","(1084) Tamariwa","(1478) Vihuri","(5145) Pholus","(1257) Mora","(1658) Innes","(4673) Bortle","(3231) Mila","(2728) Yatskiv","(724) Hapag","(1607) Mavis","(1463) Nordenmarkia","(218) Bianca","(1264) Letaba","(2966) Korsunia","(1995) Hajek","(4282) Endate","(1651) Behrens","(2128) Wetherill","(291) Alice","(4939) Scovil","(1289) Kutaissi","(3523) Arina","(2143) Jimarnold","(25) Phocaea","(563) Suleika","(774) Armor","(2790) Needham","(289) Nenetta","(2403) Sumava","(1063) Aquilegia","(1854) Skvortsov","(2014) Vasilevskis","(4145) Maximova","(915) Cosette","(73) Klytia","(158) Koronis","(1725) Crao","Multiple Asteroids","(1471) Tornio","(231) Vindobona","(3109) Machin","(683) Lanzia","(1807) Slovakia","(2440) Educatio","(3869) Norton","(3285) Ruthwolfe","(2149) Schwambraniya","(1165) Imprinetta","(29) Amphitrite","(2503) Liaoning","(1929) Kollaa","(349) Dembowska","(237) Coelestina","(3586) Vasnetsov","(71) Niobe","(1907) Rudneva","(1933) Tinchen","(1480) Aunus","(2119) Schwall","(467) Laura","(477) Italia","(3968) Koptelov","(1743) Schmidt","(53) Kalypso","(2017) Wesson","(811) Nauheima","(345) Tercidina","(211) Isolda","(863) Benkoela","(2253) Espinette","(1144) Oda","(157) Dejanira","(4002) Shinagawa","(4025) Ridley","(720) Bohlinia","(3628) Boznemcova","(550) Senta","(851) Zeissia","(5118) Elnapoul","(4510) Shawna","(186) Celuta","(18) Melpomene","(3354) Mcnair","(1379) Lomonosowa","(2920) Automedon","(287) Nephthys","(752) Sulamitis","(474) Prudentia","(900) Rosalinde","(221) Eos","(1071) Brita","(11066) Sigurd","(951) Gaspra","(1273) Helma","(1518) Rovaniemi","(732) Tjilaki","(2946) Muchachos","(813) Baumeia","(167) Urda","(2105) Gudy","(3665) Fitzgerald","(1628) Strobel","(675) Ludmilla","(3153) Lincoln","(4147) Lennon","(124) Alkeste","(2113) Ehrdni","(4948) Hideonishimura","(3999) Aristarchus","(3) Juno","(2098) Zyskin"],"instruments":["2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory"],"data_types":["Document"],"start_date":"1990-01-01","stop_date":"1994-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/collection_gbo.ast.smass.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/collection_gbo.ast.smass.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750616Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.7-color-survey:document::1.0","title":"document collection for the \"SEVEN COLOR ASTEROID SURVEY\" bundle","description":"This is the document collection for the gbo.ast.7-color-survey bundle. The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Primo I Photometer","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"1992-07-01","stop_date":"1994-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/collection_gbo.ast.7-color-survey_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/collection_gbo.ast.7-color-survey_document.xml","scraped_at":"2026-02-25T20:02:10.750622Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.7-color-survey:data::1.0","title":"data collection for the \"SEVEN COLOR ASTEROID SURVEY\" bundle","description":"This is the data collection for the gbo.ast.7-color-survey bundle. The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Primo I Photometer","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"1992-07-01","stop_date":"1994-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/collection_gbo.ast.7-color-survey_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/collection_gbo.ast.7-color-survey_data.xml","scraped_at":"2026-02-25T20:02:10.750626Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.satellite.polarimetry:document::1.0","title":"document collection for the \"POLARIMETRY OF PLANETARY SATELLITES \" bundle","description":"This is the document collection for the compil.satellite.polarimetry bundle. This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Satellites"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1966-12-12","stop_date":"2011-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/collection_compil.satellite.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/collection_compil.satellite.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.750629Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.satellite.polarimetry:data::1.0","title":"data collection for the \"POLARIMETRY OF PLANETARY SATELLITES \" bundle","description":"This is the data collection for the compil.satellite.polarimetry bundle. This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Satellites"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1966-12-12","stop_date":"2011-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/collection_compil.satellite.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/collection_compil.satellite.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.750634Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.pluto-charon.mutual-events:document::1.0","title":"document collection for the \"PLUTO-CHARON MUTUAL EVENTS\" bundle","description":"This is the document collection for the gbo.pluto-charon.mutual-events bundle. Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(134340) Pluto"],"instruments":["Tinsley Photometer","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory","Tinsley Photometer","61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory","McDonald P45a Two-Channel Photometer","2.7m Telescope","McDonald P45a Two-Channel Photometer","2.1-m Struve Warner &","McDonald P45a Two-Channel Photometer","91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory","Literature Compilation"],"instrument_hosts":["Mauna Kea Observatory","Mauna Kea Observatory","McDonald Observatory","McDonald Observatory","McDonald Observatory"],"data_types":["Document"],"start_date":"1985-01-16","stop_date":"1990-09-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/collection_gbo.pluto-charon.mutual-events_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/collection_gbo.pluto-charon.mutual-events_document.xml","scraped_at":"2026-02-25T20:02:10.750640Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.pluto-charon.mutual-events:data::1.0","title":"data collection for the \"PLUTO-CHARON MUTUAL EVENTS\" bundle","description":"This is the data collection for the gbo.pluto-charon.mutual-events bundle. Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(134340) Pluto"],"instruments":["Tinsley Photometer","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory","Tinsley Photometer","61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory","McDonald P45a Two-Channel Photometer","2.7m Telescope","McDonald P45a Two-Channel Photometer","2.1-m Struve Warner &","McDonald P45a Two-Channel Photometer","91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory","Literature Compilation"],"instrument_hosts":["Mauna Kea Observatory","Mauna Kea Observatory","McDonald Observatory","McDonald Observatory","McDonald Observatory"],"data_types":["Data"],"start_date":"1985-01-16","stop_date":"1990-09-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/collection_gbo.pluto-charon.mutual-events_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/collection_gbo.pluto-charon.mutual-events_data.xml","scraped_at":"2026-02-25T20:02:10.750645Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.ecas.phot:document::1.0","title":"document collection for the \"EIGHT COLOR ASTEROID SURVEY\" bundle","description":"This is the document collection for the gbo.ast.ecas.phot bundle. This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1979-05-31","stop_date":"1983-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/collection_gbo.ast.ecas.phot_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/collection_gbo.ast.ecas.phot_document.xml","scraped_at":"2026-02-25T20:02:10.750649Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.ecas.phot:data::1.0","title":"data collection for the \"EIGHT COLOR ASTEROID SURVEY\" bundle","description":"This is the data collection for the gbo.ast.ecas.phot bundle. This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1979-05-31","stop_date":"1983-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/collection_gbo.ast.ecas.phot_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/collection_gbo.ast.ecas.phot_data.xml","scraped_at":"2026-02-25T20:02:10.750653Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.albedos:document::1.0","title":"document collection for the \"ASTEROID ALBEDOS\" bundle","description":"This is the document collection for the compil.ast.albedos bundle. This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1973-01-01","stop_date":"2001-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/collection_compil.ast.albedos_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/collection_compil.ast.albedos_document.xml","scraped_at":"2026-02-25T20:02:10.750656Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.albedos:data::1.0","title":"data collection for the \"ASTEROID ALBEDOS\" bundle","description":"This is the data collection for the compil.ast.albedos bundle. This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1973-01-01","stop_date":"2001-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/collection_compil.ast.albedos_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/collection_compil.ast.albedos_data.xml","scraped_at":"2026-02-25T20:02:10.750660Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.magnitude-slope:document::1.0","title":"document collection for the \"ASTEROID ABSOLUTE MAGNITUDES\" bundle","description":"This is the document collection for the compil.ast.magnitude-slope bundle. Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1990-12-02","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/collection_compil.ast.magnitude-slope_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/collection_compil.ast.magnitude-slope_document.xml","scraped_at":"2026-02-25T20:02:10.750663Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.magnitude-slope:data::1.0","title":"data collection for the \"ASTEROID ABSOLUTE MAGNITUDES\" bundle","description":"This is the data collection for the compil.ast.magnitude-slope bundle. Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1990-12-02","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/collection_compil.ast.magnitude-slope_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/collection_compil.ast.magnitude-slope_data.xml","scraped_at":"2026-02-25T20:02:10.750667Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.names:document::1.0","title":"document collection for the \"ASTEROID NAMES AND DISCOVERY\" bundle","description":"This is the document collection for the compil.ast.names bundle. This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1801-01-01","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/collection_compil.ast.names_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/collection_compil.ast.names_document.xml","scraped_at":"2026-02-25T20:02:10.750671Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.names:data::1.0","title":"data collection for the \"ASTEROID NAMES AND DISCOVERY\" bundle","description":"This is the data collection for the compil.ast.names bundle. This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1801-01-01","stop_date":"2008-04-20","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/collection_compil.ast.names_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/collection_compil.ast.names_data.xml","scraped_at":"2026-02-25T20:02:10.750674Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.radar-properties:document::1.0","title":"document collection for the \"ASTEROID RADAR\" bundle","description":"This is the document collection for the compil.ast.radar-properties bundle. This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1968-01-01","stop_date":"2011-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/collection_compil.ast.radar-properties_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/collection_compil.ast.radar-properties_document.xml","scraped_at":"2026-02-25T20:02:10.750677Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.radar-properties:data::1.0","title":"data collection for the \"ASTEROID RADAR\" bundle","description":"This is the data collection for the compil.ast.radar-properties bundle. This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1968-01-01","stop_date":"2011-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/collection_compil.ast.radar-properties_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/collection_compil.ast.radar-properties_data.xml","scraped_at":"2026-02-25T20:02:10.750681Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.jpl.radar.shape_models:data::1.0","title":"Radar shape models of asteroids compiled by Lawrence V1.0","description":"This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(33342) 1998 WT24","(10115) 1992 SK","(276049) 2002 CE26","(29075) 1950 DA","(341843) 2008 EV5","(54509) YORP","(136617) 1994 CC","(2100) Ra-Shalom","(4486) Mithra","(4660) Nereus","(66391) 1999 KW4"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":["Data"],"start_date":"1999-02-07","stop_date":"2009-06-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/collection_gbo.ast.jpl.radar.shape_models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/collection_gbo.ast.jpl.radar.shape_models_data.xml","scraped_at":"2026-02-25T20:02:10.750687Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.jpl.radar.shape_models:document::1.0","title":"Radar shape models of asteroids compiled by Lawrence V1.0","description":"This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(33342) 1998 WT24","(10115) 1992 SK","(276049) 2002 CE26","(29075) 1950 DA","(341843) 2008 EV5","(54509) YORP","(136617) 1994 CC","(2100) Ra-Shalom","(4486) Mithra","(4660) Nereus","(66391) 1999 KW4"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":["Document"],"start_date":"1999-02-07","stop_date":"2009-06-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/collection_gbo.ast.jpl.radar.shape_models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/collection_gbo.ast.jpl.radar.shape_models_document.xml","scraped_at":"2026-02-25T20:02:10.750693Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.ubv-photometry:document::1.0","title":"document collection for the \"UBV MEAN ASTEROID COLORS\" bundle","description":"This is the document collection for the compil.ast.ubv-photometry bundle. This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1951-01-01","stop_date":"1989-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/collection_compil.ast.ubv-photometry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/collection_compil.ast.ubv-photometry_document.xml","scraped_at":"2026-02-25T20:02:10.750697Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.ubv-photometry:data::1.0","title":"data collection for the \"UBV MEAN ASTEROID COLORS\" bundle","description":"This is the data collection for the compil.ast.ubv-photometry bundle. This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1951-01-01","stop_date":"1989-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/collection_compil.ast.ubv-photometry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/collection_compil.ast.ubv-photometry_data.xml","scraped_at":"2026-02-25T20:02:10.750701Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.magnitude-phase:document::1.0","title":"document collection for the \"KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS\" bundle","description":"This is the document collection for the compil.ast.magnitude-phase bundle. A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1978-04-28","stop_date":"2008-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/collection_compil.ast.magnitude-phase_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/collection_compil.ast.magnitude-phase_document.xml","scraped_at":"2026-02-25T20:02:10.750705Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.magnitude-phase:data::1.0","title":"data collection for the \"KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS\" bundle","description":"This is the data collection for the compil.ast.magnitude-phase bundle. A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1978-04-28","stop_date":"2008-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/collection_compil.ast.magnitude-phase_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/collection_compil.ast.magnitude-phase_data.xml","scraped_at":"2026-02-25T20:02:10.750708Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.colors:document::1.0","title":"document collection for the \"TNO AND CENTAUR COLORS\" bundle","description":"This is the document collection for the compil.tno-centaur.colors bundle. This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Multiple Comets"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1985-09-23","stop_date":"2014-03-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/collection_compil.tno-centaur.colors_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/collection_compil.tno-centaur.colors_document.xml","scraped_at":"2026-02-25T20:02:10.750712Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.colors:data::1.0","title":"data collection for the \"TNO AND CENTAUR COLORS\" bundle","description":"This is the data collection for the compil.tno-centaur.colors bundle. This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Multiple Comets"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1985-09-23","stop_date":"2014-03-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/collection_compil.tno-centaur.colors_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/collection_compil.tno-centaur.colors_data.xml","scraped_at":"2026-02-25T20:02:10.750716Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.lightcurves:document::1.0","title":"document collection for the \"TRANS-NEPTUNIAN OBJECT LIGHTCURVES\" bundle","description":"This is the document collection for the compil.tno-centaur.lightcurves bundle. This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(19521) Chaos","(79360) Sila-Nunam","(91133) 1998 HK151","1998 XY95","(40314) 1999 KR16","(47932) 2000 GN171","(150642) 2001 CZ31","(82155) 2001 FZ173","(38628) Huya","Multiple Asteroids","(15875) 1996 TP66","(19255) 1994 VK8","(19308) 1996 TO66","(26181) 1996 GQ21","(26375) 1999 DE9","(33128) 1998 BU48","(33340) 1998 VG44"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1997-08-27","stop_date":"2001-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/collection_compil.tno-centaur.lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/collection_compil.tno-centaur.lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.750720Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.tno-centaur.lightcurves:data::1.0","title":"data collection for the \"TRANS-NEPTUNIAN OBJECT LIGHTCURVES\" bundle","description":"This is the data collection for the compil.tno-centaur.lightcurves bundle. This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(19521) Chaos","(79360) Sila-Nunam","(91133) 1998 HK151","1998 XY95","(40314) 1999 KR16","(47932) 2000 GN171","(150642) 2001 CZ31","(82155) 2001 FZ173","(38628) Huya","Multiple Asteroids","(15875) 1996 TP66","(19255) 1994 VK8","(19308) 1996 TO66","(26181) 1996 GQ21","(26375) 1999 DE9","(33128) 1998 BU48","(33340) 1998 VG44"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1997-08-27","stop_date":"2001-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/collection_compil.tno-centaur.lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/collection_compil.tno-centaur.lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.750725Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.masses:document::1.0","title":"document collection for the \"ASTEROID MASSES\" bundle","description":"This is the document collection for the compil.ast.masses bundle. This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1991-01-01","stop_date":"2012-04-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/collection_compil.ast.masses_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/collection_compil.ast.masses_document.xml","scraped_at":"2026-02-25T20:02:10.750728Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.masses:data::1.0","title":"data collection for the \"ASTEROID MASSES\" bundle","description":"This is the data collection for the compil.ast.masses bundle. This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1991-01-01","stop_date":"2012-04-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/collection_compil.ast.masses_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/collection_compil.ast.masses_data.xml","scraped_at":"2026-02-25T20:02:10.750737Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.vilas.spectra:document::1.0","title":"document collection for the \"VILAS ASTEROID SPECTRA\" bundle","description":"This is the document collection for the gbo.ast.vilas.spectra bundle. This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(102) Miriam","(1036) Ganymed","(1162) Larissa","(1167) Dubiago","(1172) Aneas","(1208) Troilus","(121) Hermione","(130) Elektra","(134) Sophrosyne","(1368) Numidia","(1390) Abastumani","(142) Polana","(1467) Mashona","(1512) Oulu","(152) Atala","(153) Hilda","(165) Loreley","(17) Thetis","(1722) Goffin","(181) Eucharis","(1866) Sisyphus","(1867) Deiphobus","(187) Lamberta","(19) Fortuna","(190) Ismene","(2) Pallas","(2113) Ehrdni","(2241) Alcathous","(225) Henrietta","(2357) Phereclos","(2674) Pandarus","(276) Adelheid","(292) Ludovica","(31) Euphrosyne","(326) Tamara","(3288) Seleucus","(334) Chicago","(368) Haidea","(375) Ursula","(407) Arachne","(409) Aspasia","(41) Daphne","(420) Bertholda","(433) Eros","(466) Tisiphone","(483) Seppina","(495) Eulalia","(499) Venusia","(528) Rezia","(54) Alexandra","(559) Nanon","(566) Stereoskopia","(570) Kythera","(606) Brangane","(624) Hektor","(643) Scheherezade","(65) Cybele","(654) Zelinda","(66) Maja","(692) Hippodamia","(695) Bella","(709) Fringilla","(733) Mocia","(748) Simeisa","(76) Freia","(773) Irmintraud","(776) Berbericia","(797) Montana","(87) Sylvia","(877) Walkure","(884) Priamus","(908) Buda","(914) Palisana","(940) Kordula","Multiple Asteroids"],"instruments":["CTIO 1.5-meter Cassegrain Spectrograph","1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory","Fink Spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station","CTIO 1.0m 2DFrutti Spectrograph","1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory","Larson IHW spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"],"instrument_hosts":["Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station","Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station"],"data_types":["Document"],"start_date":"1982-02-04","stop_date":"1998-09-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/collection_gbo.ast.vilas.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/collection_gbo.ast.vilas.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750745Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.vilas.spectra:data::1.0","title":"data collection for the \"VILAS ASTEROID SPECTRA\" bundle","description":"This is the data collection for the gbo.ast.vilas.spectra bundle. This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(102) Miriam","(1036) Ganymed","(1162) Larissa","(1167) Dubiago","(1172) Aneas","(1208) Troilus","(121) Hermione","(130) Elektra","(134) Sophrosyne","(1368) Numidia","(1390) Abastumani","(142) Polana","(1467) Mashona","(1512) Oulu","(152) Atala","(153) Hilda","(165) Loreley","(17) Thetis","(1722) Goffin","(181) Eucharis","(1866) Sisyphus","(1867) Deiphobus","(187) Lamberta","(19) Fortuna","(190) Ismene","(2) Pallas","(2113) Ehrdni","(2241) Alcathous","(225) Henrietta","(2357) Phereclos","(2674) Pandarus","(276) Adelheid","(292) Ludovica","(31) Euphrosyne","(326) Tamara","(3288) Seleucus","(334) Chicago","(368) Haidea","(375) Ursula","(407) Arachne","(409) Aspasia","(41) Daphne","(420) Bertholda","(433) Eros","(466) Tisiphone","(483) Seppina","(495) Eulalia","(499) Venusia","(528) Rezia","(54) Alexandra","(559) Nanon","(566) Stereoskopia","(570) Kythera","(606) Brangane","(624) Hektor","(643) Scheherezade","(65) Cybele","(654) Zelinda","(66) Maja","(692) Hippodamia","(695) Bella","(709) Fringilla","(733) Mocia","(748) Simeisa","(76) Freia","(773) Irmintraud","(776) Berbericia","(797) Montana","(87) Sylvia","(877) Walkure","(884) Priamus","(908) Buda","(914) Palisana","(940) Kordula","Multiple Asteroids"],"instruments":["CTIO 1.5-meter Cassegrain Spectrograph","1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory","Fink Spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station","CTIO 1.0m 2DFrutti Spectrograph","1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory","Larson IHW spectrograph","1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"],"instrument_hosts":["Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station","Cerro Tololo Inter-American Observatory","Mount Bigelow (Catalina) Station"],"data_types":["Data"],"start_date":"1982-02-04","stop_date":"1998-09-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/collection_gbo.ast.vilas.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/collection_gbo.ast.vilas.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750754Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-vesta.reddy.spectra:document::1.0","title":"document collection for the \"REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA\" bundle","description":"This is the document collection for the gbo.ast-vesta.reddy.spectra bundle. This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(4) Vesta"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2010-03-27","stop_date":"2010-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/collection_gbo.ast-vesta.reddy.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/collection_gbo.ast-vesta.reddy.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750759Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-vesta.reddy.spectra:data::1.0","title":"data collection for the \"REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA\" bundle","description":"This is the data collection for the gbo.ast-vesta.reddy.spectra bundle. This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(4) Vesta"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2010-03-27","stop_date":"2010-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/collection_gbo.ast-vesta.reddy.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/collection_gbo.ast-vesta.reddy.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750763Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.24-color-survey:document::1.0","title":"document collection for the \"24-COLOR ASTEROID SURVEY\" bundle","description":"This is the document collection for the gbo.ast.24-color-survey bundle. This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(1015) Christa","(1019) Strackea","(1025) Riema","(1036) Ganymed","(105) Artemis","(1055) Tynka","(1058) Grubba","(106) Dione","(1075) Helina","(108) Hecuba","(1088) Mitaka","(11) Parthenope","(110) Lydia","(1103) Sequoia","(113) Amalthea","(115) Thyra","(116) Sirona","(1162) Larissa","(1172) Aneas","(1173) Anchises","(119) Althaea","(1199) Geldonia","(12) Victoria","(1208) Troilus","(121) Hermione","(1212) Francette","(122) Gerda","(124) Alkeste","(1263) Varsavia","(128) Nemesis","(1284) Latvia","(129) Antigone","(13) Egeria","(130) Elektra","(1317) Silvretta","(1330) Spiridonia","(136) Austria","(1364) Safara","(139) Juewa","(14) Irene","(140) Siwa","(141) Lumen","(144) Vibilia","(1449) Virtanen","(145) Adeona","(149) Medusa","(1493) Sigrid","(15) Eunomia","(150) Nuwa","(1512) Oulu","(1529) Oterma","(156) Xanthippe","(1566) Icarus","(158) Koronis","(1580) Betulia","(1595) Tanga","(16) Psyche","(1620) Geographos","(1627) Ivar","(163) Erigone","(1636) Porter","(164) Eva","(1645) Waterfield","(1656) Suomi","(166) Rhodope","(167) Urda","(1685) Toro","(169) Zelia","(17) Thetis","(170) Maria","(1717) Arlon","(1727) Mette","(175) Andromache","(176) Iduna","(18) Melpomene","(181) Eucharis","(1830) Pogson","(185) Eunike","(1862) Apollo","(19) Fortuna","(1915) Quetzalcoatl","(192) Nausikaa","(194) Prokne","(196) Philomela","(197) Arete","(198) Ampella","(2) Pallas","(20) Massalia","(200) Dynamene","(208) Lacrimosa","(21) Lutetia","(210) Isabella","(2100) Ra-Shalom","(213) Lilaea","(216) Kleopatra","(217) Eudora","(22) Kalliope","(220) Stephania","(2201) Oljato","(221) Eos","(23) Thalia","(230) Athamantis","(236) Honoria","(24) Themis","(243) Ida","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(262) Valda","(264) Libussa","(268) Adorea","(27) Euterpe","(279) Thule","(28) Bellona","(281) Lucretia","(29) Amphitrite","(293) Brasilia","(3) Juno","(30) Urania","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(313) Chaldaea","(32) Pomona","(323) Brucia","(324) Bamberga","(325) Heidelberga","(326) Tamara","(335) Roberta","(337) Devosa","(338) Budrosa","(339) Dorothea","(34) Circe","(340) Eduarda","(341) California","(344) Desiderata","(345) Tercidina","(347) Pariana","(349) Dembowska","(354) Eleonora","(356) Liguria","(36) Atalante","(361) Bononia","(363) Padua","(365) Corduba","(37) Fides","(372) Palma","(374) Burgundia","(375) Ursula","(386) Siegena","(389) Industria","(39) Laetitia","(391) Ingeborg","(4) Vesta","(40) Harmonia","(402) Chloe","(403) Cyane","(409) Aspasia","(41) Daphne","(413) Edburga","(415) Palatia","(416) Vaticana","(419) Aurelia","(42) Isis","(423) Diotima","(426) Hippo","(43) Ariadne","(433) Eros","(434) Hungaria","(435) Ella","(439) Ohio","(44) Nysa","(441) Bathilde","(446) Aeternitas","(45) Eugenia","(453) Tea","(46) Hestia","(462) Eriphyla","(468) Lina","(471) Papagena","(472) Roma","(48) Doris","(481) Emita","(488) Kreusa","(490) Veritas","(496) Gryphia","(5) Astraea","(505) Cava","(51) Nemausa","(510) Mabella","(511) Davida","(513) Centesima","(52) Europa","(526) Jena","(53) Kalypso","(532) Herculina","(54) Alexandra","(554) Peraga","(558) Carmen","(560) Delila","(562) Salome","(563) Suleika","(574) Reginhild","(579) Sidonia","(5797) Bivoj","(58) Concordia","(582) Olympia","(584) Semiramis","(588) Achilles","(599) Luisa","(6) Hebe","(60) Echo","(613) Ginevra","(617) Patroclus","(62) Erato","(624) Hektor","(628) Christine","(63) Ausonia","(639) Latona","(64) Angelina","(648) Pippa","(65) Cybele","(654) Zelinda","(66) Maja","(660) Crescentia","(674) Rachele","(676) Melitta","(68) Leto","(69) Hesperia","(695) Bella","(696) Leonora","(7) Iris","(704) Interamnia","(71) Niobe","(712) Boliviana","(714) Ulula","(739) Mandeville","(741) Botolphia","(747) Winchester","(750) Oskar","(758) Mancunia","(760) Massinga","(770) Bali","(772) Tanete","(773) Irmintraud","(78) Diana","(781) Kartvelia","(782) Montefiore","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(8) Flora","(80) Sappho","(801) Helwerthia","(811) Nauheima","(82) Alkmene","(83) Beatrix","(839) Valborg","(84) Klio","(846) Lipperta","(85) Io","(858) El Djezair","(87) Sylvia","(88) Thisbe","(884) Priamus","(887) Alinda","(89) Julia","(895) Helio","(9) Metis","(90) Antiope","(909) Ulla","(911) Agamemnon","(92) Undina","(925) Alphonsina","(93) Minerva","(94) Aurora","(944) Hidalgo","(969) Leocadia","(97) Klotho","(976) Benjamina","Multiple Asteroids"],"instruments":["DUAL BEAM PHOTOMETER"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":"1981-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/collection_gbo.ast.24-color-survey_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/collection_gbo.ast.24-color-survey_document.xml","scraped_at":"2026-02-25T20:02:10.750779Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.24-color-survey:data::1.0","title":"data collection for the \"24-COLOR ASTEROID SURVEY\" bundle","description":"This is the data collection for the gbo.ast.24-color-survey bundle. This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(1015) Christa","(1019) Strackea","(1025) Riema","(1036) Ganymed","(105) Artemis","(1055) Tynka","(1058) Grubba","(106) Dione","(1075) Helina","(108) Hecuba","(1088) Mitaka","(11) Parthenope","(110) Lydia","(1103) Sequoia","(113) Amalthea","(115) Thyra","(116) Sirona","(1162) Larissa","(1172) Aneas","(1173) Anchises","(119) Althaea","(1199) Geldonia","(12) Victoria","(1208) Troilus","(121) Hermione","(1212) Francette","(122) Gerda","(124) Alkeste","(1263) Varsavia","(128) Nemesis","(1284) Latvia","(129) Antigone","(13) Egeria","(130) Elektra","(1317) Silvretta","(1330) Spiridonia","(136) Austria","(1364) Safara","(139) Juewa","(14) Irene","(140) Siwa","(141) Lumen","(144) Vibilia","(1449) Virtanen","(145) Adeona","(149) Medusa","(1493) Sigrid","(15) Eunomia","(150) Nuwa","(1512) Oulu","(1529) Oterma","(156) Xanthippe","(1566) Icarus","(158) Koronis","(1580) Betulia","(1595) Tanga","(16) Psyche","(1620) Geographos","(1627) Ivar","(163) Erigone","(1636) Porter","(164) Eva","(1645) Waterfield","(1656) Suomi","(166) Rhodope","(167) Urda","(1685) Toro","(169) Zelia","(17) Thetis","(170) Maria","(1717) Arlon","(1727) Mette","(175) Andromache","(176) Iduna","(18) Melpomene","(181) Eucharis","(1830) Pogson","(185) Eunike","(1862) Apollo","(19) Fortuna","(1915) Quetzalcoatl","(192) Nausikaa","(194) Prokne","(196) Philomela","(197) Arete","(198) Ampella","(2) Pallas","(20) Massalia","(200) Dynamene","(208) Lacrimosa","(21) Lutetia","(210) Isabella","(2100) Ra-Shalom","(213) Lilaea","(216) Kleopatra","(217) Eudora","(22) Kalliope","(220) Stephania","(2201) Oljato","(221) Eos","(23) Thalia","(230) Athamantis","(236) Honoria","(24) Themis","(243) Ida","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(262) Valda","(264) Libussa","(268) Adorea","(27) Euterpe","(279) Thule","(28) Bellona","(281) Lucretia","(29) Amphitrite","(293) Brasilia","(3) Juno","(30) Urania","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(313) Chaldaea","(32) Pomona","(323) Brucia","(324) Bamberga","(325) Heidelberga","(326) Tamara","(335) Roberta","(337) Devosa","(338) Budrosa","(339) Dorothea","(34) Circe","(340) Eduarda","(341) California","(344) Desiderata","(345) Tercidina","(347) Pariana","(349) Dembowska","(354) Eleonora","(356) Liguria","(36) Atalante","(361) Bononia","(363) Padua","(365) Corduba","(37) Fides","(372) Palma","(374) Burgundia","(375) Ursula","(386) Siegena","(389) Industria","(39) Laetitia","(391) Ingeborg","(4) Vesta","(40) Harmonia","(402) Chloe","(403) Cyane","(409) Aspasia","(41) Daphne","(413) Edburga","(415) Palatia","(416) Vaticana","(419) Aurelia","(42) Isis","(423) Diotima","(426) Hippo","(43) Ariadne","(433) Eros","(434) Hungaria","(435) Ella","(439) Ohio","(44) Nysa","(441) Bathilde","(446) Aeternitas","(45) Eugenia","(453) Tea","(46) Hestia","(462) Eriphyla","(468) Lina","(471) Papagena","(472) Roma","(48) Doris","(481) Emita","(488) Kreusa","(490) Veritas","(496) Gryphia","(5) Astraea","(505) Cava","(51) Nemausa","(510) Mabella","(511) Davida","(513) Centesima","(52) Europa","(526) Jena","(53) Kalypso","(532) Herculina","(54) Alexandra","(554) Peraga","(558) Carmen","(560) Delila","(562) Salome","(563) Suleika","(574) Reginhild","(579) Sidonia","(5797) Bivoj","(58) Concordia","(582) Olympia","(584) Semiramis","(588) Achilles","(599) Luisa","(6) Hebe","(60) Echo","(613) Ginevra","(617) Patroclus","(62) Erato","(624) Hektor","(628) Christine","(63) Ausonia","(639) Latona","(64) Angelina","(648) Pippa","(65) Cybele","(654) Zelinda","(66) Maja","(660) Crescentia","(674) Rachele","(676) Melitta","(68) Leto","(69) Hesperia","(695) Bella","(696) Leonora","(7) Iris","(704) Interamnia","(71) Niobe","(712) Boliviana","(714) Ulula","(739) Mandeville","(741) Botolphia","(747) Winchester","(750) Oskar","(758) Mancunia","(760) Massinga","(770) Bali","(772) Tanete","(773) Irmintraud","(78) Diana","(781) Kartvelia","(782) Montefiore","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(8) Flora","(80) Sappho","(801) Helwerthia","(811) Nauheima","(82) Alkmene","(83) Beatrix","(839) Valborg","(84) Klio","(846) Lipperta","(85) Io","(858) El Djezair","(87) Sylvia","(88) Thisbe","(884) Priamus","(887) Alinda","(89) Julia","(895) Helio","(9) Metis","(90) Antiope","(909) Ulla","(911) Agamemnon","(92) Undina","(925) Alphonsina","(93) Minerva","(94) Aurora","(944) Hidalgo","(969) Leocadia","(97) Klotho","(976) Benjamina","Multiple Asteroids"],"instruments":["DUAL BEAM PHOTOMETER"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":"1981-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/collection_gbo.ast.24-color-survey_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/collection_gbo.ast.24-color-survey_data.xml","scraped_at":"2026-02-25T20:02:10.750795Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra:document::1.0","title":"document collection for the \"SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS\" bundle","description":"This is the document collection for the gbo.ast-trojan.fornasier-etal.spectra bundle. This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1172) Aneas","(1173) Anchises","(18268) Dardanos","(1871) Astyanax","(192388) 1996 RD29","(192929) 2000 AT44","(2223) Sarpedon","(2357) Phereclos","(30698) Hippokoon","(3548) Eurybates","(4829) Sergestus","(5130) Ilioneus","(5511) Cloanthus","(6998) Tithonus","(9430) Erichthonios","(9818) Eurymachos","Multiple Asteroids","(105685) 2000 SC51","(11089) 1994 CS8","(111113) 2001 VK85","(11351) Leucus","(11488) 1988 RM11","(11663) 1997 GO24","(120453) 1988 RE12","(124729) 2001 SB173","(12921) 1998 WZ5","(13862) 1999 XT160","(14707) 2000 CC20","(15502) 1999 NV27","(15977) 1998 MA11","(163135) 2002 CT22","(163216) 2002 EN68","(17416) 1988 RR10","(18060) 1999 XJ156","(18137) 2000 OU30","(18493) Demoleon","(18940) 2000 QV49","(23549) Epicles","(23694) 1997 KZ3","(24233) 1999 XD94","(24341) 2000 AJ87","(24380) 2000 AA160","(24420) 2000 BU22","(24426) 2000 CR12","(24452) 2000 QU167","(24467) 2000 SS165","(25347) 1999 RQ116","(28958) 2001 CQ42","(31820) 1999 RT186","(31821) 1999 RK225","(32430) 2000 RQ83","(32615) 2001 QU277","(32794) 1989 UE5","(34785) 2001 RG87","(39285) 2001 BP75","(4035) 1986 WD","(43212) 2000 AL113","(47967) 2000 SL298","(48249) 2001 SY345","(48252) 2001 TL212","(51359) 2000 SC17","(53469) 2000 AX8","(56968) 2000 SA92","(65150) 2002 CA126","(65225) 2002 EK44","(6545) 1986 TR6","(7352) 1994 CO","(76804) 2000 QE","(84709) 2002 VW120","(9030) 1989 UX5","(99328) 2001 UY123"],"instruments":["Eso Multimode Instrument","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":["Document"],"start_date":"2002-11-09","stop_date":"2005-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/collection_gbo.ast-trojan.fornasier-etal.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/collection_gbo.ast-trojan.fornasier-etal.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750805Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra:data::1.0","title":"data collection for the \"SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS\" bundle","description":"This is the data collection for the gbo.ast-trojan.fornasier-etal.spectra bundle. This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1172) Aneas","(1173) Anchises","(18268) Dardanos","(1871) Astyanax","(192388) 1996 RD29","(192929) 2000 AT44","(2223) Sarpedon","(2357) Phereclos","(30698) Hippokoon","(3548) Eurybates","(4829) Sergestus","(5130) Ilioneus","(5511) Cloanthus","(6998) Tithonus","(9430) Erichthonios","(9818) Eurymachos","Multiple Asteroids","(105685) 2000 SC51","(11089) 1994 CS8","(111113) 2001 VK85","(11351) Leucus","(11488) 1988 RM11","(11663) 1997 GO24","(120453) 1988 RE12","(124729) 2001 SB173","(12921) 1998 WZ5","(13862) 1999 XT160","(14707) 2000 CC20","(15502) 1999 NV27","(15977) 1998 MA11","(163135) 2002 CT22","(163216) 2002 EN68","(17416) 1988 RR10","(18060) 1999 XJ156","(18137) 2000 OU30","(18493) Demoleon","(18940) 2000 QV49","(23549) Epicles","(23694) 1997 KZ3","(24233) 1999 XD94","(24341) 2000 AJ87","(24380) 2000 AA160","(24420) 2000 BU22","(24426) 2000 CR12","(24452) 2000 QU167","(24467) 2000 SS165","(25347) 1999 RQ116","(28958) 2001 CQ42","(31820) 1999 RT186","(31821) 1999 RK225","(32430) 2000 RQ83","(32615) 2001 QU277","(32794) 1989 UE5","(34785) 2001 RG87","(39285) 2001 BP75","(4035) 1986 WD","(43212) 2000 AL113","(47967) 2000 SL298","(48249) 2001 SY345","(48252) 2001 TL212","(51359) 2000 SC17","(53469) 2000 AX8","(56968) 2000 SA92","(65150) 2002 CA126","(65225) 2002 EK44","(6545) 1986 TR6","(7352) 1994 CO","(76804) 2000 QE","(84709) 2002 VW120","(9030) 1989 UX5","(99328) 2001 UY123"],"instruments":["Eso Multimode Instrument","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":["Data"],"start_date":"2002-11-09","stop_date":"2005-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/collection_gbo.ast-trojan.fornasier-etal.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/collection_gbo.ast-trojan.fornasier-etal.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750839Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.sdss-moc.phot:document::1.0","title":"document collection for the \"SDSS MOVING OBJECT CATALOG\" bundle","description":"This is the document collection for the gbo.sdss-moc.phot bundle. The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":["Document"],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/collection_gbo.sdss-moc.phot_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/collection_gbo.sdss-moc.phot_document.xml","scraped_at":"2026-02-25T20:02:10.750844Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.sdss-moc.phot:data::1.0","title":"data collection for the \"SDSS MOVING OBJECT CATALOG\" bundle","description":"This is the data collection for the gbo.sdss-moc.phot bundle. The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Calibration Target"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":["Data"],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/collection_gbo.sdss-moc.phot_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/collection_gbo.sdss-moc.phot_data.xml","scraped_at":"2026-02-25T20:02:10.750848Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.triad.radiometry:document::1.0","title":"document collection for the \"TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS \" bundle","description":"This is the document collection for the compil.ast.triad.radiometry bundle. This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1972-01-01","stop_date":"1978-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/collection_compil.ast.triad.radiometry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/collection_compil.ast.triad.radiometry_document.xml","scraped_at":"2026-02-25T20:02:10.750852Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.triad.radiometry:data::1.0","title":"data collection for the \"TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS \" bundle","description":"This is the data collection for the compil.ast.triad.radiometry bundle. This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1972-01-01","stop_date":"1978-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/collection_compil.ast.triad.radiometry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/collection_compil.ast.triad.radiometry_data.xml","scraped_at":"2026-02-25T20:02:10.750855Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.sdss-based-taxonomy:document::1.0","title":"document collection for the \"SDSS-BASED ASTEROID TAXONOMY\" bundle","description":"This is the document collection for the ast.sdss-based-taxonomy bundle. The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":["Document"],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/collection_ast.sdss-based-taxonomy_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/collection_ast.sdss-based-taxonomy_document.xml","scraped_at":"2026-02-25T20:02:10.750859Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.sdss-based-taxonomy:data::1.0","title":"data collection for the \"SDSS-BASED ASTEROID TAXONOMY\" bundle","description":"This is the data collection for the ast.sdss-based-taxonomy bundle. The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["SDSS Photometric Camera","2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"],"instrument_hosts":["Apache Point Observatory"],"data_types":["Data"],"start_date":"1998-09-19","stop_date":"2007-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/collection_ast.sdss-based-taxonomy_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/collection_ast.sdss-based-taxonomy_data.xml","scraped_at":"2026-02-25T20:02:10.750863Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-iannini-family.spectra:document::1.0","title":"document collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle","description":"This is the document collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(202951) 1999 RE","(217773) 2000 RO76","(122633) 2000 RA80","(122636) 2000 RZ81","(147311) 2003 AF89","(150781) 2001 QO282","(61207) 2000 OZ7","(61928) 2000 RP4","(81550) 2000 HU23","(87239) 2000 OH45","(88187) 2000 XZ42"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"],"instrument_hosts":["W.M. Keck Observatory"],"data_types":["Document"],"start_date":"2004-11-10","stop_date":"2007-03-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/collection_gbo.ast-iannini-family.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/collection_gbo.ast-iannini-family.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750867Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-iannini-family.spectra:browse::1.0","title":"browse collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle","description":"This is the browse collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(202951) 1999 RE","(217773) 2000 RO76","(122633) 2000 RA80","(122636) 2000 RZ81","(147311) 2003 AF89","(150781) 2001 QO282","(61207) 2000 OZ7","(61928) 2000 RP4","(81550) 2000 HU23","(87239) 2000 OH45","(88187) 2000 XZ42"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"],"instrument_hosts":["W.M. Keck Observatory"],"data_types":["Browse"],"start_date":"2004-11-10","stop_date":"2007-03-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/collection_gbo.ast-iannini-family.spectra_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/collection_gbo.ast-iannini-family.spectra_browse.xml","scraped_at":"2026-02-25T20:02:10.750872Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-iannini-family.spectra:data::1.0","title":"data collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle","description":"This is the data collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(202951) 1999 RE","(217773) 2000 RO76","(122633) 2000 RA80","(122636) 2000 RZ81","(147311) 2003 AF89","(150781) 2001 QO282","(61207) 2000 OZ7","(61928) 2000 RP4","(81550) 2000 HU23","(87239) 2000 OH45","(88187) 2000 XZ42"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"],"instrument_hosts":["W.M. Keck Observatory"],"data_types":["Data"],"start_date":"2004-11-10","stop_date":"2007-03-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/collection_gbo.ast-iannini-family.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/collection_gbo.ast-iannini-family.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750877Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:document::1.0","title":"document collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle","description":"This is the document collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(334008) 2000 UP66","(5498) Gustafsson","(7558) Yurlov","(9147) Kourakuen","(9254) Shunkai","(9481) Menchu","(9553) Colas","(10537) 1991 RY16","(111515) 2001 YC91","(113844) 2002 TV237","(114544) 2003 BN28","(122357) 2000 QH49","(12543) 1998 QM5","(131010) 2000 XQ9","(134455) 1998 ST116","(24941) 1997 JM14","(26886) 1994 TJ2","(28034) 1998 EU13","(28517) 2000 DD7","(36840) 2000 SH112","(37304) 2001 EW23","(38070) Redwine","(44447) 1998 UM21","(46690) 1997 AN23","(53143) 1999 BB9","(56026) 1998 VN52","(56570) 2000 JA21","(60669) 2000 GE4","(94005) 2000 XO25"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory","Supernova Integral Field Spectrograph (SNIFS)","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"],"instrument_hosts":["W.M. Keck Observatory","Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2004-11-10","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/collection_gbo.ast-v-type.moscovitz.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/collection_gbo.ast-v-type.moscovitz.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750883Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:browse::1.0","title":"browse collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle","description":"This is the browse collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(334008) 2000 UP66","(5498) Gustafsson","(7558) Yurlov","(9147) Kourakuen","(9254) Shunkai","(9481) Menchu","(9553) Colas","(10537) 1991 RY16","(111515) 2001 YC91","(113844) 2002 TV237","(114544) 2003 BN28","(122357) 2000 QH49","(12543) 1998 QM5","(131010) 2000 XQ9","(134455) 1998 ST116","(24941) 1997 JM14","(26886) 1994 TJ2","(28034) 1998 EU13","(28517) 2000 DD7","(36840) 2000 SH112","(37304) 2001 EW23","(38070) Redwine","(44447) 1998 UM21","(46690) 1997 AN23","(53143) 1999 BB9","(56026) 1998 VN52","(56570) 2000 JA21","(60669) 2000 GE4","(94005) 2000 XO25"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory","Supernova Integral Field Spectrograph (SNIFS)","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"],"instrument_hosts":["W.M. Keck Observatory","Mauna Kea Observatory"],"data_types":["Browse"],"start_date":"2004-11-10","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/collection_gbo.ast-v-type.moscovitz.spectra_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/collection_gbo.ast-v-type.moscovitz.spectra_browse.xml","scraped_at":"2026-02-25T20:02:10.750889Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:data::1.0","title":"data collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle","description":"This is the data collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(334008) 2000 UP66","(5498) Gustafsson","(7558) Yurlov","(9147) Kourakuen","(9254) Shunkai","(9481) Menchu","(9553) Colas","(10537) 1991 RY16","(111515) 2001 YC91","(113844) 2002 TV237","(114544) 2003 BN28","(122357) 2000 QH49","(12543) 1998 QM5","(131010) 2000 XQ9","(134455) 1998 ST116","(24941) 1997 JM14","(26886) 1994 TJ2","(28034) 1998 EU13","(28517) 2000 DD7","(36840) 2000 SH112","(37304) 2001 EW23","(38070) Redwine","(44447) 1998 UM21","(46690) 1997 AN23","(53143) 1999 BB9","(56026) 1998 VN52","(56570) 2000 JA21","(60669) 2000 GE4","(94005) 2000 XO25"],"instruments":["Keck Echelle Spectrograph and Imager","10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory","Supernova Integral Field Spectrograph (SNIFS)","2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"],"instrument_hosts":["W.M. Keck Observatory","Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2004-11-10","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/collection_gbo.ast-v-type.moscovitz.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/collection_gbo.ast-v-type.moscovitz.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750895Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.fieber-beyer.spectra:document::1.0","title":"document collection for the \"FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA\" bundle","description":"This is the document collection for the gbo.ast.fieber-beyer.spectra bundle. The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1018) Arnolda","(1036) Ganymed","(1064) Aethusa","(1158) Luda","(1166) Sakuntala","(1215) Boyer","(1358) Gaika","(1368) Numidia","(1379) Lomonosowa","(1391) Carelia","(1447) Utra","(1501) Baade","(1587) Kahrstedt","(1607) Mavis","(1644) Rafita","(1722) Goffin","(1772) Gagarin","(1854) Skvortsov","(1960) Guisan","(198) Ampella","(2089) Cetacea","(248) Lameia","(2497) Kulikovskij","(292) Ludovica","(3066) McFadden","(329) Svea","(3345) Tarkovskij","(335) Roberta","(355) Gabriella","(3637) O'Meara","(3760) Poutanen","(3999) Aristarchus","(421) Zahringia","(46) Hestia","(495) Eulalia","(556) Phyllis","(5676) Voltaire","(619) Triberga","(623) Chimaera","(652) Jubilatrix","(660) Crescentia","(6649) Yokotatakao","(695) Bella","(714) Ulula","(787) Moskva","(797) Montana","(875) Nymphe","(879) Ricarda","(897) Lysistrata","(908) Buda","(974) Lioba","Multiple Asteroids","(6212) 1993 MS1"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2000-06-30","stop_date":"2014-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/collection_gbo.ast.fieber-beyer.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/collection_gbo.ast.fieber-beyer.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750902Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.fieber-beyer.spectra:data::1.0","title":"data collection for the \"FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA\" bundle","description":"This is the data collection for the gbo.ast.fieber-beyer.spectra bundle. The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1018) Arnolda","(1036) Ganymed","(1064) Aethusa","(1158) Luda","(1166) Sakuntala","(1215) Boyer","(1358) Gaika","(1368) Numidia","(1379) Lomonosowa","(1391) Carelia","(1447) Utra","(1501) Baade","(1587) Kahrstedt","(1607) Mavis","(1644) Rafita","(1722) Goffin","(1772) Gagarin","(1854) Skvortsov","(1960) Guisan","(198) Ampella","(2089) Cetacea","(248) Lameia","(2497) Kulikovskij","(292) Ludovica","(3066) McFadden","(329) Svea","(3345) Tarkovskij","(335) Roberta","(355) Gabriella","(3637) O'Meara","(3760) Poutanen","(3999) Aristarchus","(421) Zahringia","(46) Hestia","(495) Eulalia","(556) Phyllis","(5676) Voltaire","(619) Triberga","(623) Chimaera","(652) Jubilatrix","(660) Crescentia","(6649) Yokotatakao","(695) Bella","(714) Ulula","(787) Moskva","(797) Montana","(875) Nymphe","(879) Ricarda","(897) Lysistrata","(908) Buda","(974) Lioba","Multiple Asteroids","(6212) 1993 MS1"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2000-06-30","stop_date":"2014-01-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/collection_gbo.ast.fieber-beyer.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/collection_gbo.ast.fieber-beyer.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750908Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.belskaya.polarimetry:document::1.0","title":"document collection for the \"BELSKAYA ASTEROID POLARIMETRY\" bundle","description":"This is the document collection for the gbo.ast.belskaya.polarimetry bundle. This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["AFOSC Polarimeter","Copernico 1.82m Telescope at Asiago Astrophysical Observatory","CrAO Five-Channel Photopolarimeter","1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"],"instrument_hosts":["Asiago Astrophysical Observatory","Crimean Astrophysical Observatory-Partizanskoye"],"data_types":["Document"],"start_date":"1996-06-09","stop_date":"2006-03-07","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/collection_gbo.ast.belskaya.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/collection_gbo.ast.belskaya.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.750913Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.belskaya.polarimetry:data::1.0","title":"data collection for the \"BELSKAYA ASTEROID POLARIMETRY\" bundle","description":"This is the data collection for the gbo.ast.belskaya.polarimetry bundle. This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["AFOSC Polarimeter","Copernico 1.82m Telescope at Asiago Astrophysical Observatory","CrAO Five-Channel Photopolarimeter","1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"],"instrument_hosts":["Asiago Astrophysical Observatory","Crimean Astrophysical Observatory-Partizanskoye"],"data_types":["Data"],"start_date":"1996-06-09","stop_date":"2006-03-07","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/collection_gbo.ast.belskaya.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/collection_gbo.ast.belskaya.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.750918Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.delbo.radiometric-diameters-albedos:document::1.0","title":"document collection for the \"DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS\" bundle","description":"This is the document collection for the ast.delbo.radiometric-diameters-albedos bundle. This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Thermal Infrared Multi-Mode Instrument 2","3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory","JPL Mid-InfraRed Large-well Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","MIRSI - Mid-Infrared Spectrometer and Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","Keck I Long Wavelength Spectrograph (IR)","W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"],"instrument_hosts":["European Southern Observatory","Mauna Kea Observatory","Mauna Kea Observatory","W.M. Keck Observatory"],"data_types":["Document"],"start_date":"2000-03-16","stop_date":"2003-06-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/collection_ast.delbo.radiometric-diameters-albedos_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/collection_ast.delbo.radiometric-diameters-albedos_document.xml","scraped_at":"2026-02-25T20:02:10.750924Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.delbo.radiometric-diameters-albedos:data::1.0","title":"data collection for the \"DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS\" bundle","description":"This is the data collection for the ast.delbo.radiometric-diameters-albedos bundle. This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Thermal Infrared Multi-Mode Instrument 2","3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory","JPL Mid-InfraRed Large-well Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","MIRSI - Mid-Infrared Spectrometer and Imager","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","Keck I Long Wavelength Spectrograph (IR)","W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"],"instrument_hosts":["European Southern Observatory","Mauna Kea Observatory","Mauna Kea Observatory","W.M. Keck Observatory"],"data_types":["Data"],"start_date":"2000-03-16","stop_date":"2003-06-03","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/collection_ast.delbo.radiometric-diameters-albedos_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/collection_ast.delbo.radiometric-diameters-albedos_data.xml","scraped_at":"2026-02-25T20:02:10.750929Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.bus-demeo.taxonomy:document::1.0","title":"document collection for the \"BUS-DEMEO ASTEROID TAXONOMY\" bundle","description":"This is the document collection for the ast.bus-demeo.taxonomy bundle. The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1991-10-25","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/collection_ast.bus-demeo.taxonomy_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/collection_ast.bus-demeo.taxonomy_document.xml","scraped_at":"2026-02-25T20:02:10.750933Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.bus-demeo.taxonomy:data::1.0","title":"data collection for the \"BUS-DEMEO ASTEROID TAXONOMY\" bundle","description":"This is the data collection for the ast.bus-demeo.taxonomy bundle. The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1991-10-25","stop_date":"2008-05-10","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/collection_ast.bus-demeo.taxonomy_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/collection_ast.bus-demeo.taxonomy_data.xml","scraped_at":"2026-02-25T20:02:10.750936Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.mrc.families:document::1.0","title":"document collection for the \"MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES \" bundle","description":"This is the document collection for the ast.mrc.families bundle. This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/collection_ast.mrc.families_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/collection_ast.mrc.families_document.xml","scraped_at":"2026-02-25T20:02:10.750940Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.mrc.families:data::1.0","title":"data collection for the \"MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES \" bundle","description":"This is the data collection for the ast.mrc.families bundle. This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/collection_ast.mrc.families_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/collection_ast.mrc.families_data.xml","scraped_at":"2026-02-25T20:02:10.750944Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.wisniewski.magnitudes:document::1.0","title":"document collection for the \"WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES \" bundle","description":"This is the document collection for the gbo.ast.wisniewski.magnitudes bundle. Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1976-10-19","stop_date":"1993-12-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/collection_gbo.ast.wisniewski.magnitudes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/collection_gbo.ast.wisniewski.magnitudes_document.xml","scraped_at":"2026-02-25T20:02:10.750947Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.wisniewski.magnitudes:data::1.0","title":"data collection for the \"WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES \" bundle","description":"This is the data collection for the gbo.ast.wisniewski.magnitudes bundle. Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1976-10-19","stop_date":"1993-12-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/collection_gbo.ast.wisniewski.magnitudes_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/collection_gbo.ast.wisniewski.magnitudes_data.xml","scraped_at":"2026-02-25T20:02:10.750952Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ices.mastrapa.lab-spectra:document::1.0","title":"document collection for the \"OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE\" bundle","description":"This is the document collection for the gbo.ices.mastrapa.lab-spectra bundle. Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Terrestrial Water Ice"],"instruments":["VARIAN EXCALIBUR SERIES FTS 3000"],"instrument_hosts":[],"data_types":["Document"],"start_date":"2006-04-12","stop_date":"2006-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/collection_gbo.ices.mastrapa.lab-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/collection_gbo.ices.mastrapa.lab-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750956Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ices.mastrapa.lab-spectra:data::1.0","title":"data collection for the \"OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE\" bundle","description":"This is the data collection for the gbo.ices.mastrapa.lab-spectra bundle. Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Terrestrial Water Ice"],"instruments":["VARIAN EXCALIBUR SERIES FTS 3000"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2006-04-12","stop_date":"2006-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/collection_gbo.ices.mastrapa.lab-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/collection_gbo.ices.mastrapa.lab-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750960Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra:document::1.0","title":"document collection for the \"LEBOFSKY ET AL. 3-MICRON ASTEROID DATA \" bundle","description":"This is the document collection for the gbo.ast.lebofsky-etal.3-micron-spectra bundle. 3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(111) Ate","(114) Kassandra","(1172) Aneas","(13) Egeria","(130) Elektra","(139) Juewa","(148) Gallia","(16) Psyche","(173) Ino","(18) Melpomene","(1867) Deiphobus","(19) Fortuna","(2) Pallas","(233) Asterope","(24) Themis","(247) Eukrate","(308) Polyxo","(31) Euphrosyne","(313) Chaldaea","(324) Bamberga","(344) Desiderata","(349) Dembowska","(36) Atalante","(375) Ursula","(386) Siegena","(4) Vesta","(409) Aspasia","(410) Chloris","(423) Diotima","(5) Astraea","(505) Cava","(51) Nemausa","(511) Davida","(52) Europa","(532) Herculina","(55) Pandora","(554) Peraga","(570) Kythera","(65) Cybele","(70) Panopaea","(704) Interamnia","(72) Feronia","(721) Tabora","(74) Galatea","(748) Simeisa","(773) Irmintraud","(776) Berbericia","(87) Sylvia","(88) Thisbe","(92) Undina","Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1977-02-17","stop_date":"1989-04-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/collection_gbo.ast.lebofsky-etal.3-micron-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/collection_gbo.ast.lebofsky-etal.3-micron-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.750966Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra:data::1.0","title":"data collection for the \"LEBOFSKY ET AL. 3-MICRON ASTEROID DATA \" bundle","description":"This is the data collection for the gbo.ast.lebofsky-etal.3-micron-spectra bundle. 3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(111) Ate","(114) Kassandra","(1172) Aneas","(13) Egeria","(130) Elektra","(139) Juewa","(148) Gallia","(16) Psyche","(173) Ino","(18) Melpomene","(1867) Deiphobus","(19) Fortuna","(2) Pallas","(233) Asterope","(24) Themis","(247) Eukrate","(308) Polyxo","(31) Euphrosyne","(313) Chaldaea","(324) Bamberga","(344) Desiderata","(349) Dembowska","(36) Atalante","(375) Ursula","(386) Siegena","(4) Vesta","(409) Aspasia","(410) Chloris","(423) Diotima","(5) Astraea","(505) Cava","(51) Nemausa","(511) Davida","(52) Europa","(532) Herculina","(55) Pandora","(554) Peraga","(570) Kythera","(65) Cybele","(70) Panopaea","(704) Interamnia","(72) Feronia","(721) Tabora","(74) Galatea","(748) Simeisa","(773) Irmintraud","(776) Berbericia","(87) Sylvia","(88) Thisbe","(92) Undina","Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1977-02-17","stop_date":"1989-04-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/collection_gbo.ast.lebofsky-etal.3-micron-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/collection_gbo.ast.lebofsky-etal.3-micron-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.750972Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.smass2.spectra:data::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0","description":"This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(140) SIWA","(2912) LAPALMA","(4352) KYOTO","(4701) MILANI","(2305) KING","(245) VERA","(5563) 1991 VZ1","(1541) ESTONIA","(125) LIBERATRIX","(634) UTE","(3151) TALBOT","(4276) CLIFFORD","(4382) STRAVINSKY","(70) PANOPAEA","(2118) FLAGSTAFF","(7564) GOKUMENON","(1041) ASTA","(188) MENIPPE","(2106) HUGO","(3306) BYRON","(3809) AMICI","(4649) SUMOTO","(606) BRANGANE","(1785) WURM","(1135) COLCHIS","(1830) POGSON","(3340) YINHAI","(670) OTTEGEBE","(1147) STAVROPOLIS","(1348) MICHEL","(7817) ZIBITURTLE","(50) VIRGINIA","(625) XENIA","(338) BUDROSA","(3435) BOURY","(147) PROTOGENEIA","(5184) CAVAILLE-COLL","(192) NAUSIKAA","(26) PROSERPINA","(8516) HYAKKAI","(6500) KODAIRA","(1424) SUNDMANIA","(1618) DAWN","(897) LYSISTRATA","(2813) ZAPPALA","(4591) BRYANTSEV","(133) CYRENE","(1777) GEHRELS","(4200) SHIZUKAGOZEN","(4686) MAISICA","(1998) WS","(741) BOTOLPHIA","(5261) EUREKA","(354) ELEONORA","(478) TERGESTE","(5588) JENNABELLE","(154) BERTHA","(170) MARIA","(211) ISOLDA","(3759) PIIRONEN","(2902) WESTERLUND","(2246) BOWELL","(6582) FLAGSYMPHONY","(868) LOVA","(1594) DANJON","(228) AGATHE","(3389) SINZOT","(4993) COSSARD","(301) BAVARIA","(1176) LUCIDOR","(2504) GAVIOLA","(5965) 1990 SV15","(106) DIONE","(4512) SINUHE","(153) HILDA","(230) ATHAMANTIS","(2875) LAGERKVIST","(6071) SAKITAMA","(2038) BISTRO","(3037) ALKU","(4968) SUZAMUR","(306) UNITAS","(504) CORA","(815) COPPELIA","(912) MARITIMA","(159) AEMILIA","(15) EUNOMIA","(2631) ZHEJIANG","(3900) KNEZEVIC","(3395) JITKA","(3775) ELLENBETH","(4909) COUTEAU","(6509) GIOVANNIPRATESI","(98) IANTHE","(1094) SIBERIA","(2681) OSTROVSKIJ","(3491) FRIDOLIN","(3813) FORTOV","(1056) AZALEA","(4945) IKENOZENNI","(826) HENRIKA","(12) VICTORIA","(4951) IWAMOTO","(2271) KISO","(181) EUCHARIS","(1052) BELGICA","(193) AMBROSIA","(387) AQUITANIA","(759) VINIFERA","(1848) DELVAUX","(1659) PUNKAHARJU","(358) APOLLONIA","(10473) THIROUIN","(105) ARTEMIS","(539) PAMINA","(564) DUDU","(3635) KREUTZ","(2141) SIMFEROPOL","(3265) FLETCHER","(103) HERA","(2370) VAN ALTENA","(631) PHILIPPINA","(1882) RAUMA","(17) THETIS","(269) JUSTITIA","(136) AUSTRIA","(984) GRETIA","(162) LAURENTIA","(161) ATHOR","(90) ANTIOPE","(3678) MONGMANWAI","(2147) KHARADZE","(378) HOLMIA","(476) HEDWIG","(383) JANINA","(795) FINI","(753) TIFLIS","(1071) BRITA","(3074) POPOV","(2575) BULGARIA","(1214) RICHILDE","(592) BATHSEBA","(177) IRMA","(5242) KENREIMONIN","(4804) PASTEUR","(194) PROKNE","(534) NASSOVIA","(973) ARALIA","(2559) SVOBODA","(5318) DIENTZENHOFER","(4718) ARAKI","(30) URANIA","(6078) BURT","(4774) HOBETSU","(279) THULE","(808) MERXIA","(5010) AMENEMHET","(345) TERCIDINA","(677) AALTJE","(2086) NEWELL","(1433) GERAMTINA","(4982) BARTINI","(3307) ATHABASCA","(1502) ARENDA","(152) ATALA","(1539) BORRELLY","(208) LACRIMOSA","(2917) SAWYER HOGG","(679) PAX","(1730) MARCELINE","(1385) GELRIA","(1534) NASI","(547) PRAXEDIS","(2444) LEDERLE","(3885) BOGORODSKIJ","(1271) ISERGINA","(3406) OMSK","(4619) POLYAKHOVA","(481) EMITA","(4726) FEDERER","(1490) LIMPOPO","(494) VIRTUS","(7225) HUNTRESS","(642) CLARA","(1086) NATA","(3865) LINDBLOOM","(205) MARTHA","(3020) NAUDTS","(1783) ALBITSKIJ","(3654) AAS","(554) PERAGA","(7081) LUDIBUNDA","(4547) MASSACHUSETTS","(668) DORA","(2818) JUVENALIS","(46) HESTIA","(1228) SCABIOSA","(4265) KANI","(88) THISBE","(4570) RUNCORN","(3762) AMARAVELLA","(1329) ELIANE","(179) KLYTAEMNESTRA","(56) MELETE","(399) PERSEPHONE","(5348) KENNOGUCHI","(1702) KALAHARI","(3704) GAOSHIQI","(4706) DENNISREUTER","(5595) ROTH","(7405) 1988 FF","(1929) KOLLAA","(1301) YVONNE","(3546) ATANASOFF","(122) GERDA","(2401) AEHLITA","(1601) PATRY","(507) LAODICA","(674) RACHELE","(3249) MUSASHINO","(87) SYLVIA","(737) AREQUIPA","(5344) RYABOV","(7304) NAMIKI","(824) ANASTASIA","(3474) LINSLEY","(886) WASHINGTONIA","(8008) 1988 TQ4","(3363) BOWEN","(2430) BRUCE HELIN","(1332) MARCONIA","(3576) GALINA","(1891) GONDOLA","(3314) BEALS","(142) POLANA","(9970) 1992 ST1","(2852) DECLERCQ","(130) ELEKTRA","(261) PRYMNO","(377) CAMPANIA","(7451) VERBITSKAYA","(189) PHTHIA","(783) NORA","(751) FAINA","(1474) BEIRA","(336) LACADIERA","(4304) GEICHENKO","(4786) TATIANINA","(1304) AROSA","(410) CHLORIS","(337) DEVOSA","(3796) LENE","(543) CHARLOTTE","(1110) JAROSLAWA","(2402) SATPAEV","(1716) PETER","(3371) GIACCONI","(747) WINCHESTER","(2754) EFIMOV","(1015) CHRISTA","(1970) SUMERIA","(353) RUPERTO-CAROLA","(2930) EURIPIDES","(2446) LUNACHARSKY","(2369) CHEKHOV","(331) ETHERIDGEA","(2448) SHOLOKHOV","(3311) PODOBED","(3587) DESCARTES","(5892) MILESDAVIS","(980) ANACOSTIA","(1188) GOTHLANDIA","(384) BURDIGALA","(1903) ADZHIMUSHKAJ","(5690) 1992 EU","(247) EUKRATE","(2244) TESLA","(395) DELIA","(167) URDA","(2744) BIRGITTA","(1751) HERGET","(3862) AGEKIAN","(7404) 1988 AA5","(6086) VRCHLICKY","(3713) PIETERS","(8334) 1984 CF","(4733) ORO","(1734) ZHONGOLOVICH","(4548) WIELEN","(720) BOHLINIA","(4082) SWANN","(4311) ZGURIDI","(2640) HALLSTROM","(3248) FARINELLA","(327) COLUMBIA","(281) LUCRETIA","(365) CORDUBA","(180) GARUMNA","(398) ADMETE","(6585) O'KEEFE","(2567) ELBA","(1638) RUANDA","(3844) LUJIAXI","(3850) PELTIER","(523) ADA","(288) GLAUKE","(1542) SCHALEN","(4284) KAHO","(5195) KAENDLER","(51) NEMAUSA","(1336) ZEELANDIA","(742) EDISONA","(1284) LATVIA","(134) SOPHROSYNE","(4737) KILADZE","(2851) HARBIN","(101) HELENA","(1977) SHURA","(119) ALTHAEA","(4426) ROERICH","(2085) HENAN","(924) TONI","(2107) ILMARI","(2582) HARIMAYA-BASHI","(3175) NETTO","(1839) RAGAZZA","(2736) OPS","(7245) 1991 RN10","(785) ZWETANA","(3542) TANJIAZHEN","(614) PIA","(174) PHAEDRA","(3209) BUCHWALD","(1664) FELIX","(201) PENELOPE","(3155) LEE","(3443) LEETSUNGDAO","(1351) UZBEKISTANIA","(2973) PAOLA","(1857) PARCHOMENKO","(2579) SPARTACUS","(2675) TOLKIEN","Multiple Asteroids","(675) LUDMILLA","(3827) ZDENEKHORSKY","(3873) RODDY","(845) NAEMA","(3767) DIMAGGIO","(1251) HEDERA","(1798) WATTS","(844) LEONTINA","(75) EURYDIKE","(638) MOIRA","(84) KLIO","(462) ERIPHYLA","(1021) FLAMMARIO","(1045) MICHELA","(24) THEMIS","(994) OTTHILD","(2251) TIKHOV","(513) CENTESIMA","(107) CAMILLA","(3971) VORONIKHIN","(6146) ADAMKRAFFT","(62) ERATO","(13) EGERIA","(3737) BECKMAN","(584) SEMIRAMIS","(4036) WHITEHOUSE","(898) HILDEGARD","(1738) OOSTERHOFF","(1480) AUNUS","(4292) AOBA","(2386) NIKONOV","(2911) MIAHELENA","(5079) BRUBECK","(622) ESTHER","(186) CELUTA","(416) VATICANA","(3563) CANTERBURY","(458) HERCYNIA","(1724) VLADIMIR","(1904) MASSEVITCH","(1729) BERYL","(2708) BURNS","(109) FELICITAS","(2635) HUGGINS","(263) DRESDA","(460) SCANIA","(6386) KEITHNOLL","(2604) MARSHAK","(3287) OLMSTEAD","(453) TEA","(1560) STRATTONIA","(164) EVA","(35) LEUKOTHEA","(2042) SITARSKI","(1635) BOHRMANN","(485) GENUA","(519) SYLVANIA","(1128) ASTRID","(286) ICLEA","(1603) NEVA","(3040) KOZAI","(7211) XERXES","(2715) MIELIKKI","(4215) KAMO","(28) BELLONA","(553) KUNDRY","(65) CYBELE","(997) PRISKA","(1888) ZU CHONG-ZHI","(14) IRENE","(4917) YURILVOVIA","(61) DANAE","(386) SIEGENA","(5108) LUBECK","(278) PAULINA","(233) ASTEROPE","(360) CARLOVA","(1494) SAVO","(4845) TSUBETSU","(21) LUTETIA","(5553) CHODAS","(6907) HARRYFORD","(1025) RIEMA","(250) BETTINA","(856) BACKLUNDA","(1386) STORERIA","(266) ALINE","(4033) YATSUGATAKE","(556) PHYLLIS","(4) VESTA","(60) ECHO","(1104) SYRINGA","(729) WATSONIA","(735) MARGHANNA","(1373) CINCINNATI","(4536) DREWPINSKY","(3782) CELLE","(2346) LILIO","(491) CARINA","(1517) BEOGRAD","(5840) RAYBROWN","(496) GRYPHIA","(531) ZERLINA","(3670) NORTHCOTT","(925) ALPHONSINA","(3376) ARMANDHAMMER","(7) IRIS","(1020) ARCADIA","(521) BRIXIA","(687) TINETTE","(2331) PARVULESCO","(102) MIRIAM","(3394) BANNO","(1022) OLYMPIADA","(1201) STRENUA","(1799) KOUSSEVITZKY","(5234) SECHENOV","(516) AMHERSTIA","(779) NINA","(200) DYNAMENE","(1102) PEPITA","(6005) 1989 BD","(375) URSULA","(2354) LAVROV","(321) FLORENTINA","(853) NANSENIA","(971) ALSATIA","(2089) CETACEA","(304) OLGA","(4434) NIKULIN","(2152) HANNIBAL","(4182) MOUNT LOCKE","(2547) HUBEI","(579) SIDONIA","(7056) KIERKEGAARD","(2952) LILLIPUTIA","(781) KARTVELIA","(160) UNA","(3262) MIUNE","(3526) JEFFBELL","(1234) ELYNA","(63) AUSONIA","(6354) VANGELIS","(1014) SEMPHYRA","(2507) BOBONE","(1252) CELESTIA","(2509) CHUKOTKA","(135) HERTHA","(3642) FRIEDEN","(95) ARETHUSA","(1140) CRIMEA","(409) ASPASIA","(5103) DIVIS","(246) ASPORINA","(671) CARNEGIA","(2704) JULIAN LOEWE","(4610) KAJOV","(934) THURINGIA","(226) WERINGIA","(4611) VULKANEIFEL","(3364) ZDENKA","(392) WILHELMINA","(895) HELIO","(3417) TAMBLYN","(5081) SANGUIN","(782) MONTEFIORE","(363) PADUA","(2194) ARPOLA","(423) DIOTIMA","(1107) LICTORIA","(1634) NDOLA","(388) CHARYBDIS","(3375) AMY","(374) BURGUNDIA","(7224) VESNINA","(1055) TYNKA","(3192) A'HEARN","(2737) KOTKA","(5685) SANENOBUFUKUI","(731) SORGA","(776) BERBERICIA","(6211) TSUBAME","(78) DIANA","(115) THYRA","(1930) LUCIFER","(2762) FOWLER","(425) CORNELIA","(431) NEPHELE","(2157) ASHBROOK","(5647) SAROJININAIDU","(1548) PALOMAA","(1587) KAHRSTEDT","(175) ANDROMACHE","(58) CONCORDIA","(2772) DUGAN","(5534) 1941 UN","(3458) BODUOGNAT","(34) CIRCE","(2957) TATSUO","(3829) GUNMA","(1148) RARAHU","(965) ANGELICA","(3198) WALLONIA","(236) HONORIA","(144) VIBILIA","(2396) KOCHI","(4051) HATANAKA","(396) AEOLIA","(2185) GUANGDONG","(4516) PUGOVKIN","(1352) WAWEL","(99913) 1997 CZ5","(2371) DIMITROV","(2720) PYOTR PERVYJ","(3534) SAX","(3430) BRADFIELD","(4135) SVETLANOV","(69) HESPERIA","(611) VALERIA","(3701) PURKYNE","(393) LAMPETIA","(1262) SNIADECKIA","(4817) GLIBA","(6) HEBE","(2508) ALUPKA","(5552) STUDNICKA","(715) TRANSVAALIA","(5240) KWASAN","(3611) DABU","(5134) EBILSON","(1428) MOMBASA","(484) PITTSBURGHIA","(165) LORELEY","(3858) DORCHESTER","(8450) EGOROV","(1323) TUGELA","(4997) KSANA","(148) GALLIA","(3647) DERMOTT","(397) VIENNA","(129) ANTIGONE","(1493) SIGRID","(5632) INGELEHMANN","(2468) REPIN","(3800) KARAYUSUF","(3365) RECOGNE","(3841) DICICCO","(4923) CLARKE","(2022) WEST","(85) IO","(1680) PER BRAHE","(6192) JAVIERGOROSABEL","(673) EDDA","(443) PHOTOGRAPHICA","(111) ATE","(2501) LOHJA","(2521) HEIDI","(5091) ISAKOVSKIJ","(112) IPHIGENIA","(3734) WALAND","(6364) CASARINI","(1204) RENZIA","(2864) SODERBLOM","(3628) BOZNEMCOVA","(4628) LAPLACE","(1483) HAKOILA","(413) EDBURGA","(1300) MARCELLE","(1706) DIECKVOSS","(187) LAMBERTA","(1562) GONDOLATSCH","(355) GABRIELLA","(7763) CRABEELS","(359) GEORGIA","(569) MISA","(1106) CYDONIA","(127) JOHANNA","(3349) MANAS","(4096) KUSHIRO","(804) HISPANIA","(1640) NEMO","(773) IRMINTRAUD","(2881) MEIDEN","(191) KOLGA","(2380) HEILONGJIANG","(1076) VIOLA","(1600) VYSSOTSKY","(2949) KAVERZNEV","(114) KASSANDRA","(541) DEBORAH","(1048) FEODOSIA","(5159) BURBINE","(3686) ANTOKU","(1458) MINEURA","(2789) FOSHAN","(4422) JARRE","(1471) TORNIO","(128) NEMESIS","(866) FATME","(1088) MITAKA","(1263) VARSAVIA","(2099) OPIK","(2801) HUYGENS","(1406) KOMPPA","(6906) JOHNMILLS","(2750) LOVIISA","(4256) KAGAMIGAWA","(4272) ENTSUJI","(4944) KOZLOVSKIJ","(2527) GREGORY","(596) SCHEILA","(961) GUNNIE","(206) HERSILIA","(1807) SLOVAKIA","(7728) GIBLIN","(3669) VERTINSKIJ","(23) THALIA","(4995) GRIFFIN","(4297) EICHHORN","(4719) BURNABY","(985) ROSINA","(258) TYCHE","(166) RHODOPE","(6592) GOYA","(80) SAPPHO","(1653) YAKHONTOVIA","(4107) RUFINO","(79) EURYNOME","(2988) KORHONEN","(207) HEDDA","(1520) IMATRA","(414) LIRIOPE","(578) HAPPELIA","(4342) FREUD","(702) ALAUDA","(342) ENDYMION","(3949) MACH","(402) CHLOE","(444) GYPTIS","(600) MUSA","(6782) 1990 SU10","(4682) BYKOV","(3440) STAMPFER","(1565) LEMAITRE","(511) DAVIDA","(649) JOSEFA","(190) ISMENE","(4037) IKEYA","(2060) CHIRON","(26209) 1997 RD1","(282) CLORINDE","(3137) HORKY","(4287) TRISOV","(2732) WITT","(3687) DZUS","(2335) JAMES","(178) BELISANA","(3007) REAVES","(38) LEDA","(7604) KRIDSADAPORN","(3985) RAYBATSON","(1294) ANTWERPIA","(173) INO","(209) DIDO","(116) SIRONA","(3169) OSTRO","(3861) LORENZ","(1185) NIKKO","(3090) TJOSSEM","(4713) STEEL","(555) NORMA","(372) PALMA","(2035) STEARNS","(633) ZELIMA","(37) FIDES","(1189) TERENTIA","(5416) ESTREMADOYRO","(244) SITA","(2390) NEZARKA","(64) ANGELINA","(5133) PHILLIPADAMS","(970) PRIMULA","(4942) MUNROE","(2167) ERIN","(477) ITALIA","(242) KRIEMHILD","(381) MYRRHA","(5069) TOKEIDAI","(1017) JACQUELINE","(2834) CHRISTY CAROL","(3214) MAKARENKO","(3920) AUBIGNAN","(2410) MORRISON","(241) GERMANIA","(705) ERMINIA","(5111) JACLIFF","(2465) WILSON","(3) JUNO","(5397) VOJISLAVA","(4607) SEILANDFARM","(48) DORIS","(4396) GRESSMANN","(1152) PAWONA","(1968) MEHLTRETTER","(1936) LUGANO","(5102) BENFRANKLIN","(6283) 1980 VX1","(2328) ROBESON","(3910) LISZT","(1726) HOFFMEISTER","(3976) LISE","(2428) KAMENYAR","(1374) ISORA","(1858) LOBACHEVSKIJ","(3684) BERRY","(1563) NOEL","(3630) LUBOMIR","(597) BANDUSIA","(237) COELESTINA","(4417) LECAR","(89) JULIA","(490) VERITAS","(560) DELILA","(10504) DOGA","(4435) HOLT","(151) ABUNDANTIA","(1836) KOMAROV","(470) KILIA","(5482) KORANKEI","(308) POLYXO","(5196) BUSTELLI","(10199) CHARIKLO","(3579) ROCKHOLT","(1007) PAWLOWIA","(2258) VIIPURI","(3744) HORN-D'ARTURO","(2809) VERNADSKIJ","(559) NANON","(2840) KALLAVESI","(3181) AHNERT","(2378) PANNEKOEK","(2791) PARADISE","(2427) KOBZAR","(3320) NAMBA","(1715) SALLI","(5) ASTRAEA","(110) LYDIA","(4678) NINIAN","(5243) CLASIEN","(240) VANADIS","(860) URSINA","(5610) BALSTER","(563) SULEIKA","(2353) ALVA","(4188) KITEZH","(757) PORTLANDIA","(3636) PAJDUSAKOVA","(3451) MENTOR","(150) NUWA","(184) DEJOPEJA","(17480) 1991 PE10","(2934) ARISTOPHANES","(3309) BRORFELDE","(792) METCALFIA","(4261) GEKKO","(1131) PORZIA","(2827) VELLAMO","(4372) QUINCY","(512) TAURINENSIS","(1069) PLANCKIA","(1293) SONJA","(3833) CALINGASTA","(1248 )JUGURTHA","(2598) MERLIN","(2746) HISSAO","(1667) PELS","(5448) SIEBOLD","(5641) MCCLEESE","(2748) PATRICK GENE","(139) JUEWA","(1058) GRUBBA","(1187) AFRA","(2029) BINOMI","(2733) HAMINA","(4900) MAYMELOU","(3345) TARKOVSKIJ","(4479) CHARLIEPARKER","(2409) CHAPMAN","(2625) JACK LONDON","(627) CHARIS","(171) OPHELIA","(4194) SWEITZER","(405) THIA","(7170) LIVESEY","(42) ISIS","(1797) SCHAUMASSE","(322) PHAEO","(257) SILESIA","(4604) STEKARSTROM","(29) AMPHITRITE","(2879) SHIMIZU","(52) EUROPA","(2925) BEATTY","(3788) STEYAERT","(4910) KAWASATO","(146) LUCINA","(2874) JIM YOUNG","(5379) ABEHIROSHI","(5253) FREDCLIFFORD","(5333) KANAYA","(872) HOLDA","(4116) ELACHI","(4156) OKADANOBORU","(551) ORTRUD","(3170) DZHANIBEKOV","(253) MATHILDE","(295) THERESIA","(4838) BILLMCLAUGHLIN","(950) AHRENSA","(905) UNIVERSITAS","(389) INDUSTRIA","(8333) 1982 VF","(1196) SHEBA","(4369) SEIFERT","(1155) AENNA","(348) MAY","(739) MANDEVILLE","(5956) D'ALEMBERT","(1065) AMUNDSENIA","(1660) WOOD","(6716) 1990 RO1","(4969) LAWRENCE","(2169) TAIWAN","(4650) MORI","(1695) WALBECK","(2857) NOT","(1831) NICHOLSON","(5329) DECARO","(929) ALGUNDE","(2040) CHALONGE","(57) MNEMOSYNE","(1860) BARBAROSSA","(2482) PERKIN","(310) MARGARITA","(121) HERMIONE","(1856) RUZENA","(3536) SCHLEICHER","(4702) BEROUNKA","(4424) ARKHIPOVA","(243) IDA","(442) EICHSFELDIA","(352) GISELA","(2045) PEKING","(2566) KIRGHIZIA","(2065) SPICER","(586) THEKLA","(2560) SIEGMA","(4750) MUKAI","(713) LUSCINIA","(2078) NANKING","(2478) TOKAI","(870) MANTO","(94) AURORA","(275) SAPIENTIA","(767) BONDIA","(1508) KEMI","(234) BARBARA","(503) EVELYN","(1016) ANITRA","(1264) LETABA","(1747) WRIGHT","(7397) 1986 QS","(1847) STOBBE","(1407) LINDELOF","(3658) FELDMAN","(196) PHILOMELA","(412) ELISABETHA","(1484) POSTREMA","(2467) KOLLONTAI","(6410) FUJIWARA","(6908) KUNIMOTO","(1604) TOMBAUGH","(1046) EDWIN","(22449) OTTIJEFF","(2373) IMMO","(71) NIOBE","(4534) RIMSKIJ-KORSAKOV","(4001) PTOLEMAEUS","(3712) KRAFT","(572) REBEKKA","(5230) ASAHINA","(604) TEKMESSA","(27) EUTERPE","(2) PALLAS","(1278) KENYA","(3533) TOYOTA","(3831) PETTENGILL","(1360) TARKA","(1350) ROSSELIA","(66) MAJA","(32) POMONA","(2493) ELMER","(1545) THERNOE","(5330) SENRIKYU","(784) PICKERINGIA","(796) SARITA","(2873) BINZEL","(532) HERCULINA","(4072) YAYOI","(172) BAUCIS","(1024) HALE","(117) LOMIA","(3028) ZHANGGUOXI","(456) ABNOBA","(3819) ROBINSON","(4849) ARDENNE","(771) LIBERA","(1593) FAGNES","(4839) DAISETSUZAN","(2872) GENTELEC","(33) POLYHYMNIA","(1212) FRANCETTE","(156) XANTHIPPE","(1998) TITIUS","(2087) KOCHERA","(4711) KATHY","(4853) MARIELUKAC","(2001) EINSTEIN","(2280) KUNIKOV","(5649) DONNASHIRLEY","(3972) RICHARD","(527) EURYANTHE","(3258) SOMNIUM","(951) GASPRA","(4390) MADRETERESA","(12281) CHAUMONT","(2977) CHIVILIKHIN","(3792) PRESTON","(83) BEATRIX","(6233) KIMURA","(1403) IDELSONIA","(910) ANNELIESE","(3581) ALVAREZ","(5565) UKYOUNODAIBU","(1427) RUVUMA","(2423) IBARRURI","(3401) VANPHILOS","(1948) KAMPALA","(259) ALETHEIA","(913) OTILA","(2382) NONIE","(4374) TADAMORI","(4491) OTARU","(108) HECUBA","(2953) VYSHESLAVIA","(3367) ALEX","(1550) TITO","(2349) KURCHENKO","(4327) RIES","(19) FORTUNA","(2906) CALTECH","(479) CAPRERA","(3567) ALVEMA","(404) ARSINOE","(5067) OCCIDENTAL","(5214) OOZORA","(2511) PATTERSON","(3853) HAAS","(11906) 1992 AE1","(216) KLEOPATRA","(2161) GRISSOM","(2455) SOMVILLE","(100480) 1996 UK","(376) GEOMETRIA","(749) MALZOVIA","(930) WESTPHALIA","(4461) SAYAMA","(6077) MESSNER","(2816) PIEN","(5510) 1988 RF7","(4280) SIMONENKO","(74) GALATEA","(3511) TSVETAEVA","(4340) DENCE","(141) LUMEN","(2905) PLASKETT","(3566) LEVITAN","(4748) TOKIWAGOZEN","(688) MELANIE","(4222) NANCITA","(661) CLOELIA","(4407) TAIHAKU","(39) LAETITIA","(471) PAPAGENA","(3385) BRONNINA","(704) INTERAMNIA","(1951) LICK","(403) CYANE","(123) BRUNHILD","(349) DEMBOWSKA","(4844) MATSUYAMA","(169) ZELIA","(317) ROXANE","(2778) TANGSHAN","(197) ARETE","(2996) BOWMAN","(716) BERKELEY","(6230) FRAM","(1186) TURNERA","(629) BERNARDINA","(3903) KLIMENT OHRIDSKI","(2053) NUKI","(3493) STEPANOV","(5051) RALPH","(5438) LORRE","(3096) BEZRUC","(862) FRANZIA","(1613) SMILEY","(3640) GOSTIN","(82) ALKMENE","(18) MELPOMENE","(1553) BAUERSFELDA","(5013) SUZHOUSANZHONG","(3527) MCCORD","(3700) GEOWILLIAMS","(120) LACHESIS","(1327) NAMAQUA","(723) HAMMONIA","(113) AMALTHEA","(267) TIRZA","(5401) MINAMIODA","(16) PSYCHE","(2088) SAHLIA","(2308) SCHILT","(5485) KAULA","(5467) 1988 AG","(5492) THOMA","(5208) ROYER","(158) KORONIS","(4157) IZU","(47) AGLAJA","(264) LIBUSSA","(4343) TETSUYA","(176) IDUNA","(1795) WOLTJER","(2056) NANCY","(2855) BASTIAN","(4305) CLAPTON","(2282) ANDRES BELLO","(124) ALKESTE","(41) DAPHNE","(7562) KAGIROINO-OKA","(2064) THOMSEN","(22) KALLIOPE","(379) HUENNA","(118) PEITHO","(77) FRIGGA","(1414) JEROME","(11785) SARGENT","(5294) ONNETOH","(1032) PAFURI","(2730) BARKS","(3860) PLOVDIV","(2231) DURRELL","(945) BARCELONA","(1039) SONNEBERGA","(1181) LILITH","(1692) SUBBOTINA","(3121) TAMINES","(626) NOTBURGA","(2306) BAUSCHINGER","(3085) DONNA","(4353) ONIZAKI","(11) PARTHENOPE","(18514) 1996 TE11","(4977) RAUTHGUNDIS","(7512) MONICALAZZARIN","(2234) SCHMADEL","(3575) ANYUTA","(825) TANINA","(93) MINERVA","(198) AMPELLA","(706) HIRUNDO","(1222) TINA","(20) MASSALIA","(5008) MIYAZAWAKENJI","(54) ALEXANDRA","(43) ARIADNE","(446) AETERNITAS","(4039) SOUSEKI","(67) ASIA","(941) MURRAY","(3886) SHCHERBAKOVIA","(213) LILAEA","(5038) OVERBEEK","(533) SARA","(545) MESSALINA","(819) BARNARDIANA","(5678) DUBRIDGE","(2606) ODESSA","(2892) FILIPENKO","(6704) 1988 CJ","(183) ISTRIA","(3592) NEDBAL","(417) SUEVIA","(1423) JOSE","(210) ISABELLA","(4124) HERRIOT","(654) ZELINDA","(1098) HAKONE","(1331) SOLVEJG","(1034) MOZARTIA","(7110) JOHNPEARSE","(2569) MADELINE","(2703) RODARI","(3255) THOLEN","(289) NENETTA","(821) FANNY","(653) BERENIKE","(3498) BELTON","(570) KYTHERA","(3710) BOGOSLOVSKIJ","(4558) JANESICK","(2795) LEPAGE","(4584) AKAN","(145) ADEONA","(2807) KARL MARX","(2268) SZMYTOWNA","(2451) DOLLFUS","(391) INGEBORG","(168) SIBYLLA","(2438) OLESHKO","(441) BATHILDE","(3645) FABINI","(3254) BUS","(4299) WIYN","(45) EUGENIA","(3179) BERUTI","(346) HERMENTARIA","(366) VINCENTINA","(185) EUNIKE","(6129) DEMOKRITOS","(2019) VAN ALBADA","(3849) INCIDENTIA","(10) HYGIEA","(789) LENA","(4824) STRADONICE","(2317) GALYA","(25) PHOCAEA","(394) ARDUINA","(863) BENKOELA","(2956) YEOMANS","(5622) PERCYJULIAN","(464) MEGAIRA","(99) DIKE","(238) HYPATIA","(515) ATHALIA","(5227) BOCACARA","(92) UNDINA","(1642) HILL","(2189) ZARAGOZA","(4796) LEWIS","(581) TAUNTONIA","(908) BUDA","(3416) DORRIT","(55) PANDORA","(3256) DAGUERRE","(2724) ORLOV","(3627) SAYERS","(8513) 1991 PK11","(376713) 1995 WQ5","(4332) MILTON","(4744) ROVERETO","(1316) KASAN","(3224) IRKUTSK","(4142) DERSU-UZALA","(5585) PARKS","(4387) TANAKA","(272) ANTONIA","(847) AGNIA","(1372) HAREMARI","(5349) PAULHARRIS","(104) KLYMENE","(40) HARMONIA","(5142) OKUTAMA","(1420) RADCLIFFE","(31) EUPHROSYNE","(4950) HOUSE","(1592) MATHIEU","(284) AMALIA","(743) EUGENISIS","(1549) MIKKO","(2929) HARRIS","(7402) 1987 YH","(712) BOLIVIANA","(332) SIRI","(1796) RIGA","(1324) KNYSNA","(59) ELPIS","(1272) GEFION","(163) ERIGONE","(5732) 1988 WC","(2073) JANACEK","(3545) GAFFEY","(2131) MAYALL","(143) ADRIA","(754) MALABAR","(4523) MIT","(5275) ZDISLAVA","(3730) HURBAN","(1011) LAODAMIA","(44) NYSA","(6249) JENNIFER","(4884) BRAGARIA","(1) CERES","(214) ASCHERA","(3317) PARIS","(4767) SUTOKU","(509) IOLANDA","(601) NERTHUS","(1139) ATAMI","(3674) ERBISBUHL","(129493) 1995 BM2","(4205) DAVID HUGHES","(919) ILSEBILL","(3507) VILAS","(4456) MAWSON","(339) DOROTHEA","(2861) LAMBRECHT","(1134) KEPLER","(1343 )NICOLE","(599) LUISA","(371) BOHEMIA","(3958) KOMENDANTOV","(335) ROBERTA","(5817) ROBERTFRAZER","(5407) 1992 AX","(678) FREDEGUNDIS","(793) ARIZONA","(5087) EMEL'YANOV","(221) EOS","(81) TERPSICHORE","(5576) ALBANESE","(432) PYTHIA","(1510) CHARLOIS","(1567) ALIKOSKI","(1705) TAPIO","(3000) LEONARDO","(76) FREIA","(5392) PARKER","(5364) 1980 RC1","(2659) MILLIS","(1277) DOLORES","(5222) IOFFE","(195) EURYKLEIA","(1655) COMAS SOLA","(1932) JANSKY","(1103) SEQUOIA","(1126) OTERO","(49) PALES","(312) PIERRETTA","(907) RHODA","(2653) PRINCIPIA","(2709) SAGAN","(182) ELSA","(2763) JEANS","(797) MONTANA","(1923) OSIRIS","1996 PW","(3060) DELCANO","(2850) MOZHAISKIJ","(6847) KUNZ-HALLSTEIN","(132) AETHRA","(1629) PECKER","(718) ERIDA","(131) VALA","(5591) KOYO","(6669) OBI","(571) DULCINEA","(2629) RUDRA","(3824) BRENDALEE","(91) AEGINA","(199) BYBLIS","(3197) WEISSMAN","(1766) SLIPHER","(1989) TATRY","(1662) HOFFMANN","(699) HELA","(3065) SARAHILL","(598) OCTAVIA","(1114) LORRAINE","(2316) JO-ANN","(1768) APPENZELLA","(2955) NEWBURN","(96) AEGLE","(814) TAURIS","(100) HEKATE","(3216) HARRINGTON","(434) HUNGARIA"],"instruments":["1.3-m Tinsley Cassegrain/Coude reflector","Mark III Spectrograph","2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory","McGraw-Hill Observatory"],"data_types":["Data"],"start_date":"1993-08-21","stop_date":"1999-03-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/collection_gbo.ast.smass2.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/collection_gbo.ast.smass2.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751036Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.smass2.spectra:document::1.0","title":"Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0","description":"This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(140) SIWA","(2912) LAPALMA","(4352) KYOTO","(4701) MILANI","(2305) KING","(245) VERA","(5563) 1991 VZ1","(1541) ESTONIA","(125) LIBERATRIX","(634) UTE","(3151) TALBOT","(4276) CLIFFORD","(4382) STRAVINSKY","(70) PANOPAEA","(2118) FLAGSTAFF","(7564) GOKUMENON","(1041) ASTA","(188) MENIPPE","(2106) HUGO","(3306) BYRON","(3809) AMICI","(4649) SUMOTO","(606) BRANGANE","(1785) WURM","(1135) COLCHIS","(1830) POGSON","(3340) YINHAI","(670) OTTEGEBE","(1147) STAVROPOLIS","(1348) MICHEL","(7817) ZIBITURTLE","(50) VIRGINIA","(625) XENIA","(338) BUDROSA","(3435) BOURY","(147) PROTOGENEIA","(5184) CAVAILLE-COLL","(192) NAUSIKAA","(26) PROSERPINA","(8516) HYAKKAI","(6500) KODAIRA","(1424) SUNDMANIA","(1618) DAWN","(897) LYSISTRATA","(2813) ZAPPALA","(4591) BRYANTSEV","(133) CYRENE","(1777) GEHRELS","(4200) SHIZUKAGOZEN","(4686) MAISICA","(1998) WS","(741) BOTOLPHIA","(5261) EUREKA","(354) ELEONORA","(478) TERGESTE","(5588) JENNABELLE","(154) BERTHA","(170) MARIA","(211) ISOLDA","(3759) PIIRONEN","(2902) WESTERLUND","(2246) BOWELL","(6582) FLAGSYMPHONY","(868) LOVA","(1594) DANJON","(228) AGATHE","(3389) SINZOT","(4993) COSSARD","(301) BAVARIA","(1176) LUCIDOR","(2504) GAVIOLA","(5965) 1990 SV15","(106) DIONE","(4512) SINUHE","(153) HILDA","(230) ATHAMANTIS","(2875) LAGERKVIST","(6071) SAKITAMA","(2038) BISTRO","(3037) ALKU","(4968) SUZAMUR","(306) UNITAS","(504) CORA","(815) COPPELIA","(912) MARITIMA","(159) AEMILIA","(15) EUNOMIA","(2631) ZHEJIANG","(3900) KNEZEVIC","(3395) JITKA","(3775) ELLENBETH","(4909) COUTEAU","(6509) GIOVANNIPRATESI","(98) IANTHE","(1094) SIBERIA","(2681) OSTROVSKIJ","(3491) FRIDOLIN","(3813) FORTOV","(1056) AZALEA","(4945) IKENOZENNI","(826) HENRIKA","(12) VICTORIA","(4951) IWAMOTO","(2271) KISO","(181) EUCHARIS","(1052) BELGICA","(193) AMBROSIA","(387) AQUITANIA","(759) VINIFERA","(1848) DELVAUX","(1659) PUNKAHARJU","(358) APOLLONIA","(10473) THIROUIN","(105) ARTEMIS","(539) PAMINA","(564) DUDU","(3635) KREUTZ","(2141) SIMFEROPOL","(3265) FLETCHER","(103) HERA","(2370) VAN ALTENA","(631) PHILIPPINA","(1882) RAUMA","(17) THETIS","(269) JUSTITIA","(136) AUSTRIA","(984) GRETIA","(162) LAURENTIA","(161) ATHOR","(90) ANTIOPE","(3678) MONGMANWAI","(2147) KHARADZE","(378) HOLMIA","(476) HEDWIG","(383) JANINA","(795) FINI","(753) TIFLIS","(1071) BRITA","(3074) POPOV","(2575) BULGARIA","(1214) RICHILDE","(592) BATHSEBA","(177) IRMA","(5242) KENREIMONIN","(4804) PASTEUR","(194) PROKNE","(534) NASSOVIA","(973) ARALIA","(2559) SVOBODA","(5318) DIENTZENHOFER","(4718) ARAKI","(30) URANIA","(6078) BURT","(4774) HOBETSU","(279) THULE","(808) MERXIA","(5010) AMENEMHET","(345) TERCIDINA","(677) AALTJE","(2086) NEWELL","(1433) GERAMTINA","(4982) BARTINI","(3307) ATHABASCA","(1502) ARENDA","(152) ATALA","(1539) BORRELLY","(208) LACRIMOSA","(2917) SAWYER HOGG","(679) PAX","(1730) MARCELINE","(1385) GELRIA","(1534) NASI","(547) PRAXEDIS","(2444) LEDERLE","(3885) BOGORODSKIJ","(1271) ISERGINA","(3406) OMSK","(4619) POLYAKHOVA","(481) EMITA","(4726) FEDERER","(1490) LIMPOPO","(494) VIRTUS","(7225) HUNTRESS","(642) CLARA","(1086) NATA","(3865) LINDBLOOM","(205) MARTHA","(3020) NAUDTS","(1783) ALBITSKIJ","(3654) AAS","(554) PERAGA","(7081) LUDIBUNDA","(4547) MASSACHUSETTS","(668) DORA","(2818) JUVENALIS","(46) HESTIA","(1228) SCABIOSA","(4265) KANI","(88) THISBE","(4570) RUNCORN","(3762) AMARAVELLA","(1329) ELIANE","(179) KLYTAEMNESTRA","(56) MELETE","(399) PERSEPHONE","(5348) KENNOGUCHI","(1702) KALAHARI","(3704) GAOSHIQI","(4706) DENNISREUTER","(5595) ROTH","(7405) 1988 FF","(1929) KOLLAA","(1301) YVONNE","(3546) ATANASOFF","(122) GERDA","(2401) AEHLITA","(1601) PATRY","(507) LAODICA","(674) RACHELE","(3249) MUSASHINO","(87) SYLVIA","(737) AREQUIPA","(5344) RYABOV","(7304) NAMIKI","(824) ANASTASIA","(3474) LINSLEY","(886) WASHINGTONIA","(8008) 1988 TQ4","(3363) BOWEN","(2430) BRUCE HELIN","(1332) MARCONIA","(3576) GALINA","(1891) GONDOLA","(3314) BEALS","(142) POLANA","(9970) 1992 ST1","(2852) DECLERCQ","(130) ELEKTRA","(261) PRYMNO","(377) CAMPANIA","(7451) VERBITSKAYA","(189) PHTHIA","(783) NORA","(751) FAINA","(1474) BEIRA","(336) LACADIERA","(4304) GEICHENKO","(4786) TATIANINA","(1304) AROSA","(410) CHLORIS","(337) DEVOSA","(3796) LENE","(543) CHARLOTTE","(1110) JAROSLAWA","(2402) SATPAEV","(1716) PETER","(3371) GIACCONI","(747) WINCHESTER","(2754) EFIMOV","(1015) CHRISTA","(1970) SUMERIA","(353) RUPERTO-CAROLA","(2930) EURIPIDES","(2446) LUNACHARSKY","(2369) CHEKHOV","(331) ETHERIDGEA","(2448) SHOLOKHOV","(3311) PODOBED","(3587) DESCARTES","(5892) MILESDAVIS","(980) ANACOSTIA","(1188) GOTHLANDIA","(384) BURDIGALA","(1903) ADZHIMUSHKAJ","(5690) 1992 EU","(247) EUKRATE","(2244) TESLA","(395) DELIA","(167) URDA","(2744) BIRGITTA","(1751) HERGET","(3862) AGEKIAN","(7404) 1988 AA5","(6086) VRCHLICKY","(3713) PIETERS","(8334) 1984 CF","(4733) ORO","(1734) ZHONGOLOVICH","(4548) WIELEN","(720) BOHLINIA","(4082) SWANN","(4311) ZGURIDI","(2640) HALLSTROM","(3248) FARINELLA","(327) COLUMBIA","(281) LUCRETIA","(365) CORDUBA","(180) GARUMNA","(398) ADMETE","(6585) O'KEEFE","(2567) ELBA","(1638) RUANDA","(3844) LUJIAXI","(3850) PELTIER","(523) ADA","(288) GLAUKE","(1542) SCHALEN","(4284) KAHO","(5195) KAENDLER","(51) NEMAUSA","(1336) ZEELANDIA","(742) EDISONA","(1284) LATVIA","(134) SOPHROSYNE","(4737) KILADZE","(2851) HARBIN","(101) HELENA","(1977) SHURA","(119) ALTHAEA","(4426) ROERICH","(2085) HENAN","(924) TONI","(2107) ILMARI","(2582) HARIMAYA-BASHI","(3175) NETTO","(1839) RAGAZZA","(2736) OPS","(7245) 1991 RN10","(785) ZWETANA","(3542) TANJIAZHEN","(614) PIA","(174) PHAEDRA","(3209) BUCHWALD","(1664) FELIX","(201) PENELOPE","(3155) LEE","(3443) LEETSUNGDAO","(1351) UZBEKISTANIA","(2973) PAOLA","(1857) PARCHOMENKO","(2579) SPARTACUS","(2675) TOLKIEN","Multiple Asteroids","(675) LUDMILLA","(3827) ZDENEKHORSKY","(3873) RODDY","(845) NAEMA","(3767) DIMAGGIO","(1251) HEDERA","(1798) WATTS","(844) LEONTINA","(75) EURYDIKE","(638) MOIRA","(84) KLIO","(462) ERIPHYLA","(1021) FLAMMARIO","(1045) MICHELA","(24) THEMIS","(994) OTTHILD","(2251) TIKHOV","(513) CENTESIMA","(107) CAMILLA","(3971) VORONIKHIN","(6146) ADAMKRAFFT","(62) ERATO","(13) EGERIA","(3737) BECKMAN","(584) SEMIRAMIS","(4036) WHITEHOUSE","(898) HILDEGARD","(1738) OOSTERHOFF","(1480) AUNUS","(4292) AOBA","(2386) NIKONOV","(2911) MIAHELENA","(5079) BRUBECK","(622) ESTHER","(186) CELUTA","(416) VATICANA","(3563) CANTERBURY","(458) HERCYNIA","(1724) VLADIMIR","(1904) MASSEVITCH","(1729) BERYL","(2708) BURNS","(109) FELICITAS","(2635) HUGGINS","(263) DRESDA","(460) SCANIA","(6386) KEITHNOLL","(2604) MARSHAK","(3287) OLMSTEAD","(453) TEA","(1560) STRATTONIA","(164) EVA","(35) LEUKOTHEA","(2042) SITARSKI","(1635) BOHRMANN","(485) GENUA","(519) SYLVANIA","(1128) ASTRID","(286) ICLEA","(1603) NEVA","(3040) KOZAI","(7211) XERXES","(2715) MIELIKKI","(4215) KAMO","(28) BELLONA","(553) KUNDRY","(65) CYBELE","(997) PRISKA","(1888) ZU CHONG-ZHI","(14) IRENE","(4917) YURILVOVIA","(61) DANAE","(386) SIEGENA","(5108) LUBECK","(278) PAULINA","(233) ASTEROPE","(360) CARLOVA","(1494) SAVO","(4845) TSUBETSU","(21) LUTETIA","(5553) CHODAS","(6907) HARRYFORD","(1025) RIEMA","(250) BETTINA","(856) BACKLUNDA","(1386) STORERIA","(266) ALINE","(4033) YATSUGATAKE","(556) PHYLLIS","(4) VESTA","(60) ECHO","(1104) SYRINGA","(729) WATSONIA","(735) MARGHANNA","(1373) CINCINNATI","(4536) DREWPINSKY","(3782) CELLE","(2346) LILIO","(491) CARINA","(1517) BEOGRAD","(5840) RAYBROWN","(496) GRYPHIA","(531) ZERLINA","(3670) NORTHCOTT","(925) ALPHONSINA","(3376) ARMANDHAMMER","(7) IRIS","(1020) ARCADIA","(521) BRIXIA","(687) TINETTE","(2331) PARVULESCO","(102) MIRIAM","(3394) BANNO","(1022) OLYMPIADA","(1201) STRENUA","(1799) KOUSSEVITZKY","(5234) SECHENOV","(516) AMHERSTIA","(779) NINA","(200) DYNAMENE","(1102) PEPITA","(6005) 1989 BD","(375) URSULA","(2354) LAVROV","(321) FLORENTINA","(853) NANSENIA","(971) ALSATIA","(2089) CETACEA","(304) OLGA","(4434) NIKULIN","(2152) HANNIBAL","(4182) MOUNT LOCKE","(2547) HUBEI","(579) SIDONIA","(7056) KIERKEGAARD","(2952) LILLIPUTIA","(781) KARTVELIA","(160) UNA","(3262) MIUNE","(3526) JEFFBELL","(1234) ELYNA","(63) AUSONIA","(6354) VANGELIS","(1014) SEMPHYRA","(2507) BOBONE","(1252) CELESTIA","(2509) CHUKOTKA","(135) HERTHA","(3642) FRIEDEN","(95) ARETHUSA","(1140) CRIMEA","(409) ASPASIA","(5103) DIVIS","(246) ASPORINA","(671) CARNEGIA","(2704) JULIAN LOEWE","(4610) KAJOV","(934) THURINGIA","(226) WERINGIA","(4611) VULKANEIFEL","(3364) ZDENKA","(392) WILHELMINA","(895) HELIO","(3417) TAMBLYN","(5081) SANGUIN","(782) MONTEFIORE","(363) PADUA","(2194) ARPOLA","(423) DIOTIMA","(1107) LICTORIA","(1634) NDOLA","(388) CHARYBDIS","(3375) AMY","(374) BURGUNDIA","(7224) VESNINA","(1055) TYNKA","(3192) A'HEARN","(2737) KOTKA","(5685) SANENOBUFUKUI","(731) SORGA","(776) BERBERICIA","(6211) TSUBAME","(78) DIANA","(115) THYRA","(1930) LUCIFER","(2762) FOWLER","(425) CORNELIA","(431) NEPHELE","(2157) ASHBROOK","(5647) SAROJININAIDU","(1548) PALOMAA","(1587) KAHRSTEDT","(175) ANDROMACHE","(58) CONCORDIA","(2772) DUGAN","(5534) 1941 UN","(3458) BODUOGNAT","(34) CIRCE","(2957) TATSUO","(3829) GUNMA","(1148) RARAHU","(965) ANGELICA","(3198) WALLONIA","(236) HONORIA","(144) VIBILIA","(2396) KOCHI","(4051) HATANAKA","(396) AEOLIA","(2185) GUANGDONG","(4516) PUGOVKIN","(1352) WAWEL","(99913) 1997 CZ5","(2371) DIMITROV","(2720) PYOTR PERVYJ","(3534) SAX","(3430) BRADFIELD","(4135) SVETLANOV","(69) HESPERIA","(611) VALERIA","(3701) PURKYNE","(393) LAMPETIA","(1262) SNIADECKIA","(4817) GLIBA","(6) HEBE","(2508) ALUPKA","(5552) STUDNICKA","(715) TRANSVAALIA","(5240) KWASAN","(3611) DABU","(5134) EBILSON","(1428) MOMBASA","(484) PITTSBURGHIA","(165) LORELEY","(3858) DORCHESTER","(8450) EGOROV","(1323) TUGELA","(4997) KSANA","(148) GALLIA","(3647) DERMOTT","(397) VIENNA","(129) ANTIGONE","(1493) SIGRID","(5632) INGELEHMANN","(2468) REPIN","(3800) KARAYUSUF","(3365) RECOGNE","(3841) DICICCO","(4923) CLARKE","(2022) WEST","(85) IO","(1680) PER BRAHE","(6192) JAVIERGOROSABEL","(673) EDDA","(443) PHOTOGRAPHICA","(111) ATE","(2501) LOHJA","(2521) HEIDI","(5091) ISAKOVSKIJ","(112) IPHIGENIA","(3734) WALAND","(6364) CASARINI","(1204) RENZIA","(2864) SODERBLOM","(3628) BOZNEMCOVA","(4628) LAPLACE","(1483) HAKOILA","(413) EDBURGA","(1300) MARCELLE","(1706) DIECKVOSS","(187) LAMBERTA","(1562) GONDOLATSCH","(355) GABRIELLA","(7763) CRABEELS","(359) GEORGIA","(569) MISA","(1106) CYDONIA","(127) JOHANNA","(3349) MANAS","(4096) KUSHIRO","(804) HISPANIA","(1640) NEMO","(773) IRMINTRAUD","(2881) MEIDEN","(191) KOLGA","(2380) HEILONGJIANG","(1076) VIOLA","(1600) VYSSOTSKY","(2949) KAVERZNEV","(114) KASSANDRA","(541) DEBORAH","(1048) FEODOSIA","(5159) BURBINE","(3686) ANTOKU","(1458) MINEURA","(2789) FOSHAN","(4422) JARRE","(1471) TORNIO","(128) NEMESIS","(866) FATME","(1088) MITAKA","(1263) VARSAVIA","(2099) OPIK","(2801) HUYGENS","(1406) KOMPPA","(6906) JOHNMILLS","(2750) LOVIISA","(4256) KAGAMIGAWA","(4272) ENTSUJI","(4944) KOZLOVSKIJ","(2527) GREGORY","(596) SCHEILA","(961) GUNNIE","(206) HERSILIA","(1807) SLOVAKIA","(7728) GIBLIN","(3669) VERTINSKIJ","(23) THALIA","(4995) GRIFFIN","(4297) EICHHORN","(4719) BURNABY","(985) ROSINA","(258) TYCHE","(166) RHODOPE","(6592) GOYA","(80) SAPPHO","(1653) YAKHONTOVIA","(4107) RUFINO","(79) EURYNOME","(2988) KORHONEN","(207) HEDDA","(1520) IMATRA","(414) LIRIOPE","(578) HAPPELIA","(4342) FREUD","(702) ALAUDA","(342) ENDYMION","(3949) MACH","(402) CHLOE","(444) GYPTIS","(600) MUSA","(6782) 1990 SU10","(4682) BYKOV","(3440) STAMPFER","(1565) LEMAITRE","(511) DAVIDA","(649) JOSEFA","(190) ISMENE","(4037) IKEYA","(2060) CHIRON","(26209) 1997 RD1","(282) CLORINDE","(3137) HORKY","(4287) TRISOV","(2732) WITT","(3687) DZUS","(2335) JAMES","(178) BELISANA","(3007) REAVES","(38) LEDA","(7604) KRIDSADAPORN","(3985) RAYBATSON","(1294) ANTWERPIA","(173) INO","(209) DIDO","(116) SIRONA","(3169) OSTRO","(3861) LORENZ","(1185) NIKKO","(3090) TJOSSEM","(4713) STEEL","(555) NORMA","(372) PALMA","(2035) STEARNS","(633) ZELIMA","(37) FIDES","(1189) TERENTIA","(5416) ESTREMADOYRO","(244) SITA","(2390) NEZARKA","(64) ANGELINA","(5133) PHILLIPADAMS","(970) PRIMULA","(4942) MUNROE","(2167) ERIN","(477) ITALIA","(242) KRIEMHILD","(381) MYRRHA","(5069) TOKEIDAI","(1017) JACQUELINE","(2834) CHRISTY CAROL","(3214) MAKARENKO","(3920) AUBIGNAN","(2410) MORRISON","(241) GERMANIA","(705) ERMINIA","(5111) JACLIFF","(2465) WILSON","(3) JUNO","(5397) VOJISLAVA","(4607) SEILANDFARM","(48) DORIS","(4396) GRESSMANN","(1152) PAWONA","(1968) MEHLTRETTER","(1936) LUGANO","(5102) BENFRANKLIN","(6283) 1980 VX1","(2328) ROBESON","(3910) LISZT","(1726) HOFFMEISTER","(3976) LISE","(2428) KAMENYAR","(1374) ISORA","(1858) LOBACHEVSKIJ","(3684) BERRY","(1563) NOEL","(3630) LUBOMIR","(597) BANDUSIA","(237) COELESTINA","(4417) LECAR","(89) JULIA","(490) VERITAS","(560) DELILA","(10504) DOGA","(4435) HOLT","(151) ABUNDANTIA","(1836) KOMAROV","(470) KILIA","(5482) KORANKEI","(308) POLYXO","(5196) BUSTELLI","(10199) CHARIKLO","(3579) ROCKHOLT","(1007) PAWLOWIA","(2258) VIIPURI","(3744) HORN-D'ARTURO","(2809) VERNADSKIJ","(559) NANON","(2840) KALLAVESI","(3181) AHNERT","(2378) PANNEKOEK","(2791) PARADISE","(2427) KOBZAR","(3320) NAMBA","(1715) SALLI","(5) ASTRAEA","(110) LYDIA","(4678) NINIAN","(5243) CLASIEN","(240) VANADIS","(860) URSINA","(5610) BALSTER","(563) SULEIKA","(2353) ALVA","(4188) KITEZH","(757) PORTLANDIA","(3636) PAJDUSAKOVA","(3451) MENTOR","(150) NUWA","(184) DEJOPEJA","(17480) 1991 PE10","(2934) ARISTOPHANES","(3309) BRORFELDE","(792) METCALFIA","(4261) GEKKO","(1131) PORZIA","(2827) VELLAMO","(4372) QUINCY","(512) TAURINENSIS","(1069) PLANCKIA","(1293) SONJA","(3833) CALINGASTA","(1248 )JUGURTHA","(2598) MERLIN","(2746) HISSAO","(1667) PELS","(5448) SIEBOLD","(5641) MCCLEESE","(2748) PATRICK GENE","(139) JUEWA","(1058) GRUBBA","(1187) AFRA","(2029) BINOMI","(2733) HAMINA","(4900) MAYMELOU","(3345) TARKOVSKIJ","(4479) CHARLIEPARKER","(2409) CHAPMAN","(2625) JACK LONDON","(627) CHARIS","(171) OPHELIA","(4194) SWEITZER","(405) THIA","(7170) LIVESEY","(42) ISIS","(1797) SCHAUMASSE","(322) PHAEO","(257) SILESIA","(4604) STEKARSTROM","(29) AMPHITRITE","(2879) SHIMIZU","(52) EUROPA","(2925) BEATTY","(3788) STEYAERT","(4910) KAWASATO","(146) LUCINA","(2874) JIM YOUNG","(5379) ABEHIROSHI","(5253) FREDCLIFFORD","(5333) KANAYA","(872) HOLDA","(4116) ELACHI","(4156) OKADANOBORU","(551) ORTRUD","(3170) DZHANIBEKOV","(253) MATHILDE","(295) THERESIA","(4838) BILLMCLAUGHLIN","(950) AHRENSA","(905) UNIVERSITAS","(389) INDUSTRIA","(8333) 1982 VF","(1196) SHEBA","(4369) SEIFERT","(1155) AENNA","(348) MAY","(739) MANDEVILLE","(5956) D'ALEMBERT","(1065) AMUNDSENIA","(1660) WOOD","(6716) 1990 RO1","(4969) LAWRENCE","(2169) TAIWAN","(4650) MORI","(1695) WALBECK","(2857) NOT","(1831) NICHOLSON","(5329) DECARO","(929) ALGUNDE","(2040) CHALONGE","(57) MNEMOSYNE","(1860) BARBAROSSA","(2482) PERKIN","(310) MARGARITA","(121) HERMIONE","(1856) RUZENA","(3536) SCHLEICHER","(4702) BEROUNKA","(4424) ARKHIPOVA","(243) IDA","(442) EICHSFELDIA","(352) GISELA","(2045) PEKING","(2566) KIRGHIZIA","(2065) SPICER","(586) THEKLA","(2560) SIEGMA","(4750) MUKAI","(713) LUSCINIA","(2078) NANKING","(2478) TOKAI","(870) MANTO","(94) AURORA","(275) SAPIENTIA","(767) BONDIA","(1508) KEMI","(234) BARBARA","(503) EVELYN","(1016) ANITRA","(1264) LETABA","(1747) WRIGHT","(7397) 1986 QS","(1847) STOBBE","(1407) LINDELOF","(3658) FELDMAN","(196) PHILOMELA","(412) ELISABETHA","(1484) POSTREMA","(2467) KOLLONTAI","(6410) FUJIWARA","(6908) KUNIMOTO","(1604) TOMBAUGH","(1046) EDWIN","(22449) OTTIJEFF","(2373) IMMO","(71) NIOBE","(4534) RIMSKIJ-KORSAKOV","(4001) PTOLEMAEUS","(3712) KRAFT","(572) REBEKKA","(5230) ASAHINA","(604) TEKMESSA","(27) EUTERPE","(2) PALLAS","(1278) KENYA","(3533) TOYOTA","(3831) PETTENGILL","(1360) TARKA","(1350) ROSSELIA","(66) MAJA","(32) POMONA","(2493) ELMER","(1545) THERNOE","(5330) SENRIKYU","(784) PICKERINGIA","(796) SARITA","(2873) BINZEL","(532) HERCULINA","(4072) YAYOI","(172) BAUCIS","(1024) HALE","(117) LOMIA","(3028) ZHANGGUOXI","(456) ABNOBA","(3819) ROBINSON","(4849) ARDENNE","(771) LIBERA","(1593) FAGNES","(4839) DAISETSUZAN","(2872) GENTELEC","(33) POLYHYMNIA","(1212) FRANCETTE","(156) XANTHIPPE","(1998) TITIUS","(2087) KOCHERA","(4711) KATHY","(4853) MARIELUKAC","(2001) EINSTEIN","(2280) KUNIKOV","(5649) DONNASHIRLEY","(3972) RICHARD","(527) EURYANTHE","(3258) SOMNIUM","(951) GASPRA","(4390) MADRETERESA","(12281) CHAUMONT","(2977) CHIVILIKHIN","(3792) PRESTON","(83) BEATRIX","(6233) KIMURA","(1403) IDELSONIA","(910) ANNELIESE","(3581) ALVAREZ","(5565) UKYOUNODAIBU","(1427) RUVUMA","(2423) IBARRURI","(3401) VANPHILOS","(1948) KAMPALA","(259) ALETHEIA","(913) OTILA","(2382) NONIE","(4374) TADAMORI","(4491) OTARU","(108) HECUBA","(2953) VYSHESLAVIA","(3367) ALEX","(1550) TITO","(2349) KURCHENKO","(4327) RIES","(19) FORTUNA","(2906) CALTECH","(479) CAPRERA","(3567) ALVEMA","(404) ARSINOE","(5067) OCCIDENTAL","(5214) OOZORA","(2511) PATTERSON","(3853) HAAS","(11906) 1992 AE1","(216) KLEOPATRA","(2161) GRISSOM","(2455) SOMVILLE","(100480) 1996 UK","(376) GEOMETRIA","(749) MALZOVIA","(930) WESTPHALIA","(4461) SAYAMA","(6077) MESSNER","(2816) PIEN","(5510) 1988 RF7","(4280) SIMONENKO","(74) GALATEA","(3511) TSVETAEVA","(4340) DENCE","(141) LUMEN","(2905) PLASKETT","(3566) LEVITAN","(4748) TOKIWAGOZEN","(688) MELANIE","(4222) NANCITA","(661) CLOELIA","(4407) TAIHAKU","(39) LAETITIA","(471) PAPAGENA","(3385) BRONNINA","(704) INTERAMNIA","(1951) LICK","(403) CYANE","(123) BRUNHILD","(349) DEMBOWSKA","(4844) MATSUYAMA","(169) ZELIA","(317) ROXANE","(2778) TANGSHAN","(197) ARETE","(2996) BOWMAN","(716) BERKELEY","(6230) FRAM","(1186) TURNERA","(629) BERNARDINA","(3903) KLIMENT OHRIDSKI","(2053) NUKI","(3493) STEPANOV","(5051) RALPH","(5438) LORRE","(3096) BEZRUC","(862) FRANZIA","(1613) SMILEY","(3640) GOSTIN","(82) ALKMENE","(18) MELPOMENE","(1553) BAUERSFELDA","(5013) SUZHOUSANZHONG","(3527) MCCORD","(3700) GEOWILLIAMS","(120) LACHESIS","(1327) NAMAQUA","(723) HAMMONIA","(113) AMALTHEA","(267) TIRZA","(5401) MINAMIODA","(16) PSYCHE","(2088) SAHLIA","(2308) SCHILT","(5485) KAULA","(5467) 1988 AG","(5492) THOMA","(5208) ROYER","(158) KORONIS","(4157) IZU","(47) AGLAJA","(264) LIBUSSA","(4343) TETSUYA","(176) IDUNA","(1795) WOLTJER","(2056) NANCY","(2855) BASTIAN","(4305) CLAPTON","(2282) ANDRES BELLO","(124) ALKESTE","(41) DAPHNE","(7562) KAGIROINO-OKA","(2064) THOMSEN","(22) KALLIOPE","(379) HUENNA","(118) PEITHO","(77) FRIGGA","(1414) JEROME","(11785) SARGENT","(5294) ONNETOH","(1032) PAFURI","(2730) BARKS","(3860) PLOVDIV","(2231) DURRELL","(945) BARCELONA","(1039) SONNEBERGA","(1181) LILITH","(1692) SUBBOTINA","(3121) TAMINES","(626) NOTBURGA","(2306) BAUSCHINGER","(3085) DONNA","(4353) ONIZAKI","(11) PARTHENOPE","(18514) 1996 TE11","(4977) RAUTHGUNDIS","(7512) MONICALAZZARIN","(2234) SCHMADEL","(3575) ANYUTA","(825) TANINA","(93) MINERVA","(198) AMPELLA","(706) HIRUNDO","(1222) TINA","(20) MASSALIA","(5008) MIYAZAWAKENJI","(54) ALEXANDRA","(43) ARIADNE","(446) AETERNITAS","(4039) SOUSEKI","(67) ASIA","(941) MURRAY","(3886) SHCHERBAKOVIA","(213) LILAEA","(5038) OVERBEEK","(533) SARA","(545) MESSALINA","(819) BARNARDIANA","(5678) DUBRIDGE","(2606) ODESSA","(2892) FILIPENKO","(6704) 1988 CJ","(183) ISTRIA","(3592) NEDBAL","(417) SUEVIA","(1423) JOSE","(210) ISABELLA","(4124) HERRIOT","(654) ZELINDA","(1098) HAKONE","(1331) SOLVEJG","(1034) MOZARTIA","(7110) JOHNPEARSE","(2569) MADELINE","(2703) RODARI","(3255) THOLEN","(289) NENETTA","(821) FANNY","(653) BERENIKE","(3498) BELTON","(570) KYTHERA","(3710) BOGOSLOVSKIJ","(4558) JANESICK","(2795) LEPAGE","(4584) AKAN","(145) ADEONA","(2807) KARL MARX","(2268) SZMYTOWNA","(2451) DOLLFUS","(391) INGEBORG","(168) SIBYLLA","(2438) OLESHKO","(441) BATHILDE","(3645) FABINI","(3254) BUS","(4299) WIYN","(45) EUGENIA","(3179) BERUTI","(346) HERMENTARIA","(366) VINCENTINA","(185) EUNIKE","(6129) DEMOKRITOS","(2019) VAN ALBADA","(3849) INCIDENTIA","(10) HYGIEA","(789) LENA","(4824) STRADONICE","(2317) GALYA","(25) PHOCAEA","(394) ARDUINA","(863) BENKOELA","(2956) YEOMANS","(5622) PERCYJULIAN","(464) MEGAIRA","(99) DIKE","(238) HYPATIA","(515) ATHALIA","(5227) BOCACARA","(92) UNDINA","(1642) HILL","(2189) ZARAGOZA","(4796) LEWIS","(581) TAUNTONIA","(908) BUDA","(3416) DORRIT","(55) PANDORA","(3256) DAGUERRE","(2724) ORLOV","(3627) SAYERS","(8513) 1991 PK11","(376713) 1995 WQ5","(4332) MILTON","(4744) ROVERETO","(1316) KASAN","(3224) IRKUTSK","(4142) DERSU-UZALA","(5585) PARKS","(4387) TANAKA","(272) ANTONIA","(847) AGNIA","(1372) HAREMARI","(5349) PAULHARRIS","(104) KLYMENE","(40) HARMONIA","(5142) OKUTAMA","(1420) RADCLIFFE","(31) EUPHROSYNE","(4950) HOUSE","(1592) MATHIEU","(284) AMALIA","(743) EUGENISIS","(1549) MIKKO","(2929) HARRIS","(7402) 1987 YH","(712) BOLIVIANA","(332) SIRI","(1796) RIGA","(1324) KNYSNA","(59) ELPIS","(1272) GEFION","(163) ERIGONE","(5732) 1988 WC","(2073) JANACEK","(3545) GAFFEY","(2131) MAYALL","(143) ADRIA","(754) MALABAR","(4523) MIT","(5275) ZDISLAVA","(3730) HURBAN","(1011) LAODAMIA","(44) NYSA","(6249) JENNIFER","(4884) BRAGARIA","(1) CERES","(214) ASCHERA","(3317) PARIS","(4767) SUTOKU","(509) IOLANDA","(601) NERTHUS","(1139) ATAMI","(3674) ERBISBUHL","(129493) 1995 BM2","(4205) DAVID HUGHES","(919) ILSEBILL","(3507) VILAS","(4456) MAWSON","(339) DOROTHEA","(2861) LAMBRECHT","(1134) KEPLER","(1343 )NICOLE","(599) LUISA","(371) BOHEMIA","(3958) KOMENDANTOV","(335) ROBERTA","(5817) ROBERTFRAZER","(5407) 1992 AX","(678) FREDEGUNDIS","(793) ARIZONA","(5087) EMEL'YANOV","(221) EOS","(81) TERPSICHORE","(5576) ALBANESE","(432) PYTHIA","(1510) CHARLOIS","(1567) ALIKOSKI","(1705) TAPIO","(3000) LEONARDO","(76) FREIA","(5392) PARKER","(5364) 1980 RC1","(2659) MILLIS","(1277) DOLORES","(5222) IOFFE","(195) EURYKLEIA","(1655) COMAS SOLA","(1932) JANSKY","(1103) SEQUOIA","(1126) OTERO","(49) PALES","(312) PIERRETTA","(907) RHODA","(2653) PRINCIPIA","(2709) SAGAN","(182) ELSA","(2763) JEANS","(797) MONTANA","(1923) OSIRIS","1996 PW","(3060) DELCANO","(2850) MOZHAISKIJ","(6847) KUNZ-HALLSTEIN","(132) AETHRA","(1629) PECKER","(718) ERIDA","(131) VALA","(5591) KOYO","(6669) OBI","(571) DULCINEA","(2629) RUDRA","(3824) BRENDALEE","(91) AEGINA","(199) BYBLIS","(3197) WEISSMAN","(1766) SLIPHER","(1989) TATRY","(1662) HOFFMANN","(699) HELA","(3065) SARAHILL","(598) OCTAVIA","(1114) LORRAINE","(2316) JO-ANN","(1768) APPENZELLA","(2955) NEWBURN","(96) AEGLE","(814) TAURIS","(100) HEKATE","(3216) HARRINGTON","(434) HUNGARIA"],"instruments":["1.3-m Tinsley Cassegrain/Coude reflector","Mark III Spectrograph","2.4-m Hiltner Ritchey-Chretien equatorial reflector","Mark III Spectrograph"],"instrument_hosts":["McGraw-Hill Observatory","McGraw-Hill Observatory"],"data_types":["Document"],"start_date":"1993-08-21","stop_date":"1999-03-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/collection_gbo.ast.smass2.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/collection_gbo.ast.smass2.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751102Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:smallbodiesoccultations:data::3.0","title":"Small Bodies Occultations V3.0","description":"This data set is intended to include all reported timings of observed asteroid, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version is complete through to May 2019, with observations up until Sept 2019.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","SATELLITE"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1911-08-14","stop_date":"2019-09-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/collection_smallbodiesoccultations_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/collection_smallbodiesoccultations_data.xml","scraped_at":"2026-02-25T20:02:10.751115Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:smallbodiesoccultations:document::3.0","title":"Small Bodies Occultations V3.0","description":"This data set is intended to include all reported timings of observed asteroid, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version is complete through to May 2019, with observations up until Sept 2019.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","SATELLITE"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1911-08-14","stop_date":"2019-09-30","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/collection_smallbodiesoccultations_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/collection_smallbodiesoccultations_document.xml","scraped_at":"2026-02-25T20:02:10.751120Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_binary_parameters_compilation:data::3.0","title":"BINARY MINOR PLANETS V3.0","description":"The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1978-12-01","stop_date":"2019-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/collection_ast_binary_parameters_compilation_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/collection_ast_binary_parameters_compilation_data.xml","scraped_at":"2026-02-25T20:02:10.751124Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_binary_parameters_compilation:document::3.0","title":"BINARY MINOR PLANETS V3.0","description":"The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1978-12-01","stop_date":"2019-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/collection_ast_binary_parameters_compilation_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/collection_ast_binary_parameters_compilation_document.xml","scraped_at":"2026-02-25T20:02:10.751128Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images:data::1.0","title":"OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Purgathofer SA71-20","Landolt SA114-790","Landolt SA114-223","(101955) Bennu","Purgathofer SA71-07"],"instruments":["University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope"],"instrument_hosts":["Steward Observatory"],"data_types":["Data"],"start_date":"2005-09-14","stop_date":"2005-09-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/collection_orex.gbo.ast-bennu.lightcurves-images_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/collection_orex.gbo.ast-bennu.lightcurves-images_data.xml","scraped_at":"2026-02-25T20:02:10.751132Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images:document::1.0","title":"OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Purgathofer SA71-20","Landolt SA114-790","Landolt SA114-223","(101955) Bennu","Purgathofer SA71-07"],"instruments":["University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope"],"instrument_hosts":["Steward Observatory"],"data_types":["Document"],"start_date":"2005-09-14","stop_date":"2005-09-17","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/collection_orex.gbo.ast-bennu.lightcurves-images_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/collection_orex.gbo.ast-bennu.lightcurves-images_document.xml","scraped_at":"2026-02-25T20:02:10.751137Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.zappala-etal.families:data::1.0","title":"Zappala et al. (1995) Asteroid Dynamical Families V1.0","description":"Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/collection_ast.zappala-etal.families_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/collection_ast.zappala-etal.families_data.xml","scraped_at":"2026-02-25T20:02:10.751141Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.zappala-etal.families:document::1.0","title":"Zappala et al. (1995) Asteroid Dynamical Families V1.0","description":"Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/collection_ast.zappala-etal.families_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/collection_ast.zappala-etal.families_document.xml","scraped_at":"2026-02-25T20:02:10.751145Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-1999td10.images-lightcurves:data::1.0","title":"Visual Imaging and Photometry of (29981) 1999 TD10 V1.0","description":"The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Landolt PG2213-006","Landolt SA95","Landolt PG0231+051","Landolt SA92","(29981) 1999 TD10"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","CFIM+T2KA"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2001-09-21","stop_date":"2002-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/collection_gbo.ast-1999td10.images-lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/collection_gbo.ast-1999td10.images-lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.751149Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-1999td10.images-lightcurves:document::1.0","title":"Visual Imaging and Photometry of (29981) 1999 TD10 V1.0","description":"The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Landolt PG2213-006","Landolt SA95","Landolt PG0231+051","Landolt SA92","(29981) 1999 TD10"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","CFIM+T2KA"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Document"],"start_date":"2001-09-21","stop_date":"2002-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/collection_gbo.ast-1999td10.images-lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/collection_gbo.ast-1999td10.images-lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.751154Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.phobos.shape-model:data::1.0","title":"Gaskell Phobos Shape Model V1.0","description":"The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Viking","Phobos 2"],"targets":["Mars I (Phobos)"],"instruments":["Visual Imaging Subsystem - Camera A","Visual Imaging Subsystem - Camera B","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat"],"instrument_hosts":["Viking Orbiter 2","Viking Orbiter 2","Viking Orbiter 1","Viking Orbiter 1","Phobos 2"],"data_types":["Data"],"start_date":"1976-07-24","stop_date":"1989-03-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/collection_gaskell.phobos.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/collection_gaskell.phobos.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751159Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.phobos.shape-model:document::1.0","title":"Gaskell Phobos Shape Model V1.0","description":"The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Viking","Phobos 2"],"targets":["Mars I (Phobos)"],"instruments":["Visual Imaging Subsystem - Camera A","Visual Imaging Subsystem - Camera B","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat"],"instrument_hosts":["Viking Orbiter 2","Viking Orbiter 2","Viking Orbiter 1","Viking Orbiter 1","Phobos 2"],"data_types":["Document"],"start_date":"1976-07-24","stop_date":"1989-03-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/collection_gaskell.phobos.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/collection_gaskell.phobos.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751164Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra:document::1.0","title":"document collection for the \"IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS \" bundle","description":"This is the document collection for the gbo.ast.irtf-spex-collection.spectra bundle. This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1014) Semphyra","(1020) Arcadia","(1039) Sonneberga","(1098) Hakone","(110) Lydia","(1103) Sequoia","(112) Iphigenia","(1228) Scabiosa","(1251) Hedera","(1275) Cimbria","(129) Antigone","(1317) Silvretta","(135) Hertha","(136) Austria","(143) Adria","(144) Vibilia","(1468) Zomba","(1545) Thernoe","(1580) Betulia","(16) Psyche","(166) Rhodope","(1662) Hoffmann","(17) Thetis","(173) Ino","(179) Klytaemnestra","(1858) Lobachevskij","(186) Celuta","(1903) Adzhimushkaj","(1929) Kollaa","(2) Pallas","(2042) Sitarski","(2045) Peking","(2048) Dwornik","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(213) Lilaea","(214) Aschera","(216) Kleopatra","(217) Eudora","(221) Eos","(224) Oceana","(229) Adelinda","(233) Asterope","(234) Barbara","(2371) Dimitrov","(2401) Aehlita","(2442) Corbett","(246) Asporina","(250) Bettina","(2501) Lohja","(2504) Gaviola","(2511) Patterson","(25143) Itokawa","(2566) Kirghizia","(2579) Spartacus","(260) Huberta","(2606) Odessa","(2653) Principia","(27343) Deannashea","(2763) Jeans","(2795) Lepage","(2823) van der Laan","(283) Emma","(284) Amalia","(2851) Harbin","(289) Nenetta","(2912) Lapalma","(304) Olga","(3103) Eger","(3155) Lee","(317) Roxane","(322) Phaeo","(335) Roberta","(3363) Bowen","(337) Devosa","(3395) Jitka","(347) Pariana","(354) Eleonora","(359) Georgia","(3657) Ermolova","(3703) Volkonskaya","(375) Ursula","(3782) Celle","(379) Huenna","(38070) Redwine","(3819) Robinson","(383) Janina","(387) Aquitania","(397) Vienna","(4) Vesta","(4038) Kristina","(409) Aspasia","(41) Daphne","(417) Suevia","(4188) Kitezh","(419) Aurelia","(4215) Kamo","(426) Hippo","(43) Ariadne","(434) Hungaria","(44) Nysa","(441) Bathilde","(4426) Roerich","(446) Aeternitas","(46) Hestia","(4796) Lewis","(497) Iva","(50) Virginia","(505) Cava","(5111) Jacliff","(517) Edith","(53) Kalypso","(536) Merapi","(547) Praxedis","(5481) Kiuchi","(5498) Gustafsson","(55) Pandora","(559) Nanon","(572) Rebekka","(5840) Raybrown","(599) Luisa","(62) Erato","(64) Angelina","(661) Cloelia","(676) Melitta","(678) Fredegundis","(679) Pax","(686) Gersuind","(709) Fringilla","(71) Niobe","(712) Boliviana","(739) Mandeville","(742) Edisona","(75) Eurydike","(757) Portlandia","(758) Mancunia","(768) Struveana","(77) Frigga","(771) Libera","(779) Nina","(7800) Zhongkeyuan","(785) Zwetana","(789) Lena","(808) Merxia","(809) Lundia","(844) Leontina","(847) Agnia","(863) Benkoela","(87) Sylvia","(872) Holda","(89) Julia","(899) Jokaste","(909) Ulla","(9481) Menchu","(9553) Colas","(956) Elisa","(97) Klotho","(973) Aralia","(976) Benjamina","(980) Anacostia","(984) Gretia","(99) Dike","Multiple Asteroids","(10537) 1991 RY16","(139359) 2001 ME1","(16416) 1987 SM3","(26760) 2001 KP41","(26886) 1994 TJ2","(29075) 1950 DA","(33881) 2000 JK66","(36412) 2000 OP49","(50098) 2000 AG98","(97276) 1999 XC143"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2000-09-04","stop_date":"2009-08-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/collection_gbo.ast.irtf-spex-collection.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/collection_gbo.ast.irtf-spex-collection.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751178Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra:data::1.0","title":"data collection for the \"IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS \" bundle","description":"This is the data collection for the gbo.ast.irtf-spex-collection.spectra bundle. This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1014) Semphyra","(1020) Arcadia","(1039) Sonneberga","(1098) Hakone","(110) Lydia","(1103) Sequoia","(112) Iphigenia","(1228) Scabiosa","(1251) Hedera","(1275) Cimbria","(129) Antigone","(1317) Silvretta","(135) Hertha","(136) Austria","(143) Adria","(144) Vibilia","(1468) Zomba","(1545) Thernoe","(1580) Betulia","(16) Psyche","(166) Rhodope","(1662) Hoffmann","(17) Thetis","(173) Ino","(179) Klytaemnestra","(1858) Lobachevskij","(186) Celuta","(1903) Adzhimushkaj","(1929) Kollaa","(2) Pallas","(2042) Sitarski","(2045) Peking","(2048) Dwornik","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(213) Lilaea","(214) Aschera","(216) Kleopatra","(217) Eudora","(221) Eos","(224) Oceana","(229) Adelinda","(233) Asterope","(234) Barbara","(2371) Dimitrov","(2401) Aehlita","(2442) Corbett","(246) Asporina","(250) Bettina","(2501) Lohja","(2504) Gaviola","(2511) Patterson","(25143) Itokawa","(2566) Kirghizia","(2579) Spartacus","(260) Huberta","(2606) Odessa","(2653) Principia","(27343) Deannashea","(2763) Jeans","(2795) Lepage","(2823) van der Laan","(283) Emma","(284) Amalia","(2851) Harbin","(289) Nenetta","(2912) Lapalma","(304) Olga","(3103) Eger","(3155) Lee","(317) Roxane","(322) Phaeo","(335) Roberta","(3363) Bowen","(337) Devosa","(3395) Jitka","(347) Pariana","(354) Eleonora","(359) Georgia","(3657) Ermolova","(3703) Volkonskaya","(375) Ursula","(3782) Celle","(379) Huenna","(38070) Redwine","(3819) Robinson","(383) Janina","(387) Aquitania","(397) Vienna","(4) Vesta","(4038) Kristina","(409) Aspasia","(41) Daphne","(417) Suevia","(4188) Kitezh","(419) Aurelia","(4215) Kamo","(426) Hippo","(43) Ariadne","(434) Hungaria","(44) Nysa","(441) Bathilde","(4426) Roerich","(446) Aeternitas","(46) Hestia","(4796) Lewis","(497) Iva","(50) Virginia","(505) Cava","(5111) Jacliff","(517) Edith","(53) Kalypso","(536) Merapi","(547) Praxedis","(5481) Kiuchi","(5498) Gustafsson","(55) Pandora","(559) Nanon","(572) Rebekka","(5840) Raybrown","(599) Luisa","(62) Erato","(64) Angelina","(661) Cloelia","(676) Melitta","(678) Fredegundis","(679) Pax","(686) Gersuind","(709) Fringilla","(71) Niobe","(712) Boliviana","(739) Mandeville","(742) Edisona","(75) Eurydike","(757) Portlandia","(758) Mancunia","(768) Struveana","(77) Frigga","(771) Libera","(779) Nina","(7800) Zhongkeyuan","(785) Zwetana","(789) Lena","(808) Merxia","(809) Lundia","(844) Leontina","(847) Agnia","(863) Benkoela","(87) Sylvia","(872) Holda","(89) Julia","(899) Jokaste","(909) Ulla","(9481) Menchu","(9553) Colas","(956) Elisa","(97) Klotho","(973) Aralia","(976) Benjamina","(980) Anacostia","(984) Gretia","(99) Dike","Multiple Asteroids","(10537) 1991 RY16","(139359) 2001 ME1","(16416) 1987 SM3","(26760) 2001 KP41","(26886) 1994 TJ2","(29075) 1950 DA","(33881) 2000 JK66","(36412) 2000 OP49","(50098) 2000 AG98","(97276) 1999 XC143"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2000-09-04","stop_date":"2009-08-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/collection_gbo.ast.irtf-spex-collection.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/collection_gbo.ast.irtf-spex-collection.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751191Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.torino.polarimetry:document::1.0","title":"document collection for the \"TORINO ASTEROID POLARIMETRY\" bundle","description":"This is the document collection for the gbo.ast.torino.polarimetry bundle. This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":["Document"],"start_date":"1995-01-01","stop_date":"2005-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/collection_gbo.ast.torino.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/collection_gbo.ast.torino.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.751196Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.torino.polarimetry:data::1.0","title":"data collection for the \"TORINO ASTEROID POLARIMETRY\" bundle","description":"This is the data collection for the gbo.ast.torino.polarimetry bundle. This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":["Data"],"start_date":"1995-01-01","stop_date":"2005-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/collection_gbo.ast.torino.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/collection_gbo.ast.torino.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.751200Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.denis.ir-photometry:document::1.0","title":"document collection for the \"NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS\" bundle","description":"This is the document collection for the gbo.ast.denis.ir-photometry bundle. The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["DENIS 3-Channel Near-Infrared Camera","1-m photometric Cassegrain reflector at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":["Document"],"start_date":"1995-12-01","stop_date":"1999-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/collection_gbo.ast.denis.ir-photometry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/collection_gbo.ast.denis.ir-photometry_document.xml","scraped_at":"2026-02-25T20:02:10.751204Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.denis.ir-photometry:data::1.0","title":"data collection for the \"NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS\" bundle","description":"This is the data collection for the gbo.ast.denis.ir-photometry bundle. The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["DENIS 3-Channel Near-Infrared Camera","1-m photometric Cassegrain reflector at European Southern Observatory"],"instrument_hosts":["European Southern Observatory"],"data_types":["Data"],"start_date":"1995-12-01","stop_date":"1999-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/collection_gbo.ast.denis.ir-photometry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/collection_gbo.ast.denis.ir-photometry_data.xml","scraped_at":"2026-02-25T20:02:10.751209Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-153591.radar.shape-model:document::1.0","title":"document collection for the \"SHAPE MODEL OF ASTEROID (153591) 2001 SN263\" bundle","description":"This is the document collection for the gbo.ast-153591.radar.shape-model bundle. We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(153591) 2001 SN263","(153591) 2001 SN263"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-9E","Leura 0.25m","SBIG ST-6","1-m Grubb reflector","FLI--FL-PL3041-1-BB","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Apogee AP8","Modra 0.6-m","Observatoire de Haute-Provence 1.2m CCD 1996-2014","1.20-m Newtonian reflector at Observatory of Haute-Provence","Palmer Divide 0.5m CCD","0.5m"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Leura","Crimean Astrophysical Observatory-Simeis","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Modra","Observatory of Haute-Provence","Palmer Divide Observatory"],"data_types":["Document"],"start_date":"2007-01-12","stop_date":"2008-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/collection_gbo.ast-153591.radar.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/collection_gbo.ast-153591.radar.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751217Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-153591.radar.shape-model:data::1.0","title":"data collection for the \"SHAPE MODEL OF ASTEROID (153591) 2001 SN263\" bundle","description":"This is the data collection for the gbo.ast-153591.radar.shape-model bundle. We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(153591) 2001 SN263","(153591) 2001 SN263"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-9E","Leura 0.25m","SBIG ST-6","1-m Grubb reflector","FLI--FL-PL3041-1-BB","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Apogee AP8","Modra 0.6-m","Observatoire de Haute-Provence 1.2m CCD 1996-2014","1.20-m Newtonian reflector at Observatory of Haute-Provence","Palmer Divide 0.5m CCD","0.5m"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Leura","Crimean Astrophysical Observatory-Simeis","Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA","Modra","Observatory of Haute-Provence","Palmer Divide Observatory"],"data_types":["Data"],"start_date":"2007-01-12","stop_date":"2008-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/collection_gbo.ast-153591.radar.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/collection_gbo.ast-153591.radar.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751226Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-8567.radar.shape-model:document::1.0","title":"document collection for the \"SHAPE AND ROTATION OF (8567) 1996 HW1 \" bundle","description":"This is the document collection for the gbo.ast-8567.radar.shape-model bundle. We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(8567) 1996 HW1"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-8","SBIG ST-6","1-m Grubb reflector","SBIG ST-6","Apogee AP8","Modra 0.6-m","APOGEE AP8"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Crimean Astrophysical Observatory-Simeis","Modra"],"data_types":["Document"],"start_date":"2005-06-26","stop_date":"2009-01-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/collection_gbo.ast-8567.radar.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/collection_gbo.ast-8567.radar.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751232Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-8567.radar.shape-model:data::1.0","title":"data collection for the \"SHAPE AND ROTATION OF (8567) 1996 HW1 \" bundle","description":"This is the data collection for the gbo.ast-8567.radar.shape-model bundle. We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(8567) 1996 HW1"],"instruments":["Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna at Arecibo Observatory","Arecibo Planetary Radar Transmitter","305-m fixed spherical reflecting antenna at Arecibo Observatory","Table Mountain Observatory 24-inch CCD camera","61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory","SBIG ST-8","Hunters Hill Observatory 0.36-m SCT","SBIG ST-8","SBIG ST-6","1-m Grubb reflector","SBIG ST-6","Apogee AP8","Modra 0.6-m","APOGEE AP8"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Table Mountain Observatory","Hunters Hill Observatory","Crimean Astrophysical Observatory-Simeis","Modra"],"data_types":["Data"],"start_date":"2005-06-26","stop_date":"2009-01-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/collection_gbo.ast-8567.radar.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/collection_gbo.ast-8567.radar.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751238Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves:document::1.0","title":"document collection for the \"SUBMILLIMETER LIGHTCURVES OF ASTEROIDS \" bundle","description":"This is the document collection for the gbo.ast.chamberlain.sub-mm-lightcurves bundle. Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(12) Victoria","(2) Pallas","(3) Juno","(4) Vesta","(511) Davida","(85) Io","Multiple Asteroids"],"instruments":["SMT MPIfR 19-channel Bolometer","10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"],"instrument_hosts":["Submillimeter Telescope Observatory"],"data_types":["Document"],"start_date":"2003-01-04","stop_date":"2004-05-06","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/collection_gbo.ast.chamberlain.sub-mm-lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/collection_gbo.ast.chamberlain.sub-mm-lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.751243Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves:data::1.0","title":"data collection for the \"SUBMILLIMETER LIGHTCURVES OF ASTEROIDS \" bundle","description":"This is the data collection for the gbo.ast.chamberlain.sub-mm-lightcurves bundle. Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(12) Victoria","(2) Pallas","(3) Juno","(4) Vesta","(511) Davida","(85) Io","Multiple Asteroids"],"instruments":["SMT MPIfR 19-channel Bolometer","10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"],"instrument_hosts":["Submillimeter Telescope Observatory"],"data_types":["Data"],"start_date":"2003-01-04","stop_date":"2004-05-06","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/collection_gbo.ast.chamberlain.sub-mm-lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/collection_gbo.ast.chamberlain.sub-mm-lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.751247Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.skads.astrometry-photometry:document::1.0","title":"document collection for the \"SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)\" bundle","description":"This is the document collection for the gbo.ast.skads.astrometry-photometry bundle. The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Kitt Peak Mosaic Camera","4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Document"],"start_date":"2001-03-21","stop_date":"2001-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/collection_gbo.ast.skads.astrometry-photometry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/collection_gbo.ast.skads.astrometry-photometry_document.xml","scraped_at":"2026-02-25T20:02:10.751251Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.skads.astrometry-photometry:data::1.0","title":"data collection for the \"SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)\" bundle","description":"This is the data collection for the gbo.ast.skads.astrometry-photometry bundle. The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Kitt Peak Mosaic Camera","4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2001-03-21","stop_date":"2001-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/collection_gbo.ast.skads.astrometry-photometry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/collection_gbo.ast.skads.astrometry-photometry_data.xml","scraped_at":"2026-02-25T20:02:10.751256Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteoroid.cmor.radar-survey:document::1.0","title":"document collection for the \"CMOR METEOROID STREAM SURVEY\" bundle","description":"This is the document collection for the gbo.meteoroid.cmor.radar-survey bundle. A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple"],"instruments":["Canadian Meteor Orbit Radar (CMOR)","Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"],"instrument_hosts":["UWO Meteor Radar Complex"],"data_types":["Document"],"start_date":"2002-01-01","stop_date":"2008-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/collection_gbo.meteoroid.cmor.radar-survey_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/collection_gbo.meteoroid.cmor.radar-survey_document.xml","scraped_at":"2026-02-25T20:02:10.751260Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteoroid.cmor.radar-survey:data::1.0","title":"data collection for the \"CMOR METEOROID STREAM SURVEY\" bundle","description":"This is the data collection for the gbo.meteoroid.cmor.radar-survey bundle. A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple"],"instruments":["Canadian Meteor Orbit Radar (CMOR)","Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"],"instrument_hosts":["UWO Meteor Radar Complex"],"data_types":["Data"],"start_date":"2002-01-01","stop_date":"2008-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/collection_gbo.meteoroid.cmor.radar-survey_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/collection_gbo.meteoroid.cmor.radar-survey_data.xml","scraped_at":"2026-02-25T20:02:10.751264Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-m-type.fornasier.spectra:document::1.0","title":"document collection for the \"FORNASIER SPECTRA OF M ASTEROIDS\" bundle","description":"This is the document collection for the gbo.ast-m-type.fornasier.spectra bundle. This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(110) Lydia","(125) Liberatrix","(129) Antigone","(132) Aethra","(135) Hertha","(16) Psyche","(161) Athor","(201) Penelope","(216) Kleopatra","(22) Kalliope","(224) Oceana","(250) Bettina","(325) Heidelberga","(338) Budrosa","(347) Pariana","(369) Aeria","(382) Dodona","(418) Alemannia","(441) Bathilde","(498) Tokio","(516) Amherstia","(55) Pandora","(558) Carmen","(69) Hesperia","(755) Quintilla","(785) Zwetana","(849) Ara","(860) Ursina","(872) Holda","(97) Klotho","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","ESO Multi-Mode Instrument: RILD Mode","New Technology Telescope (NTT) at European Southern Observatory","DOLORES (Device Optimized for LOw RESolution)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","Near Infrared Camera Spectrometer (NICS)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","SOFI (Son OF Isaac)","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["Mauna Kea Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","European Southern Observatory"],"data_types":["Document"],"start_date":"2004-02-29","stop_date":"2008-12-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/collection_gbo.ast-m-type.fornasier.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/collection_gbo.ast-m-type.fornasier.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751271Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-m-type.fornasier.spectra:data::1.0","title":"data collection for the \"FORNASIER SPECTRA OF M ASTEROIDS\" bundle","description":"This is the data collection for the gbo.ast-m-type.fornasier.spectra bundle. This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(110) Lydia","(125) Liberatrix","(129) Antigone","(132) Aethra","(135) Hertha","(16) Psyche","(161) Athor","(201) Penelope","(216) Kleopatra","(22) Kalliope","(224) Oceana","(250) Bettina","(325) Heidelberga","(338) Budrosa","(347) Pariana","(369) Aeria","(382) Dodona","(418) Alemannia","(441) Bathilde","(498) Tokio","(516) Amherstia","(55) Pandora","(558) Carmen","(69) Hesperia","(755) Quintilla","(785) Zwetana","(849) Ara","(860) Ursina","(872) Holda","(97) Klotho","Multiple Asteroids"],"instruments":["SpeX","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory","ESO Multi-Mode Instrument: RILD Mode","New Technology Telescope (NTT) at European Southern Observatory","DOLORES (Device Optimized for LOw RESolution)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","Near Infrared Camera Spectrometer (NICS)","3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","SOFI (Son OF Isaac)","New Technology Telescope (NTT) at European Southern Observatory"],"instrument_hosts":["Mauna Kea Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","European Southern Observatory"],"data_types":["Data"],"start_date":"2004-02-29","stop_date":"2008-12-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/collection_gbo.ast-m-type.fornasier.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/collection_gbo.ast-m-type.fornasier.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751279Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.52-color-survey:document::1.0","title":"document collection for the \"52-COLOR ASTEROID SURVEY\" bundle","description":"This is the document collection for the gbo.ast.52-color-survey bundle. This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(101) Helena","(103) Hera","(1036) Ganymed","(1056) Azalea","(106) Dione","(11) Parthenope","(113) Amalthea","(114) Kassandra","(115) Thyra","(116) Sirona","(12) Victoria","(1219) Britta","(13) Egeria","(130) Elektra","(135) Hertha","(138) Tolosa","(145) Adeona","(15) Eunomia","(152) Atala","(153) Hilda","(16) Psyche","(1627) Ivar","(18) Melpomene","(1866) Sisyphus","(19) Fortuna","(2) Pallas","(20) Massalia","(21) Lutetia","(218) Bianca","(22) Kalliope","(221) Eos","(233) Asterope","(235) Carolina","(241) Germania","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(264) Libussa","(267) Tirza","(27) Euterpe","(270) Anahita","(289) Nenetta","(29) Amphitrite","(3) Juno","(308) Polyxo","(31) Euphrosyne","(317) Roxane","(32) Pomona","(324) Bamberga","(33) Polyhymnia","(336) Lacadiera","(346) Hermentaria","(349) Dembowska","(352) Gisela","(354) Eleonora","(3551) Verenia","(356) Liguria","(364) Isara","(367) Amicitia","(368) Haidea","(37) Fides","(376) Geometria","(379) Huenna","(385) Ilmatar","(387) Aquitania","(389) Industria","(39) Laetitia","(4) Vesta","(40) Harmonia","(42) Isis","(422) Berolina","(43) Ariadne","(431) Nephele","(44) Nysa","(446) Aeternitas","(46) Hestia","(476) Hedwig","(5) Astraea","(511) Davida","(521) Brixia","(532) Herculina","(554) Peraga","(57) Mnemosyne","(584) Semiramis","(59) Elpis","(6) Hebe","(6063) Jason","(63) Ausonia","(639) Latona","(64) Angelina","(65) Cybele","(653) Berenike","(661) Cloelia","(67) Asia","(674) Rachele","(68) Leto","(69) Hesperia","(7) Iris","(702) Alauda","(704) Interamnia","(714) Ulula","(76) Freia","(762) Pulcova","(772) Tanete","(773) Irmintraud","(80) Sappho","(82) Alkmene","(823) Sisigambis","(849) Ara","(86) Semele","(863) Benkoela","(89) Julia","(9) Metis","(92) Undina","(96) Aegle","(980) Anacostia","Multiple Asteroids"],"instruments":["Circularly Variable Filter","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"1983-06-11","stop_date":"1987-04-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/collection_gbo.ast.52-color-survey_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/collection_gbo.ast.52-color-survey_document.xml","scraped_at":"2026-02-25T20:02:10.751289Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.52-color-survey:data::1.0","title":"data collection for the \"52-COLOR ASTEROID SURVEY\" bundle","description":"This is the data collection for the gbo.ast.52-color-survey bundle. This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","(10) Hygiea","(101) Helena","(103) Hera","(1036) Ganymed","(1056) Azalea","(106) Dione","(11) Parthenope","(113) Amalthea","(114) Kassandra","(115) Thyra","(116) Sirona","(12) Victoria","(1219) Britta","(13) Egeria","(130) Elektra","(135) Hertha","(138) Tolosa","(145) Adeona","(15) Eunomia","(152) Atala","(153) Hilda","(16) Psyche","(1627) Ivar","(18) Melpomene","(1866) Sisyphus","(19) Fortuna","(2) Pallas","(20) Massalia","(21) Lutetia","(218) Bianca","(22) Kalliope","(221) Eos","(233) Asterope","(235) Carolina","(241) Germania","(246) Asporina","(25) Phocaea","(258) Tyche","(26) Proserpina","(264) Libussa","(267) Tirza","(27) Euterpe","(270) Anahita","(289) Nenetta","(29) Amphitrite","(3) Juno","(308) Polyxo","(31) Euphrosyne","(317) Roxane","(32) Pomona","(324) Bamberga","(33) Polyhymnia","(336) Lacadiera","(346) Hermentaria","(349) Dembowska","(352) Gisela","(354) Eleonora","(3551) Verenia","(356) Liguria","(364) Isara","(367) Amicitia","(368) Haidea","(37) Fides","(376) Geometria","(379) Huenna","(385) Ilmatar","(387) Aquitania","(389) Industria","(39) Laetitia","(4) Vesta","(40) Harmonia","(42) Isis","(422) Berolina","(43) Ariadne","(431) Nephele","(44) Nysa","(446) Aeternitas","(46) Hestia","(476) Hedwig","(5) Astraea","(511) Davida","(521) Brixia","(532) Herculina","(554) Peraga","(57) Mnemosyne","(584) Semiramis","(59) Elpis","(6) Hebe","(6063) Jason","(63) Ausonia","(639) Latona","(64) Angelina","(65) Cybele","(653) Berenike","(661) Cloelia","(67) Asia","(674) Rachele","(68) Leto","(69) Hesperia","(7) Iris","(702) Alauda","(704) Interamnia","(714) Ulula","(76) Freia","(762) Pulcova","(772) Tanete","(773) Irmintraud","(80) Sappho","(82) Alkmene","(823) Sisigambis","(849) Ara","(86) Semele","(863) Benkoela","(89) Julia","(9) Metis","(92) Undina","(96) Aegle","(980) Anacostia","Multiple Asteroids"],"instruments":["Circularly Variable Filter","3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"1983-06-11","stop_date":"1987-04-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/collection_gbo.ast.52-color-survey_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/collection_gbo.ast.52-color-survey_data.xml","scraped_at":"2026-02-25T20:02:10.751300Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.kbo-centaur.magnitudes:document::1.0","title":"document collection for the \"KBO AND CENTAUR ABSOLUTE MAGNITUDES \" bundle","description":"This is the document collection for the gbo.kbo-centaur.magnitudes bundle. This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1995-01-01","stop_date":"2001-05-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/collection_gbo.kbo-centaur.magnitudes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/collection_gbo.kbo-centaur.magnitudes_document.xml","scraped_at":"2026-02-25T20:02:10.751305Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.kbo-centaur.magnitudes:data::1.0","title":"data collection for the \"KBO AND CENTAUR ABSOLUTE MAGNITUDES \" bundle","description":"This is the data collection for the gbo.kbo-centaur.magnitudes bundle. This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1995-01-01","stop_date":"2001-05-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/collection_gbo.kbo-centaur.magnitudes_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/collection_gbo.kbo-centaur.magnitudes_data.xml","scraped_at":"2026-02-25T20:02:10.751309Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:meteoroid.steel.orbits:document::1.0","title":"document collection for the \"METEOROID ORBITS\" bundle","description":"This is the document collection for the meteoroid.steel.orbits bundle. This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1936-10-21","stop_date":"1983-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/collection_meteoroid.steel.orbits_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/collection_meteoroid.steel.orbits_document.xml","scraped_at":"2026-02-25T20:02:10.751313Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:meteoroid.steel.orbits:data::1.0","title":"data collection for the \"METEOROID ORBITS\" bundle","description":"This is the data collection for the meteoroid.steel.orbits bundle. This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1936-10-21","stop_date":"1983-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/collection_meteoroid.steel.orbits_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/collection_meteoroid.steel.orbits_data.xml","scraped_at":"2026-02-25T20:02:10.751317Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.nesvorny.families:document::1.0","title":"document collection for the \"NESVORNY HCM ASTEROID FAMILIES\" bundle","description":"This is the document collection for the ast.nesvorny.families bundle. This data set contains asteroid dynamical family memberships for 122 families calculated from synthetic proper elements, including high-inclination families. These families were calculated by David Nesvorny (Nesvorny et al. 2015) using his code based on the Hierarchical Clustering Method (HCM) described in Zappala et al. (1990, 1994). The input synthetic proper elements for 384,337 numbered asteroids were calculated by Knezevic and Milani.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/collection_ast.nesvorny.families_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/collection_ast.nesvorny.families_document.xml","scraped_at":"2026-02-25T20:02:10.751320Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.nesvorny.families:data::1.0","title":"data collection for the \"NESVORNY HCM ASTEROID FAMILIES\" bundle","description":"This is the data collection for the ast.nesvorny.families bundle. This data set contains asteroid dynamical family memberships for 122 families calculated from synthetic proper elements, including high-inclination families. These families were calculated by David Nesvorny (Nesvorny et al. 2015) using his code based on the Hierarchical Clustering Method (HCM) described in Zappala et al. (1990, 1994). The input synthetic proper elements for 384,337 numbered asteroids were calculated by Knezevic and Milani.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/collection_ast.nesvorny.families_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/collection_ast.nesvorny.families_data.xml","scraped_at":"2026-02-25T20:02:10.751324Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos:document::1.0","title":"document collection for the \"ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS\" bundle","description":"This is the document collection for the ast.shevchenko-tedesco.occultation-albedos bundle. This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1958-02-19","stop_date":"2005-02-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/collection_ast.shevchenko-tedesco.occultation-albedos_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/collection_ast.shevchenko-tedesco.occultation-albedos_document.xml","scraped_at":"2026-02-25T20:02:10.751327Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos:data::1.0","title":"data collection for the \"ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS\" bundle","description":"This is the data collection for the ast.shevchenko-tedesco.occultation-albedos bundle. This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1958-02-19","stop_date":"2005-02-23","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/collection_ast.shevchenko-tedesco.occultation-albedos_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/collection_ast.shevchenko-tedesco.occultation-albedos_data.xml","scraped_at":"2026-02-25T20:02:10.751331Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.olivines.pitman.lab-spectra:document::1.0","title":"document collection for the \"OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA\" bundle","description":"This is the document collection for the gbo.olivines.pitman.lab-spectra bundle. Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["METEORITIC FO81","Natural Fayalite (FO0)","Natural FO14","Natural FO31","Natural FO41","Natural FO45","Natural FO54","Natural FO63","Natural FO68","Natural FO9","Natural FO91","Natural FO93","msng (FO0)","Synthetic FO100","Synthetic FO50","Synthetic FO67","Synthetic FO75","Synthetic FO80"],"instruments":["BOMEM DA 3.02 FT-IR SPECTROMETER"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/collection_gbo.olivines.pitman.lab-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/collection_gbo.olivines.pitman.lab-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751336Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.olivines.pitman.lab-spectra:data::1.0","title":"data collection for the \"OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA\" bundle","description":"This is the data collection for the gbo.olivines.pitman.lab-spectra bundle. Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["METEORITIC FO81","Natural Fayalite (FO0)","Natural FO14","Natural FO31","Natural FO41","Natural FO45","Natural FO54","Natural FO63","Natural FO68","Natural FO9","Natural FO91","Natural FO93","msng (FO0)","Synthetic FO100","Synthetic FO50","Synthetic FO67","Synthetic FO75","Synthetic FO80"],"instruments":["BOMEM DA 3.02 FT-IR SPECTROMETER"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/collection_gbo.olivines.pitman.lab-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/collection_gbo.olivines.pitman.lab-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751341Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves:document::1.0","title":"document collection for the \"NEAR EARTH ASTEROID LIGHTCURVES\" bundle","description":"This is the document collection for the gbo.ast-neo.ondrejov.lightcurves bundle. This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(11066) Sigurd","(1627) Ivar","(1943) Anteros","1998 KY26","(2063) Bacchus","(2100) Ra-Shalom","(2102) Tantalus","(2212) Hephaistos","(3103) Eger","(3122) Florence","(3199) Nefertiti","(3200) Phaethon","(3691) Bede","(3752) Camillo","(4341) Poseidon","(4957) Brucemurray","(5143) Heracles","(5751) Zao","(7341) 1991 VK","(7474) 1992 TC","(7480) Norwan","(8034) Akka","Multiple Asteroids","(13651) 1997 BR","(17511) 1992 QN","(19356) 1997 GH3","(422638) 1994 CB","1995 FX","1997 GL3","(35107) 1991 VH","(5587) 1990 SB","(6053) 1993 BW3","(6322) 1991 CQ","(65679) 1989 UQ","(6569) Ondaatje","(7025) 1993 QA","(7482) 1994 PC1","(7822) 1991 CS","(7888) 1993 UC","(7889) 1994 LX","(8201) 1994 AH2","(85490) 1997 SE5","(99907) 1989 VA"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1984-08-29","stop_date":"1998-06-05","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/collection_gbo.ast-neo.ondrejov.lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/collection_gbo.ast-neo.ondrejov.lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.751347Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves:data::1.0","title":"data collection for the \"NEAR EARTH ASTEROID LIGHTCURVES\" bundle","description":"This is the data collection for the gbo.ast-neo.ondrejov.lightcurves bundle. This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(11066) Sigurd","(1627) Ivar","(1943) Anteros","1998 KY26","(2063) Bacchus","(2100) Ra-Shalom","(2102) Tantalus","(2212) Hephaistos","(3103) Eger","(3122) Florence","(3199) Nefertiti","(3200) Phaethon","(3691) Bede","(3752) Camillo","(4341) Poseidon","(4957) Brucemurray","(5143) Heracles","(5751) Zao","(7341) 1991 VK","(7474) 1992 TC","(7480) Norwan","(8034) Akka","Multiple Asteroids","(13651) 1997 BR","(17511) 1992 QN","(19356) 1997 GH3","(422638) 1994 CB","1995 FX","1997 GL3","(35107) 1991 VH","(5587) 1990 SB","(6053) 1993 BW3","(6322) 1991 CQ","(65679) 1989 UQ","(6569) Ondaatje","(7025) 1993 QA","(7482) 1994 PC1","(7822) 1991 CS","(7888) 1993 UC","(7889) 1994 LX","(8201) 1994 AH2","(85490) 1997 SE5","(99907) 1989 VA"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1984-08-29","stop_date":"1998-06-05","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/collection_gbo.ast-neo.ondrejov.lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/collection_gbo.ast-neo.ondrejov.lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.751353Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-high-inclination.gil-hutton.families:document::1.0","title":"document collection for the \"HIGH-INCLINATION ASTEROID FAMILIES\" bundle","description":"This is the document collection for the ast-high-inclination.gil-hutton.families bundle. This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Document"],"start_date":"2005-03-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/collection_ast-high-inclination.gil-hutton.families_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/collection_ast-high-inclination.gil-hutton.families_document.xml","scraped_at":"2026-02-25T20:02:10.751357Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-high-inclination.gil-hutton.families:data::1.0","title":"data collection for the \"HIGH-INCLINATION ASTEROID FAMILIES\" bundle","description":"This is the data collection for the ast-high-inclination.gil-hutton.families bundle. This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2005-03-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/collection_ast-high-inclination.gil-hutton.families_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/collection_ast-high-inclination.gil-hutton.families_data.xml","scraped_at":"2026-02-25T20:02:10.751360Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot:data::1.0","title":"Whiteley NEO Photometry V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2.24-m Cassegrain/Coude reflector","UH Tektronix 2K CCD"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"1996-02-15","stop_date":"2000-07-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/collection_gbo.ast-neo.whiteley.ecas-phot_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/collection_gbo.ast-neo.whiteley.ecas-phot_data.xml","scraped_at":"2026-02-25T20:02:10.751364Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot:document::1.0","title":"Whiteley NEO Photometry V1.0","description":"This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["2.24-m Cassegrain/Coude reflector","UH Tektronix 2K CCD"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"1996-02-15","stop_date":"2000-07-28","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/collection_gbo.ast-neo.whiteley.ecas-phot_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/collection_gbo.ast-neo.whiteley.ecas-phot_document.xml","scraped_at":"2026-02-25T20:02:10.751396Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra:data::1.0","title":"Gaffey Meteorite Spectra V1.0","description":"This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Hamlet","Elenovka","Queen's Mercy","Barwise","Chainpur","Sevrukovo","Cynthiana","Murchison","Shelburne","Mighei","Homestead","Coolidge","Butler","Aumale","Girgenti","Atlanta","Bruderheim","Kainsaz","Babb's Mill (Troost's Iron)","Ausson","Olivenza","Orgueil","Pantar","Alfianello","Mokoia","Cold Bokkeveld","Hvittis","Pillistfer","Nerft","Utrecht","Collescipoli","Allegan","Petersburg","Olmedilla de Alarcon","Ochansk","Chulafinnee","Tatahouine","Colby (Wisconsin)","Nakhla","Karoonda","Mezoe-Madaras","METEORITE","Leedey","Lance","Jonzac","Zavid","Manbhoom","Nanjemoy","Soko-Banja","Cabezo de Mayo","Murray","Tourinnes-la-Grosse","Daniel's Kuil","Veramin","Bereba","Vigarano","Warrenton","Khairpur","Shalka","Zhovtnevyi","Farmington","Buschhof","Casey County","Paragould","Parnellee","Juvinas","Sioux County","Rose City","Frankfort (stone)","Drake Creek","Leoville","Felix","Andover","Castalia","Alais","Haraiya","Bald Mountain","Le Teilleul","Abee","Grueneberg","Tieschitz","Saratov","Stannern","Allende","St. Mark's","Johnstown","Ornans","Jelica","Grosnaja","Forest City","Roda","Quenggouk","Chassigny","Pasamonte","Vavilovka","Nogoya","Angra dos Reis","MULTIPLE","St. Michel","Nobleborough","Indarch","Knyahina","Lancon","Padvarninkai","Pavlovka"],"instruments":["Beckman DK2A Ratio Recording Spectroreflectometer"],"instrument_hosts":["Terrestrial Laboratory"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/collection_gbo.meteorite.gaffey.lab-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/collection_gbo.meteorite.gaffey.lab-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751407Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra:document::1.0","title":"Gaffey Meteorite Spectra V1.0","description":"This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Hamlet","Elenovka","Queen's Mercy","Barwise","Chainpur","Sevrukovo","Cynthiana","Murchison","Shelburne","Mighei","Homestead","Coolidge","Butler","Aumale","Girgenti","Atlanta","Bruderheim","Kainsaz","Babb's Mill (Troost's Iron)","Ausson","Olivenza","Orgueil","Pantar","Alfianello","Mokoia","Cold Bokkeveld","Hvittis","Pillistfer","Nerft","Utrecht","Collescipoli","Allegan","Petersburg","Olmedilla de Alarcon","Ochansk","Chulafinnee","Tatahouine","Colby (Wisconsin)","Nakhla","Karoonda","Mezoe-Madaras","METEORITE","Leedey","Lance","Jonzac","Zavid","Manbhoom","Nanjemoy","Soko-Banja","Cabezo de Mayo","Murray","Tourinnes-la-Grosse","Daniel's Kuil","Veramin","Bereba","Vigarano","Warrenton","Khairpur","Shalka","Zhovtnevyi","Farmington","Buschhof","Casey County","Paragould","Parnellee","Juvinas","Sioux County","Rose City","Frankfort (stone)","Drake Creek","Leoville","Felix","Andover","Castalia","Alais","Haraiya","Bald Mountain","Le Teilleul","Abee","Grueneberg","Tieschitz","Saratov","Stannern","Allende","St. Mark's","Johnstown","Ornans","Jelica","Grosnaja","Forest City","Roda","Quenggouk","Chassigny","Pasamonte","Vavilovka","Nogoya","Angra dos Reis","MULTIPLE","St. Michel","Nobleborough","Indarch","Knyahina","Lancon","Padvarninkai","Pavlovka"],"instruments":["Beckman DK2A Ratio Recording Spectroreflectometer"],"instrument_hosts":["Terrestrial Laboratory"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/collection_gbo.meteorite.gaffey.lab-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/collection_gbo.meteorite.gaffey.lab-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751416Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.radar.shape-models:data::1.0","title":"Small Bodies Radar Shape Models V1.0","description":"This data set contains radar-based shape models for small solar system bodies, prepared by various authors.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1620) Geographos","(52760) 1998 ML14","(4769) Castalia","1998 KY26","(6489) Golevka","(216) Kleopatra","(4179) Toutatis","(25143) Itokawa","(2063) Bacchus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":["Data"],"start_date":"1989-08-19","stop_date":"2001-04-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/collection_compil.ast.radar.shape-models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/collection_compil.ast.radar.shape-models_data.xml","scraped_at":"2026-02-25T20:02:10.751423Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.radar.shape-models:document::1.0","title":"Small Bodies Radar Shape Models V1.0","description":"This data set contains radar-based shape models for small solar system bodies, prepared by various authors.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1620) Geographos","(52760) 1998 ML14","(4769) Castalia","1998 KY26","(6489) Golevka","(216) Kleopatra","(4179) Toutatis","(25143) Itokawa","(2063) Bacchus"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","34-m antenna","goldstone.dss13_34m.recv_x","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Arecibo Observatory","Goldstone Complex","Goldstone Complex","Goldstone Complex"],"data_types":["Document"],"start_date":"1989-08-19","stop_date":"2001-04-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/collection_compil.ast.radar.shape-models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/collection_compil.ast.radar.shape-models_document.xml","scraped_at":"2026-02-25T20:02:10.751429Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra:data::1.0","title":"Gartrelle et al. IRTF Asteroid Spectra V1.0","description":"This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(3283) Skorina","(1542) Schalen","(1746) Brouwer","(2207) Antenor","Multiple Asteroids","(721) Tabora","(1269) Rollandia","(2208) Pushkin","(1256) Normannia","(1583) Antilochus","(2246) Bowell","(2357) Phereclos","(2311) El Leoncito","(884) Priamus","(336) Lacadiera","(1702) Kalahari","(2266) Tchaikovsky","(368) Haidea","(1167) Dubiago","(2872) Gentelec","(4744) Rovereto","(2674) Pandarus","(267) Tirza","(2893) Peiroos","(773) Irmintraud","(3248) Farinella"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2016-12-29","stop_date":"2019-01-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751435Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra:document::1.0","title":"Gartrelle et al. IRTF Asteroid Spectra V1.0","description":"This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(3283) Skorina","(1542) Schalen","(1746) Brouwer","(2207) Antenor","Multiple Asteroids","(721) Tabora","(1269) Rollandia","(2208) Pushkin","(1256) Normannia","(1583) Antilochus","(2246) Bowell","(2357) Phereclos","(2311) El Leoncito","(884) Priamus","(336) Lacadiera","(1702) Kalahari","(2266) Tchaikovsky","(368) Haidea","(1167) Dubiago","(2872) Gentelec","(4744) Rovereto","(2674) Pandarus","(267) Tirza","(2893) Peiroos","(773) Irmintraud","(3248) Farinella"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2016-12-29","stop_date":"2019-01-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751440Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.ast-eros.shape-model:data::1.1","title":"Gaskell Eros Shape Model V1.1","description":"The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-02-15","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/collection_gaskell.ast-eros.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/collection_gaskell.ast-eros.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751444Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.ast-eros.shape-model:document::1.1","title":"Gaskell Eros Shape Model V1.1","description":"The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Document"],"start_date":"2000-02-15","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/collection_gaskell.ast-eros.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/collection_gaskell.ast-eros.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751449Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.ast-itokawa.shape-model:data::1.1","title":"Gaskell Itokawa Shape Model V1.1","description":"The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":["Data"],"start_date":"2005-09-11","stop_date":"2005-11-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/collection_gaskell.ast-itokawa.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/collection_gaskell.ast-itokawa.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751452Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gaskell.ast-itokawa.shape-model:document::1.1","title":"Gaskell Itokawa Shape Model V1.1","description":"The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":["Document"],"start_date":"2005-09-11","stop_date":"2005-11-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/collection_gaskell.ast-itokawa.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/collection_gaskell.ast-itokawa.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751457Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-eros.roberts.ponds-catalog:data::1.1","title":"Roberts Eros Ponds Catalog V1.1","description":"This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-05-01","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/collection_ast-eros.roberts.ponds-catalog_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/collection_ast-eros.roberts.ponds-catalog_data.xml","scraped_at":"2026-02-25T20:02:10.751460Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-eros.roberts.ponds-catalog:document::1.1","title":"Roberts Eros Ponds Catalog V1.1","description":"This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["Multi-spectral Imager"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Document"],"start_date":"2000-05-01","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/collection_ast-eros.roberts.ponds-catalog_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/collection_ast-eros.roberts.ponds-catalog_document.xml","scraped_at":"2026-02-25T20:02:10.751464Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry:document::1.1","title":"document collection for the \"POLARIMETRY OF ASTEROID ITOKAWA\" bundle","description":"This is the document collection for the gbo.ast-itokawa.torino.polarimetry bundle. This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(25143) Itokawa"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":["Document"],"start_date":"2004-06-28","stop_date":"2004-07-04","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/collection_gbo.ast-itokawa.torino.polarimetry_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/collection_gbo.ast-itokawa.torino.polarimetry_document.xml","scraped_at":"2026-02-25T20:02:10.751468Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry:data::2.0","title":"data collection for the \"POLARIMETRY OF ASTEROID ITOKAWA\" bundle","description":"This is the data collection for the gbo.ast-itokawa.torino.polarimetry bundle. This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(25143) Itokawa"],"instruments":["Torino Photopolarimeter","2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"],"instrument_hosts":["El Leoncito Astronomical Complex"],"data_types":["Data"],"start_date":"2004-06-28","stop_date":"2004-07-04","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/collection_gbo.ast-itokawa.torino.polarimetry_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/collection_gbo.ast-itokawa.torino.polarimetry_data.xml","scraped_at":"2026-02-25T20:02:10.751472Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.alcdef-database:document::1.0","title":"Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0","description":"The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1986-07-03","stop_date":"2021-09-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/collection_gbo.ast.alcdef-database_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/collection_gbo.ast.alcdef-database_document.xml","scraped_at":"2026-02-25T20:02:10.751477Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.alcdef-database:data::1.0","title":"Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0","description":"The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1986-07-03","stop_date":"2021-09-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/collection_gbo.ast.alcdef-database_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/collection_gbo.ast.alcdef-database_data.xml","scraped_at":"2026-02-25T20:02:10.751482Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-lightcurve-database:document::4.0","title":"Asteroid Lightcurve Database (LCDB) V4.0","description":"The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for for more than 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1913-01-01","stop_date":"2021-09-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/collection_ast-lightcurve-database_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/collection_ast-lightcurve-database_document.xml","scraped_at":"2026-02-25T20:02:10.751485Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-lightcurve-database:data::4.0","title":"Asteroid Lightcurve Database (LCDB) V4.0","description":"The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1913-01-01","stop_date":"2021-09-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/collection_ast-lightcurve-database_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/collection_ast-lightcurve-database_data.xml","scraped_at":"2026-02-25T20:02:10.751489Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-sat.thomas.shape-models:document::1.0","title":"Small Body Optical Shape Models V1.0","description":"The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST","Voyager","Galileo","Near Earth Asteroid Rendezvous","Viking","Phobos 2","Mariner71"],"targets":["(253) Mathilde","Mars I (Phobos)","Saturn XI (Epimetheus)","Mars II (Deimos)","(243) Ida","(951) Gaspra","(4) Vesta","Mars II (Deimos)","Saturn VII (Hyperion)","Saturn VII (Hyperion)","Saturn X (Janus)","Mars I (Phobos)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","Visual Imaging Subsystem - Camera A for VO2","Imaging Science Subsystem","Visual Imaging Subsystem - Camera B for VO2","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","Multi-spectral Imager","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","Solid State Imaging System","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat","Wide Field Planetary Camera 2"],"instrument_hosts":["Voyager 1","Viking Orbiter 2","Mariner 9","Viking Orbiter 2","Voyager 2","Near Earth Asteroid Rendezvous","Viking Orbiter 1","Galileo Orbiter","Viking Orbiter 1","Phobos 2","Hubble Space Telescope"],"data_types":["Document"],"start_date":"1976-06-22","stop_date":"1997-06-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/collection_ast-sat.thomas.shape-models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/collection_ast-sat.thomas.shape-models_document.xml","scraped_at":"2026-02-25T20:02:10.751498Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-sat.thomas.shape-models:data::1.0","title":"Small Body Optical Shape Models V1.0","description":"The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST","Voyager","Galileo","Near Earth Asteroid Rendezvous","Viking","Phobos 2","Mariner71"],"targets":["(253) Mathilde","Mars I (Phobos)","Saturn XI (Epimetheus)","Mars II (Deimos)","(243) Ida","(951) Gaspra","(4) Vesta","Mars II (Deimos)","Saturn VII (Hyperion)","Saturn VII (Hyperion)","Saturn X (Janus)","Mars I (Phobos)"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","Visual Imaging Subsystem - Camera A for VO2","Imaging Science Subsystem","Visual Imaging Subsystem - Camera B for VO2","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","Multi-spectral Imager","VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1","Solid State Imaging System","VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1","Vsk-fregat","Wide Field Planetary Camera 2"],"instrument_hosts":["Voyager 1","Viking Orbiter 2","Mariner 9","Viking Orbiter 2","Voyager 2","Near Earth Asteroid Rendezvous","Viking Orbiter 1","Galileo Orbiter","Viking Orbiter 1","Phobos 2","Hubble Space Telescope"],"data_types":["Data"],"start_date":"1976-06-22","stop_date":"1997-06-27","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/collection_ast-sat.thomas.shape-models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/collection_ast-sat.thomas.shape-models_data.xml","scraped_at":"2026-02-25T20:02:10.751505Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-bennu.radar.shape-model:document::1.1","title":"Asteroid (101955) Bennu Radar Shape Model V1.1","description":"We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(101955) Bennu"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70 cm AZT-8","SBIG ST-6 UV camera","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Steward Observatory","Arecibo Observatory","Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station","Goldstone Complex","Goldstone Complex"],"data_types":["Document"],"start_date":"1999-09-21","stop_date":"2005-10-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/collection_ast-bennu.radar.shape-model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/collection_ast-bennu.radar.shape-model_document.xml","scraped_at":"2026-02-25T20:02:10.751512Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast-bennu.radar.shape-model:data::1.1","title":"Asteroid (101955) Bennu Radar Shape Model V1.1","description":"We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(101955) Bennu"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo 2380 MHz Radar Receiver","University of Arizona Kuiper 1.54m telescope","ccd21 camera for the Kuiper 1.54m telescope","305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","70 cm AZT-8","SBIG ST-6 UV camera","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Receiver","70-m steerable parabolic radio telescope","Goldstone Solar System Radar Transmitter"],"instrument_hosts":["Arecibo Observatory","Steward Observatory","Arecibo Observatory","Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station","Goldstone Complex","Goldstone Complex"],"data_types":["Data"],"start_date":"1999-09-21","stop_date":"2005-10-02","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/collection_ast-bennu.radar.shape-model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/collection_ast-bennu.radar.shape-model_data.xml","scraped_at":"2026-02-25T20:02:10.751518Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.primass-l.spectra:document::1.0","title":"PRIMASS-L V1.0","description":"PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of June 2021 this library contains spectra of about 642 asteroids from 10 families and two groups that had been sparsely studied before. 85% of our targets did not have published spectra and only 40% had visible photometry. PRIMASS-L contains spectra from a variety of ground-based facilities. This survey is ongoing and is expected to contain about 800 spectra by the end of 2022. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(5116) Korsor","(24048) Pedroduque","(96690) 1999 JA73","(147535) 2004 EH14","(147777) 2005 QV103","(122596) 2000 RG35","(41746) 2000 VD16","(25381) Jerrynelson","(250431) 2003 WL117","(3185) Clintford","(15202) Yamada-Houkoku","(6698) Malhotra","(12051) Picha","(364204) 2006 QR100","(52870) 1998 SC26","(37233) 2000 WV154","(37354) 2001 TN107","(39895) 1998 FK15","(15561) 2000 GU36","(133123) 2003 PO1","{109019) 2001 QT6","(6578) Zapesotskij","(29626) 1998 TV12","(107070) 2001 AH16","(29623) 1998 SR164","(120190) 2004 CL97","(28894) Ryanchung","(940) Kordula","(15794) 1993 TG31","(6343) 1993 VK","(180349) 2003 YW71","(63310) 2001 FS21","(249427) 2009 EH18","(63312) 2001 FH24","(67918) 2000 WW109","(57068) 2001 OC1","(38661) 2000 OC49","(72384) 2001 CF12","(100784) 1998 FM61","(72143) 2000 YQ86","(252953) 2002 PB91","(12072) Anupamakotha","(78921) 2003 SP108","(132056) 2002 CA141","(24037) 1999 SB7","(96463) 1998 HW51","(106085) 2000 SO355","(39888) 1998 ES20","(2081) Sazava","(25490) Kevinkelly","(5594) Jimmiller","(3298) Massandra","(155162) 2005 UZ104","(95018) 2002 AZ9","(6769) Brokoff","(238992) 2006 BH260","(76922) 2001 AH15","(20843) Kuotzuhao","(262102) 2006 RE98","(33913) 2000 LK14","(116717) 2004 DU8","(27354) Stiklaitis","(80062) 1999 JX85","(18759) 1999 HO2","(59065) 1998 UB43","(752) Sulamitis","(39694) 1996 ST2","(132091) 2002 CC175","(5327) 1989 EX1","(74755) 1999 RL199","(3146) Dato","(6415) 1993 VR3","(61560) 2000 QT74","(33804) 1999 WL4","(107032) 2000 YB1240","(26394) Kandola","(114308) 2002 XY50","(148658) 2001 SG128","(175811) 1999 RS193","(362332) 2010 KW34","(96405) 1998 ES","(96768) 1999 RH50","(5333) Kanaya","(623) Chimaera","(14264) 2000 AH142","(6661) Ikemura","(50239) 2000 BW3","(1177) Gonnessia","(147241) 2002 XW62","(48153) 2001 FW172","(121096) 1999 FG51","(25036) Elizabethof","(26121) 1992 BX","(38106) 1999 JG23","(41525) 2000 QP218","(135384) 2001 TT166","(36286) 2000 EL14","(1183) Jutta","(3485) Barucci","(52891) 1998 SM61","(2279) Barto","(73205) 2002 JY16","(5429) 1988 BZ1","(246226) 2007 RH212","(84211) 2002 RV141","(59397) 1999 FT26","(3130) Hillary","(15134) 2000 ED92","(72230) 2001 AN15","(133197) 2003 QS59","(5794) Irmina","(129818) 1999 NE28","(17230) 2000 CX116","(138668) 2000 RB103","(38173) 1999 JZ112","(66403) 1999 LM13","(85167) 1989 RS2","(42431) 1051 T-3","(42552) 1996 RH25","(34923) 4870 P-L","(790) Pretoria","(313) Chaldaea","(23916) 1998 SD131","(113374) 2002 SB8","(98345) 2000 SQ304","(169066) 2001 FR157","(42781) 1998 VL28","(7030) Colombini","(7394) Xanthomalitia","(302) Clarissa","(77421) 2001 GB","(7274) Washioyama","(300289) 2007 OM10","(162755) Spacesora","(117745) 2005 GP37","(10979) Fristephenson","(32847) 1992 JO3","(66421) 1999 NQ19","(66309) 1999 JX41","(78889) 2003 SA36","(79610) 1998 RF51","(186714) 2004 BV88","(528) Rezia","(6039) Parmenides","(20992) 1985 RV2","(98246) 2000 SY166","(53537) 2000 AZ239","(44942) 1999 VM55","(2918) Salazar","(203620) 2002 EU125","(9792) Nonodakesan","(99691) 2002 JP27","(69706) 1998 HJ77","(173657) 2001 HN14","(401) Ottilia","(19415) Parvamenon","(8106) Carpino","(17233) Stanshapiro","(18483) 1995 YY2","(78826) 2003 QE17","(44773) 1999 TU140","(10992) Veryuslaviya","(6374) Beslan","(72047) 2000 YZ6","(72169) 2000 YW107","(186530) 2002 VX78","(1923) Osiris","(44766) 1999 TM123","(67940) 2000 WT143","(10866) Peru","(72292) 2001 BE22","(34857) 2001 TB36","(225) Henrietta","(210564) 1999 TR195","(6142) Tantawi","(229) Adelinda","(7231) Porco","(108631) 2001 NG","(45846) 2000 RA96","(208048) 1999 TL149","(162795) 2000 YF52","(171027) 2005 EN57","(56970) 2000 SJ111","(172478) 2003 SM87","(334) Chicago","(53103) 1999 AB2","(4173) Thicksten","(90975) 1997 WF37","(212417) 2006 KJ103","(9860) Archaeopteryx","(24907) Alfredhaar","(20432) 1999 BD12","(329) Svea","(1902) Shaposhnikov","(208039) 1999 RV113","(256789) 2008 CY45","(11856) Nicolabonev","(561) Ingwelde","(137397) 1999 TH165","(170184) 2003 MV11","(5158) Ogarev","(56600) 2000 JK50","(50068) 2000 AR77","(2642) Vesale","(25932) 2001 DB72","(106794) 2000 XK26","(1674) Groeneveld","(24726) 1991 VY","Multiple Asteroids","(265259) 2004 EW82","(1439) Vogtia","(80789) 2000 CC85","(165403) 2000 XM43","(126046) 2001 YH72","(42155) 2001 BA63","(77495) 2001 HM37","(110819) 2001 UW49","(174594) 2003 QH56","(57400) 2001 RR90","(30043) Lisamichaels","(70511) 1999 TL103","(71966) 2000 WP118","(3626) Ohsaki","(16090) Lukaszewski","(2534) Houzeau","(165536) 2001 DC6","(1209) Pumma","(67586) 2000 SH125","(45892) 2000 WR179","(149396) 2003 AU39","(9052) Uhland","(142751) 2002 TG300","(142) Polana","(35627)1998 KW9","(178844) 2001 HG53","(25829) 2000 DU108","(268) Adorea","(75089) 1999 VY30","(174120) 2002 JC146","(55454) 2001 TJ128","(67352) 2000 JN80","(107861) 2001 FN80","(72941) 2002 CD8","(68685) 2002 CK142","(107742) 2001 FH33","(70528) 1999 TF116","(119526) 2001 UF175","(43346) 2000 RT103","(186446) 2002 SM30","(132509) 2002 JU41","(151019) 2001 UF119","(495) Eulalia","(96918) 1999 TJ113","(173129) 1994 JH2","(77278) 2001 FL61","(213825) 2003 QW63","(39094) 2000 VQ58","(1782) Schneller","(24956) Qiannan","(3843) OISCA","(5900) Jensen","(42006) 2000 YA50","(60852) 2000 HU65","Multiple","(123915) 2001 DK95","(67891) 2000 WR61","(66325) 1999 JF55","(65354) 2002 NG43","(98391) 2000 TL62","(13509) Guayaquil","(334314) 2001 VY132","(57442) 2001 SF54","(8032) Michaeladams","(34326) Zhaurova","(325852) 2010 TO53","(18075) Donasharma","(43152) 1999 XM115","(242324) 2003 YY12","(304858) 2007 RQ77","(1768) Appenzella","(80754) 2000 CV49","(66333) 1999 JS60","(24650) 1986 QM","(80993) 2000 EY26","(54286) 2000 JD51","(249089) 2007 VL55","(34339) 2000 QH218","(56349) 2000 AZ90","(26719) 2001 HQ5","(120548) 1995 BO","(7078) Unojonsson","(71932) 2000 WO61","(98178) 2000 SU99","(110518) 2001 TY78","(332038) 2005 QZ73","(243648) 1999 TX176","(92634) 2000 QN19","(168936) 2000 YN95","(26807) 1982 RK1","(44463) 1998 VT18","(153694) 2001 UV28","(65264) 2002 GW16","(133503) 2003 SW288","(24638) 1981 UC23","(161079) 2002 LP61","(14849) 1989 GQ1","(11214) 1999 HP8","(253798) 2003 XP17","(12421) Zhenya","(53170) 1999 CH19","(9476) 1998 QQ36","(3577) Putilin","(27715) 1989 CR1","(183911) 2004 CB100","(131119) 2001 BK4","(24322) 2000 AM43","(21176) 1994 CN13","(34487) 2000 SE133","(86812) 2000 GB125","(122871) 2000 SX138","(85727) 1998 SC75","(1280) Baillauda","(32061) 2000 JK48","(78069) 2002 LU4","(93347) 2000 SX247","(6857) Castelli","(26516) 2000 CW56","(49859) 1999 XB100","(45378) 2000 AD118","(49731) 1999 VR80","(164286) 2004 XO86","(79044) 3919 T-2","(13537) 1991 SG","(57473) 2001 SE127","(320575) 2008 AM110","(123979) 2001 FB38","(156670) 2002 JK111","(73860) 1996 XR5","(255959) 2006 TP34","(253538) 2003 SX220","(5771) Somerville","(3556) Lixiaohua","(70361) 1999 RK189","(4648) Tirion","(72308) 2001 BZ34","(217593) 2008 FK3","(81010) 2000 EL35","(85626) 1998 HM141","(206344) 2003 PA8","(34228) 2000 QF90","(14530) 1997 PR","(74962) 1999 TW200","(69266) 1988 RJ6","(49833) 1999 XB84","(1144) Oda","(1386) Storeria","(237295) 2008 YN7","(3202) Graff","(1269) Rollandia","(60571) 2000 ER116","(45357) 2000 AC102","(84536) 2002 UV19","(42089) 2001 AQ15","(106919) 2000 YC53","(106918) 2000 YZ52","(61309) 2000 OF50","(6840) 1995 WW5","(3330) Gantrisch","(111789) 2002 CQ236","(2563) Boyarchuk","(132248) 2002 EM90","(23270) Kellerman","(23397) 5122 T-3","(6806) Kaufmann","(242858) 2006 GJ9","(69679) 1998 HR15","(37437) 2576 P-L","(166264) 2002 GL74","(232922) 2005 AP26","(36469) 2000 QT23","(40976) 1999 TV272","(70427) 1999 TB1","(52951) 1998 SO147","(36465) 2000 QR19","(6815) Mutchler","(132352) 2002 GV54","(909) Ulla","(142282) 2002 RT128","(68114) Deakferenc","(53918) 2000 GM18","(120384) 2005 QU29","(251796) 1999 TO9","(58240) 1993 FV81","(70312) 1999 RM137","(175194) 2005 EL268","(112414) 2002 NV42","(71655) 2000 EF121","(262642) 2006 WT49","(66062) 1998 RG1","(208724) 2002 JV130","(59322) 1999 CB95","(39955) 1998 FV118","(35358) Lorifini","(8091) 1992 BG","(68490) 2001 TH239","(27506) 2000 GQ141","(24358) 2000 AV117","(2794) Kulik","(84) Klio","(112308) 2002 LR47","(109030) 2001 QL10","(79143) 1992 BQ2","(142297) 2002 RF145","(169633) 2002 HQ12","(61500) 2000 QV51","(203141) 2000 UV41","(177258) 2003 WX39","(59317) 1999 CN89","(122109) 2000 HJ94","(132383) 2002 GQ83"],"instruments":["3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","DOLORES (Device Optimized for LOw RESolution)","New Technology Telescope (NTT)","ESO Faint Object Spectrograph and Camera 2","Gran Telescopio Canaria (GTC)","GTC OSIRIS Optical Imager and Spectrograph","2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)","Intermediate Dispersion Spectrograph (IDS)","SOAR","SOAR-GHTS"],"instrument_hosts":["Roque de los Muchachos Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","Cerro Tololo Inter-American Observatory"],"data_types":["Document"],"start_date":"2010-10-12","stop_date":"2018-04-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/collection_gbo.ast.primass-l.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/collection_gbo.ast.primass-l.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751547Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.primass-l.spectra:data::1.0","title":"PRIMASS-L V1.0","description":"PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of June 2021 this library contains spectra of about 642 asteroids from 10 families and two groups that had been sparsely studied before. 85% of our targets did not have published spectra and only 40% had visible photometry. PRIMASS-L contains spectra from a variety of ground-based facilities. This survey is ongoing and is expected to contain about 800 spectra by the end of 2022. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(5116) Korsor","(24048) Pedroduque","(96690) 1999 JA73","(147535) 2004 EH14","(147777) 2005 QV103","(122596) 2000 RG35","(41746) 2000 VD16","(25381) Jerrynelson","(250431) 2003 WL117","(3185) Clintford","(15202) Yamada-Houkoku","(6698) Malhotra","(12051) Picha","(364204) 2006 QR100","(52870) 1998 SC26","(37233) 2000 WV154","(37354) 2001 TN107","(39895) 1998 FK15","(15561) 2000 GU36","(133123) 2003 PO1","{109019) 2001 QT6","(6578) Zapesotskij","(29626) 1998 TV12","(107070) 2001 AH16","(29623) 1998 SR164","(120190) 2004 CL97","(28894) Ryanchung","(940) Kordula","(15794) 1993 TG31","(6343) 1993 VK","(180349) 2003 YW71","(63310) 2001 FS21","(249427) 2009 EH18","(63312) 2001 FH24","(67918) 2000 WW109","(57068) 2001 OC1","(38661) 2000 OC49","(72384) 2001 CF12","(100784) 1998 FM61","(72143) 2000 YQ86","(252953) 2002 PB91","(12072) Anupamakotha","(78921) 2003 SP108","(132056) 2002 CA141","(24037) 1999 SB7","(96463) 1998 HW51","(106085) 2000 SO355","(39888) 1998 ES20","(2081) Sazava","(25490) Kevinkelly","(5594) Jimmiller","(3298) Massandra","(155162) 2005 UZ104","(95018) 2002 AZ9","(6769) Brokoff","(238992) 2006 BH260","(76922) 2001 AH15","(20843) Kuotzuhao","(262102) 2006 RE98","(33913) 2000 LK14","(116717) 2004 DU8","(27354) Stiklaitis","(80062) 1999 JX85","(18759) 1999 HO2","(59065) 1998 UB43","(752) Sulamitis","(39694) 1996 ST2","(132091) 2002 CC175","(5327) 1989 EX1","(74755) 1999 RL199","(3146) Dato","(6415) 1993 VR3","(61560) 2000 QT74","(33804) 1999 WL4","(107032) 2000 YB1240","(26394) Kandola","(114308) 2002 XY50","(148658) 2001 SG128","(175811) 1999 RS193","(362332) 2010 KW34","(96405) 1998 ES","(96768) 1999 RH50","(5333) Kanaya","(623) Chimaera","(14264) 2000 AH142","(6661) Ikemura","(50239) 2000 BW3","(1177) Gonnessia","(147241) 2002 XW62","(48153) 2001 FW172","(121096) 1999 FG51","(25036) Elizabethof","(26121) 1992 BX","(38106) 1999 JG23","(41525) 2000 QP218","(135384) 2001 TT166","(36286) 2000 EL14","(1183) Jutta","(3485) Barucci","(52891) 1998 SM61","(2279) Barto","(73205) 2002 JY16","(5429) 1988 BZ1","(246226) 2007 RH212","(84211) 2002 RV141","(59397) 1999 FT26","(3130) Hillary","(15134) 2000 ED92","(72230) 2001 AN15","(133197) 2003 QS59","(5794) Irmina","(129818) 1999 NE28","(17230) 2000 CX116","(138668) 2000 RB103","(38173) 1999 JZ112","(66403) 1999 LM13","(85167) 1989 RS2","(42431) 1051 T-3","(42552) 1996 RH25","(34923) 4870 P-L","(790) Pretoria","(313) Chaldaea","(23916) 1998 SD131","(113374) 2002 SB8","(98345) 2000 SQ304","(169066) 2001 FR157","(42781) 1998 VL28","(7030) Colombini","(7394) Xanthomalitia","(302) Clarissa","(77421) 2001 GB","(7274) Washioyama","(300289) 2007 OM10","(162755) Spacesora","(117745) 2005 GP37","(10979) Fristephenson","(32847) 1992 JO3","(66421) 1999 NQ19","(66309) 1999 JX41","(78889) 2003 SA36","(79610) 1998 RF51","(186714) 2004 BV88","(528) Rezia","(6039) Parmenides","(20992) 1985 RV2","(98246) 2000 SY166","(53537) 2000 AZ239","(44942) 1999 VM55","(2918) Salazar","(203620) 2002 EU125","(9792) Nonodakesan","(99691) 2002 JP27","(69706) 1998 HJ77","(173657) 2001 HN14","(401) Ottilia","(19415) Parvamenon","(8106) Carpino","(17233) Stanshapiro","(18483) 1995 YY2","(78826) 2003 QE17","(44773) 1999 TU140","(10992) Veryuslaviya","(6374) Beslan","(72047) 2000 YZ6","(72169) 2000 YW107","(186530) 2002 VX78","(1923) Osiris","(44766) 1999 TM123","(67940) 2000 WT143","(10866) Peru","(72292) 2001 BE22","(34857) 2001 TB36","(225) Henrietta","(210564) 1999 TR195","(6142) Tantawi","(229) Adelinda","(7231) Porco","(108631) 2001 NG","(45846) 2000 RA96","(208048) 1999 TL149","(162795) 2000 YF52","(171027) 2005 EN57","(56970) 2000 SJ111","(172478) 2003 SM87","(334) Chicago","(53103) 1999 AB2","(4173) Thicksten","(90975) 1997 WF37","(212417) 2006 KJ103","(9860) Archaeopteryx","(24907) Alfredhaar","(20432) 1999 BD12","(329) Svea","(1902) Shaposhnikov","(208039) 1999 RV113","(256789) 2008 CY45","(11856) Nicolabonev","(561) Ingwelde","(137397) 1999 TH165","(170184) 2003 MV11","(5158) Ogarev","(56600) 2000 JK50","(50068) 2000 AR77","(2642) Vesale","(25932) 2001 DB72","(106794) 2000 XK26","(1674) Groeneveld","(24726) 1991 VY","Multiple Asteroids","(265259) 2004 EW82","(1439) Vogtia","(80789) 2000 CC85","(165403) 2000 XM43","(126046) 2001 YH72","(42155) 2001 BA63","(77495) 2001 HM37","(110819) 2001 UW49","(174594) 2003 QH56","(57400) 2001 RR90","(30043) Lisamichaels","(70511) 1999 TL103","(71966) 2000 WP118","(3626) Ohsaki","(16090) Lukaszewski","(2534) Houzeau","(165536) 2001 DC6","(1209) Pumma","(67586) 2000 SH125","(45892) 2000 WR179","(149396) 2003 AU39","(9052) Uhland","(142751) 2002 TG300","(142) Polana","(35627)1998 KW9","(178844) 2001 HG53","(25829) 2000 DU108","(268) Adorea","(75089) 1999 VY30","(174120) 2002 JC146","(55454) 2001 TJ128","(67352) 2000 JN80","(107861) 2001 FN80","(72941) 2002 CD8","(68685) 2002 CK142","(107742) 2001 FH33","(70528) 1999 TF116","(119526) 2001 UF175","(43346) 2000 RT103","(186446) 2002 SM30","(132509) 2002 JU41","(151019) 2001 UF119","(495) Eulalia","(96918) 1999 TJ113","(173129) 1994 JH2","(77278) 2001 FL61","(213825) 2003 QW63","(39094) 2000 VQ58","(1782) Schneller","(24956) Qiannan","(3843) OISCA","(5900) Jensen","(42006) 2000 YA50","(60852) 2000 HU65","Multiple","(123915) 2001 DK95","(67891) 2000 WR61","(66325) 1999 JF55","(65354) 2002 NG43","(98391) 2000 TL62","(13509) Guayaquil","(334314) 2001 VY132","(57442) 2001 SF54","(8032) Michaeladams","(34326) Zhaurova","(325852) 2010 TO53","(18075) Donasharma","(43152) 1999 XM115","(242324) 2003 YY12","(304858) 2007 RQ77","(1768) Appenzella","(80754) 2000 CV49","(66333) 1999 JS60","(24650) 1986 QM","(80993) 2000 EY26","(54286) 2000 JD51","(249089) 2007 VL55","(34339) 2000 QH218","(56349) 2000 AZ90","(26719) 2001 HQ5","(120548) 1995 BO","(7078) Unojonsson","(71932) 2000 WO61","(98178) 2000 SU99","(110518) 2001 TY78","(332038) 2005 QZ73","(243648) 1999 TX176","(92634) 2000 QN19","(168936) 2000 YN95","(26807) 1982 RK1","(44463) 1998 VT18","(153694) 2001 UV28","(65264) 2002 GW16","(133503) 2003 SW288","(24638) 1981 UC23","(161079) 2002 LP61","(14849) 1989 GQ1","(11214) 1999 HP8","(253798) 2003 XP17","(12421) Zhenya","(53170) 1999 CH19","(9476) 1998 QQ36","(3577) Putilin","(27715) 1989 CR1","(183911) 2004 CB100","(131119) 2001 BK4","(24322) 2000 AM43","(21176) 1994 CN13","(34487) 2000 SE133","(86812) 2000 GB125","(122871) 2000 SX138","(85727) 1998 SC75","(1280) Baillauda","(32061) 2000 JK48","(78069) 2002 LU4","(93347) 2000 SX247","(6857) Castelli","(26516) 2000 CW56","(49859) 1999 XB100","(45378) 2000 AD118","(49731) 1999 VR80","(164286) 2004 XO86","(79044) 3919 T-2","(13537) 1991 SG","(57473) 2001 SE127","(320575) 2008 AM110","(123979) 2001 FB38","(156670) 2002 JK111","(73860) 1996 XR5","(255959) 2006 TP34","(253538) 2003 SX220","(5771) Somerville","(3556) Lixiaohua","(70361) 1999 RK189","(4648) Tirion","(72308) 2001 BZ34","(217593) 2008 FK3","(81010) 2000 EL35","(85626) 1998 HM141","(206344) 2003 PA8","(34228) 2000 QF90","(14530) 1997 PR","(74962) 1999 TW200","(69266) 1988 RJ6","(49833) 1999 XB84","(1144) Oda","(1386) Storeria","(237295) 2008 YN7","(3202) Graff","(1269) Rollandia","(60571) 2000 ER116","(45357) 2000 AC102","(84536) 2002 UV19","(42089) 2001 AQ15","(106919) 2000 YC53","(106918) 2000 YZ52","(61309) 2000 OF50","(6840) 1995 WW5","(3330) Gantrisch","(111789) 2002 CQ236","(2563) Boyarchuk","(132248) 2002 EM90","(23270) Kellerman","(23397) 5122 T-3","(6806) Kaufmann","(242858) 2006 GJ9","(69679) 1998 HR15","(37437) 2576 P-L","(166264) 2002 GL74","(232922) 2005 AP26","(36469) 2000 QT23","(40976) 1999 TV272","(70427) 1999 TB1","(52951) 1998 SO147","(36465) 2000 QR19","(6815) Mutchler","(132352) 2002 GV54","(909) Ulla","(142282) 2002 RT128","(68114) Deakferenc","(53918) 2000 GM18","(120384) 2005 QU29","(251796) 1999 TO9","(58240) 1993 FV81","(70312) 1999 RM137","(175194) 2005 EL268","(112414) 2002 NV42","(71655) 2000 EF121","(262642) 2006 WT49","(66062) 1998 RG1","(208724) 2002 JV130","(59322) 1999 CB95","(39955) 1998 FV118","(35358) Lorifini","(8091) 1992 BG","(68490) 2001 TH239","(27506) 2000 GQ141","(24358) 2000 AV117","(2794) Kulik","(84) Klio","(112308) 2002 LR47","(109030) 2001 QL10","(79143) 1992 BQ2","(142297) 2002 RF145","(169633) 2002 HQ12","(61500) 2000 QV51","(203141) 2000 UV41","(177258) 2003 WX39","(59317) 1999 CN89","(122109) 2000 HJ94","(132383) 2002 GQ83"],"instruments":["3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector","DOLORES (Device Optimized for LOw RESolution)","New Technology Telescope (NTT)","ESO Faint Object Spectrograph and Camera 2","Gran Telescopio Canaria (GTC)","GTC OSIRIS Optical Imager and Spectrograph","2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)","Intermediate Dispersion Spectrograph (IDS)","SOAR","SOAR-GHTS"],"instrument_hosts":["Roque de los Muchachos Observatory","European Southern Observatory","Roque de los Muchachos Observatory","Roque de los Muchachos Observatory","Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"2010-10-12","stop_date":"2018-04-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/collection_gbo.ast.primass-l.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/collection_gbo.ast.primass-l.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751576Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:asteroid_polarimetric_database:document::2.0","title":"Asteroid Polarimetric Database V2.0","description":"The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1958-10-22","stop_date":"2020-12-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/collection_asteroid_polarimetric_database_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/collection_asteroid_polarimetric_database_document.xml","scraped_at":"2026-02-25T20:02:10.751583Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:asteroid_polarimetric_database:data::2.0","title":"Asteroid Polarimetric Database V2.0","description":"The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1958-10-22","stop_date":"2020-12-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/collection_asteroid_polarimetric_database_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/collection_asteroid_polarimetric_database_data.xml","scraped_at":"2026-02-25T20:02:10.751588Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-ceres.alma.images-spectra:document::1.0","title":"ALMA Ceres Imaging and Spectrum V1.0","description":"This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres"],"instruments":["Atacama Millimeter/submillimeter Array (ALMA)","ALMA Radio Receivers"],"instrument_hosts":["European Southern Observatory - Chajnantor"],"data_types":["Document"],"start_date":"2015-10-31","stop_date":"2017-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/collection_gbo.ast-ceres.alma.images-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/collection_gbo.ast-ceres.alma.images-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.751592Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-ceres.alma.images-spectra:data::1.0","title":"ALMA Ceres Imaging and Spectrum V1.0","description":"This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres"],"instruments":["Atacama Millimeter/submillimeter Array (ALMA)","ALMA Radio Receivers"],"instrument_hosts":["European Southern Observatory - Chajnantor"],"data_types":["Data"],"start_date":"2015-10-31","stop_date":"2017-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/collection_gbo.ast-ceres.alma.images-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/collection_gbo.ast-ceres.alma.images-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.751596Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.mission:context::1.2","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Context","description":"This collection contains the context prodcuts applicable to the OSIRIS-REx mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","TAGCAMS","OLA","OTES","OVIRS","REXIS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.753084Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.mission:document::9.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document","description":"This collection contains the documents applicable to the OSIRIS-REx mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","TAGCAMS","OLA","OTES","OVIRS","REXIS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753090Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.mission:xml_schema::6.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): XML_Schema","description":"This collection contains the xml_schema prodcuts applicable to the OSIRIS-REx mission as a whole; includes the mission dictionary.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","TAGCAMS","OLA","OTES","OVIRS","REXIS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.753094Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola:data_calibrated::3.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) calibrated science data products.","description":"This collection contains the calibrated (processing level 2 calibrated) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/collection_ola_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/collection_ola_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753098Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola:data_calibrated_v2::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) calibrated science data products.","description":"This collection contains the calibrated (processing level 2 calibrated) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft. The products in this collection are calibrated with the most refined calibration available for the OLA instrument. Details of this calibration can be found in Version 6.0 of the OLA SIS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/collection_ola_data_calibrated_v2.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/collection_ola_data_calibrated_v2.xml","scraped_at":"2026-02-25T20:02:10.753103Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola:data_hkl0::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) raw state of health (housekeeping) data products.","description":"This collection contains the raw (processing level 0 raw) state of health (housekeeping) data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/collection_ola_data_hkl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/collection_ola_data_hkl0.xml","scraped_at":"2026-02-25T20:02:10.753107Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola:data_hkl1::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced state of health (housekeeping) data products.","description":"This collection contains the reduced (processing level 1 reduced) state of health (housekeeping) data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/collection_ola_data_hkl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/collection_ola_data_hkl1.xml","scraped_at":"2026-02-25T20:02:10.753110Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola:data_raw::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) raw science data products.","description":"This collection contains the raw (processing level 0 raw) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/collection_ola_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/collection_ola_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753114Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola:data_reduced::3.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced science data products.","description":"This collection contains the reduced (processing level 1 reduced) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/collection_ola_data_reduced.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/collection_ola_data_reduced.xml","scraped_at":"2026-02-25T20:02:10.753117Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola:data_reduced_v2::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced science data products.","description":"This collection contains the reduced (processing level 1 reduced) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft. The products in this collection are calibrated with the most refined calibration available for the OLA instrument. Details of this calibration can be found in Version 6.0 of the OLA SIS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/collection_ola_data_reduced_v2.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/collection_ola_data_reduced_v2.xml","scraped_at":"2026-02-25T20:02:10.753122Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ola:document::4.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OLA Document","description":"This collection contains the documents applicable to the OSIRIS-REx Laser Altimeter (OLA) instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/collection_ola_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/collection_ola_document.xml","scraped_at":"2026-02-25T20:02:10.753125Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.otes:data_calibrated::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Calibrated","description":"This collection contains the calibrated spectra acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/collection_otes_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/collection_otes_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753128Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.otes:data_converted::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Converted","description":"This collection contains the voltage interferograms acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/collection_otes_converted.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/collection_otes_converted.xml","scraped_at":"2026-02-25T20:02:10.753132Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.otes:data_engl0::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Raw Engineering","description":"This collection contains the raw engineering data acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES). Data are grouped by day.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/collection_otes_engl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/collection_otes_engl0.xml","scraped_at":"2026-02-25T20:02:10.753135Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.otes:data_engl1::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Converted Engineering","description":"This collection contains the engineering data converted to physical units acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES). Data are grouped by day.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/collection_otes_engl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/collection_otes_engl1.xml","scraped_at":"2026-02-25T20:02:10.753139Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.otes:data_raw::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Raw","description":"This collection contains the raw interferograms acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/collection_otes_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/collection_otes_raw.xml","scraped_at":"2026-02-25T20:02:10.753142Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.otes:document::10.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document","description":"This collection contains the documents applicable to the OSIRIS-REx Thermal Emission Spectrometer (OTES) documents.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/collection_otes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/collection_otes_document.xml","scraped_at":"2026-02-25T20:02:10.753146Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.otes:geometry::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Geometry","description":"This collection contains the geometric calculations applicable to the science measurements acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Geometry"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/collection_otes_geometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/collection_otes_geometry.xml","scraped_at":"2026-02-25T20:02:10.753150Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ceres:browse::1.0","title":"DAWN GRaND Ceres Bundle: Browse Collection","description":"Browse files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/collection_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.753153Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ceres:data_raw::1.0","title":"DAWN GRaND Ceres Bundle: Raw Data Collection","description":"Raw data files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2015-03-13","stop_date":"2018-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753157Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ceres:document::1.0","title":"DAWN GRaND Ceres Bundle: Document Collection","description":"Document files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753160Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ceres:data_calibrated::1.0","title":"DAWN GRaND Ceres Bundle: Calibrated Data Collection","description":"Calibrated data files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2015-03-13","stop_date":"2018-10-26","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753164Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ceres:data_derived::1.0","title":"DAWN GRaND Ceres Bundle: Derived Data Collection","description":"Derived data files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2015-12-16","stop_date":"2016-05-11","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/collection_data_derived.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/collection_data_derived.xml","scraped_at":"2026-02-25T20:02:10.753168Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ceres:miscellaneous::1.0","title":"DAWN GRaND Ceres Bundle: Miscellaneous Data Collection","description":"Miscellaneous files for the GRaND Ceres bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/collection_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.753171Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-vesta:browse::1.0","title":"DAWN GRaND Vesta Bundle: Browse Collection","description":"Browse files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/collection_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.753174Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-vesta:data_raw::1.0","title":"DAWN GRaND Vesta Bundle: Raw Data Collection","description":"Raw data files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2011-05-03","stop_date":"2012-08-09","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753179Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-vesta:document::1.0","title":"DAWN GRaND Vesta Bundle: Document Collection","description":"Document files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753182Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-vesta:data_calibrated::1.0","title":"DAWN GRaND Vesta Bundle: Calibrated Data Collection","description":"Calibrated data files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2011-05-03","stop_date":"2012-08-09","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753185Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-vesta:data_derived::1.0","title":"DAWN GRaND Vesta Bundle: Derived Data Collection","description":"Derived data files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2011-12-08","stop_date":"2012-05-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/collection_data_derived.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/collection_data_derived.xml","scraped_at":"2026-02-25T20:02:10.753189Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-vesta:miscellaneous::1.0","title":"DAWN GRaND Vesta Bundle: Miscellaneous Collection","description":"Miscellaneous files for the GRaND Vesta bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(4) Vesta"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/collection_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.753192Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-cruise:browse::1.0","title":"DAWN GRaND Cruise Bundle: Browse Collection","description":"Browse files for the GRaND Cruise bundle. Browse products are only avaliable for the Vesta-Ceres Cruise phase.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/collection_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.753196Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-cruise:data_raw::1.0","title":"DAWN GRaND Cruise Bundle: Raw Data Collection","description":"Raw data files for the GRaND Cruise bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2007-10-16","stop_date":"2014-07-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753199Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-cruise:document::1.0","title":"DAWN GRaND Cruise Bundle: Document Collection","description":"Document files for the GRaND Cruise bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["(1) Ceres","(4) Vesta","Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753203Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ancillary:document::1.0","title":"DAWN GRaND Ancillary Bundle: Document Collection","description":"Document for the GRaND instrument that are not specific to any phase of the mission","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":[],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753207Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-ancillary:miscellaneous::1.0","title":"DAWN GRaND Ancillary Bundle: Miscellaneous Collection","description":"Miscellaneous files for the GRaND instrument","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":[],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Miscellaneous"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/collection_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/collection_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.753210Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-mars:data_raw::1.0","title":"DAWN GRaND Mars Bundle: Raw Data Collection","description":"Raw data files for the GRaND Mars bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2009-01-20","stop_date":"2009-03-27","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753214Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-mars:document::1.0","title":"DAWN GRaND Mars Bundle: Document Collection","description":"Document files for the GRaND Mars bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.753217Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-grand-mars:data_calibrated::1.0","title":"DAWN GRaND Mars Bundle: Calibrated Data Collection","description":"Calibrated data files for the GRaND Mars bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN Mission to Vesta and Ceres"],"targets":["Mars"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"2009-02-17","stop_date":"2009-02-18","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753222Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_nirs3:data_ancillary::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Ancillary Data","description":"This collection contains the derived ancillary data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/collection_hyb2_nirs3_data_ancillary.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/collection_hyb2_nirs3_data_ancillary.xml","scraped_at":"2026-02-25T20:02:10.753227Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_nirs3:document::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Document","description":"This collection contains the documents applicable to the Hayabusa2 NIRS3 instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":[],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/collection_hyb2_nirs3_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/collection_hyb2_nirs3_document.xml","scraped_at":"2026-02-25T20:02:10.753232Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_nirs3:data_calibrated::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Calibrated Data","description":"This collection contains the calibrated science data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/collection_hyb2_nirs3_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/collection_hyb2_nirs3_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.753237Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_nirs3:calibration::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Calibration Data","description":"This collection contains the calibration data products for data produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Calibration"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/collection_hyb2_nirs3_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/collection_hyb2_nirs3_calibration.xml","scraped_at":"2026-02-25T20:02:10.753243Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_nirs3:data_raw::1.0","title":"NIRS3 instrument of Hayabusa2 Mission: Raw Data","description":"This collection contains the raw science data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["NIRS3"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/collection_hyb2_nirs3_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/collection_hyb2_nirs3_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753248Z","keywords":["Hayabusa2","NIRS3","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_tir:browse::1.0","title":"TIR Instrument of Hayabusa2 Mission: Browse Collection","description":"This collection contains the quick-look image data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Browse"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/collection_hyb2_tir_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/collection_hyb2_tir_browse.xml","scraped_at":"2026-02-25T20:02:10.753253Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_tir:calibration::1.0","title":"TIR instrument of Hayabusa2 Mission: Calibration Collection","description":"This collection contains the calibration data products for data produced by the TIR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Calibration"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/collection_hyb2_tir_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/collection_hyb2_tir_calibration.xml","scraped_at":"2026-02-25T20:02:10.753257Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_tir:document::1.0","title":"TIR instrument of Hayabusa2 Mission: Document Collection","description":"This collection contains the documents applicable to the Hayabusa2 TIR instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/collection_hyb2_tir_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/collection_hyb2_tir_document.xml","scraped_at":"2026-02-25T20:02:10.753262Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_tir:data_btemp::1.0","title":"TIR instrument of Hayabusa2 Mission: Calibrated Brightness Temperature Data Collection","description":"This collection contains the calibrated brightness temperature data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/collection_hyb2_tir_data_btemp.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/collection_hyb2_tir_data_btemp.xml","scraped_at":"2026-02-25T20:02:10.753267Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_tir:data_raw::1.0","title":"TIR instrument of Hayabusa2 Mission: Raw Data Collection","description":"This collection contains the raw binary image data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth"],"instruments":["TIR"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/collection_hyb2_tir_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/collection_hyb2_tir_data_raw.xml","scraped_at":"2026-02-25T20:02:10.753271Z","keywords":["Hayabusa2","TIR","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_high_rate_detector:data_calibration::1.0","title":"data_calibration collection for the \"CASSINI HIGH RATE DETECTOR\" bundle","description":"This is the data_calibration collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Data"],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/collection_cassini_high_rate_detector_data_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/collection_cassini_high_rate_detector_data_calibration.xml","scraped_at":"2026-02-25T20:02:10.753276Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_high_rate_detector:data_engineering::1.0","title":"data_engineering collection for the \"CASSINI HIGH RATE DETECTOR\" bundle","description":"This is the data_engineering collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Data"],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/collection_cassini_high_rate_detector_data_engineering.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/collection_cassini_high_rate_detector_data_engineering.xml","scraped_at":"2026-02-25T20:02:10.753281Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_high_rate_detector:data_science::1.0","title":"data_science collection for the \"CASSINI HIGH RATE DETECTOR\" bundle","description":"This is the data_science collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Data"],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/collection_cassini_high_rate_detector_data_science.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/collection_cassini_high_rate_detector_data_science.xml","scraped_at":"2026-02-25T20:02:10.753285Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:cassini_high_rate_detector:document::1.0","title":"document collection for the \"CASSINI HIGH RATE DETECTOR\" bundle","description":"This is the document collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["CASSINI-HUYGENS"],"targets":["Calibration Target","Dust"],"instruments":["HIGH RATE DETECTOR"],"instrument_hosts":["CASSINI ORBITER"],"data_types":["Document"],"start_date":"1999-03-25","stop_date":"2017-09-15","browse_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/collection_cassini_high_rate_detector_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/collection_cassini_high_rate_detector_document.xml","scraped_at":"2026-02-25T20:02:10.753289Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.amica.itokawa.backplanes:data::1.0","title":"Hayabusa AMICA Images with Geometry Backplanes V1.0","description":"The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":["Data"],"start_date":"2005-09-11","stop_date":"2005-10-28","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/collection_hay.amica.itokawa.backplanes_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/collection_hay.amica.itokawa.backplanes_data.xml","scraped_at":"2026-02-25T20:02:10.753293Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.amica.itokawa.backplanes:document::1.0","title":"Hayabusa AMICA Images with Geometry Backplanes V1.0","description":"The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa"],"targets":["(25143) Itokawa"],"instruments":["Asteroid Multi-band Imaging Camera"],"instrument_hosts":["Hayabusa"],"data_types":["Document"],"start_date":"2005-09-11","stop_date":"2005-10-28","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/collection_hay.amica.itokawa.backplanes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/collection_hay.amica.itokawa.backplanes_document.xml","scraped_at":"2026-02-25T20:02:10.753297Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_spectra_reddy_neos_marscrossers:data::1.0","title":"data collection for the \"REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS\" bundle","description":"This is the data collection for the ast_spectra_reddy_neos_marscrossers bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1036) Ganymed","(1170) Siva","(1727) Mette","(1916) Boreas","2004 RS109","2008 RW24","(2035) Stearns","(323) Brucia","(391) Ingeborg","(4179) Toutatis","(7088) Ishtar","Multiple Asteroids","(137032) 1998 UO1","(137924) 2000 BD19","(143678) 2003 SA224","(143947) 2003 YQ117","(144411) 2004 EW9","(163000) 2001 SW169","(21374) 1997 WS22","(23183) 2000 OY21","(391151) 2005 YY93","(39572) 1993 DQ1","(446791) 1998 SJ70","(66063) 1998 RO1","(68950) 2002 QF15","(85709) 1998 SG36","(85713) 1998 SS49","(87684) 2000 SY2"],"instruments":["SpeX","Infrared Telescope Facility"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2001-09-29","stop_date":"2008-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/collection_ast_spectra_reddy_neos_marscrossers_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/collection_ast_spectra_reddy_neos_marscrossers_data.xml","scraped_at":"2026-02-25T20:02:10.753302Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ast_spectra_reddy_neos_marscrossers:document::1.0","title":"document collection for the \"REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS\" bundle","description":"This is the document collection for the ast_spectra_reddy_neos_marscrossers bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1036) Ganymed","(1170) Siva","(1727) Mette","(1916) Boreas","2004 RS109","2008 RW24","(2035) Stearns","(323) Brucia","(391) Ingeborg","(4179) Toutatis","(7088) Ishtar","Multiple Asteroids","(137032) 1998 UO1","(137924) 2000 BD19","(143678) 2003 SA224","(143947) 2003 YQ117","(144411) 2004 EW9","(163000) 2001 SW169","(21374) 1997 WS22","(23183) 2000 OY21","(391151) 2005 YY93","(39572) 1993 DQ1","(446791) 1998 SJ70","(66063) 1998 RO1","(68950) 2002 QF15","(85709) 1998 SG36","(85713) 1998 SS49","(87684) 2000 SY2"],"instruments":["SpeX","Infrared Telescope Facility"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2001-09-29","stop_date":"2008-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/collection_ast_spectra_reddy_neos_marscrossers_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/collection_ast_spectra_reddy_neos_marscrossers_document.xml","scraped_at":"2026-02-25T20:02:10.753308Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_satellite_shape_models:document::1.0","title":"Saturn Small Moon Shape Models V1.0","description":"Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-huygens"],"targets":["Saturn XVI (Prometheus)","Saturn XV (Atlas)","Saturn XIV (Calypso)","PAN","PANDORA","EPIMETHEUS","Saturn VII (Hyperion)","Saturn XXXV (Daphnis)","Saturn X (Janus)","Saturn XII (Helene)","Saturn XIII (Telesto)"],"instruments":["Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/collection_saturn_satellite_shape_models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/collection_saturn_satellite_shape_models_document.xml","scraped_at":"2026-02-25T20:02:10.753312Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:saturn_satellite_shape_models:data::1.0","title":"Saturn Small Moon Shape Models V1.0","description":"Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-huygens"],"targets":["Saturn XVI (Prometheus)","Saturn XV (Atlas)","Saturn XIV (Calypso)","PAN","PANDORA","EPIMETHEUS","Saturn VII (Hyperion)","Saturn XXXV (Daphnis)","Saturn X (Janus)","Saturn XII (Helene)","Saturn XIII (Telesto)"],"instruments":["Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/collection_saturn_satellite_shape_models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/collection_saturn_satellite_shape_models_data.xml","scraped_at":"2026-02-25T20:02:10.753319Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:epoxi_mri:hartley2_photometry::1.0","title":"EPOXI MRI-VIS 103P/Hartley 2 Encounter Photometry Collection","description":"We perform photometric measurements of comet 103P/Hartley 2 using images taken through the CLEAR1 (broadband, 200-1100 nm), CN (387 nm), OH (309 nm), C2 (514 nm), and two continuum filters (Ultraviolet at 345 nm and Green at 526 nm) of the Medium Resolution Instrument (MRI) on board the Deep Impact flyby spacecraft from 1 October to 26 November 2010 during the EPOXI mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["EPOXI"],"targets":["103P/HARTLEY 2 (1986 E2)"],"instruments":["DEEP IMPACT MEDIUM RESOLUTION INSTRUMENT - VISIBLE CCD"],"instrument_hosts":["DEEP IMPACT FLYBY SPACECRAFT"],"data_types":["Data"],"start_date":"2010-10-01","stop_date":"2010-11-26","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/collection.xml","scraped_at":"2026-02-25T20:02:10.753870Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:halebopp::1.0","title":"Hale-Bopp Visual Lightcurve","description":"This dataset contains visual magnitudes of comet C/1995 O1 (Hale-Bopp) that were obtained from the International Comet Quarterly and processed to provide a secular lightcurve from -7 au (pre-perihelion) to +8 au (post-perihelion). The original apparent magnitudes from 17 observers were corrected for geocentric distance and phase angle, and then combined in a systematic way that yielded a self-consistent consensus fit. In analyzing visual data from multiple observers, the questions inevitably arise of which data to reject, and under what justification, and whether combining data from observers, each with their own systematic errors, leads to a biased result. Without instrumental calibration, there is no certain answer to these questions, and such calibration is not available for the observations discussed here. We estimated the shifts with a self-consistent statistical approach, leading to a sharper light curve and improving the precision of the measured slopes. The dataset includes the original apparent magnitudes, those corrected for geocentric distance and phase angle, and the final shifted and weighted values. The final secular lightcurve is the best produced to date for comet Hale-Bopp.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/1995 O1 (HALE-BOPP)"],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1995-07-24","stop_date":"1999-09-23","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/collection.xml","scraped_at":"2026-02-25T20:02:10.753893Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:polarimetry::1.0","title":"Compilation of Comet Polarimetry from Published and Unpublished Sources","description":"This collection presents comet polarimetry results collected and tabulated from both published literature and unpublished sources.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":["Compilation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1881-06-29","stop_date":"2016-10-19","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/collection.xml","scraped_at":"2026-02-25T20:02:10.753898Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:unid-emis::1.0","title":"Catalog of Unidentified Cometary Emission Lines","description":"This data set contains tables of unidentified spectral emission lines and other ancillary information in a variety of comet observations. All these originally unidentified lines have been taken from the reference papers without adding or removing lines or using selection criteria.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1943-02-24","stop_date":"2004-04-24","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/collection.xml","scraped_at":"2026-02-25T20:02:10.753901Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:lightcurves::1.0","title":"Survey of Comet Lightcurves (PDS4 Format)","description":"This is a dataset that compiles reported observations of brightness changes in comets from various papers to produce lightcurves. Specifically, the data were based on references in Samarasinha et al. (2004), i.e. they are those lightcurves which were used to find the rotational properties of comet nuclei (periods, rotation vector coordinates, spin mode, etc.) reported by Samarasinha et al. (2004). These data were migrated from the PDS3 dataset EAR-C-COMPIL-5-LIGHTCURVES-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":["Multiple Comets"],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1957-07-28","stop_date":"1957-07-28","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/collection.xml","scraped_at":"2026-02-25T20:02:10.753904Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:phys_char::1.0","title":"Physical Charecteristics of Comets (PDS4 Format)","description":"This dataset is a compilation of observational measurements on comet morphology and magnitude covering just over a thousand apparitions of various comets from -466 to 1975. These data were migrated from the PDS3 dataset EAR-C-5-DDR-PCC-V1.0. For migration, the data files were left untouched and the information in the PDS3 labels was translated into PDS4 format and augmented with additional metadata; the reference list file was converted to a document product; and the PDS3 data set catalog file was edited and updated to create the description document.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":null,"stop_date":"1975-01-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/collection.xml","scraped_at":"2026-02-25T20:02:10.753912Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:nuc_properties::1.0","title":"Properties of Comet Nuclei (PDS4 Format)","description":"This collection contains size, shape, albedo and color data for various comets collected from the literature. These data were migrated from the PDS3 dataset EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0, Properties of Comet Nuclei.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":"2010-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/collection.xml","scraped_at":"2026-02-25T20:02:10.753916Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil-comet:nuc_rotation::1.0","title":"Rotation of Comet Nuclei: Table 1 (PDS4 Format)","description":"This collection presents Table 1 of Samarasinha, et al. (2004): 'Information on spin states of specific comets', as published in 'Comets II' (Festou, Keller and Weaver, eds.). These data were migrated from the PDS3 dataset and EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0, Rotation of Comet Nuclei: Table 1.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/collection.xml","scraped_at":"2026-02-25T20:02:10.753919Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:spitzer:spitzer-spec-comet::1.0","title":"Spitzer Space Telescope Spectroscopy of Comets","description":"We present spectra of comets observed with the Infrared Spectrograph (IRS) on the Spitzer Space Telescope. The observations are based on a select set of comets with high-quality data, reduced using a uniform approach. We summarize the observations, and detail our reduction methodology. Additional details on the calibration of cometary sources with the IRS instrument are also given, and plots of all spectra are included for reference.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Spitzer Space Telescope"],"targets":["6P/1851 M1 (d'Arrest 1)","9P/1867 G1 (Tempel 1)","8P/1858 A1 (Tuttle 1)","17P/1892 V1 (Holmes 1)","21P/1900 Y1 (Giacobini-Zinner 1)","29P/1927 V1 (Schwassmann-Wachmann 1)","37P/1929 P1 (Forbes 1)","41P/1951 H1 (Tuttle-Giacobini-Kresak 1)","46P/1948 A1 (Wirtanen 1)","48P/1949 Q1 (Johnson 1)","62P/1965 A1 (Tsuchinshan 1)","65P/1970 U2 (Gunn)","67P/1969 R1 (Churyumov-Gerasimenko 1)","71P/1973 L1 (Clark 1)","73P/1930 J1-B (Schwassmann-Wachmann 3 B)","73P/1930 J1-C (Schwassmann-Wachmann 3 C)","78P/1973 S1 (Geherls 2)","88P/1981 Q1 (Howell 1)","105P/1986 J1 (Singer Brewster 1)","121P/1989 E2 (Shoemaker-Holt 2)","123P/1989 E3 (West-Hartley 1)","132P/1989 U1 (Helin-Roman-Alu 2)","144P/1994 A1 (Kushida 1)","C/2001 Q4 (NEAT)","C/2003 K4 (LINEAR)","C/2003 T3 (Tabur)","C/2003 T4 (LINEAR)","C/2004 B1 (LINEAR)","C/2004 Q2 (Machholz)","C/2006 P1 (McNaught)","C/2006 Q1 (McNaught)","C/2007 N3 (Lulin)","C/2008 T2 (Cardinal)"],"instruments":["Infrared Spectrograph (IRS)"],"instrument_hosts":["Spitzer Space Telescope"],"data_types":["Data"],"start_date":"2003-11-23","stop_date":"2009-04-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/collection.xml","scraped_at":"2026-02-25T20:02:10.753988Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-ctio:cfccd-19p::1.0","title":"CTIO Images of 19P/Borrelly with Photometry (PDS4 Format)","description":"This collection contains images of the Deep Space 1 target, comet 19P/Borrelly, and derived photometry from five consecutive nights of observing over 28 July - 1 August 2000. The observations were made using the 1.5m telescope of the Cerro Tololo Interamerican Observatory using the CFCCD camera mounted at the f/7.5 focus. The detector used was a Tek2K, yielding a plate scale of 0.4334 arcseconds/pixel. These data were migrated from the PDS3 dataset EAR-C-CFCCD-5-RDR-CTIO-BORR-PHOTOM-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["19P/1904 Y2 (Borrelly 1)"],"instruments":["1.5-m Ritchey-Chretien Cassegrain reflector","Cassegrain Focus Direct Image CCD Camera"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"2000-07-28","stop_date":"2000-08-01","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/collection.xml","scraped_at":"2026-02-25T20:02:10.753992Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:feb2013_hfosc_fosc::1.0","title":"Comet ISON February 2013 HFOSC and FOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in February 2013. Imaging data were acquired on February 19, 21 and 22 in R and I Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO), Hanle, Leh, of the Indian Institute of Astrophysics (IIA). Spectroscopic data were taken on February 09 using the Faint Object Spectrograph and Camera (FOSC) mounted on the 40-inch telescope (T40) of the Wise Observatory of the Tel-Aviv University, Israel. Spectroscopic data provides coverage from 380 to 730 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)","One Meter Telescope","Faint Object Spectrographic Camera"],"instrument_hosts":["Indian Astronomical Observatory (IAO)","Wise Observatory"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/collection.xml","scraped_at":"2026-02-25T20:02:10.753997Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:hfosc_solar-analog::1.0","title":"Comet ISON 2014 Solar Analog Spectroscopy Collection","description":"This dataset contains raw, processed and derived spectroscopic data of the solar analog star HD195034 taken on May 31, 2014, using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectroscopic data provides coverage from 380 to 830 nm. The manual of the HFOSC instrument is included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["HD 195034"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":["Indian Astronomical Observatory (IAO)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/collection.xml","scraped_at":"2026-02-25T20:02:10.754001Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:jan2013_hfosc::1.0","title":"Comet ISON January 2013 HFOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken on January 22, 2013, using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Photometric data were taken in V, R and I Bessel bands, and images were aligned. Spectroscopic data provides coverage from 380 to 830 nm. The manual of the HFOSC instrument is included.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":["Indian Astronomical Observatory (IAO)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/collection.xml","scraped_at":"2026-02-25T20:02:10.754005Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:may2013_hfosc_omr::1.0","title":"Comet ISON May 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in May 2013. Photometric data was obtained on May 01 and 04 in V and R Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectra were taken using the HFOSC instrument on May 01 and 15; and on May 02 using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 380 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)","2.34-m VBT Telescope","OMR Spectrograph"],"instrument_hosts":["Indian Astronomical Observatory (IAO)","Vainu Bappu Observatory"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/collection.xml","scraped_at":"2026-02-25T20:02:10.754009Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:nov2013_hfosc_omr::1.0","title":"Comet ISON November 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON), taken in November 2013. Two images of the comet were obtained on November 10 in R Bessel band using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Comet spectra were taken on five dates: November 08, 09, 11, 12 and 13, using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 400 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)","2.34-m VBT Telescope","OMR Spectrograph"],"instrument_hosts":["Indian Astronomical Observatory (IAO)","Vainu Bappu Observatory"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/collection.xml","scraped_at":"2026-02-25T20:02:10.754014Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:oct2013_hfosc_omr::1.0","title":"Comet ISON October 2013 HFOSC and OMR Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in October 2013. Photometric data was obtained on October 01 in B and R Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectra were taken on October 01 using the HFOSC instrument; and on October 17 using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 380 to 900 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)","2.34-m VBT Telescope","OMR Spectrograph"],"instrument_hosts":["Indian Astronomical Observatory (IAO)","Vainu Bappu Observatory"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/collection.xml","scraped_at":"2026-02-25T20:02:10.754018Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-c2012_s1_ison:sept2013_hfosc::1.0","title":"Comet ISON September 2013 HFOSC Observations Collection","description":"This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in September 2013 using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh, India. Photometric data was obtained on September 08 in I Bessel band. Spectroscopic data was obtained on September 29 and provides coverage from 380 to 730 nm.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["C/ISON (2012 S1)"],"instruments":["Himalayan Chandra Telescope (HCT)","Hanle Faint Object Spectrograph and Camera (HFOSC)"],"instrument_hosts":["Indian Astronomical Observatory (IAO)"],"data_types":["Data"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/collection.xml","scraped_at":"2026-02-25T20:02:10.754021Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-irtf:nirimg-9p::1.0","title":"IRTF Near-IR Imaging of Comet 9P/Tempel 1 during Deep Impact Encounter","description":"Near-IR images of Comet 9P/Tempel 1 were obtained at the NASA IRTF during the period from June 24 through July 17, 2005 UT. These observations were taken as part of a campaign designed to support the science objectives of the Deep Impact spacecraft around the time of its encounter with Tempel 1. This data set contains all raw images, including those required for reduction and photometric calibration of the comet observations. These data were migrated from the PDS3 dataset DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["IRTF 3.0-Meter Telescope","SpeX"],"instrument_hosts":["NASA Infrared Telescope Facility"],"data_types":["Data"],"start_date":"2005-06-24","stop_date":"2005-07-17","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754374Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-irtf:mirsi-9p::1.0","title":"IRTF Mid-IR Imaging of Comet 9P/Tempel 1 (PDS4 Format)","description":"Mid-IR images of Comet 9P/Tempel 1 were obtained at the NASA IRTF during the period from July 2-18, 2005 UT. These observations were taken as part of a campaign designed to support the science objectives of the Deep Impact spacecraft around the time of its encounter with Tempel 1. This data set contains all raw images, including those required for reduction and photometric calibration of the comet observations. These data were migrated from the PDS3 dataset DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["IRTF 3.0-Meter Telescope","Mid-Infrared Spectrometer and Imager"],"instrument_hosts":["NASA Infrared Telescope Facility"],"data_types":["Data"],"start_date":"2005-07-02","stop_date":"2005-07-18","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754378Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:19p_col_density::1.0","title":"McDonald Observatory Column Density Observations of 19P/Borrelly (PDS4 Format)","description":"This data set includes the raw column densities of several gas species observed in the spectra of comet Borrelly, as a function of position in the coma. All measurements were made with the 2.7-m Harlan J Smith Telescope at McDonald Observatory. During the 1981 and 1987-1988 apparitions, the data were obtained with the Intensified Dissector Scanner (IDS), and during the 1994 apparition, the data were obtained with the Large Cassegrain Spectrograph (LCS). These data were migrated from the PDS3 dataset EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["19P/1904 Y2 (Borrelly 1)"],"instruments":["2.7m Telescope","Image Dissector Scanner","Large Cassegrain Spectrograph"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1981-01-03","stop_date":"1994-12-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/collection.xml","scraped_at":"2026-02-25T20:02:10.754382Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:devico_atlas::1.0","title":"High Spectral Resolution Atlas of Comet 122P/deVico (PDS4 Format)","description":"This collection presents an atlas of 12,219 identified and 4,055 unidentified spectral lines from high resolution spectra of comet 122P/deVico. The spectra were obtained at the McDonald Observatory using the 2D Coude cross-dispersed echelle spectrograph (CS2) at the Coude f/32.5 focus of the 2.7m Harlan J. Smith telescope. These data were migrated from the PDS3 dataset EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["122P/1846 D1 (de Vico 1)"],"instruments":["2.7m Telescope"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1995-10-03","stop_date":"1995-10-04","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/collection.xml","scraped_at":"2026-02-25T20:02:10.754386Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:faint_comet_survey::1.0","title":"McDonald Observatory Faint Comet Spectro-Photometric Survey (PDS4 Format)","description":"This study presents spectral data from 152 observations of 17 comets obtained using an Intensified Dissector Scanner spectrograph at the McDonald Observatory. A full description of these data and the reduction process, along with Haser model production rates can be found in Cochran et al. (1992). These data were migrated from the PDS3 dataset EAR-C-MCDIDS-3-RDR-MCDNLD-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Comets"],"instruments":["2.7m Telescope","Image Dissector Scanner"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1981-08-25","stop_date":"1989-05-08","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/collection.xml","scraped_at":"2026-02-25T20:02:10.754390Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:igi-19p::1.0","title":"McDonald Observatory Images of Comet 19P/Borrelly (PDS4 Format)","description":"Images of comet 19P/Borrelly obtained at the McDonald Observatory with the Imaging Grism Instrument on five observing runs during the 2001 apparition. These data were migrated from the PDS3 dataset EAR-C-IGI-3-EDR-BORRELLY-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["19P/1904 Y2 (Borrelly 1)"],"instruments":["2.7m Harlan J. Smith telescope","2.1m Otto Struve telescope","Imaging Grism Instrument"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"2001-09-21","stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/collection.xml","scraped_at":"2026-02-25T20:02:10.754394Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-mcdonald:lcs-9p::1.0","title":"McDonald Observatory 9P/Tempel 1 Spectral Observations (PDS4 Format)","description":"We report on low-spectral resolution observations of comet 9P/Tempel 1 from 1983, 1989, 1994 and 2005 using the 2.7m Harlan J. Smith telescope of McDonald Observatory. This comet was the target of NASA's Deep Impact mission and our observations allowed us to characterize the comet prior to the impact. In the published paper, we showed that the comet decreased in gas production from 1983 to 2005, with the decrease being different factors for different species. OH decreased by a factor 2.7, NH by 1.7, CN by 1.6, C3 by 1.8, CH by 1.4 and C2 by 1.3. Despite the decrease in overall gas production and these slightly different decrease factors, we found that the ratios of the gas production rates of OH, NH, C3, CH and C2 that of CN were constant over all of the apparitions. We saw no change in the production rate ratios after the impact. We found that the peak gas production occurred about two months prior to perihelion. This data set represents the integrated fluxes and column densities, mentioned in the published paper, which were used to derive the production rates in the paper. These data were migrated from the PDS3 dataset EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["2.7m Telescope","Large Cassegrain Spectrometer"],"instrument_hosts":["McDonald Observatory"],"data_types":["Data"],"start_date":"1989-07-01","stop_date":"2005-07-06","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754398Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:document::1.0","title":"Kitt Peak National Observatory - Documentation Collection","description":"This collection contains documents describing the facilities, instrumentation, and common procedures relevant to data taken at the Kitt Peak National Observatory (KPNO).","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/collection.xml","scraped_at":"2026-02-25T20:02:10.754401Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:hyakutake_spectra::1.0","title":"Spectra of C/1996 B2 (Hyakutake) for Multiple Offsets from Photocenter","description":"High resolution spectra of comet Hyakutake obtained at Kitt Peak National Observatory on the day of closest approach, 26 March 1996, with the echelle spectrograph on the 4m Mayall Telescope. There are spectra for offsets of 0, 2, 7, and 10 arcsec sunward from the photocenter. The wavelength ranges from 3040-4500 Angstroms.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":["C/1996 B2 (Hyakutake)"],"instruments":["4m Mayall Telescope","Echelle Spectrograph"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"1996-03-26","stop_date":"1996-03-26","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/collection.xml","scraped_at":"2026-02-25T20:02:10.754405Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:image-19p::1.0","title":"KPNO Images of Comet 19P/Borrelly from 21-23 Sep 2001 (PDS4 Format)","description":"The data set consists of ground-based images of comet 19P/Borrelly in the R filter taken at the Kitt Peak 2.1m for three nights from September 21-23, 2001, bracketing the Deep Space 1 encounter. Raw, as well as reduced images are included. These data were migrated from the PDS3 dataset EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["19P/1904 Y2 (Borrelly 1)","PG0231+051","PG2213-006"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","T2KA Imager"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2001-09-20","stop_date":"2001-09-23","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/collection.xml","scraped_at":"2026-02-25T20:02:10.754409Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:image-9p::1.0","title":"KPNO Images of Comet 9P/Tempel 1 from February to June 2005","description":"The data set consists of raw and reduced ground-based images of comet 9P/Tempel 1 in the broadband R and narrowband HB filters taken at the Kitt Peak 2.1m telescope from February to June 2005 prior to the Deep Impact encounter. These data were migrated from the PDS3 dataset EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","F3KB CCD Camera"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2005-02-01","stop_date":"2005-06-07","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754413Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:mosaic-9p::1.0","title":"KPNO MOSAIC Images of 9P/Tempel 1 from 2005 Around the DI Encounter","description":"The data set consists of ground-based images of comet 9P/Tempel 1 in the broadband R and narrowband HB filters taken at the Kitt Peak Mayall 4m telescope with the MOSAIC camera from July 2-9, 2005 around the Deep Impact encounter. These data were migrated from the PDS3 dataset EAR-C-I0655-2/3-MOSAICTEMPEL1-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["4-m Mayall Ritchey-Chretien equatorial reflector","Kitt Peak Mosaic Camera"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2005-07-01","stop_date":"2005-07-09","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754418Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo-kpno:nirimage-9p::1.0","title":"KPNO Near-Infrared Images of Comet 9P/Tempel 1 during Deep Impact Encounter","description":"This dataset contains raw and reduced near-infrared images of comet 9P/Tempel 1, the target of the Deep Impact mission. Images were obtained from UT July 2-9, 2005 by M. Knight, R. Swaters, and N. Samarasinha using the Simultaneous Quad Infrared Imaging Device at the KPNO 2.1-m telescope. Results are published in the paper 'Ground-based visible and near-IR observations of Comet 9P/Tempel 1 during the Deep Impact encounter' by Knight et al. 2007. These data were migrated from the PDS3 dataset DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["9P/1867 G1 (Tempel 1)"],"instruments":["2.13-m Corning Cassegrain/Coude reflector","NOAO Simultaneous Quad Infrared Imaging Device"],"instrument_hosts":["Kitt Peak National Observatory"],"data_types":["Data"],"start_date":"2005-07-02","stop_date":"2005-07-09","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/collection.xml","scraped_at":"2026-02-25T20:02:10.754421Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ro_derived:dfms_ts_abundance::1.0","title":"Rosetta ROSINA DFMS Time Series Abundances","description":"This collection contains time series abundance data files derived from observations made with the Rosetta Orbiter Spectrometer for Ion and Neutral Analysis (ROSINA) Double Focusing Mass Spectrometer (DFMS) instrument onboard the Rosetta spacecraft. The data in this collection span the comet encounter Prelanding through Extension 3 mission phases of the Rosetta mission to comet 67P/Churyumov-Gerasimenko.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["INTERNATIONAL ROSETTA MISSION"],"targets":["67P/1969 R1 (Churyumov-Gerasimenko 1)"],"instruments":["ROSETTA ORBITER SPECTROMETER FOR ION AND NEUTRAL ANALYSIS"],"instrument_hosts":["Rosetta-orbiter"],"data_types":["Data"],"start_date":"2014-09-01","stop_date":"2016-09-05","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/collection.xml","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/collection.xml","scraped_at":"2026-02-25T20:02:10.754857Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Multispectral Visible Imaging Camera (MVIC)","description":"This collection is a migration from PDS3 of the cumulative set of ancillary files (filter curves, reference spectra, etc.) used in calibrating the data sets delivered by the MVIC instrument over the course of the New Horizons primary and extended missions. Provenance, as far as it could be determined, is included in the label for each product.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/collection.lblx","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/collection.lblx","scraped_at":"2026-02-25T20:02:10.754860Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:kem1_cal::1.0","title":"New Horizons KEM1 Encounter Multispectral Visible Imaging Camera (MVIC) Partially Processed Data","description":"This data set contains partially processed data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. The data includes functional tests and images during the approach and departure of Arrokoth. A look back at Pluto was also performed after the Arrokoth flyby. A Color Scan of Neptune and Uranus was done along with a Solar Star Calibration and Radiometric Calibration. These data were migrated from the PDS3 dataset: NH-A-MVIC-3-KEM1-V6.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission 1"],"targets":["(486958) Arrokoth"],"instruments":["Multispectral Visible Imaging Camera (MVIC)"],"instrument_hosts":["New Horizons Spacecraft"],"data_types":["Data"],"start_date":"2018-08-31","stop_date":"2019-09-02","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/collection.lblx","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/collection.lblx","scraped_at":"2026-02-25T20:02:10.754864Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:kem1_raw::1.0","title":"New Horizons KEM1 Encounter Multispectral Visible Imaging Camera (MVIC) Raw Data","description":"This data set contains Raw data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. The data includes functional tests and images during the approach and departure of Arrokoth. A look back at Pluto was also performed after the Arrokoth flyby. A Color Scan of Neptune and Uranus was done along with a Solar Star Calibration and Radiometric Calibration. These data were migrated from the PDS3 dataset: NH-A-MVIC-2-KEM1-V6.0. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission 1"],"targets":["(486958) Arrokoth"],"instruments":["Multispectral Visible Imaging Camera (MVIC)"],"instrument_hosts":["New Horizons Spacecraft"],"data_types":["Data"],"start_date":"2018-08-31","stop_date":"2019-09-02","browse_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/","download_url":null,"label_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/collection.lblx","source_url":"https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/collection.lblx","scraped_at":"2026-02-25T20:02:10.754868Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbl-classe:charon_exosphere::1.0","title":"Center for Laboratory Astrophysics and Space Science Experiments (CLASSE) Charon Exospheric Simulation Data","description":"This dataset includes exospheric simulations and laboratory data relevant to the Charon red polar region. The dataset provides predictions for methane accretion relative to Lyman-Alpha flux at Charon's winter polar region and the photolytic production of higher order hydrocarbons. We also provide infrared spectra of photolyzed films under conditions found at Charon's polar (high phi) and mid-latitude (low phi) regions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Charon Laboratory Analog"],"instruments":["Mordor (Ultra-high Vacuum) UHV System"],"instrument_hosts":["CLASSE"],"data_types":["Data"],"start_date":"2022-02-15","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/collection.xml","scraped_at":"2026-02-25T20:02:10.756571Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents:alice::1.0","title":"New Horizons Documents for the Alice Ultraviolet Imaging Spectrograph Instrument","description":"This collection contains documents applicable to the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of this instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758053Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents:swap::1.0","title":"New Horizons Documents for the Solar Wind Around Pluto (SWAP) Instrument","description":"This collection contains documents applicable to the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, such as documents describing the detector field of view, calibration techniques, and mission phase sequences of this instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758137Z","keywords":["Solar wind","Pluto","Kuiper belt","Asteroids","Trans-Neptunian objects","Flyby missions"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents:mission::2.0","title":"New Horizons Mission Documents","description":"This collection contains documents applicable to the entire New Horizons mission, such as the Interface Control Document (ICD), instrument descriptions, and trajectory information, among others.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission","New Horizons Kuiper Belt Extended Mission 2"],"targets":[],"instruments":[],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758141Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2:context::2.0","title":"Hayabusa2 Mission: Context","description":"This collection contains the context products applicable to the Hayabusa2 mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["CAM-H","LIDAR","NIRS3","ONC","SCI","TIR","DCAM3-A","DCAM3-D","MasCam","MasMag","MARA","MicrOmega"],"instrument_hosts":["Hayabusa2 Spacecraft","DCAM3","MASCOT","MINERVA-II1 Rover-1a HIBOU","MINERVA-II1 Rover-1b OWL","MINERVA-II2 Rover-2 ULULA"],"data_types":["Context"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.758286Z","keywords":["Hayabusa2","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2:xml_schema::3.0","title":"Hayabusa2 Mission: XML Schema","description":"This collection contains the xml_schema prodcuts applicable to the Hayabusa2 mission as a whole; includes the mission dictionary.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["CAM-H","LIDAR","NIRS3","ONC","SCI","TIR","DCAM3-A","DCAM3-D","MasCam","MasMag","MARA","MicrOmega"],"instrument_hosts":["Hayabusa2 Spacecraft","DCAM3","MASCOT","MINERVA-II1 Rover-1a HIBOU","MINERVA-II1 Rover-1b OWL","MINERVA-II2 Rover-2 ULULA"],"data_types":["XML Schema"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.758293Z","keywords":["Hayabusa2","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar:data_link_timing::1.0","title":"Hayabusa2 LIDAR Partially Processed Laser Link Experiment Timing Data Collection","description":"This collection contains the partially processed timing science data products of laser link experiment produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["Earth"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/collection_hyb2_lidar_data_link_timing.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/collection_hyb2_lidar_data_link_timing.xml","scraped_at":"2026-02-25T20:02:10.758298Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar:data_link_intensity::1.0","title":"Hayabusa2 LIDAR Calibrated Laser Link Experiment Intensity Data Collection","description":"This collection contains the calibrated intensity data product of laser link experiment produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["Earth"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/collection_hyb2_lidar_data_link_intensity.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/collection_hyb2_lidar_data_link_intensity.xml","scraped_at":"2026-02-25T20:02:10.758304Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar:data_range::1.0","title":"Hayabusa2 LIDAR Calibrated and Derived Range Data Collection","description":"This collection contains the calibrated and the derived range data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/collection_hyb2_lidar_data_range.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/collection_hyb2_lidar_data_range.xml","scraped_at":"2026-02-25T20:02:10.758309Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar:data_dust::1.0","title":"Hayabusa2 LIDAR Calibrated and Derived Dust Count Data Collection","description":"This collection contains the calibrated and the derived science dust data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Dust"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/collection_hyb2_lidar_data_dust.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/collection_hyb2_lidar_data_dust.xml","scraped_at":"2026-02-25T20:02:10.758314Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Calibrated | Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar:data_raw::1.0","title":"Hayabusa2 LIDAR Raw Data Collection","description":"This collection contains the raw data product produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["Earth"],"instruments":["LIght Detection And Ranging"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/collection_hyb2_lidar_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/collection_hyb2_lidar_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758319Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo_ast_fieber-beyer_spectra:data::2.0","title":"Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0","description":"The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer and archives reduced, calibrated spectra.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(495) Eulalia","Multiple Asteroids","(897) Lysistrata","(6212) Franzthaler","(1215) Boyer","(292) Ludovica","(2038) Bistro","(329) Svea","(248) Lameia","(3637) O'Meara","(198) Ampella","(115) Thyra","(335) Roberta","(421) Zahringia","(1064) Aethusa","(162385) 2000 BM19","(1644) Rafita","(1772) Gagarin","(1368) Numidia","(1379) Lomonosowa","(1722) Goffin","(714) Ulula","(556) Phyllis","(6) Hebe","(6649) Yokotatakao","(797) Montana","(46) Hestia","(3066) McFadden","(974) Lioba","(1158) Luda","(285263) 1998 QE2","(481532) 2007 LE","(695) Bella","(19727) Allen","(619) Triberga","(3345) Tarkovskij","(5676) Voltaire","(355) Gabriella","(3999) Aristarchus","(623) Chimaera","(1166) Sakuntala","(518) Halawe","(1391) Carelia","(908) Buda","(1854) Skvortsov","(1607) Mavis","(1587) Kahrstedt","(3760) Poutanen","(5129) Groom","(652) Jubilatrix","(1501) Baade","(2497) Kulikovskij","(1447) Utra","(660) Crescentia","(875) Nymphe","(1960) Guisan","(1018) Arnolda","(787) Moskva","(1036) Ganymed","(354) Eleonora","(879) Ricarda","(2089) Cetacea","(1358) Gaika"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Data"],"start_date":"2000-06-30","stop_date":"2017-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/collection_gbo.ast.fieber-beyer.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/collection_gbo.ast.fieber-beyer.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.758327Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo_ast_fieber-beyer_spectra:document::2.0","title":"Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0","description":"The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer and archives reduced, calibrated spectra.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(495) Eulalia","Multiple Asteroids","(897) Lysistrata","(6212) Franzthaler","(1215) Boyer","(292) Ludovica","(2038) Bistro","(329) Svea","(248) Lameia","(3637) O'Meara","(198) Ampella","(115) Thyra","(335) Roberta","(421) Zahringia","(1064) Aethusa","(162385) 2000 BM19","(1644) Rafita","(1772) Gagarin","(1368) Numidia","(1379) Lomonosowa","(1722) Goffin","(714) Ulula","(556) Phyllis","(6) Hebe","(6649) Yokotatakao","(797) Montana","(46) Hestia","(3066) McFadden","(974) Lioba","(1158) Luda","(285263) 1998 QE2","(481532) 2007 LE","(695) Bella","(19727) Allen","(619) Triberga","(3345) Tarkovskij","(5676) Voltaire","(355) Gabriella","(3999) Aristarchus","(623) Chimaera","(1166) Sakuntala","(518) Halawe","(1391) Carelia","(908) Buda","(1854) Skvortsov","(1607) Mavis","(1587) Kahrstedt","(3760) Poutanen","(5129) Groom","(652) Jubilatrix","(1501) Baade","(2497) Kulikovskij","(1447) Utra","(660) Crescentia","(875) Nymphe","(1960) Guisan","(1018) Arnolda","(787) Moskva","(1036) Ganymed","(354) Eleonora","(879) Ricarda","(2089) Cetacea","(1358) Gaika"],"instruments":["3.0-m NASA Infrared Telescope Facility (IRTF)","SpeX"],"instrument_hosts":["Mauna Kea Observatory"],"data_types":["Document"],"start_date":"2000-06-30","stop_date":"2017-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/collection_gbo.ast.fieber-beyer.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/collection_gbo.ast.fieber-beyer.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.758335Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents:ralph::2.0","title":"New Horizons Documents for the Ralph Instrument Package","description":"This collection contains documents applicable to the Ralph instrument package (housing both the MVIC and LEISA instruments) onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Multispectral Visible Imaging Camera Instrument (MVIC) for New Horizons","Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758339Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.nirs:calibration::1.0","title":"Hayabusa NIRS Calibration Files","description":"This collection includes the calibration tables and calibration frames for Hayabusa NIRS","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["* alf Sco","* alf Aur","Area Light Source","* alf Ori","Sun","Calibration Field","Calibration Lamp","Point Light Source"],"instruments":["NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["Calibration"],"start_date":"2005-08-31","stop_date":"2005-11-24","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/collection_hay.nirs_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/collection_hay.nirs_calibration.xml","scraped_at":"2026-02-25T20:02:10.758343Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.nirs:data_calibrated::1.0","title":"Hayabusa NIRS Calibrated Data","description":"This data set includes the 111,226 calibrated spectra of asteroid 25143 Itokawa returned by the Near-Infrared Spectrometer (NIRS) instrument of the Hayabusa mission. The data cover the Itokawa encounter phases of the mission, from Aug. 31 through November 24, 2005.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["Data"],"start_date":"2005-08-31","stop_date":"2005-11-24","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/collection_hay.nirs_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/collection_hay.nirs_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.758348Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.nirs:data_raw::1.0","title":"Hayabusa NIRS Raw Data","description":"This collection includes the 117,937 raw spectra returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The data cover the period from May 12, 2003 through November 24, 2005.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["Earth","Mars","Saturn","Jupiter","(25143) Itokawa","Earth I (Moon)"],"instruments":["NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["Data"],"start_date":"2005-08-31","stop_date":"2005-11-24","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/collection_hay.nirs_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/collection_hay.nirs_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758352Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.nirs:document::1.0","title":"Hayabusa NIRS Raw document collection","description":"This collection includes the documents for the Hayabusa NIRS instrument data bundle. During the Hayabusa mission 117,937 raw spectra were returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The data cover the period from May 12, 2003 through November 24, 2005.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/collection_hay.nirs_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/collection_hay.nirs_document.xml","scraped_at":"2026-02-25T20:02:10.758355Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents:rex::1.0","title":"Documentation for the New Horizons Radio Science Experiment (REX)","description":"This collection presents documentation and ancillary data tables specific to the Radio Science Experiment (REX) on the New Horizons Spacecraft. It covers both the primary New Horizons mission, as well as the first extended mission to the Kuiper Belt referred to as \"KEM1\".","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Radio Science Experiment"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758359Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Linear Etalon Imaging Spectral Array (LEISA)","description":"This collection contains calibration files applicable to the LEISA instrument onboard the New Horizons spacecraft, used to process raw data into calibrated files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758363Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:kem1_cal::1.0","title":"New Horizons Linear Etalon Imaging Spectral Array KEM1 Encounter Calibrated Data","description":"This collection contains a set of calibrated images in .FIT format for the New Horizons Linear Etalong Imaging Spectral Array (LEISA) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-LEISA-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/20/2018 and 09/05/2019. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-20","stop_date":"2019-09-05","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758367Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:kem1_raw::1.0","title":"New Horizons Linear Etalon Imaging Spectral Array KEM1 Encounter Raw Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Linear Etalong Imaging Spectral Array (LEISA) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-LEISA-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/20/2018 and 09/05/2019. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-20","stop_date":"2019-09-05","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758370Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Student Dust Counter (SDC) Instrument","description":"This collection is a migration from PDS3 of the cumulative set of ancillary files (coefficient table, mean DN table and DN standard deviation table, calibration matrix) used in calibrating the data sets delivered by the Student Dust Counter (SDC) instrument over the course of the New Horizons primary and extended missions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758375Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:kem1_cal::1.0","title":"New Horizons Student Dust Counter (SDC) KEM1 Encounter Calibrated Data","description":"This collection contains a set of calibrated tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SDC-3-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. This version includes Dust Counts from prior to, during, and after the Arrokoth Encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Dust"],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-14","stop_date":"2022-04-09","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758380Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:kem1_raw::1.0","title":"New Horizons Student Dust Counter (SDC) KEM1 Encounter Raw Data","description":"This collection contains a set of raw tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SDC-2-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. This version includes Dust Counts from prior to, during, and after the Arrokoth Encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Dust"],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-14","stop_date":"2022-04-09","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758383Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons (NH) Solar Wind Around Pluto (SWAP) Electrostatic Instrument","description":"This collection is a migration from PDS3 of the cumulative set of ancillary files (background, response functions, field of view mask, energy bins) used in calibrating the data sets delivered by the Solar Wind Around Pluto (SWAP) instrument over the course of the New Horizons (NH) primary and extended missions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758387Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:kem1_raw::1.0","title":"New Horizons Solar Wind Around Pluto KEM1 Encounter Raw Data","description":"This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-14","stop_date":"2022-04-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758391Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:kem1_data_summary_plots::1.0","title":"New Horizons Kuiper Belt Extended Mission KEM1 Encounter Mission Phase Solar Wind Around Pluto Data Summary Plots","description":"This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the first Kuiper Belt Extended Mission KEM1 Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Browse"],"start_date":"2018-08-14","stop_date":"2022-04-24","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758394Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:kem1_cal::1.0","title":"New Horizons Solar Wind Around Pluto KEM1 Encounter Calibrated Data","description":"This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 04/24/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-14","stop_date":"2022-04-24","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758399Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:kem1_raw::1.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) KEM1 Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-PEPSSI-2-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/10/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. Data acquired after April 10, 2022 has been held back until the next dataset version because it was collected and downlinked with a new flight software version. The results and format have not been verified by the New Horizons science teams yet. This version includes observations from prior to, during, and after the ASTEROID 486958 Arrokoth (2014 MU69) encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-13","stop_date":"2022-04-10","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758403Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:data_iof_coregistered::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Co-registered Radiance Factor (I/F) Data Collection","description":"This collection contains the derived co-registered radiance factor (I/F) science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2drc product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/collection_hyb2_onc_data_iof_coregistered.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/collection_hyb2_onc_data_iof_coregistered.xml","scraped_at":"2026-02-25T20:02:10.758408Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:geometry::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Geometry Collection","description":"This collection contains the geometry data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2dbpc product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Geometry"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/collection_hyb2_onc_geometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/collection_hyb2_onc_geometry.xml","scraped_at":"2026-02-25T20:02:10.758413Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:data_partially_processed::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Partially Processed Data Collection","description":"This collection contains the partially processed science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes Level 2b product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/collection_hyb2_onc_data_partially_processed.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/collection_hyb2_onc_data_partially_processed.xml","scraped_at":"2026-02-25T20:02:10.758418Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:data_reflectance::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Reflectance Data Collection","description":"This collection contains the derived reflectance science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2e product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/collection_hyb2_onc_data_reflectance.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/collection_hyb2_onc_data_reflectance.xml","scraped_at":"2026-02-25T20:02:10.758423Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:document::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Document Collection","description":"This collection contains the documents applicable to Optical Navigation Camera (ONC) of the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/collection_hyb2_onc_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/collection_hyb2_onc_document.xml","scraped_at":"2026-02-25T20:02:10.758427Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:data_calibrated::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Calibrated Data Collection","description":"This collection contains the calibrated science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2c product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/collection_hyb2_onc_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/collection_hyb2_onc_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.758432Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:browse::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Browse Collection","description":"This collection contains the quick-look image products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Browse"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/collection_hyb2_onc_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/collection_hyb2_onc_browse.xml","scraped_at":"2026-02-25T20:02:10.758437Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:data_iof::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Radiance Factor (I/F) Data Collection","description":"This collection contains the derived radiance factor (I/F) science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2d product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/collection_hyb2_onc_data_iof.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/collection_hyb2_onc_data_iof.xml","scraped_at":"2026-02-25T20:02:10.758441Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:calibration::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Calibration Collection","description":"This collection contains the calibration data products for data produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Calibration"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/collection_hyb2_onc_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/collection_hyb2_onc_calibration.xml","scraped_at":"2026-02-25T20:02:10.758446Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:data_reflectance_coregistered::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Co-registered Reflectance Data Collection","description":"This collection contains the derived co-registered reflectance science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2erc product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/collection_hyb2_onc_data_reflectance_coregistered.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/collection_hyb2_onc_data_reflectance_coregistered.xml","scraped_at":"2026-02-25T20:02:10.758452Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_onc:data_raw::1.0","title":"Hayabusa2 Optical Navigation Camera (ONC) Raw Data Collection","description":"This collection contains the raw science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes Level 2a product of Hayabusa2 ONC processing level.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu","Earth","Moon"],"instruments":["Optical Navigation Camera (ONC)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/collection_hyb2_onc_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/collection_hyb2_onc_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758456Z","keywords":["Hayabusa2","ONC","(162173) Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:pluto_albedo::1.0","title":"Bolometric Hemispherical Albedo Map of Pluto from New Horizons Observations","description":"Map of Pluto's incidence-angle-average bolometric hemispherical albedo (local energy-balance albedo, equal to one minus absorption). The map is based on analyses of New Horizons Long Range Reconnaissance Imager (LORRI) and Multispectral Visible Imaging Camera (MVIC) images of Pluto in 2015. Users are strongly encouraged to read the publication titled 'Bolometric Hemispherical Albedo Map of Pluto from New Horizons Observations' in the Planetary Science Journal by Hofgartner et al. in 2023.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(134340) Pluto"],"instruments":["LONG RANGE RECONNAISSANCE IMAGER","MULTISPECTRAL VISIBLE IMAGING CAMERA"],"instrument_hosts":["NEW HORIZONS","NEW HORIZONS"],"data_types":["Data"],"start_date":"2015-07-08","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/collection.xml","scraped_at":"2026-02-25T20:02:10.758460Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0","title":"New Horizons Porter (2024) Arrokoth Shape Model Collection","description":"This collection contains a shape model of (486958) Arrokoth created by Simon Porter in 2024 using New Horizons LORRI data, as well as supporting products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["LOng Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-12-31","stop_date":"2024-01-01","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758464Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mag:calibration::1.0","title":"Collection of document products: Mascot MasMag","description":"Collection of document products for the MASCOT Fluxgate Magnetometer.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASMAG"],"instrument_hosts":["MASCOT"],"data_types":["Calibration"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/collection_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.758469Z","keywords":["Hayabusa2","MASCOT","MASMAG","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mag:data::1.0","title":"Collection of data products: Mascot MasMag","description":"Collection of data products for the MASCOT Fluxgate Magnetometer.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASMAG"],"instrument_hosts":["MASCOT"],"data_types":["Data"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/collection_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.758475Z","keywords":["Hayabusa2","MASCOT","MASMAG","(162173) Ryugu"],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mag:document::1.0","title":"Collection of document products: Mascot MasMag","description":"Collection of document products for the MASCOT Fluxgate Magnetometer.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASMAG"],"instrument_hosts":["MASCOT"],"data_types":["Document"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758479Z","keywords":["Hayabusa2","MASCOT","MASMAG","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mara:calibration::1.0","title":"Collection of document products: Mascot Mara","description":"Collection of calibratiion files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Calibration"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/collection_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.758484Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mara:data_calibrated::1.0","title":"Collection of calibrated products: Mascot Mara","description":"Collection of calibrated data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.758737Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mara:data_hk::1.0","title":"Collection of housekeeping products: Mascot Mara","description":"Collection of housekeeping data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/collection_data_hk.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/collection_data_hk.xml","scraped_at":"2026-02-25T20:02:10.758742Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mara:data_raw::1.0","title":"Collection of raw products: Mascot Mara","description":"Collection of raw data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758746Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mara:document::1.0","title":"Collection of document products: Mascot Mara","description":"Collection of document files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MARA"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Document"],"start_date":"2018-10-02","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758751Z","keywords":["MASCOT","MARA","Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mascam:calibration::1.0","title":"Collection of calibration products: Mascot MasCAM","description":"Collection of calibration files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASCAM"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Calibration"],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/collection_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/collection_calibration.xml","scraped_at":"2026-02-25T20:02:10.758755Z","keywords":["MASCOT","MasCAM","Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mascam:data_calibrated::1.0","title":"Collection of calibrated data products: Mascot MasCam","description":"Collection of data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASCAM"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/collection_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/collection_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.758759Z","keywords":["MASCOT","MasCam","Ryugu"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mascam:document::1.0","title":"Collection of document products: Mascot MasCAM","description":"Collection of document files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASCAM"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Document"],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758764Z","keywords":["MASCOT","MasCAM","Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_mascot_mascam:data_raw::1.0","title":"Collection of data products: Mascot MasCam","description":"Collection of data files used in this archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2"],"targets":["(162173) Ryugu"],"instruments":["MASCAM"],"instrument_hosts":["Hayabusa2","MASCOT"],"data_types":["Data"],"start_date":"2018-10-03","stop_date":"2018-10-03","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.758768Z","keywords":["MASCOT","MasCam","Ryugu"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:kem1_cal::1.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) KEM1 Encounter Calibrated Data","description":"This data set contains Calibrated data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-PEPSSI-3-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/10/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. Data acquired after April 10, 2022 has been held back until the next dataset version because it was collected and downlinked with a new flight software version. The results and format have not been verified by the New Horizons science teams yet. This version includes observations from prior to, during, and after the ASTEROID 486958 Arrokoth (2014 MU69) encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-13","stop_date":"2022-04-10","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758773Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:kem1_raw::1.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph KEM1 Encounter Raw Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-ALICE-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 05/01/2022. All Alice data obtained before 05/01/2022 were fully successfully downlinked before that date. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-09-30","stop_date":"2021-09-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.758778Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel:document::1.0","title":"Documentation Collection for the DART Shapemodel Archive Bundle","description":"This documentation collection includes documentation describing the shape model derived data products and the DART impact locations corresponding to the Dimorphos shape models.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":[],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/collection_document.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/collection_document.xml","scraped_at":"2026-02-25T20:02:10.758935Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel:data_derived_didymos_model_v003::1.0","title":"Derived data products for DART shapemodel: didymos_model_v003","description":"This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for didymos_model_v003. It is the final model of Didymos produced by the DART project using both LICIACube and DART images. It has an accuracy uncertainty of ~14 m in x, y, and z, with ~ 3.3% volume uncertainty. See SIS for details on ancillary information provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/collection_data_derived_didymos_model_v003.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/collection_data_derived_didymos_model_v003.xml","scraped_at":"2026-02-25T20:02:10.758941Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v003::1.0","title":"Derived data products for DART shapemodel: dimorphos_model_v003","description":"This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for dimorphos_model_v003. To learn about the model including its quality, see 'Daly et al., 2023. \"Successful Kinetic Impact into an Asteroid for Planetary Defense.\" Nature 1–3. https://doi.org/10.1038/s41586-023-05810-5.\" See SIS for details on ancillary information provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/collection_data_derived_dimorphos_model_v003.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/collection_data_derived_dimorphos_model_v003.xml","scraped_at":"2026-02-25T20:02:10.758946Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v004::1.0","title":"Derived data products for DART shapemodel: dimorphos_model_v004","description":"This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for dimorphos_model_v004. This is the final pre-impact model of the asteroid Dimorphos produced by the DART project. It has an accuracy uncertainty of 1 m in x, 4 m in y, and 1 m in z, with ~ 5% volume uncertainty and shows significant improvement relative to the earlier dimorphos_model_v003. See SIS for details on ancillary information provided, including references on how the ancillary information is calculated.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DRACO","LUKE"],"instrument_hosts":["DART","LICIACube"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/collection_data_derived_dimorphos_model_v004.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/collection_data_derived_dimorphos_model_v004.xml","scraped_at":"2026-02-25T20:02:10.758951Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:document_rs::1.0","title":"DART Radio Science Document Collection","description":"The document_rs collection contains documentation describing the data collections that store radio science data from the Double Asteroid Redirection Test (DART) mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":[],"instruments":["DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/collection_document_rs.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/collection_document_rs.xml","scraped_at":"2026-02-25T20:02:10.758967Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_trk234::1.0","title":"DART Radio Science Tracking and Navigation Files (TRK-2-34) Data Collection","description":"The DART mission receives Tracking and Navigation Files (TRK-2-34) from the Deep Space Network (DSN) collected primarily from signals emitted by the high gain antenna (HGA) onboard the DART spacecraft. These are binary files of table data whose fields and format are described by the TRK-2-34 DSN Tracking System Data Archival Format document referenced in the DART Radio Science SIS. These files have been sorted by data record type, of which there are approximately 18. Both mission navigators and those working on radio science investigations use these data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":["Data"],"start_date":"2021-11-24","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/collection_data_trk234.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/collection_data_trk234.xml","scraped_at":"2026-02-25T20:02:10.758971Z","keywords":["DART"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_trk223::1.0","title":"DSN Media Calibration (TRK-2-23) Files for DART Data Collection","description":"The DART mission receives Ionosphere Media Calibration Files (TRK-2-23) from the Deep Space Network (DSN) collected primarily from signals emitted by the high gain antenna (HGA) onboard the DART spacecraft. These are ASCII files that correspond to either Doppler and range data (indicated with 'dop') or Delta Differenced One-way Ranging (DDOR) data (indicated with 'vlb'). They are useful for compensating for media transmission effects on the propagation of radiometric signals. The format of these files is described in detail in the TRK-2-23 DSN Media Calibration Interface document that is referenced in the DART Radio Science SIS.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":["Data"],"start_date":"2021-11-24","stop_date":"2022-09-02","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/collection_data_trk223.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/collection_data_trk223.xml","scraped_at":"2026-02-25T20:02:10.758976Z","keywords":["DART"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_maf::1.0","title":"DART Maneuver Acceleration Files (MAF) Data Collection","description":"The DART mission provides a small forces file, or Maneuver Acceleration File (MAF), that describes the thrusting undertaken by DART and aids in carrying out science associated with the DART radio science data. These files record the cumulative delta-v effect of attitude thruster firing over specified time periods. Estimates of mass loss due to usage are also included. The files are fixed-width column ASCII csv files containing a header and a table. Table header and table data descriptions can be found in the DART Radio Science SIS document.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["(65803) Didymos I (Dimorphos)"],"instruments":["DART High Gain Antenna (HGA)"],"instrument_hosts":["DART","DSN"],"data_types":["Data"],"start_date":"2021-11-24","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/collection_data_maf.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/collection_data_maf.xml","scraped_at":"2026-02-25T20:02:10.758980Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_dracoddp::1.0","title":"Calibrated Images with Geometric Backplanes for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"DART Spacecraft Bundle, Calibrated Images with Geometric Backplanes","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":["Data"],"start_date":"2022-09-26","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/collection_data_dracoddp.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/collection_data_dracoddp.xml","scraped_at":"2026-02-25T20:02:10.758984Z","keywords":["DART"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_dracoraw::3.0","title":"Raw Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This data collection contains the raw images returned by the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART) mission. These images have been put into a simple 2D FITS format ready for calibration and analysis. The DART mission was a planetary defense mission designed to test and measure the deflection caused by a kinetic impactor (the spacecraft) on the orbit of Dimorphos asteroid around its primary, (65803) Didymos.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":["Data"],"start_date":"2021-12-02","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/collection_data_dracoraw.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/collection_data_dracoraw.xml","scraped_at":"2026-02-25T20:02:10.758997Z","keywords":["DART"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:data_dracocal::3.0","title":"Calibrated Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This data collection contains calibrated images from the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART) mission. These images have been calibrated to either radiance or reflectance, depending on the mission phase, and have been put into a simple 2D fits format. Ancillary files used in the calibration process are included in the data set as either 2D fits format or ASCII fixed-width table format. The DART mission was a planetary defense mission designed to test and measure the deflection caused by a kinetic impactor (the spacecraft) on the orbit of Dimorphos asteroid around its primary, (65803) Didymos.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":["65803 Didymos"],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":["Data"],"start_date":"2021-01-01","stop_date":"2022-09-26","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/collection_data_dracocal.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/collection_data_dracocal.xml","scraped_at":"2026-02-25T20:02:10.759001Z","keywords":["DART"],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dart:document_draco::3.0","title":"Documentation for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument","description":"This documentation collection includes documentation describing the raw, and calibrated data collections from the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard NASA's Double Asteroid Redirection Test (DART) Mission and two documents describing the Coordinate System for the Dimorphos and Didymos asteroids.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Double Asteroid Redirection Test"],"targets":[],"instruments":["DRACO"],"instrument_hosts":["DART"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/collection_document_draco.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/collection_document_draco.xml","scraped_at":"2026-02-25T20:02:10.759004Z","keywords":["DART"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:soho:document::1.1","title":"SOHO Documentation Collection","description":"This document collection contains overview documents as well as instrument-specific and data collection support documents for the various SOHO data collections in the PDS archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["SOHO"],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/collection.xml","scraped_at":"2026-02-25T20:02:10.759016Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:pluto_raw::1.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph Pluto Encounter Raw Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-ALICE-2-PLUTO-V3.0. This version includes data downlinked from 1/31/2016 through 10/31/2016. This data set contains Alice observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. It includes multi-map and Lyman-alpha observations of Pluto and Charon, histograms of the Pluto system moons, and a number of calibration observations of Rho Leo and other stars. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-25","stop_date":"2016-07-15","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759120Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:pluto_cal::1.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph Pluto Encounter Calibrated Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-ALICE-3-PLUTO-V3.0. This version includes data downlinked from 1/31/2016 through 10/31/2016. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. It includes multi-map and Lyman-alpha observations of Pluto and Charon, histograms of the Pluto system moons, and a number of calibration observations of Rho Leo and other stars. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-25","stop_date":"2016-07-15","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759124Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents:sdc::2.0","title":"New Horizons Documents for the Student Dust Counter (SDC) Instrument","description":"This collection contains documents applicable to the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft. There are several tables that list the times when the instrument power was turned on and off.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759129Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:pluto_raw::1.0","title":"New Horizons Linear Etalon Imaging Spectral Array Pluto Encounter Raw Data","description":"This collection contains a set of raw images in .FIT format for the New Horizons Linear Etalon Imaging Spectral Array (LEISA) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-LEISA-2-PLUTO-V3.0. This data set contains LEISA observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, and hi-res departure observations. It also includes functional tests from the Calibration Campaign including scans across the detector of Arcturus, and a second test of the Solar Illumination Assembly. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra","Kerberos"],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-03-03","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759133Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_leisa:pluto_cal::1.0","title":"New Horizons Linear Etalon Imaging Spectral Array Pluto Encounter Calibrated Data","description":"This collection contains a set of calibrated images in .FIT format for the New Horizons Linear Etalon Imaging Spectral Array (LEISA) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-LEISA-3-PLUTO-V3.0. This data set contains LEISA observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, and hi-res departure observations. It also includes functional tests from the Calibration Campaign including scans across the detector of Arcturus, and a second test of the Solar Illumination Assembly. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra","Kerberos"],"instruments":["Linear Etalon Imaging Spectral Array"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-03-03","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759137Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:pluto_raw::1.0","title":"New Horizons Multispectral Visible Imaging Camera (MVIC) Pluto Encounter Raw Data","description":"This collection contains a set of raw images tables in .FIT format for the Multispectral Visible Imaging Camera (MVIC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-MVIC-2-PLUTO-V3.0. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra","Kerberos"],"instruments":["Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons Spacecraft"],"data_types":["Data"],"start_date":"2015-03-03","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759141Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_mvic:pluto_cal::1.0","title":"New Horizons Multispectral Visible Imaging Camera (MVIC) Pluto Encounter Partially Processed Data","description":"This collection contains a set of partially processed images tables in .FIT format for the Multispectral Visible Imaging Camera (MVIC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-MVIC-3-PLUTO-V3.0. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","Charon","Nix","Hydra","Kerberos"],"instruments":["Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons Spacecraft"],"data_types":["Data"],"start_date":"2015-03-03","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759145Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:pluto_raw::1.0","title":"New Horizons Student Dust Counter (SDC) Pluto Encounter Raw Data","description":"This collection contains a set of raw tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-SDC-2-PLUTO-V3.0. This data set contains SDC observations taken during the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Dust"],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-17","stop_date":"2016-10-17","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759149Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_sdc:pluto_cal::1.0","title":"New Horizons Student Dust Counter (SDC) Pluto Encounter Calibrated Data","description":"This collection contains a set of calibrated tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-SDC-3-PLUTO-V3.0. This data set contains SDC observations taken during the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Dust"],"instruments":["Student Dust Counter"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-17","stop_date":"2016-10-17","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759152Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:soho:swan_derived::4.0","title":"SOHO SWAN Derived Cometary Water Production Rates Collection","description":"This data collection contains derived water production rates for numerous comets observed by the SOHO SWAN instrument from 1996 to 2021. Multiple measurements were made for each comet through a single perihelion passage and some comets were observed over multiple epochs. The production rates were derived by modeling the observed distribution of atomic hydrogen in the comae of the comets. This version corrects issues discovered in the previous version of the water_c_1995_o1_hale_bopp table.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Solar and Heliospheric Observatory"],"targets":["Multiple Comets"],"instruments":["Solar Wind ANisotropies (SWAN)"],"instrument_hosts":["SOlar and Heliospheric Observatory"],"data_types":["Data"],"start_date":"1996-01-22","stop_date":"2021-10-17","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/collection.xml","scraped_at":"2026-02-25T20:02:10.759162Z","keywords":["water production rate"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:calibration_files::2.0","title":"New Horizons Calibrations for the PEPSSI Instrument","description":"This collection contains calibration files applicable to the PEPSSI instrument onboard the New Horizons spacecraft, used to process raw data into calibrated files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759165Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents:pepssi::2.0","title":"New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument","description":"This collection contains documents applicable to the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759168Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:document::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Documentation","description":"Documentation for the Lucy LOng Range Reconnaissance Imager (L'LORRI) data archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy Mission"],"targets":[],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/collection_document_v1.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/collection_document_v1.xml","scraped_at":"2026-02-25T20:02:10.759172Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:calibration::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Calibration Data","description":"Calibration data for the Lucy LOng Range Reconnaissance Imager (L'LORRI) data archive. The calibrations include bias, flat field, and time corrections.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy Mission"],"targets":[],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":["Calibration"],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/collection_calibration_v1.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/collection_calibration_v1.xml","scraped_at":"2026-02-25T20:02:10.759175Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_didymos_raw::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Raw Data for the Didymos Observation Data Archive","description":"This data collection contains raw images for the Lucy LOng Range Reconnaissance Imager (L'LORRI) Didymos/Double Asteroid Redirection Test (DART) data archive. The Lucy team found that the Lucy spacecraft and the L'LORRI instrument would be able to image the DART impact experiment on the Didymos system. The Lucy spacecraft observed the DART mission impact on 2022 September 26 with the L'LORRI instrument for about 36 hours surrounding the time of impact, resulting in 1549 observational products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy Mission"],"targets":["(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":["Data"],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/collection_data_didymos_raw_v1.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/collection_data_didymos_raw_v1.xml","scraped_at":"2026-02-25T20:02:10.759180Z","keywords":["Near-Earth objects"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::1.0","title":"Lucy LOng Range Reconnaissance Imager (L'LORRI) Partially Processed Data for the Didymos Observation Data Archive","description":"This data collection contains partially processed images for the Lucy LOng Range Reconnaissance Imager (L'LORRI) Didymos/Double Asteroid Redirection Test (DART) data archive. The Lucy team found that the Lucy spacecraft and the L'LORRI instrument would be able to image the DART impact experiment on the Didymos system. The Lucy spacecraft observed the DART mission impact on 2022 September 26 with the L'LORRI instrument for about 36 hours surrounding the time of impact, resulting in 1549 observational products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Lucy Mission"],"targets":["(65803) Didymos"],"instruments":["Lucy Long Range Reconnaissance Imager (L'LORRI)"],"instrument_hosts":["Lucy"],"data_types":["Data"],"start_date":"2022-09-26","stop_date":"2022-09-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/collection_data_didymos_partially_processed_v1.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/collection_data_didymos_partially_processed_v1.xml","scraped_at":"2026-02-25T20:02:10.759185Z","keywords":["Near-Earth objects"],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_secondary:aliceocc_charon_sources::1.0","title":"Raw Product Source List for urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0","description":"This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Charon provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto I (Charon)"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-14","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/collection_aliceocc_charon_sources.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/collection_aliceocc_charon_sources.lblx","scraped_at":"2026-02-25T20:02:10.759274Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_secondary:aliceocc_pluto_sources::1.0","title":"Raw Product Source List for urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0","description":"This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Pluto provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-14","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/collection_aliceocc_pluto_sources.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/collection_aliceocc_pluto_sources.lblx","scraped_at":"2026-02-25T20:02:10.759278Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:pluto_raw::1.0","title":"New Horizons Solar Wind Around Pluto - Pluto Raw Data","description":"This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/14/2015 and 10/29/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-14","stop_date":"2016-10-29","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759282Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:pluto_cal::1.0","title":"New Horizons Solar Wind Around Pluto - Pluto Calibrated Data","description":"This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-15","stop_date":"2016-10-25","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759286Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:pluto_data_summary_plots::1.0","title":"New Horizons Pluto Encounter Mission Phase Solar Wind Around Pluto Data Summary Plots","description":"This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the Pluto Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Pluto. A gain test was also performed. The Pluto flyby was on the 14th of July 2015. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["The Solar Wind Around Pluto (SWAP) Instrument for New Horizons"],"instrument_hosts":["The New Horizons (NH) Spacecraft"],"data_types":["Browse"],"start_date":"2015-01-15","stop_date":"2016-10-25","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759290Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:arrokoth_composition::1.0","title":"New Horizons (486958) Arrokoth Encounter Surface Composition Maps","description":"This dataset presents surface composition maps of the trans-Neptunian object (486958) Arrokoth, encountered by the New Horizons spacecraft on its first extended mission to the Kuiper Belt. The dataset includes calibrated spectral cubes derived from observations made by the LEISA and MVIC spectral imagers.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Linear Etalon Imaging Spectral Array","Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759310Z","keywords":["Surface composition","Trans-Neptunian objects"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0","title":"New Horizons Encounter with (486958) Arrokoth: Derived Shape Models and Surface Maps","description":"This data set contains the New Horizons Arrokoth Encounter geology and geophysics science theme team derived shape models and maps of albedo, elevation, modeled surface temperature, and elevation. These results were derived from observations made by the LORRI and MVIC instruments.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Long Range Reconnaissance Imager","Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759315Z","keywords":["Trans-Neptunian objects"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0","title":"New Horizons Kuiper Belt Extended Mission: Alice Ultraviolet Imaging Spectrograph Scans of Lyman-alpha Emission from the Interplanetary Medium","description":"This one-file data collection contains scans of Lyman-alpha emission from neutral hydrogen in the interplanetary medium taken by the New Horizons Alice Ultraviolet Imaging Spectrograph. The period covers is 2007-10 (following Jupiter encounter) to 2020-04 (during the Kuiper Belt Extended mission KEM1).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":["Interplanetary Medium"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2007-10-07","stop_date":"2020-04-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759320Z","keywords":["Interplanetary medium"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:ipm_solar_wind::1.0","title":"New Horizons Primary and Extended Missions: Solar Wind Parameters","description":"This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument as well as pickup ions. It contains two data products. The solar wind product each product compiles the CODMAC level 2 source data used, the solar wind proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, and spacecraft position. These data were derived from observations obtained during cruise, Pluto encounter (excluding the period inside the Pluto system), and afterwards. The pickup ion product provides the interstellar pickup ion density, temperature, and pressure. These data were culled for times when the solar wind speed varied over the ~24 hour period by >1% (~13% of the samples). This PDS4 version was created by migrating labels (only) from the PDS3 V2.0 data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2008-10-10","stop_date":"2020-01-27","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759325Z","keywords":["Solar wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:oss_plasma_fluxes::1.0","title":"New Horizons Primary and Extended Mission in the Outer Solar System: Averaged Energetic Particle Flux Rates and Counts-per-Second from PEPSSI Observations, 2012-2020","description":"This dataset contains one-hour averaged energetic particle flux rate values and counts-per-second generated by the New Horizons Particles and Plasma science team from data taken by the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument. The data covers a time range from early 2012 through late 2020. Flux rates and sums are presented for each of the six instrument look directions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2012-01-01","stop_date":"2020-12-31","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759329Z","keywords":["Solar energetic particles"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_atmospherics::1.0","title":"New Horizons Encounter with the Pluto System: Atmospheric Opacities and Composition, Temperature, Pressure, and Haze Profiles from the LORRI, Alice, and REX Instruments","description":"This data set contains derived atmospheric data from the New Horizons mission during the Pluto Encounter mission phase, based on data from the Alice UV imaging spectrograph instrument, the Radio EXperiment instrument, and the LOng Range Reconnaissance Imager instrument. The data set includes a solar spectrum of Pluto and Charon; atmospheric composition on Pluto for N2, CH4, C2H2, C2H4, C2H6, and haze, and the haze brightness profiles; Pluto lower atmospheric temperature and pressure profiles; stellar occultation and appulse data of Pluto; and temperatures of the diametric and winter pole thermscans of Pluto.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","(134340) Pluto I (Charon)"],"instruments":["Alice Ultraviolet Imaging Spectrograph","Long Range Reconnaissance Imager","Radio Science Experiment"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-14","stop_date":"2015-07-15","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759335Z","keywords":["Pluto","Plutonian satellites","Planetary atmospheres"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_composition::1.0","title":"New Horizons Encounter with the Pluto System: Global Color Maps, Image Cubes, and Absorption Band Maps from the LEISA and MVIC Instruments","description":"This data set contains global color maps, image cubes, and absorption band maps created from calibrated data taken during the PLUTO mission phase by the Linear Etalon Imaging Spectral Array (LEISA) instrument and the Multispectral Visible Imaging Camera (MVIC) instrument on the New Horizons spacecraft. Image cubes are provided per instrument and target body, covering the surfaces of Pluto, Charon, Nix, Hydra, and Kerberos. Color maps and absorption band maps for N2, CO, CH4, and H2O are provided for both Pluto and Charon.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","(134340) Pluto I (Charon)","(134340) Pluto III (Hydra)","(134340) Pluto II (Nix)","(134340) Pluto IV (Kerberos)"],"instruments":["Linear Etalon Imaging Spectral Array","Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-09","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759343Z","keywords":["Pluto","Plutonian satellites","Planetary surfaces","Natural satellite surfaces","Surface composition"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0","title":"New Horizons Encounter with the Pluto System: Mosaics, Topographic Maps, and Bond Albedo Maps for Pluto and Charon from LORRI and MVIC Observations","description":"This data set contains derived geology and geophysical maps of Pluto and Charon derived from data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) and the Long-range Reconnaissance Imager (LORRI) instruments during the Pluto Encounter mission phase.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto","(134340) Pluto I (Charon)"],"instruments":["Long Range Reconnaissance Imager","Multispectral Visible Imaging Camera"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759349Z","keywords":["Pluto","Plutonian satellites","Planetary surfaces","Natural satellite surfaces","Albedo"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0","title":"New Horizons Encounter with the Pluto System: Time-Averaged Solar Winds Particle and Ion Fluxes from PEPSSI Observations","description":"This data set contains higher level products derived from data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the Pluto encounter mission phase. The data products contain proton and ion fluxes at five second, five minute, and three hour averages, with the corresponding attitude and ephemeris data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-12","stop_date":"2015-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759353Z","keywords":["Solar wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:plutosystem_solar_wind::1.0","title":"New Horizons Encounter with the Pluto System: Solar Wind Parameters from SWAP Observations","description":"This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument during the Pluto encounter. This archive contains two data products. Each product compiles the CODMAC level 2 source data used, the solar wind speed, proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, spacecraft position and speed. The two product files differ in that one is in Heliographic Inertial (HGI) coordinates and the other is in Pluto centric J2000 and IAU J2000 coordinates.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Solar Wind Around Pluto"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-07-14","stop_date":"2015-07-14","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759358Z","keywords":["Solar wind"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:kem1_raw::1.0","title":"New Horizons LORRI KEM1 Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the KEM1 ENCOUNTER mission phase. This version includes Distant Kuiper Belt Object (DKBO) observations of 2011 HF103, 2011 HK103, 2011 HZ102, 2011 JA32, 2011 JW31, 2011 JX31, 2011 JY31, 2014 OE394, 2014 OJ394, 2014 OS393, 2014 PN70, 2020 KP11, 2020 KR11, and 2020 KT11, plus data from a Cosmic Optical Background Demo and a Microlensing demo. There are also observations of 50000 QUAOAR (2002 LM60), ASTEROID 307261 (2002 MS4), ASTEROID 486958 (2014 MU69), HD 37962, INTERPLANETARY DUST, M7, NGC 3532, PROXIMA CENTAURI, TRITON, and WOLF 359. It includes images of the approach and departure field around Arrokoth. The data cover the actual Arrokoth encounter. These data were migrated from the previously released PDS3 data set NH-A-LORRI-2-KEM1-V6.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission 1"],"targets":["(486958) Arrokoth"],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-16","stop_date":"2021-09-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759362Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Long Range Reconnaissance Imager (LORRI)","description":"This collection is a migration from PDS3 of the set of ancillary files (flat fields, bad pixel maps, etc.) used in calibrating the data sets delivered by the LORRI instrument over the course of the New Horizons primary and extended missions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759372Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:kem1_cal::1.0","title":"New Horizons LORRI KEM1 Encounter Partially Processed Data","description":"This data set contains Partially Processed data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the KEM1 ENCOUNTER mission phase. This version includes Distant Kuiper Belt Object (DKBO) observations of 2011 HF103, 2011 HK103, 2011 HZ102, 2011 JA32, 2011 JW31, 2011 JX31, 2011 JY31, 2014 OE394, 2014 OJ394, 2014 OS393, 2014 PN70, 2020 KP11, 2020 KR11, and 2020 KT11, plus data from a Cosmic Optical Background Demo and a Microlensing demo. There are also observations of 50000 QUAOAR (2002 LM60), ASTEROID 307261 (2002 MS4), ASTEROID 486958 (2014 MU69), HD 37962, INTERPLANETARY DUST, M7, NGC 3532, PROXIMA CENTAURI, TRITON, and WOLF 359. It includes images of the approach and departure field around Arrokoth. The data cover the actual Arrokoth encounter. These data were migrated from the previously released PDS3 data set NH-A-LORRI-3-KEM1-V6.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission 1"],"targets":["(486958) Arrokoth"],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-08-16","stop_date":"2021-09-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759376Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:calibration_files::1.0","title":"Reference Files Used in Calibrating Data from the New Horizons Alice Ultraviolet Imaging Spectrograph Instrument","description":"This collection is a migration from PDS3 of the cumulative set of ancillary files (dark, effective area, wavelength, flat) used in calibrating the data sets delivered by the Alice Ultraviolet Imaging Spectrograph instrument over the course of the New Horizons primary and extended missions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":[],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759381Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_alice:kem1_cal::1.0","title":"New Horizons Alice Ultraviolet Imaging Spectrograph KEM1 Encounter Calibrated Data","description":"This collection contains a set of calibrated images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-ALICE-3-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 05/01/2022. All Alice data obtained before 05/01/2022 were fully successfully downlinked before that date. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission"],"targets":["(486958) Arrokoth"],"instruments":["Alice Ultraviolet Imaging Spectrograph"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2018-09-30","stop_date":"2021-09-30","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759385Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_rex:kem1_raw::1.0","title":"New Horizons Radio Science Experiment (REX) KEM1 Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-2-KEM1-V5.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEW HORIZONS KUIPER BELT EXTENDED MISSION"],"targets":["(486958) Arrokoth"],"instruments":["RADIO SCIENCE EXPERIMENT"],"instrument_hosts":["NEW HORIZONS"],"data_types":["Data"],"start_date":"2018-09-09","stop_date":"2022-02-18","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759572Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_rex:kem1_cal::1.0","title":"New Horizons Radio Science Experiment (REX) KEM1 Encounter Calibrated Data","description":"This data set contains Calibrated data taken by the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-3-KEM1-V5.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEW HORIZONS KUIPER BELT EXTENDED MISSION"],"targets":["(486958) Arrokoth"],"instruments":["RADIO SCIENCE EXPERIMENT"],"instrument_hosts":["NEW HORIZONS"],"data_types":["Data"],"start_date":"2018-09-09","stop_date":"2022-01-13","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759585Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_rex:kem1_tnf::1.0","title":"New Horizons Radio Science Experiment (REX) KEM1 Encounter Tracking and Navigation Files (TNF)","description":"This data set contains Tracking and Navigation Files (TNF) created for the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. The collection includes TRK-2-34 radiometric tracking data files and TRK-2-23 media calibration files. The media calibration data that are provided by the Radiometric Modeling and Calibration Subsystem (RMC). These calibrations are used by project navigation and radio science teams, multi-mission spacecraft navigation, and other investigators to improve the accuracy of spacecraft orbit determination and radio science investigations by compensating for the media transmission effects of the Earth's troposphere and ionosphere on the propagation of radiometric signals. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-3-KEM1-V5.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEW HORIZONS KUIPER BELT EXTENDED MISSION"],"targets":["(486958) Arrokoth"],"instruments":["RADIO SCIENCE EXPERIMENT","NASA Deep Space Network Radio Science"],"instrument_hosts":["NEW HORIZONS"],"data_types":["Data"],"start_date":"2018-09-08","stop_date":"2022-01-12","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759589Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_derived:lorri_cob::1.0","title":"New Horizons Cosmic Optical Background Observations","description":"This data collection contains FITS files with calibrated images and masks derived from images taken with the Long Range Reconnaissance Imager (LORRI) instrument onboard the New Horizons spacecraft. These images were used in an analysis of the Cosmic Optical Background.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons Kuiper Belt Extended Mission (kem1)","New Horizons"],"targets":["Cosmic Optical Background"],"instruments":["LONG RANGE RECONNAISSANCE IMAGER"],"instrument_hosts":["NEW HORIZONS"],"data_types":["Data"],"start_date":"2007-10-06","stop_date":"2019-09-04","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/collection.xml","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/collection.xml","scraped_at":"2026-02-25T20:02:10.759593Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:pluto_raw::1.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation Pluto Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-PEPSSI-2-PLUTO-V3.0. During the Pluto Charon Encounter mission phase starting in January, 2015, there were several sub-phases: three Approach sub-phases, (AP1, AP2 and AP3); a CORE sequence for the Pluto flyby on 14 July, 2015 (Day Of Year 195), sometimes also referred to as NEP (Near-Encounter Phase); three Departure sub-phases (DP1, DP2, DP3); a Transition sub-phase ending in late October, 2016, closing out the Pluto Encounter mission phase. For this final PEPSSI delivery for the Pluto mission phase, this data set includes the Approach data plus the CORE and Departure sequences' data, as well as normal operation and Calibration Campaign data during Transition, and has all data downlinked through the end of October, 2016. Due to a spacecraft safing event on 04 July, 2015 (DOY 185), the balance of the science load from then-executing 15184 sequence (nominal start time on DOY 184 in 2015) was sacrificed to ensure the 15188 CORE load with the flyby sequence could be loaded onto the spacecraft and started on time. As a result, there is a gap in the PEPSSI data from approximately DOY 186 to DOY 188. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-14","stop_date":"2016-10-29","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759693Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_pepssi:pluto_cal::1.0","title":"New Horizons Pluto Energetic Particle Spectrometer Science Investigation Pluto Encounter Calibrated Data","description":"This data set contains Calibrated data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-PEPSSI-3-PLUTO-V3.0. During the Pluto Charon Encounter mission phase starting in January, 2015, there were several sub-phases: three Approach sub-phases, (AP1, AP2 and AP3); a CORE sequence for the Pluto flyby on 14 July, 2015 (Day Of Year 195), sometimes also referred to as NEP (Near-Encounter Phase); three Departure sub-phases (DP1, DP2, DP3); a Transition sub-phase ending in late October, 2016, closing out the Pluto Encounter mission phase. For this final PEPSSI delivery for the Pluto mission phase, this data set includes the Approach data plus the CORE and Departure sequences' data, as well as normal operation and Calibration Campaign data during Transition, and has all data downlinked through the end of October, 2016. Due to a spacecraft safing event on 04 July, 2015 (DOY 185), the balance of the science load from then-executing 15184 sequence (nominal start time on DOY 184 in 2015) was sacrificed to ensure the 15188 CORE load with the flyby sequence could be loaded onto the spacecraft and started on time. As a result, there is a gap in the PEPSSI data from approximately DOY 186 to DOY 188. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["Solar Wind"],"instruments":["Pluto Energetic Particle Spectrometer Science Investigation"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-14","stop_date":"2016-10-29","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.759697Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_swap:trajectory::2.0","title":"New Horizons Spacecraft Trajectory","description":"This collection contains New Horizons (NH) spacecraft trajectory in various reference frames. For the time period from launch through the end of 2028, the sampling period is 86400 NH spacecraft seconds, about one day. The data will contain placeholder flags for some (future) dates where there is not enough information to predict the spacecraft location accurately. Locations before 2022-JUN-01 01:36:23.288 come from 'reconstructed' SPICE kernels, whereas later locations are estimated from 'predicted' SPICE kernel information. For the Pluto Time of Closest Approach (TCA) plus or minus approximately 30 days, there are additional files available. During this time period the sampling rate varies.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission"],"targets":["New Horizons"],"instruments":[],"instrument_hosts":["New Horizons"],"data_types":["Geometry"],"start_date":"2006-01-20","stop_date":"2028-02-29","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.760209Z","keywords":["Astronomical coordinate systems"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_documents:lorri::2.0","title":"New Horizons Documents for the LORRI Instrument","description":"This collection contains documents applicable to the LORRI instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons","New Horizons Kuiper Belt Extended Mission (KEM1)"],"targets":[],"instruments":["Long Range Reconnaissance Imager"],"instrument_hosts":["New Horizons"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.760212Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:pluto_raw::1.0","title":"New Horizons LOng Range Reconnaissance Imager (LORRI) Pluto Encounter Raw Data","description":"This data set contains Raw data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the PLUTO ENCOUNTER mission phase. This data set contains LORRI observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Departure observations include a ring search of the Pluto system and 1994 JR1 observations. This data set completes the Pluto mission phase deliveries for LORRI. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, hi-res, full-frame observations from Pluto Encounter and Departure, sliver maps, and ring search observations. There may be some overlap between prior datasets and this dataset, due to only partial, windowed, or lossy data in prior datasets. Observations at closest approach to Pluto are marked with _CA in the Request ID. This dataset also includes functional tests from the Calibration Campaign, including a regular observation of NGC3532. Finally it includes the first set of distant KBO observations. These data were migrated from the previously released PDS3 data set NH-P-LORRI-2-PLUTO-V3.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto"],"instruments":["The Long-Range Reconnaissance Imager (LORRI) for New Horizons"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-25","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.760876Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:nh_lorri:pluto_cal::1.0","title":"New Horizons LOng Range Reconnaissance Imager (LORRI) Pluto Encounter Partially Processed Data","description":"This data set contains Partially Processed data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the PLUTO ENCOUNTER mission phase. This data set contains LORRI observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Departure observations include a ring search of the Pluto system and 1994 JR1 observations. This data set completes the Pluto mission phase deliveries for LORRI. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, hi-res, full-frame observations from Pluto Encounter and Departure, sliver maps, and ring search observations. There may be some overlap between prior datasets and this dataset, due to only partial, windowed, or lossy data in prior datasets. Observations at closest approach to Pluto are marked with _CA in the Request ID. This dataset also includes functional tests from the Calibration Campaign, including a regular observation of NGC3532. Finally it includes the first set of distant KBO observations. These data were migrated from the previously released PDS3 data set NH-P-LORRI-3-PLUTO-V3.0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["New Horizons"],"targets":["(134340) Pluto"],"instruments":["The Long-Range Reconnaissance Imager (LORRI) for New Horizons"],"instrument_hosts":["New Horizons"],"data_types":["Data"],"start_date":"2015-01-25","stop_date":"2016-07-16","browse_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/","download_url":null,"label_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/collection.lblx","source_url":"https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/collection.lblx","scraped_at":"2026-02-25T20:02:10.760880Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar:data_albedo::1.0","title":"Hayabusa2 LIDAR Derived Albedo Data Collection","description":"This collection contains the derived albedo data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["LIght Detection And Ranging (LIDAR)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/collection_hyb2_lidar_data_albedo_v001.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/collection_hyb2_lidar_data_albedo_v001.xml","scraped_at":"2026-02-25T20:02:10.761012Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar:data_albedo_map::1.0","title":"Hayabusa2 LIDAR Derived Albedo Map Data Collection","description":"This collection contains the derived albedo map data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["LIght Detection And Ranging (LIDAR)"],"instrument_hosts":["Hayabusa2"],"data_types":["Data"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/collection_hyb2_lidar_data_albedo_map_v001.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/collection_hyb2_lidar_data_albedo_map_v001.xml","scraped_at":"2026-02-25T20:02:10.761020Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2_lidar:document::2.0","title":"Hayabusa2 LIDAR Document Collection","description":"This collection contains the documents applicable to the Hayabusa2 LIDAR instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":[],"instruments":["LIght Detection And Ranging (LIDAR)"],"instrument_hosts":["Hayabusa2"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/collection_hyb2_lidar_document_v002.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/collection_hyb2_lidar_document_v002.xml","scraped_at":"2026-02-25T20:02:10.761028Z","keywords":["Hayabusa2","LIDAR","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:jaxa:darts:hyb2:document::4.0","title":"Hayabusa2 Mission: Document","description":"This collection contains the documents applicable to the Hayabusa2 mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Hayabusa2 Asteroid Sample Return Mission"],"targets":["(162173) Ryugu"],"instruments":["Small Monitor Camera (CAM-H)","LIght Detection And Ranging (LIDAR)","Near InfraRed Spectrometer (NIRS3)","Optical Navigation Camera","Small Carry-on Impactor (SCI)","Thermal Infrared Imager (TIR)","DCAM3-A (DCAM3 Analog)","DCAM3-D (DCAM3 Digital)","MASCOT Camera","MASCOT Fluxgate Magnetometer","MARA","MicrOmega"],"instrument_hosts":["Hayabusa2","DCAM3 (Deployable Camera 3)","MASCOT","MINERVA-II1 Rover-1a HIBOU","MINERVA-II1 Rover-1b OWL","MINERVA-II2 Rover-2 ULULA"],"data_types":["Document"],"start_date":"2014-12-03","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/collection_document_v004.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/collection_document_v004.xml","scraped_at":"2026-02-25T20:02:10.761039Z","keywords":["Hayabusa2","(162173) Ryugu"],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.satellite.colors:data::1.0","title":"Small Planetary Satellite Colors V1.0","description":"This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["MULTIPLE"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1977-09-11","stop_date":"2002-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/collection_compil.satellite.colors_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/collection_compil.satellite.colors_data.xml","scraped_at":"2026-02-25T20:02:10.761045Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.satellite.colors:document::1.0","title":"Small Planetary Satellite Colors V1.0","description":"This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["MULTIPLE"],"instruments":["Literature search"],"instrument_hosts":[],"data_types":["Document"],"start_date":"1977-09-11","stop_date":"2002-03-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/collection_compil.satellite.colors_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/collection_compil.satellite.colors_document.xml","scraped_at":"2026-02-25T20:02:10.761049Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics:data::1.0","title":"Ceres Urvara Dawn FC C2E mosaics data collection","description":"Data collection for the Ceres Urvara Dawn FC C2E mosaics bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn Mission To Vesta And Ceres"],"targets":["(1) Ceres"],"instruments":["FRAMING CAMERA 2","Framing Camera 1"],"instrument_hosts":["DAWN"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_data.xml","scraped_at":"2026-02-25T20:02:10.761053Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics:document::1.0","title":"Ceres Urvara Dawn FC C2E mosaics document collection","description":"Document collection for the Ceres Urvara Dawn FC C2E mosaics bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_document.xml","scraped_at":"2026-02-25T20:02:10.761057Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo-dds:data::1.0","title":"Galileo Dust Detection System data collection","description":"This is the data collection for the galileo-dds bundle. This data set contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission. Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["GALILEO"],"targets":["Dust","Calibration Target"],"instruments":["GALILEO DUST DETECTION SYSTEM"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1989-10-18","stop_date":"2003-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/collection_galileo-dds_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/collection_galileo-dds_data.xml","scraped_at":"2026-02-25T20:02:10.761062Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo-dds:document::1.0","title":"Galileo Dust Detection System Document Collection","description":"This is the document collection for the galileo-dds bundle. This data set contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["GALILEO"],"targets":["Calibration Target","Dust"],"instruments":["GALILEO DUST DETECTION SYSTEM"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":"1989-10-18","stop_date":"2003-09-21","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/collection_galileo-dds_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/collection_galileo-dds_document.xml","scraped_at":"2026-02-25T20:02:10.761068Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra:data::1.0","title":"Data collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0","description":"Data collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"2005-06-30","stop_date":"2009-10-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/collection_gbo.ast-neo.reddy.irtf.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/collection_gbo.ast-neo.reddy.irtf.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761074Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra:document::1.0","title":"Document collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0","description":"Document collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/collection_gbo.ast-neo.reddy.irtf.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/collection_gbo.ast-neo.reddy.irtf.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761079Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra:data::1.0","title":"Data Collection for the gbo.ast-neo.sanchez-reddy.spectra bundle","description":"Data Collection for the gbo.ast-neo.sanchez-reddy.spectra bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["2019 JX7","2016 CO247","2007 EC","2020 HS6","2014 WZ120","(438908) 2009 XO","2016 EV27","2019 JL3","(501647) 2014 SD224","2012 ER14","2002 LY1","2006 XY","2017 BY93","(459872) 2014 EK24","2019 UO13","2020 KC5","2016 BC14","2014 WY119","(85990) 1999 JV6","2020 SN","2020 YQ3","2019 RC","2001 YV3","2013 XA22","2016 CM194","2015 LK24","2019 AN5","2014 VQ","2015 AK45","2014 PL51","2016 EB1","2014 PR62","(469737) 2005 NW44","(163348) 2002 NN4","(496816) 1989 UP","2017 CR32","2015 HA1","2019 GT3","2015 WF13","2017 OL1","2017 RR15","(528159) 2008 HS3","2014 SS1","2016 EF28","2016 FV13","2016 LG","2015 BC","2019 YM3","(436724) 2011 UW158","2015 TB25","2005 TF","2017 BS5","2020 ST1","2017 OP68","2018 XG5","2020 DZ1","2014 WN4","2015 TF","2005 NE21","2017 WX12","2020 RO6","(412995) 1999 LP28","2018 XS4","2015 BK509","2015 FL","2019 SH6","2017 FU64","(471240) 2011 BT15","(467336) 2002 LT38","2017 DR34","2015 XC","(515767) 2015 JA2","2015 VE66","2015 AP43","2014 VH2","(363599) 2004 FG11","2016 GU","2015 NA14","2013 CW32","2000 TU28","2017 BW","(437844) 1999 MN"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"2013-10-14","stop_date":"2021-01-15","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/collection_gbo.ast-neo.sanchez-reddy.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/collection_gbo.ast-neo.sanchez-reddy.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761089Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra:document::1.0","title":"Document collection for the gbo.ast-neo.sanchez-reddy.spectra bundle","description":"Document collection for the gbo.ast-neo.sanchez-reddy.spectra bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["2019 JX7","2016 CO247","2007 EC","2020 HS6","2014 WZ120","(438908) 2009 XO","2016 EV27","2019 JL3","(501647) 2014 SD224","2012 ER14","2002 LY1","2006 XY","2017 BY93","(459872) 2014 EK24","2019 UO13","2020 KC5","2016 BC14","2014 WY119","(85990) 1999 JV6","2020 SN","2020 YQ3","2019 RC","2001 YV3","2013 XA22","2016 CM194","2015 LK24","2019 AN5","2014 VQ","2015 AK45","2014 PL51","2016 EB1","2014 PR62","(469737) 2005 NW44","(163348) 2002 NN4","(496816) 1989 UP","2017 CR32","2015 HA1","2019 GT3","2015 WF13","2017 OL1","2017 RR15","(528159) 2008 HS3","2014 SS1","2016 EF28","2016 FV13","2016 LG","2015 BC","2019 YM3","(436724) 2011 UW158","2015 TB25","2005 TF","2017 BS5","2020 ST1","2017 OP68","2018 XG5","2020 DZ1","2014 WN4","2015 TF","2005 NE21","2017 WX12","2020 RO6","(412995) 1999 LP28","2018 XS4","2015 BK509","2015 FL","2019 SH6","2017 FU64","(471240) 2011 BT15","(467336) 2002 LT38","2017 DR34","2015 XC","(515767) 2015 JA2","2015 VE66","2015 AP43","2014 VH2","(363599) 2004 FG11","2016 GU","2015 NA14","2013 CW32","2000 TU28","2017 BW","(437844) 1999 MN"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/collection_gbo.ast-neo.sanchez-reddy.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/collection_gbo.ast-neo.sanchez-reddy.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761097Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.hardersen.spectra:data::1.0","title":"Hardersen IRTF NIR Asteroid Reflectance Spectra V1.0","description":"Data collection for Hardersen IRTF NIR Asteroid Reflectance Spectra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"2001-04-29","stop_date":"2015-01-19","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/collection_gbo.ast.hardersen.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/collection_gbo.ast.hardersen.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761102Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.hardersen.spectra:document::1.0","title":"Document Collection for the Hardersen IRTF NIR Asteroid Reflectance Spectra Bundle","description":"Document Collection for the Hardersen IRTF NIR Asteroid Reflectance Spectra Bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/collection_gbo.ast.hardersen.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/collection_gbo.ast.hardersen.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761107Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra:data::1.0","title":"Data Collection for the Rivkin Three Micron Asteroid Data Bundle","description":"This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids","Phobos","Deimos"],"instruments":["IRTF 3.2m","RC2","NSFCam","Infrared cold coronagraph (CoCo)"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/collection_gbo.ast.rivkin.3-micron-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/collection_gbo.ast.rivkin.3-micron-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761115Z","keywords":["3-micron data","asteroids","Phobos","Deimos"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra:document::1.0","title":"Document Collection for the Rivkin Three Micron Asteroid Data Bundle","description":"This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Multiple Asteroids","Phobos","Deimos"],"instruments":["IRTF 3.2m","RC2","NSFCam","Infrared cold coronagraph (CoCo)"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/collection_gbo.ast.rivkin.3-micron-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/collection_gbo.ast.rivkin.3-micron-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761124Z","keywords":["3-micron data","asteroids","Phobos","Deimos"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.s3os2.spectra:data::1.0","title":"Data Collection for the Small Solar System Objects Spectroscopic Survey V1.0","description":"Data collection for Small Solar System Objects Spectroscopic Survey V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":[],"instruments":["1.52-m spectrographic Cassegrain/Coude reflector","ESO Boller and Chivens Spectrograph"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Data"],"start_date":"1996-11-17","stop_date":"2000-10-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/collection_gbo.ast.s3os2.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/collection_gbo.ast.s3os2.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761130Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.s3os2.spectra:document::1.0","title":"Document collection for the Small Solar System Objects Spectroscopic Survey V1.0","description":"Document collection for Small Solar System Objects Spectroscopic Survey V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":[],"instruments":["1.52-m spectrographic Cassegrain/Coude reflector","ESO Boller and Chivens Spectrograph"],"instrument_hosts":["European Southern Observatory-La Silla"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/collection_gbo.ast.s3os2.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/collection_gbo.ast.s3os2.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761135Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteorites.friability:data::1.0","title":"Data collection for Friability of Meteorites V1.0","description":"Data collection for Friability of Meteorites V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Aguas Zarcas","New Concord","Murchison","Zhob","Richardton","Tamdakht","Allende"],"instruments":["PTF 100 Friability Tester"],"instrument_hosts":["EM3 Lab"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/collection_gbo.meteorites.friability_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/collection_gbo.meteorites.friability_data.xml","scraped_at":"2026-02-25T20:02:10.761140Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.meteorites.friability:document::1.0","title":"Document collection for Friability of Meteorites V1.0","description":"Document collection for Friability of Meteorites V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["Aguas Zarcas","New Concord","Murchison","Zhob","Richardton","Tamdakht","Allende"],"instruments":["PTF 100 Friability Tester"],"instrument_hosts":["EM3 Lab"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/collection_gbo.meteorites.friability_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/collection_gbo.meteorites.friability_document.xml","scraped_at":"2026-02-25T20:02:10.761146Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.pluto.benecchi-etal.occultation:data::1.0","title":"Data collection for Occultation of star P445.3 by Pluto","description":"Data collection for Occultation of star P445.3 by Pluto","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["(134340) Pluto","(134340) Pluto"],"instruments":["6.5-m Single Mirror (MMT)","POETS: Portable Occultation, Eclipse, and Transit System","USNO 1.55m","POETS: Portable Occultation, Eclipse, and Transit System","8.4/8.4-m Large Binocular Telescope (LBT)","LBC Guide Camera","MRO 2.4m","POETS: Portable Occultation, Eclipse, and Transit System","FPO 0.32m","SBIG ST-10XME","6.5-m Single Mirror (MMT)","PISCES"],"instrument_hosts":["MMT Observatory","US Naval Observatory","Large Binocular Telescope Observatory","Magdelena Ridge Observatory","Fremont Peak Observatory","MMT Observatory"],"data_types":["Data"],"start_date":"2007-03-18","stop_date":"2007-03-18","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/collection_gbo.pluto.benecchi-etal.occultation_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/collection_gbo.pluto.benecchi-etal.occultation_data.xml","scraped_at":"2026-02-25T20:02:10.761156Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.pluto.benecchi-etal.occultation:document::1.0","title":"Document collection for Occultation of star P445.3 by Pluto","description":"Document collection for Occultation of star P445.3 by Pluto V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["(134340) Pluto","(134340) Pluto"],"instruments":["6.5-m Single Mirror (MMT)","POETS: Portable Occultation, Eclipse, and Transit System","USNO 1.55m","POETS: Portable Occultation, Eclipse, and Transit System","8.4/8.4-m Large Binocular Telescope (LBT)","LBC Guide Camera","MRO 2.4m","POETS: Portable Occultation, Eclipse, and Transit System","FPO 0.32m","SBIG ST-10XME","6.5-m Single Mirror (MMT)","PISCES"],"instrument_hosts":["MMT Observatory","US Naval Observatory","Large Binocular Telescope Observatory","Magdelena Ridge Observatory","Fremont Peak Observatory","MMT Observatory"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/collection_gbo.pluto.benecchi-etal.occultation_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/collection_gbo.pluto.benecchi-etal.occultation_document.xml","scraped_at":"2026-02-25T20:02:10.761163Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.grs:calibration::1.0","title":"The NEAR Gamma-Ray Spectrometer (GRS) Calibration Collection","description":"This collection contains all the calibration files for the the NEAR GRS instrument data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-01-11","stop_date":"2001-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/collection_near.grs_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/collection_near.grs_calibration.xml","scraped_at":"2026-02-25T20:02:10.761167Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.grs:data_calibrated::1.0","title":"The NEAR Gamma-Ray Spectrometer (GRS) Data Calibrated Collection","description":"This collection contains all the calibrated data collected from the GRS instrument during the NEAR mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-01-11","stop_date":"2001-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/collection_near.grs_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/collection_near.grs_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.761172Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.grs:data_raw::1.0","title":"The NEAR Gamma-Ray Spectrometer (GRS) Data Raw Collection","description":"This collection contains all the raw data collected from the GRS instrument during the NEAR mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"1997-08-27","stop_date":"2001-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/collection_near.grs_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/collection_near.grs_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761176Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.grs:document::1.0","title":"The NEAR Gamma-Ray Spectrometer (GRS) Document Collection","description":"This collection contains all of the documentation pertaining to the NEAR GRS instrument data bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Document"],"start_date":"2000-01-11","stop_date":"2001-08-15","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/document/collection_near.grs_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_grs/document/collection_near.grs_document.xml","scraped_at":"2026-02-25T20:02:10.761201Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.nlr:browse::1.0","title":"The NEAR LASER RANGEFINDER Browse Collection","description":"This browse collection contains a series of JPG files that provide a simple method for browsing through the NEAR NLR archive. Each JPEG image represents a Level 2 time series profile data product found on the volume.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SOLAR_SYSTEM"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Browse"],"start_date":"2000-02-28","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/collection_near.nlr_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/collection_near.nlr_browse.xml","scraped_at":"2026-02-25T20:02:10.761206Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.nlr:data_calibrated::1.0","title":"The NEAR NEAR Laser Rangefinder (NLR) Along-Track Time Series Level 2 data","description":"This collection contains the NEAR Laser Rangefinder (NLR) Level 2 Data Products. These products include the along-track profiles of NLR data in SI units, together with spacecraft position, orientation, and timing data. The radius of 433 Eros with respect to its center of mass is the primary profile parameter","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SOLAR_SYSTEM"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"2000-02-28","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/collection_near.nlr_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/collection_near.nlr_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.761210Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.nlr:data_raw::1.0","title":"The NEAR Laser Rangefinder (NLR) Data Raw Collection","description":"This collection contains the NEAR Laser Rangefinder (NLR) instrument raw data products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SOLAR_SYSTEM"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Data"],"start_date":"1996-04-25","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/collection_near.nlr_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/collection_near.nlr_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761213Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.nlr:document::1.0","title":"The NEAR Laser Rangefinder (NLR) document collection","description":"This collection contains all the documentation needed to use the NEAR NLR instrument bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Near Earth Asteroid Rendezvous"],"targets":["(433) Eros","SOLAR_SYSTEM"],"instruments":["NEAR LASER RANGEFINDER for NEAR"],"instrument_hosts":["Near Earth Asteroid Rendezvous"],"data_types":["Document"],"start_date":"1996-04-19","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/document/collection_near.nlr_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near.nlr/document/collection_near.nlr_document.xml","scraped_at":"2026-02-25T20:02:10.761217Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:neowise_diameters_albedos:data::2.0","title":"NEOWISE Diameters and Albedos V2.0","description":"This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEOWISE"],"targets":["Multiple Asteroids","SATELLITE","COMET"],"instruments":["WISE Camera"],"instrument_hosts":["Wide-Field Infrared Survey Explorer"],"data_types":["Data"],"start_date":"2010-01-07","stop_date":"2016-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/collection_neowise_diameters_albedos_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/collection_neowise_diameters_albedos_data.xml","scraped_at":"2026-02-25T20:02:10.761222Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:neowise_diameters_albedos:document::2.0","title":"NEOWISE Diameters and Albedos V2.0","description":"This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEOWISE"],"targets":["Multiple Asteroids","SATELLITE","COMET"],"instruments":["WISE Camera"],"instrument_hosts":["Wide-Field Infrared Survey Explorer"],"data_types":["Document"],"start_date":"2010-01-07","stop_date":"2016-12-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/collection_neowise_diameters_albedos_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/collection_neowise_diameters_albedos_document.xml","scraped_at":"2026-02-25T20:02:10.761227Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ast-bennu.simulated-shape-models:data::1.0","title":"OSIRIS-REx Simulated Test Models V1.0","description":"This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"],"targets":["(101955) Bennu"],"instruments":["Simulation","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":["OSIRIS-REx"],"data_types":["Data"],"start_date":"2016-02-03","stop_date":"2016-10-21","browse_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/collection_orex.ast-bennu.simulated-shape-models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/collection_orex.ast-bennu.simulated-shape-models_data.xml","scraped_at":"2026-02-25T20:02:10.761231Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ast-bennu.simulated-shape-models:document::1.0","title":"OSIRIS-REx Simulated Test Models V1.0","description":"This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"],"targets":["(101955) Bennu"],"instruments":["Simulation","Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":["OSIRIS-REx"],"data_types":["Document"],"start_date":"2016-02-03","stop_date":"2016-10-21","browse_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/collection_orex.ast-bennu.simulated-shape-models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/collection_orex.ast-bennu.simulated-shape-models_document.xml","scraped_at":"2026-02-25T20:02:10.761235Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.grs:data_raw::2.0","title":"Collection of raw data products for the Psyche Gamma Ray Spectrometer instrument","description":"This data collection contains the raw spectrometer and engineering products returned by the Gamma Ray Spectrometer (GRS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission. These data products are formatted as binary tables of time series data. The Psyche mission is a planetary mission to investigate the Psyche asteroid and accomplish several scientific objectives, among them determining whether the asteroid is the exposed core of a proto-planetary body.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":["Solar System"],"instruments":["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Data"],"start_date":"2025-04-01","stop_date":"2025-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761241Z","keywords":["Psyche","Gamma Ray Spectrometer","GRS"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.grs:document::2.0","title":"Documentation for the Psyche Gamma Ray Spectrometer Instrument, Raw through Calibrated Products","description":"This documentation collection includes documentation describing the raw and calibrated data collections from the Gamma Ray Spectrometer (GRS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":[],"instruments":["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761245Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps:data::2.0","title":"Data collection for Ceres SPC Shape and Regional Models V2.0","description":"Data collection for Ceres SPC Shape and Regional Models V2.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["The Dawn Mission To Vesta And Ceres"],"targets":["1 Ceres"],"instruments":["Framing Camera 2 (FC2) for Dawn","Framing Camera 1 (FC1) for Dawn"],"instrument_hosts":["The Dawn Spacecraft","The Dawn Spacecraft"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/collection_dwarf_planet-ceres.dawn.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/collection_dwarf_planet-ceres.dawn.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761249Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps:document::2.0","title":"Ceres SPC Shape and Regional Models V1.0","description":"Inventory of the document collection for this bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn Mission To Vesta And Ceres"],"targets":["(1) Ceres"],"instruments":["FRAMING CAMERA 2","Framing Camera 1"],"instrument_hosts":["DAWN","DAWN"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/collection_dwarf_planet-ceres.dawn.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/collection_dwarf_planet-ceres.dawn.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761253Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.mission:context::1.0","title":"Psyche: Context","description":"This collection contains the context products applicable to the Psyche mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":[],"instruments":["The Psyche Imager (PMI) aboard the Psyche spacecraft","The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft","The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft","The Psyche Magnetometer (MAG) aboard the Psyche spacecraft","Psyche Radio Science Subsystem (RSS)"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.761258Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.mission:document::1.0","title":"Collection of documents: Psyche Mission Bundle","description":"This collection contains the documents applicable to the Psyche mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761262Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.mission:xml_schema::1.0","title":"Collection of schema: Psyche Mission Bundle XML Schema","description":"Collection of XML Schema products applicable to the Psyche archive.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.761269Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.ns:data_raw::2.0","title":"Collection of raw data products for the Psyche Neutron Spectrometer instrument","description":"This data collection contains the raw spectrometer and engineering products returned by the Neutron Spectrometer (NS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission. These data products are formatted as binary tables of time series data. The Psyche mission is a planetary mission to investigate the Psyche asteroid and accomplish several scientific objectives, among them determining whether the asteroid is the exposed core of a proto-planetary body.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":["Solar System"],"instruments":["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Data"],"start_date":"2025-04-01","stop_date":"2025-06-30","browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/collection_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/collection_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761275Z","keywords":["Psyche","Neutron Spectrotometer"],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:psyche.ns:document::2.0","title":"Documentation for the Psyche Neutron Spectrometer Instrument, Raw through Calibrated Products","description":"This documentation collection includes documentation describing the raw and calibrated data collections from the Neutron Spectrometer (NS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Psyche Mission"],"targets":[],"instruments":["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"],"instrument_hosts":["The Psyche Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761279Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-dione.cassini.shape-models-maps:data::1.0","title":"Data collection for Dione SPC Shape Models and Assessment Products V1.0","description":"Data collection for Dione SPC Shape Models and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Dione"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/collection_satellite-dione.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/collection_satellite-dione.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761283Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-dione.cassini.shape-models-maps:document::1.0","title":"Document collection for Dione SPC Shape Models and Assessment Products V1.0","description":"Document collection for Dione SPC Shape Models and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Dione"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/collection_satellite-dione.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/collection_satellite-dione.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761286Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-mimas.cassini.shape-models-maps:data::1.0","title":"Data collection for Mimas SPC Shape Model and Assessment Products V1.0","description":"Data collection for Mimas SPC Shape Model and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Mimas"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/collection_satellite-mimas.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/collection_satellite-mimas.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761291Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-mimas.cassini.shape-models-maps:document::1.0","title":"Document collection for Mimas SPC Shape Model and Assessment Products V1.0","description":"Document collection for Mimas SPC Shape Model and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Mimas"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/collection_satellite-mimas.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/collection_satellite-mimas.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761294Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-rhea.cassini.shape-models-maps:data::1.0","title":"Data collection for Rhea SPC Shape Model and Assessment Products V1.0","description":"Data collection for Rhea SPC Shape Model and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Rhea"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/collection_satellite-rhea.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/collection_satellite-rhea.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761299Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-rhea.cassini.shape-models-maps:document::1.0","title":"Document collection for Rhea SPC Shape Model and Assessment Products V1.0","description":"Document collection for Rhea SPC Shape Model and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Rhea"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/collection_satellite-rhea.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/collection_satellite-rhea.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761303Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-tethys.cassini.shape-models-maps:data::1.0","title":"Data collection for Tethys SPC Shape Models and Assessment Products V1.0","description":"Data collection for Tethys SPC Shape Models and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Tethys"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/collection_satellite-tethys.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/collection_satellite-tethys.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761306Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-tethys.cassini.shape-models-maps:document::1.0","title":"Document collection for Tethys SPC Shape Models and Assessment Products V1.0","description":"Document collection for Tethys SPC Shape Models and Assessment Products V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-Huygens"],"targets":["Tethys"],"instruments":["Imaging Science Subsystem - Wide Angle for CO","Imaging Science Subsystem - Narrow Angle for CO"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/collection_satellite-tethys.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/collection_satellite-tethys.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761310Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:small_bodies.stooke.maps:data::1.0","title":"Data collection for the Stooke small bodies maps bundle","description":"Data Collection for the Stooke small bodies maps bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo","Near Earth Asteroid Rendezvous Mission","International Rosetta Mission","Hayabusa Mission","Viking Project","Mars Global Surveyor","Mars Express","Mars Reconnaissance Orbiter","The Mariner Mars '71 (Mariner 9) Mission","Voyager"],"targets":["103P/Hartley 2","19P/Borrelly","243 Ida","25143 Itokawa","253 Mathilde","2867 Steins","433 Eros","81P/Wild 2","951 Gaspra","Amalthea","Phobos","Deimos","Epimetheus","Hyperion"],"instruments":["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker","Solid State Imaging System for GO","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter","The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B","Mars Global Surveyor Spacecraft Mars Orbiter Camera","Mars Express Orbiter High Resolution Stereo Camera","Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment","Imaging Science Subsystem for MR9","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"],"instrument_hosts":["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft","GALILEO ORBITER","The Rosetta Orbiter Spacecraft","The Hayabusa Spacecraft","The Viking Orbiter 1 Spacecraft","The Viking Orbiter 2 Spacecraft","The Mars Global Surveyor Spacecraft","Mars Express","Mars Reconnaissance Orbiter","The Mariner 9 Spacecraft","VOYAGER 1","VOYAGER 2"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/collection_small_bodies.stooke.maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/collection_small_bodies.stooke.maps_data.xml","scraped_at":"2026-02-25T20:02:10.761321Z","keywords":["maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:small_bodies.stooke.maps:document::1.0","title":"Document collection for the Stooke small bodies maps bundle","description":"Document Collection for the Stooke small bodies maps bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo","Near Earth Asteroid Rendezvous Mission","International Rosetta Mission","Hayabusa Mission","Viking Project","Mars Global Surveyor","Mars Express","Mars Reconnaissance Orbiter","The Mariner Mars '71 (Mariner 9) Mission","Voyager"],"targets":["103P/Hartley 2","19P/Borrelly","243 Ida","25143 Itokawa","253 Mathilde","2867 Steins","433 Eros","81P/Wild 2","951 Gaspra","Amalthea","Phobos","Deimos","Epimetheus","Hyperion"],"instruments":["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker","Solid State Imaging System for GO","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter","The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B","Mars Global Surveyor Spacecraft Mars Orbiter Camera","Mars Express Orbiter High Resolution Stereo Camera","Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment","Imaging Science Subsystem for MR9","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"],"instrument_hosts":["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft","GALILEO ORBITER","The Rosetta Orbiter Spacecraft","The Hayabusa Spacecraft","The Viking Orbiter 1 Spacecraft","The Viking Orbiter 2 Spacecraft","The Mars Global Surveyor Spacecraft","Mars Express","Mars Reconnaissance Orbiter","The Mariner 9 Spacecraft","VOYAGER 1","VOYAGER 2"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/collection_small_bodies.stooke.maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/collection_small_bodies.stooke.maps_document.xml","scraped_at":"2026-02-25T20:02:10.761331Z","keywords":["maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:small_bodies.stooke.maps:miscellaneous::1.0","title":"Miscellanous collection for the Stooke small bodies maps bundle","description":"Miscellanous Collection for the Stooke small bodies maps bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo","Near Earth Asteroid Rendezvous Mission","International Rosetta Mission","Hayabusa Mission","Viking Project","Mars Global Surveyor","Mars Express","Mars Reconnaissance Orbiter","The Mariner Mars '71 (Mariner 9) Mission","Voyager"],"targets":["103P/Hartley 2","19P/Borrelly","243 Ida","25143 Itokawa","253 Mathilde","2867 Steins","433 Eros","81P/Wild 2","951 Gaspra","Amalthea","Phobos","Deimos","Epimetheus","Hyperion"],"instruments":["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker","Solid State Imaging System for GO","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter","The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter","The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A","Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B","Mars Global Surveyor Spacecraft Mars Orbiter Camera","Mars Express Orbiter High Resolution Stereo Camera","Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment","Imaging Science Subsystem for MR9","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"],"instrument_hosts":["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft","GALILEO ORBITER","The Rosetta Orbiter Spacecraft","The Hayabusa Spacecraft","The Viking Orbiter 1 Spacecraft","The Viking Orbiter 2 Spacecraft","The Mars Global Surveyor Spacecraft","Mars Express","Mars Reconnaissance Orbiter","The Mariner 9 Spacecraft","VOYAGER 1","VOYAGER 2"],"data_types":["Miscellaneous"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/collection_small_bodies.stooke.maps_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/collection_small_bodies.stooke.maps_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.761340Z","keywords":["maps"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:small_bodies.stooke.shape-models:data::1.0","title":"Data Collection for the Stooke small bodies shape models bundle","description":"Data Collection for the Stooke small bodies shape models bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["243 Ida","253 Mathilde","951 Gaspra","Pandora","Amalthea","Thebe","Larissa","Proteus","Janus","Epimetheus","Prometheus","1P/Halley"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","The Halley Multicolor Camera (HMC) for Giotto","The Television System (TVS) for Vega 1","The Television System (TVS) for Vega 2","Solid State Imaging System for GO","The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"],"instrument_hosts":["VOYAGER 1","VOYAGER 2","The Giotto Spacecraft","The Vega 1 Spacecraft","The Vega 2 Spacecraft","GALILEO ORBITER","The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/collection_small_bodies.stooke.shape-models_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/collection_small_bodies.stooke.shape-models_data.xml","scraped_at":"2026-02-25T20:02:10.761348Z","keywords":["shape models"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:small_bodies.stooke.shape-models:document::1.0","title":"Document collection for the Stooke small bodies shape models bundle","description":"Document Collection for the Stooke small bodies shape models bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["243 Ida","253 Mathilde","951 Gaspra","Pandora","Amalthea","Thebe","Larissa","Proteus","Janus","Epimetheus","Prometheus","1P/Halley"],"instruments":["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1","IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2","The Halley Multicolor Camera (HMC) for Giotto","The Television System (TVS) for Vega 1","The Television System (TVS) for Vega 2","Solid State Imaging System for GO","The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"],"instrument_hosts":["VOYAGER 1","VOYAGER 2","The Giotto Spacecraft","The Vega 1 Spacecraft","The Vega 2 Spacecraft","GALILEO ORBITER","The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/collection_small_bodies.stooke.shape-models_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/collection_small_bodies.stooke.shape-models_document.xml","scraped_at":"2026-02-25T20:02:10.761355Z","keywords":["shape models"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-udds:data::1.0","title":"data collection for the \"ULYSSES DUST DETECTION SYSTEM\" bundle","description":"This is the data collection for the ulysses.udds bundle. This collection contains the data from the Ulysses dust detector system (UDDS) from start of mission through the end of mission, 1990-2007. (As the dust detector was turned off after Nov. 30, 2007, this is the last date for which UDDS data is recorded.) Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["ULYSSES"],"targets":["Calibration Target","Dust"],"instruments":["ULYSSES DUST DETECTION SYSTEM","UNIFIED RADIO AND PLASMA WAVE EXPERIMENT"],"instrument_hosts":["ULYSSES","ULYSSES"],"data_types":["Data"],"start_date":"1990-01-01","stop_date":"2007-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/collection_ulysses.udds_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/collection_ulysses.udds_data.xml","scraped_at":"2026-02-25T20:02:10.761359Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:ulysses-udds:document::1.0","title":"document collection for the \"ULYSSES DUST DETECTION SYSTEM\" bundle","description":"This is the document collection for the ulysses.udds bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["ULYSSES"],"targets":["Calibration Target","Dust"],"instruments":["ULYSSES DUST DETECTION SYSTEM","UNIFIED RADIO AND PLASMA WAVE EXPERIMENT"],"instrument_hosts":["ULYSSES","ULYSSES"],"data_types":["Document"],"start_date":"1990-01-01","stop_date":"2007-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/collection_ulysses.udds_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/collection_ulysses.udds_document.xml","scraped_at":"2026-02-25T20:02:10.761364Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.tagcams:data_hkl0::12.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) raw housekeeping (or status) data products.","description":"This collection contains the housekeeping data products produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/collection_tagcams_hkl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/collection_tagcams_hkl0.xml","scraped_at":"2026-02-25T20:02:10.761370Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.tagcams:data_hkl1::12.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) converted housekeeping (or status) data products.","description":"This collection contains the converted housekeeping data products produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/collection_tagcams_hkl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/collection_tagcams_hkl1.xml","scraped_at":"2026-02-25T20:02:10.761375Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.tagcams:data_raw::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) raw image observational data products.","description":"This collection contains the raw images produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft. These images were acquired for optical navigation, natural feature tracking, or sample stowage documentation.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/collection_tagcams_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/collection_tagcams_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761381Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.tagcams:document::12.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document","description":"This collection contains the documents applicable to the OSIRIS-REx Touch-and-Go Camera Suite (TAGCAMS).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/collection_tagcams_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/collection_tagcams_document.xml","scraped_at":"2026-02-25T20:02:10.761386Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.tagcams:miscellaneous::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) miscellaneous data products.","description":"This collection contains the raw images produced by the STOWCAM element of the TAGCAMS instrument onboard the OSIRIS-REx spacecraft. These images were acquired for engineering purposes to monitor the state of the sample return capsule.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Miscellaneous"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/collection_tagcams_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/collection_tagcams_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.761391Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msx.mimps:data::1.0","title":"Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Data Collection","description":"This collection contains Infrared observations of asteroids serendipitously observed by the Midcourse Space Experiment","node":"sbn","pds_version":"PDS4","type":"collection","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":["Data"],"start_date":"1996-04-01","stop_date":"1997-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/collection_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.761396Z","keywords":[],"processing_level":"Raw | Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msx.mimps:document::1.0","title":"Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Document Collection","description":"This collection contains all the documentation for the Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1996-04-01","stop_date":"1997-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761400Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msx.zody.dust:browse::1.0","title":"Midcourse Space Experiment (MSX) Zodiacal Dust Browse Collection","description":"This collection contains the Midcourse Space Experiment (MSX) Zodiacal Dust browse products as jpeg images that contain plots of the MSX zodiacal data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":["Data"],"start_date":"1986-05-28","stop_date":"1997-02-04","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/collection_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/collection_browse.xml","scraped_at":"2026-02-25T20:02:10.761404Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ovirs:data_calibrated::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) calibrated science spectral data products.","description":"This collection contains the calibrated (processing level 2 radiometrically calibrated) science spectral data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/collection_ovirs_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/collection_ovirs_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.761408Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msx.zody.dust:data::1.0","title":"Midcourse Space Experiment (MSX) Zodiacal Dust Data Collection","description":"This collection contains the Midcourse Space Experiment (MSX) mid-infrared emission measurements from the zodiacal dust cloud in spectral bands centered at 8.3 12, 15, and 21 microns.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["The Midcourse Space Experiment"],"targets":["Multiple Asteroids"],"instruments":["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"],"instrument_hosts":["The Midcourse Space Experiment (MSX) Spacecraft"],"data_types":["Data"],"start_date":"1986-05-28","stop_date":"1997-02-04","browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/collection_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/collection_data.xml","scraped_at":"2026-02-25T20:02:10.761412Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:msx.zody.dust:document::1.0","title":"Midcourse Space Experiment (MSX) Zodiacal Dust Document Collection","description":"This is the document collection for the Midcourse Space Experiment (MSX) Zodiacal Dust bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/collection_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/collection_document.xml","scraped_at":"2026-02-25T20:02:10.761416Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ovirs:data_hkl0::10.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) raw instrument housekeeping data products.","description":"This collection contains the raw (processing level 0) instrument housekeeping data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/collection_ovirs_data_hkl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/collection_ovirs_data_hkl0.xml","scraped_at":"2026-02-25T20:02:10.761420Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ovirs:data_hkl1::10.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) converted instrument housekeeping data products.","description":"This collection contains the converted (processing level 1) instrument housekeeping data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/collection_ovirs_data_hkl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/collection_ovirs_data_hkl1.xml","scraped_at":"2026-02-25T20:02:10.761423Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ovirs:data_raw::10.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) raw science spectral data products.","description":"This collection contains the raw (processing level 0) science data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/collection_ovirs_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/collection_ovirs_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761428Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ovirs:document::9.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OVIRS Document","description":"This collection contains the documents applicable to the OSIRIS-REx Visible and Infra-Red Spectrometer (OVIRS) instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/collection_ovirs_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/collection_ovirs_document.xml","scraped_at":"2026-02-25T20:02:10.761432Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-ceres:data-shadr::1.0","title":"Dawn Ceres ASCII Spherical Harmonic Models Data Collection","description":"This collection includes ASCII spherical harmonic model of Ceres's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2015-02-02","stop_date":"2018-10-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/collection-data-shadr-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/collection-data-shadr-1.0.xml","scraped_at":"2026-02-25T20:02:10.761436Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-ceres:data-shbdr::1.0","title":"Dawn Ceres Binary Spherical Harmonic Models Data Collection","description":"This collection includes binary spherical harmonic model of Ceres's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2015-02-02","stop_date":"2018-10-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/collection-data-shbdr-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/collection-data-shbdr-1.0.xml","scraped_at":"2026-02-25T20:02:10.761440Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-ceres:document::1.0","title":"Dawn Ceres Gravity Science Derived Document Collection","description":"This collection contains the document files associated with the Dawn Ceres Gravity Science Derived Data Bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres","4 Vesta","Mars"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/collection-document-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/collection-document-1.0.xml","scraped_at":"2026-02-25T20:02:10.761444Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-ceres:maps::1.0","title":"Dawn Ceres Gravity Radio Science Digital Maps Data Collection","description":"This collection includes radio science digital map files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2015-02-02","stop_date":"2016-09-02","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/collection-maps-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/collection-maps-1.0.xml","scraped_at":"2026-02-25T20:02:10.761449Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-vesta:data-shadr::1.0","title":"Dawn Vesta ASCII Spherical Harmonic Model Data Collection","description":"This collection includes files that contain ASCII spherical harmonic model of Vesta's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2011-07-13","stop_date":"2012-07-25","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/collection-data-shadr-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/collection-data-shadr-1.0.xml","scraped_at":"2026-02-25T20:02:10.761453Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-vesta:data-shbdr::1.0","title":"Dawn Vesta Binary Spherical Harmonic Model Data Collection","description":"This collection includes a file that contains binary spherical harmonic model of Vesta's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2011-07-13","stop_date":"2012-07-25","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/collection-data-shbdr-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/collection-data-shbdr-1.0.xml","scraped_at":"2026-02-25T20:02:10.761457Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-vesta:document::1.0","title":"Dawn Vesta Gravity Science Derived Data Bundle Document Collection","description":"This collection contains the document files associated with the Dawn Vesta Gravity Science Derived Data Bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["1 Ceres","4 Vesta","Mars"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/collection-document-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/collection-document-1.0.xml","scraped_at":"2026-02-25T20:02:10.761462Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-der-vesta:maps::1.0","title":"Dawn Vesta Gravity Radio Science Digital Maps Data Collection","description":"This collection includes radio science digital map files for Vesta.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Data"],"start_date":"2011-07-13","stop_date":"2012-07-25","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/collection-maps-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/collection-maps-1.0.xml","scraped_at":"2026-02-25T20:02:10.761466Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.thermal:data_thermal_maps::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Derived Thermal Map Products.","description":"This collection contains the calibrated (processing level 2 radiometrically calibrated) science spectral data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS","OTES","OCAMS","OLA"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/collection_data_thermal_maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/collection_data_thermal_maps.xml","scraped_at":"2026-02-25T20:02:10.761470Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.thermal:document::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document","description":"This collection contains the documents applicable to the OSIRIS-REx Derived Thermal Map Products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OVIRS","OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/collection_thermal_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/collection_thermal_document.xml","scraped_at":"2026-02-25T20:02:10.761474Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.radioscience:document::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Radio Science Documents","description":"This collection contains the documents applicable to the OSIRIS-REx Radio Science data products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OSIRIS-REx Radio Science (Telecom) Subsystem","OSIRIS-REx Propulsion Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/collection_radioscience_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/collection_radioscience_document.xml","scraped_at":"2026-02-25T20:02:10.761480Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.radioscience:naf018_sff::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Small Forces Files","description":"This collection contains the Small Forces Files calculated for the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["OSIRIS-Rex Spacecraft"],"instruments":["OSIRIS-REx Propulsion Subsystem"],"instrument_hosts":["OSIRIS-REx Spacecraft","DSN"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/collection_radioscience_naf018_sff.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/collection_radioscience_naf018_sff.xml","scraped_at":"2026-02-25T20:02:10.761484Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.radioscience:trk223_ion_dopr::1.0","title":"OSIRIS-REx DSN Ionospheric Doppler Calibration","description":"This collection contains data products that provide ionospheric calibration for Doppler radio tracking measurements of the OSIRIS-REx spacecraft during its Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["OSIRIS-REx Mission","DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2018-08-01","stop_date":"2021-06-01","browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/collection_trk223_ion_dopr.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/collection_trk223_ion_dopr.xml","scraped_at":"2026-02-25T20:02:10.761488Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.radioscience:trk223_ion_vlbi::1.0","title":"OSIRIS-REx DSN Ionospheric VLBI Calibration","description":"This collection contains data products that provide ionospheric calibration for VLBI radio tracking measurements of the OSIRIS-REx spacecraft during its Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["OSIRIS-REx Mission","DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2018-08-19","stop_date":"2021-05-30","browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/collection_trk223_ion_vlbi.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/collection_trk223_ion_vlbi.xml","scraped_at":"2026-02-25T20:02:10.761492Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.radioscience:trk234_trknav::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Deep Space Network TRK-2-34 data files.","description":"This collection contains the OSIRIS-REx liens resolved DSN TRK234 binary data files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OSIRIS-REx Radio Science (Telecom) Subsystem","NASA Deep Space Network Radio Science"],"instrument_hosts":["OSIRIS-REx Spacecraft","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/collection_radioscience_trk234_traknav.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/collection_radioscience_trk234_traknav.xml","scraped_at":"2026-02-25T20:02:10.761498Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.apc.lightcurves:data::1.0","title":"Asteroid Photometric Catalog V1.0","description":"This collection contains the documents applicable to the Asteroid Photometric Catalog bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(1) Ceres","Multiple Asteroids","(4) Vesta","(10) Hygiea","(100) Hekate","(101) Helena","(1012) Sarema","(1013) Tombecka","(1018) Arnolda","(102) Miriam","(1029) La Plata","(103) Hera","(1036) Ganymed","(104) Klymene","(105) Artemis","(1057) Wanda","(1058) Grubba","(106) Dione","(1062) Ljuba","(1063) Aquilegia","(1067) Lunaria","(1068) Nofretete","(107) Camilla","(1076) Viola","(1079) Mimosa","(1084) Tamariwa","(109) Felicitas","(1090) Sumida","(1092) Lilium","(1095) Tulipa","(11) Parthenope","(110) Lydia","(111) Ate","(1111) Reinmuthia","(1112) Polonia","(1129) Neujmina","(113) Amalthea","(1137) Raissa","(1139) Atami","(114) Kassandra","(1143) Odysseus","(1149) Volga","(115) Thyra","(1159) Granada","(116) Sirona","(1167) Dubiago","(1168) Brandia","(1173) Anchises","(1178) Irmela","(118) Peitho","(1180) Rita","(1186) Turnera","(11868) Kleinrichert","(119) Althaea","(1192) Prisma","(1196) Sheba","(1197) Rhodesia","(12) Victoria","(120) Lachesis","(1207) Ostenia","(121) Hermione","(1210) Morosovia","(1212) Francette","(1219) Britta","(1220) Crocus","(1223) Neckar","(1224) Fantasia","(123) Brunhild","(1234) Elyna","(1236) Thais","(1237) Genevieve","(124) Alkeste","(1240) Centenaria","(1245) Calvinia","(125) Liberatrix","(1250) Galanthus","(1256) Normannia","(1257) Mora","(1259) Ogyalla","(126) Velleda","(1262) Sniadeckia","(1267) Geertruida","(1279) Uganda","(128) Nemesis","(1284) Latvia","(1288) Santa","(1289) Kutaissi","(129) Antigone","(1291) Phryne","(13) Egeria","(130) Elektra","(13014) Hasslacher","(1305) Pongola","(1317) Silvretta","(132) Aethra","(1321) Majuba","(1322) Coppernicus","(133) Cyrene","(1331) Solvejg","(1337) Gerarda","(134) Sophrosyne","(1346) Gotha","(135) Hertha","(1350) Rosselia","(136) Austria","(1362) Griqua","(1366) Piccolo","(1368) Numidia","(137) Meliboea","(1379) Lomonosowa","(138) Tolosa","(1389) Onnie","(139) Juewa","(1392) Pierre","(1397) Umtata","(14) Irene","(140) Siwa","(1404) Ajax","(141) Lumen","(1416) Renauxa","(143) Adria","(1434) Margot","(1437) Diomedes","(144) Vibilia","(145) Adeona","(146) Lucina","(1468) Zomba","(147) Protogeneia","(1478) Vihuri","(148) Gallia","(1481) Tubingia","(1482) Sebastiana","(14827) Hypnos","(149) Medusa","(15) Eunomia","(150) Nuwa","(1504) Lappeenranta","(151) Abundantia","(1513) Matra","(152) Atala","(1522) Kokkola","(1523) Pieksmaki","(153) Hilda","(1533) Saimaa","(154) Bertha","(1556) Wingolfia","(156) Xanthippe","(1562) Gondolatsch","(1566) Icarus","(1576) Fabiola","(158) Koronis","(1580) Betulia","(1583) Antilochus","(1584) Fuji","(1585) Union","(159) Aemilia","(1590) Tsiolkovskaja","(1593) Fagnes","(16) Psyche","(1604) Tombaugh","(1609) Brenda","(161) Athor","(1615) Bardwell","(161989) Cacus","(162) Laurentia","(1620) Geographos","(1627) Ivar","(1628) Strobel","(163) Erigone","(164) Eva","(1641) Tana","(1644) Rafita","(1646) Rosseland","(165) Loreley","(1665) Gaby","(167) Urda","(1670) Minnaert","(1672) Gezelle","(1674) Groeneveld","(1685) Toro","(1687) Glarona","(1689) Floris-Jan","(169) Zelia","(1693) Hertzsprung","(17) Thetis","(1709) Ukraina","(171) Ophelia","(1715) Salli","(172) Baucis","(1722) Goffin","(1723) Klemola","(1727) Mette","(173) Ino","(174) Phaedra","(1742) Schaifers","(1743) Schmidt","(1753) Mieke","(1757) Porvoo","(1759) Kienle","(1772) Gagarin","(178) Belisana","(1780) Kippes","(1789) Dobrovolsky","(179) Klytaemnestra","(1793) Zoya","(18) Melpomene","(181) Eucharis","(182) Elsa","(183) Istria","(184) Dejopeja","(185) Eunike","(186) Celuta","(1862) Apollo","(1863) Antinous","(1864) Daedalus","(1865) Cerberus","(189) Phthia","(1892) Lucienne","(19) Fortuna","(190) Ismene","(1902) Shaposhnikov","(1915) Quetzalcoatl","(1917) Cuyo","(192) Nausikaa","(1928) Summa","(194) Prokne","(1941) Wild","(1943) Anteros","(1946) Walraven","(1951) Lick","(1957) Angara","(196) Philomela","(1960) Guisan","(197) Arete","(1972) Yi Xing","(2) Pallas","(20) Massalia","(200) Dynamene","(201) Penelope","(2017) Wesson","(203) Pompeja","(204) Kallisto","(206) Hersilia","95P/1977 UB (Chiron) [(2060) Chiron]","(2061) Anza","(2064) Thomsen","(2072) Kosmodemyanskaya","(208) Lacrimosa","(2088) Sahlia","(209) Dido","(21) Lutetia","(2100) Ra-Shalom","(2109) Dhotel","(211) Isolda","(2113) Ehrdni","(213) Lilaea","(214) Aschera","(2156) Kate","(2159) Kukkamaki","(216) Kleopatra","(2167) Erin","(218) Bianca","(219) Thusnelda","(22) Kalliope","(2201) Oljato","(221) Eos","(222) Lucia","(224) Oceana","(225) Henrietta","(226) Weringia","(23) Thalia","(230) Athamantis","(2317) Galya","(233) Asterope","(2339) Anacreon","(234) Barbara","(235) Carolina","(236) Honoria","(2363) Cebriones","(238) Hypatia","(24) Themis","(241) Germania","(243) Ida","(245) Vera","(246) Asporina","(247) Eukrate","(248) Lameia","(249) Ilse","(25) Phocaea","(250) Bettina","(254) Augusta","(255) Oppavia","(258) Tyche","(259) Aletheia","(26) Proserpina","(2608) Seneca","(261) Prymno","(263) Dresda","(264) Libussa","(267) Tirza","(2674) Pandarus","(268) Adorea","(2687) Tortali","(269) Justitia","(27) Euterpe","(270) Anahita","(273) Atropos","(2744) Birgitta","(277) Elvira","(279) Thule","(2797) Teucer","(28) Bellona","(280) Philia","(281) Lucretia","(282) Clorinde","(283) Emma","(2830) Greenwich","(284) Amalia","(287) Nephthys","(288) Glauke","(289) Nenetta","(2895) Memnon","(29) Amphitrite","(291) Alice","(292) Ludovica","(2952) Lilliputia","(3) Juno","(30) Urania","(302) Clarissa","(304) Olga","(306) Unitas","(3063) Makhaon","(308) Polyxo","(31) Euphrosyne","(3102) Krok","(3103) Eger","(311) Claudia","Chaldaea","(3169) Ostro","(317) Roxane","(3199) Nefertiti","(32) Pomona","(321) Florentina","(322) Phaeo","(323) Brucia","(324) Bamberga","(325) Heidelberga","(3254) Bus","(326) Tamara","(3268) De Sanctis","(329) Svea","(33) Polyhymnia","(3317) Paris","(332) Siri","(334) Chicago","(335) Roberta","(336) Lacadiera","(3361) Orpheus","(337) Devosa","(338) Budrosa","(34) Circe","(340) Eduarda","(343) Ostara","(344) Desiderata","(345) Tercidina","(346) Hermentaria","(347) Pariana","(349) Dembowska","(35) Leukothea","(352) Gisela","(3536) Schleicher","(354) Eleonora","(3540) Protesilaos","(3551) Verenia","(3552) Don Quixote","(356) Liguria","(357) Ninina","(359) Georgia","(36) Atalante","(360) Carlova","(361) Bononia","(362) Havnia","(363) Padua","(364) Isara","(3651) Friedman","(3671) Dionysus","(3686) Antoku","(369) Aeria","(37) Fides","(372) Palma","(3737) Beckman","(375) Ursula","(376) Geometria","(377) Campania","(379) Huenna","(38) Leda","(381) Myrrha","(382) Dodona","(383) Janina","(385) Ilmatar","(386) Siegena","(387) Aquitania","(388) Charybdis","(389) Industria","(39) Laetitia","(3908) Nyx","(393) Lampetia","(394) Arduina","(396) Aeolia","(397) Vienna","(40) Harmonia","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(404) Arsinoe","(405) Thia","(407) Arachne","(409) Aspasia","(41) Daphne","(410) Chloris","(412) Elisabetha","(416) Vaticana","(417) Suevia","(418) Alemannia","(419) Aurelia","(42) Isis","(420) Bertholda","(422) Berolina","(423) Diotima","(429) Lotis","(43) Ariadne","(431) Nephele","(432) Pythia","(433) Eros","(434) Hungaria","(435) Ella","(437) Rhodia","(439) Ohio","(44) Nysa","(441) Bathilde","(4432) McGraw-Hill","(444) Gyptis","(449) Hamburga","(45) Eugenia","(451) Patientia","(454) Mathesis","(458) Hercynia","(459) Signe","(46) Hestia","(462) Eriphyla","(464) Megaira","(4659) Roddenberry","(468) Lina","(47) Aglaja","(470) Kilia","(471) Papagena","(476) Hedwig","(478) Tergeste","(48) Doris","(482) Petrina","(483) Seppina","(484) Pittsburghia","(485) Genua","(487) Venetia","(488) Kreusa","(489) Comacina","(49) Pales","(4924) Hiltner","(495) Eulalia","(497) Iva","(498) Tokio","(5) Astraea","(50) Virginia","(501) Urhixidur","(502) Sigune","(504) Cora","(505) Cava","(5080) Oja","(51) Nemausa","(510) Mabella","(511) Davida","(512) Taurinensis","(513) Centesima","(514) Armida","(5145) Pholus","(516) Amherstia","(517) Edith","(519) Sylvania","(52) Europa","(520) Franziska","(521) Brixia","(528) Rezia","(529) Preziosa","(53) Kalypso","(532) Herculina","(534) Nassovia","(537) Pauly","(5370) Taranis","(539) Pamina","(54) Alexandra","(545) Messalina","(55) Pandora","(550) Senta","(554) Peraga","(556) Phyllis","(558) Carmen","(56) Melete","(560) Delila","(562) Salome","(563) Suleika","(566) Stereoskopia","(568) Cheruskia","(57) Mnemosyne","(5761) Andreivanov","(579) Sidonia","(5797) Bivoj","(58) Concordia","(584) Semiramis","(588) Achilles","(59) Elpis","(590) Tomyris","(591) Irmgard","(593) Titania","(594) Mireille","(599) Luisa","(6) Hebe","(60) Echo","(600) Musa","(602) Marianna","(606) Brangane","(61) Danae","(618) Elfriede","(619) Triberga","(62) Erato","(621) Werdandi","(622) Esther","(624) Hektor","(628) Christine","(63) Ausonia","(631) Philippina","(632) Pyrrha","(639) Latona","(64) Angelina","(641) Agnes","(644) Cosima","(645) Agrippina","(65) Cybele","(653) Berenike","(654) Zelinda","(657) Gunlod","(658) Asteria","(659) Nestor","(66) Maja","(660) Crescentia","(67) Asia","(674) Rachele","(675) Ludmilla","(677) Aaltje","(678) Fredegundis","(679) Pax","(68) Leto","(683) Lanzia","(684) Hildburg","(688) Melanie","(69) Hesperia","(690) Wratislavia","(692) Hippodamia","(694) Ekard","(695) Bella","(699) Hela","(7) Iris","(70) Panopaea","(700) Auravictrix","(702) Alauda","(704) Interamnia","(7041) Nantucket","(705) Erminia","(709) Fringilla","(71) Niobe","(712) Boliviana","(714) Ulula","(716) Berkeley","(72) Feronia","(720) Bohlinia","(721) Tabora","(726) Joella","(73) Klytia","(733) Mocia","(736) Harvard","(737) Arequipa","(739) Mandeville","(74) Galatea","(746) Marlu","(747) Winchester","(75) Eurydike","(751) Faina","(753) Tiflis","(7550) Woolum","(76) Freia","(766) Moguntia","(77) Frigga","(771) Libera","(775) Lumiere","(776) Berbericia","(778) Theobalda","(779) Nina","(78) Diana","(783) Nora","(785) Zwetana","(79) Eurynome","(790) Pretoria","(792) Metcalfia","(796) Sarita","(798) Ruth","(8) Flora","(80) Sappho","(800) Kressmannia","(8013) Gordonmoore","(804) Hispania","(807) Ceraskia","(81) Terpsichore","(811) Nauheima","(814) Tauris","(82) Alkmene","(83) Beatrix","(832) Karin","(838) Seraphina","(8395) Rembaut","(84) Klio","(841) Arabella","(846) Lipperta","(849) Ara","(85) Io","(850) Altona","(852) Wladilena","(853) Nansenia","(856) Backlunda","(8589) Stellaris","(86) Semele","(863) Benkoela","(87) Sylvia","(870) Manto","(873) Mechthild","(876) Scott","(877) Walkure","(88) Thisbe","(887) Alinda","(89) Julia","(9) Metis","(900) Rosalinde","(905) Universitas","(908) Buda","(91) Aegina","(911) Agamemnon","(914) Palisana","(916) America","(92) Undina","(925) Alphonsina","(93) Minerva","(939) Isberga","(94) Aurora","(940) Kordula","(944) Hidalgo","(945) Barcelona","(95) Arethusa","(951) Gaspra","(952) Caia","(96) Aegle","(97) Klotho","(974) Lioba","(98) Ianthe","(980) Anacostia","(984) Gretia","(987) Wallia","(99) Dike","(994) Otthild","(995) Sternberga","(10475) Maxpoilane","(11457) Hitomikobayashi","(129442) 1981 EC15","(12989) Chriseanderson","(14761) 6608 P-L","(16382) 1981 ER27","(17383) 1981 EE12","(20749) 2000 AD199","(23429) 1981 EO35","(29196) Dius","(30762) 1981 ES42","(32755) 1981 EP15","(37546) 1981 ET20","(3757) Anagolay","(5646) 1990 TR","(58119) 1981 EJ9","(6178) 1986 DA","(8252) Elkins-Tanton","(8253) Brunetto","(8794) Joepatterson","(8796) Sonnett","(9286) Patricktaylor","(9527) Sherrypervan","(9723) Binyang","(99980) 1981 ER18"],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Data"],"start_date":"1913-08-20","stop_date":"1992-03-22","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/collection_compil.ast.apc.lightcurves_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/collection_compil.ast.apc.lightcurves_data.xml","scraped_at":"2026-02-25T20:02:10.761564Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:compil.ast.apc.lightcurves:document::1.0","title":"Asteroid Photometric Catalog V1.0","description":"This collection contains the documents applicable to the Asteroid Photometric Catalog bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":[],"instruments":["Various Ground-Based Telescopes","Various Ground-Based Detectors"],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/collection_compil.ast.apc.lightcurves_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/collection_compil.ast.apc.lightcurves_document.xml","scraped_at":"2026-02-25T20:02:10.761574Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-mission:document-fc::1.0","title":"Framing Camera Document Collection","description":"This collection contains documents associated with Dawn Framing Camera instruments.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["Framing Camera 1","Framing Camera 2"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/collection-document-fc-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/collection-document-fc-1.0.xml","scraped_at":"2026-02-25T20:02:10.761580Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-mission:document-grand::1.0","title":"Gamma Ray and Neutron Detector (GRaND) Document Collection","description":"This collection contains documents associated with the Dawn GRaND instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["GAMMA-RAY AND NEUTRON DETECTOR"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/collection-document-grand-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/collection-document-grand-1.0.xml","scraped_at":"2026-02-25T20:02:10.761584Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-mission:document-mission::1.0","title":"Dawn Mission Document Collection","description":"This collection contains documents associated with the Dawn Mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["Framing Camera 1","Framing Camera 2","GRAVITY SCIENCE INSTRUMENT","GAMMA-RAY AND NEUTRON DETECTOR","VISIBLE AND INFRARED SPECTROMETER"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/collection-document-mission-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/collection-document-mission-1.0.xml","scraped_at":"2026-02-25T20:02:10.761589Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-mission:document-rss::1.0","title":"Gravity Science Document Collection","description":"This collection contains documents associated with the Dawn Gravity Science instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["Mars","4 Vesta","1 Ceres"],"instruments":["GRAVITY SCIENCE INSTRUMENT"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/collection-document-rss-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/collection-document-rss-1.0.xml","scraped_at":"2026-02-25T20:02:10.761593Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-mission:document-vir::1.0","title":"Dawn VIR Instrument Document Collection","description":"This collection contains documents associated with Dawn Visual and Infrared Imaging Spectrometer (VIR) instrument.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DAWN MISSION TO VESTA AND CERES"],"targets":["4 Vesta","1 Ceres"],"instruments":["VISIBLE AND INFRARED SPECTROMETER"],"instrument_hosts":["The Dawn Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/collection-document-vir-1.0.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/collection-document-vir-1.0.xml","scraped_at":"2026-02-25T20:02:10.761597Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-apc::1.0","title":"Dawn Radio Science Spacecraft Antenna Phase Center Time History Collection","description":"This collection contains one data product that provides the phase center time history of the spacecraft antenna during the Dawn encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":["RSS"],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2014-12-27","stop_date":"2018-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/collection_dawn-rss-raw-ceres_apc.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/collection_dawn-rss-raw-ceres_apc.xml","scraped_at":"2026-02-25T20:02:10.761602Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-ion::1.0","title":"Dawn Radio Science Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric calibration information for the Dawn spacecraft during its encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2015-01-01","stop_date":"2018-12-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/collection_dawn-rss-raw-ceres_ion.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/collection_dawn-rss-raw-ceres_ion.xml","scraped_at":"2026-02-25T20:02:10.761606Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-scm::1.0","title":"Dawn Radio Science Spacecraft Mass History Collection","description":"This collection contains one data product that provides the history of propellant usage and mass for the Dawn spacecraft through its encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":[],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2007-09-27","stop_date":"2018-10-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/collection_dawn-rss-raw-ceres_scm.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/collection_dawn-rss-raw-ceres_scm.xml","scraped_at":"2026-02-25T20:02:10.761612Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-sff::1.0","title":"Dawn Radio Science Small Forces File Collection","description":"This collection contains two data products that provide the cumulative delta-V effect on the spacecraft due to thruster firing, mass loss due to the expenditure of propellant, and cumulative on-times for each individual thruster during the Dawn encounter with 1 Ceres. The files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":[],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2014-09-15","stop_date":"2018-12-07","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/collection_dawn-rss-raw-ceres_sff.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/collection_dawn-rss-raw-ceres_sff.xml","scraped_at":"2026-02-25T20:02:10.761650Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-tro::1.0","title":"Dawn Radio Science Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric calibration information for the Dawn spacecraft through its encounter with 1 Ceres. Files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2015-01-01","stop_date":"2018-12-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/collection_dawn-rss-raw-ceres_tro.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/collection_dawn-rss-raw-ceres_tro.xml","scraped_at":"2026-02-25T20:02:10.761656Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:calib-wea::1.0","title":"Dawn Radio Science DSN Weather Data Collection","description":"This collection contains several data products that provide DSN weather calibration information for the Dawn spacecraft during its encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DSN Media Calibration"],"targets":["Earth"],"instruments":["DSN Media Instrumentation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2015-01-01","stop_date":"2018-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/collection_dawn-rss-raw-ceres_wea.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/collection_dawn-rss-raw-ceres_wea.xml","scraped_at":"2026-02-25T20:02:10.761660Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:context::1.0","title":"Dawn Radio Science Ceres Context Collection","description":"This collection contains context products for the Dawn Raw Radio Science Ceres bundle. All of the members of the collection are secondary members.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/collection_dawn-rss-raw-ceres_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/collection_dawn-rss-raw-ceres_context.xml","scraped_at":"2026-02-25T20:02:10.761663Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:data-odf::1.0","title":"Dawn Radio Science Orbit Data File (ODF) Product Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired during the Dawn mission. These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio Metric Data Conditioning Team for use in determining spacecraft trajectories, gravity fields affecting them, and radio propagation conditions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["1 Ceres"],"instruments":["RSS","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 35","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2015-01-02","stop_date":"2016-09-06","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/collection_dawn-rss-raw-ceres_odf.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/collection_dawn-rss-raw-ceres_odf.xml","scraped_at":"2026-02-25T20:02:10.761670Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:data-tnf::1.0","title":"Dawn Radio Science Tracking and Navigation (TNF) Data Products Collection","description":"This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired during the Dawn mission. Data were originally stored as chronological records in DSN format TRK-2-34; but they have been sorted according to data type (retaining chronological order within each data type) during migration from PDS3 to PDS4.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["1 Ceres"],"instruments":["RSS","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 35","DSN Antenna DSS 36","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2018-06-06","stop_date":"2018-11-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/collection_dawn-rss-raw-ceres_tnf.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/collection_dawn-rss-raw-ceres_tnf.xml","scraped_at":"2026-02-25T20:02:10.761676Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-ceres:document::1.0","title":"Dawn Ceres Radio Science Document Collection","description":"This collection contains the documents associated with the Dawn Radio Science (RS) Raw Data Archive (RDA) Ceres bundle. Except for minor differences in labels, this collection should be identical to the Dawn RS RDA Vesta document collection.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":[],"instruments":["RSS"],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/collection_document-cgrs.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/collection_document-cgrs.xml","scraped_at":"2026-02-25T20:02:10.761680Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectra:data::1.0","title":"Data collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","description":"Data collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/collection_galileo.ast-gaspra.nims.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/collection_galileo.ast-gaspra.nims.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761686Z","keywords":["NIMS spectra","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectra:document::1.0","title":"Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","description":"Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/collection_galileo.ast-gaspra.nims.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/collection_galileo.ast-gaspra.nims.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761691Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:browse::1.0","title":"Browse collection for Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","description":"Browse collection for Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/collection_galileo.ast-gaspra.nims.spectral-cube_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/collection_galileo.ast-gaspra.nims.spectral-cube_browse.xml","scraped_at":"2026-02-25T20:02:10.761694Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:data::1.0","title":"Data collection for the Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","description":"Data collection for the Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/collection_galileo.ast-gaspra.nims.spectral-cube_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/collection_galileo.ast-gaspra.nims.spectral-cube_data.xml","scraped_at":"2026-02-25T20:02:10.761699Z","keywords":["NIMS Spectral Cube","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:document::1.0","title":"Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","description":"Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/collection_galileo.ast-gaspra.nims.spectral-cube_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/collection_galileo.ast-gaspra.nims.spectral-cube_document.xml","scraped_at":"2026-02-25T20:02:10.761702Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images:data::1.0","title":"Data collection for Galileo SSI radiometrically calibrated image of 951 Gaspra V1.0","description":"Data collection for Galileo SSI radiometrically calibrated image of 951 Gaspra V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1991-10-29","stop_date":"1991-10-29","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/collection_galileo.ast-gaspra.ssi.cal-images_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/collection_galileo.ast-gaspra.ssi.cal-images_data.xml","scraped_at":"2026-02-25T20:02:10.761707Z","keywords":["calibrated spectra","951 Gaspra"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images:document::1.0","title":"Document collection for Galileo SSI Gaspra Radiometrically Calibrated Images V1.0","description":"Document collection forGalileo SSI Gaspra Radiometrically Calibrated Images V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["951 Gaspra"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/collection_galileo.ast-gaspra.ssi.cal-images_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/collection_galileo.ast-gaspra.ssi.cal-images_document.xml","scraped_at":"2026-02-25T20:02:10.761711Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectra:data::1.0","title":"Data collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","description":"Data collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida","(243) Ida I (Dactyl)"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/collection_galileo.ast-ida.nims.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/collection_galileo.ast-ida.nims.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761716Z","keywords":["NIMS spectra","241 Ida","Dactyl (243 Ida I)"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectra:document::1.0","title":"Document collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","description":"Document collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida","(243) Ida I (Dactyl)"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/collection_galileo.ast-ida.nims.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/collection_galileo.ast-ida.nims.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761719Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:browse::1.0","title":"Browse collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0","description":"Browse collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Browse"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/collection_galileo.ast-ida.nims.spectral-cubes_browse.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/collection_galileo.ast-ida.nims.spectral-cubes_browse.xml","scraped_at":"2026-02-25T20:02:10.761724Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:data::1.0","title":"Data collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0","description":"Data collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/collection_galileo.ast-ida.nims.spectral-cubes_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/collection_galileo.ast-ida.nims.spectral-cubes_data.xml","scraped_at":"2026-02-25T20:02:10.761727Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:document::1.0","title":"Document collection for Galileo NIMS Radiance Point Spectra of Ida V1.0","description":"Document collection for Galileo NIMS Radiance Point Spectra of Ida V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Near Infrared Mapping Spectrometer for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/collection_galileo.ast-ida.nims.spectral-cubes_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/collection_galileo.ast-ida.nims.spectral-cubes_document.xml","scraped_at":"2026-02-25T20:02:10.761731Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.ssi.cal-images:data::1.0","title":"Data collection for Galileo SSI radiometrically calibrated image of 243 Ida V1.0","description":"Data collection for Galileo SSI radiometrically calibrated image of 243 Ida V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Data"],"start_date":"1993-08-28","stop_date":"1993-08-28","browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/collection_galileo.ast-ida.ssi.cal-images_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/collection_galileo.ast-ida.ssi.cal-images_data.xml","scraped_at":"2026-02-25T20:02:10.761735Z","keywords":["calibrated spectra","243 Ida"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:galileo.ast-ida.ssi.cal-images:document::1.0","title":"Document collection for Galileo SSI Ida Radiometrically Calibrated Images V1.0","description":"Document collection forGalileo SSI Ida Radiometrically Calibrated Images V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Galileo"],"targets":["243 Ida"],"instruments":["Solid State Imaging System for GO"],"instrument_hosts":["GALILEO ORBITER"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/collection_galileo.ast-ida.ssi.cal-images_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/collection_galileo.ast-ida.ssi.cal-images_document.xml","scraped_at":"2026-02-25T20:02:10.761738Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-apc::1.0","title":"Dawn Radio Science Spacecraft Antenna Phase Center Time History Collection","description":"This collection contains one data product that provides the phase center time history of the spacecraft antenna during the Dawn encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":["RSS"],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2011-07-13","stop_date":"2012-08-26","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/collection_dawn-rss-raw-vesta_apc.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/collection_dawn-rss-raw-vesta_apc.xml","scraped_at":"2026-02-25T20:02:10.761742Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-ion::1.0","title":"Dawn Radio Science Ionospheric Calibration Data Collection","description":"This collection contains several data products that provide ionospheric calibration information for the Dawn spacecraft during its encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn","DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2011-07-01","stop_date":"2012-10-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/collection_dawn-rss-raw-vesta_ion.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/collection_dawn-rss-raw-vesta_ion.xml","scraped_at":"2026-02-25T20:02:10.761747Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-scm::1.0","title":"Dawn Radio Science Spacecraft Mass History Collection","description":"This collection contains one data product that provides the history of propellant usage and mass for the Dawn spacecraft through its encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":[],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2007-09-27","stop_date":"2012-08-03","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/collection_dawn-rss-raw-vesta_scm.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/collection_dawn-rss-raw-vesta_scm.xml","scraped_at":"2026-02-25T20:02:10.761750Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-sff::1.0","title":"Dawn Radio Science Small Forces File Collection","description":"This collection contains two data products that provide the cumulative delta-V effect on the spacecraft due to thruster firing, mass loss due to the expenditure of propellant, and cumulative on-times for each individual thruster during the Dawn encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["Dawn"],"instruments":[],"instrument_hosts":["Dawn"],"data_types":["Data"],"start_date":"2011-07-01","stop_date":"2012-08-02","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/collection_dawn-rss-raw-vesta_sff.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/collection_dawn-rss-raw-vesta_sff.xml","scraped_at":"2026-02-25T20:02:10.761754Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-tro::1.0","title":"Dawn Radio Science Tropospheric Calibration Data Collection","description":"This collection contains several data products that provide tropospheric calibration information for the Dawn spacecraft through its encounter with 4 Vesta. Files have been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DSN Media Calibration"],"targets":["Earth"],"instruments":["Global Positioning System"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2011-07-01","stop_date":"2012-10-01","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/collection_dawn-rss-raw-vesta_tro.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/collection_dawn-rss-raw-vesta_tro.xml","scraped_at":"2026-02-25T20:02:10.761758Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:calib-wea::1.0","title":"Dawn Radio Science DSN Weather Data Collection","description":"This collection contains several data products that provide DSN weather calibration information for the Dawn spacecraft during its encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["DSN Media Calibration"],"targets":["Earth"],"instruments":["DSN Media Instrumentation"],"instrument_hosts":[],"data_types":["Data"],"start_date":"2011-01-01","stop_date":"2012-12-31","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/collection_dawn-rss-raw-vesta_wea.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/collection_dawn-rss-raw-vesta_wea.xml","scraped_at":"2026-02-25T20:02:10.761762Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:context::1.0","title":"Dawn Radio Science Vesta Context Collection","description":"This collection contains context products for the Dawn Raw Radio Science Vesta bundle. All of the members of the collection are secondary members.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/collection_dawn-rss-raw-vesta_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/collection_dawn-rss-raw-vesta_context.xml","scraped_at":"2026-02-25T20:02:10.761765Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:data-odf::1.0","title":"Dawn Radio Science Orbit Data File (ODF) Product Collection","description":"This is the collection of Radio Science Orbit Data File (ODF) data products acquired during the Dawn mission. These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio Metric Data Conditioning Team for use in determining spacecraft trajectories, gravity fields affecting them, and radio propagation conditions.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":["4 Vesta"],"instruments":["RSS","DSN Instrumentation","DSN Antenna DSS 14","DSN Antenna DSS 15","DSN Antenna DSS 24","DSN Antenna DSS 25","DSN Antenna DSS 26","DSN Antenna DSS 34","DSN Antenna DSS 43","DSN Antenna DSS 45","DSN Antenna DSS 54","DSN Antenna DSS 55","DSN Antenna DSS 63","DSN Antenna DSS 65"],"instrument_hosts":["Dawn","NASA Deep Space Network"],"data_types":["Data"],"start_date":"2011-07-10","stop_date":"2012-09-05","browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/collection_dawn-rss-raw-vesta_odf.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/collection_dawn-rss-raw-vesta_odf.xml","scraped_at":"2026-02-25T20:02:10.761770Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:dawn-rss-raw-vesta:document::1.0","title":"Dawn Vesta Radio Science Document Collection","description":"This collection contains the documents associated with the Dawn Radio Science (RS) Raw Data Archive (RDA) Vesta bundle. Except for minor differences in labels, this collection should be identical to the Dawn RS RDA Ceres document collection.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Dawn"],"targets":[],"instruments":["RSS"],"instrument_hosts":[],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/collection_document-vgrs.xml","source_url":"https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/collection_document-vgrs.xml","scraped_at":"2026-02-25T20:02:10.761774Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.des.taxonomy:data::1.0","title":"DES_Asteroid_taxonomy V1.0","description":"Inventory of the data collection for the DES Asteroid Taxonomy Bundle V1.0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Asteroids"],"instruments":["Victor Blanco 4.0m Telescope","Dark Energy Camera (DECam)"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Data"],"start_date":"2013-08-31","stop_date":"2019-01-09","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/collection_gbo.ast.des.taxonomy_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/collection_gbo.ast.des.taxonomy_data.xml","scraped_at":"2026-02-25T20:02:10.761778Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.des.taxonomy:document::1.0","title":"DES_Asteroid_taxonomy V1.0","description":"We provide taxonomical information from Dark Energy Survey (DES) data for 16517 asteroids for which gri slope and i-z colors are available, taxonomical complex information for 58116 asteroids with DES colors g-r, g-i, and a list of 409 new possible V-type objects.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["Multiple Asteroids","Asteroids"],"instruments":["Victor Blanco 4.0m Telescope","Dark Energy Camera (DECam)"],"instrument_hosts":["Cerro Tololo Inter-American Observatory"],"data_types":["Document"],"start_date":"2013-08-31","stop_date":"2024-03-13","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/collection_gbo.ast.des.taxonomy_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/collection_gbo.ast.des.taxonomy_document.xml","scraped_at":"2026-02-25T20:02:10.761781Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021:data::1.0","title":"MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0","description":"This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["2020 RC","(415029) 2011 UL21","(65996) 1998 MX5","(3288) Seleucus","2018 MM8","(11405) 1999 CV3","(143404) 2003 BD44","(6569) Ondaatje","1996 AE2","2002 LY1","(5011) Ptah","2015 FS332","(5626) Melissabrucker","(7888) 1993 UC","(52762) 1998 MT24","(7358) Oze","(613512) 2006 SK134","2019 YH2","2016 NL15","(1627) Ivar","2011 WN15","(612098) 1999 RM45","(19356) 1997 GH3","(137126) 1999 CF9","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(137799) 1999 YB","(154302) 2002 UQ3","2008 QS11","(318411) 2005 AH14","(163348) 2002 NN4","(496816) 1989 UP","(380128) 1997 WB21","2007 XY9","(454177) 2013 GJ35","(142040) 2002 QE15","(438902) 2009 WF104","(11066) Sigurd","2016 LG","(455148) 1994 UG","(52768) 1998 OR2","(612484) 2002 TS67","(301964) 2000 EJ37","(53426) 1999 SL5","(217796) 2000 TO64","(186822) 2004 FE31","(413577) 2005 UL5","(523586) 1999 LK1","(380981) 2006 SU131","(4953) 1990 MU","(217807) 2000 XK44","(36017) 1999 ND43","(3691) Bede","(194386) 2001 VG5","(480004) 2014 KD91","(495102) 2011 UU106","2003 AF23","2018 WX1","(4179) Toutatis","2014 QK434","2015 OX78","(101955) Bennu","(162142) 1998 VR","(503871) 2000 SL","(7482) 1994 PC1","2014 AD17","(496817) 1989 VB","(411165) 2010 DF1","(457260) 2008 RY24","2015 BF92","2019 CH","2015 WH9","(153814) 2001 WN5","(363067) 2000 CO101","(144332) 2004 DV24","(2335) James","(163697) 2003 EF54","(200840) 2001 XN254","(141525) 2002 FV5","(528650) 2008 WX32","(155110) 2005 TB","(163081) 2002 AG29","(275611) 1999 XX262","2018 TT1","(162186) 1999 OP3","(3554) Amun","2002 AV","(2340) Hathor","(437844) 1999 MN","(85989) 1999 JD6","(488645) 2003 OV","(511684) 2015 BN509","(24445) 2000 PM8","(326290) Akhenaten","2017 BQ93","(67367) 2000 LY27","2011 UA","(21088) Chelyabinsk","(100926) 1998 MQ","(1011) Laodamia","2020 WU5","(6585) O'Keefe","(163373) 2002 PZ39","2018 QN1","(88188) 2000 XH44","(170502) 2003 WM7","(171819) 2001 FZ6","(137924) 2000 BD19","(363831) 2005 PY16","(143651) 2003 QO104","(1916) Boreas","(1508) Kemi","(65717) 1993 BX3","(357024) 1999 YR14","(3833) Calingasta","(2212) Hephaistos","(4688) 1980 WF","(236716) 2007 FV42","(612143) 2000 BO28","2015 NU13","2014 UR116","(161998) 1988 PA","(440212) 2004 OB","(1468) Zomba","2018 RC","(310442) 2000 CH59","(99907) 1989 VA","2015 OL35","(194126) 2001 SG276","2013 PY6","(68216) 2001 CV26","(5653) Camarillo","(138937) 2001 BK16","(398188) Agni","(453707) 2010 XY72","(13553) Masaakikoyama","(2063) Bacchus","(214869) 2007 PA8","(2449) Kenos","(10145) 1994 CK1","(5604) 1992 FE","(24475) 2000 VN2","(5587) 1990 SB","2016 ED85","2020 RO6","(457768) 2009 KN4","(413002) 1999 VG22","(96189) Pygmalion","2020 ME1","2015 BK509","(349063) 2006 XA","2020 RF","(3199) Nefertiti","(5261) Eureka","(468583) 2007 LS","2018 KE3","(244670) 2003 KN18","2016 CL136","2019 DN","(612813) 2004 RF84","(370307) 2002 RH52","(523631) 2009 SX1","(19127) Olegefremov","(162058) 1997 AE12","(88254) 2001 FM129","2020 TB12","(3402) Wisdom","(523817) 2009 TK","(144898) 2004 VD17","(159504) 2000 WO67","(4769) Castalia","(18736) 1998 NU","(154007) 2002 BY","(450648) 2006 UC63","(484795) 2009 DE47","2020 PM7","(11398) 1998 YP11","2019 BK","(189552) 2000 RL77","2016 LX48","(453778) 2011 JK","(699) Hela","2006 NL","(380359) 2002 TN30","(496818) 1993 RA","(137199) 1999 KX4","2011 WA","(250706) 2005 RR6","(265962) 2006 CG","(518735) 2009 JL1","(85990) 1999 JV6","2020 XU6","(226514) 2003 UX34","2017 MC4","(154347) 2002 XK4","(496005) 2007 XJ16","2017 CS","(6053) 1993 BW3","(3361) Orpheus","2017 YE5","(1951) Lick","(416186) 2002 TD60","(6386) Keithnoll","(99942) Apophis","(35107) 1991 VH","(414586) 2009 UV18","(137084) 1998 XS16","(18882) 1999 YN4","(329437) 2002 OA22","(433) Eros","(17182) 1999 VU","(1139) Atami","(36284) 2000 DM8","2014 YM9","(3988) Huma","2011 YS62","(242708) 2005 UK1","(380160) 2000 JO78","(505657) 2014 SR339","2019 FU","(465749) 2009 WO6","(141354) 2002 AJ29","(169675) 2002 JM97","2013 UX14","(159402) 1999 AP10","2015 RF36","(441987) 2010 NY65","(54690) 2001 EB","(480883) 2001 YE4","(4995) Griffin","(25916) 2001 CP44","(66063) 1998 RO1","(303174) 2004 FH11","(1981) Midas","(450649) 2006 UY64","(527715) 2007 YQ56","(137120) 1999 BJ8","(4183) Cuno","(1685) Toro","(471240) 2011 BT15","(153201) 2000 WO107","(154807) 2004 PP97","(138258) 2000 GD2","(162911) 2001 LL5","(90416) 2003 YK118","(25143) Itokawa","(2368) Beltrovata","(337866) 2001 WL15","(376864) 2001 TP103","(474179) 1999 VS6","(162082) 1998 HL1","(297300) 1998 SC15","(1865) Cerberus","2016 NV38","(5407) 1992 AX","2016 GU","(54789) 2001 MZ7","(4451) Grieve","(86450) 2000 CK33","(312473) 2008 SX245","(242211) 2003 QB90","(1198) Atlantis","2007 EC","(4341) Poseidon","(66146) 1998 TU3","(162004) 1991 VE","(1580) Betulia","2018 NB","(1204) Renzia","2016 AZ8","(458198) 2010 RT11","(21374) 1997 WS22","(388945) 2008 TZ3","(2102) Tantalus","(68950) 2002 QF15","(136874) 1998 FH74","(243025) 2006 UM216","(11500) Tomaiyowit","(385343) 2002 LV","2021 CG","(2078) Nanking","(5693) 1993 EA","2018 PP10","(354030) 2001 RB18","(24761) Ahau","(8014) 1990 MF","(7336) Saunders","2014 LW21","(132) Aethra","2016 XH1","(4197) Morpheus","2017 RL","(361123) 2006 GW2","(444584) 2006 UK","(382503) 2001 RE8","(66272) 1999 JW6","(53435) 1999 VM40","(162998) 2001 SK162","(3920) Aubignan","(7304) Namiki","2015 BC","2016 ES155","(283460) 2001 PD1","(152563) 1992 BF","(1566) Icarus","(17511) 1992 QN","(1862) Apollo","(3200) Phaethon","(141018) 2001 WC47","(25330) 1999 KV4","(265482) 2005 EE","(3671) Dionysus","(241662) 2000 KO44","(452389) 2002 NW16","(206378) 2003 RB","(138911) 2001 AE2","(138404) 2000 HA24","(389694) 2011 QD48","(85628) 1998 KV2","(887) Alinda","(139622) 2001 QQ142","(15817) Lucianotesi","(1310) Villigera","(452561) 2005 AB","(68359) 2001 OZ13","(531060) 2012 DJ61","(416151) 2002 RQ25","(399774) 2005 NB7","(53319) 1999 JM8","2016 UE101","(8567) 1996 HW1","(381677) 2009 BJ81","(612777) 2004 LU3","(416584) 2004 JB12","2017 DA36","(203217) 2001 FX9","(22771) 1999 CU3","(153842) 2001 XT30","(302830) 2003 FB","2017 MB1","2020 RJ3","(31345) 1998 PG","(7088) Ishtar","2020 DX","(86819) 2000 GK137","(99799) 2002 LJ3","(163899) 2003 SD220","(523811) 2008 TQ2","(6239) Minos","(20790) 2000 SE45","(495615) 2015 PQ291","(6411) Tamaga","(138524) 2000 OJ8","(719) Albert","(175189) 2005 EC224","(189040) 2000 MU1","2018 LQ2","(141053) 2001 XT1","(512) Taurinensis","(5131) 1990 BG","(489486) 2007 GS3","(294739) 2008 CM","(86039) 1999 NC43","2019 AN5","2020 TY1","(140158) 2001 SX169","2020 SY4","2015 TA25","(3103) Eger","(7889) 1994 LX","2018 BP","2016 PR8","(267494) 2002 JB9","(4486) Mithra","(190208) 2006 AQ","(5392) Parker","(451157) 2009 SQ104","(137108) 1999 AN10","(2059) Baboquivari","(482650) 2013 BK18","(365424) 2010 KX7","2015 XB379","2017 RR15","(163249) 2002 GT","(5817) Robertfrazer","(96590) 1998 XB","(338292) 2002 UA31","(98943) 2001 CC21","(163902) 2003 SW222","(333888) 1998 ST4","(5189) 1990 UQ","(63164) 2000 YU14","(141498) 2002 EZ16","2015 JJ2","(29075) 1950 DA","(65679) 1989 UQ","(5646) 1990 TR","(326777) 2003 SV222","(39572) 1993 DQ1","2015 DB","(35396) 1997 XF11","(152931) 2000 EA107","2005 GR33","(10115) 1992 SK","2015 JY1","(4954) Eric","(163696) 2003 EB50","(3102) Krok","(86212) 1999 TG21","(142464) 2002 TC9","(5879) Almeria","2018 JA","(66391) Moshup","(7341) 1991 VK","(450160) 2000 RM12","(414960) 2011 CS4","2008 SR1","(326291) 1998 HM3","(363599) 2004 FG11","(348400) 2005 JF21","(3908) Nyx","(88710) 2001 SL9","(470510) 2008 CJ116","(3552) Don Quixote","2020 PD1","2013 CW32","(6611) 1993 VW","(163000) 2001 SW169","(410778) 2009 FG19","(250577) 2005 AC","(175706) 1996 FG3","2018 QV1","2016 LV","(313276) 2002 AX1","(164202) 2004 EW","(5230) Asahina","(237805) 2002 CF26","(52760) 1998 ML14","(173664) 2001 JU2","(162173) Ryugu","2020 WL3","(102528) 1999 US3","(153591) 2001 SN263","(5660) 1974 MA","(443103) 2013 WT67","(162510) 2000 QW69","(483422) 2000 CE59","(162781) 2000 XL44","Multiple Asteroids","(422686) 2000 AC6","(512245) 2016 AU8","(66251) 1999 GJ2","(469737) 2005 NW44","2020 QW","(1640) Nemo","2015 SV2","2019 HC","(308635) 2005 YU55","(141670) 2002 JS100","(438955) 2010 LN14","(4558) Janesick","(194268) 2001 UY4","2017 AE5","(612199) 2000 WL63","(154244) 2002 KL6","(355256) 2007 KN4","(34613) 2000 UR13","(5143) Heracles","(612348) 2002 GZ8","(2099) Opik","(467963) 2012 JT17","(22753) 1998 WT","(87684) 2000 SY2","2016 YM","(405058) 2001 TX16","(154330) 2002 VX94","2017 BM123","2018 QU1","(437316) 2013 OS3","2014 UF206","(85709) 1998 SG36","(2062) Aten","2020 WM3","(1374) Isora","(154993) 2005 EA94","(90147) 2002 YK14","2007 RU17","(455322) 2002 NX18","(1036) Ganymed","(410777) 2009 FD","(448003) 2008 DE","2019 CD5","(68278) 2001 FC7","(1131) Porzia","(413038) 2001 MF1","(5786) Talos","(154276) 2002 SY50","(454100) 2013 BO73","(6455) 1992 HE","2020 PS","(9400) 1994 TW1","(13353) 1998 TU12","(297418) 2000 SP43","(143992) 2004 AF","(333889) 1998 SV4","2019 AP3","2005 WS3","(141593) 2002 HK12","(37336) 2001 RM","(475665) 2006 VY13","(85804) 1998 WQ5","(203015) 1999 YF3","(523667) 2012 TM139","(112221) 2002 KH4","2016 UU80","(250620) 2005 GE59","(1864) Daedalus","2015 DP155","2016 YK","(416591) 2004 LC2","(401857) 2000 PG3","(3674) Erbisbuhl","2012 SG32","(137170) 1999 HF1","(162687) 2000 UH1","(1565) Lemaitre","2020 SN","2004 QD3","(85818) 1998 XM4","(136923) 1998 JH2","(190166) 2005 UP156","2009 SV17","2015 AZ43","(326683) 2002 WP","(33342) 1998 WT24","(26760) 2001 KP41","(526238) 2005 YY36","(2074) Shoemaker","(329340) 2001 LM5","(3753) Cruithne","(438429) 2006 WN1","(385186) 1994 AW1","(471241) 2011 BX18","2011 WK15","(451397) 2011 EZ78","(5836) 1993 MF","(523788) 2015 FP118","2015 SY","(2064) Thomsen","(2061) Anza","2005 TF","(163364) 2002 OD20","2020 ST1","(108519) 2001 LF","(30825) 1990 TG1","(68347) 2001 KB67","2018 WD2","2018 XG5","(311554) 2006 BQ147","(253841) 2003 YG118","(481394) 2006 SF6","(3352) McAuliffe","(442243) 2011 MD11","2015 QT9","(155334) 2006 DZ169","2020 WK3","(32906) 1994 RH","(144411) 2004 EW9","2018 UQ1","(410088) 2007 EJ","(477885) 2011 JT9","(52340) 1992 SY","2014 RL12","2019 UC","(219071) 1997 US9","(485652) 2011 WO41","(498066) 2007 RM133","2015 SZ","(8037) 1993 HO1","(345705) 2006 VB14","(65690) 1991 DG","(153958) 2002 AM31","(136993) 1998 ST49","(154029) 2002 CY46","(14402) 1991 DB","2016 CO247","(302311) 2002 AA","2020 XH1","(106589) 2000 WN107","(285263) 1998 QE2","(481532) 2007 LE","2011 HP","(459872) 2014 EK24","2007 TQ24","(420302) 2011 XZ1","(525477) 2005 FC3","(89355) 2001 VS78","(220839) 2004 VA","(2329) Orthos","(422699) 2000 PD3","(68346) 2001 KZ66","2020 RB6","(1980) Tezcatlipoca","(145656) 4788 P-L","(96631) 1999 FP59","(506459) 2002 AL14","2003 YJ","(416071) 2002 NV","2010 GT7","2016 NA1","(3635) Kreutz","(8566) 1996 EN","(19764) 2000 NF5","(152978) 2000 GJ147","(388838) 2008 EZ5","(16834) 1997 WU22","(461501) 2003 FT3","(69230) Hermes","(10636) 1998 QK56","2020 SS4","(492143) 2013 OE","2011 CT4","2017 CR32","(89830) 2002 CE","(137062) 1998 WM","2019 GT3","(1620) Geographos","2018 EJ4","(1917) Cuyo","(1943) Anteros","(15745) Yuliya","(141052) 2001 XR1","(1866) Sisyphus","2017 VC","(3198) Wallonia","(500080) 2011 WV134","(7822) 1991 CS","(143624) 2003 HM16","2019 YP5","(137032) 1998 UO1","(16960) 1998 QS52","(4581) Asclepius","(3858) Dorchester","(3122) Florence","(6037) 1988 EG","(5863) Tara","(442037) 2010 PR66","(192563) 1998 WZ6","(446833) 2001 RB12","(465616) 2009 EC","(462959) 2011 DU","2019 SH6","2014 WG365","(174050) 2002 CC19","(138852) 2000 WN10","(4055) Magellan","(515767) 2015 JA2","(3255) Tholen","(411201) 2010 LJ14","2002 NY40","(17274) 2000 LC16","(433953) 1997 XR2","(159608) 2002 AC2","(5645) 1990 SP","(40329) 1999 ML","(12711) Tukmit","(2100) Ra-Shalom","(243147) 2007 TX18","(331471) 1984 QY1","(464798) 2004 JX20"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Data"],"start_date":"2000-09-04","stop_date":"2021-02-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/collection_gbo.ast.mithneos.spectra_2000-2021_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/collection_gbo.ast.mithneos.spectra_2000-2021_data.xml","scraped_at":"2026-02-25T20:02:10.761823Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021:document::1.0","title":"MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0","description":"This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["2020 RC","(415029) 2011 UL21","(65996) 1998 MX5","(3288) Seleucus","2018 MM8","(11405) 1999 CV3","(143404) 2003 BD44","(6569) Ondaatje","1996 AE2","2002 LY1","(5011) Ptah","2015 FS332","(5626) Melissabrucker","(7888) 1993 UC","(52762) 1998 MT24","(7358) Oze","(613512) 2006 SK134","2019 YH2","2016 NL15","(1627) Ivar","2011 WN15","(612098) 1999 RM45","(19356) 1997 GH3","(137126) 1999 CF9","107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]","(137799) 1999 YB","(154302) 2002 UQ3","2008 QS11","(318411) 2005 AH14","(163348) 2002 NN4","(496816) 1989 UP","(380128) 1997 WB21","2007 XY9","(454177) 2013 GJ35","(142040) 2002 QE15","(438902) 2009 WF104","(11066) Sigurd","2016 LG","(455148) 1994 UG","(52768) 1998 OR2","(612484) 2002 TS67","(301964) 2000 EJ37","(53426) 1999 SL5","(217796) 2000 TO64","(186822) 2004 FE31","(413577) 2005 UL5","(523586) 1999 LK1","(380981) 2006 SU131","(4953) 1990 MU","(217807) 2000 XK44","(36017) 1999 ND43","(3691) Bede","(194386) 2001 VG5","(480004) 2014 KD91","(495102) 2011 UU106","2003 AF23","2018 WX1","(4179) Toutatis","2014 QK434","2015 OX78","(101955) Bennu","(162142) 1998 VR","(503871) 2000 SL","(7482) 1994 PC1","2014 AD17","(496817) 1989 VB","(411165) 2010 DF1","(457260) 2008 RY24","2015 BF92","2019 CH","2015 WH9","(153814) 2001 WN5","(363067) 2000 CO101","(144332) 2004 DV24","(2335) James","(163697) 2003 EF54","(200840) 2001 XN254","(141525) 2002 FV5","(528650) 2008 WX32","(155110) 2005 TB","(163081) 2002 AG29","(275611) 1999 XX262","2018 TT1","(162186) 1999 OP3","(3554) Amun","2002 AV","(2340) Hathor","(437844) 1999 MN","(85989) 1999 JD6","(488645) 2003 OV","(511684) 2015 BN509","(24445) 2000 PM8","(326290) Akhenaten","2017 BQ93","(67367) 2000 LY27","2011 UA","(21088) Chelyabinsk","(100926) 1998 MQ","(1011) Laodamia","2020 WU5","(6585) O'Keefe","(163373) 2002 PZ39","2018 QN1","(88188) 2000 XH44","(170502) 2003 WM7","(171819) 2001 FZ6","(137924) 2000 BD19","(363831) 2005 PY16","(143651) 2003 QO104","(1916) Boreas","(1508) Kemi","(65717) 1993 BX3","(357024) 1999 YR14","(3833) Calingasta","(2212) Hephaistos","(4688) 1980 WF","(236716) 2007 FV42","(612143) 2000 BO28","2015 NU13","2014 UR116","(161998) 1988 PA","(440212) 2004 OB","(1468) Zomba","2018 RC","(310442) 2000 CH59","(99907) 1989 VA","2015 OL35","(194126) 2001 SG276","2013 PY6","(68216) 2001 CV26","(5653) Camarillo","(138937) 2001 BK16","(398188) Agni","(453707) 2010 XY72","(13553) Masaakikoyama","(2063) Bacchus","(214869) 2007 PA8","(2449) Kenos","(10145) 1994 CK1","(5604) 1992 FE","(24475) 2000 VN2","(5587) 1990 SB","2016 ED85","2020 RO6","(457768) 2009 KN4","(413002) 1999 VG22","(96189) Pygmalion","2020 ME1","2015 BK509","(349063) 2006 XA","2020 RF","(3199) Nefertiti","(5261) Eureka","(468583) 2007 LS","2018 KE3","(244670) 2003 KN18","2016 CL136","2019 DN","(612813) 2004 RF84","(370307) 2002 RH52","(523631) 2009 SX1","(19127) Olegefremov","(162058) 1997 AE12","(88254) 2001 FM129","2020 TB12","(3402) Wisdom","(523817) 2009 TK","(144898) 2004 VD17","(159504) 2000 WO67","(4769) Castalia","(18736) 1998 NU","(154007) 2002 BY","(450648) 2006 UC63","(484795) 2009 DE47","2020 PM7","(11398) 1998 YP11","2019 BK","(189552) 2000 RL77","2016 LX48","(453778) 2011 JK","(699) Hela","2006 NL","(380359) 2002 TN30","(496818) 1993 RA","(137199) 1999 KX4","2011 WA","(250706) 2005 RR6","(265962) 2006 CG","(518735) 2009 JL1","(85990) 1999 JV6","2020 XU6","(226514) 2003 UX34","2017 MC4","(154347) 2002 XK4","(496005) 2007 XJ16","2017 CS","(6053) 1993 BW3","(3361) Orpheus","2017 YE5","(1951) Lick","(416186) 2002 TD60","(6386) Keithnoll","(99942) Apophis","(35107) 1991 VH","(414586) 2009 UV18","(137084) 1998 XS16","(18882) 1999 YN4","(329437) 2002 OA22","(433) Eros","(17182) 1999 VU","(1139) Atami","(36284) 2000 DM8","2014 YM9","(3988) Huma","2011 YS62","(242708) 2005 UK1","(380160) 2000 JO78","(505657) 2014 SR339","2019 FU","(465749) 2009 WO6","(141354) 2002 AJ29","(169675) 2002 JM97","2013 UX14","(159402) 1999 AP10","2015 RF36","(441987) 2010 NY65","(54690) 2001 EB","(480883) 2001 YE4","(4995) Griffin","(25916) 2001 CP44","(66063) 1998 RO1","(303174) 2004 FH11","(1981) Midas","(450649) 2006 UY64","(527715) 2007 YQ56","(137120) 1999 BJ8","(4183) Cuno","(1685) Toro","(471240) 2011 BT15","(153201) 2000 WO107","(154807) 2004 PP97","(138258) 2000 GD2","(162911) 2001 LL5","(90416) 2003 YK118","(25143) Itokawa","(2368) Beltrovata","(337866) 2001 WL15","(376864) 2001 TP103","(474179) 1999 VS6","(162082) 1998 HL1","(297300) 1998 SC15","(1865) Cerberus","2016 NV38","(5407) 1992 AX","2016 GU","(54789) 2001 MZ7","(4451) Grieve","(86450) 2000 CK33","(312473) 2008 SX245","(242211) 2003 QB90","(1198) Atlantis","2007 EC","(4341) Poseidon","(66146) 1998 TU3","(162004) 1991 VE","(1580) Betulia","2018 NB","(1204) Renzia","2016 AZ8","(458198) 2010 RT11","(21374) 1997 WS22","(388945) 2008 TZ3","(2102) Tantalus","(68950) 2002 QF15","(136874) 1998 FH74","(243025) 2006 UM216","(11500) Tomaiyowit","(385343) 2002 LV","2021 CG","(2078) Nanking","(5693) 1993 EA","2018 PP10","(354030) 2001 RB18","(24761) Ahau","(8014) 1990 MF","(7336) Saunders","2014 LW21","(132) Aethra","2016 XH1","(4197) Morpheus","2017 RL","(361123) 2006 GW2","(444584) 2006 UK","(382503) 2001 RE8","(66272) 1999 JW6","(53435) 1999 VM40","(162998) 2001 SK162","(3920) Aubignan","(7304) Namiki","2015 BC","2016 ES155","(283460) 2001 PD1","(152563) 1992 BF","(1566) Icarus","(17511) 1992 QN","(1862) Apollo","(3200) Phaethon","(141018) 2001 WC47","(25330) 1999 KV4","(265482) 2005 EE","(3671) Dionysus","(241662) 2000 KO44","(452389) 2002 NW16","(206378) 2003 RB","(138911) 2001 AE2","(138404) 2000 HA24","(389694) 2011 QD48","(85628) 1998 KV2","(887) Alinda","(139622) 2001 QQ142","(15817) Lucianotesi","(1310) Villigera","(452561) 2005 AB","(68359) 2001 OZ13","(531060) 2012 DJ61","(416151) 2002 RQ25","(399774) 2005 NB7","(53319) 1999 JM8","2016 UE101","(8567) 1996 HW1","(381677) 2009 BJ81","(612777) 2004 LU3","(416584) 2004 JB12","2017 DA36","(203217) 2001 FX9","(22771) 1999 CU3","(153842) 2001 XT30","(302830) 2003 FB","2017 MB1","2020 RJ3","(31345) 1998 PG","(7088) Ishtar","2020 DX","(86819) 2000 GK137","(99799) 2002 LJ3","(163899) 2003 SD220","(523811) 2008 TQ2","(6239) Minos","(20790) 2000 SE45","(495615) 2015 PQ291","(6411) Tamaga","(138524) 2000 OJ8","(719) Albert","(175189) 2005 EC224","(189040) 2000 MU1","2018 LQ2","(141053) 2001 XT1","(512) Taurinensis","(5131) 1990 BG","(489486) 2007 GS3","(294739) 2008 CM","(86039) 1999 NC43","2019 AN5","2020 TY1","(140158) 2001 SX169","2020 SY4","2015 TA25","(3103) Eger","(7889) 1994 LX","2018 BP","2016 PR8","(267494) 2002 JB9","(4486) Mithra","(190208) 2006 AQ","(5392) Parker","(451157) 2009 SQ104","(137108) 1999 AN10","(2059) Baboquivari","(482650) 2013 BK18","(365424) 2010 KX7","2015 XB379","2017 RR15","(163249) 2002 GT","(5817) Robertfrazer","(96590) 1998 XB","(338292) 2002 UA31","(98943) 2001 CC21","(163902) 2003 SW222","(333888) 1998 ST4","(5189) 1990 UQ","(63164) 2000 YU14","(141498) 2002 EZ16","2015 JJ2","(29075) 1950 DA","(65679) 1989 UQ","(5646) 1990 TR","(326777) 2003 SV222","(39572) 1993 DQ1","2015 DB","(35396) 1997 XF11","(152931) 2000 EA107","2005 GR33","(10115) 1992 SK","2015 JY1","(4954) Eric","(163696) 2003 EB50","(3102) Krok","(86212) 1999 TG21","(142464) 2002 TC9","(5879) Almeria","2018 JA","(66391) Moshup","(7341) 1991 VK","(450160) 2000 RM12","(414960) 2011 CS4","2008 SR1","(326291) 1998 HM3","(363599) 2004 FG11","(348400) 2005 JF21","(3908) Nyx","(88710) 2001 SL9","(470510) 2008 CJ116","(3552) Don Quixote","2020 PD1","2013 CW32","(6611) 1993 VW","(163000) 2001 SW169","(410778) 2009 FG19","(250577) 2005 AC","(175706) 1996 FG3","2018 QV1","2016 LV","(313276) 2002 AX1","(164202) 2004 EW","(5230) Asahina","(237805) 2002 CF26","(52760) 1998 ML14","(173664) 2001 JU2","(162173) Ryugu","2020 WL3","(102528) 1999 US3","(153591) 2001 SN263","(5660) 1974 MA","(443103) 2013 WT67","(162510) 2000 QW69","(483422) 2000 CE59","(162781) 2000 XL44","Multiple Asteroids","(422686) 2000 AC6","(512245) 2016 AU8","(66251) 1999 GJ2","(469737) 2005 NW44","2020 QW","(1640) Nemo","2015 SV2","2019 HC","(308635) 2005 YU55","(141670) 2002 JS100","(438955) 2010 LN14","(4558) Janesick","(194268) 2001 UY4","2017 AE5","(612199) 2000 WL63","(154244) 2002 KL6","(355256) 2007 KN4","(34613) 2000 UR13","(5143) Heracles","(612348) 2002 GZ8","(2099) Opik","(467963) 2012 JT17","(22753) 1998 WT","(87684) 2000 SY2","2016 YM","(405058) 2001 TX16","(154330) 2002 VX94","2017 BM123","2018 QU1","(437316) 2013 OS3","2014 UF206","(85709) 1998 SG36","(2062) Aten","2020 WM3","(1374) Isora","(154993) 2005 EA94","(90147) 2002 YK14","2007 RU17","(455322) 2002 NX18","(1036) Ganymed","(410777) 2009 FD","(448003) 2008 DE","2019 CD5","(68278) 2001 FC7","(1131) Porzia","(413038) 2001 MF1","(5786) Talos","(154276) 2002 SY50","(454100) 2013 BO73","(6455) 1992 HE","2020 PS","(9400) 1994 TW1","(13353) 1998 TU12","(297418) 2000 SP43","(143992) 2004 AF","(333889) 1998 SV4","2019 AP3","2005 WS3","(141593) 2002 HK12","(37336) 2001 RM","(475665) 2006 VY13","(85804) 1998 WQ5","(203015) 1999 YF3","(523667) 2012 TM139","(112221) 2002 KH4","2016 UU80","(250620) 2005 GE59","(1864) Daedalus","2015 DP155","2016 YK","(416591) 2004 LC2","(401857) 2000 PG3","(3674) Erbisbuhl","2012 SG32","(137170) 1999 HF1","(162687) 2000 UH1","(1565) Lemaitre","2020 SN","2004 QD3","(85818) 1998 XM4","(136923) 1998 JH2","(190166) 2005 UP156","2009 SV17","2015 AZ43","(326683) 2002 WP","(33342) 1998 WT24","(26760) 2001 KP41","(526238) 2005 YY36","(2074) Shoemaker","(329340) 2001 LM5","(3753) Cruithne","(438429) 2006 WN1","(385186) 1994 AW1","(471241) 2011 BX18","2011 WK15","(451397) 2011 EZ78","(5836) 1993 MF","(523788) 2015 FP118","2015 SY","(2064) Thomsen","(2061) Anza","2005 TF","(163364) 2002 OD20","2020 ST1","(108519) 2001 LF","(30825) 1990 TG1","(68347) 2001 KB67","2018 WD2","2018 XG5","(311554) 2006 BQ147","(253841) 2003 YG118","(481394) 2006 SF6","(3352) McAuliffe","(442243) 2011 MD11","2015 QT9","(155334) 2006 DZ169","2020 WK3","(32906) 1994 RH","(144411) 2004 EW9","2018 UQ1","(410088) 2007 EJ","(477885) 2011 JT9","(52340) 1992 SY","2014 RL12","2019 UC","(219071) 1997 US9","(485652) 2011 WO41","(498066) 2007 RM133","2015 SZ","(8037) 1993 HO1","(345705) 2006 VB14","(65690) 1991 DG","(153958) 2002 AM31","(136993) 1998 ST49","(154029) 2002 CY46","(14402) 1991 DB","2016 CO247","(302311) 2002 AA","2020 XH1","(106589) 2000 WN107","(285263) 1998 QE2","(481532) 2007 LE","2011 HP","(459872) 2014 EK24","2007 TQ24","(420302) 2011 XZ1","(525477) 2005 FC3","(89355) 2001 VS78","(220839) 2004 VA","(2329) Orthos","(422699) 2000 PD3","(68346) 2001 KZ66","2020 RB6","(1980) Tezcatlipoca","(145656) 4788 P-L","(96631) 1999 FP59","(506459) 2002 AL14","2003 YJ","(416071) 2002 NV","2010 GT7","2016 NA1","(3635) Kreutz","(8566) 1996 EN","(19764) 2000 NF5","(152978) 2000 GJ147","(388838) 2008 EZ5","(16834) 1997 WU22","(461501) 2003 FT3","(69230) Hermes","(10636) 1998 QK56","2020 SS4","(492143) 2013 OE","2011 CT4","2017 CR32","(89830) 2002 CE","(137062) 1998 WM","2019 GT3","(1620) Geographos","2018 EJ4","(1917) Cuyo","(1943) Anteros","(15745) Yuliya","(141052) 2001 XR1","(1866) Sisyphus","2017 VC","(3198) Wallonia","(500080) 2011 WV134","(7822) 1991 CS","(143624) 2003 HM16","2019 YP5","(137032) 1998 UO1","(16960) 1998 QS52","(4581) Asclepius","(3858) Dorchester","(3122) Florence","(6037) 1988 EG","(5863) Tara","(442037) 2010 PR66","(192563) 1998 WZ6","(446833) 2001 RB12","(465616) 2009 EC","(462959) 2011 DU","2019 SH6","2014 WG365","(174050) 2002 CC19","(138852) 2000 WN10","(4055) Magellan","(515767) 2015 JA2","(3255) Tholen","(411201) 2010 LJ14","2002 NY40","(17274) 2000 LC16","(433953) 1997 XR2","(159608) 2002 AC2","(5645) 1990 SP","(40329) 1999 ML","(12711) Tukmit","(2100) Ra-Shalom","(243147) 2007 TX18","(331471) 1984 QY1","(464798) 2004 JX20"],"instruments":["IRTF 3.2m","SpeX"],"instrument_hosts":["Infra Red Telescope Facility-Maunakea"],"data_types":["Document"],"start_date":"2000-09-04","stop_date":"2021-02-08","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/collection_gbo.ast.mithneos.spectra_2000-2021_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/collection_gbo.ast.mithneos.spectra_2000-2021_document.xml","scraped_at":"2026-02-25T20:02:10.761866Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.sawyer.spectra:data::1.0","title":"Sawyer Asteroid Spectra V1.0","description":"This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(107) Camilla","(34) Circe","(230) Athamantis","(419) Aurelia","(704) Interamnia","(410) Chloris","(130) Elektra","(91) Aegina","(203) Pompeja","(85) Io","(476) Hedwig","(5) Astraea","(72) Feronia","(65) Cybele","(87) Sylvia","(45) Eugenia","(27) Euterpe","(1268) Libya","(14) Irene","(173) Ino","(57) Mnemosyne","(532) Herculina","(51) Nemausa","Multiple Asteroids","(64) Angelina","(386) Siegena","(41) Daphne","(712) Boliviana","(111) Ate","(171) Ophelia","(1167) Dubiago","(702) Alauda","(52) Europa","Solar Analog Stars","(148) Gallia","(434) Hungaria","(19) Fortuna","(2) Pallas","(804) Hispania","(63) Ausonia","(329) Svea","(1172) Aneas","(128) Nemesis","(30) Urania","(70) Panopaea","(54) Alexandra","(10) Hygiea","(127) Johanna","(387) Aquitania","(190) Ismene","(212) Medea","(194) Prokne","(13) Egeria","(511) Davida","(48) Doris","(137) Meliboea","(241) Germania","(95) Arethusa","(98) Ianthe","(537) Pauly","(405) Thia","(9) Metis","(602) Marianna","(93) Minerva","(409) Aspasia","(617) Patroclus","(44) Nysa","(20) Massalia","(431) Nephele","(505) Cava"],"instruments":["2.7m Telescope","Large Cassegrain Spectrometer","2.1-m Struve Warner & Swasey reflector","Cassegrain Spectrometer","Literature search"],"instrument_hosts":["McDonald Observatory","McDonald Observatory"],"data_types":["Data"],"start_date":"1983-09-15","stop_date":"1990-07-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/collection_gbo.ast.sawyer.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/collection_gbo.ast.sawyer.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761884Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast.sawyer.spectra:document::1.0","title":"Sawyer Asteroid Spectra V1.0","description":"This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["None"],"targets":["(107) Camilla","(34) Circe","(230) Athamantis","(419) Aurelia","(704) Interamnia","(410) Chloris","(130) Elektra","(91) Aegina","(203) Pompeja","(85) Io","(476) Hedwig","(5) Astraea","(72) Feronia","(65) Cybele","(87) Sylvia","(45) Eugenia","(27) Euterpe","(1268) Libya","(14) Irene","(173) Ino","(57) Mnemosyne","(532) Herculina","(51) Nemausa","Multiple Asteroids","(64) Angelina","(386) Siegena","(41) Daphne","(712) Boliviana","(111) Ate","(171) Ophelia","(1167) Dubiago","(702) Alauda","(52) Europa","Solar Analog Stars","(148) Gallia","(434) Hungaria","(19) Fortuna","(2) Pallas","(804) Hispania","(63) Ausonia","(329) Svea","(1172) Aneas","(128) Nemesis","(30) Urania","(70) Panopaea","(54) Alexandra","(10) Hygiea","(127) Johanna","(387) Aquitania","(190) Ismene","(212) Medea","(194) Prokne","(13) Egeria","(511) Davida","(48) Doris","(137) Meliboea","(241) Germania","(95) Arethusa","(98) Ianthe","(537) Pauly","(405) Thia","(9) Metis","(602) Marianna","(93) Minerva","(409) Aspasia","(617) Patroclus","(44) Nysa","(20) Massalia","(431) Nephele","(505) Cava"],"instruments":["2.7m Telescope","Large Cassegrain Spectrometer","2.1-m Struve Warner & Swasey reflector","Cassegrain Spectrometer","Literature search"],"instrument_hosts":["McDonald Observatory","McDonald Observatory"],"data_types":["Document"],"start_date":"1983-09-15","stop_date":"1990-07-14","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/collection_gbo.ast.sawyer.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/collection_gbo.ast.sawyer.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761895Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hst.ast-ceres.images-albedo-shape:data::1.0","title":"HST images, albedo maps, and shape of (1) Ceres V1.0","description":"This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST"],"targets":["(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Data"],"start_date":"2003-12-28","stop_date":"2004-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/collection_hst.ast-ceres.images-albedo-shape_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/collection_hst.ast-ceres.images-albedo-shape_data.xml","scraped_at":"2026-02-25T20:02:10.761900Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hst.ast-ceres.images-albedo-shape:document::1.0","title":"HST images, albedo maps, and shape of (1) Ceres V1.0","description":"This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST"],"targets":["(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Document"],"start_date":"2003-12-28","stop_date":"2004-01-24","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/collection_hst.ast-ceres.images-albedo-shape_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/collection_hst.ast-ceres.images-albedo-shape_document.xml","scraped_at":"2026-02-25T20:02:10.761903Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hst.ast-ceres.uv-spectra:data::1.0","title":"HST UV Slitless Reflectance Spectra of (1) Ceres V1.0","description":"This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST"],"targets":["(1) Ceres","(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Data"],"start_date":"2007-11-25","stop_date":"2007-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/collection_hst.ast-ceres.uv-spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/collection_hst.ast-ceres.uv-spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761907Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hst.ast-ceres.uv-spectra:document::1.0","title":"HST UV Slitless Reflectance Spectra of (1) Ceres V1.0","description":"This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HST"],"targets":["(1) Ceres","(1) Ceres"],"instruments":["Advance Camera For Surveys"],"instrument_hosts":["Hubble Space Telescope"],"data_types":["Document"],"start_date":"2007-11-25","stop_date":"2007-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/collection_hst.ast-ceres.uv-spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/collection_hst.ast-ceres.uv-spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761911Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.amica:calibration::1.0","title":"Hayabusa AMICA Calibration Collection","description":"This is the calibration collection for the hay.amica bundle. The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encount. This data set includes two types of calibration data. The ecas_ground_cal directory contains the ground based calibration of stars observed by the Hayabusa AMICA instrument during the cruise phase of the mission. The preflight directory contains preflight flat field data. The filters directory contains the filter profiles","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["x Filter","zs Filter","p Filter","Calibration Target","b Filter","v Filter","w Filter","ul Filter","Flat Field"],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","SBIG ST-9E","Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"],"instrument_hosts":["HAYABUSA","Goodricke-Pigott Observatory"],"data_types":["Calibration"],"start_date":"2003-03-18","stop_date":"2005-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/collection_hay.amica_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/collection_hay.amica_calibration.xml","scraped_at":"2026-02-25T20:02:10.761918Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.amica:data_raw::1.0","title":"Hayabusa AMICA Data Raw Collection","description":"This is the data_raw collection for the hay.amica bundle. The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["* tau Sco","Mars","Earth I (Moon)","Earth","* 31 Leo","* bet Tau","* alf Sco","* alf Ori","* alf Leo","Saturn","Calibration Lamp","(25143) Itokawa","* alf Aur","* alf Crv","* alf Vir","Sky"],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","SBIG ST-9E","Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"],"instrument_hosts":["HAYABUSA","Goodricke-Pigott Observatory"],"data_types":["Data"],"start_date":"2003-03-18","stop_date":"2005-11-19","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/collection_hay.amica_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/collection_hay.amica_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761924Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.amica:document::1.0","title":"Hayabusa AMICA Document Collection","description":"This is the document collection for the Hayabusa AMICA instrument data.The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/collection_hay.amica_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/collection_hay.amica_document.xml","scraped_at":"2026-02-25T20:02:10.761927Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.lidar:data_calibrated::1.0","title":"data_calibrated collection for the \"HAYABUSA LIDAR\" bundle","description":"This is the data_calibrated collection for the hay.lidar bundle. The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["LIGHT DETECTION AND RANGING INSTRUMENT"],"instrument_hosts":["HAYABUSA"],"data_types":["Data"],"start_date":"2005-09-11","stop_date":"2005-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/collection_hay.lidar_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/collection_hay.lidar_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.761932Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.lidar:data_raw::1.0","title":"data_raw collection for the \"HAYABUSA LIDAR\" bundle","description":"This is the data_raw collection for the hay.lidar bundle. The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":["(25143) Itokawa"],"instruments":["LIGHT DETECTION AND RANGING INSTRUMENT"],"instrument_hosts":["HAYABUSA"],"data_types":["Data"],"start_date":"2005-09-11","stop_date":"2005-11-25","browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/collection_hay.lidar_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/collection_hay.lidar_data_raw.xml","scraped_at":"2026-02-25T20:02:10.761936Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.lidar:document::1.0","title":"Document collection for the \"HAYABUSA LIDAR\" bundle","description":"This is the document collection for the hayabusa LIDAR instrument dataset. The HAYABUSA spacecraft included a Light Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/collection_hay.lidar_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/collection_hay.lidar_document.xml","scraped_at":"2026-02-25T20:02:10.761939Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.mission:context::1.0","title":"Hayabusa: Context","description":"This collection contains the context prodcuts applicable to the Hayabusa mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":[],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","LIGHT DETECTION AND RANGING INSTRUMENT","NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.761943Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.mission:document::1.0","title":"The document collection for the Hayabusa mission bundle","description":"This collection contains the documents pertaining to the PDS Hayabusa mission archive as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/collection_hay.mission_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/collection_hay.mission_document.xml","scraped_at":"2026-02-25T20:02:10.761947Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:hay.mission:xml_schema::1.0","title":"Hayabusa: XML_Schema","description":"This collection contains the xml_schema prodcuts applicable to the Hayabusa mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["HAYABUSA"],"targets":[],"instruments":["ASTEROID MULTI-BAND IMAGING CAMERA","LIGHT DETECTION AND RANGING INSTRUMENT","NEAR-INFRARED SPECTROMETER"],"instrument_hosts":["HAYABUSA"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.761954Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iras:data_9p_images::1.0","title":"IRAS Images of 9P/Tempel 1","description":"This data set contains radiance and noise maps based on reprocessed images of comet 9P/Tempel 1 acquired by IRAS during months before and after its perihelion on July 9, 1983.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["9P/TEMPEL 1"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-06-18","stop_date":"1983-10-08","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/collection_iras_data_9p_images.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/collection_iras_data_9p_images.xml","scraped_at":"2026-02-25T20:02:10.761958Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iras:data_9p_photometry::1.0","title":"IRAS Photometry of 9P/Tempel 1","description":"This data set contains 12-, 25-, 60-, and 100-micron photometry of the dust coma of comet 9P/Tempel 1 during its 1983 apparition. The photometry was derived from reconstructed observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["9P/TEMPEL 1"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-06-18","stop_date":"1983-10-08","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/collection_iras_data_9p_photometry.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/collection_iras_data_9p_photometry.xml","scraped_at":"2026-02-25T20:02:10.761962Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iras:data_simps::1.0","title":"IRAS Minor Planet Survey (SIMPS) data collection","description":"The Supplemental IRAS Minor Planet Survey (SIMPS) provides diameters and albedos for asteroids detected by the 1983 IRAS mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["Multiple Asteroids"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-02-09","stop_date":"1983-11-18","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/collection_iras_data_simps.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/collection_iras_data_simps.xml","scraped_at":"2026-02-25T20:02:10.761965Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iras:data_zodiacal::1.0","title":"The IRAS Zodiacal Data Collection","description":"The IRAS Zodiacal collection contains the data stream output of the Infrared Astronomical Satellite (IRAS) as organized in the Low and Medium-Resolution Zodiacal History Files.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["DUST"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-02-08","stop_date":"1983-11-21","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/collection_iras_data_zodiacal.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/collection_iras_data_zodiacal.xml","scraped_at":"2026-02-25T20:02:10.761969Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iras:document::1.0","title":"The IRAS Document Collection","description":"The document collection for the IRAS bundle.","node":"sbn","pds_version":"PDS4","type":"collection","missions":[],"targets":[],"instruments":[],"instrument_hosts":[],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/document/collection_iras_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/document/collection_iras_document.xml","scraped_at":"2026-02-25T20:02:10.761972Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iras:miscellaneous::1.0","title":"The IRAS Miscellaneous Collection","description":"The IRAS miscellaneous data collection contains the filter curves and detector parameters for the FPA instrument, the template for 4 data sets containing the transmission profiles of the IRAS broadband filters, and the spacecraft position vectors and scan parameters.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Infrared Astronomical Satellite (IRAS)"],"targets":["filter"],"instruments":["Focal Plane Array"],"instrument_hosts":["Infrared Astronomical Satellite"],"data_types":["Data"],"start_date":"1983-02-08","stop_date":"1983-11-22","browse_url":"https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/collection_iras_miscellaneous.xml","source_url":"https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/collection_iras_miscellaneous.xml","scraped_at":"2026-02-25T20:02:10.761975Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iue.ast.hendrix.spectra:data::2.0","title":"Hendrix IUE asteroid reflectance spectra V2.0","description":"This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Iue"],"targets":["(308) Polyxo","(41) Daphne","(42) Isis","(12) Victoria","(1620) Geographos","(40) Harmonia","(14) Irene","(433) Eros","(29) Amphitrite","(410) Chloris","(27) Euterpe","(654) Zelinda","(10) Hygiea","(471) Papagena","(16) Psyche","(63) Ausonia","(8) Flora","(135) Hertha","(4179) Toutatis","(18) Melpomene","(51) Nemausa","(20) Massalia","(511) Davida","(75) Eurydike","(349) Dembowska","(21) Lutetia","(54) Alexandra","(9) Metis","(23) Thalia","Multiple Asteroids","(129) Antigone","(324) Bamberga","(88) Thisbe","(15) Eunomia","(216) Kleopatra","(44) Nysa","(532) Herculina","(1566) Icarus","(354) Eleonora","(704) Interamnia"],"instruments":["LONG-WAVELENGTH REDUNDANT for IUE","LONG-WAVELENGTH PRIME for IUE"],"instrument_hosts":["International Ultraviolet Explorer","International Ultraviolet Explorer"],"data_types":["Data"],"start_date":"1978-05-21","stop_date":"1994-09-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/collection_iue.ast.hendrix.spectra_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/collection_iue.ast.hendrix.spectra_data.xml","scraped_at":"2026-02-25T20:02:10.761981Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:iue.ast.hendrix.spectra:document::2.0","title":"Hendrix IUE asteroid reflectance spectra V2.0","description":"This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Iue"],"targets":["(308) Polyxo","(41) Daphne","(42) Isis","(12) Victoria","(1620) Geographos","(40) Harmonia","(14) Irene","(433) Eros","(29) Amphitrite","(410) Chloris","(27) Euterpe","(654) Zelinda","(10) Hygiea","(471) Papagena","(16) Psyche","(63) Ausonia","(8) Flora","(135) Hertha","(4179) Toutatis","(18) Melpomene","(51) Nemausa","(20) Massalia","(511) Davida","(75) Eurydike","(349) Dembowska","(21) Lutetia","(54) Alexandra","(9) Metis","(23) Thalia","Multiple Asteroids","(129) Antigone","(324) Bamberga","(88) Thisbe","(15) Eunomia","(216) Kleopatra","(44) Nysa","(532) Herculina","(1566) Icarus","(354) Eleonora","(704) Interamnia"],"instruments":["LONG-WAVELENGTH REDUNDANT for IUE","LONG-WAVELENGTH PRIME for IUE"],"instrument_hosts":["International Ultraviolet Explorer","International Ultraviolet Explorer"],"data_types":["Document"],"start_date":"1978-05-21","stop_date":"1994-09-01","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/collection_iue.ast.hendrix.spectra_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/collection_iue.ast.hendrix.spectra_document.xml","scraped_at":"2026-02-25T20:02:10.761988Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps:data::1.0","title":"Phoebe SPC Shape Model and Assessment Products V1.0","description":"This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-huygens"],"targets":["Saturn IX (Phoebe)"],"instruments":["Imaging Science Subsystem - Wide Angle","Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/collection_satellite-phoebe.cassini.shape-models-maps_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/collection_satellite-phoebe.cassini.shape-models-maps_data.xml","scraped_at":"2026-02-25T20:02:10.761993Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps:document::1.0","title":"Phoebe SPC Shape Model and Assessment Products V1.0","description":"This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Cassini-huygens"],"targets":["Saturn IX (Phoebe)"],"instruments":["Imaging Science Subsystem - Wide Angle","Imaging Science Subsystem - Narrow Angle"],"instrument_hosts":["Cassini Orbiter","Cassini Orbiter"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/collection_satellite-phoebe.cassini.shape-models-maps_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/collection_satellite-phoebe.cassini.shape-models-maps_document.xml","scraped_at":"2026-02-25T20:02:10.761997Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.mission:context::2.0","title":"The NEAR Mission Bundle Context Collection","description":"This collection contains the context products applicable to the NEAR mission as a whole; including context products such as mission, spacecraft, instrument, and target context products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR"],"targets":["433 Eros","253 Mathilde","Earth","C/1996 B2 (Hyakutake)","SOLAR_SYSTEM","SPACE"],"instruments":["GAMMA RAY SPECTROMETER for NEAR","MAGNETOMETER for NEAR","MULTI-SPECTRAL IMAGER for NEAR","NEAR INFRARED SPECTROMETER for NEAR","NEAR LASER RANGEFINDER for NEAR","XRAY SPECTROMETER for NEAR","RADIO SCIENCE SUBSYSTEM for NEAR"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Context"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/collection_context.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/collection_context.xml","scraped_at":"2026-02-25T20:02:10.762002Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.mission:document::2.0","title":"NEAR Mission Bundle Document Collection","description":"This collection contains the documents applicable to the NEAR mission archive as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR"],"targets":["433 Eros","253 Mathilde","Earth","C/1996 B2 (Hyakutake)","Earth","SOLAR_SYSTEM"],"instruments":["GAMMA RAY SPECTROMETER for NEAR","MAGNETOMETER for NEAR","MULTI-SPECTRAL IMAGER for NEAR","NEAR INFRARED SPECTROMETER for NEAR","NEAR LASER RANGEFINDER for NEAR","XRAY SPECTROMETER for NEAR","RADIO SCIENCE SUBSYSTEM for NEAR"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/collection_near.mission_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/collection_near.mission_document.xml","scraped_at":"2026-02-25T20:02:10.762007Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near.mission:xml_schema::1.0","title":"The NEAR Mission Bundle XML Schema Collection","description":"This collection contains the xml_schema prodcuts applicable to the NEAR mission as a whole.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR"],"targets":["433 Eros","253 Mathilde","Earth","SOLAR_SYSTEM","C/1996 B2 (Hyakutake)"],"instruments":["GAMMA RAY SPECTROMETER for NEAR","MAGNETOMETER for NEAR","MULTI-SPECTRAL IMAGER for NEAR","NEAR INFRARED SPECTROMETER for NEAR","NEAR LASER RANGEFINDER for NEAR","XRAY SPECTROMETER for NEAR","RADIO SCIENCE SUBSYSTEM for NEAR"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["XML Schema"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/collection_xml_schema.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/collection_xml_schema.xml","scraped_at":"2026-02-25T20:02:10.762011Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.spectral_analysis:calibration::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document","description":"This collection contains the calibration files applicable to the OSIRIS-REx Derived Spectral Anlaysis Products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OVIRS","OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Calibration"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/collection_calibration_spectral_analysis.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/collection_calibration_spectral_analysis.xml","scraped_at":"2026-02-25T20:02:10.762016Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.spectral_analysis:data_tir_maps::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Map Collection","description":"This collection contains the Thermal Infrared map products produced by the OSIRIS-REx Spectral Analysis team during various mission phases in the Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/collection_data_tir_maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/collection_data_tir_maps.xml","scraped_at":"2026-02-25T20:02:10.762020Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.spectral_analysis:data_tir_tmp_emissivity::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Temperature Emissivity Collection","description":"This collection contains the thermal infrared temperature emissivity products produced by the OSIRIS-REx Spectral Analysis team during the mission.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/collection_data_tir_tmp_emissivity.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/collection_data_tir_tmp_emissivity.xml","scraped_at":"2026-02-25T20:02:10.762028Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.spectral_analysis:data_vnir_iof_spectra::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible Near Infrared IOF Spectra Collection","description":"This collection contains the reflectance (IOF) spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) during the Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/collection_data_vnir_iof_spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/collection_data_vnir_iof_spectra.xml","scraped_at":"2026-02-25T20:02:10.762032Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.spectral_analysis:data_vnir_maps::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Map Collection","description":"This collection contains the visible-near infrared map products produced by the OSIRIS-REx Spectral Analysis team during various mission phases in the Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/collection_data_vnir_maps.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/collection_data_vnir_maps.xml","scraped_at":"2026-02-25T20:02:10.762035Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.spectral_analysis:data_vnir_resampled_spectra::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible Near Infrared Resampled Spectra Collection","description":"This collection contains the resampled spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) during the Bennu encounter.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/collection_data_vnir_resampled_spectra.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/collection_data_vnir_resampled_spectra.xml","scraped_at":"2026-02-25T20:02:10.762039Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.spectral_analysis:document::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document","description":"This collection contains the documents applicable to the OSIRIS-REx Derived Spectral Anlaysis Products.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OVIRS","OTES"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/collection_document_spectral_analysis.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/collection_document_spectral_analysis.xml","scraped_at":"2026-02-25T20:02:10.762042Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_raw:data_eop::1.0","title":"NEAR RSS Raw Earth Orientation Parameters Collection","description":"NEAR Raw EOP Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1996-10-27","stop_date":"2000-12-21","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/collection_data_eop.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/collection_data_eop.xml","scraped_at":"2026-02-25T20:02:10.762070Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_raw:data_ion::1.0","title":"NEAR RSS Raw Ionosphere Data Collection","description":"NEAR Raw ION Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1997-06-01","stop_date":"2000-09-26","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/collection_data_ion.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/collection_data_ion.xml","scraped_at":"2026-02-25T20:02:10.762074Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_raw:data_nmlmodl::1.0","title":"NEAR Gravity Numerical Model Collection","description":"This collection contains the nominal set of namelist parameters used to define physical characteristics of the spacecraft's motion and tracking observable used by the JPL orbit determination software suite. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["253 Mathilde","433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1996-01-01","stop_date":"2002-03-31","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/collection_data_nmlmodl.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/collection_data_nmlmodl.xml","scraped_at":"2026-02-25T20:02:10.762078Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_raw:data_odf::1.0","title":"NEAR RSS Raw Orbit Data File Collection","description":"NEAR Raw ODF Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1997-05-30","stop_date":"2001-02-28","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/collection_data_odf.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/collection_data_odf.xml","scraped_at":"2026-02-25T20:02:10.762105Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_raw:data_paramsum::1.0","title":"NEAR Gravity Solution Page Collection","description":"Solution pages summarizing data arc, physical model nominal and estimated parameter values, along with formal uncertainties This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["253 Mathilde","433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1997-07-03","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/collection_data_paramsum.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/collection_data_paramsum.xml","scraped_at":"2026-02-25T20:02:10.762110Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_raw:data_tro::1.0","title":"NEAR RSS Raw Troposphere Data Collection","description":"NEAR Raw TRO Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"1972-01-01","stop_date":"2048-01-01","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/collection_data_tro.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/collection_data_tro.xml","scraped_at":"2026-02-25T20:02:10.762117Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_raw:document::1.0","title":"NEAR Radio Science Raw Archive Document Collection","description":"The NEAR Radio Science Raw Archive document collection consists of documents supporting the data types and instrument. This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros","253 Mathilde"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/collection_document_inventory.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/collection_document_inventory.xml","scraped_at":"2026-02-25T20:02:10.762121Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_derived:data_img::1.0","title":"NEAR Gravity Map Collection","description":"This collection contains a set of gravity maps of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["RADIO SCIENCE SUBSYSTEM"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/collection_data_img.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/collection_data_img.xml","scraped_at":"2026-02-25T20:02:10.762125Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_derived:data_landmark::1.0","title":"NEAR Gravity Landmark Collection","description":"This collection contains a table giving X, Y, and Z coordinates of the centers of craters on the asteroid Eros projected onto a plane tangent to each crater's rim. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/collection_data_landmark.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/collection_data_landmark.xml","scraped_at":"2026-02-25T20:02:10.762129Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_derived:data_shadr::1.0","title":"NEAR Gravity Spherical ASCII Binary Data Record Collection","description":"This collection contains a set of spherical harmonic coefficients of the gravity field of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/collection_data_shadr.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/collection_data_shadr.xml","scraped_at":"2026-02-25T20:02:10.762132Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_derived:data_shbdr::1.0","title":"NEAR Gravity Spherical Harmonic Binary Data Record Collection","description":"This collection contains a set of spherical harmonic coeffients of the gravity field of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Data"],"start_date":"2000-02-14","stop_date":"2001-02-12","browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/collection_data_shbdr.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/collection_data_shbdr.xml","scraped_at":"2026-02-25T20:02:10.762137Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:near_rss_derived:document::1.0","title":"NEAR Radio Science Derived Archive Document Collection","description":"The NEAR Radio Science Derived Archive document collection consists of documents supporting the data types and instrument. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["NEAR EARTH ASTEROID RENDEZVOUS"],"targets":["433 Eros","253 Mathilde"],"instruments":["Radio Science Subsystem"],"instrument_hosts":["NEAR EARTH ASTEROID RENDEZVOUS"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/collection_document_inventory.xml","source_url":"https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/collection_document_inventory.xml","scraped_at":"2026-02-25T20:02:10.762141Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams:calibration::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) calibration file collection.","description":"This collection contains the calibration files used to calibrate and correct the images acquired by the OCAMS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Calibration"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/collection_ocams_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/collection_ocams_calibration.xml","scraped_at":"2026-02-25T20:02:10.762146Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams:data_calibrated::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) calibrated science image data products.","description":"This collection contains the calibrated (processing level 2 radiometrically calibrated and reflectance) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/collection_ocams_data_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/collection_ocams_data_calibrated.xml","scraped_at":"2026-02-25T20:02:10.762150Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams:data_eng::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) ancillary image information data products.","description":"This collection contains the ancillary image information data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft. This product contains all instrument housekeeping data collected at the time of image acquisition.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/collection_ocams_eng.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/collection_ocams_eng.xml","scraped_at":"2026-02-25T20:02:10.762154Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams:data_hkl0::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) raw housekeeping data products.","description":"This collection contains the raw housekeeping data products produced by the OCAMS instrument suite onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/collection_ocams_data_hkl0.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/collection_ocams_data_hkl0.xml","scraped_at":"2026-02-25T20:02:10.762158Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams:data_hkl1::11.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) converted housekeeping data products.","description":"This collection contains the converted housekeeping data products produced by the OCAMS instrument suite onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/collection_ocams_data_hkl1.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/collection_ocams_data_hkl1.xml","scraped_at":"2026-02-25T20:02:10.762162Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams:data_raw::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) raw science image data products.","description":"This collection contains the raw (processing level 0) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/collection_ocams_data_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/collection_ocams_data_raw.xml","scraped_at":"2026-02-25T20:02:10.762165Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams:data_reduced::13.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) reduced science image data products.","description":"This collection contains the reduced (processing level 1 - bias, dark and flat field corrected) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/collection_ocams_data_reduced.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/collection_ocams_data_reduced.xml","scraped_at":"2026-02-25T20:02:10.762169Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ovirs:calibration::5.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) calibration file collection.","description":"This collection contains the calibration files used to calibrate and correct the spectra acquired by the OVIRS instrument onboard the OSIRIS-REx spacecraft.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":["(101955) Bennu"],"instruments":["OVIRS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Data"],"start_date":"2016-09-08","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/calibration/collection_ovirs_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/calibration/collection_ovirs_calibration.xml","scraped_at":"2026-02-25T20:02:10.762172Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.ocams:document::9.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document","description":"This collection contains the documents applicable to the OSIRIS-REx Camera Suite (OCAMS).","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/collection_ocams_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/collection_ocams_document.xml","scraped_at":"2026-02-25T20:02:10.762175Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.sample_site:document_final::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final","description":"This collection includes three comprehensive catalogs characterizing the final sample site selection: DL15 (Nightingale). Each catalog represents a different sampling location within Nightingale - East (DL15E), Grid 37 (DL15Grid27), and West (DL15W) - and encompasses geospatial maps of dispersion, tilt, tip over during backaway, sampleability, texture, color, and boulder counts.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","OLA","OTES","OVIRS","TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/collection_final.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/collection_final.xml","scraped_at":"2026-02-25T20:02:10.762180Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.sample_site:document_final_eight::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final Eight","description":"This collection includes a comprehensive catalog of geospatial maps characterizing eight sample site options: BB03, BB21, CQ13, DL06, DL08, DL09, DL15, and EX07. The catalog encompasses PolyCam-derived imagery, shadow mapping, surface texture analysis, boulder distribution, reflectance imagery, and false color composite visualizations for each site.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","OLA","OTES","OVIRS","TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/collection_final_eight.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/collection_final_eight.xml","scraped_at":"2026-02-25T20:02:10.762185Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:orex.sample_site:document_final_four::1.0","title":"Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final Four","description":"This collection includes comprehensive catalogs of geospatial maps characterizing four sample site options: CQ13 (Kingfisher), DL06 (Osprey), DL15 (Nightingale), and EX07 (Sandpiper). The catalog encompasses PolyCam-derived imagery, shadow mapping, surface texture analysis, boulder distribution, reflectance imagery, and false color composite visualizations for each site.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"],"targets":[],"instruments":["OCAMS","OLA","OTES","OVIRS","TAGCAMS"],"instrument_hosts":["OSIRIS-REx Spacecraft"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/collection_final_four.xml","source_url":"https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/collection_final_four.xml","scraped_at":"2026-02-25T20:02:10.762189Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clipper.sud_ground_cal:calibration::1.0","title":"Europa Clipper SUDA Calibration Collection","description":"This collection contains lookup tables for unit conversions of signals from the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Data"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/collection_suda_calibration.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/collection_suda_calibration.xml","scraped_at":"2026-02-25T20:02:10.762227Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clipper.sud_ground_cal:data_cal_calibrated::1.0","title":"Europa Clipper SUDA Calibrated Data","description":"This collection contains the calibrated (L2a and L2b) data products produced by the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Data"],"start_date":"2022-07-07","stop_date":"2022-08-31","browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/collection_suda_data_cal_calibrated.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/collection_suda_data_cal_calibrated.xml","scraped_at":"2026-02-25T20:02:10.762230Z","keywords":[],"processing_level":"Calibrated","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clipper.sud_ground_cal:data_cal_hsk_raw::1.0","title":"Europa Clipper SUDA Housekeeping Collection","description":"This collection contains 'housekeeping' engineering data from the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Data"],"start_date":"2022-07-07","stop_date":"2022-08-31","browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/collection_suda_data_cal_hsk_raw.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/collection_suda_data_cal_hsk_raw.xml","scraped_at":"2026-02-25T20:02:10.762234Z","keywords":[],"processing_level":"Raw","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clipper.sud_ground_cal:data_cal_partially_processed::1.0","title":"Europa Clipper SUDA Partially Processed Data","description":"This collection contains the partially processed (L1a and L1b) data products produced by the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Data"],"start_date":"2022-07-07","stop_date":"2022-08-31","browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/collection_suda_data_cal_partially_processed.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/collection_suda_data_cal_partially_processed.xml","scraped_at":"2026-02-25T20:02:10.762238Z","keywords":[],"processing_level":"Partially Processed","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:clipper.sud_ground_cal:document::1.0","title":"Europa Clipper SUDA Document Collection","description":"This collection contains the documents applicable to the SUDA instrument during ground calibration.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["Europa Clipper Mission"],"targets":["DUST"],"instruments":["SUrface Dust Analyzer (SUDA)"],"instrument_hosts":["Europa Clipper Spacecraft"],"data_types":["Document"],"start_date":"1965-01-01","stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/collection_suda_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/collection_suda_document.xml","scraped_at":"2026-02-25T20:02:10.762242Z","keywords":[],"processing_level":null,"file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model:data::1.0","title":"Data Collection for the Radar shape model of asteroid (99942) Apophis bundle","description":"The near-Earth asteroid (99942) Apophis spin state at epoch December 23 2012, 14:14:00 UTC with zero-epoch time and rotational phase as stated by Brozovic et al. (2018). The rotation state is the same as Model R in the Supplementary Table 1 in Brozovic et al. 2018.","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["(99942) Apophis"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","DSS-14 70-m Radio Telescope","DSS-14 X-band Goldstone Solar System Radar Transmitter","DSS-14 X-band Goldstone Solar System Radar Receiver"],"instrument_hosts":["Arecibo Observatory","Goldstone Deep Space Communications Complex"],"data_types":["Data"],"start_date":"2012-12-21","stop_date":"2013-03-16","browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/collection_gbo.ast-apophis.jpl.radar.shape_model_data.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/collection_gbo.ast-apophis.jpl.radar.shape_model_data.xml","scraped_at":"2026-02-25T20:02:10.762268Z","keywords":[],"processing_level":"Derived","file_count":null,"total_size_bytes":null} -{"id":"urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model:document::1.0","title":"Document collection for the \"Radar shape model of asteroid (99942) Apophis bundle","description":"Document Collection for the Radar shape model of asteroid (99942) Apophis bundle","node":"sbn","pds_version":"PDS4","type":"collection","missions":["No Specific Investigation"],"targets":["(99942) Apophis"],"instruments":["305-m fixed spherical reflecting antenna","Arecibo Planetary Radar Transmitter","Arecibo 2380 MHz Radar Receiver","DSS-14 70-m Radio Telescope","DSS-14 X-band Goldstone Solar System Radar Transmitter","DSS-14 X-band Goldstone Solar System Radar Receiver"],"instrument_hosts":["Arecibo Observatory","Goldstone Deep Space Communications Complex"],"data_types":["Document"],"start_date":null,"stop_date":null,"browse_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/","download_url":null,"label_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/collection_gbo.ast-apophis.jpl.radar.shape_model_document.xml","source_url":"https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/collection_gbo.ast-apophis.jpl.radar.shape_model_document.xml","scraped_at":"2026-02-25T20:02:10.762274Z","keywords":["radar shape model"],"processing_level":"Derived","file_count":null,"total_size_bytes":null} +{"id": "BRRISON-CAL-BIRC-2-GROUND-CAL-V1.0", "title": "COMET NUCLEI PROPERTIES DELIVERY VOLUME", "description": "This volume contains the data for the Balloon Rapid Response for Comet ISON (BRRISON) BIRC instrument.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/brrison-cal-birc-2-ground-cal-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:00.269760", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CON-CAL-ALL-6-DOC-SET-V1.0", "title": "CONTOUR MISSION ARCHIVE - DOCUMENTATION", "description": "Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/con-cal-all-6-doc-set-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:01.283093", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CON-CAL-CFI-1-EDR-GROUND-OCF-V1.0", "title": "CONTOUR MISSION ARCHIVE - CFI DATA", "description": "Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in their entirety the original volumes CON_1001-CON_1016, submitted for safing after mission end.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/con-cal-cfi-1-edr-ground-ocf-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:02.276700", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CON-CAL-CRISPIMAG-1-EDR-GROUND-OCF-V1.0", "title": "CONTOUR MISSION ARCHIVE", "description": "Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in the entirety the original volumes CON_2001-CON_2009, submitted for safing after mission end.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispimag-1-edr-ground-ocf-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:03.285912", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CON-CAL-CRISPSPEC-1-EDR-GROUND-OCF-V1.0", "title": "CONTOUR MISSION ARCHIVE", "description": "Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/con-cal-crispspec-1-edr-ground-ocf-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:04.287431", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CON-CAL-TLM-1-EDR-GROUND-GSE-V1.0", "title": "CONTOUR MISSION ARCHIVE", "description": "Ground-based data and documentation from the CONTOUR mission which lost contact with Earth shortly after launch This single archive volume incorporates in their entirety the original volumes CON_4001-CON_4022, submitted for safing after the mission end.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/con-cal-tlm-1-edr-ground-gse-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:05.288076", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ITS-6-DOC-SET-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains documentation for the Deep Impact Mission archive. It specifically includes documentation for the raw and reduced cruise and 9P/Tempel 1 encounter data sets (for science and navigation) as well as the laboratory thermal-vacuum data sets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:06.334104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ITS-6-DOC-SET-V2.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"McLaughlin, S.A., M.F. A'Hearn, D. Deming, K.P. Klaasen, D. Wellnitz, B. Carcich, and T. Hewagama, DEEP IMPACT/EPOXI DOCUMENTATION SET V2.0, DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V2.0, NASA Planetary Data System, 2009.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:07.344418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ITS-6-DOC-SET-V3.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"McLaughlin, S.A., M.F. A'Hearn, D. Deming, K.P. Klaasen, B. Carcich, D. Wellnitz, and T. Hewagama, DEEP IMPACT/EPOXI DOCUMENTATION SET V3.0, DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V3.0, NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:08.374887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI-C-HRII/HRIV/MRI/ITS-6-DOC-SET-V4.0", "title": "DEEP IMPACT/EPOXI DOCUMENT COLLECTION V4.0", "description": "Deep Impact prime mission and the EPOXI mission. It includes revisions to documentation relating to data from Deep Impact and EPOXI mission that were recalibrated and archived from mid-2012 through early 2014: Calibrated HRII EPOXI/DIXI Hartley 2 V2.0 and V3.0, Calibrated HRII/HRIV/MRI EPOXI/EPOCh Earth V2.0, Calibrated HRIV/MRI EPOXI/EPOCh Mars V2.0, Calibrated HRII EPOXI/EPOCh Mars V1.0 and Calibrated HRII/HRIV/MRI/ITS Deep Impact Tempel 1 V3.0. It also includes documentation for datasets that are new to the EPOXI archive as of early 2014: Raw and Calibrated HRII/HRIV/MRI Comet Garradd V1.0, Raw and Calibrated HRII/MRI Comet ISON V1.0, Calibrated HRII Lunar Spectra V1.0, and EPOXI Instrument Thermal Telem V3.0 (for entire EPOXI mission).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di-c-hrii_hriv_mri_its-6-doc-set-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:09.384103", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI-C-HRIV/ITS/MRI-5-MOVIE-COLL-V1.0", "title": "DEEP IMPACT MOVIE COLLECTION", "description": "This volume contains a collection of movies of comet 9P/Tempel 1 created from observations made by instrument aboard the Deep Impact flyby and impactor spacecraft.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di-c-hriv_its_mri-5-movie-coll-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:10.392354", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-2-9P-ENCOUNTER-V1.0", "title": "DEEP IMPACT ENCOUNTER RAW HRII SPECTRAL IMAGES", "description": "This volume contains raw 9P/Tempel 1 spectra and science calibrations acquired by the Deep Impact High Resolution Instrument's Infrared Spectrometer (HRII) during the encounter phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:11.305105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-2-EPOXI-GARRADD-V1.0", "title": "EPOXI C/GARRADD (2009 P1) - HRII RAW SPECTRA", "description": "This dataset contains raw, 1.05- to 4.8-micron spectral images of comet C/Garradd (2009 P1) acquired by the High Resolution Infrared Spectrometer on 26 March and 02-03 April 2012 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-garradd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:12.306727", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-2-EPOXI-HARTLEY2-V1.0", "title": "EPOXI 103P/HARTLEY2 ENCOUNTER - HRII RAW SPECTRA", "description": "This dataset contains raw, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer (HRII) from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-hartley2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:13.308825", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-2-EPOXI-ISON-V1.0", "title": "EPOXI C/ISON (2012 S1) - HRII RAW SPECTRA", "description": "This dataset contains raw, 1.05- to 4.8-micron spectral images of comet C/ISON (2012 S1) acquired by the High Resolution Infrared Spectrometer on 16-17 February 2013 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-2-epoxi-ison-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:14.314883", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "4-9P-ENCOUNTER-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"McLaughlin, S. A., B. Carcich, T. McCarthy, M. Desnoyer, and K.P. Klaasen, DEEP IMPACT 9P/TEMPEL ENCOUNTER - REDUCED HRII SPECTRA V1.0, DIF-C-HRII-3/4-9P-ENCOUNTER-V1.0, NASA Planetary Data System, 2005.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:15.365925", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "4-9P-ENCOUNTER-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains version 2.0 of calibrated spectral images of comet 9P/Tempel 1 acquired by the Deep Impact High Resolution Instrument Infrared Spectrometer during the encounter phase of the mission. Version 2.0 includes uncleaned and cleaned radiance data with improved calibration and geometry. The data were collected from 20 June through 6 July 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:16.380118", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-3/4-9P-ENCOUNTER-V3.0", "title": "DIHI9P_3201: Data from 2005-06-20 to 07-06, V3.0", "description": "This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 9P/Tempel 1 the acquired by the High Resolution Infrared Spectrometer (HRII) from 20 June through 06 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and corrects observation times with a maximum difference of about 40 milliseconds, corrects an error in the IR absolute calibration that previously inflated all spectra by a factor of 2, and upgrades the ALTFF line-dependent integration time. Version 3.0 also includes a new flat-field file derived from EPOXI lunar calibrations, improved quadrant-averaged linearity coefficients, and a refinement in the absolute spectral calibration curve.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-9p-encounter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:17.318347", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-3/4-EPOXI-GARRADD-V1.0", "title": "EPOXI C/GARRADD (2009 P1) - HRII CALIBRATED SPECTRA", "description": "This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet C/Garradd (2009 P1) acquired by the High Resolution Infrared Spectrometer on 26 March and 02-03 April 2012 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-garradd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:18.321655", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "4-EPOXI-HARTLEY2-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:19.409571", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "4-EPOXI-HARTLEY2-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Version 2.0 includes the application of new per-pixel linearity and calibration files such flats, darks, and absolute calibration curves that were derived using the new linearization.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:20.433172", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-3/4-EPOXI-HARTLEY2-V3.0", "title": "EPOXI 103P/HARTLEY2 ENCOUNTER - HRII CALIBRATED SPECTRA", "description": "This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet 103/P Hartley 2 acquired by the High Resolution Infrared Spectrometer (HRII) from 01 October through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Version 3.0 includes the application of scaled master dark subtraction for DOY 307 and in scene dark subtraction for DOY 311-313, as well as the use of an average per scan optical bench temperature in the pipeline processing. Version 3 also includes the calibration enhancements implemented in Version 2 of this dataset: a new per-pixel linearity correction treatment and its propagation through the calibration steps (i.e., bad-pixel maps, flat-field file update, revised spectral calibration curve), new mode-dependent master darks, an optimized scaling factor for the master dark, and a refinement in the absolute spectral calibration curve.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-hartley2-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:21.404272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-3/4-EPOXI-ISON-V1.0", "title": "EPOXI C/ISON (2012 S1) - HRII CALIBRATED SPECTRA", "description": "This dataset contains calibrated, 1.05- to 4.8-micron spectral images of comet C/ISON (2012 S1) acquired by the High Resolution Infrared Spectrometer on 16-17 February 2013 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-3_4-epoxi-ison-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:22.330101", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII-5-TEMPEL1-SURF-TEMP-MAPS-V1.0", "title": "DEEP IMPACT 9P/TEMPEL 1 SURFACE TEMPERATURE MAPS", "description": "This volume contains two-dimensional infrared thermal maps of the surface of comet 9P/Tempel 1. The maps were derived from three spatially resolved scans of the nucleus acquired by the Deep Impact High Resolution Infrared Spectrometer (HRII) about 19, 12, and 5 minutes before the impact on 4 July 2005. A high-resolution, 120-m/pixel, thermal composite map is also included. Surface temperatures were derived from 1.0- to 4.0-micron data and ranged from 272K to 336K +/- 7K. This data set also includes the incidence and emission angle maps (mu0 and mu) associated with each thermal map and a table of temperatures assigned to plates in the Tempel 1 shape model that were illuminated and visible near the time of impact.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii-5-tempel1-surf-temp-maps-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:23.328991", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRII/HRIV/MRI-6-TEMPS-V1.0", "title": "DEEP IMPACT HRII/HRIV/MRI INSTRUMENT TEMPERATURES", "description": "This data set provides resampled (raw, averaged) temperature measurements from 27 sensors located in the HRII, HRIV, and MRI instruments and on the HRI and MRI telescopes, instrument platform, and solar wings of the Deep Impact flyby spacecraft. The data begin on 15 January 2005, three days after launch, and continue through 9 July 2005, five days after the encounter with comet 9P/Tempel 1.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hrii_hriv_mri-6-temps-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:24.330310", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-2-9P-ENCOUNTER-V1.0", "title": "DEEP IMPACT ENCOUNTER RAW HRIV IMAGES", "description": "This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact High Resolution Instrument's Visible CCD during the encounter phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:25.333850", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-2-EPOXI-GARRADD-V1.0", "title": "EPOXI C/GARRADD (2009 P1) - HRIV RAW IMAGES", "description": "This dataset contains raw clear-filter images of comet C/Garradd (2009 P1) acquired by the High Resolution Visible CCD (HRIV) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-garradd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:26.342455", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-2-EPOXI-HARTLEY2-V1.0", "title": "EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV RAW IMAGES", "description": "This dataset contains raw clear-filter images of comet 103/P Hartley 2 acquired by the High Resolution Visible CCD (HRIV) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Four color-filter sets (350-950 nm) were acquired during the hour about closest approach.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-epoxi-hartley2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:27.341490", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-2-NAV-9P-ENCOUNTER-V1.0", "title": "DIHVNV_2001: Images from 2005-06-03 to 07-04", "description": "This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact High Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 3 June to 4 July 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-2-nav-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:28.346454", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-3-NAV-9P-ENCOUNTER-V1.0", "title": "DIHVNV_3001: Images from 2005-07-03 to 07-04", "description": "This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact High Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected on 3-4 July 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3-nav-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:29.346430", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-3/4-9P-ENCOUNTER-V3.0", "title": "DIHV9P_3201: Data from 2005-05-01 to 07-04, V3.0", "description": "This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the High Resolution Instrument Visible CCD (HRIV) from 01 May through 04 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F, and the application of a horizontal destriping process.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-9p-encounter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:32.417498", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-3/4-EPOXI-GARRADD-V1.0", "title": "EPOXI C/GARRADD (2009 P1) - HRIV CALIBRATED IMAGES", "description": "This dataset contains calibrated clear-filter images of comet C/Garradd (2009 P1) acquired by the High Resolution Visible CCD (HRIV) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-garradd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:33.347798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-3/4-EPOXI-HARTLEY2-V1.0", "title": "EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV CALIBRATED IMAGES", "description": "This dataset contains calibrated clear-filter images of comet 103/P Hartley 2 acquired by the High Resolution Visible CCD (HRIV) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Four color-filter sets (350-950 nm) were acquired during the hour about closest approach.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-3_4-epoxi-hartley2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:34.358401", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV-5-EPOXI-HARTLEY2-DECONV-V1.0", "title": "EPOXI 103P/HARTLEY2 ENCOUNTER - HRIV DECONVOLVED IMAGES", "description": "This dataset contains deconvolved High Resolution Visible CCD (HRIV) images of the nucleus of comet 103/P Hartley 2. Clear and color filter (350-950 nm) images, which were acquired within +/- one hour of closest approach on 04 November 2010 at 13:59:47 UTC during the EPOXI mission, have been restored to retrieve much of the resolution that was lost due to the defocus of the HRI telescope. Image scales range from 1.4 to 85.5 m/pixel.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv-5-epoxi-hartley2-deconv-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:35.360986", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MRI-5-TEMPEL1-SHAPE-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Farnham, T.L. and Thomas, P.C, SHAPE MODEL OF COMET TEMPEL 1, DIF-C-HRIV/ITS/MRI-5-TEMPEL1-SHAPE-MODEL-V1.0, NASA Planetary Data System, 2006.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_its_mri-5-tempel1-shape-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:36.425107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV/ITS/MRI-5-TEMPEL1-SHAPE-V2.0", "title": "DIMODL_0001: 9P/TEMPEL 1 SHAPE MODELS", "description": "This delivery volume holds the data set containing the detailed plate shape model of comet 9P/Tempel 1, as derived from images of the comet that were obtained by the Deep Impact spacecraft and by the Stardust spacecraft around the times of their respective closest approaches.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_its_mri-5-tempel1-shape-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:37.366777", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-HRIV/MRI-5-HARTLEY2-SHAPE-V1.0", "title": "EPXH2_2000: 103P/HARTLEY 2 SHAPE MODELS", "description": "This delivery volume holds the data set containing the detailed plate shape model of comet 103P/Hartley 2, as derived from images of the comet that were obtained by the Deep Impact spacecraft around the times of closest approach for the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-hriv_mri-5-hartley2-shape-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:38.367662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-2-9P-ENCOUNTER-V1.0", "title": "DEEP IMPACT ENCOUNTER RAW MRI IMAGES", "description": "This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact Medium Resolution Instrument's Visible CCD during the encounter phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:39.369867", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-2-EPOXI-GARRADD-V1.0", "title": "EPOXI C/GARRADD (2009 P1) - MRI RAW IMAGES", "description": "This dataset contains raw clear-filter, C2, CN, OH and dust continuum images of comet C/Garradd (2009 P1) acquired by the Medium Resolution Visible CCD (MRI) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-garradd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:40.365788", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-2-EPOXI-HARTLEY2-V1.0", "title": "EPOXI 103P/HARTLEY2 ENCOUNTER - MRI RAW IMAGES", "description": "This dataset contains raw images of comet 103/P Hartley 2 acquired by the Medium Resolution Visible CCD (MRI) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Clear-filter and CN images of the comet were acquired throughout this phase; OH, C2, and dust continuum images were only acquired for several days spanning closest approach.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-hartley2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:41.372295", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-2-EPOXI-ISON-V1.0", "title": "EPOXI C/ISON (2012 S1) - MRI RAW IMAGES", "description": "This dataset contains raw clear-filter, CN, OH and dust continuum images of comet C/ISON (2012 S1) acquired by the Medium Resolution Visible CCD (MRI) from 17 January through 06 March 2013 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-epoxi-ison-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:42.413471", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-2-NAV-9P-ENCOUNTER-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 1 May to 4 July 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-nav-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:43.520459", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-2-NAV-9P-ENCOUNTER-V1.1", "title": "DIMVNV_200X: Images from 2005-05-01 to 07-04", "description": "This data set contains raw 9P/Tempel 1 and calibration images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 1 May to 4 July 2005. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-2-nav-9p-encounter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:44.471508", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-3-NAV-9P-ENCOUNTER-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation of the flyby spacecraft as well as for scientific investigations. These data were collected from 15 May to 4 July 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3-nav-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:45.524575", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-3-NAV-9P-ENCOUNTER-V1.1", "title": "DIMVNV_300X: Images from 2005-05-15 to 07-04", "description": "This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft as well as for scientific investigations. These data were collected from 15 May to 4 July 2005. In this version (1.1) of the data set, the modified Julian date values, found in the PDS data labels of version 1.0, were replaced with full Julian dates. This data set supersedes version 1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3-nav-9p-encounter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:46.382600", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-3/4-9P-ENCOUNTER-V3.0", "title": "DIMV9P_3201: Data from 2005-05-01 to 07-06, V3.0", "description": "This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the Medium Resolution Instrument Visible CCD (MRI) from 01 May through 06 July 2005 during the encounter phase of the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F, and the application of a horizontal destriping process and improved absolute radiometric calibration constants.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-9p-encounter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:49.390415", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-3/4-EPOXI-GARRADD-V1.0", "title": "EPOXI C/GARRADD (2009 P1) - MRI CALIBRATED IMAGES", "description": "This dataset contains calibrated clear-filter, C2, CN, OH and dust continuum images of comet C/Garradd (2009 P1) acquired by the Medium Resolution Visible CCD (MRI) from 20 February through 09 April 2012 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-garradd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:50.388671", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-3/4-EPOXI-HARTLEY2-V1.0", "title": "EPOXI 103P/HARTLEY2 ENCOUNTER - MRI CALIBRATED IMAGES", "description": "This dataset contains calibrated images of comet 103/P Hartley 2 acquired by the Medium Resolution Visible CCD (MRI) from 05 September through 26 November 2010 during the Hartley 2 encounter phase of the EPOXI mission. Clear-filter and CN images of the comet were acquired throughout this phase; OH, C2, and dust continuum images were only acquired for several days spanning closest approach.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-hartley2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:51.400895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-3/4-EPOXI-ISON-V1.0", "title": "EPOXI C/ISON (2012 S1) - MRI CALIBRATED IMAGES", "description": "This dataset contains calibrated clear-filter, CN, OH and dust continuum images of comet C/ISON (2012 S1) acquired by the Medium Resolution Visible CCD (MRI) from 17 January through 06 March 2013 during the Cruise 3 phase of the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-3_4-epoxi-ison-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:52.392573", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-5-EPOXI-HARTLEY2-PHOTOM-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This dataset contains clear-filter, CN, OH, C2, and dust-continuum photometric measurements of comet 103/P Hartley 2 derived from calibrated images acquired by the Medium Resolution Visible CCD (MRI) from 01 October through 26 November 2010, during the Hartley 2 encounter phase of the EPOXI mission. Two different methods were used: simple circular aperture photometry and azimuthal averaged aperture photometry, which removed stars. The results and uncertainties for both procedures are included in this dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-5-epoxi-hartley2-photom-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:53.475193", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-MRI-5-TEMPEL1-PHOTOMETRY-V1.0", "title": "DEEP IMPACT 9P/TEMPEL 1 MRI PHOTOMETRY", "description": "This data set contains photometric measurements of comet 9P/Tempel 1 from images taken with the Medium Resolution CCD Instrument during the approach phase of the Deep Impact mission (from 1 May 2005 to 4 July 2005). These data, based on circular apertures ranging from 5 to 30 pixels in diameter, were derived from both science and navigation images taken through clear filters.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-mri-5-tempel1-photometry-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:54.474157", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-C-RSS-1-9P-ENCOUNTER-V1.0", "title": "VOLUME 1", "description": "This volume contains raw Radio Science data for the Deep Impact flyby spacecraft, collected from June 27 through July 11, 2005, during the encounter with comet 9P/Tempel 1. There was no comet gravity signal detected in the tracking data and hence no gravity science. In addition, there was no evidence in the spacecraft tracking data for dust or gas drag near the time of closest approach.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-c-rss-1-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:55.482467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRII-2-9P-CRUISE-V1.0", "title": "DEEP IMPACT CRUISE RAW HRII CALIB SPECTRAL IMAGES", "description": "This volume contains raw spectra for science calibrations acquired by the Deep Impact High Resolution Instrument Infrared Spectrometer (HRII) during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain spectra of the comet.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-9p-cruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:56.405669", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - HRII RAW SPECTRA V1.0, DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-epoxi-calibrations-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:57.459217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRII-2-EPOXI-CALIBRATIONS-V2.0", "title": "EPOXI INFLIGHT CALIBRATIONS - HRII RAW SPECTRA", "description": "This dataset contains version 2.0 of raw calibration spectra acquired by the High Resolution Infrared Spectrometer (HRII) from 04 October 2007 through 07 February 2011 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration data only through May 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-epoxi-calibrations-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:58.407103", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRII-2-GROUND-TV1-V1.0", "title": "DEEP IMPACT THERMAL-VACUUM 1 DATA, HRII INSTRUMENT", "description": "This volume contains spectral image data acquired by the High Resolution Imager's Infrared Spectrometer (HRII) during the first preflight thermal-vacuum test (TV1) of the Deep Impact instruments, from 2002-06-27 through 2002-07-02. Data in the volume supports the calibration of the HRII instrument.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii-2-ground-tv1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:05:59.413172", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRII/HRIV-2-GROUND-TV2-V1.0", "title": "DEEP IMPACT THERMAL-VACUUM 2 DATA, HRII/HRIV INSTRUMENTS", "description": "This volume contains image data acquired by the High Resolution Instrument's IR Spectrometer (HRII) and Visual CCD (HRIV) during the second preflight thermal-vacuum test (TV2) of the Deep Impact instruments, from 2002-08-15 through 2002-09-03. These data support the calibration of the HRII and HRIV instruments.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv-2-ground-tv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:00.416067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRII/HRIV/MRI-2-GROUND-TV3-V1.0", "title": "DEEP IMPACT THERMAL-VACUUM 4 DATA, HRII/HRIV/MRI INSTRUMENTS", "description": "This volume contains image data acquired by the High Resolution Instrument's IR Spectrometer (HRII) and Visual CCD (HRIV) and the Medium Resolution Instrument's Visual CCD (MRI) during the fourth preflight thermal-vacuum test (TV4) of the Deep Impact instruments from 2003-002-23 through 2003-03-12. These data support the calibration of the HRII, HRIV, and MRI instruments.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-2-ground-tv4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:01.411122", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MRI-6-EPOXI-TEMPS-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: Raw temperature measurements from telemetry for the EPOXI mission from 27 sensors located in the HRII, HRIV, and MRI instruments and on the HRI and MRI telescopes, instrument platform, and solar wings of the Deep Impact flyby spacecraft. The data were collected from 17 December 2007 through 31 December 2008, during the first cruise and EPOCh phases of the mission as well as the early part of the second cruise phase. Future versions of this data set will include thermal data from the remaining part of the second cruise phase and the 103P/Hartley 2 encounter phase (DIXI) of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:02.476764", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MRI-6-EPOXI-TEMPS-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission, from 04 October 2007 through 06 February 2011. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:03.482369", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MRI-6-EPOXI-TEMPS-V2.1", "title": "Menu: Skip within this page", "description": "Abstract: This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission, from 04 October 2007 through 06 February 2011. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft. Version 2.1 corrects a typo in a column description in 5 data labels.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v2.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:04.493467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRII/HRIV/MRI-6-EPOXI-TEMPS-V3.0", "title": "EPOXI HRII/HRIV/MRI INSTRUMENT TEMPERATURES", "description": "This dataset contains the raw and smoothed (averaged) instrument thermal telemetry for the entire EPOXI mission from 04 October 2007 to 08 August 2013. Measurements were collected by 59 thermal sensors located in the HRII, HRIV, and MRI instruments, on the instrument platform, and on the solar wings of the Deep Impact flyby spacecraft. For Version 3.0, thermal data from 06 February 2011 to 08 August 2013 were added.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hrii_hriv_mri-6-epoxi-temps-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:05.481775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRIV-2-9P-CRUISE-V1.0", "title": "DEEP IMPACT CRUISE RAW HRIV CALIB IMAGES", "description": "This volume contains raw images for science calibrations acquired by the Deep Impact High Resolution Instrument Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-9p-cruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:06.493156", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - HRIV RAW IMAGES V1.0, DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-epoxi-calibrations-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:07.541288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRIV-2-EPOXI-CALIBRATIONS-V2.0", "title": "EPOXI INFLIGHT CALIBRATIONS - HRIV RAW IMAGES", "description": "This dataset contains version 2.0 of raw calibration images acquired by the High Resolution Visible CCD (HRIV) from 04 October 2007 through 28 November 2010 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration only through February 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-epoxi-calibrations-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:08.430246", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRIV-2-NAV-9P-CRUISE-V1.0", "title": "DIHVNV_1001: Images from 2005-01-14 to 04-25", "description": "This data set contains raw calibration and test images acquired by the Deep Impact High Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-2-nav-9p-cruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:09.446502", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-HRIV-6-EPOXI-STELLAR-PSFS-V1.0", "title": "EPOXI INFLIGHT CALIBRATIONS - HRIV STELLAR PSFS", "description": "This data set contains a clear-filtered High Resolution Visible CCD (HRIV) point spread function (PSF) for exoplanet transit targets GJ 436, HAT-P-4, HAT-P-7, TrES-2, TrES-3, XO-2, and XO-3 and at least one filtered HRIV PSF for stellar calibrator targets for the EPOXI mission. The PSFs were produced by applying a drizzle method to sets of HRIV images of the targets acquired during 2008. A PSF for transit target WASP-3 was not produced due to a crowded star field.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-hriv-6-epoxi-stellar-psfs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:10.428596", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-MRI-2-9P-CRUISE-V1.0", "title": "DEEP IMPACT CRUISE RAW MRI CALIB IMAGES", "description": "This volume contains raw images for science calibrations acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-9p-cruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:11.435987", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"McLaughlin, S.A., B. Carcich, K.P. Klaasen, and D.D. Wellnitz, EPOXI INFLIGHT CALIBRATIONS - MRI RAW IMAGES V1.0, DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V1.0, NASA Planetary Data System, 2009.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-epoxi-calibrations-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:12.496987", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-MRI-2-EPOXI-CALIBRATIONS-V2.0", "title": "EPOXI INFLIGHT CALIBRATIONS - MRI RAW IMAGES", "description": "This dataset contains version 2.0 of raw calibration images acquired by the Medium Resolution Visible CCD (MRI) from 04 October 2007 through 28 November 2010 during the EPOCh, 103P/Hartley 2 Encounter, and cruise phases of the EPOXI mission. This dataset supersedes version 1.0 which contained raw calibration only through July 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-epoxi-calibrations-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:13.447222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-MRI-2-NAV-9P-CRUISE-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains raw calibration and test images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-nav-9p-cruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:14.513333", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-CAL-MRI-2-NAV-9P-CRUISE-V1.1", "title": "DIMVNV_1001: Images from 2005-01-14 to 04-25", "description": "This data set contains raw calibration and test images acquired by the Deep Impact Medium Resolution Instrument Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the flyby spacecraft. These data were collected from 14 January to 25 April 2005. Test images of comet 9P/Tempel 1 were acquired on 25 April. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-cal-mri-2-nav-9p-cruise-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:15.448372", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-E-HRII-2-EPOXI-EARTH-V1.0", "title": "EPOXI EARTH OBSERVATIONS - HRII RAW SPECTRA", "description": "This data set contains raw, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice per hour. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-2-epoxi-earth-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:16.499104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "4-EPOXI-EARTH-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains calibrated, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice per hour. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-3_4-epoxi-earth-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:17.590292", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-E-HRII-3/4-EPOXI-EARTH-V2.0", "title": "EPOXI EARTH OBSERVATIONS - HRII CALIBRATED SPECTRA", "description": "This dataset contains calibrated, 1.05- to 4.8-micron spectra of Earth acquired by the High Resolution Infrared Spectrometer (HRII) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours, and spectra were acquired twice every 2 hours. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. HRII spectra were not acquired during the first attempt of an Earth south polar observation on 27-28 September 2009 because fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009. Version 2 corrects an error in the IR absolute calibration that previously inflated all spectra by a factor of 2.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hrii-3_4-epoxi-earth-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:18.452135", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-E-HRIV-2-EPOXI-EARTH-V1.0", "title": "EPOXI EARTH OBSERVATIONS - HRIV RAW IMAGES", "description": "This data set contains raw, narrow band filter images (350-950 nm) of Earth acquired by the Deep Impact High Resolution Visible CCD (HRIV) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. On 27 September 2009 during the first attempt of an Earth south polar observation, only seven HRIV frames were acquired before fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-2-epoxi-earth-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:19.455389", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-E-HRIV-3/4-EPOXI-EARTH-V2.0", "title": "EPOXI EARTH OBSERVATIONS - HRIV CALIBRATED IMAGES", "description": "This dataset contains calibrated, narrow band filter images (350-950 nm) of Earth acquired by the Deep Impact High Resolution Visible CCD (HRIV) during the EPOCh and Cruise 2 phases of the EPOXI mission. Five sets of observations were acquired on 18-19 March, 28-29 May and 04-05 June 2008 and on 27-28 March and 04-05 October 2009 to characterize Earth as an analog for extrasolar planets. Each observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. During the observing period in May 2008, the Moon transited across Earth as seen from the spacecraft. On 27 September 2009 during the first attempt of an Earth south polar observation, only seven HRIV frames were acquired before fault protection turned that instrument off; the full sequence was successfully rerun on 04-05 October 2009. Version 2.0 includes the application of a horizontal destriping process and revised electronic crosstalk calibration files.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-e-hriv-3_4-epoxi-earth-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:21.462776", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-E-MRI-2-EPOXI-EARTH-V1.0", "title": "EPOXI EARTH OBSERVATIONS - MRI RAW IMAGES", "description": "This data set contains raw, 750-nm filter images of Earth acquired by the Deep Impact Medium Resolution Visible CCD (MRI) during the EPOCh and Cruise 2 phases of the EPOXI mission. The MRI instrument was only used during the first Earth observing period on 18-19 March 2008 and the last two on 27-28 March and 04-05 October 2009. Each observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to serve as context spectra. On 27-28 September 2009 during the first attempt at Earth south polar observations, a full set of MRI context images was acquired although the HRII and HRIV instruments were turned off by fault protection shortly after the sequence started.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-2-epoxi-earth-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:22.465275", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-E-MRI-3/4-EPOXI-EARTH-V2.0", "title": "EPOXI EARTH OBSERVATIONS - MRI CALIBRATED IMAGES", "description": "This dataset contains calibrated, 750-nm filter images of Earth acquired by the Deep Impact Medium Resolution Visible CCD (MRI) during the EPOCh and Cruise 2 phases of the EPOXI mission. The MRI instrument was only used during the first Earth observing period on 18-19 March 2008 and the last two on 27-28 March and 04-05 October 2009. Each observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to serve as context spectra. On 27-28 September 2009 during the first attempt at Earth south polar observations, a full set of MRI context images was acquired although the HRII and HRIV instruments were turned off by fault protection shortly after the sequence started. Version 2.0 includes the application of a horizontal destriping process, new absolute calibration constants for filters, and revised electronic crosstalk calibration files.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-e-mri-3_4-epoxi-earth-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:24.468739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-L-HRII-3/4-EPOXI-LUNAR-CALS-V1.0", "title": "EPOXI INFLIGHT LUNAR CALS - HRII CALIBRATED SPECTRA", "description": "This dataset contains calibrated, 1.05- to 4.8-micron spectral images of the Moon acquired the High Resolution Infrared Spectrometer (HRII) from 29 December 2007 through 18 December 2009 during several in-flight instrument calibrations for the EPOXI mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-l-hrii-3_4-epoxi-lunar-cals-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:25.468070", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-M-HRII-2-EPOXI-MARS-V1.0", "title": "EPOXI MARS OBSERVATIONS - HRII RAW SPECTRA", "description": "This data set contains raw, 1.05- to 4.8-micron spectra of Mars acquired by the High Resolution Infrared Spectrometer (HRII) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, spectra were acquired twice per hour.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-2-epoxi-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:26.472526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-M-HRII-3/4-EPOXI-MARS-V1.0", "title": "EPOXI MARS OBSERVATIONS - HRII CALIBRATED SPECTRA", "description": "This dataset contains calibrated, 1.05- to 4.8-micron spectra of Mars acquired by the High Resolution Infrared Spectrometer (HRII) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and spectra were acquired twice every two hours.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hrii-3_4-epoxi-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:27.505366", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-M-HRIV-2-EPOXI-MARS-V1.0", "title": "EPOXI MARS OBSERVATIONS - HRIV RAW IMAGES", "description": "This data set contains raw narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-2-epoxi-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:28.550815", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "4-EPOXI-MARS-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains calibrated narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-3_4-epoxi-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:29.607435", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-M-HRIV-3/4-EPOXI-MARS-V2.0", "title": "EPOXI MARS OBSERVATIONS - HRIV CALIBRATED IMAGES", "description": "This dataset contains calibrated narrow band filter images (350-950 nm) images of Mars acquired by the Deep Impact High Resolution Visible CCD (HRIV) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours. HRIV images were acquired once per hour with the filters centered on 350, 750 and 950 nm, whereas the 450-, 550-, 650-, and 850-nm data were taken every 15 minutes. Version 2.0 includes the application of a horizontal destriping process and revised electronic crosstalk calibration files.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-m-hriv-3_4-epoxi-mars-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:30.482635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-M-MRI-2-EPOXI-MARS-V1.0", "title": "EPOXI MARS OBSERVATIONS - MRI RAW IMAGES", "description": "This data set contains raw 750-nm filter images of Mars acquired by the Deep Impact Medium Resolution Visible CCD (MRI) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to provide context for the spectral scans.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-2-epoxi-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:31.477791", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-M-MRI-3/4-EPOXI-MARS-V2.0", "title": "EPOXI MARS OBSERVATIONS - MRI CALIBRATED IMAGES", "description": "This dataset contains calibrated 750-nm filter images of Mars acquired by the Deep Impact Medium Resolution Visible CCD (MRI) for the EPOCh project during the second cruise phase of the EPOXI mission. One set of observations was acquired on 20-21 November 2009 to characterize Mars as an analog for extrasolar planets. The observing period lasted approximately 24 hours, and one MRI image was taken simultaneously with the first north/south scan of the HRI IR spectrometer at half-hour intervals to provide context for the spectral scans. Version 2.0 includes the application of a horizontal destriping process, new absolute calibration constants for filters, and revised electronic crosstalk calibration files.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-m-mri-3_4-epoxi-mars-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:33.489183", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-X-HRIV-2-EPOXI-EXOPLANETS-V1.0", "title": "EPOXI EXOPLANET TRANSIT OBS - HRIV RAW IMAGES", "description": "This data set set contains raw images of eight known transiting extrasolar planetary systems (hot Jupiters) acquired by the Deep Impact High Resolution Visible CCD during the EPOCh phase of the EPOXI mission. From 22 January through 31 August 2008 the HRIV CCD collected over 172,000 usable, photometric-quality visible light images of these transiting planet systems: HAT-P-4, HAT-P-7, GJ 436, TrES-2, TrES-3, XO-2, XO-3, and WASP-3. Time series of continuous 50-second integrations were used with the clear filter (#6) to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses. An exception was XO-3 which was only observed briefly due to the spacecraft entering safe mode. The transiting planet systems were observed in the integrated light of the planet and star; no spatially resolved image of the planet was possible. This data set also contains a time series of raw clear filter (#1) images of known exoplanet transit microlensing target MOA-2009-BLG-266 acquired by HRIV on 5-8 October 2009 for EPOCh.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-2-epoxi-exoplanets-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:34.492977", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-X-HRIV-3-EPOXI-EXOPLANETS-V1.0", "title": "EPOXI EXOPLANET TRANSIT OBS - HRIV CALIBRATED IMAGES", "description": "This data set set contains calibrated images of eight known transiting extrasolar planetary systems (hot Jupiters) acquired by the Deep Impact High Resolution Visible CCD during the EPOCh phase of the EPOXI mission. From 22 January through 31 August 2008 the HRIV CCD collected over 172,000 usable, photometric-quality visible light images of these transiting planet systems: HAT-P-4, HAT-P-7, GJ 436, TrES-2, TrES-3, XO-2, XO-3, and WASP-3. Time series of continuous 50-second integrations were used with the clear filter (#6) to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses. An exception was XO-3 which was only observed briefly due to the spacecraft entering safe mode. The transiting planet systems were observed in the integrated light of the planet and star; no spatially resolved image of the planet was possible. This data set also contains a time series of raw clear filter (#1) images of known exoplanet transit microlensing target MOA-2009-BLG-266 acquired by HRIV on 5-8 October 2009 for EPOCh.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-3-epoxi-exoplanets-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:35.493667", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DIF-X-HRIV-5-EPOXI-EXOPLANETS-PHOT-V1.0", "title": "EPOXI EXOPLANET TRANSIT OBS - HRIV STELLAR PHOTOMETRY", "description": "This data set contains aperture photometry of known transiting planet systems GJ 436, HAT-P-4, HAT-P-7, TrES-2, TrES-3, and WASP-3 derived from radiance calibrated, clear #6 filtered images acquired by the Deep Impact High Resolution Visible CCD from 22 January through 31 August 2008 during the EPOCh phase of the EPOXI mission. The photometry data were derived from time series of continuous 50-second integrations used to observe each system for about three weeks, typically covering five or more transits as well as secondary eclipses.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dif-x-hriv-5-epoxi-exoplanets-phot-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:36.506034", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-C-ITS-2-9P-ENCOUNTER-V1.0", "title": "DEEP IMPACT ENCOUNTER RAW ITS IMAGES", "description": "This volume contains raw 9P/Tempel 1 images and science calibration data acquired by the Deep Impact Impactor Targeting Sensor's Visible CCD during the encounter phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:37.498053", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-C-ITS-2-NAV-9P-ENCOUNTER-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains raw comet 9P/Tempel 1 and calibration images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected from 6 May to 4 July 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-nav-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:38.569833", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-C-ITS-2-NAV-9P-ENCOUNTER-V1.1", "title": "DIIVNV_2001: Images from 2005-05-06 to 07-04", "description": "This data set contains raw comet 9P/Tempel 1 and calibration images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected from 6 May to 4 July 2005. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-2-nav-9p-encounter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:39.565212", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-C-ITS-3-NAV-9P-ENCOUNTER-V1.0", "title": "DIIVNV_3001: Images from 2005-07-03 TO 07-04", "description": "This data set contains calibrated images of comet 9P/Tempel 1 acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the encounter phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft as well as for scientific investigations. These data were collected on 3-4 July 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3-nav-9p-encounter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:40.669384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-C-ITS-3/4-9P-ENCOUNTER-V3.0", "title": "DIIV9P_3201: Data from 2005-07-03 to 07-04, V3.0", "description": "This dataset contains calibrated images of comet 9P/Tempel 1 acquired by the Impactor Targeting Sensor Visible CCD (ITS) after the impactor was released from the flyby spacecraft on 03 July 2005 during the Deep Impact mission. Version 3.0 was calibrated by the EPOXI mission pipeline and includes corrected observation times with a maximum difference of about 40 milliseconds, a change to decompress the camera's zero-DN lookup table entry to the top of its range and flag the affected pixels as saturated, and the replacement of the I-over-F data products by multiplicative constants for converting radiance products to I-over-F.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-c-its-3_4-9p-encounter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:43.508245", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-CAL-ITS-2-9P-CRUISE-V1.0", "title": "DEEP IMPACT CRUISE RAW ITS CALIB IMAGES", "description": "This volume contains raw images for science calibrations acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission to comet 9P/Tempel 1. This volume does not contain images of the comet.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-9p-cruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:44.512232", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-CAL-ITS-2-GROUND-TV3-V1.0", "title": "DEEP IMPACT THERMAL-VACUUM 3 DATA, HRII INSTRUMENT", "description": "This volume contains image data acquired by the Impactor Targeting Sensor's Visual CCD (ITS) during the third preflight thermal-vacuum test (TV3) of the Deep Impact instruments, from 2003-01-16 through 2003-01-30. Data in the volume supports the calibration of the ITS instrument.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-ground-tv3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:45.511713", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-CAL-ITS-2-NAV-9P-CRUISE-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains raw calibration and test images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft. These data were collected from 7 April to 30 April 2005. The comet was not imaged during cruise.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-nav-9p-cruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:46.583901", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DII-CAL-ITS-2-NAV-9P-CRUISE-V1.1", "title": "DIIVNV_1001: Images from 2005-04-07 to 04-30", "description": "This data set contains raw calibration and test images acquired by the Deep Impact Impactor Targeting Sensor Visible CCD during the cruise phase of the mission. These observations were used for optical and autonomous navigation (NAV) of the impactor spacecraft. These data were collected from 7 April to 30 April 2005. The comet was not imaged during cruise. In this version 1.1 of the data set, the values for the INTEGRATION_DURATION keyword in the PDS data labels were corrected. This revised data set supersedes version 1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/dii-cal-its-2-nav-9p-cruise-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:47.516560", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-I0034-3-UH22M-TMPL1-V1.0", "title": "DI UH22M RDR TMPL1 IMAGES/PHOT 1997-XXXX", "description": "This volume set currently contains the data from 1997 through Feb 2000 for the UH2.2M Reduced 9P/Tempel 1 Images/Astrometry V1.0 data set, DI/EAR-C-I0034-3-UH22M-TMPL1-V1.0, in support of the Deep Impact mission. This data set is an ongoing, cumulative archive.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0034-3-uh22m-tmpl1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:48.514409", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0", "title": "IRTF NEAR-IR IMAGES OF COMET 9P", "description": "This volume contains the data for the IRTF Near-IR Imaging of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0046-2-irtf-nirimg-tmpl1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:49.525731", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-I0046-2-IRTF-NIRSPEC-TMPL1-V1.0", "title": "IRTF NEAR-IR SPECTRA OF COMET 9P", "description": "This volume contains the data for the IRTF Near-IR Spectroscopy of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0046-2-IRTF-NIRSPEC-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0046-2-irtf-nirspec-tmpl1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:50.571758", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0", "title": "IRTF MID-IR IMAGES OF COMET 9P", "description": "This volume contains the data for the IRTF Mid-IR Imaging of Comet 9P-Tempel 1 V1.0 data set, ID: DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0. The data set was submitted by Schelte Bus. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0071-2-irtf-mir-tmpl1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:51.580859", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-I0276-2/3-MARTIR15M-TMPL1-V1.0", "title": "SBN 2008 SUPPORT ARCHIVES DELIVERY VOLUME", "description": "This volume contains the data for the San Pedro Martir Optical Imaging of 9P/Tempel 1 V1.0 data set, ID: DI/EAR-C-I0276-2/3-MARTIR15M-TMPL1-V1.0. The data set was submitted by Kevin Walsh. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-i0276-2_3-martir15m-tmpl1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:52.528464", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-KECK1LWS-3-9P-IMAGES-PHOT-V1.0", "title": "KECK I LWS IMAGES AND PHOTOMETRY OF COMET 9P", "description": "This volume contains raw and reduced mid-infrared images and photometry of comet 9P/Tempel 1, the target of the Deep Impact mission. Images were acquired on the night of 21 August 2000, about 7.5 months after perihelion, by Y. Fernandez, C. Lisse, M. A'Hearn and M. Belton using the Long Wavelength Spectrometer instrument at the Keck I telescope. Data in this volume supports analysis of the size and albedo of the nucleus of 9P/Tempel 1 in support of the Deep Impact mission. Version 2 of this volume corrects some minor file naming problems and omissions in the catalog/ directory.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-keck1lws-3-9p-images-phot-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:53.536127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-LO72CCD-3-9P-IMAGES-PHOT-V1.0", "title": "LOWELL 72-IN IMAGES AND PHOTOMETRY OF COMET 9P", "description": "This volume contains broadband R images and derived photometry of comet 9P/Tempel 1, the target of the Deep Impact mission. The data were acquired by M. Buie at the Perkins 72-inch telescope of the Lowell Observatory during 11 nights of observing from 28 September 2000 through 14 January 2001, about 8.5 to 12.5 months after the comet passed through perihelion on 2 January 2000. The data in this volume support the analysis of the rotation period and dust environment of comet 9P/Tempel 1 for the Deep Impact mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lo72ccd-3-9p-images-phot-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:54.537553", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-LPLCCD-3-MTBG61-TMPL1-V1.0", "title": "MT BIGELOW 61-INCH IMAGES OF TEMPEL 1 - DATA SAFE", "description": "Observations of 9P/Tempel 1 made with the 61-inch Kuiper telescope on Mt. Bigelow by Uwe Fink in 1994: six images taken over five nights. Insufficient documentation to bring the data to review.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-lplccd-3-mtbg61-tmpl1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:55.526765", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0", "title": "RAW KPNO/SQIID IMAGES OF 9P/TEMPEL 1", "description": "This volume contains the data for the Near-infrared images of comet 9P/Tempel 1 V1.0 data set, ID: DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0. The data set was submitted by Matthew Knight. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_ear-c-sqiid-3-9pnirimages-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:56.539574", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/IRAS-C-FPA-5-9P-IMAGES-V1.0", "title": "IRAS IMAGES OF COMET 9P", "description": "This volume contains images of comet 9P/Tempel, from its 1983 apparition, as derived from 12-, 25-, 60-, and 100-micron observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS): - Radiance images, noise maps, and effective resolution tables derived from reprocessed IRAS Additional (Pointed) Observations. - Radiance images and noise maps derived from reprocessed IRAS Sky Survey Atlas (ISSA) Scans. - JPEG-rendered images of the dust trail based on data in the ISSA Reject Set. These images are provided as documentation for future reference. These data support the analysis of the dust environment of Tempel 1 for the NASA Deep Impact Mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-images-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:57.543390", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DI/IRAS-C-FPA-5-9P-PHOT-V1.0", "title": "PHOTOMETRY OF IRAS IMAGES OF COMET 9P", "description": "This volume contains 12-, 25-, 60-, and 100-micron photometry of the dust coma of comet 9P/Tempel 1 during its 1983 apparition. The photometry was derived from reconstructed observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS). The types of observations were Sky Survey Atlas (ISSA) scans and Additional (Pointed) Observations. A comprehensive discussion of these data was provided by Carey Lisse and included as documentation. The reconstructed images used for this photometric analysis are available in the PDS data set DI/IRAS-C-FPA-5-9P-IMAGES-V1.0. These data support the analysis of the dust environment of Tempel 1 for the NASA Deep Impact Mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/di_iras-c-fpa-5-9p-phot-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:58.548948", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DS1-C-IDS-3-RDR-BORRELLY-V1.0", "title": "DS1 BORRELLY ENCOUNTER IDS DATA", "description": "This volume has reduced data from the IDS plasma wave spectrometer (burst and instantaneous) during the Borrelly encounter on Sept 22, 2001.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-ids-3-rdr-borrelly-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:06:59.550142", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DS1-C-MICAS-2-EDR-VISCCD-BORRELLY-V1.0", "title": "DS1 BORRELLY ENCOUNTER MICAS DATA - FITS FILES", "description": "This volume contains data produced by the MICAS instrument during the Deep Space 1 mission and converted to FITS files by SBN personnel. Attempts to get sufficient documentation to make the data archivable have, to date, failed. The scientific quality of the data is unclear. The data are being saved in the hopes that additional information may be forthcoming.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-2-edr-visccd-borrelly-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:00.550766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DS1-C-MICAS-3-RDR-VISCCD-BORRELLY-V1.0", "title": "DS1 BORRELLY ENCOUNTER MICAS DATA - WEB SITE", "description": "Web site of the original MICAS data site, downloaded for preservation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-3-rdr-visccd-borrelly-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:01.578132", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DS1-C-MICAS-5-BORRELLY-DEM-V1.0", "title": "SBN DELIVERY VOLUME 2, 2005", "description": "This volume is a delivery vehicle for the digital elevation models generated from MICAS data take during the Deep Space 1 flyby of comet 19P/Borrelly. Version 2 of this volume includes minor corrections to the 'reference.cat' file in the catalog/ subdirectory.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-micas-5-borrelly-dem-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:02.625894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "DS1-C-PEPE-2-EDR-BORRELLY-V1.0", "title": "DS1 BORRELLY ENCOUNTER PEPE DATA", "description": "This volume contains the raw data archive associated with the PEPE instrument during the DS1 Borrelly flyby. Version 2 of this volume includes minor format corrections to the 'reference.cat' and 'pepe.cat' files in the catalog/ subdirectory.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ds1-c-pepe-2-edr-borrelly-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:03.643537", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-5-DDR-PCC-V1.0", "title": "PHYSICAL CHARACTERISTICS OF COMETS DELIVERY VOLUME", "description": "This volume contains the data for the Physical Characteristics of Comets data set, ID: EAR-C-5-DDR-PCC-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-5-ddr-pcc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:04.559114", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-CCD-3-EDR-HALLEY-OUTBURST-CT-V1.0", "title": "CTIO CFCCD IMAGES OF COMET 1P/HALLEY OUTBURST", "description": "Data extracted from the HAL_1001&2 volumes, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-ct-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:05.560118", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-CCD-3-EDR-HALLEY-OUTBURST-ESO-V1.0", "title": "ESO CCD IMAGES OF COMET 1P/HALLEY OUTBURST", "description": "Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-eso-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:06.562804", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-CCD-3-EDR-HALLEY-OUTBURST-UH-V1.0", "title": "UH CCD IMAGES OF COMET 1P/HALLEY OUTBURST", "description": "Data extracted from the HAL_1001&2 volumes, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-edr-halley-outburst-uh-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:07.567225", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-CCD-3-RDR-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - IMAGES", "description": "Ground-based images obtained to support the Giotto encounter (July 10, 1992) with Comet Grigg-Skjellerup plus utilities to manipulate the files. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different data sets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccd-3-rdr-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:08.563662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-CCDIMGR-3-MEECH-19P-BORRELLY-V1.0", "title": "IMAGES OF 19P/BORRELLY 1 BY K. MEECH", "description": "This volume contains FITS images of comet 19P/Borrelly 1 (1904 Y2) obtained by K. Meech on 20 nights over the period 1987-08-21 to 2002-02-03, with photometry calculated for 3 of those nights. Insufficien support was provided by the observer to prepare these data for review or archiving. The images are being saved in the hopes this situation may change at some time in the future.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ccdimgr-3-meech-19p-borrelly-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:09.566272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-CFCCD-5-RDR-CTIO-BORR-PHOTOM-V1.0", "title": "CTIO OBSERVATIONS OF P/BORRELLY 1, VOL 1", "description": "This volume is a delivery vehicle for photometric observations of comet 19P/Borrelly made at the Cerro Tololo Inter-American Observatory during the period 2000-07-28 to 2000-08-01.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-cfccd-5-rdr-ctio-borr-photom-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:10.569437", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V1.0", "title": "COMET NUCLEI PROPERTIES DELIVERY VOLUME", "description": "This volume contains the data for the Properties of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-properties-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:11.570548", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0", "title": "COMET NUCLEI PROPERTIES DELIVERY VOLUME", "description": "This volume contains the data for the Properties of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node. Version 2.0 of this data set was created due to an addition of more recent data since version 1.0 was released in 2005 and to correct typographical errors in comet names, discovery IDs, and references used in several data products.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-properties-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:12.591715", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0", "title": "COMET2_ROT DELIVERY VOLUME", "description": "This volume contains the data for the Rotation of Comet Nuclei data set, ID: EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-comet-nuc-rotation-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:13.642343", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-COMPIL-5-DB-COMET-POLARIMETRY-V1.0", "title": "DATABASE OF COMET POLARIMETRY DELIVERY VOLUME", "description": "This volume contains the data for the Database of Comet Polarimetry data set, ID: EAR-C-COMPIL-5-DB-COMET-POLARIMETRY-V1.0. The data set was submitted by Nikolai Kiselev.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-db-comet-polarimetry-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:14.650368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-COMPIL-5-LIGHTCURVES-V1.0", "title": "LIGHTCURVES DELIVERY VOLUME", "description": "This volume contains the data for the Survey of Comet Lightcurves V1.0 data set, ID: EAR-C-COMPIL-5-LIGHTCURVES-V1.0. The data set was submitted by Kenneth Melville. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-compil-5-lightcurves-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:15.579017", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0", "title": "HI-RES ATLAS OF 122P/DEVICO DELIVERY VOLUME", "description": "This volume contains the data for the High Spectral Resolution Atlas of Comet 122P?DeVico, ID: EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-cs2-5-rdr-devico-atlas-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:16.582427", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-I0039-2-SBN0007/KECKIIESI-V1.0", "title": "SBN DELIVERY VOLUME 6, 2005", "description": "This is the delivery volume for the data set identified above.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0039-2-sbn0007_keckiiesi-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:17.584491", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0", "title": "IMGBORRELLYKPNO DELIVERY VOLUME", "description": "This volume contains the data for the Images of comet 19P/Borrelly from 9/21-23, 2001 V1.0 data set, ID: EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0065-2-imgborrellykpno-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:18.582510", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0", "title": "IMGTEMPEL1KPNO DELIVERY VOLUME", "description": "This volume contains the data for the Images of comet 9P/Tempel 1 from February to June 2005 V1.0 data set, ID: EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0065_i1084-3-imgtempel1kpno-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:19.585964", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-I0655-2/3-MOSAICTEMPEL1-V1.0", "title": "MOSAICTEMPEL1 DELIVERY VOLUME", "description": "This volume contains the data for the Images of 9P/Tempel 1 from 2005 around the DI Encounter V1.0 data set, ID: EAR-C-I0655-3-MOSAICTEMPEL1-V1.0. The data set was submitted by Beatrice Mueller. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-i0655-2_3-mosaictempel1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:20.593508", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0", "title": "MCD OBS COLUMN DENSITY OBS OF BORRELLY DELIVERY VOLUME", "description": "This volume contains the data for the McDOnald Observatory Column Density Observations of 19P/Borrelly data set, ID: EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-ids_lcs-3-rdr-borrelly-mcdnld-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:21.595158", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-IGI-3-EDR-BORRELLY-V1.0", "title": "SBN DELIVERY VOLUME 4, 2005", "description": "This is VERSION 2 of the SA0504_0001 delivery volume. It should completely supersede VERSION 1, which was discovered (after delivery) to contain corrupted data files.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-igi-3-edr-borrelly-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:22.594157", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-IRPHOT-2-RDR-HALLEY-ADDENDA-V1.0", "title": "IR PHOTOMERY OF COMET 1P/HALLEY BY GEHRZ & NEY", "description": "Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-irphot-2-rdr-halley-addenda-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:23.597481", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0", "title": "9PTMPL1 DELIVERY VOLUME", "description": "This volume contains the data for the McDonald Observatory 9P/Tempel 1 Data V1.0 data set, ID: EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0. The data set was submitted by Anne Raugh. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-lcs-5-9ptmpl1-spectra-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:24.649395", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-MCDIDS-3-RDR-MCDNLD-V1.0", "title": "SBN DELIVERY VOLUME 3, 2005", "description": "This is the delivery volume for the data set identified above.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-mcdids-3-rdr-mcdnld-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:25.661551", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-PHOT-3-RDR-LOWELL-COMET-DB-V1.0", "title": "LOWELL COMETARY DATA BASE DELIVERY VOLUME", "description": "This volume contains the data for the Lowell Observatory Cometary Data Base data set, ID: EAR-C-PHOT-3-RDR-LOWELL-COMET-DB-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-phot-3-rdr-lowell-comet-db-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:26.602027", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-C-PHOT-5-RDR-LOWELL-COMET-DB-PR-V1.0", "title": "LOWELL COMET DB - PRODUCTION RATES DELIVERY VOLUME", "description": "This volume contains the data for the Lowell Observatory Cometary Data Base - Production Rates data set, ID: EAR-C-PHOT-5-RDR-LOWELL-COMET-DB-PR-V1.0. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node and NSSDC", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-c-phot-5-rdr-lowell-comet-db-pr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:27.608207", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-J/C-HSCCD-3-RDR-SL9-V1.0", "title": "VOLUME 1017", "description": "This volume contains University of Maryland photometer data and high speed CCD images obtained at 5 remote locations by a Lowell Observatory led consortium.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-j_c-hsccd-3-rdr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:28.603173", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-J/SA-HSOTP-2-EDR-SL9-V1.0", "title": "VOLUME 1018", "description": "This volume contains University of Maryland photometer data and high speed CCD images obtained at 5 remote locations by a Lowell Observatory led consortium.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-j_sa-hsotp-2-edr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:29.612651", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "EAR-X-I2041-5-CH3DICESPEC-V1.0", "title": "CH3DICESPEC DELIVERY VOLUME", "description": "This volume contains the data for the CH3D ice absorption coefficients V1.0 data set, ID: EAR-X-I2041-5-CH3DICESPEC-V1.0. The data set was submitted by Will Grundy. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ear-x-i2041-5-ch3dicespec-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:30.614227", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ESO-C-EMMI-3-RDR-SL9-V1.0", "title": "VOLUME 1013", "description": "This volume contains images taken with the EMMI instrument at the New Technology Telescope (NTT) on La Silla.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/eso-c-emmi-3-rdr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:31.617061", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ESO-J-IRSPEC-3-RDR-SL9-V1.0", "title": "VOLUME 1014", "description": "This volume contains images taken with the IRSPEC instrument at the New Technology Telescope (NTT) on La Silla.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/eso-j-irspec-3-rdr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:32.620639", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ESO-J-SUSI-3-RDR-SL9-V1.0", "title": "VOLUME 1015", "description": "This volume contains images taken with the SUSI instrument at the New Technology Telescope (NTT) on La Silla.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/eso-j-susi-3-rdr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:33.620160", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-DID-3-RDR-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - DID", "description": "Data from the GIOTTO Dust Impact Detector instrument taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:34.622895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-DID-3-RDR-HALLEY-V1.0", "title": "GIOTTO'S DID DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-did-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:35.661912", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-EPA-3-RDR-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - EPA", "description": "Data from the GIOTTO Energetic Particle Analyzer taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-epa-3-rdr-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:36.706550", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-GRE-1-EDR-HALLEY-ADDENDA-V1.0", "title": "GIOTTO RAW GRE (RADIO) DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-1-edr-halley-addenda-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:37.624898", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-GRE-3-RDR-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - GRE", "description": "Data from the GIOTTO Radioscience Experiment taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:38.627115", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-GRE-3-RDR-HALLEY-V1.0", "title": "GIOTTO RADIOSCIENCE DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-gre-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:39.628494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-HMC-3-RDR-HALLEY-V1.0", "title": "GIOTTO HALLEY MULTICOLOUR CAMERA DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-hmc-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:40.631174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-IMS-3-RDR-HERS-HALLEY-V1.0", "title": "GIOTTO IMS/HERS DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-hers-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:41.639159", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-IMS-3-RDR-HIS-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENCOUNTER WITH COMET 26P/GRIGG-SKJELLERUP - IMS", "description": "Data from the GIOTTO Ion Mass Spectrometer (IMS) High-Intensity SPectrometer (HIS) taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:42.643171", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-IMS-3-RDR-HIS-HALLEY-V1.0", "title": "GIOTTO IMS/HIS DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ims-3-rdr-his-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:43.643808", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-JPA-3-RDR-IIS-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - JPA IIS", "description": "Results from the GIOTTO Johnstone Particle Analyser (JPA) Implanted Ion Sensor (IIS) experiment taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-3-rdr-iis-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:44.644701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-JPA-4-DDR-HALLEY-MERGE-V1.0", "title": "GIOTTO PARTICLE ANALYZER MERGED DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa-4-ddr-halley-merge-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:45.646350", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-JPA/MAG-4-RDR-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - JPA/MAG", "description": "Combined results from the GIOTTO particle analyser (JPA) and magnetometer (MAG) experiments taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-jpa_mag-4-rdr-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:46.669957", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-MAG-4-RDR-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - MAG", "description": "Results from the GIOTTO Triaxial Fluxgate magnetometer (MAG) experiment, taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:47.716373", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-MAG-4-RDR-HALLEY-8SEC-V1.0", "title": "GIOTTO MAGNETOMETER DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-mag-4-rdr-halley-8sec-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:48.729612", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-NMS-4-HALLEY-V1.0", "title": "GIOTTO'S ENCOUNTER WITH COMET HALLEY - NMS", "description": "This volume contains a dataset of Neutral Mass Spectra records, from the GIOTTO spacecraft mission for Comet Halley. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-nms-4-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:49.652186", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-OPE-3-RDR-GRIGG-SKJELL-V1.0", "title": "GIOTTO'S ENC. WITH COMET 26P/GRIGG-SKJELLERUP - OPE", "description": "Results from the GIOTTO Optical Probe Experiment (OPE), taken during the extended mission to Comet Grigg-Skjellerup. Encounter was July 10, 1992. (SAVED DATA) This volume is a re-packaging into a single-dataset volume data from a single original volume which included nine different datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-grigg-skjell-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:50.660020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-OPE-3-RDR-HALLEY-V1.0", "title": "GIOTTO OPTICAL PROBE DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-ope-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:51.660801", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GIO-C-PIA-3-RDR-HALLEY-V1.0", "title": "GIOTTO PARTICLE IMPACT ANALYZER DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/gio-c-pia-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:52.661770", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J-NIMS-4-ADR-SL9IMPACT-V1.0", "title": "VOLUME 1001", "description": "This volume contains the data for the GO NIMS Tabular Data from the SL9 Impact with Jupiter v1.0 data set, ID: GO-J-NIMS-4-ADR-SL9IMPACT-V1.0. The NIMS data is presented as both derived reflectance and raw EDR data of Jupiter during the Comet Shoemaker-Levy 9 impact events in July 1994.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/go-j-nims-4-adr-sl9impact-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:53.666341", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J-PPR-3-EDR-SL9-G/H/L/Q1-V1.0", "title": "VOLUME 1002", "description": "This volume contains the data for the GO JUPITER/SHOEMAKER-LEVY 9 PPR CALIB FRAG G/H/L/Q1 V1.0 data set, ID: GO-J-PPR-3-EDR-SL9-G/H/L/Q1-V1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/go-j-ppr-3-edr-sl9-g_h_l_q1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:54.667726", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J-SSI-2-REDR-SL9-V1.0", "title": "VOLUME 1003", "description": "This volume contains the data for the Galileo Orbital Operations Solid State Imaging 2 Raw EDR V1 data set, ID: GO-J-SSI-2-REDR-SL9-V1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/go-j-ssi-2-redr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:55.670544", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J-UVS-2-EDR-SL9-V1.0", "title": "VOLUME 1004", "description": "This volume contains the data for the GO UVS Tabular Data from the SL9 Impact with Jupiter v1.0 data set, ID: GO-J-UVS-2-EDR-SL9-V1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-2-edr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:56.671852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "GO-J-UVS-3-RDR-SL9-G-FRAGMENT-V1.0", "title": "VOLUME 1005", "description": "This volume contains the data for the GO UVS Tabular Data from the SL9-G Impact with Jupiter v1.0 data set, ID: GO-J-UVS-3-RDR-SL9-G-FRAGMENT-V1.0.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/go-j-uvs-3-rdr-sl9-g-fragment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:57.688630", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "HST-J-WFPC2-3-SL9-IMPACT-V1.0", "title": "VOLUME 1016", "description": "This volume contains observations of Jupiter during the Comet Shoemaker-Levy 9 impact events by the Hubble Space Telescope in July 1994. These data consist of images by the Wide Field Planetary Camera 2 (WFPC2).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/hst-j-wfpc2-3-sl9-impact-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:58.732296", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ICE-C-EPAS-3-RDR-GIACOBIN-ZIN-V1.0", "title": "ICE EPAS DATA FOR COMET 21P/GIACOBINI-ZINNER", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ice-c-epas-3-rdr-giacobin-zin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:07:59.747398", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ICE-C-ICI-3-RDR-GIACOBINI-ZIN-V1.0", "title": "ICE ICI DIGITIZED DATA FOR COMET 21P/GIACOBINI-ZINNER", "description": "Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ice-c-ici-3-rdr-giacobini-zin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:00.679126", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ICE-C-MAG-3-RDR-GIACOBIN-ZIN-V1.0", "title": "ICE MAGNETOMETER DATA FOR COMET 21P/GIACOBINI-ZINNER", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ice-c-mag-3-rdr-giacobin-zin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:01.682454", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ICE-C-PLAWAV-3-RDR-ESP-GIACOBIN-ZIN-V1.0", "title": "ICE PLASMA WAVE E-FIELD DATA FOR COMET 21P/GIACOBINI-ZINNER", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-esp-giacobin-zin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:02.682870", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ICE-C-PLAWAV-3-RDR-MSP-GIACOBIN-ZIN-V1.0", "title": "ICE PLASMA WAVE B-FIELD DATA FOR COMET 21P/GIACOBINI-ZINNER", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ice-c-plawav-3-rdr-msp-giacobin-zin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:03.688753", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ICE-C-RADWAV-3-RDR-GIACOBIN-ZIN-V1.0", "title": "ICE RADIO WAVE DATA FOR COMET 21P/GIACOBINI-ZINNER", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ice-c-radwav-3-rdr-giacobin-zin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:04.685710", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ICE-C-SWPLAS-3-RDR-GIACOBIN-ZIN-V1.0", "title": "ICE SOLAR WIND PLASMA DATA FOR COMET 21P/GIACOBINI-ZINNER", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ice-c-swplas-3-rdr-giacobin-zin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:05.692106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ICE-C-ULECA-3-RDR-GIACOBINI-ZIN-V1.0", "title": "ICE ULECA DIGITIZED DATA FOR COMET 21P/GIACOBINI-ZINNER", "description": "Data extracted from the HAL_1001 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ice-c-uleca-3-rdr-giacobini-zin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:06.698429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-AMDR-N-NDR-HALLEY-V1.0", "title": "AMATEUR OBS. NET NON-DIGITAL DRAWINGS OF HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdr-n-ndr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:07.694234", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-AMDRAW-N-NDR-GZ-V1.0", "title": "AMATEUR OBS. NET NON-DIGITAL DRAWINGS OF COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amdraw-n-ndr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:08.699017", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-AMPG-N-NDR-HALLEY-V1.0", "title": "AMATEUR OBS. NET NON-DIGITAL PHOTOGRAPHY OF HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ampg-n-ndr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:09.738401", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-AMPHOT-N-NDR-GZ-V1.0", "title": "AMATEUR OBS. NET NON-DIGITAL PHOTOGRAPHS OF COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amphot-n-ndr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:10.786186", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-AMSP-N-NDR-HALLEY-V1.0", "title": "AMATEUR OBS. NET NON-DIGITAL SPECTROGRAMS OF HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amsp-n-ndr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:11.700223", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-AMVIS-2-RDR-CROMMELIN-V1.0", "title": "AMATEUR OBS. NET VISUAL MAG. ESTIMATES OF COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:12.704927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-AMVIS-2-RDR-GZ-V1.0", "title": "AMATEUR OBS. VISUAL MAG. ESTIMATES OF COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:13.709248", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-AMVIS-2-RDR-HALLEY-V1.0", "title": "AMATEUR OBS. NET VISUAL OBSERVATIONS OF HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-amvis-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:14.710023", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-ASTR-2-EDR-CROMMELIN-V1.0", "title": "ASTROMETRY NET ASTROMETRIC DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:15.712329", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-ASTR-2-EDR-GZ-V1.0", "title": "ASTROMETRY NET ASTROMETRIC DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:16.710586", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-ASTR-2-EDR-HALLEY-V1.0", "title": "ASTROMETRY NET DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:17.718894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-ASTR-2-EDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the data collected by the IHW Astrometry Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-astr-2-edr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:18.719460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRFCURV-3-EDR-HALLEY-V1.0", "title": "IR STUDIES NET FILTER CURVES FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:19.721546", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRFCURV-3-EDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the filter curves and filter set parameters for the infrared filters used in the International Halley Watch Infrared Studies Network data archive.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irfcurv-3-edr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:20.748020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRFTAB-2-RDR-CROMMELIN-V1.0", "title": "IR STUDIES NET FILTER CHARACTERISTICS FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:21.893691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRFTAB-2-RDR-GZ-V1.0", "title": "IR STUDIES NET FILTER CHARACTERISTICS FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-2-rdr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:22.807946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRFTAB-3-RDR-HALLEY-V1.0", "title": "IR STUDIES NET FILTER TABLES FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:23.738917", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRFTAB-3-RDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains filter set parameters for the infrared filters used in the International Halley Watch Infrared Studies Network data archive.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irftab-3-rdr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:24.734552", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRIMAG-3-EDR-GZ-V1.0", "title": "IR STUDIES NET IMAGE DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:25.736561", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRIMAG-3-EDR-HALLEY-V1.0", "title": "IR STUDIES NET IMAGE DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:26.736885", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRIMAG-3-EDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the infrared image data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-3-edr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:27.744668", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRIMAG-N-NDR-GZ-V1.0", "title": "IR STUDIES NET NULL IMAGE DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irimag-n-ndr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:28.739767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRPHOT-2-RDR-CROMMELIN-V1.0", "title": "IR STUDIES NET PHOTOMETRIC DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:29.743505", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRPHOT-2-RDR-GZ-V1.0", "title": "IR STUDIES NET PHOTOMETRIC DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-2-rdr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:30.738808", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRPHOT-3-RDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the infrared image data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irphot-3-rdr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:32.804037", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRPOL-2-RDR-GZ-V1.0", "title": "IR STUDIES NET POLARIMETRIC DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-2-rdr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:33.818880", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRPOL-3-RDR-HALLEY-V1.0", "title": "IR STUDIES NET IR POLARIMETRY DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:34.756862", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRPOL-3-RDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the infrared polarimetry data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irpol-3-rdr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:35.753005", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRSPEC-3-EDR-GZ-V1.0", "title": "IR STUDIES NET SPECTROSCOPIC DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:36.757750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRSPEC-3-EDR-HALLEY-V1.0", "title": "IR STUDIES NET IR SPECTRA DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:37.760442", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRSPEC-3-EDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the infrared spectroscopy data collected by the IHW Infrared Studies Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-3-edr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:38.761778", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-IRSPEC-N-NDR-HALLEY-V1.0", "title": "IR STUDIES NET IR SPECTRA NULL RESULTS FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-irspec-n-ndr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:39.770443", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-LSPN-2-DIDR-CROMMELIN-V1.0", "title": "LARGE-SCALE PHEN. NET IMAGE DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:40.765634", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-LSPN-2-DIDR-GZ-V1.0", "title": "LARGE-SCALE PHEN. NET IMAGE DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:41.773657", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-LSPN-2-DIDR-HALLEY-V1.0", "title": "LARGE-SCALE PHENOMENA NET IMAGE DATA FOR HALLEY", "description": "Data extracted from the CDROM volumes HAL_0001-HAL_0018, reorganized into a single data set volume but otherwise untouched. Summary information from the final volume is included here, as are improved ephemeris files and the complete LSPN submission table included in the HAL_0023. The DATA_PRODUCER listed below prepared the reorganized volume. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:42.774768", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-LSPN-2-DIDR-HALLEY-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains restored images from the International Halley Watch (IHW) Large Scale Phenomena Network (LSPN). The original LSPN data were saved in a compressed for on the IHW CD collection. For this data set they have been decompressed and stored at full resolution, and been provided with PDS PDS labels and catalog files that meet the current archiving standards. Version 2.0 of this data set contains uncompressed versions of the image data in FITS format.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-2-didr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:43.868626", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-LSPN-N-NDR-CROMMELIN-V1.0", "title": "LARGE-SCALE PHEN. NET NULL DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:44.865750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-LSPN-N-NDR-GZ-V1.0", "title": "LARGE-SCALE PHEN. NET NULL DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:45.775593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-LSPN-N-NDR-HALLEY-V1.0", "title": "LARGE-SCALE PHENOMENA NET NULL DATA FOR HALLEY", "description": "Data extracted from the CDROM volumes HAL_0019-HAL_0023, reorganized into a single data set volume but otherwise untouched. Summary information from the final volume is included here, as are improved ephemeris files and the complete LSPN submission table included in the HAL_0023. The DATA_PRODUCER listed below prepared the reorganized volume. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-lspn-n-ndr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:46.780361", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-MSNRDR-3-RDR-HALLEY-ETA-AQUAR-V1.0", "title": "IHW METEOR STUDIES NET ETA AQUA. RADAR DATA", "description": "Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-eta-aquar-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:47.784872", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-MSNRDR-3-RDR-HALLEY-ORIONID-V1.0", "title": "IHW METEOR STUDIES NET ORIONID RADAR DATA", "description": "Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnrdr-3-rdr-halley-orionid-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:48.785550", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-MSNVIS-3-RDR-HALLEY-ETA-AQUAR-V1.0", "title": "IHW METEOR STUDIES NET ETA AQUA. VISUAL DATA", "description": "Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-eta-aquar-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:49.792432", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-MSNVIS-3-RDR-HALLEY-ORIONID-V1.0", "title": "IHW METEOR STUDIES NET ORIONID VISUAL DATA", "description": "Data extracted from the 'mixed disk' HAL_0023, reorganized into a single data set volume but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-msnvis-3-rdr-halley-orionid-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:50.803000", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-NNSN-3-EDR-CROMMELIN-V1.0", "title": "NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:51.791832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-NNSN-3-EDR-GZ-V1.0", "title": "NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:52.798455", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-NNSN-3-EDR-HALLEY-ADDENDA-V1.0", "title": "IHW NNSN CORRECTED IMAGES OF COMET 1P/HALLEY", "description": "Data extracted from the HAL_1001 volume, reorganized into a single data set volume but otherwise untouched. Supporting files for the original data set are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-addenda-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:53.800739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-NNSN-3-EDR-HALLEY-V1.0", "title": "NEAR-NUCLEUS STUDIES NET IMAGE DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:54.825756", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-NNSN-3-EDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the images collected by the IHW Near-Nucleus Studies Network, formatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-nnsn-3-edr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:55.875188", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPFLX-3-RDR-CROMMELIN-V1.0", "title": "PHOTOM. & POLAR. NET FLUX DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:56.886208", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPFLX-3-RDR-GZ-V1.0", "title": "PHOTOM. & POLAR. NET FLUX DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:57.803445", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPFLX-3-RDR-HALLEY-V1.0", "title": "PHOT. & POL. NET PHOTOMETRIC FLUX DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:58.804690", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPFLX-3-RDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the photometric flux data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppflx-3-rdr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:08:59.811888", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPMAG-3-RDR-CROMMELIN-V1.0", "title": "PHOTOM. & POLAR. NET MAGNITUDE DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:00.821470", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPMAG-3-RDR-GZ-V1.0", "title": "PHOTOM. & POLAR. NET MAGNITUDE DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:01.815852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPMAG-3-RDR-HALLEY-V1.0", "title": "PHOT. & POL. NET MAGNITUDE DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:02.816395", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPMAG-3-RDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the photometric magnitude data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppmag-3-rdr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:03.817068", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPOL-3-RDR-CROMMELIN-V1.0", "title": "PHOTOM. & POLAR. NET POLARIMETRY DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:04.820005", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPOL-3-RDR-GZ-V1.0", "title": "PHOTOM. & POLAR. NET POLARIMETRY DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:05.837139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPOL-3-RDR-HALLEY-V1.0", "title": "PHOT. & POL. NET POLARIMETRY DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:06.888017", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPOL-3-RDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the polarimetric data collected by the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppol-3-rdr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:07.895973", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPSTOKE-3-RDR-HALLEY-V1.0", "title": "PHOT. & POL. NET STOKES PARAMETERS DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:08.833189", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-PPSTOKE-3-RDR-HALLEY-V2.0", "title": "IHW ASTROMETRY NETWORK", "description": "This volume contains the polarimetric data reported as Stokes parameters to the IHW Photometry and Polarimetry Network, reformatted for more convenient use and updated to current PDS standards.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-ppstoke-3-rdr-halley-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:09.833303", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSCN-3-EDR-CROMMELIN-V1.0", "title": "RADIO STUDIES NET CONTINUUM DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:10.831446", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSCN-3-EDR-HALLEY-V1.0", "title": "RADIO STUDIES NET CONTINUUM ARRAY DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:11.835378", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSCN-N-NDR-CROMMELIN-V1.0", "title": "RADIO STUDIES NET NULL CONTINUUM DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:12.847214", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSCN-N-NDR-GZ-V1.0", "title": "RADIO STUDIES NET NULL CONTINUUM DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:13.843486", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSCN-N-NDR-HALLEY-V1.0", "title": "RADIO STUDIES NET CONTINUUM SUMMARY DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rscn-n-ndr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:14.845904", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSOC-3-EDR-GZ-V1.0", "title": "RADIO STUDIES NET OCCULTATION DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:15.846090", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSOC-3-EDR-HALLEY-V1.0", "title": "RADIO STUDIES NET OCCULTATION GRIDDED DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoc-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:16.851597", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSOH-3-EDR-CROMMELIN-V1.0", "title": "RADIO STUDIES NET OH SPECTRAL LINE DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:17.894077", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSOH-3-EDR-GZ-V1.0", "title": "RADIO STUDIES NET OH SPECTRAL LINE DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:18.946579", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSOH-3-EDR-HALLEY-V1.0", "title": "RADIO STUDIES NET OH SPECTRAL LINE DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:19.860583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSOH-N-NDR-CROMMELIN-V1.0", "title": "RADIO STUDIES NET NULL OH LINE DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsoh-n-ndr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:20.851031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSRDR-3-EDR-HALLEY-V1.0", "title": "RADIO STUDIES NET RADAR DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsrdr-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:21.859000", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSSL-3-EDR-HALLEY-V1.0", "title": "RADIO STUDIES NET SPECTRAL LINE DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:22.866992", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSSL-N-NDR-CROMMELIN-V1.0", "title": "RADIO STUDIES NET NULL SPEC. LINE DATA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:23.860409", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSSL-N-NDR-GZ-V1.0", "title": "RADIO STUDIES NET NULL SPECTRAL LINE DATA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:24.877737", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSSL-N-NDR-HALLEY-V1.0", "title": "RADIO STUDIES NET SPECTRAL LINE NULL RESULTS FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rssl-n-ndr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:25.873105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-RSUV-2-EDR-HALLEY-V1.0", "title": "RADIO STUDIES NET U-V VISIBILITY DATA FOR HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-rsuv-2-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:26.868894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-2-DIDR-CROMMELIN-V1.0", "title": "SPEC. NET DIGITIZED 2-D SPECTRA (NULL) FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:27.879593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-2-DIDR-GZ-V1.0", "title": "SPEC. NET DIGITIZED 2-D SPECTRA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-didr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:28.903271", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-2-EDR-CROMMELIN-V1.0", "title": "SPEC. NET UNCALIBRATED IUE SPECTRUM OF COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:29.955831", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-2-EDR-GZ-V1.0", "title": "SPEC. NET UNCALIBRATED 1-D SPECTRA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:30.963348", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-2-EDR-HALLEY-V1.0", "title": "SPECTROSCOPY/SPECTROPHOT. NET UNREDUCED SPECTRA OF HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-2-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:31.878962", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-3-DIDR-HALLEY-V1.0", "title": "SPECTROSCOPY/SPECTROPHOT. NET DIGITIZED SPECTRA OF HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-didr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:32.889076", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-3-EDR-CROMMELIN-V1.0", "title": "SPEC. NET CALIBRATED SPECTRA FOR COMET CROMMELIN", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-crommelin-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:33.888736", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-3-EDR-GZ-V1.0", "title": "SPEC. NET CALIBRATED 1-D SPECTRA FOR COMET G-Z", "description": "Data extracted from the HAL_0024 volume, reorganized into single data set volumes but otherwise untouched. Supporting directories (documentation, etc.) from the disks have been duplicated in all the related data sets. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-gz-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:34.890410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IHW-C-SPEC-3-EDR-HALLEY-V1.0", "title": "SPECTROSCOPY/SPECTROPHOT. NET REDUCED SPECTRA OF HALLEY", "description": "Data extracted from the 'mixed disks' HAL_0019-HAL_0023, reorganized into single data set volumes but otherwise untouched. Directories common to all the original disks are included here. The DATA_PRODUCER listed below prepared the reorganized volumes. The original archive was produced by various people, largely working at Goddard Space Flight Center. Consult the documentation included for additional information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ihw-c-spec-3-edr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:35.899330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IRTF-J/C-NSFCAM-3-RDR-SL9-V1.0", "title": "VOLUME 1010", "description": "This volume contains samples of IRTF data, namely the NSFCAM collection.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/irtf-j_c-nsfcam-3-rdr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:36.895624", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IUE-C-LWP-3-EDR-IUECDB-V1.0", "title": "VOLUME 1", "description": "Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer LWP mode are presented. Version 2 of this volume contains minor format corrections to the target catalog files.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwp-3-edr-iuecdb-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:37.900206", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IUE-C-LWR-3-EDR-IUECDB-V1.0", "title": "VOLUME 2", "description": "Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer LWR mode is presented.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/iue-c-lwr-3-edr-iuecdb-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:38.899411", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IUE-C-SWP-3-EDR-IUECDB-V1.0", "title": "VOLUME 3", "description": "Data from 1978 through 1996 for both high and low dispersion from the International Ultraviolet Explorer SWP mode is presented. Version 2 of this volume contains minor format corrections to the target catalog files.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/iue-c-swp-3-edr-iuecdb-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:39.917583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IUE-J-LWP-3-EDR-SL9-V1.0", "title": "VOLUME 1006", "description": "This volume contains SL9 data from July 1993 through August 1994 for the International Ultraviolet Explorer LWP instruments; the data are high dispersion but low dispersion data for double exposures are included", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/iue-j-lwp-3-edr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:40.962193", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IUE-J-SWP-3-EDR-SL9-V1.0", "title": "VOLUME 1007", "description": "This volume contains SL9 data from July 1993 through August 1994 for the International Ultraviolet Explorer SWP instruments; the data are high dispersion but low dispersion data for double exposures are included", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/iue-j-swp-3-edr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:41.974558", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MSSSO-J-CASPIR-3-RDR-SL9-STDS-V1.0", "title": "VOLUME 1012", "description": "This volume contains CASPIR Near-IR images from July 17-22, 1994 of stars used as calibration objects.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-stds-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:42.909822", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MSSSO-J-CASPIR-3-RDR-SL9-V1.0", "title": "VOLUME 1011", "description": "This volume contains CASPIR Near-IR images from July 17-22, 1994", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/mssso-j-caspir-3-rdr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:43.918801", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-2-KEM1-V1.0", "title": "NEW HORIZONS ALICE KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-09-30T17:08:02.058 and 2018-12-31T06:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:44.917195", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-2-KEM1-V2.0", "title": "NEW HORIZONS ALICE KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-30T17:08:02.058 and 2019-01-01T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:45.920415", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-2-KEM1-V3.0", "title": "NEW HORIZONS ALICE KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-30T17:08:02.058 and 2019-03-03T23:08:02.208 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:46.915399", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-2-KEM1-V4.0", "title": "NEW HORIZONS ALICE KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-30T17:20:50.000 and 2019-08-31T22:46:10.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:47.926504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-2-KEM1-V5.0", "title": "NEW HORIZONS ALICE KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-30T17:20:50.000 and 2020-04-27T22:55:26.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:48.923094", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-2-KEM1-V6.0", "title": "NEW HORIZONS ALICE KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-09-30T17:20:50.058 and 2021-09-30T01:51:40.136 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-2-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:49.937839", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-3-KEM1-V1.0", "title": "NEW HORIZONS ALICE KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-09-30T17:08:02.058 and 2018-12-31T06:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:50.932223", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-3-KEM1-V2.0", "title": "NEW HORIZONS ALICE KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-30T17:08:02.058 and 2019-01-01T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:51.969910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-3-KEM1-V3.0", "title": "NEW HORIZONS ALICE KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-30T17:08:02.058 and 2019-03-03T23:08:02.208 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:52.985430", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-3-KEM1-V4.0", "title": "NEW HORIZONS ALICE KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-30T17:20:50.000 and 2019-08-31T22:46:10.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:53.939303", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-3-KEM1-V5.0", "title": "NEW HORIZONS ALICE KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-30T17:20:50.000 and 2020-04-27T22:55:26.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:54.941996", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-ALICE-3-KEM1-V6.0", "title": "NEW HORIZONS ALICE KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-09-30T17:20:50.058 and 2021-09-30T01:51:40.136 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-alice-3-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:55.935393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-2-KEM1-V1.0", "title": "NEW HORIZONS LEISA KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-20T18:08:02.017 and 2018-12-31T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:56.941693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-2-KEM1-V2.0", "title": "NEW HORIZONS LEISA KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:57.946515", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-2-KEM1-V3.0", "title": "NEW HORIZONS LEISA KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:58.948489", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-2-KEM1-V4.0", "title": "NEW HORIZONS LEISA KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:09:59.945713", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-2-KEM1-V5.0", "title": "NEW HORIZONS LEISA KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:00.956564", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-2-KEM1-V6.0", "title": "NEW HORIZONS LEISA KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-20T19:00:01.017 and 2019-09-05T12:09:15.393 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:01.947907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-2-KEM2-V1.0", "title": "NEW HORIZONS LEISA KEM2 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-31T18:36:03.148 and 2018-12-31T20:33:52.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-2-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:03.082156", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-3-KEM1-V1.0", "title": "NEW HORIZONS LEISA KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-20T18:08:02.017 and 2018-12-31T07:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:04.039318", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-3-KEM1-V2.0", "title": "NEW HORIZONS LEISA KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:05.046645", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-3-KEM1-V3.0", "title": "NEW HORIZONS LEISA KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-20T18:08:02.017 and 2019-01-01T05:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:05.981251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-3-KEM1-V4.0", "title": "NEW HORIZONS LEISA KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:06.973559", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-3-KEM1-V5.0", "title": "NEW HORIZONS LEISA KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-20T19:00:01.000 and 2019-09-05T12:09:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:07.979028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-3-KEM1-V6.0", "title": "NEW HORIZONS LEISA KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-20T19:00:01.017 and 2019-09-05T12:09:15.393 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:08.984214", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA-3-KEM2-V1.0", "title": "NEW HORIZONS LEISA KEM2 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-31T18:36:03.148 and 2018-12-31T20:33:52.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa-3-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:09.987782", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LEISA/MVIC-5-COMP-V1.0", "title": "NEW HORIZONS ARROKOTH ENCOUNTER COMPOSITION DATA", "description": "This volume contains the New Horizons Arrokoth Encounter composition science theme team derived composition quantities based on analysis of color and spectral data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-leisa_mvic-5-comp-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:10.986172", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V1.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:11.994113", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V2.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:13.004664", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V3.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:14.004230", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V4.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:15.045083", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V5.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:16.088222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM1-V6.0", "title": "NEW HORIZONS LORRI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:17.101959", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-2-KEM2-V1.0", "title": "NEW HORIZONS LORRI KEM2 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-2-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:18.022065", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V1.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-15T23:08:02.012 and 2018-12-31T10:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:19.024920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V2.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-15T23:08:02.012 and 2019-01-05T17:08:02.153 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:20.028604", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V3.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-15T23:08:02.012 and 2019-07-13T20:08:02.338 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:21.033793", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V4.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-16T00:00:00.000 and 2020-04-23T07:45:18.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:22.040840", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V5.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-16T00:00:00.000 and 2020-12-31T17:12:16.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:23.044790", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM1-V6.0", "title": "NEW HORIZONS LORRI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-16T00:00:00.025 and 2021-09-30T19:13:06.117 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:24.049661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI-3-KEM2-V1.0", "title": "NEW HORIZONS LORRI KEM2 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2019-01-01T02:54:11.978 and 2019-01-01T05:28:00.128 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri-3-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:25.060088", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-LORRI/MVIC-5-GEOPHYS-V1.0", "title": "NEW HORIZONS ARROKOTH ENCOUNTER GEOPHYSICAL DATA", "description": "This volume contains the New Horizons Arrokoth Encounter geology and geophysics science theme team derived shape models and maps of albedo, elevation, and modeled surface temperature.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-lorri_mvic-5-geophys-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:26.052286", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V1.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:27.103638", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V2.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:28.150939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V3.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:29.066852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V4.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:30.074950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V5.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:31.065966", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-2-KEM1-V6.0", "title": "NEW HORIZONS MVIC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-2-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:32.073468", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V1.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-30T23:08:02.027 and 2018-12-30T17:08:02.147 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:33.076713", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V2.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-30T23:08:02.027 and 2019-01-01T08:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:34.083516", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V3.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-30T23:08:02.027 and 2019-03-20T19:08:02.224 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:35.084937", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V4.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:36.087918", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V5.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-31T00:00:00.000 and 2019-09-02T23:12:14.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:37.095243", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-MVIC-3-KEM1-V6.0", "title": "NEW HORIZONS MVIC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-31T00:00:00.159 and 2019-09-02T23:12:14.390 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-mvic-3-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:38.110382", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-2-KEM1-V1.0", "title": "NEW HORIZONS PEPSSI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T15:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:39.172028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-2-KEM1-V2.0", "title": "NEW HORIZONS PEPSSI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T00:08:02.176 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:40.172787", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-2-KEM1-V3.0", "title": "NEW HORIZONS PEPSSI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T00:08:02.354 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:41.106644", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-2-KEM1-V4.0", "title": "NEW HORIZONS PEPSSI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:50:13.000 and 2020-04-28T23:57:07.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:42.113110", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-2-KEM1-V5.0", "title": "NEW HORIZONS PEPSSI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:50:13.000 and 2021-02-28T23:54:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:43.119086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-2-KEM1-V6.0", "title": "NEW HORIZONS PEPSSI KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-13T23:59:59.011 and 2022-04-10T23:59:59.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:44.125183", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-2-KEM2-V1.0", "title": "NEW HORIZONS PEPSSI KEM2 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-27T23:59:59.145 and 2023-04-23T23:59:59.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-2-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:45.125628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-3-KEM1-V1.0", "title": "NEW HORIZONS PEPSSI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T15:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:46.125180", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-3-KEM1-V2.0", "title": "NEW HORIZONS PEPSSI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T00:08:02.176 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:47.139840", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-3-KEM1-V3.0", "title": "NEW HORIZONS PEPSSI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T00:08:02.354 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:48.129467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-3-KEM1-V4.0", "title": "NEW HORIZONS PEPSSI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:50:13.000 and 2020-04-28T23:57:07.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:49.143988", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-3-KEM1-V5.0", "title": "NEW HORIZONS PEPSSI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:50:13.000 and 2021-02-28T23:54:15.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:50.171639", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-3-KEM1-V6.0", "title": "NEW HORIZONS PEPSSI KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-13T23:59:59.011 and 2022-04-10T23:59:59.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:51.224242", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-PEPSSI-3-KEM2-V1.0", "title": "NEW HORIZONS PEPSSI KEM2 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2018-12-27T23:59:59.145 and 2023-04-23T23:59:59.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-pepssi-3-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:52.230962", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-2-KEM1-V1.0", "title": "NEW HORIZONS REX KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the KEM1 VERSION 1.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 1.0 mission phase are 2018-09-08T23:25:00.000 and 2019-01-02T05:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:53.155615", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-2-KEM1-V2.0", "title": "NEW HORIZONS REX KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-09T09:08:02.037 and 2019-07-10T17:08:02.335 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:54.161691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-2-KEM1-V3.0", "title": "NEW HORIZONS REX KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-09T09:42:43.000 and 2020-02-11T20:56:39.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:55.156582", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-2-KEM1-V4.0", "title": "NEW HORIZONS REX KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-09T09:42:43.037 and 2021-02-15T13:53:07.720 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:56.166196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-2-KEM1-V5.0", "title": "NEW HORIZONS REX KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-09T09:42:43.037 and 2022-02-18T17:17:34.294 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-2-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:57.175567", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-3-KEM1-V1.0", "title": "NEW HORIZONS REX KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the KEM1 VERSION 1.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 1.0 mission phase are 2018-09-08T23:25:00.000 and 2019-01-02T05:08:02.149 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:58.177258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-3-KEM1-V2.0", "title": "NEW HORIZONS REX KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-09-09T09:08:02.037 and 2019-07-10T17:08:02.335 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:10:59.182849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-3-KEM1-V3.0", "title": "NEW HORIZONS REX KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-09-09T09:42:43.000 and 2020-02-11T20:56:39.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:00.186626", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-3-KEM1-V4.0", "title": "NEW HORIZONS REX KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-09-09T09:42:43.000 and 2021-02-15T13:53:06.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:01.190151", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-REX-3-KEM1-V5.0", "title": "NEW HORIZONS REX KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-09-09T09:42:43.037 and 2022-01-13T03:49:42.409 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-rex-3-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:02.231422", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-2-KEM1-V1.0", "title": "NEW HORIZONS SDC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T21:08:02.011 and 2018-12-01T16:08:02.119 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:03.273430", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-2-KEM1-V2.0", "title": "NEW HORIZONS SDC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T21:08:02.011 and 2019-01-20T23:08:02.167 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:04.290484", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-2-KEM1-V3.0", "title": "NEW HORIZONS SDC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T21:08:02.011 and 2019-07-28T01:08:02.352 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:05.206289", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-2-KEM1-V4.0", "title": "NEW HORIZONS SDC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T21:08:56.000 and 2020-03-29T12:10:30.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:06.206226", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-2-KEM1-V5.0", "title": "NEW HORIZONS SDC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T21:08:56.000 and 2021-02-06T21:47:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:07.211305", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-2-KEM1-V6.0", "title": "NEW HORIZONS SDC KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T21:08:56.011 and 2022-04-09T19:49:11.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:08.219839", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-2-KEM2-V1.0", "title": "NEW HORIZONS SDC KEM2 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-09T20:36:38.318 and 2023-04-02T00:04:55.660 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-2-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:09.224509", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-3-KEM1-V1.0", "title": "NEW HORIZONS SDC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T21:08:02.011 and 2018-12-01T16:08:02.119 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:10.233965", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-3-KEM1-V2.0", "title": "NEW HORIZONS SDC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T21:08:02.011 and 2019-01-20T23:08:02.167 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:11.225940", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-3-KEM1-V3.0", "title": "NEW HORIZONS SDC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T21:08:02.011 and 2019-07-28T01:08:02.352 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:12.234760", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-3-KEM1-V4.0", "title": "NEW HORIZONS SDC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T21:08:56.000 and 2020-03-29T12:10:30.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:13.239782", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-3-KEM1-V5.0", "title": "NEW HORIZONS SDC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T21:08:56.000 and 2021-02-06T21:47:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:14.293154", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-3-KEM1-V6.0", "title": "NEW HORIZONS SDC KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T21:08:56.011 and 2022-04-09T19:49:11.318 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:15.300711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SDC-3-KEM2-V1.0", "title": "NEW HORIZONS SDC KEM2 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-09T20:36:38.318 and 2023-04-02T00:04:55.660 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-sdc-3-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:16.246474", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-2-KEM1-V1.0", "title": "NEW HORIZONS SWAP KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T18:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:17.246565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-2-KEM1-V2.0", "title": "NEW HORIZONS SWAP KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T18:08:02.177 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:18.258052", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-2-KEM1-V3.0", "title": "NEW HORIZONS SWAP KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-31T18:08:02.355 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:19.262784", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-2-KEM1-V4.0", "title": "NEW HORIZONS SWAP KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T18:08:02.000 and 2020-04-29T18:08:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:20.265892", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-2-KEM1-V5.0", "title": "NEW HORIZONS SWAP KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:48:34.000 and 2021-03-01T18:08:01.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:21.267716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-2-KEM1-V6.0", "title": "NEW HORIZONS SWAP KEM1 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T18:08:02.011 and 2022-04-30T18:08:02.337 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:22.277850", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-2-KEM2-V1.0", "title": "NEW HORIZONS SWAP KEM2 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-24T18:08:03.332 and 2023-04-24T18:08:02.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-2-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:23.276179", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-3-KEM1-V1.0", "title": "NEW HORIZONS SWAP KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 mission phase are 2018-08-14T20:08:02.011 and 2018-12-31T18:08:02.148 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:24.286631", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-3-KEM1-V2.0", "title": "NEW HORIZONS SWAP KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 VERSION 2.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 2.0 mission phase are 2018-08-14T20:08:02.011 and 2019-01-30T18:08:02.177 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:25.308250", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-3-KEM1-V3.0", "title": "NEW HORIZONS SWAP KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 VERSION 3.0 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 3.0 mission phase are 2018-08-14T20:08:02.011 and 2019-07-29T19:08:02.353 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:26.347840", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-3-KEM1-V4.0", "title": "NEW HORIZONS SWAP KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 4.0 mission phase are 2018-08-14T20:43:46.000 and 2020-03-01T12:49:05.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:27.359516", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-3-KEM1-V5.0", "title": "NEW HORIZONS SWAP KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 5.0 mission phase are 2018-08-14T20:48:34.000 and 2021-02-25T06:03:45.000 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:28.300312", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-3-KEM1-V6.0", "title": "NEW HORIZONS SWAP KEM1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEM1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM1 VERSION 6.0 mission phase are 2018-08-14T20:43:46.011 and 2022-04-24T18:09:38.332 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem1-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:29.302151", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-3-KEM2-V1.0", "title": "NEW HORIZONS SWAP KEM2 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEM2 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEM2 VERSION 1.0 mission phase are 2022-04-24T18:08:03.332 and 2023-04-24T18:08:02.680 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-a-swap-3-kem2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:30.301849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-ALICE-2-JUPITER-V1.0", "title": "NEW HORIZONS ALICE JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-2-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:31.302380", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-ALICE-2-JUPITER-V2.0", "title": "NEW HORIZONS ALICE JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-2-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:32.316477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-ALICE-3-JUPITER-V1.0", "title": "NEW HORIZONS ALICE JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-3-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:33.321684", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-ALICE-3-JUPITER-V2.0", "title": "NEW HORIZONS ALICE JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-alice-3-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:34.326440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LEISA-2-JUPITER-V1.0", "title": "NEW HORIZONS LEISA JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-2-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:35.323674", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LEISA-2-JUPITER-V1.1", "title": "NEW HORIZONS LEISA JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-2-jupiter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:36.331483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LEISA-3-JUPITER-V1.0", "title": "NEW HORIZONS LEISA JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-3-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:37.357062", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LEISA-3-JUPITER-V1.1", "title": "NEW HORIZONS LEISA JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-leisa-3-jupiter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:38.407319", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-2-JUPITER-V1.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:39.416298", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-2-JUPITER-V1.1", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:40.345467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-2-JUPITER-V2.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:41.350661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-2-JUPITER-V3.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-2-jupiter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:42.344267", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-3-JUPITER-V1.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:43.356442", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-3-JUPITER-V1.1", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:44.476105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-3-JUPITER-V2.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:45.365048", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-LORRI-3-JUPITER-V3.0", "title": "NEW HORIZONS LORRI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-lorri-3-jupiter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:46.370926", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-MVIC-2-JUPITER-V1.0", "title": "NEW HORIZONS MVIC JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-2-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:47.367238", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-MVIC-2-JUPITER-V2.0", "title": "NEW HORIZONS MVIC JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-2-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:48.372236", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-MVIC-3-JUPITER-V1.0", "title": "NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-3-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:49.412259", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-MVIC-3-JUPITER-V2.0", "title": "NEW HORIZONS MVIC JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-mvic-3-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:50.462809", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-PEPSSI-2-JUPITER-V1.0", "title": "NEW HORIZONS PEPSSI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-2-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:51.379398", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-PEPSSI-2-JUPITER-V1.1", "title": "NEW HORIZONS PEPSSI JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-2-jupiter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:52.395335", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-PEPSSI-3-JUPITER-V1.0", "title": "NEW HORIZONS PEPSSI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-3-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:53.392101", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-PEPSSI-3-JUPITER-V1.1", "title": "NEW HORIZONS PEPSSI JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-pepssi-3-jupiter-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:54.392276", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-REX-2-JUPITER-V1.0", "title": "NEW HORIZONS REX JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-2-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:55.401555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-REX-2-JUPITER-V2.0", "title": "NEW HORIZONS REX JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-2-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:56.409127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-REX-3-JUPITER-V1.0", "title": "NEW HORIZONS REX JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-rex-3-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:57.410889", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SDC-2-JUPITER-V1.0", "title": "NEW HORIZONS SDC JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:58.410506", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SDC-2-JUPITER-V2.0", "title": "NEW HORIZONS SDC JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:11:59.419513", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SDC-2-JUPITER-V3.0", "title": "NEW HORIZONS SDC JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:00.426891", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SDC-2-JUPITER-V4.0", "title": "NEW HORIZONS SDC JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-2-jupiter-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:01.475886", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SDC-3-JUPITER-V1.0", "title": "NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:02.486226", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SDC-3-JUPITER-V2.0", "title": "NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:03.433008", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SDC-3-JUPITER-V3.0", "title": "NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:04.435695", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SDC-3-JUPITER-V4.0", "title": "NEW HORIZONS SDC JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-sdc-3-jupiter-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:05.439619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SWAP-2-JUPITER-V1.0", "title": "NEW HORIZONS SWAP JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:06.448658", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SWAP-2-JUPITER-V2.0", "title": "NEW HORIZONS SWAP JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:07.450531", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SWAP-2-JUPITER-V3.0", "title": "NEW HORIZONS SWAP JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:08.451916", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SWAP-2-JUPITER-V4.0", "title": "NEW HORIZONS SWAP JUPITER ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-2-jupiter-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:09.458346", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SWAP-3-JUPITER-V1.0", "title": "NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:10.462629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SWAP-3-JUPITER-V2.0", "title": "NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase between 2007-01-01T00:00:00 and 2007-06-27T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:11.465685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SWAP-3-JUPITER-V3.0", "title": "NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:12.484584", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-J-SWAP-3-JUPITER-V4.0", "title": "NEW HORIZONS SWAP JUPITER ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the Jupiter encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Jupiter encounter mission phase are 2007-01-01T00:00:00 and 2007-06-27T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-j-swap-3-jupiter-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:13.530423", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-ALICE-2-PLUTO-V1.0", "title": "NEW HORIZONS ALICE PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:14.544561", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-ALICE-2-PLUTO-V2.0", "title": "NEW HORIZONS ALICE PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:15.469026", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-ALICE-2-PLUTO-V3.0", "title": "NEW HORIZONS ALICE PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-2-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:16.478328", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-ALICE-3-PLUTO-V1.0", "title": "NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:17.483010", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-ALICE-3-PLUTO-V2.0", "title": "NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:18.484444", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-ALICE-3-PLUTO-V3.0", "title": "NEW HORIZONS ALICE PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-alice-3-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:19.496119", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LEISA-2-PLUTO-V1.0", "title": "NEW HORIZONS LEISA PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:20.498862", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LEISA-2-PLUTO-V2.0", "title": "NEW HORIZONS LEISA PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:21.505964", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LEISA-2-PLUTO-V3.0", "title": "NEW HORIZONS LEISA PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-2-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:22.504641", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LEISA-3-PLUTO-V1.0", "title": "NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:23.513368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LEISA-3-PLUTO-V2.0", "title": "NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:24.542614", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LEISA-3-PLUTO-V3.0", "title": "NEW HORIZONS LEISA PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-leisa-3-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:25.591280", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-2-PLUTO-V1.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:26.604009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-2-PLUTO-V2.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:27.551887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-2-PLUTO-V3.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-2-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:28.520864", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-3-PLUTO-V1.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:29.528410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-3-PLUTO-V2.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:30.531010", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-LORRI-3-PLUTO-V3.0", "title": "NEW HORIZONS LORRI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-lorri-3-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:31.530423", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-2-PLUTO-V1.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:32.534069", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-2-PLUTO-V2.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:33.541396", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-2-PLUTO-V3.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-2-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:34.546813", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-3-PLUTO-V1.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:35.557863", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-3-PLUTO-V2.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:36.603532", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-MVIC-3-PLUTO-V3.0", "title": "NEW HORIZONS MVIC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-mvic-3-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:37.611920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-PEPSSI-2-PLUTO-V1.0", "title": "NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:38.555486", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-PEPSSI-2-PLUTO-V2.0", "title": "NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:39.568550", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-PEPSSI-2-PLUTO-V3.0", "title": "NEW HORIZONS PEPSSI PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-2-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:40.587329", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-PEPSSI-3-PLUTO-V1.0", "title": "NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:41.571368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-PEPSSI-3-PLUTO-V2.0", "title": "NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:42.577856", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-PEPSSI-3-PLUTO-V3.0", "title": "NEW HORIZONS PEPSSI PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-3-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:43.578105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-PEPSSI-4-PLASMA-V1.0", "title": "NEW HORIZONS PEPSSI PLUTO ENCOUNTER DERIVED DATA", "description": "This volume contains derived data taken by the New Horizons PEPSSI instrument during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-pepssi-4-plasma-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:44.584446", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-REX-2-PLUTO-V1.0", "title": "NEW HORIZONS REX PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-2-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:45.588233", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-REX-2-PLUTO-V2.0", "title": "NEW HORIZONS REX PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-2-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:46.590258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-REX-3-PLUTO-V1.0", "title": "NEW HORIZONS REX PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-rex-3-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:47.612700", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SDC-2-PLUTO-V1.0", "title": "NEW HORIZONS SDC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:48.663431", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SDC-2-PLUTO-V2.0", "title": "NEW HORIZONS SDC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:49.671091", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SDC-2-PLUTO-V3.0", "title": "NEW HORIZONS SDC PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-2-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:50.605620", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SDC-3-PLUTO-V1.0", "title": "NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:51.611510", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SDC-3-PLUTO-V2.0", "title": "NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:52.615419", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SDC-3-PLUTO-V3.0", "title": "NEW HORIZONS SDC PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-sdc-3-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:53.618449", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SWAP-2-PLUTO-V1.0", "title": "NEW HORIZONS SWAP PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:54.622478", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SWAP-2-PLUTO-V2.0", "title": "NEW HORIZONS SWAP PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:55.638330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SWAP-2-PLUTO-V3.0", "title": "NEW HORIZONS SWAP PLUTO ENCOUNTER RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-2-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:56.634287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SWAP-3-PLUTO-V1.0", "title": "NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-01T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:57.639761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SWAP-3-PLUTO-V2.0", "title": "NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-05-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:58.638810", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SWAP-3-PLUTO-V3.0", "title": "NEW HORIZONS SWAP PLUTO ENCOUNTER CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the Pluto encounter mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-3-pluto-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:12:59.668106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P-SWAP-5-DERIVED-SOLARWIND-V1.0", "title": "NEW HORIZONS SWAP SOLAR WIND DATA AT PLUTO", "description": "This volume contains solar wind data taken by the New Horizons SWAP instrument at Pluto encounter. NH_HELIOCENTRIC_SW_2015-07-14.CSV: The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind during the time frame of the Pluto Encounter. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft). Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems. NH_PLUTOCENTRIC_SW_2015-07-14.CSV: The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind during the time frame of the Pluto Encounter. The position of the spacecraft is given in two Pluto-centered coordinate systems, calculated at the mid-point of the observation. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP) instrument on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Pluto J2000 and Pluto IAU, calculated at the mid-point of the associated start and stop UTCs (in fields 1 and 2). These are standard Pluto centered coordinate systems.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p-swap-5-derived-solarwind-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:00.721665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P/PSA-LEISA/MVIC-5-COMP-V1.0", "title": "NEW HORIZONS PLUTO ENCOUNTER DERIVED COMPOSITION DATA", "description": "This volume contains derived data products of the New Horizons Surface and Composition Science Theme Team including global color maps of Pluto and Charon, color image cubes and spectrum cubes, and absorption band maps from data taken during the Pluto Encounter mission phase. This volume also contains - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-leisa_mvic-5-comp-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:01.730744", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P/PSA-LORRI/ALICE/REX-5-ATMOS-V1.0", "title": "NEW HORIZONS PLUTO ENCOUNTER DERIVED ATMOSPHERE DATA", "description": "This volume contains atmospheric data obtained during the New Horizons fly-by of Pluto. The data includes solar atmospheric occultation count rates and opacities, unocculted solar count rates, atmospheric composition profiles for the species N2, CH4, C2H2, C2H4, and C2H6, lower atmospheric temperature and pressure profiles, and vertical I/F haze profiles.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_alice_rex-5-atmos-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:02.653167", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P/PSA-LORRI/ALICE/REX-5-ATMOS-V2.0", "title": "NEW HORIZONS PLUTO ENCOUNTER DERIVED ATMOSPHERE DATA", "description": "This volume contains atmospheric data obtained during the New Horizons fly-by of Pluto. The data includes solar and stellar atmospheric occultation count rates and opacities, unocculted solar and stellar count rates, atmospheric composition profiles for the species N2, CH4, C2H2, C2H4, and C2H6, lower atmospheric temperature and pressure profiles, and vertical I/F haze profiles.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_alice_rex-5-atmos-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:03.667246", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-P/PSA-LORRI/MVIC-5-GEOPHYS-V1.0", "title": "NEW HORIZONS PLUTO ENCOUNTER DERIVED GEOPHYSICAL DATA", "description": "This volume contains the New Horizons Pluto Encounter Geology and Geophysics Science Theme Team derived mosaics, topographic and bond albedo maps for Pluto and Charon. This volume also contains - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the Pluto encounter mission phase are 2015-01-15T00:00:00 and 2016-10-31T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-p_psa-lorri_mvic-5-geophys-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:04.660855", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS ALICE KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:05.669470", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS ALICE KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-11T09:08:01.430 and 2018-08-11T00:08:02.007 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:06.676287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-2-LAUNCH-V1.0", "title": "NEW HORIZONS ALICE POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:07.677822", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-2-LAUNCH-V2.0", "title": "NEW HORIZONS ALICE POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:08.679804", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS ALICE PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:09.690008", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-2-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS ALICE PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-2-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:10.693010", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS ALICE KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:11.727363", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS ALICE KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-11T09:08:01.430 and 2018-08-11T00:08:02.007 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:12.775674", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-3-LAUNCH-V1.0", "title": "NEW HORIZONS ALICE POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:13.789485", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-3-LAUNCH-V2.0", "title": "NEW HORIZONS ALICE POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:14.716429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS ALICE PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:15.733481", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-3-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS ALICE PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons ALICE during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-3-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:16.714321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-ALICE-5-IPM-V1.0", "title": "NEW HORIZONS ALICE INTERPLANETARY MEDIUM DERIVED DATA", "description": "This volume contains derived data taken by the New Horizons Alice Ultraviolet Imaging Spectrograph to map Lyman-alpha emission from neutral hydrogen in the interplanetary medium. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-alice-5-ipm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:17.714775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS LEISA KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:18.716367", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS LEISA KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T21:08:01.686 and 2017-11-03T17:08:01.728 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:19.725460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-2-LAUNCH-V1.0", "title": "NEW HORIZONS LEISA POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:20.723422", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-2-LAUNCH-V1.1", "title": "NEW HORIZONS LEISA POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-launch-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:21.728229", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS LEISA PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons LEISA during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-2-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:22.739517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS LEISA KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:23.786149", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS LEISA KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T21:08:01.686 and 2017-11-03T17:08:01.728 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:24.799354", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-3-LAUNCH-V1.0", "title": "NEW HORIZONS LEISA POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:25.891447", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-3-LAUNCH-V1.1", "title": "NEW HORIZONS LEISA POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-launch-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:26.747645", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LEISA-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS LEISA PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LEISA during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-leisa-3-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:27.759180", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS LORRI KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:28.756594", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS LORRI KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:29.761120", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-LAUNCH-V1.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:30.763362", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-LAUNCH-V1.1", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:31.769184", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-LAUNCH-V2.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:32.777138", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-LAUNCH-V3.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-launch-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:33.778733", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS LORRI PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:34.797252", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-2-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS LORRI PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-2-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:35.845106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:36.858843", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS LORRI KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-28T04:08:01.446 and 2017-12-06T20:08:01.761 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:37.788453", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-LAUNCH-V1.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:38.794310", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-LAUNCH-V1.1", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:39.798947", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-LAUNCH-V2.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:40.807999", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-LAUNCH-V3.0", "title": "NEW HORIZONS LORRI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-launch-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:41.804621", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:42.812861", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-LORRI-3-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS LORRI PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons LORRI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-lorri-3-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:43.806377", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS MVIC KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:44.818003", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS MVIC KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:45.827710", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-LAUNCH-V1.0", "title": "NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:46.850108", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-LAUNCH-V2.0", "title": "NEW HORIZONS MVIC POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:47.900548", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS MVIC PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-2-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:48.914138", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:49.839251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS MVIC KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-09-21T17:08:01.685 and 2018-07-13T20:08:01.978 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:50.844831", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-LAUNCH-V1.0", "title": "NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:51.848809", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-LAUNCH-V2.0", "title": "NEW HORIZONS MVIC POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:52.849778", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-MVIC-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS MVIC PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons MVIC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-mvic-3-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:53.853051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS PEPSSI KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:54.862004", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS PEPSSI KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2018-08-13T00:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:55.864757", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-2-LAUNCH-V1.0", "title": "NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:56.865864", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-2-LAUNCH-V1.1", "title": "NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-launch-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:57.868618", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS PEPSSI PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:58.915692", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-2-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS PEPSSI PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-2-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:13:59.927280", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS PEPSSI KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:00.879885", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS PEPSSI KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-22T23:00:00.000 and 2018-08-13T00:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:01.878222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-3-LAUNCH-V1.0", "title": "NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:02.885125", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-3-LAUNCH-V1.1", "title": "NEW HORIZONS PEPSSI POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-launch-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:03.885989", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS PEPSSI PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:04.893995", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-3-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS PEPSSI PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons PEPSSI during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-3-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:05.897107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-PEPSSI-4-PLASMA-V1.0", "title": "NEW HORIZONS PEPSSI DERIVED DATA", "description": "This volume contains higher level averaged flux data taken by the New Horizons PEPSSI instrument. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-pepssi-4-plasma-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:06.899016", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS REX KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:07.905062", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS REX KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-03T00:08:01.422 and 2018-08-01T14:08:01.997 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:08.905594", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-2-LAUNCH-V1.0", "title": "NEW HORIZONS REX POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:09.926733", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-2-LAUNCH-V2.0", "title": "NEW HORIZONS REX POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:10.973711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS REX PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:11.986321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-2-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS REX PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-2-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:12.929327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS REX KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-26T23:59:59.359 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:13.934288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS REX KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2017-01-03T00:08:01.422 and 2018-08-01T14:08:01.997 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:14.934008", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-3-LAUNCH-V1.0", "title": "NEW HORIZONS REX POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:15.935738", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-REX-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS REX PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons REX during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-rex-3-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:16.942583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS SDC KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:17.944289", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS SDC KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2018-08-14T22:08:02.011 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:18.946292", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-2-LAUNCH-V1.0", "title": "NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:19.954139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-2-LAUNCH-V2.0", "title": "NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:20.959327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-2-LAUNCH-V3.0", "title": "NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:21.982363", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-2-LAUNCH-V4.0", "title": "NEW HORIZONS SDC POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-launch-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:23.030359", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS SDC PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:24.044636", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-2-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS SDC PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-2-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:24.973884", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS SDC KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:25.976492", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS SDC KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-17T15:00:00.000 and 2018-08-14T22:08:02.011 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:26.981372", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-3-LAUNCH-V1.0", "title": "NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:27.980414", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-3-LAUNCH-V2.0", "title": "NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:28.990495", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-3-LAUNCH-V3.0", "title": "NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:29.990555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-3-LAUNCH-V4.0", "title": "NEW HORIZONS SDC POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the post-launch checkout mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the post-launch checkout mission phase are 2006-01-19T00:00:00 and 2007-01-01T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-launch-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:30.995189", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS SDC PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:31.996830", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SDC-3-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS SDC PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SDC during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-sdc-3-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:32.994740", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-2-KEMCRUISE1-V1.0", "title": "NEW HORIZONS SWAP KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:34.044501", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-2-KEMCRUISE1-V2.0", "title": "NEW HORIZONS SWAP KEMCRUISE1 RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2018-08-13T02:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:35.087755", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-2-LAUNCH-V1.0", "title": "NEW HORIZONS SWAP POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:36.097683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-2-LAUNCH-V2.0", "title": "NEW HORIZONS SWAP POST-LAUNCH CHECKOUT RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:37.010615", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-2-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS SWAP PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2013-07-13T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:38.019793", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-2-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS SWAP PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:39.025901", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-2-PLUTOCRUISE-V3.0", "title": "NEW HORIZONS SWAP PLUTO CRUISE RAW", "description": "This volume contains Raw data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-2-plutocruise-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:40.026470", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-3-KEMCRUISE1-V1.0", "title": "NEW HORIZONS SWAP KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2017-12-18T23:59:59.772 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-kemcruise1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:41.032023", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-3-KEMCRUISE1-V2.0", "title": "NEW HORIZONS SWAP KEMCRUISE1 CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the KEMCRUISE1 mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data Note 1 ====== The nominal start and stop times for the KEMCRUISE1 mission phase are 2016-10-25T18:00:00.000 and 2018-08-13T02:08:02.009 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-kemcruise1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:42.038950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-3-LAUNCH-V1.0", "title": "NEW HORIZONS SWAP POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-launch-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:43.041255", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-3-LAUNCH-V2.0", "title": "NEW HORIZONS SWAP POST-LAUNCH CHECKOUT CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the post-launch checkout mission phase between 2006-01-19T00:00:00 and 2007-01-01T00:00:00. This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-launch-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:44.034050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-3-PLUTOCRUISE-V1.0", "title": "NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2013-07-13T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:45.048062", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-3-PLUTOCRUISE-V2.0", "title": "NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2014-09-30T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:46.101162", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-3-PLUTOCRUISE-V3.0", "title": "NEW HORIZONS SWAP PLUTO CRUISE CALIBRATED", "description": "This volume contains Calibrated data taken by the New Horizons SWAP during the pluto cruise mission phase (Note 1). This volume also contains - mission documentation - spacecraft documentation - instrument documentation - data set documentation - index tables of the data - calibration information Note 1 ====== The nominal start and stop times for the pluto cruise mission phase are 2007-06-27T00:00:00 and 2015-01-15T00:00:00 The time span of all data products in this volume will not coincide exactly with those nominal mission phase times, and may even extend days or weeks beyond them.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-3-plutocruise-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:47.112993", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-5-DERIVED-SOLARWIND-V1.0", "title": "NEW HORIZONS SWAP SOLAR WIND DERIVED DATA", "description": "This volume contains solar wind data taken by the New Horizons SWAP instrument. The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-5-derived-solarwind-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:48.062068", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-X-SWAP-5-DERIVED-SOLARWIND-V2.0", "title": "NEW HORIZONS SWAP SOLAR WIND DERIVED DATA", "description": "This volume contains solar wind and interstellar pick up ion data taken by the New Horizons SWAP instrument. Solar Wind ---------- The Comma-Separated Values (CSV) file provides the proton density, speed, temperature, dynamic pressure and thermal pressure of the solar wind. The position of the spacecraft is given in 3 Sun centered heliospheric coordinate systems. These solar wind parameters were derived using a full instrument response to forward model the count rates measured with the Solar Wind Around Pluto (SWAP on the New Horizons (NH) spacecraft. Refer to SWAP.CAT in the CATALOG/ directory of this data set for information about the SWAP instrument. Each row represents solar wind parameters determined from a coarse-fine energy sweep. The first 4 columns provide the time information for the beginning and end of a given sweep. The next 5 columns provide the solar wind proton density, speed, temperature, dynamic pressure and thermal pressure. The remaining columns provide the location of the spacecraft in Heliographic Inertial (HGI), Heliospheric Aries Ecliptic (HAE), and Heliographic (HG). These are standard Sun centered coordinate systems. Interstellar Pickup Ion ----------------------- The Comma-Separated Values (CSV) file provides the interstellar pickup ion density, temperature, and pressure.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/nh-x-swap-5-derived-solarwind-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:49.063971", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "OAO-J-OASIS-3-RDR-SL9-V1.0", "title": "VOLUME 1008", "description": "This volume contains the data for the OAO/OASIS Jupiter Observation of SL9 Fragment K V1.0 data set, ID: OAO-J-OASIS-3-RDR-SL9-V1.0. For comparison with the Galileo fragment K results, the ground-based measurements in the near IR reported by the Okayama Astrophysical Observatory (OASIS) have been included in both FITS and PDS form.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/oao-j-oasis-3-rdr-sl9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:14:50.064636", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_ALICE-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:17:45.585318", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_ALICE-V2.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_alice-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:17:47.089051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DERIVED-V3.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:17:58.117963", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DERIVED-V4.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:17:59.636838", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ARROKOTH_COMPOSITION-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This dataset presents surface composition maps of the trans-Neptunian object (486958) Arrokoth, encountered by the New Horizons spacecraft on its first extended mission to the Kuiper Belt. The dataset includes calibrated spectral cubes derived from observations made by the LEISA and MVIC spectral imagers.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:01.188274", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ARROKOTH_GEOPHYSICS-V1.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Encounter with (486958) Arrokoth: Derived Shape Models and Surface Maps, Version 1.0, J. Redfern, O. Umurhan, R. Beyer, J.D. Hofgartner, S. Porter, K.N. Singer, B. Enke, B. Keeney, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0, NASA Planetary Data System, 2025.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:02.717567", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ARROKOTH_SHAPEMODEL_PORTER2024-V1.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Porter, S., New Horizons Porter (2024) Arrokoth Shape Model Collection, C. Gobat, B. Enke, M.K. Crombie, B. Keeney, J.Wm. Parker, and K.N. Singer (eds.), urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0, NASA Planetary Data System, 2024.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:04.133101", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "IPM_LYMAN_ALPHA-V1.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Kuiper Belt Extended Mission: Alice Ultraviolet Imaging Spectrograph Scans of Lyman-alpha Emission from the Interplanetary Medium, Version 1.0, R. Gladstone, J. Redfern, B. Enke, K.N. Singer, B. Keeney, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0, NASA Planetary Data System, 2025.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:05.650034", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "OSS_PLASMA_FLUXES-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This dataset contains one-hour averaged energetic particle flux rate values and counts-per-second generated by the New Horizons Particles and Plasma science team from data taken by the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument. The data covers a time range from early 2012 through late 2020. Flux rates and sums are presented for each of the six instrument look directions.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:09.666725", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "REX-5-ATMOS-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains derived atmospheric data from the New Horizons mission during the Pluto Encounter mission phase, based on data from the Alice UV imaging spectrograph instrument, the Radio EXperiment instrument, and the LOng Range Reconnaissance Imager instrument. The data set includes a solar spectrum of Pluto and Charon; atmospheric composition on Pluto for N2, CH4, C2H2, C2H4, C2H6, and haze, and the haze brightness profiles; Pluto lower atmospheric temperature and pressure profiles; stellar occultation and appulse data of Pluto; and temperatures of the diametric and winter pole thermscans of Pluto.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:11.166780", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PLUTOSYSTEM_COMPOSITION-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains global color maps, image cubes, and absorption band maps created from calibrated data taken during the PLUTO mission phase by the Linear Etalon Imaging Spectral Array (LEISA) instrument and the Multispectral Visible Imaging Camera (MVIC) instrument on the New Horizons spacecraft. Image cubes are provided per instrument and target body, covering the surfaces of Pluto, Charon, Nix, Hydra, and Kerberos. Color maps and absorption band maps for N2, CO, CH4, and H2O are provided for both Pluto and Charon.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:12.725022", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PLUTOSYSTEM_GEOPHYSICS-V1.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Stern, S.A., New Horizons Encounter with the Pluto System: Mosaics, Topographic Maps, and Bond Albedo Maps for Pluto and Charon from LORRI and MVIC Observations, Version 1.0, T. Finley, A. Egan, J. Mukherjee, J. Salmon, B. Enke, R. Beyer, B. Buratti, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0, NASA Planetary Data System, 2025.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:14.249572", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PLUTOSYSTEM_PLASMA_FLUXES-V1.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"McNutt, R.L. Jr., New Horizons Encounter with the Pluto System: Time-Averaged Solar Winds Particle and Ion Fluxes from PEPSSI Observations, Version 1.0, T. Finley, L. Brown, M. Hill, P. Kollmann, A. Egan, B. Enke, J. Mukerjee, and A.C. Raugh (eds.), urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0, NASA Planetary Data System, 2025.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:15.683430", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PLUTOSYSTEM_SOLAR_WIND-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument during the Pluto encounter. This archive contains two data products. Each product compiles the CODMAC level 2 source data used, the solar wind speed, proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, spacecraft position and speed. The two product files differ in that one is in Heliographic Inertial (HGI) coordinates and the other is in Pluto centric J2000 and IAU J2000 coordinates.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:17.189803", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DOCUMENTS-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:19.704105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DOCUMENTS-V2.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:21.212231", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DOCUMENTS-V3.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:22.717892", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DOCUMENTS-V4.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:24.252500", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DOCUMENTS-V4.1", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:25.779224", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DOCUMENTS-V4.2", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:27.315239", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_DOCUMENTS-V4.3", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents-v4.3/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:28.738153", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "LORRI-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This collection contains documents applicable to the LORRI instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:33.245529", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "MISSION-V2.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Hirsch, B., T.F. Barnes IV, J. Redfern (eds.), New Horizons Mission Documents, Version 2.0, urn:nasa:pds:nh_documents:mission::2.0, NASA Planetary Data System, 2024.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:36.304991", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PEPSSI-V1.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Gicquel, A., and J. Redfern (eds.), New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument, urn:nasa:pds:nh_documents:pepssi::1.0, NASA Planetary Data System, 2024.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:37.842753", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PEPSSI-V2.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Gicquel, A., B. Sharkey, J. Redfern, T. Finley, and B.T. Carcich (eds.), New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument, Version 2.0, urn:nasa:pds:nh_documents:pepssi::2.0, NASA Planetary Data System, 2025.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:39.278662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RALPH-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This collection contains documents applicable to the Ralph instrument package (housing both the MVIC and LEISA instruments) onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:42.288381", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "REX-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This collection presents documentation and ancillary data tables specific to the Radio Science Experiment (REX) on the New Horizons Spacecraft. It covers both the primary New Horizons mission, as well as the first extended mission to the Kuiper Belt referred to as \"KEM1\".", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:43.806828", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDC-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This collection contains documents applicable to the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft. There are several tables that list the times when the instrument power was turned on and off.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:sdc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:45.307821", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDC-V2.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Gicquel, A., J. Redfern, T. Finley, and B. Carcich (eds.), New Horizons Documents for the Student Dust Counter (SDC) Instrument, Version 2.0, urn:nasa:pds:nh_documents:sdc::2.0, NASA Planetary Data System, 2025.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:46.802296", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_LEISA-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:49.857246", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_LEISA-V2.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:51.312241", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CALIBRATION_FILES-V1.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Sharkey, B., A. Gicquel, and J. Redfern, Reference Files Used in Calibrating Data from the New Horizons Linear Etalon Imaging Spectral Array (LEISA), urn:nasa:pds:nh_leisa:calibration_files::1.0, NASA Planetary Data System, 2024.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:18:52.817776", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_LORRI-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:00.421905", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_LORRI-V2.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:01.916669", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_MVIC-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:10.922703", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_MVIC-V2.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:12.447252", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_PEPSSI-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:21.436591", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_PEPSSI-V2.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:23.093233", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "CALIBRATION_FILES-V2.0", "title": "Menu: Skip within this page", "description": "PDS citation information for this PDS4 collection: \"Sharkey, B., A. Gicquel, J. Redfern, B.T. Carcich, and T. Finley (eds.), New Horizons Calibrations for the PEPSSI Instrument, Version 2.0, urn:nasa:pds:nh_pepssi:calibration_files::2.0, NASA Planetary Data System, 2025.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:26.791714", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_REX-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Radio Science Experiment (REX) instrument onboard the New Horizons spacecraft, as well related Tracking and Navigation Files (TNF) used by the project.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_rex-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:34.424094", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_SDC-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:40.384174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_SDC-V2.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:41.903106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_SECONDARY-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle provides a place to create collections containing only secondary members to support lists of product IDs related to derived data sets and analytical references in publications. The collection labels will indicate the relevant data sets or publications.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:50.926687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ALICEOCC_CHARON_SOURCES-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Charon provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:52.434499", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "ALICEOCC_PLUTO_SOURCES-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Pluto provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:53.932436", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_SWAP-V1.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:55.487585", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_SWAP-V2.0", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:57.006494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PDS4-NH_SWAP-V2.1", "title": "Menu: Skip within this page", "description": "Description: This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap-v2.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:19:58.541686", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "KEM1_DATA_SUMMARY_PLOTS-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the first Kuiper Belt Extended Mission KEM1 Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:02.977685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-3-PLUTO-V3.0", "title": "Menu: Skip within this page", "description": "Abstract: This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:05.978338", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PLUTO_DATA_SUMMARY_PLOTS-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the Pluto Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Pluto. A gain test was also performed. The Pluto flyby was on the 14th of July 2015. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:07.542318", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "NH-A-SWAP-2-PLUTO-V3.0", "title": "Menu: Skip within this page", "description": "Abstract: This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:09.064027", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHB2-M-KRFM-3-PHOTOMETRY-V1.0", "title": "PHOBOS 2 KRFM PHOTOMETRY", "description": "This volume contains a photometry table produced by the KRFM instrument aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-krfm-3-photometry-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:27.006186", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHB2-M-TS-2-EDITED-THRM/VIS-IMG-EDR-V1.0", "title": "PHOBOS 2 TERMOSKAN EDITED IMAGES", "description": "This volume contains edited visual and thermal IR images from the termoskan instrument flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-edited-thrm_vis-img-edr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:28.007584", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHB2-M-TS-2-THERM/VIS-IMGEDR-V1.0", "title": "PHOBOS 2 TERMOSKAN RAW IMAGES", "description": "This volume contains raw visual and thermal images from the termoskan instrument flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-ts-2-therm_vis-imgedr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:29.012905", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "PHB2-M-VSK-2-EDR-V1.0", "title": "PHOBOS 2 VSK-FREGAT IMAGES", "description": "This volume contains images obtained by the three-channel TV imager VSK-FREGAT, flown aboard the Phobos 2 spacecraft. The data were originally used as part of a proof-of-concept test volume under the PDS1 standards. These data are being preserved for historical reasons; they have not been reviewed and are not considered to be of archival quality.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/phb2-m-vsk-2-edr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:30.035075", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-A-ROMAP-2-AST1-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE STEINS FLY-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Steins fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:31.079482", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-A-ROMAP-2-AST1-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE STEINS FLY-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta STEINS fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast1-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:32.091483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-A-ROMAP-2-AST2-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE LUTETIA FLY-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Lutetia fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:33.025504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-A-ROMAP-2-AST2-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE LUTETIA FLY-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta LUTETIA fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-2-ast2-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:34.031579", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-A-ROMAP-3-AST1-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE STEINS FLY-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Steins fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:35.030866", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-A-ROMAP-3-AST1-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE STEINS FLY-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Steins fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast1-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:36.042297", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-A-ROMAP-3-AST2-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE LUTETIA FLY-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Lutetia fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:37.042863", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-A-ROMAP-3-AST2-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE LUTETIA FLY-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Lutetia fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-a-romap-3-ast2-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:38.048087", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-COSAC-2-FSS-V1.0", "title": "COSAC RAW DATA FOR THE FSS COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS Comet mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:39.048662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-COSAC-2-RBD-V1.0", "title": "COSAC RAW DATA FOR THE RBD COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD Comet mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-2-rbd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:40.050197", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-COSAC-3-FSS-V1.0", "title": "COSAC CALIBRATED DATA FOR THE FSS COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS Comet mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:41.057211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-COSAC-3-RBD-V1.0", "title": "COSAC CALIBRATED DATA FOR THE RBD COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD Comet mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-cosac-3-rbd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:42.090308", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-MULTI-5-ANCDR-V1.0", "title": "ROSETTA LANDER ANCILLARY DATA", "description": "This archive contains the navigation and ancillary data for the Rosetta Lander during comet phases SDL (Separation Descent and Landing), RBD (Rebounds on comet surface) and FSS (First Science Sequence).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-multi-5-ancdr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:43.138839", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-MULTI-5-ANCDR-V2.0", "title": "ROSETTA LANDER ANCILLARY DATA", "description": "This archive contains the navigation and ancillary data for the Rosetta Lander during comet phases SDL (Separation Descent and Landing), RBD (Rebounds on comet surface) and FSS (First Science Sequence).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-multi-5-ancdr-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:44.150301", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-MUPUS-2-FSS-V1.0", "title": "MUPUS CALIBRATED DATA FOR THE FSS MISSION PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:45.068314", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-MUPUS-2-RBD-V1.0", "title": "MUPUS EDITED DATA FOR THE RBD MISSION PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-rbd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:46.074071", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-MUPUS-2-SDL-V1.0", "title": "MUPUS CALIBRATED DATA FOR THE SDL MISSION PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-2-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:47.080874", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-MUPUS-3-FSS-V1.0", "title": "MUPUS EDITED DATA FOR THE FSS MISSION PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:48.079907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-MUPUS-3-RBD-V1.0", "title": "MUPUS CALIBRATED DATA FOR THE RBD MISSION PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-rbd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:49.087977", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-MUPUS-3-SDL-V1.0", "title": "MUPUS CALIBRATED DATA FOR THE SDL MISSION PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-mupus-3-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:50.092974", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-PTOLEMY-2-FSS-V1.0", "title": "PTOLEMY EDITED DATA FOR THE FSS PHASE", "description": "This volume contains edited data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:51.098444", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-PTOLEMY-2-RBD-V1.0", "title": "PTOLEMY EDITED DATA FOR THE RBD PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBDS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-2-rbd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:52.108677", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-PTOLEMY-3-FSS-V1.0", "title": "PTOLEMY CALIBRATED DATA FOR THE FSS PHASE", "description": "This volume contains calibrated data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:53.106672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-PTOLEMY-3-RBD-V1.0", "title": "PTOLEMY CALIBRATED DATA FOR THE RBD PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-3-rbd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:54.151184", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-PTOLEMY-5-FSS-V1.0", "title": "PTOLEMY DERIVED DATA FOR THE FSS PHASE", "description": "This volume contains derived data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-ptolemy-5-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:55.199240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROLIS-2-FSS-V1.0", "title": "ROLIS EDITED DATA FOR THE FSS PHASE", "description": "This volume contains ROLIS level 2 data products and supporting documentation from the FSS phase of Rosetta mission", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:56.205846", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROLIS-2-SDL-V1.0", "title": "ROLIS EDITED DATA FOR THE SDL PHASE", "description": "This volume contains ROLIS level 2 data products and supporting documentation from the SDL phase of Rosetta mission", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-2-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:57.118327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROLIS-3-SDL-V1.0", "title": "ROLIS CALIBRATED DATA FOR THE SDL PHASE", "description": "This volume contains ROLIS level 3 data products and supporting documentation from the SDL phase of Rosetta mission", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-rolis-3-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:58.118159", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-2-FSS-MAG-V1.0", "title": "ROMAP MAG EDITED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:20:59.118217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-2-FSS-SPM-V1.0", "title": "ROMAP SPM EDITED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-fss-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:00.124962", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-2-RBD-MAG-V1.0", "title": "ROMAP MAG EDITED DATA FOR THE RBD PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:01.120379", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-2-RBD-SPM-V1.0", "title": "ROMAP SPM EDITED DATA FOR THE RBD PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-rbd-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:02.127775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-2-SDL-MAG-V1.0", "title": "ROMAP MAG EDITED DATA FOR THE SDL PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-2-sdl-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:03.141514", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-3-FSS-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:04.143188", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-3-FSS-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-fss-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:05.251417", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-3-RBD-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE RBD PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:06.206933", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-3-RBD-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE RBD PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-rbd-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:07.218287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-3-SDL-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE SDL PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-3-sdl-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:08.155649", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-5-FSS-MAG-V1.0", "title": "ROMAP MAG DERIVED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-fss-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:09.163177", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-5-RBD-MAG-V1.0", "title": "ROMAP MAG DERIVED DATA FOR THE RBD PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RBD mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-rbd-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:10.158869", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-ROMAP-5-SDL-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE SDL PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-romap-5-sdl-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:11.167821", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-SD2-3-FSS-V1.0", "title": "SD2 CALIBRATED DATA FOR THE FSS COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta comete mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sd2-3-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:12.171183", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-SESAME-2-FSS-V1.0", "title": "SESAME EDITED DATA FOR THE FSS PHASE", "description": "This volume contains SESAME data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:13.175604", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-SESAME-2-SDL-V1.0", "title": "SESAME EDITED DATA FOR THE SDL PHASE", "description": "This volume contains SESAME data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-2-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:14.180894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-SESAME-3-FSS-V1.0", "title": "SESAME CALIBRATED DATA FOR THE FSS PHASE", "description": "This volume contains SESAME data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:15.189231", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-C-SESAME-3-SDL-V1.0", "title": "SESAME CALIBRATED DATA FOR THE SDL PHASE", "description": "This volume contains SESAME data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-c-sesame-3-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:16.182073", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-APXS-2-PHC-V1.0", "title": "APXS RAW DATA FOR THE PHC COMET PHASE", "description": "This volume contains Rosetta APXS level 2 data products and supporting documentation from the PHC Comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-apxs-2-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:17.217542", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-COSAC-2-PDCS-V1.0", "title": "COSAC RAW DATA FOR THE PDCS COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS Comet mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:18.264046", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-COSAC-2-PHC-V1.0", "title": "COSAC RAW DATA FOR THE PHC COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC Comet mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-2-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:19.277331", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-COSAC-3-PDCS-V1.0", "title": "COSAC CALIBRATED DATA FOR THE PDCS COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS Comet mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:20.199421", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-COSAC-3-PHC-V1.0", "title": "COSAC CALIBRATED DATA FOR THE PHC COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC Comet mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-cosac-3-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:21.198851", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-MUPUS-2-PHC-V1.0", "title": "MUPUS CALIBRATED DATA FOR THE PHC MISSION PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-2-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:22.204116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-MUPUS-3-PHC-V1.0", "title": "MUPUS CALIBRATED DATA FOR THE PHC MISSION PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-mupus-3-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:23.210941", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-PTOLEMY-2-PDCS-V1.0", "title": "PTOLEMY EDITED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:24.219344", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-PTOLEMY-2-PHC-V1.0", "title": "PTOLEMY EDITED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-2-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:25.222093", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-PTOLEMY-3-PDCS-V1.0", "title": "PTOLEMY CALIBRATED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:26.220853", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-PTOLEMY-3-PHC-V1.0", "title": "PTOLEMY CALIBRATED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-ptolemy-3-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:27.230589", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROLIS-2-PHC-V1.0", "title": "ROLIS EDITED DATA FOR THE PHC PHASE", "description": "This volume contains ROLIS level 2 data products and supporting documentation from the PHC phase of Rosetta mission", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-rolis-2-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:28.230467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CR2-MAG-V1.0", "title": "ROMAP MAG RAW DATA FOR THE CR2 PHASE", "description": "This volume contains level 2 data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:29.276223", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CR2-SPM-V1.0", "title": "ROMAP SPM RAW DATA FOR THE CR2 PHASE", "description": "This volume contains level 2 data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr2-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:30.327813", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CR4A-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE CR4A PHASE", "description": "This volume contains level 2 data and supporting documentation from the Rosetta CR4A mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:31.241060", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CR4A-SPM-V1.0", "title": "ROMAP SPM RAW DATA FOR THE MARS SWING-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta CR4 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4a-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:32.246605", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CR4B-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE CR4B PHASE", "description": "This volume contains level 2 data and supporting documentation from the Rosetta CR4B mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:33.248644", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CR4B-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE CR4B", "description": "This volume contains data and supporting documentation from the Rosetta CR4B mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr4b-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:34.253278", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CR5-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE CR5 PHASE", "description": "This volume contains level 2 data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:35.258431", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CR5-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE CR5 PHASE", "description": "This volume contains level 2 data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cr5-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:36.265184", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CVP-MAG-V1.0", "title": "ROMAP MAG RAW DATA FOR THE COMMISSIONING PHASE", "description": "This volume contains raw data (level 2)and supporting documentation from the Rosetta commissioning mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:37.256816", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-CVP-SPM-V1.0", "title": "ROMAP SPM RAW DATA FOR COMMISSIONING PHASE", "description": "This volume contains raw data (level 2) and supporting documentation from the Rosetta Commissioning mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-cvp-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:38.268894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-PDCS-MAG-V1.0", "title": "ROMAP MAG EDITED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-pdcs-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:39.280796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-PHC-MAG-V1.0", "title": "ROMAP MAG EDITED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:40.281256", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-PHC-SPM-V1.0", "title": "ROMAP SPM EDITED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-phc-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:41.334433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-RVM1-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE RVM1 PHASE", "description": "This volume contains level 2 data and supporting documentation from the Rosetta RVM1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:42.345865", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-2-RVM1-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE RVM1 PHASE", "description": "This volume contains level 2 data and supporting documentation from the Rosetta RVM1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-2-rvm1-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:43.295596", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-CR2-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE CR2 PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:44.293394", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-CR2-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE CR2 PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr2-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:45.298467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-CR4A-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE CR4A PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta CR4A mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:46.301455", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-CR4A-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE CR4A PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta CR4A mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4a-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:47.304287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-CR4B-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE CR4B PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta CR4B mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:48.310099", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-CR4B-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE CR4B PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta CR4B mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr4b-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:49.311422", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-CR5-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE CR5 PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:50.318429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-CR5-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE CR5 PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-cr5-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:51.319492", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-PDCS-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-pdcs-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:52.341020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-PHC-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:53.390811", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-PHC-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-phc-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:54.404885", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-RVM1-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE RVM1 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RVM1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:55.333447", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-3-RVM1-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE RVM1 PHASE", "description": "This volume contains level 3 data and supporting documentation from the Rosetta RVM1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-3-rvm1-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:56.336165", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-5-PDCS-MAG-V1.0", "title": "ROMAP MAG DERIVED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-pdcs-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:57.336384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-ROMAP-5-PHC-MAG-V1.0", "title": "ROMAP MAG DERIVED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-romap-5-phc-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:58.346031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-SD2-3-GRND-V1.0", "title": "SD2 CALIBRATED DATA FROM THE GROUND REFERENCE MODEL TESTS", "description": "This volume contains data and supporting documentation from the Rosetta Ground Reference Model tests during the First Science Sequence mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-grnd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:21:59.349527", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-SD2-3-PDCS-V1.0", "title": "SD2 CALIBRATED DATA FOR THE PDCS COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase (Pre Delivery Calib Science", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:00.349155", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-SD2-3-PHC-V1.0", "title": "SD2 CALIBRATED DATA FOR THE PHC COMET PHASE", "description": "This volume contains data and supporting documentation from the Rosetta comete mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sd2-3-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:01.354610", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-SESAME-2-PDCS-V1.0", "title": "SESAME EDITED DATA FOR THE PDCS PHASE", "description": "This volume contains SESAME data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:02.361321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-SESAME-2-PHC-V1.0", "title": "SESAME RAW DATA FOR THE PHC PHASE", "description": "This volume contains SESAME data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-2-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:03.365785", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-SESAME-3-PDCS-V1.0", "title": "SESAME CALIBRATED DATA FOR THE PDCS PHASE", "description": "This volume contains SESAME data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:04.402568", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-CAL-SESAME-3-PHC-V1.0", "title": "SESAME RAW DATA FOR THE PHC PHASE", "description": "This volume contains SESAME data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-cal-sesame-3-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:05.457260", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-2-EAR1-MAG-V1.0", "title": "ROMAP MAG RAW DATA FOR THE EARTH FLY-BY", "description": "This volume contains calibated data (level 2) and supporting documentation from the Rosetta Earth fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:06.459919", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-2-EAR1-SPM-V1.0", "title": "ROMAP SPM RAW DATA FOR THE EARTH SWING-BY", "description": "This volume contains raw data (level 2) and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear1-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:07.378893", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-2-EAR2-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:08.384114", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-2-EAR2-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear2-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:09.390204", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-2-EAR3-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:10.387465", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-2-EAR3-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-2-ear3-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:11.393467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-3-EAR1-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains calibrated data (level 3) and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:12.402051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-3-EAR1-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear1-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:13.405323", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-3-EAR2-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:14.404628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-3-EAR2-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear2-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:15.411447", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-3-EAR3-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:16.460409", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-E-ROMAP-3-EAR3-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE EARTH SWING-BY", "description": "This volume contains data and supporting documentation from the Rosetta Earth swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-e-romap-3-ear3-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:17.473012", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-M-ROMAP-2-MARS-MAG-V1.0", "title": "ROMAP MAG RAW DATA FOR THE MARS SWING-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Mars swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:18.415417", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-M-ROMAP-2-MARS-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE MARS SWING-BY", "description": "This volume contains level 2 data and supporting documentation from the Rosetta Mars swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-2-mars-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:19.422013", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-M-ROMAP-3-MARS-MAG-V1.0", "title": "ROMAP MAG CALIBRATED DATA FOR THE MARS SWING-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Mars swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-mag-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:20.431085", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RL-M-ROMAP-3-MARS-SPM-V1.0", "title": "ROMAP SPM CALIBRATED DATA FOR THE MARS SWING-BY", "description": "This volume contains level 3 data and supporting documentation from the Rosetta Mars swing by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/rl-m-romap-3-mars-spm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:21.432670", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-MIDAS-3-AST2-LUTE-V1.0", "title": "MIDAS SCIENCE DATA FOR THE LUTETIA FLY-BY PHASE", "description": "Lutetia Fly-by Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-midas-3-ast2-lute-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:22.441587", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-MIDAS-3-AST2-LUTE-V3.0", "title": "MIDAS SCIENCE DATA FOR THE LUTETIA FLY-BY PHASE", "description": "Lutetia Fly-by Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-midas-3-ast2-lute-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:23.443378", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-MIRO-2-AST1-STEINS-V1.0", "title": "RAW MIRO DATA FOR THE STEINS FLY-BY PHASE", "description": "This volume is the tenth containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Steins Flyby Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast1-steins-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:24.447913", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-MIRO-2-AST2-LUTETIA-V1.0", "title": "RAW MIRO DATA FOR THE LUTETIA FLY-BY PHASE", "description": "This volume is the 14th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Lutetia Flyby Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-2-ast2-lutetia-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:25.453169", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-MIRO-3-AST1-STEINS-V1.0", "title": "RAW MIRO DATA FOR THE STEINS FLY-BY PHASE", "description": "This volume is the 11th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Steins Fly-by Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast1-steins-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:26.454300", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-MIRO-3-AST2-LUTETIA-V1.0", "title": "RAW MIRO DATA FOR THE LUTETIA FLY-BY PHASE", "description": "This volume is the 15th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Lutetia Fly-by Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-miro-3-ast2-lutetia-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:27.467550", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-NAVCAM-2-AST1-V1.0", "title": "NAVCAM RAW DATA FOR STEINS FLYBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the STEINS flyby, September 2008 (closest approach on 5 September)", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-navcam-2-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:28.522276", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-NAVCAM-2-AST1-V1.1", "title": "NAVCAM RAW DATA FOR STEINS FLYBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the STEINS flyby, September 2008 (closest approach on 5 September)", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-navcam-2-ast1-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:29.532025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-2-AST1-STEINSFLYBY-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSINAC-2-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast1-steinsflyby-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:30.581933", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-2-AST1-STEINSFLYBY-V2.0", "title": "RAW OSIRIS NAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast1-steinsflyby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:31.471183", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast2-lutetiaflyby-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:32.525000", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-2-AST2-LUTETIAFLYBY-V2.0", "title": "RAW OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-2-ast2-lutetiaflyby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:33.477570", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-3-AST1-STEINSFLYBY-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSINAC-3-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast1-steinsflyby-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:34.537123", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-3-AST1-STEINSFLYBY-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast1-steinsflyby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:35.490293", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast2-lutetiaflyby-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:36.555327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-3-AST2-LUTETIAFLYBY-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-3-ast2-lutetiaflyby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:37.487523", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-4-AST1-STEINS-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:38.500767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-4-AST1-STEINS-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:39.531686", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-4-AST1-STEINS-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steins-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:40.576848", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-4-AST1-STEINSFLYBY-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast1-steinsflyby-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:41.588903", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-4-AST2-LUTETIA-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:42.512497", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-4-AST2-LUTETIA-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:43.513756", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-4-AST2-LUTETIA-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetia-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:44.520945", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC-4-AST2-LUTETIAFLYBY-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac-4-ast2-lutetiaflyby-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:45.522837", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC/OSIWAC-5-LUTETIA-SHAPE-V1.0", "title": "ROOSI_9002: 21 LUTETIA SHAPE MODEL", "description": "This delivery volume holds the data set containing the detailed plate shape model of asteroid 21 Lutetia, as derived from the images that were obtained by the Rosetta spacecraft around the time of its closest approach to the asteroid.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-lutetia-shape-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:46.637117", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSINAC/OSIWAC-5-STEINS-SHAPE-V1.0", "title": "ROOSI_9001: 2867 STEINS SHAPE MODEL", "description": "This delivery volume holds the data set containing the detailed plate shape model of asteroid 2867 Steins, as derived from the images that were obtained by the Rosetta spacecraft around the time of its closest approach to the asteroid.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osinac_osiwac-5-steins-shape-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:47.531354", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-2-AST1-STEINSFLYBY-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSIWAC-2-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast1-steinsflyby-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:48.591907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-2-AST1-STEINSFLYBY-V2.0", "title": "RAW OSIRIS WAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast1-steinsflyby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:49.534218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast2-lutetiaflyby-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:50.602711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-2-AST2-LUTETIAFLYBY-V2.0", "title": "RAW OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-2-ast2-lutetiaflyby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:51.585760", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-3-AST1-STEINSFLYBY-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-A-OSIWAC-3-AST1-STEINSFLYBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast1-steinsflyby-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:52.692656", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-3-AST1-STEINSFLYBY-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast1-steinsflyby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:53.645413", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.1, RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast2-lutetiaflyby-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:54.602676", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-3-AST2-LUTETIAFLYBY-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-3-ast2-lutetiaflyby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:55.563001", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-4-AST1-STEINS-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:56.568565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-4-AST1-STEINS-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:57.573757", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-4-AST1-STEINS-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steins-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:58.572496", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-4-AST1-STEINSFLYBY-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR STEINS FLY-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the STEINS FLY-BY mission phase, covering the period from 2008-08-04T00:00:00.000 to 2008-10-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast1-steinsflyby-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:22:59.581603", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-4-AST2-LUTETIA-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:00.584678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-4-AST2-LUTETIA-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:01.591051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-4-AST2-LUTETIA-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetia-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:02.598750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-OSIWAC-4-AST2-LUTETIAFLYBY-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR LUTETIA FLY-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the LUTETIA FLY-BY mission phase, covering the period from 2010-05-17T00:00:00.000 to 2010-09-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-osiwac-4-ast2-lutetiaflyby-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:03.645312", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-ROSINA-2-AST1-V1.0", "title": "RO-A-ROSINA-2-AST1-V1.0", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Steins Flyby. The dataset includes data from COPS and DFMS. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rosina-2-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:04.660258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCICA-2-AST2-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-2-ast2-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:05.608162", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCICA-2-AST2-RAW-V2.0", "title": "ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 EDITED", "description": "ROSETTA-ORBITER LUTETIA RPCICA 2 AST2 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-2-ast2-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:06.608793", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCICA-3-AST2-CALIB-V1.0", "title": "ROSETTA-ORBITER LUTETIA RPCICA 3 AST2 CALIBRATED", "description": "ROSETTA-ORBITER LUTETIA RPCICA 3 AST2 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-3-ast2-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:07.610953", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCICA-4-AST2-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR_CTS", "description": "ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:08.613570", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCICA-4-AST2-CORR-V1.0", "title": "ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR", "description": "ROSETTA-ORBITER LUTETIA RPCICA 4 AST2 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcica-4-ast2-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:09.625458", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCIES-2-AST1-V1.0", "title": "RPCIES RAW DATA FOR THE STEINS FLYBY", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:10.631786", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCIES-2-AST2-V1.0", "title": "RPCIES RAW DATA FOR THE LUTETIA FLYBY", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the LUTETIA flyby in July 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcies-2-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:11.630823", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCLAP-2-AST1-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR AST1", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the STEINS FLY-BY phase in 2008 where the primary target was the asteroid 2867 STEINS. This particular data set contains data for the time period 2008-08-04T00:00:00.000 -- 2008-10-06T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast1-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:12.629495", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCLAP-2-AST2-EDITED-V1.0", "title": "RPCLAP EDITED RAW DATA FOR LUTETIA FLY-BY", "description": "Rosetta edited LAP data from the Rosetta flyby of asteroid 21 Lutetia.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast2-edited-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:13.638905", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCLAP-2-AST2-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR AST2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the LUTETIA FLY-BY phase in 2010 where the primary target was the asteroid 21 LUTETIA. This particular data set contains data for the time period 2010-05-17T00:00:00.000 -- 2010-09-04T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-2-ast2-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:14.657701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCLAP-3-AST1-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR AST1", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the STEINS FLY-BY phase in 2008 where the primary target was the asteroid 2867 STEINS. This particular data set contains data for the time period 2008-08-04T00:00:00.000 -- 2008-10-06T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast1-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:15.703065", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCLAP-3-AST2-CALIB-V1.0", "title": "RPCLAP EDITED RAW DATA FOR LUTETIA FLY-BY", "description": "Rosetta edited LAP data from the Rosetta flyby of asteroid 21 Lutetia.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast2-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:16.717501", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCLAP-3-AST2-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR AST2", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the LUTETIA FLY-BY phase in 2010 where the primary target was the asteroid 21 LUTETIA. This particular data set contains data for the time period 2010-05-17T00:00:00.000 -- 2010-09-04T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpclap-3-ast2-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:17.655122", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-2-AST1-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE STEINS FLYBY", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast1-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:18.651313", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-2-AST1-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE STEINS FLYBY (AST1)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast1-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:19.661576", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-2-AST2-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE LUTETIA FLYBY", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast2-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:20.668349", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-2-AST2-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE LUTETIA FLYBY (AST2)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-2-ast2-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:21.671882", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-3-AST1-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE STEINS FLYBY", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast1-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:22.674591", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-3-AST1-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: STEINS FLYBY (AST1)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast1-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:23.677452", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-3-AST2-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE LUTETIA FLYBY", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast2-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:24.683393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-3-AST2-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: LUTETIA FLYBY (AST2)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-3-ast2-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:25.689612", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-4-AST1-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE STEINS FLYBY", "description": "This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast1-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:26.717569", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-4-AST1-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: STEINS FLYBY (AST1)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the STEINS flyby in September 2008.The closest approach (CA) took place on September 5, 2008 at 18:38", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast1-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:27.763996", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-4-AST2-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE LUTETIA FLYBY", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast2-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:28.773025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMAG-4-AST2-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: LUTETIA FLYBY (AST2)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the LUTETIA flyby in July 2010.The closest approach (CA) took place on July 10, 2010 at 15:45", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmag-4-ast2-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:29.699182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMIP-3-AST1-V1.0", "title": "RPCMIP CALIBRATED DATA FOR THE STEINS PHASE", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the STEINS phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:30.699823", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMIP-3-AST1-V2.0", "title": "RPCMIP STEINS FLY-BY L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:31.701182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A-RPCMIP-3-AST2-V1.0", "title": "RPCMIP LUTETIA FLY-BY L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a-rpcmip-3-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:32.704064", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A/CAL-ALICE-2-AST1-V1.0", "title": "ROSETTA ALICE IN AST 1 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:33.707727", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A/CAL-ALICE-2-AST2-V1.0", "title": "ROSETTA ALICE IN AST2 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-2-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:34.705273", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A/CAL-ALICE-3-AST1-V1.0", "title": "ROSETTA ALICE IN AST 1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:35.713168", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A/CAL-ALICE-3-AST2-V1.0", "title": "ROSETTA ALICE IN AST 2 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-3-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:36.717133", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A/CAL-ALICE-4-AST1-V1.0", "title": "ROSETTA ALICE IN AST 1 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (2867) Steins.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:37.725887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A/CAL-ALICE-4-AST2-V1.0", "title": "ROSETTA ALICE IN AST2 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the flyby of the asteroid (21) Lutetia.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-alice-4-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:38.774674", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A/CAL-NAVCAM-2-AST2-V1.0", "title": "NAVCAM RAW DATA FOR LUTETIA FLYBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the LUTETIA flyby, July 2010 (closest approach at 15:45 on 10 July)", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-navcam-2-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:39.786735", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-A/CAL-NAVCAM-2-AST2-V1.1", "title": "NAVCAM RAW DATA FOR LUTETIA FLYBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the LUTETIA flyby, July 2010 (closest approach at 15:45 on 10 July) in its journey to comet CG/CP67.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-a_cal-navcam-2-ast2-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:40.722649", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-COSIMA-3-V1.0", "title": "ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE", "description": "This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:41.723057", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-COSIMA-3-V2.0", "title": "ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE", "description": "This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:42.726370", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-COSIMA-3-V3.0", "title": "ROSETTA COSIMA CALIBRATION DATA UPTO PRELANDING PHASE", "description": "This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:43.723272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-COSIMA-3-V4.0", "title": "ROSETTA COSIMA CALIBRATION DATA UPTO ESCORT PHASE 3", "description": "This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v4.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:44.729175", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-COSIMA-3-V5.0", "title": "ROSETTA COSIMA DATA UPTO ESCORT PHASE 4", "description": "This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:45.735437", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-COSIMA-3-V6.0", "title": "ROSETTA COSIMA DATA", "description": "This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-cosima-3-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:46.733031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-ESC1-COMET-ESCORT-1-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 1 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Comet Escort 1' phase, from the November 21, 2014 until March 10, 2015 It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc1-comet-escort-1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:47.738401", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-ESC1-COMET-ESCORT-1-V1.1", "title": "ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 1 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Comet Escort 1' phase, from the November 21, 2014 until March 10, 2015 It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc1-comet-escort-1-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:48.738011", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-ESC2-COMET-ESCORT-2-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 2 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Comet Escort 2' phase, from the March 11, 2015 until June 30, 2015 It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc2-comet-escort-2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:49.781927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-ESC2-COMET-ESCORT-2-V1.1", "title": "ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 2 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Comet Escort 2' phase, from the March 11, 2015 until June 30, 2015 It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc2-comet-escort-2-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:50.831671", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-ESC3-COMET-ESCORT-3-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 3 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Comet Escort 3' phase, from the July 1, 2015 until October 20, 2015. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc3-comet-escort-3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:51.747791", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-ESC4-COMET-ESCORT-4-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING COMET ESCORT 4 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Comet Escort 4' phase, from the October 21, 2015 until January 12, 2016. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-esc4-comet-escort-4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:52.752888", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-EXT1-EXTENSION-1-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 1 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 1' phase, from the January 13, 2016 until April 5, 2016. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext1-extension-1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:53.751118", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-EXT2-EXTENSION-2-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 2 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 2' phase, from the April 6, 2016 until June 30, 2016. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext2-extension-2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:54.753222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-EXT3-EXTENSION-3-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING EXTENSION 3 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Rosetta Extension 3' phase, from the July 1, 2016 until September 30, 2016. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-ext3-extension-3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:55.759435", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-PRL-PRELANDING-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING PRELANDING PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Prelanding' phase, from the January 21, 2014 until November 20, 2014 It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-prl-prelanding-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:56.765822", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-3-PRL-PRELANDING-V1.1", "title": "ROSETTA GIADA EXPERIMENT DATA DURING PRELANDING PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Prelanding' phase, from the January 21, 2014 until November 20, 2014 It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-3-prl-prelanding-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:57.763517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-GIA-5-67P-DUST-MAPS-V1.0", "title": "ROSETTA GIADA EXPERIMENT DUST MAPS", "description": "This volume contains HIGH level products produced by GIADA TEAM using the data of the scientific phase of the ROSETTA mission from the July 6, 2014 until September 30, 2016. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-gia-5-67p-dust-maps-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:58.760842", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC1-SAMPLES-V1.0", "title": "RAW MIDAS DATA FOR THE COMET ESCORT 1 PHASE", "description": "Comet Escort Phase 1", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:23:59.764009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC1-SAMPLES-V2.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 1 PHASE", "description": "Comet Escort Phase 1", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:00.798212", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC1-SAMPLES-V3.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 1 PHASE", "description": "Escort Phase 1 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc1-samples-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:01.842433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC2-SAMPLES-V1.0", "title": "RAW MIDAS DATA FOR THE COMET ESCORT 2 PHASE", "description": "Comet Escort Phase 2", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:02.853171", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC2-SAMPLES-V2.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 2 PHASE", "description": "Comet Escort Phase 2", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:03.775049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC2-SAMPLES-V3.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 2 PHASE", "description": "Escort Phase 2 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc2-samples-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:04.780590", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC3-SAMPLES-V1.0", "title": "RAW MIDAS DATA FOR THE COMET ESCORT 3 PHASE", "description": "Comet Escort Phase 3", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:05.780125", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC3-SAMPLES-V2.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 3 PHASE", "description": "Comet Escort Phase 3", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:06.785567", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC3-SAMPLES-V3.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 3 PHASE", "description": "Escort Phase 3 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc3-samples-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:07.780918", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC4-SAMPLES-V1.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE", "description": "Comet Escort Phase 4", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:08.784902", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC4-SAMPLES-V2.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE", "description": "Comet Escort Phase 4", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:09.788937", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-ESC4-SAMPLES-V3.0", "title": "MIDAS SCIENCE DATA FOR THE COMET ESCORT 4 PHASE", "description": "Escort Phase 4 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-esc4-samples-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:10.788960", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT1-SAMPLES-V1.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "Extended Mission Phase 1", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:11.806029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT1-SAMPLES-V2.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "Extended Mission Phase 1", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:12.847846", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT1-SAMPLES-V3.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "Extension Phase 1 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext1-samples-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:13.865272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT2-SAMPLES-V1.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "Extended Mission Phase 2", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:14.802096", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT2-SAMPLES-V2.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "Extended Mission Phase 2", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:15.806842", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT2-SAMPLES-V3.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "Extension Phase 2 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext2-samples-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:16.808316", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT3-SAMPLES-V1.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "Extended Mission Phase 3", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:17.806225", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT3-SAMPLES-V2.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "Extended Mission Phase 3", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:18.804172", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-3-EXT3-SAMPLES-V3.0", "title": "MIDAS SCIENCE DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "Extension Phase 3 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-3-ext3-samples-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:19.810842", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-5-PRL-TO-EXT3-V1.0", "title": "MIDAS DUST PARTICLE CATALOG FOR THE COMET ESCORT PHASES", "description": "MIDAS Dust Particle Catalog", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-5-prl-to-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:20.814067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIDAS-5-PRL-TO-EXT3-V2.0", "title": "MIDAS DUST PARTICLE CATALOG FOR THE COMET ESCORT PHASES", "description": "MIDAS Dust Particle Catalog", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-midas-5-prl-to-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:21.815632", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-CR2-9P-TEMPEL1-V1.0", "title": "RAW MIRO DATA FOR THE CRUISE-2 PHASE", "description": "This volume is the fourth containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the second Cruise mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-cr2-9p-tempel1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:22.819247", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-ESC1-67P-V1.0", "title": "RAW MIRO DATA FOR THE COMET ESCORT 1 PHASE", "description": "This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the COMET ESCORT 1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc1-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:23.865555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-ESC2-67P-V1.0", "title": "RAW MIRO DATA FOR THE COMET ESCORT 2 PHASE", "description": "This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains raw data obtained during the COMET ESCORT 2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc2-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:24.876651", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-ESC3-67P-V1.0", "title": "RAW MIRO DATA FOR THE COMET ESCORT 3 PHASE", "description": "This volume contains data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the COMET ESCORT 3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc3-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:25.919882", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-ESC4-67P-V1.0", "title": "RAW MIRO DATA FOR THE COMET ESCORT 4 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the COMET ESCORT 4 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-esc4-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:26.825887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-EXT1-67P-V1.0", "title": "RAW MIRO DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext1-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:28.067030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-EXT2-67P-V1.0", "title": "RAW MIRO DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext2-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:28.831578", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-EXT3-67P-V1.0", "title": "RAW MIRO DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains raw data obtained during the ROSETTA EXTENSION 3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-ext3-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:29.829669", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-2-PRL-67P-V1.0", "title": "RAW MIRO DATA FOR THE PRELANDING PHASE", "description": "This volume is the 16th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Prelanding Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-2-prl-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:30.838038", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-CR2-9P-TEMPEL1-V1.0", "title": "CALIBRATED MIRO DATA FOR THE CRUISE-2 PHASE", "description": "This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the second Cruise mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-cr2-9p-tempel1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:31.838432", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-CR2-9P-TEMPEL1-V1.1", "title": "CALIBRATED MIRO DATA FOR THE CRUISE-2 PHASE", "description": "This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the second Cruise mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-cr2-9p-tempel1-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:32.837492", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC1-67P-V1.0", "title": "RAW MIRO DATA FOR THE COMET ESCORT 1 PHASE", "description": "This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the COMET ESCORT 1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:33.836666", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC1-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:34.872681", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC1-67P-V3.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc1-67p-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:35.923906", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC2-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE COMET ESCORT 2 PHASE", "description": "This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains calibrated data obtained during the COMET ESCORT 2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc2-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:36.933907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC2-67P-V3.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc2-67p-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:37.852277", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC3-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE COMET ESCORT 3 PHASE", "description": "This volume contains data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the COMET ESCORT 3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc3-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:38.852661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC3-67P-V3.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc3-67p-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:39.855127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC4-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE COMET ESCORT 4 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the COMET ESCORT 4 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc4-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:40.860797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-ESC4-67P-V3.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET ESC4 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-esc4-67p-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:41.862156", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-EXT1-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext1-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:42.860093", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-EXT1-67P-V3.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA EXT1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext1-67p-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:43.864295", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-EXT2-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext2-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:44.870840", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-EXT2-67P-V3.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA EXT2 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext2-67p-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:45.881519", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-EXT3-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXTENSION 3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext3-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:46.934912", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-EXT3-67P-V3.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA EXT3 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA EXT3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-ext3-67p-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:47.941666", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-PRL-67P-V1.0", "title": "RAW MIRO DATA FOR THE PRELANDING PHASE", "description": "This volume is the 17th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Prelanding Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:49.094205", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-PRL-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET PRL Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:50.139355", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-3-PRL-67P-V3.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated data obtained during the ROSETTA COMET PRL Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-3-prl-67p-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:51.092354", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-ESC1-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc1-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:51.880285", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-ESC1-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc1-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:52.900053", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-ESC2-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc2-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:53.881282", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-ESC2-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC2 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc2-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:54.889390", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-ESC3-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc3-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:55.892544", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-ESC3-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC3 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc3-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:56.891769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-ESC4-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC4 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc4-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:57.937067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-ESC4-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET ESC4 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA ESC4 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-esc4-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:58.957358", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-EXT1-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext1-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:24:59.895547", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-EXT1-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT1 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext1-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:00.895722", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-EXT2-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT2 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext2-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:01.900298", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-EXT2-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT2 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext2-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:02.901499", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-EXT3-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT3 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext3-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:03.911663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-EXT3-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET EXT3 PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA EXT3 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-ext3-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:04.911426", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-PRL-67P-V1.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA PRL Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-prl-67p-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:05.919357", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MIRO-4-PRL-67P-V2.0", "title": "CALIBRATED MIRO DATA FOR THE ROSETTA COMET PRL PHASE", "description": "This volume contains the data from Microwave Instrument for the Rosetta Orbiter (MIRO). It contains calibrated and processed to Level 4 data obtained during the ROSETTA PRL Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-miro-4-prl-67p-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:06.918894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MULTI-5-67P-SHAPE-V1.0", "title": "ROSETTA 67P/CHURYUMOV-GERASIMENKO SHAPE MODELS", "description": "This delivery volume holds the data set containing shape models of Comet 67P/Churyumov-Gerasimenko (1969 R1) produced by the Rosetta mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:07.917772", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-MULTI-5-67P-SHAPE-V2.0", "title": "ROSETTA 67P/CHURYUMOV-GERASIMENKO SHAPE MODELS", "description": "This delivery volume holds the data set containing shape models of Comet 67P/Churyumov-Gerasimenko (1969 R1) produced by the Rosetta mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-multi-5-67p-shape-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:08.952147", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC1-MTP010-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Nov 2014 to Dec 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp010-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:10.004957", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC1-MTP010-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Nov 2014 to Dec 2014 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp010-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:10.917688", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC1-MTP011-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Dec 2014 to Jan 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:11.926139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC1-MTP011-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Dec 2014 to Jan 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp011-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:12.924175", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC1-MTP012-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Jan 2015 to Feb 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp012-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:13.932951", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC1-MTP012-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Jan 2015 to Feb 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp012-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:14.936541", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC1-MTP013-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Feb 2015 to Mar 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp013-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:15.939400", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC1-MTP013-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, Feb 2015 to Mar 2015 when at the vicinity of comet 67P/C-G", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc1-mtp013-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:16.942335", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC2-MTP014-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Mar 2015 to Apr 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:17.942604", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC2-MTP014-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Mar 2015 to Apr 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp014-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:18.946663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC2-MTP015-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Apr 2015 to May 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:19.965300", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC2-MTP015-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, Apr 2015 to May 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp015-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:21.013973", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC2-MTP016-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 5, Ma 2015 to 2 Jun 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp016-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:22.023937", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC2-MTP016-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 5, Ma 2015 to 2 Jun 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp016-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:22.949729", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC2-MTP017-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, JUN 2015 to 30 Jun 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp017-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:23.955135", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC2-MTP017-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, JUN 2015 to 30 Jun 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc2-mtp017-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:24.959888", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC3-MTP018-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 30 Jun 2015 to 28 Jul 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp018-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:25.953569", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC3-MTP018-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 30 Jun 2015 to 28 Jul 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp018-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:26.964152", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC3-MTP019-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 28 Jul 2015 to 25 Aug 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp019-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:27.964747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC3-MTP019-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3: 28 Jul 2015 to 25 Aug 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp019-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:28.963700", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC3-MTP020-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 25th Aug 2015 to 22nd Sep 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp020-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:29.967869", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC3-MTP020-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 25th Aug 2015 to 22nd Sep 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp020-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:30.980055", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC3-MTP021-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 22nd Sep 2015 to 20th Oct 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp021-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:32.024695", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC3-MTP021-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase, 22nd Sep 2015 to 20th Oct 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc3-mtp021-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:33.034808", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC4-MTP022-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 20, Oct 2015 to 17 Nov 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp022-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:33.979629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC4-MTP022-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 20, Oct 2015 to 17 Nov 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp022-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:34.981705", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC4-MTP023-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 11, Nov 2015 to 15 Dec 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp023-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:35.980399", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC4-MTP023-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 11, Nov 2015 to 15 Dec 2015 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp023-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:36.984689", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC4-MTP024-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 15 Dec 2015 to 12 Jan 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:37.983965", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-ESC4-MTP024-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 15 Dec 2015 to 12 Jan 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-esc4-mtp024-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:38.986914", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT1-MTP025-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1, 12 Jan 2016 to 9 Feb 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp025-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:39.986045", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT1-MTP025-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1, 12 Jan 2016 to 9 Feb 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp025-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:41.002114", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT1-MTP026-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 9 Feb 2016 to 8 Mar 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp026-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:41.992962", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT1-MTP026-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 1 phase, 9 Feb 2016 to 8 Mar 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp026-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:43.031681", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT1-MTP027-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT1 8, Mar 2016 to 5 Apr 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp027-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:44.079795", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT1-MTP027-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT1 8, Mar 2016 to 5 Apr 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext1-mtp027-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:45.092997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT2-MTP028-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, 5th Apr 2016 to 3rd May 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp028-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:45.999440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT2-MTP028-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 2, 5th Apr 2016 to 3rd May 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp028-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:47.006720", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT2-MTP029-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3, May 2016 to 31 May 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp029-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:48.008368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT2-MTP029-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 3, May 2016 to 31 May 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp029-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:49.011752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT2-MTP030-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT2 from 31st May 2016 to 28th Jun 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp030-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:50.011645", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT2-MTP030-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT2 from 31st May 2016 to 28th Jun 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext2-mtp030-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:51.010456", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP031-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 28, Jun 2016 to 26 Jul 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp031-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:52.013329", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP031-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase 28, Jun 2016 to 26 Jul 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp031-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:53.019112", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP032-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26 Jul 2016 to 9 Aug 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp032-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:54.042262", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP032-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26 Jul 2016 to 9 Aug 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp032-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:55.092295", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP033-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT3, from Aug, 9 2016 to Sep, 2 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp033-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:56.102112", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP033-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Escort phase EXT3, from Aug, 9 2016 to Sep, 2 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp033-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:57.029909", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP034-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Ext 3 phase, Sep, 2 2016 to 26 Sep 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp034-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:58.030231", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP034-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Ext 3 phase, Sep, 2 2016 to 26 Sep 2016 when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp034-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:25:59.029367", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP035-V1.0", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26, Sep 2016 to 30 Sep 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp035-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:00.036956", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-EXT3-MTP035-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Extension 3 phase from 26, Sep 2016 to 30 Sep 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-ext3-mtp035-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:01.036999", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP003-V1.0", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, May 7th 2014 to June 4th 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp003-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:02.041017", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP003-V1.1", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, May 7th 2014 to June 4th 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp003-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:03.042705", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP004-V1.0", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jun 5th 2014 to July 2nd 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp004-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:04.042755", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP004-V1.1", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jun 5th 2014 to July 2nd 2014 in its journey to comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp004-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:05.051670", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP005-V1.0", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jul 2014 to Aug 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp005-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:06.102122", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP005-V1.1", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jul 2014 to Aug 2014 when approaching comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp005-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:07.113069", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP006-V1.0", "title": "NAVCAM RAW DATA FOR PRELANDING MTP006", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Aug 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp006-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:08.049679", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP006-V1.1", "title": "NAVCAM RAW DATA FOR PRELANDING MTP006", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Aug 2014 when approaching comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp006-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:10.295813", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP007-V1.0", "title": "NAVCAM RAW DATA FOR PRELANDING MTP007", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sept 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp007-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:10.847539", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP007-V1.1", "title": "NAVCAM RAW DATA FOR PRELANDING MTP007", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sept 2014 when approaching comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp007-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:11.871594", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP008-V1.0", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sep 2014 to Oct 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:12.915093", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP008-V1.1", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Sep 2014 to Oct 2014 when approaching comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp008-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:13.930515", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP009-V1.0", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Oct 2014 to Nov 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:14.851651", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-2-PRL-MTP009-V1.1", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Oct 2014 to Nov 2014 when approaching comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-2-prl-mtp009-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:15.856343", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC1-MTP010-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP010 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 22 Nov. 2014, 04:19:32 to 19 Dec. 2014, 22:35:03, during the ESCORT 1 MTP010 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp010-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:16.855322", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC1-MTP011-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP011 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 20 Dec. 2014, 04:19:32 to 13 Jan. 2015, 23:22:57, during the ESCORT 1 MTP011 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:17.860737", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC1-MTP012-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP012 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 14 Jan. 2015, 04:19:32 to 10 Feb. 2015, 23:22:55, during the ESCORT 1 MTP012 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp012-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:18.864820", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC1-MTP013-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 1 MTP013 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 11 Feb. 2015, 04:38:06 to 10 Mar. 2015, 23:22:54, during the ESCORT 1 MTP013 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc1-mtp013-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:19.868551", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC2-MTP014-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP014 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 11 Mar. 2015, 04:36:19 to 08 Apr. 2015, 11:22:54, during the ESCORT 2 MTP014 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:20.872544", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC2-MTP015-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP015 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 08 Apr. 2015, 12:58:02 to 05 May. 2015, 23:07:19, during the ESCORT 2 MTP015 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:21.869725", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC2-MTP016-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP016 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 06 May. 2015, 06:02:16 to 02 Jun. 2015, 23:02:20, during the ESCORT 2 MTP016 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp016-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:22.874634", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC2-MTP017-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 2 MTP017 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 03 Jun. 2015, 06:02:17 to 30 Jun. 2015, 23:02:19, during the ESCORT 2 MTP017 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc2-mtp017-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:23.924053", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC3-MTP018-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP018 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Jul. 2015, 04:38:43 to 28 Jul. 2015, 23:02:19, during the ESCORT 3 MTP018 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp018-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:24.940130", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC3-MTP019-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP019 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 29 Jul. 2015, 06:02:17 to 25 Aug. 2015, 23:02:18, during the ESCORT 3 MTP019 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp019-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:25.879612", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC3-MTP020-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP020 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 26 Aug. 2015, 06:02:17 to 22 Sep. 2015, 23:02:19, during the ESCORT 3 MTP020 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp020-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:26.884415", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC3-MTP021-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 3 MTP021 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Sep. 2015, 06:02:17 to 20 Oct. 2015, 23:02:19, during the ESCORT 3 MTP021 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc3-mtp021-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:27.884102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC4-MTP022-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP022 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 21 Oct. 2015, 06:02:18 to 17 Nov. 2015, 23:02:19, during the ESCORT 4 MTP022 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp022-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:28.882301", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC4-MTP023-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP023 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 18 Nov. 2015, 06:02:17 to 15 Dec. 2015, 23:02:20, during the ESCORT 4 MTP023 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp023-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:29.894053", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-ESC4-MTP024-V1.0", "title": "NAVCAM CALIBRATED DATA FOR ESCORT 4 MTP024 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 16 Dec. 2015, 06:02:17 to 12 Jan. 2016, 23:02:20, during the ESCORT 4 MTP024 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-esc4-mtp024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:30.891939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT1-MTP025-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP025 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 13 Jan. 2016, 06:02:17 to 09 Feb. 2016, 23:17:55, during the EXTENSION 1 MTP025 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp025-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:31.894433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT1-MTP026-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP026 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 10 Feb. 2016, 06:04:22 to 08 Mar. 2016, 23:17:57, during the EXTENSION 1 MTP026 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp026-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:32.899355", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT1-MTP027-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 1 MTP027 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 09 Mar. 2016, 06:04:22 to 05 Apr. 2016, 23:17:53, during the EXTENSION 1 MTP027 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext1-mtp027-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:33.906414", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT2-MTP028-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP028 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 06 Apr. 2016, 06:04:22 to 03 May. 2016, 23:17:53, during the EXTENSION 2 MTP028 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp028-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:34.937561", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT2-MTP029-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP029 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 04 May. 2016, 06:04:22 to 31 May. 2016, 23:17:53, during the EXTENSION 2 MTP029 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp029-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:35.985426", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT2-MTP030-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 2 MTP030 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Jun. 2016, 06:04:21 to 28 Jun. 2016, 23:17:54, during the EXTENSION 2 MTP030 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext2-mtp030-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:36.996118", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT3-MTP031-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP031 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 29 Jun. 2016, 06:04:23 to 26 Jul. 2016, 23:17:53, during the EXTENSION 3 MTP031 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp031-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:37.907646", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT3-MTP032-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP032 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 27 Jul. 2016, 06:04:22 to 09 Aug. 2016, 23:17:53, during the EXTENSION 3 MTP032 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp032-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:38.908142", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT3-MTP033-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP033 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 10 Aug. 2016, 01:59:31 to 02 Sep. 2016, 06:02:03, during the EXTENSION 3 MTP033 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp033-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:39.914221", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT3-MTP034-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP034 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 02 Sep. 2016, 11:19:32 to 26 Sep. 2016, 06:02:03, during the EXTENSION 3 MTP034 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp034-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:40.916045", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-EXT3-MTP035-V1.0", "title": "NAVCAM CALIBRATED DATA FOR EXTENSION 3 MTP035 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 26 Sep. 2016, 13:10:32 to 30 Sep. 2016, 00:59:13, during the EXTENSION 3 MTP035 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-ext3-mtp035-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:41.912856", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-PRL-MTP003-V1.0", "title": "NAVCAM CALIBRATED DATA FOR PRELANDING MTP003 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 08 May. 2014, 13:18:02 to 04 Jun. 2014, 10:32:05, during the PRELANDING MTP003 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp003-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:42.926747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-PRL-MTP004-V1.0", "title": "NAVCAM CALIBRATED DATA FOR PRELANDING MTP004 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 05 Jun. 2014, 11:19:02 to 02 Jul. 2014, 08:17:04, during the PRELANDING MTP004 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp004-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:43.922746", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-PRL-MTP005-V1.0", "title": "NAVCAM CALIBRATED DATA FOR PRELANDING MTP005 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 03 Jul. 2014, 09:00:01 to 01 Aug. 2014, 09:53:18, during the PRELANDING MTP005 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp005-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:44.922181", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-PRL-MTP006-V1.0", "title": "NAVCAM CALIBRATED DATA FOR PRELANDING MTP006 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 01 Aug. 2014, 11:07:18 to 02 Sep. 2014, 06:22:56, during the PRELANDING MTP006 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp006-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:45.947863", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-PRL-MTP007-V1.0", "title": "NAVCAM CALIBRATED DATA FOR PRELANDING MTP007 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 02 Sep. 2014, 11:34:31 to 23 Sep. 2014, 09:40:03, during the PRELANDING MTP007 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp007-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:46.998532", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-PRL-MTP008-V1.0", "title": "NAVCAM CALIBRATED DATA FOR PRELANDING MTP008 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Sep. 2014, 11:34:32 to 24 Oct. 2014, 06:22:59, during the PRELANDING MTP008 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:48.007463", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-NAVCAM-3-PRL-MTP009-V1.0", "title": "NAVCAM CALIBRATED DATA FOR PRELANDING MTP009 PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 24 Oct. 2014, 11:34:32 to 21 Nov. 2014, 23:00:03, during the PRELANDING MTP009 phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-navcam-3-prl-mtp009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:48.927336", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSINAC 2 EDR MTP 010 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:49.989547", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:50.997381", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M10-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m10-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:51.929641", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 011 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:53.001941", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:53.999187", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M11-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m11-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:54.947843", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 012 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:55.989517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:57.023043", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M12-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m12-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:58.007763", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 013 V1.0, RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:26:59.063132", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:00.070544", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC1-67PCHURYUMOV-M13-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc1-67pchuryumov-m13-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:02.300582", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 014 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:03.371116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:04.362704", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M14-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m14-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:05.341473", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 015 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:06.464077", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:07.451214", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M15-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m15-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:08.319247", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 016 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:09.382028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:10.381806", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M16-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m16-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:11.327553", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 017 V1.0, RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:12.374180", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:13.389456", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC2-67PCHURYUMOV-M17-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc2-67pchuryumov-m17-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:14.331981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 018 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:15.398502", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:16.418050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M18-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m18-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:17.406383", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 2 EDR MTP 019 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:18.463245", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:19.470136", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M19-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m19-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:20.351977", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 2 EDR MTP020 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m20-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:21.403856", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M20-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m20-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:22.349788", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 2 EDR MTP021 V1.0, RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m21-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:23.415970", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC3-67PCHURYUMOV-M21-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc3-67pchuryumov-m21-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:24.359476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP022 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m22-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:25.411738", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M22-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m22-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:26.362903", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP023 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m23-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:27.419924", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M23-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m23-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:28.413121", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 2 EDR MTP024 V1.0, RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m24-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:29.474561", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-ESC4-67PCHURYUMOV-M24-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-esc4-67pchuryumov-m24-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:30.373029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP025 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m25-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:31.432412", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M25-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m25-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:32.376524", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP026 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m26-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:33.442817", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M26-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m26-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:34.382469", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 2 EDR MTP027 V1.0, RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m27-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:35.444746", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT1-67PCHURYUMOV-M27-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext1-67pchuryumov-m27-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:36.387080", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSINAC 2 EDR MTP028 V1.0, RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m28-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:37.462155", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M28-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m28-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:38.391776", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M29-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m29-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:39.482663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M29-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m29-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:40.476934", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M30-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m30-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:41.528274", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT2-67PCHURYUMOV-M30-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext2-67pchuryumov-m30-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:42.399257", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M31-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m31-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:43.442142", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M31-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m31-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:44.408812", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M32-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m32-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:45.457272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M32-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m32-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:46.408648", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M33-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m33-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:47.461877", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M33-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m33-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:48.413484", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M34-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m34-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:49.464240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M34-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m34-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:50.437423", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M35-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m35-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:51.538419", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-EXT3-67PCHURYUMOV-M35-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-ext3-67pchuryumov-m35-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:52.599121", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M01 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:53.547861", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 001 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:54.486097", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:55.490716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M01-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m01-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:56.431013", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M02 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:57.487449", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 002 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:58.555688", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:27:59.496642", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M02-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m02-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:00.440078", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M03 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:01.501523", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 003 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:02.550883", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:03.550203", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M03-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m03-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:04.460278", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M04 OSINAC 2 EDR data, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:05.501466", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 004 V1.1, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:06.695364", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:07.518308", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:08.458915", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04B-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 004B V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m04b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:09.521972", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 005 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:10.527456", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:11.523885", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M05-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m05-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:12.457212", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 006 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:13.587978", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:14.609937", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M06-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m06-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:15.565041", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR DATA MTP 007 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:16.618556", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:17.537680", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:18.490798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07B-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 007B V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m07b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:19.544550", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 008 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:20.539985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:21.544205", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M08-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m08-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:22.491183", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 2 EDR MTP 009 V1.0, RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:23.535129", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:24.568084", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-2-PRL-67PCHURYUMOV-M09-V3.0", "title": "RAW OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-2-prl-67pchuryumov-m09-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:25.567497", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSINAC 3 RDR MTP 010 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:26.613461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:27.626511", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M10-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m10-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:28.508663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 011 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:29.556774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:30.554070", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M11-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m11-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:31.510745", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 012 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:32.569538", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:33.583243", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M12-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m12-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:34.515919", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 013 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:35.587443", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:36.631643", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc1-67pchuryumov-m13-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:37.584778", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 014 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:38.679409", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:39.585555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M14-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m14-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:40.527686", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 015 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:41.590490", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:42.589263", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M15-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m15-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:43.540703", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 016 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:44.602669", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:45.594997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M16-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m16-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:46.543303", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 017 V1.0, RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:47.650212", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:48.685767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC2-67PCHURYUMOV-M17-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc2-67pchuryumov-m17-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:49.549190", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 018 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:50.694826", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:51.603060", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M18-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m18-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:52.568274", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 019 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:53.610724", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:54.610418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M19-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m19-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:55.564575", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 3 RDR MTP020 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m20-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:56.624871", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M20-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m20-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:57.574132", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSINAC 3 RDR MTP021 V1.0, RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m21-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:58.653641", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC3-67PCHURYUMOV-M21-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc3-67pchuryumov-m21-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:28:59.651541", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP022 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m22-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:00.694190", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M22-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m22-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:01.581410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP023 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m23-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:02.633029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M23-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m23-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:03.582757", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSINAC 3 RDR MTP024 V1.0, RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m24-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:04.633029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-ESC4-67PCHURYUMOV-M24-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-esc4-67pchuryumov-m24-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:05.592182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP025 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m25-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:06.667291", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M25-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m25-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:07.596508", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP026 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m26-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:08.639111", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M26-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m26-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:09.611066", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSINAC 3 RDR MTP027 V1.0, RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m27-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:10.723154", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT1-67PCHURYUMOV-M27-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext1-67pchuryumov-m27-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:11.664290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSINAC 3 RDR MTP028 V1.0, RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m28-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:12.760849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M28-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m28-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:13.609409", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M29-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m29-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:14.668628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M29-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m29-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:15.612779", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M30-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m30-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:16.675817", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT2-67PCHURYUMOV-M30-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext2-67pchuryumov-m30-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:17.618448", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M31-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m31-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:18.659640", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M31-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m31-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:19.619052", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M32-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m32-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:20.681871", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M32-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m32-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:21.665475", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M33-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m33-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:22.769772", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M33-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m33-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:23.627490", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M34-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m34-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:24.674939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M34-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m34-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:25.636393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M35-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m35-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:26.675850", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-EXT3-67PCHURYUMOV-M35-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-ext3-67pchuryumov-m35-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:27.638146", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 001 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:28.697805", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:29.701021", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M01-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m01-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:30.646950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 002 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:31.705646", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:32.728474", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M02-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m02-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:33.867417", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 003 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:34.776628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:35.785137", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M03-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m03-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:36.656393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 004 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:37.711135", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:38.723482", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:39.668648", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04B-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 004B V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m04b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:40.722448", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 005 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:41.724591", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:42.734758", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M05-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m05-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:43.675894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 006 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:44.784905", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:45.787690", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M06-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m06-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:46.690788", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR DATA MTP 007 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:47.722994", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:48.738610", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:49.684430", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07B-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 007B V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m07b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:50.743755", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 008 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:51.741724", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:52.753050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M08-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m08-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:53.695584", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSINAC 3 RDR MTP 009 V1.0, RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:54.745667", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:55.808756", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-3-PRL-67PCHURYUMOV-M09-V3.0", "title": "CALIBRATED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-3-prl-67pchuryumov-m09-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:56.788828", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M10-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:57.801166", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M10-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:58.704494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M10-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:29:59.721226", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M10-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:00.716951", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M10-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m10-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:01.714306", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M11-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:02.721599", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M11-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:03.723805", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M11-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:04.715850", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M11-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:05.734826", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M11-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m11-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:06.752739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M12-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:07.801278", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M12-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:08.810718", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M12-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:09.732483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M12-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:10.734914", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M12-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m12-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:11.740229", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M13-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:12.742079", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M13-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:13.745913", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M13-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:14.745374", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M13-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:15.747803", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67P-M13-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67p-m13-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:16.750970", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M10-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m10-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:17.820635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M10-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m10-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:18.809617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M11-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m11-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:19.858129", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M11-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m11-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:20.759121", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M12-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m12-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:21.819676", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M12-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m12-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:22.762194", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M13-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m13-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:23.806942", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC1-67PCHURYUMOV-M13-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc1-67pchuryumov-m13-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:24.768797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M14-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:25.765024", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M14-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:26.766985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M14-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:27.768744", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M14-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:28.774973", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M14-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m14-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:29.815501", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M15-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:30.831742", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M15-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:31.781197", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M15-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:32.782089", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M15-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:33.778607", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M15-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m15-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:34.783980", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M16-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:35.783191", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M16-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:36.789576", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M16-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:37.789745", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M16-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:38.796206", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M16-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m16-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:39.794019", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M17-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:40.824878", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M17-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:41.877412", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M17-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:42.890270", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M17-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:43.801206", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67P-M17-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67p-m17-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:44.807170", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M14-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m14-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:45.869261", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M14-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m14-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:46.812109", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M15-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m15-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:47.874735", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M15-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m15-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:48.818578", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M16-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m16-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:49.874840", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M16-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m16-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:50.819935", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M17-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m17-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:51.888902", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC2-67PCHURYUMOV-M17-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc2-67pchuryumov-m17-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:52.891525", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M18-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:53.901075", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M18-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:54.833531", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M18-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:55.834865", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M18-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:56.838193", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M18-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m18-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:57.835987", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M19-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:58.841170", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M19-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:30:59.846258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M19-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:00.845319", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M19-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:01.843085", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M19-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m19-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:02.853611", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M20-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:03.897920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M20-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:04.908267", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M20-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:05.857921", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M20-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:06.862629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M20-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m20-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:07.854348", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M21-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:08.862735", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M21-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:09.866319", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M21-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:10.872028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M21-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:11.872015", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67P-M21-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67p-m21-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:12.874445", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M18-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m18-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:13.933432", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M18-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m18-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:15.002493", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M19-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m19-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:16.014389", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M19-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m19-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:16.968968", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M20-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m20-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:18.020384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M20-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m20-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:18.887898", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M21-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m21-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:19.949196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC3-67PCHURYUMOV-M21-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc3-67pchuryumov-m21-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:20.894207", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M22-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:21.895912", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M22-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:22.893664", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M22-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:23.899410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M22-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:24.901993", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M22-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m22-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:25.915303", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M23-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:26.965646", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M23-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:27.979150", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M23-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:28.907958", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M23-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:29.922396", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M23-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m23-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:30.913956", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M24-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:31.927881", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M24-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:32.922663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M24-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:33.926232", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M24-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:34.922746", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67P-M24-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67p-m24-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:35.929418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M22-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m22-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:36.979972", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M22-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m22-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:37.975314", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M23-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m23-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:39.033985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M23-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m23-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:39.936387", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M24-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m24-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:41.089281", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-ESC4-67PCHURYUMOV-M24-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-esc4-67pchuryumov-m24-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:41.952706", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M25-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:42.945102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M25-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:43.944172", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M25-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:44.950855", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M25-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:45.954453", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M25-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m25-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:46.954328", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M26-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:47.958033", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M26-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:48.988531", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M26-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:50.047191", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M26-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:51.045471", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M26-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m26-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:51.961836", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M27-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:52.960862", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M27-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:53.966920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M27-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:54.965024", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M27-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:55.968287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67P-M27-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67p-m27-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:56.971180", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M25-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m25-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:58.020128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M25-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m25-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:31:58.981997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M26-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m26-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:00.052124", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M26-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m26-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:01.047194", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M27-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m27-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:02.096102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT1-67PCHURYUMOV-M27-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext1-67pchuryumov-m27-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:02.984219", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M28-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:03.987381", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M28-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:04.991858", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M28-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:05.988021", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M28-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:06.996226", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M28-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m28-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:07.996894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M29-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:09.008864", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M29-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:10.001731", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M29-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:11.006482", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M29-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:12.063357", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M29-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m29-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:13.068181", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M30-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:14.009236", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M30-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:15.008621", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M30-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:16.013835", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M30-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:17.007817", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67P-M30-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67p-m30-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:18.017870", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M28-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m28-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:19.090400", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M28-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m28-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:20.020590", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M29-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m29-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:21.077711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M29-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m29-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:22.023390", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M30-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m30-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:23.120359", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT2-67PCHURYUMOV-M30-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext2-67pchuryumov-m30-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:24.113169", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M31-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:25.123332", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M31-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:26.032934", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M31-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:27.035882", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M31-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:28.042115", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M31-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m31-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:29.040979", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M32-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:30.040143", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M32-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:31.064863", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M32-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:32.047716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M32-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:33.054628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M32-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m32-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:34.077753", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M33-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:35.125752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M33-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:36.137254", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M33-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:37.056475", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M33-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:38.056301", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M33-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m33-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:39.063243", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M34-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:40.070717", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M34-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:41.068477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M34-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:42.071388", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M34-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:43.068492", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M34-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m34-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:44.076057", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M35-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:45.084758", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M35-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:46.143166", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M35-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:47.146859", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M35-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:48.077583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67P-M35-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67p-m35-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:49.082716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M31-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m31-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:50.148067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M31-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m31-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:51.089315", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M32-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m32-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:52.149613", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M32-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m32-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:53.095026", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M33-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m33-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:54.140303", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M33-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m33-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:55.098461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M34-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m34-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:56.260106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M34-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m34-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:57.143048", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M35-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m35-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:58.252503", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-EXT3-67PCHURYUMOV-M35-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-ext3-67pchuryumov-m35-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:32:59.107485", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M01-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:00.108127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M01-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:01.110116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M01-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:02.105247", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M01-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:03.111276", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M01-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m01-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:04.115250", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M02-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:05.116368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M02-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:06.115109", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M02-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:07.126706", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M02-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:08.158661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M02-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m02-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:09.198654", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M03-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:10.215696", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M03-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:11.128942", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M03-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:12.129974", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M03-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:13.133844", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M03-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m03-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:14.133721", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M04-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:15.139107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M04-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:16.137252", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M04-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:17.142992", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M04-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:18.142752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M04-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m04-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:19.169250", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M05-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:20.209688", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M05-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:21.225040", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M05-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:22.149557", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M05-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:23.156651", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M05-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m05-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:24.161372", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M06-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:25.164852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M06-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:26.164476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M06-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:27.167025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M06-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:28.164683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M06-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m06-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:29.165799", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M07-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:30.173139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M07-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:31.221966", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M07-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:32.233586", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M07-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:33.176453", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M07-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m07-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:34.181636", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M08-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:35.182015", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M08-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:36.186849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M08-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:37.190220", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M08-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:38.187357", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M08-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m08-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:39.194468", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M09-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:40.195823", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M09-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:41.202634", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M09-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:42.234946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M09-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:43.277385", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67P-M09-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67p-m09-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:44.294000", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M01-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m01-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:45.343994", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M01-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m01-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:46.205946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M02-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m02-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:47.266377", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M02-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m02-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:48.212256", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M03-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m03-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:49.268434", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M03-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m03-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:50.215345", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M04-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m04-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:51.266643", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M04-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m04-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:52.220794", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M05-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m05-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:53.298955", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M05-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m05-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:54.289735", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M06-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m06-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:55.349617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M06-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m06-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:56.225887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M07-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m07-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:57.286333", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M07-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m07-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:58.230037", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M08-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m08-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:33:59.284374", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M08-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m08-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:00.243422", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M09-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Narrow Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m09-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:01.290937", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-4-PRL-67PCHURYUMOV-M09-V2.0", "title": "RESAMPLED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-4-prl-67pchuryumov-m09-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:02.248296", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC1-67P-M10-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m10-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:03.236208", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC1-67P-M11-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m11-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:04.254023", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC1-67P-M12-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m12-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:05.301832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC1-67P-M13-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc1-67p-m13-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:06.313740", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC2-67P-M14-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m14-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:07.249438", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC2-67P-M15-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m15-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:08.255805", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC2-67P-M16-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m16-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:09.257978", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC2-67P-M17-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc2-67p-m17-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:10.263323", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC3-67P-M18-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m18-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:11.268942", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC3-67P-M19-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m19-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:12.269725", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC3-67P-M20-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m20-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:13.267813", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC3-67P-M21-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc3-67p-m21-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:14.263977", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC4-67P-M22-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m22-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:15.276939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC4-67P-M23-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m23-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:16.308895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-ESC4-67P-M24-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-esc4-67p-m24-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:17.364145", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT1-67P-M25-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m25-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:18.271354", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT1-67P-M26-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m26-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:19.277304", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT1-67P-M27-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext1-67p-m27-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:20.285389", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT2-67P-M28-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m28-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:21.290322", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT2-67P-M29-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m29-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:22.294573", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT2-67P-M30-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext2-67p-m30-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:23.293771", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT3-67P-M31-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m31-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:24.293809", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT3-67P-M32-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m32-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:25.299281", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT3-67P-M33-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m33-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:26.299784", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT3-67P-M34-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m34-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:27.323395", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-EXT3-67P-M35-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-ext3-67p-m35-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:28.368874", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-PRL-67P-M05-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m05-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:29.379935", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-PRL-67P-M06-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m06-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:30.312504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-PRL-67P-M07-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m07-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:31.309231", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-PRL-67P-M08-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m08-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:32.311632", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSINAC-5-PRL-67P-M09-GEO-V1.0", "title": "DERIVED OSIRIS NAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osinac-5-prl-67p-m09-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:33.311492", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSIWAC 2 EDR MTP 010 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:34.373156", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:35.372816", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M10-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m10-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:36.325478", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSINAC 3 RDR MTP 013 V1.0, RO-C-OSINAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:37.484556", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:38.389431", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M11-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m11-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:39.374750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 012 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:40.437282", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:41.482314", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M12-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m12-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:42.332724", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 013 V1.0, RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:43.384933", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:44.394297", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC1-67PCHURYUMOV-M13-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc1-67pchuryumov-m13-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:45.337467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 014 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:46.398440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:47.404657", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M14-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m14-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:48.340240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 015 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:49.396825", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:50.458674", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M15-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m15-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:51.443597", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 016 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:52.491841", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:53.400486", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M16-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m16-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:54.361952", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 017 V1.0, RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:55.420974", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:56.403258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC2-67PCHURYUMOV-M17-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc2-67pchuryumov-m17-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:57.363450", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 018 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:58.425386", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:34:59.425194", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M18-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m18-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:00.372195", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 2 EDR MTP 019 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:01.461651", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:02.510723", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M19-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m19-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:03.457526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 2 EDR MTP020 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m20-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:04.508259", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M20-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m20-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:05.381830", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 2 EDR MTP021 V1.0, RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m21-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:06.435704", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC3-67PCHURYUMOV-M21-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc3-67pchuryumov-m21-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:07.387416", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP022 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m22-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:08.436904", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M22-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-10-20T23:25:00.000 to 2015-11-17T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m22-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:09.391041", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP023 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m23-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:10.446308", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M23-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m23-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:11.398766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 2 EDR MTP024 V1.0, RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m24-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:12.455191", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-ESC4-67PCHURYUMOV-M24-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-esc4-67pchuryumov-m24-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:13.459513", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP025 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m25-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:14.512521", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M25-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m25-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:15.406662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP026 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m26-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:16.451774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M26-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m26-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:17.419411", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 2 EDR MTP027 V1.0, RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m27-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:18.457073", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT1-67PCHURYUMOV-M27-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext1-67pchuryumov-m27-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:19.414103", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSIWAC 2 EDR MTP028 V1.0, RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m28-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:20.476916", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M28-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m28-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:21.418202", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M29-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m29-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:22.474963", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M29-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m29-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:23.424870", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M30-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m30-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:24.512012", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT2-67PCHURYUMOV-M30-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext2-67pchuryumov-m30-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:25.517922", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M31-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m31-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:26.569778", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M31-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m31-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:27.434136", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M32-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m32-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:28.482281", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M32-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m32-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:29.440211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M33-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m33-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:30.483682", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M33-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m33-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:31.437060", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M34-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m34-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:32.502311", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M34-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m34-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:33.445649", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M35-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains uncalibrated images in DN unit (CODMAC level 2) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m35-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:34.500528", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-EXT3-67PCHURYUMOV-M35-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-ext3-67pchuryumov-m35-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:35.480977", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M01 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:36.574465", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 001 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:37.581033", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:38.587946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M01-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m01-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:39.458440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M02 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:40.516848", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 002 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:41.516854", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:42.519987", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M02-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m02-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:43.461010", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M03 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:44.533710", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 003 V1.1, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:45.525472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:46.543321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M03-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m03-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:47.533262", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET 67P PRELANDING M04 OSIWAC 2 EDR data, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:48.593430", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.1", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 004 V1.1, O-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V1.1, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:49.601461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:50.541975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:51.483782", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04B-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 004B V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m04b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:52.540902", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 005 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:53.551284", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:54.549621", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M05-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m05-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:55.493894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 006 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:56.550752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:57.552486", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M06-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m06-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:58.548410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR DATA MTP 007 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:35:59.603971", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:00.640743", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:01.505697", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07B-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 007B V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m07b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:02.559858", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 008 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:03.558505", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:04.569553", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M08-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m08-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:05.519288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 2 EDR MTP 009 V1.0, RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:06.579251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:07.577874", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-2-PRL-67PCHURYUMOV-M09-V3.0", "title": "RAW OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-2-prl-67pchuryumov-m09-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:08.525659", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT1 OSIWAC 3 RDR MTP 010 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:09.609467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:10.683617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M10-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m10-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:11.616326", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 011 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:12.670790", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:13.590142", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M11-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m11-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:14.537473", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 012 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:15.596396", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:16.609440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M12-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m12-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:17.554758", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 013 V1.0, RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:18.701145", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission at the comet 67P, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:19.606096", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC1-67PCHURYUMOV-M13-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc1-67pchuryumov-m13-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:20.567198", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 014 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:21.664537", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:22.668692", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M14-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m14-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:23.557074", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 015 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:24.613536", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:25.614050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M15-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m15-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:26.566306", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 016 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:27.625566", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:28.625056", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M16-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m16-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:29.574348", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 017 V1.0, RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:30.635603", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:31.629026", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC2-67PCHURYUMOV-M17-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc2-67pchuryumov-m17-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:32.622785", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 018 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:33.684928", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:34.726389", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M18-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m18-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:35.587540", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT OSIWAC 3 RDR MTP 019 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:36.645168", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission at the comet 67P, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:37.632674", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M19-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m19-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:38.590388", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 3 RDR MTP020 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m20-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:39.651887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M20-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m20-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:40.594756", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 3 OSIWAC 3 RDR MTP021 V1.0, RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m21-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:41.653437", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC3-67PCHURYUMOV-M21-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc3-67pchuryumov-m21-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:42.593194", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M22-V1.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "CALIBRATED OSIRIS WAC data from the COMET ESCORT 4 phase. The data has been acquired between 2015-10-20T23:25:00.000 and 2015-11-17T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m22-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:43.637184", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 3 RDR MTP023 V1.0, RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m23-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:44.747040", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M23-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m23-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:45.694780", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET ESCORT 4 OSIWAC 3 RDR MTP024 V1.0, RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m24-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:46.748465", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-ESC4-67PCHURYUMOV-M24-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-esc4-67pchuryumov-m24-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:47.610588", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP025 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2017.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m25-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:48.665920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M25-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m25-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:49.617683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP026 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m26-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:50.656436", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M26-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m26-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:51.616547", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 1 OSIWAC 3 RDR MTP027 V1.0, RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m27-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:52.672667", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT1-67PCHURYUMOV-M27-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext1-67pchuryumov-m27-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:53.627796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER ROSETTA EXTENSION 2 OSIWAC 3 RDR MTP028 V1.0, RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2018.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m28-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:54.694007", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M28-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m28-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:55.696819", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M29-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m29-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:56.750016", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M29-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m29-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:57.633710", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M30-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission at the comet 67P, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m30-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:58.686787", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT2-67PCHURYUMOV-M30-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext2-67pchuryumov-m30-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:36:59.641557", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M31-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m31-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:00.711164", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M31-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m31-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:01.637121", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M32-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m32-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:02.708116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M32-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m32-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:03.645593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M33-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m33-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:04.708466", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M33-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m33-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:05.655882", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M34-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m34-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:06.762792", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M34-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m34-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:07.716730", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M35-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains radiometric calibrated images in W/m^2/sr/nm (CODMAC level 3) acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission at the comet 67P, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m35-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:08.767356", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-EXT3-67PCHURYUMOV-M35-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-ext3-67pchuryumov-m35-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:09.661479", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 001 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:10.719693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:11.713882", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M01-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m01-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:12.656300", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 002 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:13.719644", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:14.731778", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M02-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m02-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:15.672501", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 003 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:16.731391", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:17.764272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M03-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m03-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:18.760202", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 004 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:19.821155", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:20.830398", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:21.684536", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04B-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 004B V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M04B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m04b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:22.734035", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 005 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:23.733195", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:24.746763", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M05-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m05-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:25.695096", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 006 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:26.749754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:27.750686", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M06-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m06-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:28.723086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR DATA MTP 007 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2015.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:29.827543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:30.827179", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:31.705259", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07B-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 007B V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M07B-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m07b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:32.759370", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 008 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:33.773621", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:34.769591", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M08-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m08-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:35.716208", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V1.0", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Gutierrez-Marques, P., Sierks, H. and the OSIRIS Team, ROSETTA-ORBITER COMET PRELANDING OSIWAC 3 RDR MTP 009 V1.0, RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V1.0, ESA Planetary Science Archive and NASA Planetary Data System, 2016.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:36.761612", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V2.0", "title": "Menu: Skip within this page", "description": "Abstract: This data set contains images acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission at the comet 67P, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. This version V2.0 supersedes previous deliveries of the same dataset.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:37.777016", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-3-PRL-67PCHURYUMOV-M09-V3.0", "title": "CALIBRATED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-3-prl-67pchuryumov-m09-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:38.716472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M10-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:39.736766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M10-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:40.779634", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M10-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:41.795649", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M10-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:42.724945", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M10-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m10-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:43.734518", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M11-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:44.735679", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M11-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:45.730959", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M11-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:46.741352", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M11-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:47.743469", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M11-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m11-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:48.743875", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M12-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:49.748403", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M12-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:50.740981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M12-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:51.792757", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M12-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:52.807365", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M12-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m12-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:53.758997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M13-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:54.754076", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M13-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:55.760752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M13-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:56.763818", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M13-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:57.762089", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67P-M13-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67p-m13-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:58.766835", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M10-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m10-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:37:59.928019", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M10-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m10-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:00.770245", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M11-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m11-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:01.829338", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M11-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m11-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:02.803014", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M12-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m12-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:03.915289", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M12-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m12-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:04.864077", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M13-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 1 phase of the Rosetta mission, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m13-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:05.916856", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC1-67PCHURYUMOV-M13-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc1-67pchuryumov-m13-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:06.781346", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M14-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:07.781057", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M14-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:08.784204", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M14-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:09.791190", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M14-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:10.790507", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M14-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m14-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:11.792579", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M15-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:12.798333", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M15-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:13.816333", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M15-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:14.860872", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M15-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:15.875832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M15-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m15-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:16.806918", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M16-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:17.808371", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M16-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:18.811217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M16-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:19.815065", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M16-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:20.819278", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M16-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m16-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:21.820478", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M17-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:22.823619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M17-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:23.817896", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M17-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:24.829600", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M17-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:25.873451", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67P-M17-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67p-m17-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:26.886489", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M14-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m14-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:27.979433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M14-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m14-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:28.831695", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M15-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m15-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:29.886158", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M15-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m15-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:30.839847", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M16-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m16-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:31.908516", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M16-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m16-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:32.845330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M17-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 2 phase of the Rosetta mission, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m17-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:33.905086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC2-67PCHURYUMOV-M17-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc2-67pchuryumov-m17-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:34.844848", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M18-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:35.848218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M18-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:36.885690", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M18-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:37.931579", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M18-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:38.941783", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M18-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m18-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:39.862663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M19-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:40.864010", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M19-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:41.868893", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M19-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:42.868219", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M19-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:43.866778", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M19-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m19-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:44.872001", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M20-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:45.875606", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M20-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:46.879653", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M20-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:47.892747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M20-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:48.943058", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M20-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m20-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:49.955218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M21-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:50.891943", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M21-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:51.895844", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M21-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:52.893920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M21-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:53.891467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67P-M21-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67p-m21-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:54.890491", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M18-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m18-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:55.963855", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M18-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m18-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:56.903476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M19-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m19-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:57.953718", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M19-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m19-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:38:58.903278", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M20-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m20-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:00.008154", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M20-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m20-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:00.963766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M21-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 3 phase of the Rosetta mission, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m21-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:02.055078", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC3-67PCHURYUMOV-M21-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc3-67pchuryumov-m21-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:02.911910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M23-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:03.908493", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M23-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:04.915624", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M23-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:05.921828", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M23-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:06.922263", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M23-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m23-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:07.918557", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M24-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:08.925473", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M24-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:09.927910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M24-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:10.962374", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M24-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:12.014007", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67P-M24-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67p-m24-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:13.020573", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M23-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m23-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:14.073321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M23-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m23-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:14.939296", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M24-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the COMET ESCORT 4 phase of the Rosetta mission, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m24-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:15.979938", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-ESC4-67PCHURYUMOV-M24-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-esc4-67pchuryumov-m24-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:16.941754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M25-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:17.948065", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M25-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:18.942034", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M25-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:19.948599", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M25-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:20.970827", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M25-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m25-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:21.967178", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M26-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:23.020240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M26-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:24.031662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M26-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:24.952354", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M26-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:25.966887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M26-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m26-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:26.964655", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M27-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:27.969953", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M27-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:28.970479", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M27-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:29.967058", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M27-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:30.974435", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67P-M27-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67p-m27-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:31.974088", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M25-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m25-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:33.035494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M25-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m25-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:34.031009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M26-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m26-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:35.083877", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M26-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m26-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:35.984211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M27-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 1 phase of the Rosetta mission, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m27-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:37.036446", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT1-67PCHURYUMOV-M27-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext1-67pchuryumov-m27-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:37.984852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M28-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:38.993191", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M28-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:39.990200", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M28-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:41.106814", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M28-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:42.006985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M28-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m28-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:43.003965", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M29-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:44.000987", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M29-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:45.041512", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M29-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:46.088186", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M29-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:47.008313", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M29-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m29-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:48.014141", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M30-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:49.012877", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M30-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:50.017126", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M30-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:51.018393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M30-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:52.026733", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67P-M30-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67p-m30-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:53.032672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M28-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m28-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:54.084360", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M28-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m28-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:55.025104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M29-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m29-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:56.107522", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M29-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m29-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:57.094708", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M30-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 2 phase of the Rosetta mission, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m30-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:58.151117", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT2-67PCHURYUMOV-M30-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext2-67pchuryumov-m30-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:39:59.037290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M31-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:00.041368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M31-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:01.041685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M31-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:02.045396", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M31-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:03.047095", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M31-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m31-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:04.050751", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M32-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:05.053277", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M32-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:06.047116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M32-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:07.056678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M32-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:08.108195", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M32-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m32-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:09.120178", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M33-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:10.060517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M33-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:11.056637", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M33-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:12.067075", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M33-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:13.071745", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M33-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m33-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:14.071950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M34-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:15.071797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M34-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:16.067587", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M34-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:17.079602", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M34-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:18.076790", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M34-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m34-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:19.117471", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M35-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:20.163468", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M35-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:21.179952", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M35-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:22.086593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M35-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:23.091638", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67P-M35-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67p-m35-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:24.086343", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M31-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m31-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:25.156173", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M31-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m31-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:26.096538", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M32-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m32-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:27.159569", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M32-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m32-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:28.105460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M33-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m33-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:29.163475", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M33-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m33-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:30.132117", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M34-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m34-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:31.236288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M34-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m34-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:32.188689", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M35-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the ROSETTA EXTENSION 3 phase of the Rosetta mission, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m35-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:33.240654", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-EXT3-67PCHURYUMOV-M35-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-ext3-67pchuryumov-m35-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:34.108605", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M01-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:35.120770", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M01-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:36.116116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M01-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:37.121907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M01-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:38.119483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M01-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m01-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:39.131776", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M02-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:40.130483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M02-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:41.148941", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M02-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m02-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:42.187260", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M03-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:43.199443", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M03-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:44.133045", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M03-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:45.131004", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M03-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:46.143248", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M03-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m03-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:47.142913", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M04-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:48.148461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M04-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:49.142545", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M04-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m04-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:50.147027", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M05-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:51.151319", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M05-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:52.157796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M05-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:53.197363", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M05-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:54.244083", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M05-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m05-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:55.159193", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M06-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:56.163696", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M06-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:57.175203", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M06-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:58.172460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M06-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:40:59.176415", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M06-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m06-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:00.169068", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M07-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:01.171830", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M07-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:02.175648", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M07-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:03.177148", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M07-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:04.205897", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M07-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m07-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:05.257358", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M08-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:06.269117", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M08-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:07.187951", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M08-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:08.190687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M08-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:09.191031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M08-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m08-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:10.195839", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M09-INF-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-inf-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:11.200740", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M09-INFLDSTR-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray-light corrected, in-field stray-light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-infldstr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:12.201400", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M09-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:13.207940", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M09-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:14.206583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67P-M09-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67p-m09-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:15.214666", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M01-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m01-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:16.306915", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M01-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m01-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:17.276517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M02-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m02-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:18.362504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M02-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-01-20T10:00:00.000 to 2014-05-07T12:47:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m02-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:19.216910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M03-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m03-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:20.278293", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M03-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-05-07T12:48:00.000 to 2014-06-04T10:49:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m03-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:21.221136", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M04-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m04-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:22.390229", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M04-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-06-04T10:50:00.000 to 2014-07-02T08:34:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m04-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:23.224796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M05-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m05-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:24.284814", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M05-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-07-02T08:35:00.000 to 2014-08-01T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m05-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:25.229177", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M06-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m06-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:26.298037", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M06-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m06-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:27.272744", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M07-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m07-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:28.372981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M07-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m07-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:29.241182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M08-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m08-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:30.388174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M08-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m08-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:31.247051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M09-V1.0", "title": "Menu: Skip within this page", "description": "Abstract: This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm acquired by the OSIRIS Wide Angle Camera during the PRELANDING phase of the Rosetta mission, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m09-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:32.294395", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-4-PRL-67PCHURYUMOV-M09-V2.0", "title": "RESAMPLED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-4-prl-67pchuryumov-m09-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:33.254116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC1-67P-M10-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-11-21T23:25:00.000 to 2014-12-19T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m10-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:34.259771", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC1-67P-M11-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2014-12-19T23:25:00.000 to 2015-01-13T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m11-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:35.260931", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC1-67P-M12-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-01-13T23:25:00.000 to 2015-02-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m12-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:36.260344", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC1-67P-M13-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 1 mission phase, covering the period from 2015-02-10T23:25:00.000 to 2015-03-10T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc1-67p-m13-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:37.256921", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC2-67P-M14-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-03-10T23:25:00.000 to 2015-04-08T11:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m14-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:38.283226", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC2-67P-M15-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-04-08T11:25:00.000 to 2015-05-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m15-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:39.333175", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC2-67P-M16-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-05-05T23:25:00.000 to 2015-06-02T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m16-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:40.346134", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC2-67P-M17-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 2 mission phase, covering the period from 2015-06-02T23:25:00.000 to 2015-06-30T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc2-67p-m17-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:41.263507", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC3-67P-M18-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-06-30T23:25:00.000 to 2015-07-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m18-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:42.270391", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC3-67P-M19-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-07-28T23:25:00.000 to 2015-08-25T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m19-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:43.269894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC3-67P-M20-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-08-25T23:25:00.000 to 2015-09-22T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m20-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:44.280326", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC3-67P-M21-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 3 mission phase, covering the period from 2015-09-22T23:25:00.000 to 2015-10-20T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc3-67p-m21-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:45.281880", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC4-67P-M23-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-11-17T23:25:00.000 to 2015-12-15T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc4-67p-m23-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:46.282178", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-ESC4-67P-M24-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE COMET ESCORT 4 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMET ESCORT 4 mission phase, covering the period from 2015-12-15T23:25:00.000 to 2016-01-12T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-esc4-67p-m24-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:47.282488", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT1-67P-M25-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-01-12T23:25:00.000 to 2016-02-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m25-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:48.288960", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT1-67P-M26-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-02-09T23:25:00.000 to 2016-03-08T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m26-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:49.296514", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT1-67P-M27-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 1 mission phase, covering the period from 2016-03-08T23:25:00.000 to 2016-04-05T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext1-67p-m27-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:50.341089", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT2-67P-M28-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-04-05T23:25:00.000 to 2016-05-03T23:25:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m28-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:51.356975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT2-67P-M29-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-03T23:25:00.000 to 2016-05-31T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m29-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:52.295044", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT2-67P-M30-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 2 mission phase, covering the period from 2016-05-31T23:25:00.000 to 2016-06-28T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext2-67p-m30-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:53.297309", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT3-67P-M31-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-06-28T23:25:00.000 to 2016-07-26T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m31-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:54.295118", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT3-67P-M32-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-07-26T23:25:00.000 to 2016-08-09T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m32-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:55.295661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT3-67P-M33-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-08-09T23:25:00.000 to 2016-09-02T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m33-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:56.303035", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT3-67P-M34-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-02T06:40:00.000 to 2016-09-26T06:39:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m34-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:57.304594", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-EXT3-67P-M35-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the ROSETTA EXTENSION 3 mission phase, covering the period from 2016-09-26T06:40:00.000 to 2016-10-01T00:00:00.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-ext3-67p-m35-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:58.307960", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-PRL-67P-M06-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-08-01T10:00:00.000 to 2014-09-02T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m06-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:41:59.304070", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-PRL-67P-M07-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-02T10:00:00.000 to 2014-09-23T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m07-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:00.307363", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-PRL-67P-M08-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-09-23T10:00:00.000 to 2014-10-24T09:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m08-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:01.354807", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-OSIWAC-5-PRL-67P-M09-GEO-V1.0", "title": "DERIVED OSIRIS WAC DATA FOR THE PRELANDING PHASE", "description": "This CODMAC level 5 data set contains derived data products that include pixel-precise georeferencing information, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the PRELANDING mission phase, covering the period from 2014-10-24T10:00:00.000 to 2014-11-21T23:24:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-osiwac-5-prl-67p-m09-geo-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:02.400869", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-ESC1-V1.0", "title": "Rosetta ROSINA ESCORT 1 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:03.320182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-ESC1-V2.0", "title": "Rosetta ROSINA ESCORT 1 L2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:04.323298", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-ESC2-V1.0", "title": "Rosetta ROSINA ESCORT 2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:05.321948", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-ESC2-V2.0", "title": "Rosetta ROSINA ESCORT 2 L2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:06.321744", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-ESC3-V1.0", "title": "Rosetta ROSINA ESCORT 3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:07.331852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-ESC3-V2.0", "title": "Rosetta ROSINA ESCORT 3 L2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:08.330243", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-ESC4-V1.0", "title": "Rosetta ROSINA ESCORT 4 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 4. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:09.334451", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-ESC4-V2.0", "title": "Rosetta ROSINA ESCORT 4 L2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Escort phase 4. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:10.340218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-EXT1-V1.0", "title": "Rosetta ROSINA EXTENTION 1 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:11.342353", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-EXT1-V2.0", "title": "Rosetta ROSINA EXTENTION 1 L2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 1. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:12.369204", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-EXT2-V1.0", "title": "Rosetta ROSINA EXTENTION 2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:13.417699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-EXT2-V2.0", "title": "Rosetta ROSINA EXTENTION 2 L2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 2. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:14.427156", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-EXT3-V1.0", "title": "Rosetta ROSINA EXTENTION 3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:15.350062", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-EXT3-V2.0", "title": "Rosetta ROSINA EXTENTION 3 L2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Extention phase 3. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:16.350472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-PRL-V1.0", "title": "Rosetta ROSINA Prelanding Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Prelanding. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:17.350656", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-2-PRL-V2.0", "title": "Rosetta ROSINA Prelanding L2 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Prelanding. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-2-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:18.351931", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-ESC1-V1.0", "title": "Rosetta ROSINA ESCORT 1 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:19.354956", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-ESC1-V2.0", "title": "Rosetta ROSINA ESCORT 1 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:20.360428", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-ESC2-V1.0", "title": "Rosetta ROSINA ESCORT 2 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:21.357766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-ESC2-V2.0", "title": "Rosetta ROSINA ESCORT 2 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:22.367013", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-ESC3-V1.0", "title": "Rosetta ROSINA ESCORT 3 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:23.372898", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-ESC3-V2.0", "title": "Rosetta ROSINA ESCORT 3 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:24.422936", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-ESC4-V1.0", "title": "Rosetta ROSINA ESCORT 4 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Escort phase 4. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:25.436287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-ESC4-V2.0", "title": "Rosetta ROSINA ESCORT 4 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Escort phase 4. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:26.376443", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-EXT1-V1.0", "title": "Rosetta ROSINA EXTENTION 1 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 1. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:27.377007", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-EXT1-V2.0", "title": "Rosetta ROSINA EXTENTION 1 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 1. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:28.379461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-EXT2-V1.0", "title": "Rosetta ROSINA EXTENTION 2 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 2. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:29.381903", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-EXT2-V2.0", "title": "Rosetta ROSINA EXTENTION 2 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 2. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:30.381496", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-EXT3-V1.0", "title": "Rosetta ROSINA EXTENTION 3 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 3. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:31.385209", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-EXT3-V2.0", "title": "Rosetta ROSINA EXTENTION 3 L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Extention phase 3. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:32.380391", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-PRL-V1.0", "title": "Rosetta ROSINA Prelanding L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:33.385188", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-3-PRL-V2.0", "title": "Rosetta ROSINA Prelanding L3 Data", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records from the ROSETTA spacecraft during Prelanding. The dataset includes calibrated data from DFMS and RTOF. COPS data does not require further calibration and can be found in the level 2 volume. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-3-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:34.391009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-ESC1-V1.0", "title": "Rosetta ROSINA ESCORT 1 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:35.434354", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-ESC1-V2.0", "title": "Rosetta ROSINA ESCORT 1 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:36.481942", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-ESC2-V1.0", "title": "Rosetta ROSINA ESCORT 2 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:37.392577", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-ESC2-V2.0", "title": "Rosetta ROSINA ESCORT 2 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:38.401881", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-ESC3-V1.0", "title": "Rosetta ROSINA ESCORT 3 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:39.399305", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-ESC3-V2.0", "title": "Rosetta ROSINA ESCORT 3 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:40.403607", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-ESC4-V1.0", "title": "Rosetta ROSINA ESCORT 4 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 4. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:41.410902", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-ESC4-V2.0", "title": "Rosetta ROSINA ESCORT 4 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Escort phase 4. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:42.405668", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-EXT1-V1.0", "title": "Rosetta ROSINA EXTENTION 1 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:43.411019", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-EXT1-V2.0", "title": "Rosetta ROSINA EXTENTION 1 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:44.409301", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-EXT2-V1.0", "title": "Rosetta ROSINA EXTENTION 2 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:45.419412", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-EXT2-V2.0", "title": "Rosetta ROSINA EXTENTION 2 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:46.446061", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-EXT3-V1.0", "title": "Rosetta ROSINA EXTENTION 3 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:47.500030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-EXT3-V2.0", "title": "Rosetta ROSINA EXTENTION 3 L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:48.504786", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-PRL-V1.0", "title": "Rosetta ROSINA Prelanding L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:49.424472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-4-PRL-V2.0", "title": "Rosetta ROSINA Prelanding L4 Data", "description": "This volume contains a dataset of ROSINA pressure records of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-4-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:50.423238", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-ESC1-V1.0", "title": "Rosetta ROSINA ESCORT 1 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 1 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:51.424633", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-ESC1-V2.0", "title": "Rosetta ROSINA ESCORT 1 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 1 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:52.421622", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-ESC2-V1.0", "title": "Rosetta ROSINA ESCORT 2 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 2 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:53.426505", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-ESC2-V2.0", "title": "Rosetta ROSINA ESCORT 2 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 2 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:54.427972", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-ESC3-V1.0", "title": "Rosetta ROSINA ESCORT 3 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 3 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:55.429166", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-ESC3-V2.0", "title": "Rosetta ROSINA ESCORT 3 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 3 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:56.437999", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-ESC4-V1.0", "title": "Rosetta ROSINA ESCORT 4 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 4 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:57.450892", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-ESC4-V2.0", "title": "Rosetta ROSINA ESCORT 4 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Escort 4 phase. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:58.502292", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-EXT1-V1.0", "title": "Rosetta ROSINA EXTENTION 1 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:42:59.515777", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-EXT1-V2.0", "title": "Rosetta ROSINA EXTENTION 1 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 1. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:00.449205", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-EXT2-V1.0", "title": "Rosetta ROSINA EXTENTION 2 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:01.446495", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-EXT2-V2.0", "title": "Rosetta ROSINA EXTENTION 2 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 2. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:02.445543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-EXT3-V1.0", "title": "Rosetta ROSINA EXTENTION 3 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:03.544196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-EXT3-V2.0", "title": "Rosetta ROSINA EXTENTION 3 L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during Extention phase 3. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:04.456401", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-PRL-V1.0", "title": "Rosetta ROSINA Prelanding L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:05.457095", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-ROSINA-5-PRL-V2.0", "title": "Rosetta ROSINA Prelanding L5 Data", "description": "This volume contains a dataset of ROSINA density time series of the combined comet and Rosetta spacecraft outgassing during prelanding. The calibration data can be found in the level 3 volume. The volume also contains documentation and index files to support access and use of the data.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rosina-5-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:06.460831", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC1-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED ESC1 CURRENT DATA V1.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:07.462798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC1-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:08.461900", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC1-RAW-V3.0", "title": "ROSETTA-ORBITER 67P RPCICA 2 ESC1 EDITED", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC1 UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc1-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:09.512668", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC2-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:10.523612", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC2-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:11.478002", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC2-RAW-V3.0", "title": "ROSETTA-ORBITER 67P RPCICA 2 ESC2 EDITED", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC2 UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc2-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:12.474267", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC3-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:13.477330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC3-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:14.479029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC3-RAW-V3.0", "title": "ROSETTA-ORBITER 67P RPCICA 2 ESC3 EDITED", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC3 UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc3-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:15.481969", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC4-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC4 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc4-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:16.489147", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-ESC4-RAW-V2.0", "title": "ROSETTA-ORBITER 67P RPCICA 2 ESC4 EDITED", "description": "ROSETTA-ORBITER 67P RPCICA 2 ESC4 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-esc4-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:17.486482", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-EXT1-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 EXT1 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext1-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:18.490460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-EXT1-RAW-V2.0", "title": "ROSETTA-ORBITER 67P RPCICA 2 EXT1 EDITED", "description": "ROSETTA-ORBITER 67P RPCICA 2 EXT1 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext1-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:19.485561", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-EXT2-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 EXT2 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext2-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:20.522261", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-EXT2-RAW-V2.0", "title": "ROSETTA-ORBITER 67P RPCICA 2 EXT2 EDITED", "description": "ROSETTA-ORBITER 67P RPCICA 2 EXT2 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext2-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:21.571692", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-EXT3-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 EXT3 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext3-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:22.582210", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-EXT3-RAW-V2.0", "title": "ROSETTA-ORBITER 67P RPCICA 2 EXT3 EDITED", "description": "ROSETTA-ORBITER 67P RPCICA 2 EXT3 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-ext3-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:23.500368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-PRL-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED PRL CURRENT DATA V1.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:24.494947", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-PRL-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:25.505007", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-2-PRL-RAW-V3.0", "title": "ROSETTA-ORBITER 67P RPCICA 2 PRL EDITED", "description": "ROSETTA-ORBITER 67P RPCICA 2 PRL UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-2-prl-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:26.505529", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-3-ESC1-CALIB-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 3 ESC1 CALIBRATED", "description": "ROSETTA-ORBITER 67P RPCICA 3 ESC1 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc1-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:27.507504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-3-ESC2-CALIB-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 3 ESC2 CALIBRATED", "description": "ROSETTA-ORBITER 67P RPCICA 3 ESC2 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc2-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:28.514518", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-3-ESC3-CALIB-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 3 ESC3 CALIBRATED", "description": "ROSETTA-ORBITER 67P RPCICA 3 ESC3 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc3-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:29.510644", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-3-ESC4-CALIB-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 3 ESC4 CALIBRATED", "description": "ROSETTA-ORBITER 67P RPCICA 3 ESC4 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-esc4-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:30.512583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-3-EXT1-CALIB-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 3 EXT1 CALIBRATED", "description": "ROSETTA-ORBITER 67P RPCICA 3 EXT1 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext1-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:31.534407", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-3-EXT2-CALIB-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 3 EXT2 CALIBRATED", "description": "ROSETTA-ORBITER 67P RPCICA 3 EXT2 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext2-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:32.592964", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-3-EXT3-CALIB-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 3 EXT3 CALIBRATED", "description": "ROSETTA-ORBITER 67P RPCICA 3 EXT3 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-ext3-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:33.592664", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-3-PRL-CALIB-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 3 PRL CALIBRATED", "description": "ROSETTA-ORBITER 67P RPCICA 3 PRL CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-3-prl-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:34.523410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC1-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR_CTS", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:35.521375", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC1-CORR-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC1 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:36.527237", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC1-PHYS-MASS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC1 PHYS_MASS", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC1 PHYS-MASS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc1-phys-mass-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:37.523437", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC2-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR_CTS", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:38.536197", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC2-CORR-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC2 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:39.535076", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC2-PHYS-MASS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC2 PHYS_MASS", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC2 PHYS-MASS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc2-phys-mass-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:40.543302", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC3-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR_CTS", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:41.530990", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC3-CORR-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC3 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:42.550082", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC3-PHYS-MASS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC3 PHYS_MASS", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC3 PHYS-MASS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc3-phys-mass-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:43.592030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC4-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR_CTS", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:44.637476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC4-CORR-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC4 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:45.551720", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-ESC4-PHYS-MASS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 ESC4 PHYS_MASS", "description": "ROSETTA-ORBITER 67P RPCICA 4 ESC4 PHYS-MASS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-esc4-phys-mass-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:46.556760", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT1-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR_CTS", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:47.557323", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT1-CORR-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT1 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:48.558563", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT1-PHYS-MASS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT1 PHYS_MASS", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT1 PHYS-MASS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext1-phys-mass-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:49.565461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT2-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR_CTS", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:50.569232", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT2-CORR-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT2 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:51.564582", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT2-PHYS-MASS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT2 PHYS_MASS", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT2 PHYS-MASS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext2-phys-mass-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:52.570305", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT3-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR_CTS", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:53.559918", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT3-CORR-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT3 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:54.602637", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-EXT3-PHYS-MASS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 EXT3 PHYS_MASS", "description": "ROSETTA-ORBITER 67P RPCICA 4 EXT3 PHYS-MASS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-ext3-phys-mass-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:55.655211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-PRL-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 PRL CORR_CTS", "description": "ROSETTA-ORBITER 67P RPCICA 4 PRL CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:56.660336", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-PRL-CORR-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 PRL CORR", "description": "ROSETTA-ORBITER 67P RPCICA 4 PRL CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:57.573868", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-4-PRL-PHYS-MASS-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 4 PRL PHYS_MASS", "description": "ROSETTA-ORBITER 67P RPCICA 4 PRL PHYS-MASS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-4-prl-phys-mass-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:58.575231", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-5-ESC1-MOMENT-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 5 ESC1 MOMENT", "description": "ROSETTA-ORBITER 67P RPCICA 5 ESC1 MOMENT V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc1-moment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:43:59.580418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-5-ESC2-MOMENT-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 5 ESC2 MOMENT", "description": "ROSETTA-ORBITER 67P RPCICA 5 ESC2 MOMENT V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc2-moment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:00.582250", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-5-ESC3-MOMENT-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 5 ESC3 MOMENT", "description": "ROSETTA-ORBITER 67P RPCICA 5 ESC3 MOMENT V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc3-moment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:01.586300", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-5-ESC4-MOMENT-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 5 ESC4 MOMENT", "description": "ROSETTA-ORBITER 67P RPCICA 5 ESC4 MOMENT V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-esc4-moment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:02.586851", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-5-EXT1-MOMENT-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 5 EXT1 MOMENT", "description": "ROSETTA-ORBITER 67P RPCICA 5 EXT1 MOMENT V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext1-moment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:03.591315", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-5-EXT2-MOMENT-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 5 EXT2 MOMENT", "description": "ROSETTA-ORBITER 67P RPCICA 5 EXT2 MOMENT V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext2-moment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:04.593879", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-5-EXT3-MOMENT-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 5 EXT3 MOMENT", "description": "ROSETTA-ORBITER 67P RPCICA 5 EXT3 MOMENT V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-ext3-moment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:05.611890", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCICA-5-PRL-MOMENT-V1.0", "title": "ROSETTA-ORBITER 67P RPCICA 5 PRL MOMENT", "description": "ROSETTA-ORBITER 67P RPCICA 5 PRL MOMENT V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcica-5-prl-moment-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:06.661134", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-ESC1-V1.0", "title": "RPCIES RAW DATA FOR THE ESCORT PHASE 1", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 19 Nov 2014 to 10 Mar 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:07.670740", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-ESC1-V2.0", "title": "RPCIES EDITED DATA FOR THE ESCORT PHASE 1", "description": "This Volume contains ion and electron counts (EDITED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:08.596524", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-ESC2-V1.0", "title": "RPCIES RAW DATA FOR THE ESCORT PHASE 1", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 2 (ESC2) from 10 Mar 2015 to 30 Jun 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:09.597218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-ESC2-V2.0", "title": "RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2", "description": "This Volume contains ion and electron flux data (edited data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:10.605162", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-ESC3-V1.0", "title": "RPCIES RAW DATA FOR THE ESCORT PHASE 3", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 20 Oct 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:11.606791", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-ESC3-V2.0", "title": "RPCIES EDITED DATA FOR THE ESCORT PHASE 3", "description": "This Volume contains ion and electron flux data (EDITED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:12.605360", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-ESC4-V1.0", "title": "RPCIES RAW DATA FOR THE ESCORT PHASE 4", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 21 Oct 2015 to 12 Jan 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:13.613116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-EXT1-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1", "description": "This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:14.615357", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-EXT2-V1.0", "title": "RPCIES RAW DATA FOR THE ROSETTA EXTENSION 2", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:15.618963", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-EXT3-V1.0", "title": "RPCIES RAW DATA FOR THE ROSETTA EXTENSION 3", "description": "This Volume contains ion and electron counts data (raw data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:16.623186", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-PRL-V1.0", "title": "RPCIES RAW DATA FOR THE PRELANDING PHASE", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 20 Nov 2014.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:17.670308", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-2-PRL-V2.0", "title": "RPCIES EDITED DATA FOR THE PRELANDING PHASE", "description": "This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-2-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:18.680043", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-ESC1-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 1", "description": "This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:19.627021", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-ESC1-V2.0", "title": "RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 1", "description": "This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:20.628084", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-ESC2-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2", "description": "This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:21.622708", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-ESC2-V2.0", "title": "RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 2", "description": "This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:22.627894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-ESC3-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 3", "description": "This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:23.632052", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-ESC3-V2.0", "title": "RPCIES EDITED DATA FOR THE ESCORT PHASE 3", "description": "This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:24.634262", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-ESC4-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 4", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:25.636774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-ESC4-V2.0", "title": "RPCIES CALIBRATED DATA FOR THE ESCORT PHASE 4", "description": "This Volume contains ion and electron flux data (EDITED RAW DATA) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:26.637805", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-EXT1-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1", "description": "This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:27.640119", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-EXT1-V2.0", "title": "RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 1", "description": "This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:28.675712", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-EXT2-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 2", "description": "This Volume contains ion and electron counts data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:29.728777", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-EXT2-V2.0", "title": "RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 2", "description": "This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:30.738611", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-EXT3-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 3", "description": "This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:31.652214", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-EXT3-V2.0", "title": "RPCIES CALIBRATED DATA FOR THE ROSETTA EXTENSION 3", "description": "This Volume contains ion and electron flux data (calibrated data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT3) from 01 Jul 2016 to 30 Sep 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:32.649890", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-PRL-V1.0", "title": "RPCIES CALIBRATED DATA FOR THE PRELANDING PHASE", "description": "This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:33.652954", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-3-PRL-V2.0", "title": "RPCIES CALIBRATED DATA FOR THE PRELANDING PHASE", "description": "This Volume contains ion and electron flux data (CALIBRATED DATA) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-3-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:34.663335", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-5-ESC1-V1.0", "title": "RPCIES DERIVED DATA FOR THE ESCORT PHASE 1", "description": "This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 1 (ESC1) from 20 Nov 2014 to 10 Mar 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:35.655524", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-5-ESC2-V1.0", "title": "RPCIES DERIVED DATA FOR THE ESCORT PHASE 2", "description": "This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 2 (ESC2) from 11 Mar 2015 to 30 Jun 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:36.663782", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-5-ESC3-V1.0", "title": "RPCIES DERIVED DATA FOR THE ESCORT PHASE 3", "description": "This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 3 (ESC3) from 01 Jul 2015 to 21 Oct 2015.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:37.659109", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-5-ESC4-V1.0", "title": "RPCIES DERIVED DATA FOR THE ESCORT PHASE 4", "description": "This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the escort phase 4 (ESC4) from 22 Oct 2015 to 31 Jan 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:38.663639", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-5-EXT1-V1.0", "title": "RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 1", "description": "This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Rosetta Extension 1 phase (EXT1) from 01 Jan 2016 to 05 Apr 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:39.693074", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-5-EXT2-V1.0", "title": "RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 2", "description": "This Volume contains ion and electron counts data (derived data) from the RPC-IES instrument for the Rosetta Extension 2 phase (EXT2) from 06 Apr 2016 to 30 Jun 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:40.739127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-5-EXT3-V1.0", "title": "RPCIES DERIVED DATA FOR THE ROSETTA EXTENSION 1", "description": "This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Rosetta Extension 3 phase (EXT1) from 01 Jul 2016 to 30 Sep 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:41.748022", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCIES-5-PRL-V1.0", "title": "RPCIES DERIVED DATA FOR THE PRELANDING PHASE", "description": "This Volume contains ion and electron moments data (derived data) from the RPC-IES instrument for the Prelanding phase (PRL) from 21 Jan 2014 to 19 Nov 2014.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcies-5-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:42.675065", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC1-EDITED-V1.0", "title": "RPCLAP EDITED RAW DATA FOR COMET ESCORT 1", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 (ESC1) phase at comet 67P/Churyomov-Gerasimenko 1.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-edited-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:43.670280", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC1-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR ESC1", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:44.795217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC1-MTP010-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP10", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2014-12-20T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp010-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:45.685916", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC1-MTP011-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP011", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-12-20T00:00:00.000 -- 2015-01-14T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp011-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:46.684822", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC1-MTP012-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP012", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-01-14T00:00:00.000 -- 2015-02-11T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp012-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:47.687429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC1-MTP013-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 1 MTP013", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-02-10T23:58:28.967 -- 2015-03-11T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc1-mtp013-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:48.682850", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR ESC2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:49.690576", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-MTP014-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:50.702295", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-MTP014-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP014", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-04-09T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp014-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:51.745180", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-MTP015-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:52.757476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-MTP015-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP015", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-04-07T23:59:42.523 -- 2015-05-06T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp015-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:53.692563", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-MTP016-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp016-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:54.694290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-MTP016-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP016", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-05-06T00:00:00.000 -- 2015-06-03T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp016-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:55.700746", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-MTP017-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp017-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:56.703222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC2-MTP017-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 2 MTP017", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-06-03T00:00:00.000 -- 2015-07-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc2-mtp017-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:57.704852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR ESC3", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:58.704374", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-MTP018-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 3", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 018 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp018-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:44:59.715404", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-MTP018-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP018", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-06-30T23:59:60.912 -- 2015-07-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp018-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:00.713410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-MTP019-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 3", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 019 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp019-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:01.712449", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-MTP019-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP019", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-29T00:00:00.000 -- 2015-08-26T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp019-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:02.756892", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-MTP020-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 3", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 020 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp020-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:03.803780", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-MTP020-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP020", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-08-25T23:57:53.512 -- 2015-09-23T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp020-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:04.816483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-MTP021-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 3", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3, MTP 021 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp021-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:05.726246", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC3-MTP021-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 3 MTP021", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-09-22T23:58:50.316 -- 2015-10-21T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc3-mtp021-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:06.727292", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC4-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR ESC4", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.112 -- 2016-01-13T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:07.727048", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC4-MTP022-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 4", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp022-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:08.732912", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC4-MTP022-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP022", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.112 -- 2015-11-18T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp022-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:09.733042", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC4-MTP023-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 4", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp023-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:10.733485", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC4-MTP023-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP023", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-11-17T23:58:51.889 -- 2015-12-16T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp023-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:11.737555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC4-MTP024-V1.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 4", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:12.737046", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-ESC4-MTP024-V2.0", "title": "RPCLAP EDITED DATA FOR COMET ESCORT 4 MTP024", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-12-15T23:58:52.679 -- 2016-01-13T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-esc4-mtp024-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:13.762832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT1-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR EXT1", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.469 -- 2016-04-06T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:14.814049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT1-MTP025-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP025", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.469 -- 2016-02-10T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp025-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:15.826814", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT1-MTP026-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP026", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-02-10T00:00:00.000 -- 2016-03-09T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp026-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:16.740373", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT1-MTP027-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 1 MTP027", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-03-09T00:00:00.000 -- 2016-04-06T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext1-mtp027-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:17.744464", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT2-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR EXT2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.775 -- 2016-06-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:18.745522", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT2-MTP028-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP028", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 MTP028 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.775 -- 2016-05-04T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp028-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:19.753527", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT2-MTP029-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP029", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-05-03T23:57:20.576 -- 2016-06-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp029-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:20.752911", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT2-MTP030-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 2 MTP030", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-05-31T23:58:09.366 -- 2016-06-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext2-mtp030-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:21.756182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT3-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR EXT3", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:22.755006", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT3-MTP031-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP031", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-07-27T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp031-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:23.755536", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT3-MTP032-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP032", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-07-26T23:59:46.936 -- 2016-08-10T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp032-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:24.774036", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT3-MTP033-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP033", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-08-09T23:58:43.330 -- 2016-09-02T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp033-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:25.824356", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT3-MTP034-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP034", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-09-01T23:59:15.977 -- 2016-09-26T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp034-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:26.839342", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-EXT3-MTP035-V1.0", "title": "RPCLAP EDITED DATA FOR ROSETTA EXTENSION 3 MTP035", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-09-25T23:59:48.653 -- 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-ext3-mtp035-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:27.770235", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-COM-V2.0", "title": "RPCLAP EDITED DATA FOR PRELANDING COM", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-05-08T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-com-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:28.766246", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-EDITED-V1.0", "title": "RPCLAP EDITED RAW DATA FOR PRELANDING", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the prelanding phase (PRL) in 2014 at comet 67P/Churyomov-Gerasimenko 1.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-edited-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:29.770850", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR PRL", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:30.769047", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-MTP003-V2.0", "title": "RPCLAP EDITED DATA FOR PRELANDING MTP003", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-05-08T00:00:00.000 -- 2014-06-04T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp003-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:31.769310", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-MTP004-V2.0", "title": "RPCLAP EDITED DATA FOR PRELANDING MTP004", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-06-04T00:00:00.000 -- 2014-07-02T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp004-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:32.774915", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-MTP005-V2.0", "title": "RPCLAP EDITED DATA FOR PRELANDING MTP005", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-07-02T00:00:00.000 -- 2014-08-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp005-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:33.777551", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-MTP006-V2.0", "title": "RPCLAP EDITED DATA FOR PRELANDING MTP006", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-07-31T23:59:27.401 -- 2014-09-02T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp006-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:34.778818", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-MTP007-V2.0", "title": "RPCLAP EDITED DATA FOR PRELANDING MTP007", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-09-01T23:58:24.346 -- 2014-09-23T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp007-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:35.783490", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-MTP008-V2.0", "title": "RPCLAP EDITED DATA FOR PRELANDING MPT008", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-09-22T23:57:52.950 -- 2014-10-24T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp008-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:36.842000", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-2-PRL-MTP009-V2.0", "title": "RPCLAP EDITED DATA FOR PRELANDING MTP009", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 at comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-10-23T23:57:21.837 -- 2014-11-19T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-2-prl-mtp009-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:37.850139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-ESC1-CALIB-V1.0", "title": "RPCLAP CALIBRATED DATA FOR COMET ESCORT 1", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 (ESC1) phase at comet 67P/Churyomov-Gerasimenko 1.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc1-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:38.789151", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-ESC1-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR ESC1", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc1-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:39.794014", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-ESC2-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR ESC2", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc2-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:40.789726", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-ESC3-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR ESC3", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc3-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:41.796120", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-ESC4-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR ESC4", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-esc4-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:42.797857", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-EXT1-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR EXT1", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext1-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:43.796120", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-EXT2-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR EXT2", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext2-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:44.806603", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-EXT3-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR EXT3", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-ext3-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:45.801305", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-PRL-CALIB-V1.0", "title": "RPCLAP CALIBRATED DATA FOR PRELANDING", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the prelanding phase (PRL) in 2014 at comet 67P/Churyomov-Gerasimenko 1.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-prl-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:46.807507", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-3-PRL-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR PRL", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-3-prl-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:47.853461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-ESC1-DERIV2-V1.0", "title": "RPCLAP DERIVED PLASMA PARAMETERS FOR ESC1", "description": "This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-deriv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:48.899627", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-ESC1-NEL-V1.0", "title": "RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC1", "description": "This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 1 phase in 2014-2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-11-18T23:58:58.575 -- 2015-03-11T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc1-nel-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:49.810607", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-ESC2-DERIV2-V1.0", "title": "RPCLAP DERIVED PLASMA PARAMETERS FOR ESC2", "description": "This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-deriv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:50.810403", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-ESC2-NEL-V1.0", "title": "RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC2", "description": "This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 2 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-03-11T00:00:00.000 -- 2015-07-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc2-nel-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:51.816656", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-ESC3-DERIV2-V1.0", "title": "RPCLAP DERIVED PLASMA PARAMETERS FOR ESC3", "description": "This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-deriv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:52.811704", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-ESC3-NEL-V1.0", "title": "RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC3", "description": "This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 3 phase in 2015 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-07-01T00:00:00.000 -- 2015-10-21T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc3-nel-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:53.814300", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-ESC4-DERIV2-V1.0", "title": "RPCLAP DERIVED PLASMA PARAMETERS FOR ESC4", "description": "This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-deriv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:54.821355", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-ESC4-NEL-V1.0", "title": "RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR ESC4", "description": "This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the COMET ESCORT 4 phase in 2015-2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2015-10-20T23:59:23.092 -- 2016-01-13T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-esc4-nel-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:55.820956", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-EXT1-DERIV2-V1.0", "title": "RPCLAP DERIVED PLASMA PARAMETERS FOR EXT1", "description": "This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-deriv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:56.828764", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-EXT1-NEL-V1.0", "title": "RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT1", "description": "This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 1 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-01-12T23:59:25.449 -- 2016-04-06T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext1-nel-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:57.827620", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-EXT2-DERIV2-V1.0", "title": "RPCLAP DERIVED PLASMA PARAMETERS FOR EXT2", "description": "This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-deriv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:58.856076", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-EXT2-NEL-V1.0", "title": "RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT2", "description": "This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 2 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-04-05T23:59:59.755 -- 2016-06-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext2-nel-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:45:59.899522", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-EXT3-DERIV2-V1.0", "title": "RPCLAP DERIVED PLASMA PARAMETERS FOR EXT3", "description": "This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-deriv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:00.920171", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-EXT3-NEL-V1.0", "title": "RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR EXT3", "description": "This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the ROSETTA EXTENSION 3 phase in 2016 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2016-06-28T23:58:10.148 -- 2016-10-01T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-ext3-nel-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:01.838769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-PRL-DERIV2-V1.0", "title": "RPCLAP DERIVED PLASMA PARAMETERS FOR PRL", "description": "This volume contains DERIVED data in the form of plasma parameters from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-deriv2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:02.836747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCLAP-5-PRL-NEL-V1.0", "title": "RPCLAP DERIVED HIGH-RESOLUTION ELECTRON DENSITY FOR PRL", "description": "This volume contains DERIVED data in the form of high-resolution electron density from the Rosetta RPC-LAP instrument, acquired during the PRELANDING phase in 2014 where the primary target was the comet 67P/CHURYUMOV-GERASIMENKO 1 (1969 R1). This particular data set contains data for the time period 2014-01-21T00:00:00.000 -- 2014-11-19T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpclap-5-prl-nel-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:03.834765", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC1-RAW-V5.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:04.843947", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC1-RAW-V6.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:05.842587", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC1-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 1 PHASE (ESC1)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc1-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:06.845104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC2-RAW-V5.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:07.849049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC2-RAW-V6.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:08.850757", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC2-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 2 PHASE (ESC2)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc2-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:09.865888", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC3-RAW-V6.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 3 PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc3-raw-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:10.910380", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC3-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 3 PHASE (ESC3)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc3-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:11.927232", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC4-RAW-V6.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 4 PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc4-raw-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:12.869467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-ESC4-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE COMET ESCORT 4 PHASE (ESC4)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ECS4) from 21. October 2015 until 12. January 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-esc4-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:13.861309", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-EXT1-RAW-V6.0", "title": "RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 1 (EXT1)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext1-raw-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:14.864244", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-EXT1-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 1 (EXT1)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext1-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:15.867619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-EXT2-RAW-V6.0", "title": "RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 2 (EXT2)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext2-raw-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:16.873321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-EXT2-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 2 (EXT2)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext2-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:17.871981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-EXT3-RAW-V6.0", "title": "RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 3 (EXT3)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext3-raw-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:18.872057", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-2-EXT3-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE EXTENDED MISSION PHASE 3 (EXT3)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-2-ext3-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:19.874391", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-ESC1-CALIBRATED-V6.0", "title": "RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 1 PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc1-calibrated-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:20.879647", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-ESC1-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: COMET ESCORT 1 PHASE (ESC1)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc1-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:21.921833", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-ESC2-CALIBRATED-V6.0", "title": "RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 2 PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc2-calibrated-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:22.981393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-ESC2-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: COMET ESCORT 2 PHASE (ESC2)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc2-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:23.880597", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-ESC3-CALIBRATED-V6.0", "title": "RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 3 PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc3-calibrated-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:24.884405", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-ESC3-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: COMET ESCORT 3 PHASE (ESC3)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc3-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:25.979939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-ESC4-CALIBRATED-V6.0", "title": "RPCMAG CALIBRATED DATA FOR THE COMET ESCORT 4 PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc4-calibrated-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:26.892217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-ESC4-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: COMET ESCORT 4 PHASE (ESC4)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ESC4) from 21. October 2015 until 12. January 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-esc4-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:27.889281", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-EXT1-CALIBRATED-V6.0", "title": "RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 1 (EXT1)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext1-calibrated-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:28.897773", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-EXT1-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 1 (EXT1)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext1-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:29.900139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-EXT2-CALIBRATED-V6.0", "title": "RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 2 (EXT2)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext2-calibrated-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:30.899810", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-EXT2-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 2 (EXT2)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext2-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:31.907958", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-EXT3-CALIBRATED-V6.0", "title": "RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 3 (EXT3)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext3-calibrated-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:32.939872", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-3-EXT3-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: EXTENDED MISSION PHASE 3 (EXT3)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-3-ext3-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:33.985555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC1-RESAMPLED-V5.0", "title": "RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 1 PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:34.996748", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC1-RESAMPLED-V6.0", "title": "RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 1 PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 Phase from 22. November 2014 until 10. March 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:35.911559", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC1-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: COMET ESCORT 1 PHASE (ESC1)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 1 PHASE (ESC1) from 22. November 2014 until 10. March 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc1-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:36.913542", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC2-RESAMPLED-V5.0", "title": "RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 2 PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:37.918363", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC2-RESAMPLED-V6.0", "title": "RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 2 PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 Phase from 11. March 2015 until 30. June 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:38.920571", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC2-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: COMET ESCORT 2 PHASE (ESC2)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 2 PHASE (ESC2) from 11. March 2015 until 30. June 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc2-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:39.924290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC3-RESAMPLED-V6.0", "title": "RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 3 PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 Phase from 1. July 2015 until 20. October 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc3-resampled-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:40.923194", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC3-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: COMET ESCORT 3 PHASE (ESC3)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 3 PHASE (ESC3) from 1. July 2015 until 20. October 2015", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc3-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:41.929407", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC4-RESAMPLED-V6.0", "title": "RPCMAG RESAMPLED DATA FOR THE COMET ESCORT 4 PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 Phase from 21. October 2015 until 12. January 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc4-resampled-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:42.933029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-ESC4-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: COMET ESCORT 4 PHASE (ESC4)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMET ESCORT 4 PHASE (ESC4) from 21. October 2015 until 12. January 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-esc4-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:43.945086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-EXT1-RESAMPLED-V6.0", "title": "RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 1(EXT1)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext1-resampled-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:44.995565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-EXT1-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 1(EXT1)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 1 (EXT1) from 13. January 2016 until 6. April 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext1-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:46.006605", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-EXT2-RESAMPLED-V6.0", "title": "RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 2(EXT2)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext2-resampled-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:46.949552", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-EXT2-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 2(EXT2)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 2 (EXT2) from 6. April 2016 until 29. June 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext2-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:47.949172", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-EXT3-RESAMPLED-V6.0", "title": "RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 3(EXT3)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext3-resampled-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:48.947000", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMAG-4-EXT3-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: EXTENDED MISSION PHASE 3(EXT3)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the EXTENDED MISSION PHASE 3 (EXT3) from 29. June 2016 until 30. September 2016", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmag-4-ext3-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:49.954036", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC1-V1.0", "title": "RPCMIP COMET ESCORT DATA (PART1)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:50.957246", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC1-V2.0", "title": "RPCMIP COMET ESCORT DATA (PART1)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:51.963017", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC1-V3.0", "title": "RPCMIP COMET ESCORT 1 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:52.961060", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC2-V1.0", "title": "RPCMIP COMET ESCORT DATA (PART2)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:53.961843", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC2-V2.0", "title": "RPCMIP COMET ESCORT DATA (PART2)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:54.965258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC2-V3.0", "title": "RPCMIP COMET ESCORT 2 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc2-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:56.004100", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC3-V1.0", "title": "RPCMIP COMET ESCORT DATA (PART3)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:57.052876", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC3-V2.0", "title": "RPCMIP COMET ESCORT 3 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:58.060358", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC4-V1.0", "title": "RPCMIP COMET ESCORT DATA (PART4)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:58.977614", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-ESC4-V2.0", "title": "RPCMIP COMET ESCORT 4 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:46:59.970848", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-EXT1-V1.0", "title": "RPCMIP EXTENSION DATA (PART1)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT1 (Extension part 1) phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:00.982795", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-EXT1-V2.0", "title": "RPCMIP ROSETTA EXTENSION 1 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:01.979177", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-EXT2-V1.0", "title": "RPCMIP EXTENSION DATA (PART 2)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT 2 (Extension part 2) phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:02.987402", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-EXT2-V2.0", "title": "RPCMIP ROSETTA EXTENSION 2 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:03.983982", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-EXT3-V1.0", "title": "RPCMIP EXTENSION DATA (PART3)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the EXT3 (Extension part 3) phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:04.990324", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-EXT3-V2.0", "title": "RPCMIP ROSETTA EXTENSION 3 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:05.990842", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL1-V1.0", "title": "RPCMIP PRELANDING DATA (PART1) FOR THE COMET PHASE", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:07.014640", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL1-V2.0", "title": "RPCMIP PRELANDING DATA (PART1)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL1 (Prelanding part 1) mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:08.061321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL1-V3.0", "title": "RPCMIP PRELANDING L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:09.074977", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL2-V1.0", "title": "RPCMIP PRELANDING DATA (PART2) FOR THE COMET PHASE", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:09.994361", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL2-V2.0", "title": "RPCMIP PRELANDING DATA (PART2)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL2 (Prelanding part 2) mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:11.003582", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL2-V3.0", "title": "RPCMIP PRELANDING L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl2-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:12.004964", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL3-V1.0", "title": "RPCMIP PRELANDING DATA (PART3) FOR THE COMET PHASE", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:13.009656", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL3-V2.0", "title": "RPCMIP PRELANDING DATA (PART3)", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the PRL3 (Prelanding part 3)", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:14.012183", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-3-PRL3-V3.0", "title": "RPCMIP PRELANDING L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-3-prl3-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:15.010070", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-5-ESC1-V1.0", "title": "RPCMIP L5 DATA FOR THE COMET ESCORT 1 PHASE", "description": "This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:16.018204", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-5-ESC2-V1.0", "title": "RPCMIP L5 DATA FOR THE COMET ESCORT 2 PHASE", "description": "This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:17.016042", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-5-ESC3-V1.0", "title": "RPCMIP L5 DATA FOR THE COMET ESCORT 3 PHASE", "description": "This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:18.023404", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-5-ESC4-V1.0", "title": "RPCMIP L5 DATA FOR THE COMET ESCORT 4 PHASE", "description": "This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:19.072941", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-5-EXT1-V1.0", "title": "RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:20.083704", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-5-EXT2-V1.0", "title": "RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:21.018500", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-5-EXT3-V1.0", "title": "RPCMIP L5 DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:22.023749", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP-5-PRL-V1.0", "title": "RPCMIP L5 DATA FOR THE PRELANDING PHASE", "description": "This volume contains Rosetta RPC-MIP level 5 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip-5-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:23.019143", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP/RPCLAP-5-ESC1-V1.0", "title": "RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 1 PHASE", "description": "This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:24.025595", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP/RPCLAP-5-ESC2-V1.0", "title": "RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 2 PHASE", "description": "This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:25.027658", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP/RPCLAP-5-ESC3-V1.0", "title": "RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 3 PHASE", "description": "This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:26.028398", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP/RPCLAP-5-ESC4-V1.0", "title": "RPCMIP/RPCLAP L5 DATA FOR THE COMET ESCORT 4 PHASE", "description": "This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:27.032454", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP/RPCLAP-5-EXT1-V1.0", "title": "RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 1 PHASE", "description": "This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:28.033607", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP/RPCLAP-5-EXT2-V1.0", "title": "RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 2 PHASE", "description": "This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:29.040691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP/RPCLAP-5-EXT3-V1.0", "title": "RPCMIP/RPCLAP L5 DATA FOR THE ROSETTA EXTENSION 3 PHASE", "description": "This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:30.078732", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RPCMIP/RPCLAP-5-PRL-V1.0", "title": "RPCMIP/RPCLAP L5 DATA FOR THE PRELANDING PHASE", "description": "This volume contains level 5 data products (in physical units) derived from cross-calibration between RPC-MIP and RPC-LAP data products and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rpcmip_rpclap-5-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:31.132628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0446-V1.0", "title": "RORSI_2251_2014_324_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-20T01:37:40.000 to 2014-11-20T13:30:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0446-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:32.039623", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0447-V1.0", "title": "RORSI_2252_2014_324_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-20T13:47:20.000 to 2014-11-20T20:23:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0447-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:33.045087", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0448-V1.0", "title": "RORSI_2253_2014_325_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-21T02:58:05.000 to 2014-11-21T13:27:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0448-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:34.045278", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0449-V1.0", "title": "RORSI_2254_2014_325_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-21T13:44:50.000 to 2014-11-21T20:20:44.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0449-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:35.047761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0450-V1.0", "title": "RORSI_2255_2014_326_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-22T03:34:50.000 to 2014-11-22T13:25:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0450-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:36.052018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0451-V1.0", "title": "RORSI_2256_2014_326_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-22T13:42:25.000 to 2014-11-22T20:15:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0451-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:37.051433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0452-V1.0", "title": "RORSI_2257_2014_327_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-23T01:30:10.000 to 2014-11-23T13:23:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0452-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:38.051398", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0453-V1.0", "title": "RORSI_2258_2014_327_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-23T13:40:00.000 to 2014-11-23T20:14:47.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0453-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:39.062205", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0454-V1.0", "title": "RORSI_2259_2014_328_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-24T02:53:05.000 to 2014-11-24T13:20:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0454-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:40.063217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0455-V1.0", "title": "RORSI_2260_2014_328_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-24T13:37:35.000 to 2014-11-24T20:45:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0455-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:41.094062", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0456-V1.0", "title": "RORSI_2261_2014_329_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-25T02:48:05.000 to 2014-11-25T13:18:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0456-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:42.143624", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0457-V1.0", "title": "RORSI_2262_2014_329_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-25T13:35:10.000 to 2014-11-25T20:10:55.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0457-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:43.150886", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0458-V1.0", "title": "RORSI_2263_2014_330_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-26T04:19:40.000 to 2014-11-26T13:15:51.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0458-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:44.065981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0459-V1.0", "title": "RORSI_2264_2014_330_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-26T13:32:45.000 to 2014-11-26T21:38:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0459-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:45.075815", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0460-V1.0", "title": "RORSI_2265_2014_331_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-27T02:43:05.000 to 2014-11-27T13:13:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0460-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:46.067344", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0461-V1.0", "title": "RORSI_2266_2014_331_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-27T13:30:25.000 to 2014-11-27T19:59:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0461-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:47.068382", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0462-V1.0", "title": "RORSI_2267_2014_332_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-28T02:43:05.000 to 2014-11-28T13:11:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0462-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:48.079393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0463-V1.0", "title": "RORSI_2268_2014_332_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-28T15:43:10.000 to 2014-11-28T19:54:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0463-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:49.076140", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0464-V1.0", "title": "RORSI_2269_2014_333_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-29T03:34:35.000 to 2014-11-29T13:08:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0464-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:50.080772", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0465-V1.0", "title": "RORSI_2270_2014_333_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-29T13:25:40.000 to 2014-11-29T20:01:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0465-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:51.082781", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0466-V1.0", "title": "RORSI_2271_2014_334_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-30T01:13:15.000 to 2014-11-30T13:06:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0466-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:52.099256", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0467-V1.0", "title": "RORSI_2272_2014_334_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-11-30T13:23:20.000 to 2014-11-30T19:49:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0467-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:53.149695", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0468-V1.0", "title": "RORSI_2273_2014_335_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-01T02:33:05.000 to 2014-12-01T13:04:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0468-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:54.164876", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0469-V1.0", "title": "RORSI_2274_2014_336_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-02T01:08:30.000 to 2014-12-02T13:01:51.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0469-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:55.087646", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0470-V1.0", "title": "RORSI_2275_2014_336_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-02T13:18:40.000 to 2014-12-02T16:28:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0470-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:56.092968", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0471-V1.0", "title": "RORSI_2276_2014_337_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-03T13:16:25.000 to 2014-12-03T21:45:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0471-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:57.101291", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0472-V1.0", "title": "RORSI_2277_2014_338_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-04T04:12:15.000 to 2014-12-04T12:57:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0472-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:58.101635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0473-V1.0", "title": "RORSI_2278_2014_338_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-04T13:14:05.000 to 2014-12-04T20:44:45.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0473-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:47:59.101918", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0474-V1.0", "title": "RORSI_2279_2014_339_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-05T04:26:35.000 to 2014-12-05T12:29:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0474-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:00.104963", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0475-V1.0", "title": "RORSI_2284_2014_342_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-08T13:05:05.000 to 2014-12-08T20:05:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0475-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:01.107875", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0476-V1.0", "title": "RORSI_2280_2014_340_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-06T01:54:25.000 to 2014-12-06T12:52:39.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0476-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:02.105254", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0477-V1.0", "title": "RORSI_2283_2014_342_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-08T00:54:35.000 to 2014-12-08T12:48:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0477-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:03.111068", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0478-V1.0", "title": "RORSI_2281_2014_341_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-07T00:56:55.000 to 2014-12-07T13:18:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0478-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:04.162105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0479-V1.0", "title": "RORSI_2282_2014_341_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-07T20:57:05.000 to 2014-12-08T00:37:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0479-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:05.173788", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0480-V1.0", "title": "RORSI_2285_2014_343_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-09T00:52:20.000 to 2014-12-09T12:45:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0480-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:06.120635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0481-V1.0", "title": "RORSI_2286_2014_343_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-09T13:02:55.000 to 2014-12-09T19:38:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0481-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:07.268541", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0482-V1.0", "title": "RORSI_2287_2014_344_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-10T13:00:40.000 to 2014-12-10T21:12:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0482-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:08.121173", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0483-V1.0", "title": "RORSI_2288_2014_345_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-11T04:10:05.000 to 2014-12-11T12:41:36.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0483-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:09.123454", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0484-V1.0", "title": "RORSI_2289_2014_345_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-11T12:58:30.000 to 2014-12-11T19:33:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0484-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:10.128384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0485-V1.0", "title": "RORSI_2290_2014_346_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-12T03:24:15.000 to 2014-12-12T13:06:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0485-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:11.130012", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0486-V1.0", "title": "RORSI_2294_2014_349_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-15T00:39:00.000 to 2014-12-15T12:57:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0486-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:12.128030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0487-V1.0", "title": "RORSI_2291_2014_347_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-13T04:19:20.000 to 2014-12-13T12:37:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0487-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:13.129950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0488-V1.0", "title": "RORSI_2292_2014_347_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-13T12:54:10.000 to 2014-12-13T19:29:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0488-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:14.135845", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0489-V1.0", "title": "RORSI_2293_2014_348_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-14T06:44:15.000 to 2014-12-14T12:55:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0489-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:15.171098", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0490-V1.0", "title": "RORSI_2295_2014_350_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-16T00:36:45.000 to 2014-12-16T12:31:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0490-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:16.219200", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0491-V1.0", "title": "RORSI_2296_2014_350_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-16T12:47:40.000 to 2014-12-16T15:00:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0491-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:17.227848", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0492-V1.0", "title": "RORSI_2297_2014_351_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-17T03:34:15.000 to 2014-12-17T12:51:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0492-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:18.143191", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0493-V1.0", "title": "RORSI_2298_2014_351_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-17T13:08:45.000 to 2014-12-17T20:49:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0493-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:19.147775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0494-V1.0", "title": "RORSI_2299_2014_352_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-18T00:32:30.000 to 2014-12-18T11:59:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0494-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:20.148775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0495-V1.0", "title": "RORSI_2300_2014_353_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-19T00:30:20.000 to 2014-12-19T12:24:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0495-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:21.147985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0496-V1.0", "title": "RORSI_2301_2014_353_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-19T12:41:25.000 to 2014-12-19T18:17:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0496-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:22.150018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0497-V1.0", "title": "RORSI_2302_2014_354_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-20T03:34:15.000 to 2014-12-20T12:22:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0497-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:23.150038", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0498-V1.0", "title": "RORSI_2303_2014_355_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-21T00:26:00.000 to 2014-12-21T12:41:43.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0498-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:24.154601", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0499-V1.0", "title": "RORSI_2304_2014_356_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-22T00:23:55.000 to 2014-12-22T12:18:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0499-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:25.167102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0500-V1.0", "title": "RORSI_2305_2014_356_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-22T12:35:10.000 to 2014-12-22T20:12:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0500-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:26.186297", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0501-V1.0", "title": "RORSI_2306_2014_357_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-23T00:21:45.000 to 2014-12-23T12:16:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0501-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:27.224854", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0502-V1.0", "title": "RORSI_2307_2014_357_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-23T12:33:05.000 to 2014-12-23T18:19:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0502-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:28.242668", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0503-V1.0", "title": "RORSI_2308_2014_358_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-24T00:19:40.000 to 2014-12-24T12:14:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0503-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:29.166824", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0504-V1.0", "title": "RORSI_2309_2014_358_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-24T12:28:25.000 to 2014-12-24T20:40:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0504-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:30.173672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0505-V1.0", "title": "RORSI_2310_2014_359_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-25T00:17:35.000 to 2014-12-25T12:12:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0505-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:31.166563", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0506-V1.0", "title": "RORSI_2311_2014_359_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-25T12:29:05.000 to 2014-12-25T18:14:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0506-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:32.174025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0507-V1.0", "title": "RORSI_2312_2014_360_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-26T01:43:05.000 to 2014-12-26T12:10:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0507-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:33.182359", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0508-V1.0", "title": "RORSI_2313_2014_360_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-26T12:27:00.000 to 2014-12-26T20:30:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0508-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:34.178928", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0509-V1.0", "title": "RORSI_2314_2014_361_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-27T01:43:05.000 to 2014-12-27T12:08:04.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0509-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:35.182973", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0510-V1.0", "title": "RORSI_2315_2014_361_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-27T15:34:15.000 to 2014-12-27T18:59:28.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0510-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:36.185800", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0511-V1.0", "title": "RORSI_2316_2014_362_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-28T01:42:05.000 to 2014-12-28T12:10:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0511-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:37.185525", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0512-V1.0", "title": "RORSI_2317_2014_363_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-29T00:09:25.000 to 2014-12-29T12:10:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0512-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:38.246357", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0513-V1.0", "title": "RORSI_2318_2014_364_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-30T00:07:20.000 to 2014-12-30T12:18:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0513-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:39.252132", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0514-V1.0", "title": "RORSI_2319_2014_364_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-30T12:35:25.000 to 2014-12-30T17:59:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0514-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:40.197298", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0515-V1.0", "title": "RORSI_2321_2014_365_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T04:32:47.000 to 2014-12-31T12:15:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0515-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:41.192334", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0516-V1.0", "title": "RORSI_2322_2014_365_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T12:32:55.000 to 2014-12-31T19:00:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0516-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:42.192155", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0517-V1.0", "title": "RORSI_2323_2015_001_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-01T01:33:05.000 to 2015-01-01T10:39:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0517-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:43.201618", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0518-V1.0", "title": "RORSI_2324_2015_002_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-02T00:01:20.000 to 2015-01-02T11:14:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0518-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:44.202664", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0519-V1.0", "title": "RORSI_2325_2015_003_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-02T23:59:20.000 to 2015-01-03T08:13:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0519-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:45.211978", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0520-V1.0", "title": "RORSI_2326_2015_003_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-03T09:04:44.000 to 2015-01-03T10:25:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0520-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:46.206244", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0521-V1.0", "title": "RORSI_2327_2015_004_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-03T23:57:20.000 to 2015-01-04T10:29:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0521-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:47.209358", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0522-V1.0", "title": "RORSI_2328_2015_005_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-04T23:55:20.000 to 2015-01-05T02:40:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0522-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:48.208931", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0523-V1.0", "title": "RORSI_2329_2015_005_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-05T12:07:05.000 to 2015-01-05T23:36:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0523-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:49.247722", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0524-V1.0", "title": "RORSI_2330_2015_006_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-05T23:53:20.000 to 2015-01-06T12:00:49.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0524-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:50.295081", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0525-V1.0", "title": "RORSI_2331_2015_007_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-07T12:03:20.000 to 2015-01-07T23:51:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0525-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:51.311736", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0526-V1.0", "title": "RORSI_2332_2015_008_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T00:08:20.000 to 2015-01-08T02:55:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0526-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:52.214339", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0527-V1.0", "title": "RORSI_2333_2015_008_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T12:01:25.000 to 2015-01-08T23:30:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0527-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:53.220151", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0528-V1.0", "title": "RORSI_2334_2015_009_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-08T23:47:35.000 to 2015-01-09T11:53:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0528-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:54.220774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0529-V1.0", "title": "RORSI_2320_2014_365_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2014-12-31T00:38:20.000 to 2014-12-31T03:41:26.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0529-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:55.224120", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0530-V1.0", "title": "RORSI_2335_2015_009_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-09T12:10:15.000 to 2015-01-09T14:17:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0530-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:56.222268", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0531-V1.0", "title": "RORSI_2336_2015_010_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-10T04:19:30.000 to 2015-01-10T11:50:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0531-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:57.223284", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0532-V1.0", "title": "RORSI_2337_2015_011_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-11T01:18:05.000 to 2015-01-11T11:48:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0532-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:58.227264", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0533-V1.0", "title": "RORSI_2338_2015_012_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-12T11:54:00.000 to 2015-01-12T22:15:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0533-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:48:59.236982", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0534-V1.0", "title": "RORSI_2339_2015_013_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-13T05:12:05.000 to 2015-01-13T11:43:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0534-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:00.254792", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0535-V1.0", "title": "RORSI_2340_2015_014_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-14T03:34:35.000 to 2015-01-14T11:40:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0535-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:01.310359", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0536-V1.0", "title": "RORSI_2341_2015_015_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T01:07:05.000 to 2015-01-15T03:45:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0536-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:02.317916", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0537-V1.0", "title": "RORSI_2342_2015_015_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T11:48:35.000 to 2015-01-15T23:17:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0537-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:03.231899", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0538-V1.0", "title": "RORSI_2343_2015_016_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-15T23:34:15.000 to 2015-01-16T11:36:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0538-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:04.236283", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0539-V1.0", "title": "RORSI_2344_2015_016_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-16T10:14:16.000 to 2015-01-16T11:36:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0539-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:05.245042", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0540-V1.0", "title": "RORSI_2345_2015_017_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-17T03:34:45.000 to 2015-01-17T11:33:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0540-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:06.247414", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0541-V1.0", "title": "RORSI_2346_2015_018_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-18T01:08:05.000 to 2015-01-18T09:49:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0541-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:07.241776", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0542-V1.0", "title": "RORSI_2347_2015_019_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-19T11:41:30.000 to 2015-01-19T23:09:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0542-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:08.248124", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0543-V1.0", "title": "RORSI_2348_2015_020_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-19T23:26:55.000 to 2015-01-20T09:44:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0543-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:09.248629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0544-V1.0", "title": "RORSI_2349_2015_021_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-21T04:19:50.000 to 2015-01-21T11:23:33.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0544-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:10.253033", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0545-V1.0", "title": "RORSI_2350_2015_022_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-22T17:08:15.000 to 2015-01-22T23:04:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0545-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:11.268681", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0546-V1.0", "title": "RORSI_2351_2015_023_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-22T23:21:30.000 to 2015-01-23T09:34:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0546-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:12.313504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0547-V1.0", "title": "RORSI_2352_2015_024_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-24T03:35:00.000 to 2015-01-24T11:16:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0547-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:13.328831", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0548-V1.0", "title": "RORSI_2353_2015_025_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-25T00:53:05.000 to 2015-01-25T11:13:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0548-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:14.258559", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0549-V1.0", "title": "RORSI_2354_2015_026_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-26T00:53:05.000 to 2015-01-26T05:34:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0549-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:15.262934", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0550-V1.0", "title": "RORSI_2355_2015_026_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-26T11:29:25.000 to 2015-01-26T20:29:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0550-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:16.263672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0551-V1.0", "title": "RORSI_2356_2015_027_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-27T00:53:05.000 to 2015-01-27T11:08:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0551-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:17.264318", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0552-V1.0", "title": "RORSI_2357_2015_028_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-28T06:16:58.000 to 2015-01-28T11:06:24.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0552-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:18.273029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0553-V1.0", "title": "RORSI_2358_2015_029_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T01:10:15.000 to 2015-01-29T02:42:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0553-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:19.267457", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0554-V1.0", "title": "RORSI_2359_2015_029_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T12:51:10.000 to 2015-01-29T22:52:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0554-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:20.280135", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0555-V1.0", "title": "RORSI_2360_2015_030_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-29T23:09:05.000 to 2015-01-30T11:01:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0555-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:21.282290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0556-V1.0", "title": "RORSI_2361_2015_030_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-30T20:42:40.000 to 2015-01-30T22:50:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0556-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:22.276372", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0557-V1.0", "title": "RORSI_2362_2015_031_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-01-31T04:50:20.000 to 2015-01-31T09:14:05.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0557-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:23.330294", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0558-V1.0", "title": "RORSI_2363_2015_032_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-01T06:13:05.000 to 2015-02-01T10:56:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0558-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:24.340967", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0559-V1.0", "title": "RORSI_2364_2015_033_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T07:42:05.000 to 2015-02-02T10:54:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0559-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:25.289617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0560-V1.0", "title": "RORSI_2365_2015_033_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T16:53:50.000 to 2015-02-02T22:45:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0560-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:26.290112", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0561-V1.0", "title": "RORSI_2366_2015_033_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-02T23:32:10.000 to 2015-02-03T10:51:46.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0561-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:27.291642", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0562-V1.0", "title": "RORSI_2367_2015_034_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-03T11:16:10.000 to 2015-02-03T15:45:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0562-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:28.296230", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0563-V1.0", "title": "RORSI_2368_2015_035_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-04T11:14:35.000 to 2015-02-04T17:54:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0563-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:29.294025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0564-V1.0", "title": "RORSI_2369_2015_036_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-05T11:13:00.000 to 2015-02-05T22:40:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0564-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:30.302384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0565-V1.0", "title": "RORSI_2370_2015_036_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-05T22:57:10.000 to 2015-02-06T08:54:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0565-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:31.305421", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0566-V1.0", "title": "RORSI_2371_2015_037_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-06T22:55:30.000 to 2015-02-07T00:20:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0566-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:32.299026", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0567-V1.0", "title": "RORSI_2372_2015_038_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-07T03:35:40.000 to 2015-02-07T08:54:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0567-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:33.303193", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0568-V1.0", "title": "RORSI_2373_2015_039_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-08T08:43:05.000 to 2015-02-08T10:38:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0568-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:34.339580", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0569-V1.0", "title": "RORSI_2374_2015_039_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-08T11:08:15.000 to 2015-02-08T15:25:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0569-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:35.384089", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0570-V1.0", "title": "RORSI_2375_2015_040_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-09T11:06:40.000 to 2015-02-09T22:33:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0570-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:36.399427", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0571-V1.0", "title": "RORSI_2376_2015_040_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-09T22:50:30.000 to 2015-02-10T05:11:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0571-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:37.315566", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0572-V1.0", "title": "RORSI_2377_2015_041_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-10T07:49:21.000 to 2015-02-10T10:34:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0572-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:38.311028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0573-V1.0", "title": "RORSI_2378_2015_041_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-10T22:48:50.000 to 2015-02-11T00:19:51.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0573-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:39.320650", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0574-V1.0", "title": "RORSI_2379_2015_042_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-11T01:55:55.000 to 2015-02-11T10:32:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0574-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:40.325647", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0575-V1.0", "title": "RORSI_2380_2015_042_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-11T11:03:35.000 to 2015-02-11T13:07:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0575-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:41.321741", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0576-V1.0", "title": "RORSI_2381_2015_043_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-12T08:54:45.000 to 2015-02-12T10:45:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0576-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:42.330021", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0577-V1.0", "title": "RORSI_2382_2015_043_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-12T11:02:00.000 to 2015-02-12T15:49:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0577-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:43.319827", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0578-V1.0", "title": "RORSI_2383_2015_044_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-13T00:50:05.000 to 2015-02-13T10:27:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0578-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:44.332364", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0579-V1.0", "title": "RORSI_2384_2015_044_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-13T11:00:30.000 to 2015-02-13T13:49:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0579-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:45.349299", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0580-V1.0", "title": "RORSI_2385_2015_045_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-14T01:56:05.000 to 2015-02-14T08:39:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0580-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:46.400030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0581-V1.0", "title": "RORSI_2386_2015_046_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-15T00:23:05.000 to 2015-02-15T08:29:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0581-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:47.408524", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0582-V1.0", "title": "RORSI_2387_2015_047_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T08:43:25.000 to 2015-02-16T12:30:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0582-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:48.499236", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0583-V1.0", "title": "RORSI_2388_2015_047_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T16:22:05.000 to 2015-02-16T22:22:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0583-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:49.337879", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0584-V1.0", "title": "RORSI_2389_2015_047_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-16T23:20:10.000 to 2015-02-17T00:19:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0584-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:50.339842", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0585-V1.0", "title": "RORSI_2390_2015_048_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-17T02:25:05.000 to 2015-02-17T08:59:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0585-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:51.339058", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0586-V1.0", "title": "RORSI_2391_2015_048_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-17T22:37:40.000 to 2015-02-18T00:19:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0586-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:52.345554", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0587-V1.0", "title": "RORSI_2392_2015_049_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-18T03:36:25.000 to 2015-02-18T10:15:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0587-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:53.342308", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0588-V1.0", "title": "RORSI_2393_2015_049_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-18T10:53:00.000 to 2015-02-18T13:11:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0588-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:54.356578", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0590-V1.0", "title": "RORSI_2394_2015_050_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-19T08:35:00.000 to 2015-02-19T10:34:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0590-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:55.350128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0591-V1.0", "title": "RORSI_2395_2015_050_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-19T10:51:30.000 to 2015-02-19T20:14:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0591-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:56.363562", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0592-V1.0", "title": "RORSI_2396_2015_051_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-20T00:28:05.000 to 2015-02-20T10:10:44.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0592-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:57.406716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0593-V1.0", "title": "RORSI_2397_2015_051_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-20T10:50:05.000 to 2015-02-20T12:55:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0593-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:58.421272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0594-V1.0", "title": "RORSI_2398_2015_052_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-21T18:16:50.000 to 2015-02-21T22:14:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0594-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:49:59.364003", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0595-V1.0", "title": "RORSI_2399_2015_052_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-21T22:31:25.000 to 2015-02-22T00:42:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0595-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:00.365599", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0596-V1.0", "title": "RORSI_2400_2015_053_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-22T08:12:05.000 to 2015-02-22T10:06:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0596-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:01.364609", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0597-V1.0", "title": "RORSI_2401_2015_053_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-22T10:47:10.000 to 2015-02-22T15:03:55.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0597-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:02.375403", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0598-V1.0", "title": "RORSI_2402_2015_054_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-23T10:45:45.000 to 2015-02-23T22:11:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0598-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:03.374188", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0599-V1.0", "title": "RORSI_2403_2015_054_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-23T22:28:20.000 to 2015-02-24T06:28:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0599-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:04.374069", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0600-V1.0", "title": "RORSI_2404_2015_055_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-24T10:44:20.000 to 2015-02-24T15:20:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0600-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:05.382965", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0601-V1.0", "title": "RORSI_2405_2015_055_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-24T22:26:50.000 to 2015-02-25T00:19:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0601-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:06.383135", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0602-V1.0", "title": "RORSI_2406_2015_056_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-25T03:36:55.000 to 2015-02-25T09:58:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0602-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:07.379680", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0603-V1.0", "title": "RORSI_2407_2015_056_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-25T14:42:55.000 to 2015-02-25T18:45:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0603-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:08.418933", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0604-V1.0", "title": "RORSI_2408_2015_057_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T00:07:05.000 to 2015-02-26T02:30:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0604-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:09.469279", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0605-V1.0", "title": "RORSI_2409_2015_057_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T08:15:20.000 to 2015-02-26T10:24:31.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0605-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:10.380039", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0606-V1.0", "title": "RORSI_2410_2015_057_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-26T10:41:30.000 to 2015-02-26T22:22:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0606-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:11.389457", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0607-V1.0", "title": "RORSI_2411_2015_058_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-27T04:43:05.000 to 2015-02-27T07:59:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0607-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:12.393670", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0608-V1.0", "title": "RORSI_2412_2015_058_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-27T22:22:20.000 to 2015-02-28T00:18:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0608-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:13.396018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0609-V1.0", "title": "RORSI_2413_2015_059_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T03:37:05.000 to 2015-02-28T09:51:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0609-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:14.397804", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0610-V1.0", "title": "RORSI_2414_2015_059_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T10:08:35.000 to 2015-02-28T15:00:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0610-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:15.397893", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0611-V1.0", "title": "RORSI_2415_2015_059_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T17:37:40.000 to 2015-02-28T22:31:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0611-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:16.396797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0612-V1.0", "title": "RORSI_2416_2015_059_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-02-28T22:34:15.000 to 2015-03-01T07:54:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0612-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:17.408779", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0613-V1.0", "title": "RORSI_2417_2015_060_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-01T11:48:05.000 to 2015-03-01T15:09:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0613-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:18.406539", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0614-V1.0", "title": "RORSI_2418_2015_061_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T08:04:10.000 to 2015-03-02T10:19:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0614-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:19.427846", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0615-V1.0", "title": "RORSI_2419_2015_061_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T10:36:00.000 to 2015-03-02T14:35:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0615-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:20.473282", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0616-V1.0", "title": "RORSI_2420_2015_061_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T13:36:00.000 to 2015-03-02T14:35:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0616-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:21.488429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0617-V1.0", "title": "RORSI_2421_2015_061_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T14:28:35.000 to 2015-03-02T22:01:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0617-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:22.414718", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0618-V1.0", "title": "RORSI_2422_2015_061_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-02T22:17:55.000 to 2015-03-03T09:44:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0618-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:23.421403", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0619-V1.0", "title": "RORSI_2423_2015_062_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-03T10:34:35.000 to 2015-03-03T12:25:41.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0619-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:24.422452", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0620-V1.0", "title": "RORSI_2424_2015_063_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-04T16:17:05.000 to 2015-03-04T19:03:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0620-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:25.415102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0621-V1.0", "title": "RORSI_2425_2015_063_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-04T22:15:00.000 to 2015-03-05T04:07:46.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0621-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:26.423405", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0622-V1.0", "title": "RORSI_2426_2015_064_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T07:55:50.000 to 2015-03-05T10:15:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0622-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:27.431082", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0623-V1.0", "title": "RORSI_2427_2015_064_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T10:31:55.000 to 2015-03-05T14:59:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0623-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:28.428790", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0624-V1.0", "title": "RORSI_2428_2015_064_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-05T23:03:05.000 to 2015-03-06T07:40:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0624-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:29.428213", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0625-V1.0", "title": "RORSI_2429_2015_066_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-07T03:13:05.000 to 2015-03-07T07:34:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0625-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:30.433761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0626-V1.0", "title": "RORSI_2430_2015_066_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-07T22:10:45.000 to 2015-03-08T00:56:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0626-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:31.482662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0627-V1.0", "title": "RORSI_2431_2015_067_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T07:38:05.000 to 2015-03-08T09:32:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0627-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:32.499895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0628-V1.0", "title": "RORSI_2432_2015_067_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T09:49:35.000 to 2015-03-08T11:50:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0628-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:33.434082", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0629-V1.0", "title": "RORSI_2433_2015_067_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-08T22:09:20.000 to 2015-03-09T00:06:04.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0629-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:34.442405", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0630-V1.0", "title": "RORSI_2434_2015_068_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T07:44:45.000 to 2015-03-09T10:09:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0630-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:35.444660", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0631-V1.0", "title": "RORSI_2435_2015_068_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T10:26:40.000 to 2015-03-09T19:54:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0631-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:36.442685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0632-V1.0", "title": "RORSI_2436_2015_069_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-09T23:53:05.000 to 2015-03-10T02:11:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0632-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:37.444687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0633-V1.0", "title": "RORSI_2437_2015_069_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T07:33:05.000 to 2015-03-10T09:28:00.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0633-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:38.456336", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0634-V1.0", "title": "RORSI_2438_2015_069_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T13:46:00.000 to 2015-03-10T15:57:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0634-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:39.453748", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC1-0635-V1.0", "title": "RORSI_2439_2015_069_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 1 (ESC1). This is a Global Gravity measurement from 2015-03-10T22:06:35.000 to 2015-03-11T00:18:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc1-0635-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:40.455116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0636-V1.0", "title": "RORSI_2440_2015_070_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-11T01:58:00.000 to 2015-03-11T09:25:33.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0636-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:41.454014", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0637-V1.0", "title": "RORSI_2441_2015_070_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-11T10:24:05.000 to 2015-03-11T12:24:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0637-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:42.496070", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0638-V1.0", "title": "RORSI_2442_2015_071_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T07:36:25.000 to 2015-03-12T10:05:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0638-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:43.540805", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0639-V1.0", "title": "RORSI_2443_2015_071_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T10:22:50.000 to 2015-03-12T21:46:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0639-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:44.460805", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0640-V1.0", "title": "RORSI_2444_2015_071_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-12T22:03:50.000 to 2015-03-13T09:20:51.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0640-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:45.462288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0641-V1.0", "title": "RORSI_2445_2015_072_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-13T10:21:35.000 to 2015-03-13T12:23:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0641-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:46.469245", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0642-V1.0", "title": "RORSI_2446_2015_072_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-13T14:11:10.000 to 2015-03-13T15:54:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0642-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:47.471323", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0643-V1.0", "title": "RORSI_2447_2015_073_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T02:03:15.000 to 2015-03-14T03:06:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0643-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:48.465701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0644-V1.0", "title": "RORSI_2448_2015_073_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T07:28:05.000 to 2015-03-14T09:18:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0644-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:49.476687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0645-V1.0", "title": "RORSI_2449_2015_074_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-14T23:48:05.000 to 2015-03-15T09:16:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0645-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:50.474114", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0646-V1.0", "title": "RORSI_2450_2015_074_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-15T10:19:10.000 to 2015-03-15T14:27:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0646-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:51.481244", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0648-V1.0", "title": "RORSI_2452_2015_075_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T11:33:05.000 to 2015-03-16T13:10:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0648-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:52.473769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0649-V1.0", "title": "RORSI_2454_2015_075_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T13:11:25.000 to 2015-03-16T16:58:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0649-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:53.504903", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0650-V1.0", "title": "RORSI_2455_2015_075_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T17:06:25.000 to 2015-03-16T21:09:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0650-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:54.551801", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0651-V1.0", "title": "RORSI_2456_2015_075_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-16T21:58:25.000 to 2015-03-17T09:11:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0651-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:55.565592", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0652-V1.0", "title": "RORSI_2457_2015_076_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-17T10:16:40.000 to 2015-03-17T13:48:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0652-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:56.484296", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0653-V1.0", "title": "RORSI_2458_2015_076_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-17T22:38:30.000 to 2015-03-18T00:17:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0653-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:57.489811", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0654-V1.0", "title": "RORSI_2459_2015_077_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T01:58:35.000 to 2015-03-18T09:09:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0654-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:58.491663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0655-V1.0", "title": "RORSI_2460_2015_077_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T04:48:30.000 to 2015-03-18T09:09:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0655-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:50:59.495562", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0656-V1.0", "title": "RORSI_2453_2015_077_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-18T10:15:30.000 to 2015-03-18T12:22:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0656-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:00.491239", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0657-V1.0", "title": "RORSI_2493_2015_078_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T07:17:15.000 to 2015-03-19T11:45:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0657-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:01.499657", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0658-V1.0", "title": "RORSI_2494_2015_078_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T16:03:20.000 to 2015-03-19T21:31:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0658-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:02.495048", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0659-V1.0", "title": "RORSI_2495_2015_078_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-19T21:54:30.000 to 2015-03-20T06:59:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0659-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:03.508274", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0660-V1.0", "title": "RORSI_2461_2015_079_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-20T13:25:05.000 to 2015-03-20T16:24:20.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0660-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:04.516305", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0661-V1.0", "title": "RORSI_2462_2015_079_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-20T22:19:45.000 to 2015-03-21T00:17:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0661-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:05.563904", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0662-V1.0", "title": "RORSI_2463_2015_080_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T01:58:50.000 to 2015-03-21T09:02:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0662-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:06.574997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0663-V1.0", "title": "RORSI_2464_2015_080_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T10:12:00.000 to 2015-03-21T12:21:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0663-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:07.510451", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0664-V1.0", "title": "RORSI_2465_2015_080_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-21T21:52:00.000 to 2015-03-22T08:59:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0664-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:08.513714", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0665-V1.0", "title": "RORSI_2466_2015_081_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-22T10:10:50.000 to 2015-03-22T14:25:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0665-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:09.518557", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0666-V1.0", "title": "RORSI_2467_2015_081_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-22T22:28:40.000 to 2015-03-23T00:20:56.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0666-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:10.527975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0667-V1.0", "title": "RORSI_2468_2015_082_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-23T18:33:05.000 to 2015-03-23T21:21:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0667-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:11.519770", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0668-V1.0", "title": "RORSI_2469_2015_082_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-23T21:49:30.000 to 2015-03-24T08:55:04.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0668-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:12.518951", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0669-V1.0", "title": "RORSI_2470_2015_083_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-24T10:08:30.000 to 2015-03-24T12:21:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0669-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:13.521945", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0670-V1.0", "title": "RORSI_2471_2015_083_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-24T21:48:15.000 to 2015-03-25T00:16:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0670-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:14.532554", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0671-V1.0", "title": "RORSI_2472_2015_084_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T01:59:15.000 to 2015-03-25T08:52:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0671-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:15.527917", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0672-V1.0", "title": "RORSI_2473_2015_084_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T10:07:25.000 to 2015-03-25T12:21:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0672-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:16.571985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0673-V1.0", "title": "RORSI_2474_2015_084_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-25T17:57:20.000 to 2015-03-25T21:16:24.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0673-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:17.618996", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0674-V1.0", "title": "RORSI_2475_2015_085_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-26T10:06:20.000 to 2015-03-26T21:14:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0674-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:18.537099", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0675-V1.0", "title": "RORSI_2476_2015_085_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-26T21:45:45.000 to 2015-03-27T06:45:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0675-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:19.538244", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0676-V1.0", "title": "RORSI_2477_2015_086_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-27T21:44:35.000 to 2015-03-28T00:16:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0676-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:20.540459", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0677-V1.0", "title": "RORSI_2478_2015_087_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T01:59:30.000 to 2015-03-28T06:39:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0677-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:21.549662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0678-V1.0", "title": "RORSI_2479_2015_087_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T15:53:05.000 to 2015-03-28T19:00:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0678-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:22.545528", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0679-V1.0", "title": "RORSI_2480_2015_087_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T21:43:20.000 to 2015-03-28T22:55:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0679-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:23.550688", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0680-V1.0", "title": "RORSI_2481_2015_087_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-28T22:58:35.000 to 2015-03-29T04:04:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0680-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:24.551381", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0681-V1.0", "title": "RORSI_2482_2015_088_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-29T05:04:40.000 to 2015-03-29T08:43:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0681-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:25.554275", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0682-V1.0", "title": "RORSI_2483_2015_088_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-29T10:03:00.000 to 2015-03-29T13:02:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0682-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:26.551503", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0683-V1.0", "title": "RORSI_2484_2015_089_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-30T14:53:05.000 to 2015-03-30T21:04:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0683-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:27.580608", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0684-V1.0", "title": "RORSI_2485_2015_089_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-30T21:41:00.000 to 2015-03-31T08:38:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0684-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:28.629940", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0685-V1.0", "title": "RORSI_2486_2015_090_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-03-31T10:00:55.000 to 2015-03-31T12:19:52.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0685-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:29.749416", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0686-V1.0", "title": "RORSI_2487_2015_091_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T06:42:05.000 to 2015-04-01T12:16:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0686-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:30.566220", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0687-V1.0", "title": "RORSI_2488_2015_091_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T13:59:55.000 to 2015-04-01T15:38:20.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0687-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:31.565199", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0688-V1.0", "title": "RORSI_2489_2015_091_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-01T21:42:05.000 to 2015-04-02T01:45:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0688-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:32.570107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0689-V1.0", "title": "RORSI_2490_2015_092_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-02T15:23:05.000 to 2015-04-02T20:56:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0689-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:33.569262", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0690-V1.0", "title": "RORSI_2491_2015_092_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-02T21:37:30.000 to 2015-04-03T05:58:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0690-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:34.570295", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0691-V1.0", "title": "RORSI_2492_2015_094_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-03T23:23:05.000 to 2015-04-04T00:15:51.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0691-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:35.572745", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0692-V1.0", "title": "RORSI_2496_2015_094_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-04T03:40:10.000 to 2015-04-04T08:29:50.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0692-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:36.575054", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0693-V1.0", "title": "RORSI_2497_2015_095_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-04T23:28:05.000 to 2015-04-05T01:29:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0693-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:37.574821", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0694-V1.0", "title": "RORSI_2498_2015_096_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T06:28:45.000 to 2015-04-06T09:38:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0694-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:38.592197", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0695-V1.0", "title": "RORSI_2499_2015_096_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T09:54:55.000 to 2015-04-06T13:35:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0695-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:39.647052", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0696-V1.0", "title": "RORSI_2500_2015_097_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-06T23:28:05.000 to 2015-04-07T08:22:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0696-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:40.653681", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0697-V1.0", "title": "RORSI_2501_2015_097_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-07T08:39:50.000 to 2015-04-07T13:35:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0697-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:41.587379", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0698-V1.0", "title": "RORSI_2502_2015_098_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-07T23:28:05.000 to 2015-04-08T08:20:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0698-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:42.586807", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0699-V1.0", "title": "RORSI_2503_2015_099_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-09T09:52:05.000 to 2015-04-09T20:40:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0699-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:43.584046", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0700-V1.0", "title": "RORSI_2504_2015_099_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-09T21:29:55.000 to 2015-04-10T06:04:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0700-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:44.592932", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0701-V1.0", "title": "RORSI_2505_2015_100_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-10T12:41:45.000 to 2015-04-10T15:31:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0701-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:45.595983", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0702-V1.0", "title": "RORSI_2506_2015_100_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-10T21:28:55.000 to 2015-04-11T08:13:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0702-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:46.598996", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0703-V1.0", "title": "RORSI_2507_2015_101_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-11T08:30:50.000 to 2015-04-11T14:54:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0703-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:47.599535", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0704-V1.0", "title": "RORSI_2508_2015_102_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-11T23:23:05.000 to 2015-04-12T08:11:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0704-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:48.597104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0705-V1.0", "title": "RORSI_2509_2015_102_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-12T08:28:35.000 to 2015-04-12T13:19:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0705-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:49.603982", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0706-V1.0", "title": "RORSI_2510_2015_103_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T06:12:05.000 to 2015-04-13T10:00:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0706-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:50.650448", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0707-V1.0", "title": "RORSI_2511_2015_103_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T15:43:05.000 to 2015-04-13T20:30:48.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0707-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:51.666330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0708-V1.0", "title": "RORSI_2512_2015_103_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-13T21:25:50.000 to 2015-04-14T08:07:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0708-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:52.606521", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0709-V1.0", "title": "RORSI_2513_2015_105_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-15T02:18:05.000 to 2015-04-15T08:04:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0709-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:53.605227", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0710-V1.0", "title": "RORSI_2514_2015_105_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-15T12:57:05.000 to 2015-04-15T15:28:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0710-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:54.613763", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0711-V1.0", "title": "RORSI_2515_2015_106_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-16T06:02:40.000 to 2015-04-16T13:10:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0711-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:55.614420", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0712-V1.0", "title": "RORSI_2516_2015_106_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-16T21:23:00.000 to 2015-04-17T08:00:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0712-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:56.618045", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0713-V1.0", "title": "RORSI_2517_2015_107_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-17T12:28:15.000 to 2015-04-17T15:27:31.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0713-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:57.619952", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0714-V1.0", "title": "RORSI_2518_2015_108_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T02:08:05.000 to 2015-04-18T07:58:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0714-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:58.623068", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0715-V1.0", "title": "RORSI_2519_2015_108_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T08:15:10.000 to 2015-04-18T10:29:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0715-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:51:59.624355", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0716-V1.0", "title": "RORSI_2520_2015_108_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T17:02:05.000 to 2015-04-18T20:19:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0716-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:00.626447", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0717-V1.0", "title": "RORSI_2521_2015_108_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-18T21:21:10.000 to 2015-04-19T05:39:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0717-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:01.664958", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0718-V1.0", "title": "RORSI_2522_2015_109_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-19T05:59:42.000 to 2015-04-19T16:37:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0718-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:02.708553", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0719-V1.0", "title": "RORSI_2523_2015_110_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-20T05:52:25.000 to 2015-04-20T13:00:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0719-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:03.625610", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0720-V1.0", "title": "RORSI_2524_2015_110_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-20T23:13:05.000 to 2015-04-21T07:51:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0720-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:04.636756", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0721-V1.0", "title": "RORSI_2525_2015_111_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-21T08:08:35.000 to 2015-04-21T10:14:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0721-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:05.631342", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0722-V1.0", "title": "RORSI_2526_2015_111_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-21T21:18:30.000 to 2015-04-22T00:14:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0722-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:06.641452", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0723-V1.0", "title": "RORSI_2527_2015_112_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-22T08:06:25.000 to 2015-04-22T15:24:45.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0723-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:07.636559", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0724-V1.0", "title": "RORSI_2528_2015_112_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-22T02:01:55.000 to 2015-04-22T07:49:24.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0724-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:08.646789", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0725-V1.0", "title": "RORSI_2529_2015_113_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-23T05:44:50.000 to 2015-04-23T12:03:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0725-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:09.646233", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0726-V1.0", "title": "RORSI_2530_2015_113_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-23T12:20:50.000 to 2015-04-23T18:00:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0726-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:10.652201", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0727-V1.0", "title": "RORSI_2531_2015_114_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T03:03:05.000 to 2015-04-24T05:29:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0727-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:11.651102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0728-V1.0", "title": "RORSI_2532_2015_114_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T12:15:40.000 to 2015-04-24T15:23:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0728-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:12.673163", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0729-V1.0", "title": "RORSI_2533_2015_114_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-24T21:15:55.000 to 2015-04-25T01:53:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0729-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:13.722857", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0730-V1.0", "title": "RORSI_2534_2015_115_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-25T02:02:15.000 to 2015-04-25T05:24:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0730-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:14.732032", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0731-V1.0", "title": "RORSI_2535_2015_116_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T05:43:05.000 to 2015-04-26T07:40:44.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0731-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:15.663186", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0732-V1.0", "title": "RORSI_2536_2015_116_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T07:57:45.000 to 2015-04-26T12:54:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0732-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:16.661775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0733-V1.0", "title": "RORSI_2537_2015_117_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-26T23:42:05.000 to 2015-04-27T03:17:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0733-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:17.657721", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0734-V1.0", "title": "RORSI_2538_2015_117_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-27T12:33:05.000 to 2015-04-27T19:58:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0734-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:18.666437", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0735-V1.0", "title": "RORSI_2539_2015_117_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-27T21:13:35.000 to 2015-04-28T05:19:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0735-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:19.670479", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0736-V1.0", "title": "RORSI_2540_2015_118_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-28T09:08:05.000 to 2015-04-28T15:21:53.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0736-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:20.675001", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0737-V1.0", "title": "RORSI_2541_2015_118_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-28T21:12:50.000 to 2015-04-29T00:13:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0737-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:21.672684", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0738-V1.0", "title": "RORSI_2542_2015_119_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-29T02:02:40.000 to 2015-04-29T07:34:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0738-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:22.669390", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0739-V1.0", "title": "RORSI_2543_2015_119_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-29T07:51:15.000 to 2015-04-29T13:09:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0739-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:23.681596", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0740-V1.0", "title": "RORSI_2544_2015_120_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T05:27:25.000 to 2015-04-30T09:19:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0740-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:24.742225", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0741-V1.0", "title": "RORSI_2545_2015_120_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T09:36:15.000 to 2015-04-30T15:24:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0741-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:25.741932", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0742-V1.0", "title": "RORSI_2546_2015_120_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-04-30T21:11:20.000 to 2015-05-01T07:30:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0742-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:26.685857", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0743-V1.0", "title": "RORSI_2547_2015_121_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-01T09:35:40.000 to 2015-05-01T12:13:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0743-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:27.682281", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0744-V1.0", "title": "RORSI_2548_2015_121_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-01T21:10:35.000 to 2015-05-01T23:43:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0744-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:28.688195", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0745-V1.0", "title": "RORSI_2549_2015_122_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T07:44:55.000 to 2015-05-02T12:44:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0745-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:29.690771", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0746-V1.0", "title": "RORSI_2550_2015_122_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T04:27:55.000 to 2015-05-02T07:27:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0746-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:30.694060", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0747-V1.0", "title": "RORSI_2551_2015_122_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-02T23:08:05.000 to 2015-05-03T05:49:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0747-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:31.696290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0748-V1.0", "title": "RORSI_2552_2015_123_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-03T22:32:40.000 to 2015-05-04T04:36:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0748-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:32.696775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0749-V1.0", "title": "RORSI_2553_2015_124_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T05:17:45.000 to 2015-05-04T09:17:04.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0749-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:33.695997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0750-V1.0", "title": "RORSI_2554_2015_124_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T09:34:00.000 to 2015-05-04T16:44:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0750-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:34.699750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0751-V1.0", "title": "RORSI_2555_2015_124_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-04T23:08:05.000 to 2015-05-05T07:21:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0751-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:35.744753", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0752-V1.0", "title": "RORSI_2556_2015_125_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-05T07:38:35.000 to 2015-05-05T09:56:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0752-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:36.789894", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0753-V1.0", "title": "RORSI_2557_2015_125_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-05T10:12:50.000 to 2015-05-05T12:25:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0753-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:37.801172", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0754-V1.0", "title": "RORSI_2558_2015_126_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-06T05:12:55.000 to 2015-05-06T12:24:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0754-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:38.716365", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0755-V1.0", "title": "RORSI_2559_2015_126_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-06T21:28:05.000 to 2015-05-07T02:36:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0755-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:39.713342", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0756-V1.0", "title": "RORSI_2560_2015_127_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-07T09:32:35.000 to 2015-05-07T18:44:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0756-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:40.721102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0757-V1.0", "title": "RORSI_2561_2015_128_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T03:08:05.000 to 2015-05-08T07:15:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0757-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:41.719694", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0758-V1.0", "title": "RORSI_2562_2015_128_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T09:42:10.000 to 2015-05-08T12:11:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0758-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:42.728136", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0759-V1.0", "title": "RORSI_2563_2015_128_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T12:27:55.000 to 2015-05-08T14:29:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0759-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:43.727615", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0760-V1.0", "title": "RORSI_2564_2015_128_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-08T23:08:05.000 to 2015-05-09T06:39:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0760-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:44.729640", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0761-V1.0", "title": "RORSI_2565_2015_129_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-09T10:02:05.000 to 2015-05-09T12:25:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0761-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:45.730570", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0762-V1.0", "title": "RORSI_2566_2015_129_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-09T21:05:35.000 to 2015-05-10T07:11:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0762-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:46.749164", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0763-V1.0", "title": "RORSI_2567_2015_130_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T07:28:15.000 to 2015-05-10T09:45:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0763-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:47.794793", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0764-V1.0", "title": "RORSI_2568_2015_130_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T10:02:30.000 to 2015-05-10T12:10:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0764-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:48.812690", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0765-V1.0", "title": "RORSI_2569_2015_130_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-10T22:16:40.000 to 2015-05-11T01:46:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0765-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:49.740490", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0766-V1.0", "title": "RORSI_2570_2015_131_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T05:01:10.000 to 2015-05-11T06:45:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0766-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:50.742845", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0767-V1.0", "title": "RORSI_2571_2015_131_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T09:31:00.000 to 2015-05-11T18:39:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0767-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:51.745750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0768-V1.0", "title": "RORSI_2572_2015_131_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-11T22:03:05.000 to 2015-05-12T07:07:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0768-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:52.745125", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0769-V1.0", "title": "RORSI_2573_2015_132_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-12T12:09:40.000 to 2015-05-12T15:17:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0769-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:53.747895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0770-V1.0", "title": "RORSI_2574_2015_132_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-12T21:04:00.000 to 2015-05-12T23:12:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0770-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:54.753210", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0771-V1.0", "title": "RORSI_2575_2015_133_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-13T05:03:05.000 to 2015-05-13T07:05:20.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0771-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:55.751011", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0772-V1.0", "title": "RORSI_2576_2015_133_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-13T09:30:20.000 to 2015-05-13T12:09:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0772-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:56.752798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0773-V1.0", "title": "RORSI_2577_2015_134_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T04:54:20.000 to 2015-05-14T06:45:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0773-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:57.760408", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0774-V1.0", "title": "RORSI_2578_2015_134_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T09:30:00.000 to 2015-05-14T19:20:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0774-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:58.806714", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0775-V1.0", "title": "RORSI_2579_2015_134_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-14T21:03:05.000 to 2015-05-15T00:11:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0775-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:52:59.820312", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0776-V1.0", "title": "RORSI_2580_2015_135_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T05:03:05.000 to 2015-05-15T07:01:20.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0776-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:00.762233", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0777-V1.0", "title": "RORSI_2581_2015_135_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T09:29:45.000 to 2015-05-15T12:08:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0777-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:01.767331", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0778-V1.0", "title": "RORSI_2582_2015_135_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T12:25:35.000 to 2015-05-15T15:16:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0778-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:02.766014", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0779-V1.0", "title": "RORSI_2583_2015_135_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-15T23:03:05.000 to 2015-05-16T06:59:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0779-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:03.770763", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0780-V1.0", "title": "RORSI_2584_2015_136_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T07:16:10.000 to 2015-05-16T09:12:33.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0780-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:04.773002", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0781-V1.0", "title": "RORSI_2585_2015_136_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T09:29:25.000 to 2015-05-16T12:08:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0781-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:05.777787", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0782-V1.0", "title": "RORSI_2586_2015_136_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-16T22:33:05.000 to 2015-05-17T04:14:43.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0782-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:06.771268", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0783-V1.0", "title": "RORSI_2587_2015_137_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T05:07:20.000 to 2015-05-17T06:57:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0783-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:07.781976", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0784-V1.0", "title": "RORSI_2588_2015_137_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T07:14:10.000 to 2015-05-17T09:12:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0784-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:08.783393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0785-V1.0", "title": "RORSI_2589_2015_137_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-17T09:29:10.000 to 2015-05-17T12:04:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0785-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:09.819480", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0786-V1.0", "title": "RORSI_2590_2015_138_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T04:45:20.000 to 2015-05-18T06:45:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0786-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:10.967308", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0787-V1.0", "title": "RORSI_2591_2015_138_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T09:29:00.000 to 2015-05-18T11:59:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0787-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:11.878108", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0788-V1.0", "title": "RORSI_2592_2015_138_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-18T21:01:25.000 to 2015-05-19T01:39:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0788-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:12.786969", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0789-V1.0", "title": "RORSI_2593_2015_139_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T00:01:25.000 to 2015-05-19T06:53:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0789-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:13.782987", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0791-V1.0", "title": "RORSI_2594_2015_139_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T12:57:05.000 to 2015-05-19T13:56:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0791-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:14.792856", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0792-V1.0", "title": "RORSI_2595_2015_139_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T14:09:30.000 to 2015-05-19T15:16:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0792-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:15.793356", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0793-V1.0", "title": "RORSI_2596_2015_139_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-19T21:02:05.000 to 2015-05-20T00:35:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0793-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:16.795518", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0794-V1.0", "title": "RORSI_2597_2015_140_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-20T04:55:05.000 to 2015-05-20T06:51:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0794-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:17.797030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0795-V1.0", "title": "RORSI_2598_2015_140_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-20T09:28:35.000 to 2015-05-20T12:06:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0795-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:18.802293", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0796-V1.0", "title": "RORSI_2599_2015_141_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T04:38:45.000 to 2015-05-21T09:11:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0796-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:19.802855", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0797-V1.0", "title": "RORSI_2600_2015_141_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T09:28:25.000 to 2015-05-21T17:30:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0797-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:20.824990", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0798-V1.0", "title": "RORSI_2601_2015_141_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-21T21:02:05.000 to 2015-05-22T00:31:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0798-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:21.876931", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0799-V1.0", "title": "RORSI_2602_2015_142_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T04:48:05.000 to 2015-05-22T06:47:42.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0799-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:22.891259", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0800-V1.0", "title": "RORSI_2603_2015_142_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T09:28:20.000 to 2015-05-22T11:54:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0800-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:23.810094", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0801-V1.0", "title": "RORSI_2604_2015_142_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-22T21:00:10.000 to 2015-05-22T23:09:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0801-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:24.814797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0802-V1.0", "title": "RORSI_2605_2015_143_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-23T05:05:50.000 to 2015-05-23T06:45:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0802-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:25.822382", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0803-V1.0", "title": "RORSI_2606_2015_143_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-23T09:28:10.000 to 2015-05-23T12:25:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0803-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:26.818497", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0804-V1.0", "title": "RORSI_2607_2015_144_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T07:00:45.000 to 2015-05-24T09:25:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0804-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:27.828044", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0805-V1.0", "title": "RORSI_2608_2015_144_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T04:43:05.000 to 2015-05-24T06:43:45.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0805-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:28.829379", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0806-V1.0", "title": "RORSI_2609_2015_144_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-24T09:42:05.000 to 2015-05-24T13:55:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0806-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:29.825378", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0807-V1.0", "title": "RORSI_2610_2015_145_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-25T12:03:05.000 to 2015-05-25T18:57:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0807-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:30.836135", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0808-V1.0", "title": "RORSI_2611_2015_145_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-25T20:59:25.000 to 2015-05-26T06:40:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0808-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:31.840950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0809-V1.0", "title": "RORSI_2612_2015_146_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T06:57:00.000 to 2015-05-26T09:11:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0809-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:32.887673", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0810-V1.0", "title": "RORSI_2613_2015_146_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T09:28:00.000 to 2015-05-26T11:54:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0810-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:33.903859", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0811-V1.0", "title": "RORSI_2614_2015_146_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-26T20:59:15.000 to 2015-05-27T05:59:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0811-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:34.834637", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0812-V1.0", "title": "RORSI_2615_2015_148_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T09:28:00.000 to 2015-05-28T13:51:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0812-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:35.837045", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0813-V1.0", "title": "RORSI_2616_2015_148_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T14:06:20.000 to 2015-05-28T15:57:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0813-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:36.840565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0814-V1.0", "title": "RORSI_2617_2015_148_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T16:13:20.000 to 2015-05-28T18:51:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0814-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:37.846220", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0815-V1.0", "title": "RORSI_2618_2015_148_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-28T20:58:50.000 to 2015-05-29T06:34:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0815-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:38.849504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0816-V1.0", "title": "RORSI_2619_2015_149_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-29T09:28:00.000 to 2015-05-29T11:34:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0816-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:39.852839", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0817-V1.0", "title": "RORSI_2620_2015_149_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-29T20:58:45.000 to 2015-05-30T04:35:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0817-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:40.852421", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0818-V1.0", "title": "RORSI_2621_2015_150_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-30T09:28:05.000 to 2015-05-30T11:35:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0818-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:41.854917", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0819-V1.0", "title": "RORSI_2622_2015_150_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-30T22:58:05.000 to 2015-05-31T04:54:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0819-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:42.861900", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0820-V1.0", "title": "RORSI_2623_2015_151_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-05-31T09:28:10.000 to 2015-05-31T12:01:26.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0820-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:43.898476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0821-V1.0", "title": "RORSI_2624_2015_152_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-01T09:28:15.000 to 2015-06-01T14:36:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0821-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:44.942814", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0822-V1.0", "title": "RORSI_2625_2015_152_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-01T20:58:30.000 to 2015-06-02T06:27:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0822-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:45.864073", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0823-V1.0", "title": "RORSI_2626_2015_153_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-02T09:28:25.000 to 2015-06-02T12:00:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0823-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:46.873015", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0824-V1.0", "title": "RORSI_2627_2015_154_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-03T09:28:35.000 to 2015-06-03T13:14:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0824-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:47.866049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0825-V1.0", "title": "RORSI_2628_2015_155_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-04T09:28:40.000 to 2015-06-04T18:37:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0825-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:48.871556", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0826-V1.0", "title": "RORSI_2629_2015_155_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-04T20:58:25.000 to 2015-06-05T06:22:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0826-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:49.874261", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0827-V1.0", "title": "RORSI_2630_2015_156_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-05T09:28:55.000 to 2015-06-05T17:10:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0827-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:50.875421", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0828-V1.0", "title": "RORSI_2631_2015_156_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-05T22:58:05.000 to 2015-06-05T23:40:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0828-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:51.881267", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0829-V1.0", "title": "RORSI_2632_2015_157_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-06T09:29:05.000 to 2015-06-06T15:05:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0829-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:52.891016", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0830-V1.0", "title": "RORSI_2633_2015_157_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-06T22:58:05.000 to 2015-06-07T06:18:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0830-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:53.879810", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0831-V1.0", "title": "RORSI_2634_2015_158_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-07T09:29:20.000 to 2015-06-07T11:19:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0831-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:54.909225", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0832-V1.0", "title": "RORSI_2635_2015_159_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T09:29:35.000 to 2015-06-08T11:17:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0832-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:55.958251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0833-V1.0", "title": "RORSI_2636_2015_159_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T16:57:05.000 to 2015-06-08T18:30:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0833-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:56.969269", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0834-V1.0", "title": "RORSI_2637_2015_159_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-08T20:58:40.000 to 2015-06-09T06:15:34.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0834-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:57.890216", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0835-V1.0", "title": "RORSI_2638_2015_160_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-09T20:58:50.000 to 2015-06-10T00:19:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0835-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:58.891462", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0836-V1.0", "title": "RORSI_2639_2015_161_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-10T04:56:20.000 to 2015-06-10T06:13:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0836-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:53:59.890995", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0837-V1.0", "title": "RORSI_2640_2015_161_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-10T16:12:05.000 to 2015-06-10T18:26:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0837-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:00.890837", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0838-V1.0", "title": "RORSI_2641_2015_162_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-11T04:03:15.000 to 2015-06-11T06:04:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0838-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:01.896652", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0839-V1.0", "title": "RORSI_2642_2015_162_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-11T20:59:05.000 to 2015-06-12T06:10:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0839-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:02.901049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0840-V1.0", "title": "RORSI_2643_2015_163_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-12T20:59:20.000 to 2015-06-13T06:09:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0840-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:03.899409", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0841-V1.0", "title": "RORSI_2644_2015_164_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-13T22:58:05.000 to 2015-06-14T06:07:43.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0841-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:04.904408", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0842-V1.0", "title": "RORSI_2645_2015_165_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-14T12:27:05.000 to 2015-06-14T14:25:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0842-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:05.917009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0843-V1.0", "title": "RORSI_2646_2015_166_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-15T03:50:25.000 to 2015-06-15T11:09:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0843-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:06.968261", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0844-V1.0", "title": "RORSI_2647_2015_166_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-15T21:00:00.000 to 2015-06-15T23:45:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0844-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:07.977593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0845-V1.0", "title": "RORSI_2648_2015_167_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-16T03:48:45.000 to 2015-06-16T05:15:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0845-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:08.911961", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0846-V1.0", "title": "RORSI_2649_2015_167_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-16T10:32:05.000 to 2015-06-16T16:50:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0846-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:09.922965", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0847-V1.0", "title": "RORSI_2650_2015_168_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-17T04:56:50.000 to 2015-06-17T15:21:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0847-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:10.914484", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0848-V1.0", "title": "RORSI_2651_2015_169_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-18T07:03:30.000 to 2015-06-18T15:21:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0848-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:12.173947", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0849-V1.0", "title": "RORSI_2652_2015_170_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-19T03:44:00.000 to 2015-06-19T11:14:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0849-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:13.097217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0850-V1.0", "title": "RORSI_2653_2015_171_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-20T03:42:25.000 to 2015-06-20T09:23:40.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0850-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:14.093406", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0851-V1.0", "title": "RORSI_2654_2015_171_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-20T21:01:35.000 to 2015-06-21T05:57:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0851-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:15.100997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0852-V1.0", "title": "RORSI_2655_2015_172_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-21T21:02:00.000 to 2015-06-21T22:40:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0852-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:16.106583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0853-V1.0", "title": "RORSI_2656_2015_173_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-22T09:35:55.000 to 2015-06-22T18:06:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0853-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:17.109526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0854-V1.0", "title": "RORSI_2657_2015_173_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-22T21:05:55.000 to 2015-06-23T04:20:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0854-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:18.108713", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0855-V1.0", "title": "RORSI_2658_2015_174_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-23T21:02:50.000 to 2015-06-24T00:21:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0855-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:19.111718", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0856-V1.0", "title": "RORSI_2659_2015_175_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-24T11:42:40.000 to 2015-06-24T13:49:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0856-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:20.113134", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0857-V1.0", "title": "RORSI_2660_2015_176_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-25T21:03:45.000 to 2015-06-26T00:23:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0857-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:21.119828", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0859-V1.0", "title": "RORSI_2661_2015_177_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-26T11:38:20.000 to 2015-06-26T13:54:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0859-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:22.167587", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0860-V1.0", "title": "RORSI_2662_2015_177_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-26T21:04:15.000 to 2015-06-27T00:19:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0860-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:23.183182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0861-V1.0", "title": "RORSI_2663_2015_178_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-27T05:16:20.000 to 2015-06-27T05:49:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0861-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:24.121070", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0862-V1.0", "title": "RORSI_2664_2015_178_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-27T21:34:25.000 to 2015-06-28T05:48:20.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0862-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:25.125824", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0863-V1.0", "title": "RORSI_2665_2015_179_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-28T06:05:20.000 to 2015-06-28T16:06:39.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0863-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:26.127939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0864-V1.0", "title": "RORSI_2666_2015_179_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-28T21:34:22.000 to 2015-06-28T23:15:35.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0864-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:27.130875", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0865-V1.0", "title": "RORSI_2667_2015_180_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T14:48:05.000 to 2015-06-29T16:03:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0865-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:28.131985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0866-V1.0", "title": "RORSI_2668_2015_180_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T16:23:30.000 to 2015-06-29T17:56:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0866-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:29.133016", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0867-V1.0", "title": "RORSI_2669_2015_180_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-29T21:05:50.000 to 2015-06-30T05:46:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0867-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:30.141063", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0868-V1.0", "title": "RORSI_2670_2015_181_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-30T10:12:15.000 to 2015-06-30T11:37:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0868-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:31.136176", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC2-0869-V1.0", "title": "RORSI_2671_2015_181_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 2 (ESC2). This is a Global Gravity measurement from 2015-06-30T22:02:05.000 to 2015-06-30T23:30:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc2-0869-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:32.138031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0870-V1.0", "title": "RORSI_2672_2015_182_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-01T03:27:20.000 to 2015-07-01T04:55:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0870-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:33.181975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0871-V1.0", "title": "RORSI_2673_2015_182_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-01T21:06:55.000 to 2015-07-02T03:00:23.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0871-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:34.227221", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0872-V1.0", "title": "RORSI_2674_2015_184_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T03:25:00.000 to 2015-07-03T05:29:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0872-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:35.146127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0873-V1.0", "title": "RORSI_2675_2015_184_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T14:48:05.000 to 2015-07-03T17:51:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0873-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:36.146549", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0874-V1.0", "title": "RORSI_2676_2015_184_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-03T21:08:05.000 to 2015-07-04T00:18:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0874-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:37.152050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0875-V1.0", "title": "RORSI_2677_2015_185_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T04:57:45.000 to 2015-07-04T05:41:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0875-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:38.153645", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0876-V1.0", "title": "RORSI_2678_2015_185_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T10:08:10.000 to 2015-07-04T13:09:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0876-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:39.148106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0877-V1.0", "title": "RORSI_2679_2015_185_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-04T21:08:45.000 to 2015-07-05T03:10:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0877-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:40.157199", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0878-V1.0", "title": "RORSI_2680_2015_186_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-05T21:57:05.000 to 2015-07-06T00:09:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0878-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:41.159149", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0879-V1.0", "title": "RORSI_2681_2015_187_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-06T03:21:40.000 to 2015-07-06T09:47:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0879-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:42.160009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0880-V1.0", "title": "RORSI_2682_2015_188_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-07T03:20:40.000 to 2015-07-07T05:19:53.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0880-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:43.163967", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0881-V1.0", "title": "RORSI_2683_2015_189_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-08T09:47:40.000 to 2015-07-08T17:45:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0881-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:44.186911", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0882-V1.0", "title": "RORSI_2684_2015_190_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T03:50:00.000 to 2015-07-09T05:04:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0882-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:45.237410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0883-V1.0", "title": "RORSI_2685_2015_190_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T08:02:05.000 to 2015-07-09T10:40:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0883-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:46.253134", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0884-V1.0", "title": "RORSI_2686_2015_190_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-09T14:50:00.000 to 2015-07-09T17:44:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0884-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:47.170469", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0885-V1.0", "title": "RORSI_2687_2015_191_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T00:43:55.000 to 2015-07-10T04:04:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0885-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:48.173943", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0886-V1.0", "title": "RORSI_2688_2015_191_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T16:46:05.000 to 2015-07-10T17:43:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0886-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:49.174477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0887-V1.0", "title": "RORSI_2689_2015_191_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-10T21:12:40.000 to 2015-07-11T00:17:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0887-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:50.179128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0888-V1.0", "title": "RORSI_2690_2015_192_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T01:32:05.000 to 2015-07-11T02:27:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0888-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:51.181232", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0889-V1.0", "title": "RORSI_2691_2015_192_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T05:49:46.000 to 2015-07-11T06:20:46.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0889-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:52.283933", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0890-V1.0", "title": "RORSI_2692_2015_192_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-11T15:05:15.000 to 2015-07-11T17:41:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0890-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:53.186127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0892-V1.0", "title": "RORSI_2693_2015_193_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-12T13:01:50.000 to 2015-07-12T15:34:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0892-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:54.183810", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0893-V1.0", "title": "RORSI_2694_2015_193_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-12T21:14:00.000 to 2015-07-13T03:44:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0893-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:55.197662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0894-V1.0", "title": "RORSI_2695_2015_194_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-13T09:52:00.000 to 2015-07-13T17:40:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0894-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:56.247907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0895-V1.0", "title": "RORSI_2696_2015_194_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-13T21:14:45.000 to 2015-07-14T04:39:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0895-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:57.258966", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0896-V1.0", "title": "RORSI_2697_2015_195_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-14T11:02:05.000 to 2015-07-14T14:20:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0896-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:58.192160", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0897-V1.0", "title": "RORSI_2698_2015_195_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-14T21:15:25.000 to 2015-07-15T03:34:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0897-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:54:59.195217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0898-V1.0", "title": "RORSI_2699_2015_196_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-15T09:53:45.000 to 2015-07-15T16:53:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0898-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:00.196741", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0899-V1.0", "title": "RORSI_2700_2015_196_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-15T21:16:05.000 to 2015-07-16T04:35:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0899-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:01.202461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0900-V1.0", "title": "RORSI_2701_2015_197_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T09:54:35.000 to 2015-07-16T11:09:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0900-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:02.204327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0901-V1.0", "title": "RORSI_2702_2015_197_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T14:02:05.000 to 2015-07-16T16:52:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0901-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:03.205713", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0902-V1.0", "title": "RORSI_2703_2015_197_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-16T21:16:50.000 to 2015-07-17T02:59:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0902-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:04.201859", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0903-V1.0", "title": "RORSI_2704_2015_198_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-17T10:03:05.000 to 2015-07-17T16:02:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0903-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:05.209002", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0904-V1.0", "title": "RORSI_2705_2015_198_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-17T16:23:20.000 to 2015-07-17T17:36:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0904-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:06.212754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0905-V1.0", "title": "RORSI_2706_2015_199_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-18T21:18:10.000 to 2015-07-19T02:54:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0905-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:07.256654", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0906-V1.0", "title": "RORSI_2707_2015_200_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-19T10:43:20.000 to 2015-07-19T11:44:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0906-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:08.270259", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0907-V1.0", "title": "RORSI_2708_2015_200_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-19T21:18:55.000 to 2015-07-20T03:29:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0907-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:09.217057", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0908-V1.0", "title": "RORSI_2709_2015_201_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-20T10:42:40.000 to 2015-07-20T17:34:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0908-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:10.217203", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0909-V1.0", "title": "RORSI_2710_2015_202_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T07:28:05.000 to 2015-07-21T09:41:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0909-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:11.222698", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0910-V1.0", "title": "RORSI_2711_2015_202_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T09:58:50.000 to 2015-07-21T12:54:13.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0910-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:12.223880", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0911-V1.0", "title": "RORSI_2712_2015_202_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-21T15:03:05.000 to 2015-07-21T17:33:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0911-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:13.226828", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0912-V1.0", "title": "RORSI_2713_2015_203_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-22T15:03:05.000 to 2015-07-22T17:32:34.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0912-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:14.231937", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0913-V1.0", "title": "RORSI_2714_2015_203_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-22T21:21:00.000 to 2015-07-23T03:39:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0913-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:15.234205", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0914-V1.0", "title": "RORSI_2715_2015_204_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-23T10:00:30.000 to 2015-07-23T11:54:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0914-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:16.229662", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0915-V1.0", "title": "RORSI_2716_2015_204_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-23T16:03:05.000 to 2015-07-23T17:30:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0915-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:17.240397", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0916-V1.0", "title": "RORSI_2717_2015_205_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T13:23:05.000 to 2015-07-24T14:53:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0916-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:18.274474", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0917-V1.0", "title": "RORSI_2718_2015_205_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T15:59:30.000 to 2015-07-24T17:31:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0917-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:19.318748", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0918-V1.0", "title": "RORSI_2719_2015_205_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-24T21:22:20.000 to 2015-07-25T04:37:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0918-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:20.333415", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0919-V1.0", "title": "RORSI_2720_2015_206_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-25T15:57:30.000 to 2015-07-25T17:35:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0919-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:21.238352", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0920-V1.0", "title": "RORSI_2721_2015_206_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-25T21:22:55.000 to 2015-07-26T04:40:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0920-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:22.249585", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0921-V1.0", "title": "RORSI_2722_2015_207_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-26T10:17:05.000 to 2015-07-26T14:10:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0921-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:23.253029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0922-V1.0", "title": "RORSI_2723_2015_208_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T03:06:45.000 to 2015-07-27T10:23:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0922-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:24.252555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0923-V1.0", "title": "RORSI_2724_2015_208_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T10:40:15.000 to 2015-07-27T17:29:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0923-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:25.249457", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0924-V1.0", "title": "RORSI_2725_2015_208_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-27T21:24:15.000 to 2015-07-28T05:24:44.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0924-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:26.254831", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0925-V1.0", "title": "RORSI_2726_2015_209_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-28T10:40:10.000 to 2015-07-28T17:29:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0925-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:27.254530", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0926-V1.0", "title": "RORSI_2727_2015_209_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-28T21:24:50.000 to 2015-07-29T00:24:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0926-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:28.261986", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0927-V1.0", "title": "RORSI_2728_2015_210_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-29T10:40:15.000 to 2015-07-29T17:28:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0927-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:29.279582", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0928-V1.0", "title": "RORSI_2729_2015_211_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T03:05:45.000 to 2015-07-30T10:23:20.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0928-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:30.330950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0929-V1.0", "title": "RORSI_2730_2015_211_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T10:40:20.000 to 2015-07-30T17:28:34.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0929-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:31.341986", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0930-V1.0", "title": "RORSI_2731_2015_211_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-30T21:26:00.000 to 2015-07-31T05:23:46.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0930-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:32.274446", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0931-V1.0", "title": "RORSI_2732_2015_212_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-31T10:40:20.000 to 2015-07-31T17:00:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0931-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:33.267395", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0932-V1.0", "title": "RORSI_2733_2015_212_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-07-31T21:40:40.000 to 2015-08-01T04:37:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0932-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:34.275751", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0933-V1.0", "title": "RORSI_2734_2015_213_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-01T10:40:25.000 to 2015-08-01T17:27:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0933-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:35.274431", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0934-V1.0", "title": "RORSI_2735_2015_214_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T03:05:00.000 to 2015-08-02T09:50:46.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0934-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:36.286316", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0935-V1.0", "title": "RORSI_2736_2015_214_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T10:07:45.000 to 2015-08-02T17:27:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0935-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:37.279799", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0936-V1.0", "title": "RORSI_2737_2015_214_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-02T21:27:40.000 to 2015-08-03T05:23:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0936-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:38.286731", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0937-V1.0", "title": "RORSI_2738_2015_215_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T10:08:20.000 to 2015-08-03T13:33:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0937-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:39.284472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0938-V1.0", "title": "RORSI_2739_2015_215_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T14:38:45.000 to 2015-08-03T15:58:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0938-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:40.289017", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0939-V1.0", "title": "RORSI_2740_2015_215_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T16:20:45.000 to 2015-08-03T17:27:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0939-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:41.344456", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0940-V1.0", "title": "RORSI_2741_2015_215_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-03T21:28:10.000 to 2015-08-04T05:22:56.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0940-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:42.353479", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0941-V1.0", "title": "RORSI_2742_2015_216_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-04T10:08:55.000 to 2015-08-04T17:27:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0941-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:43.300974", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0942-V1.0", "title": "RORSI_2743_2015_217_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T03:04:30.000 to 2015-08-05T04:37:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0942-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:44.302935", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0943-V1.0", "title": "RORSI_2744_2015_217_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T04:58:45.000 to 2015-08-05T09:52:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0943-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:45.300138", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0944-V1.0", "title": "RORSI_2745_2015_217_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T10:09:25.000 to 2015-08-05T17:26:49.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0944-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:46.304842", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0945-V1.0", "title": "RORSI_2746_2015_217_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-05T21:29:05.000 to 2015-08-06T05:22:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0945-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:47.312632", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0946-V1.0", "title": "RORSI_2747_2015_218_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-06T10:10:00.000 to 2015-08-06T17:26:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0946-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:48.304331", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0947-V1.0", "title": "RORSI_2748_2015_218_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-06T21:29:30.000 to 2015-08-07T05:22:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0947-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:49.306658", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0948-V1.0", "title": "RORSI_2749_2015_219_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-07T10:10:25.000 to 2015-08-07T17:26:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0948-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:50.319248", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0949-V1.0", "title": "RORSI_2750_2015_220_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T03:33:40.000 to 2015-08-08T04:38:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0949-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:51.320014", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0950-V1.0", "title": "RORSI_2751_2015_220_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T05:00:20.000 to 2015-08-08T15:52:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0950-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:52.350555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0951-V1.0", "title": "RORSI_2752_2015_220_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-08T21:30:20.000 to 2015-08-09T05:22:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0951-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:53.401107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0952-V1.0", "title": "RORSI_2753_2015_221_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-09T10:11:20.000 to 2015-08-09T17:26:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0952-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:54.409907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0953-V1.0", "title": "RORSI_2754_2015_221_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-09T21:30:40.000 to 2015-08-10T05:22:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0953-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:55.322804", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0954-V1.0", "title": "RORSI_2755_2015_222_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-10T10:11:40.000 to 2015-08-10T17:26:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0954-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:56.322524", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0955-V1.0", "title": "RORSI_2756_2015_223_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-11T03:04:05.000 to 2015-08-11T15:53:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0955-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:57.326126", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0956-V1.0", "title": "RORSI_2757_2015_223_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-11T21:31:15.000 to 2015-08-12T00:17:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0956-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:58.331206", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0957-V1.0", "title": "RORSI_2758_2015_224_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-12T10:12:20.000 to 2015-08-12T17:26:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0957-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:55:59.332171", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0958-V1.0", "title": "RORSI_2759_2015_224_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-12T21:31:30.000 to 2015-08-13T05:22:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0958-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:00.334914", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0959-V1.0", "title": "RORSI_2760_2015_225_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-13T10:12:40.000 to 2015-08-13T17:26:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0959-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:01.334590", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0960-V1.0", "title": "RORSI_2761_2015_226_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T03:04:05.000 to 2015-08-14T09:55:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0960-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:02.338341", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0961-V1.0", "title": "RORSI_2762_2015_226_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T10:12:50.000 to 2015-08-14T17:28:23.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0961-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:03.356099", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0962-V1.0", "title": "RORSI_2763_2015_226_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-14T21:31:55.000 to 2015-08-15T04:37:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0962-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:04.403947", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0963-V1.0", "title": "RORSI_2764_2015_227_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-15T10:13:05.000 to 2015-08-15T15:29:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0963-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:05.420029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0964-V1.0", "title": "RORSI_2765_2015_227_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-15T21:32:05.000 to 2015-08-16T05:22:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0964-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:06.350783", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0965-V1.0", "title": "RORSI_2766_2015_228_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-16T10:47:10.000 to 2015-08-16T17:26:13.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0965-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:07.350443", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0966-V1.0", "title": "RORSI_2767_2015_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T03:04:20.000 to 2015-08-17T09:56:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0966-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:08.351081", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0967-V1.0", "title": "RORSI_2768_2015_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T10:13:20.000 to 2015-08-17T17:26:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0967-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:09.352312", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0968-V1.0", "title": "RORSI_2769_2015_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-17T21:32:20.000 to 2015-08-18T03:40:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0968-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:10.351892", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0969-V1.0", "title": "RORSI_2770_2015_230_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-18T10:13:25.000 to 2015-08-18T17:26:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0969-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:11.355403", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0970-V1.0", "title": "RORSI_2771_2015_230_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-18T21:32:25.000 to 2015-08-19T00:17:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0970-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:12.363785", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0971-V1.0", "title": "RORSI_2772_2015_231_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-19T10:13:25.000 to 2015-08-19T17:26:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0971-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:13.363691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0972-V1.0", "title": "RORSI_2773_2015_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T03:04:35.000 to 2015-08-20T09:56:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0972-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:14.370769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0973-V1.0", "title": "RORSI_2774_2015_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T10:13:25.000 to 2015-08-20T14:42:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0973-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:15.414757", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0974-V1.0", "title": "RORSI_2775_2015_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T15:27:50.000 to 2015-08-20T17:26:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0974-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:16.432635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0975-V1.0", "title": "RORSI_2776_2015_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-20T21:32:25.000 to 2015-08-21T05:23:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0975-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:17.371251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0976-V1.0", "title": "RORSI_2777_2015_233_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T10:13:20.000 to 2015-08-21T15:59:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0976-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:18.374751", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0977-V1.0", "title": "RORSI_2778_2015_233_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T16:21:50.000 to 2015-08-21T17:26:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0977-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:19.375650", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0978-V1.0", "title": "RORSI_2779_2015_233_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-21T21:32:20.000 to 2015-08-22T04:37:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0978-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:20.376907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0979-V1.0", "title": "RORSI_2780_2015_234_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-22T10:13:15.000 to 2015-08-22T17:27:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0979-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:21.376805", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0980-V1.0", "title": "RORSI_2781_2015_235_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-23T03:05:00.000 to 2015-08-23T09:56:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0980-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:22.379099", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0981-V1.0", "title": "RORSI_2782_2015_235_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-23T10:13:05.000 to 2015-08-23T17:27:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0981-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:23.383102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0982-V1.0", "title": "RORSI_2783_2015_236_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-24T03:05:10.000 to 2015-08-24T09:55:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0982-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:24.388362", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0983-V1.0", "title": "RORSI_2784_2015_236_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-24T10:12:55.000 to 2015-08-24T17:27:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0983-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:25.384022", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0984-V1.0", "title": "RORSI_2785_2015_237_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-25T03:05:20.000 to 2015-08-25T09:55:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0984-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:26.426330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0985-V1.0", "title": "RORSI_2786_2015_237_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-25T10:12:40.000 to 2015-08-25T16:41:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0985-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:27.476743", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0986-V1.0", "title": "RORSI_2787_2015_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-26T03:05:30.000 to 2015-08-26T09:55:28.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0986-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:28.491866", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0987-V1.0", "title": "RORSI_2788_2015_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-26T10:12:25.000 to 2015-08-26T17:27:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0987-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:29.402981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0988-V1.0", "title": "RORSI_2789_2015_239_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-27T03:05:35.000 to 2015-08-27T09:55:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0988-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:30.401088", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0989-V1.0", "title": "RORSI_2790_2015_239_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-27T10:12:05.000 to 2015-08-27T17:28:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0989-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:31.408305", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0990-V1.0", "title": "RORSI_2791_2015_240_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-28T03:05:45.000 to 2015-08-28T09:54:48.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0990-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:32.413769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0991-V1.0", "title": "RORSI_2792_2015_240_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-28T10:11:45.000 to 2015-08-28T17:28:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0991-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:33.531312", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0992-V1.0", "title": "RORSI_2793_2015_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T03:05:55.000 to 2015-08-29T05:45:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0992-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:34.415437", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0993-V1.0", "title": "RORSI_2794_2015_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T06:06:50.000 to 2015-08-29T09:54:24.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0993-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:35.417601", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0994-V1.0", "title": "RORSI_2795_2015_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T10:11:20.000 to 2015-08-29T17:28:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0994-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:36.419257", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0995-V1.0", "title": "RORSI_2796_2015_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-29T21:30:30.000 to 2015-08-30T01:24:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0995-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:37.437356", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0996-V1.0", "title": "RORSI_2797_2015_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T10:10:55.000 to 2015-08-30T10:59:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0996-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:38.484642", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0997-V1.0", "title": "RORSI_2798_2015_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T11:21:50.000 to 2015-08-30T17:28:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0997-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:39.501543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0998-V1.0", "title": "RORSI_2799_2015_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T01:45:50.000 to 2015-08-30T05:24:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0998-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:40.430846", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-0999-V1.0", "title": "RORSI_2800_2015_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-30T21:30:05.000 to 2015-08-31T03:32:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-0999-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:41.433779", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1000-V1.0", "title": "RORSI_2801_2015_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T03:53:50.000 to 2015-08-31T05:24:35.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1000-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:42.432382", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1001-V1.0", "title": "RORSI_2802_2015_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T10:10:25.000 to 2015-08-31T11:51:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1001-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:43.432148", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1002-V1.0", "title": "RORSI_2803_2015_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-08-31T14:33:50.000 to 2015-08-31T16:51:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1002-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:44.435361", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1003-V1.0", "title": "RORSI_2804_2015_244_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-01T03:06:25.000 to 2015-09-01T09:52:56.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1003-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:45.439653", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1004-V1.0", "title": "RORSI_2805_2015_244_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-01T10:09:50.000 to 2015-09-01T17:29:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1004-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:46.444232", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1005-V1.0", "title": "RORSI_2806_2015_245_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T03:06:35.000 to 2015-09-02T04:37:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1005-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:47.442723", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1006-V1.0", "title": "RORSI_2807_2015_245_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T04:58:50.000 to 2015-09-02T09:52:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1006-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:48.444271", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1007-V1.0", "title": "RORSI_2808_2015_245_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T10:09:15.000 to 2015-09-02T17:29:39.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1007-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:49.496895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1008-V1.0", "title": "RORSI_2809_2015_245_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-02T21:28:40.000 to 2015-09-03T05:25:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:50.509852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1009-V1.0", "title": "RORSI_2810_2015_246_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-03T10:08:40.000 to 2015-09-03T17:29:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:51.451251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1011-V1.0", "title": "RORSI_2811_2015_247_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T03:06:50.000 to 2015-09-04T09:51:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:52.450979", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1012-V1.0", "title": "RORSI_2812_2015_247_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T10:08:00.000 to 2015-09-04T14:51:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1012-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:53.462873", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1013-V1.0", "title": "RORSI_2813_2015_247_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T15:12:50.000 to 2015-09-04T17:27:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1013-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:54.460687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1014-V1.0", "title": "RORSI_2814_2015_247_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-04T21:27:30.000 to 2015-09-05T00:17:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:55.457249", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1015-V1.0", "title": "RORSI_2815_2015_248_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-05T10:07:15.000 to 2015-09-05T17:30:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:56.466164", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1016-V1.0", "title": "RORSI_2816_2015_248_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-05T21:26:55.000 to 2015-09-06T04:55:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1016-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:57.466303", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1017-V1.0", "title": "RORSI_2817_2015_249_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-06T10:06:30.000 to 2015-09-06T17:30:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1017-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:58.467679", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1018-V1.0", "title": "RORSI_2818_2015_250_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-07T03:07:15.000 to 2015-09-07T15:48:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1018-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:56:59.469016", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1019-V1.0", "title": "RORSI_2819_2015_250_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-07T21:25:30.000 to 2015-09-08T05:25:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1019-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:00.504028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1020-V1.0", "title": "RORSI_2820_2015_251_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-08T10:04:55.000 to 2015-09-08T17:30:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1020-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:01.552785", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1021-V1.0", "title": "RORSI_2821_2015_251_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-08T21:24:45.000 to 2015-09-09T00:17:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1021-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:02.568527", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1022-V1.0", "title": "RORSI_2822_2015_252_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-09T10:04:00.000 to 2015-09-09T17:31:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1022-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:03.480923", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1023-V1.0", "title": "RORSI_2823_2015_253_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-10T03:07:35.000 to 2015-09-10T15:46:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1023-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:04.482239", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1024-V1.0", "title": "RORSI_2824_2015_253_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-10T21:23:10.000 to 2015-09-11T05:26:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:05.481477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1025-V1.0", "title": "RORSI_2825_2015_254_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T10:02:10.000 to 2015-09-11T17:31:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1025-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:06.487963", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1026-V1.0", "title": "RORSI_2826_2015_254_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T16:31:41.000 to 2015-09-11T17:31:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1026-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:07.488046", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1027-V1.0", "title": "RORSI_2827_2015_254_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-11T21:22:20.000 to 2015-09-12T04:45:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1027-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:08.490193", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1028-V1.0", "title": "RORSI_2828_2015_255_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-12T10:01:10.000 to 2015-09-12T17:31:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1028-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:09.494327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1029-V1.0", "title": "RORSI_2829_2015_256_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T03:07:50.000 to 2015-09-13T09:43:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1029-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:10.489190", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1030-V1.0", "title": "RORSI_2830_2015_256_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T10:00:05.000 to 2015-09-13T17:31:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1030-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:11.513204", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1031-V1.0", "title": "RORSI_2831_2015_256_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-13T21:20:30.000 to 2015-09-14T05:26:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1031-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:12.564247", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1032-V1.0", "title": "RORSI_2832_2015_257_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-14T09:59:05.000 to 2015-09-14T17:29:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1032-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:13.580092", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1033-V1.0", "title": "RORSI_2833_2015_257_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-14T21:19:30.000 to 2015-09-15T05:26:13.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1033-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:14.506592", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1034-V1.0", "title": "RORSI_2834_2015_258_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-15T09:57:55.000 to 2015-09-15T17:27:20.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1034-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:15.502035", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1035-V1.0", "title": "RORSI_2835_2015_258_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-15T21:18:30.000 to 2015-09-16T00:17:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1035-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:16.509323", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1036-V1.0", "title": "RORSI_2836_2015_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T07:37:10.000 to 2015-09-16T13:58:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1036-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:17.509270", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1037-V1.0", "title": "RORSI_2837_2015_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T14:42:05.000 to 2015-09-16T17:32:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1037-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:18.513286", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1038-V1.0", "title": "RORSI_2838_2015_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-16T21:17:30.000 to 2015-09-17T05:26:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1038-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:19.512405", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1039-V1.0", "title": "RORSI_2839_2015_260_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-17T09:41:30.000 to 2015-09-17T15:39:26.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1039-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:20.513128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1040-V1.0", "title": "RORSI_2840_2015_260_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-17T21:16:25.000 to 2015-09-18T05:26:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1040-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:21.519963", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1041-V1.0", "title": "RORSI_2841_2015_261_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-18T09:54:25.000 to 2015-09-18T17:32:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1041-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:22.526073", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1042-V1.0", "title": "RORSI_2842_2015_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T04:58:45.000 to 2015-09-19T10:02:44.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1042-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:23.574629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1043-V1.0", "title": "RORSI_2843_2015_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T10:19:40.000 to 2015-09-19T17:32:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1043-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:24.589798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1044-V1.0", "title": "RORSI_2844_2015_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-19T21:14:10.000 to 2015-09-20T05:26:05.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1044-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:25.526078", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1045-V1.0", "title": "RORSI_2845_2015_263_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-20T10:19:10.000 to 2015-09-20T17:32:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1045-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:26.529723", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1046-V1.0", "title": "RORSI_2864_2015_271_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T09:40:20.000 to 2015-09-28T15:10:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1046-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:27.533276", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1047-V1.0", "title": "RORSI_2847_2015_264_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-21T09:50:30.000 to 2015-09-21T17:32:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1047-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:28.533099", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1048-V1.0", "title": "RORSI_2848_2015_265_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-22T03:07:35.000 to 2015-09-22T09:32:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1048-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:29.543736", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1049-V1.0", "title": "RORSI_2849_2015_265_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-22T09:49:10.000 to 2015-09-22T17:32:50.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1049-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:30.536476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1050-V1.0", "title": "RORSI_2850_2015_266_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T04:58:40.000 to 2015-09-23T09:30:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1050-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:31.549084", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1051-V1.0", "title": "RORSI_2851_2015_266_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T09:47:45.000 to 2015-09-23T17:32:52.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1051-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:32.544730", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1052-V1.0", "title": "RORSI_2852_2015_266_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-23T22:02:05.000 to 2015-09-23T23:45:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1052-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:33.544380", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1053-V1.0", "title": "RORSI_2853_2015_267_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T03:07:20.000 to 2015-09-24T09:30:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1053-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:34.578479", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1054-V1.0", "title": "RORSI_2854_2015_267_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T09:47:05.000 to 2015-09-24T17:32:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1054-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:35.632208", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1055-V1.0", "title": "RORSI_2855_2015_267_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-24T22:17:05.000 to 2015-09-24T23:45:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1055-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:36.645347", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1056-V1.0", "title": "RORSI_2856_2015_268_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-25T03:07:15.000 to 2015-09-25T09:27:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1056-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:37.558683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1057-V1.0", "title": "RORSI_2857_2015_268_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-25T09:44:50.000 to 2015-09-25T17:32:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1057-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:38.560401", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1058-V1.0", "title": "RORSI_2858_2015_269_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T03:07:05.000 to 2015-09-26T09:27:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1058-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:39.563317", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1059-V1.0", "title": "RORSI_2859_2015_269_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T09:44:15.000 to 2015-09-26T17:32:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1059-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:40.560507", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1060-V1.0", "title": "RORSI_2860_2015_269_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-26T21:05:10.000 to 2015-09-27T05:25:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1060-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:41.573133", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1061-V1.0", "title": "RORSI_2861_2015_270_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-27T06:38:10.000 to 2015-09-27T09:07:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1061-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:42.567180", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1062-V1.0", "title": "RORSI_2862_2015_270_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-27T09:41:50.000 to 2015-09-27T17:32:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1062-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:43.571477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1063-V1.0", "title": "RORSI_2863_2015_271_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T03:06:40.000 to 2015-09-28T09:23:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1063-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:44.572946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1064-V1.0", "title": "RORSI_2846_2015_264_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-21T03:07:45.000 to 2015-09-21T09:33:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1064-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:45.589853", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1065-V1.0", "title": "RORSI_2865_2015_271_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-28T21:02:20.000 to 2015-09-29T05:24:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1065-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:46.643059", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1066-V1.0", "title": "RORSI_2866_2015_272_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-29T10:16:35.000 to 2015-09-29T17:30:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1066-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:47.657332", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1067-V1.0", "title": "RORSI_2867_2015_272_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-29T21:00:55.000 to 2015-09-30T00:17:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1067-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:48.584581", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1068-V1.0", "title": "RORSI_2868_2015_273_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-30T05:41:10.000 to 2015-09-30T07:04:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1068-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:49.573203", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1069-V1.0", "title": "RORSI_2869_2015_273_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-09-30T10:16:30.000 to 2015-09-30T17:29:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1069-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:50.585815", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1070-V1.0", "title": "RORSI_2870_2015_274_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T03:05:50.000 to 2015-10-01T09:59:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1070-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:51.586128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1071-V1.0", "title": "RORSI_2871_2015_274_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T10:16:25.000 to 2015-10-01T17:31:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1071-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:52.587888", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1072-V1.0", "title": "RORSI_2872_2015_274_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-01T20:57:55.000 to 2015-10-02T02:14:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1072-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:53.588051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1073-V1.0", "title": "RORSI_2873_2015_275_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-02T10:16:25.000 to 2015-10-02T17:31:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1073-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:54.587376", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1074-V1.0", "title": "RORSI_2874_2015_275_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-02T21:13:05.000 to 2015-10-03T00:17:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1074-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:55.590310", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1075-V1.0", "title": "RORSI_2875_2015_276_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-03T10:16:25.000 to 2015-10-03T17:31:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1075-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:56.603022", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1076-V1.0", "title": "RORSI_2876_2015_277_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T03:04:55.000 to 2015-10-04T09:59:26.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1076-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:57.649105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1077-V1.0", "title": "RORSI_2877_2015_277_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T10:16:25.000 to 2015-10-04T17:31:00.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1077-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:58.666635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1078-V1.0", "title": "RORSI_2878_2015_277_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-04T20:53:10.000 to 2015-10-05T05:22:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1078-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:57:59.600037", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1079-V1.0", "title": "RORSI_2879_2015_278_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T05:39:25.000 to 2015-10-05T09:04:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1079-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:00.601701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1080-V1.0", "title": "RORSI_2880_2015_278_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T10:16:25.000 to 2015-10-05T17:30:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1080-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:01.597716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1081-V1.0", "title": "RORSI_2881_2015_278_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-05T21:05:30.000 to 2015-10-06T05:22:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1081-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:02.606551", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1082-V1.0", "title": "RORSI_2882_2015_279_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-06T10:16:30.000 to 2015-10-06T17:30:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1082-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:03.604762", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1083-V1.0", "title": "RORSI_2883_2015_279_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-06T21:17:05.000 to 2015-10-06T23:49:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1083-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:04.607302", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1084-V1.0", "title": "RORSI_2884_2015_280_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T04:58:35.000 to 2015-10-07T09:59:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1084-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:05.613372", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1085-V1.0", "title": "RORSI_2885_2015_280_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T10:16:35.000 to 2015-10-07T17:30:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1085-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:06.611627", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1086-V1.0", "title": "RORSI_2886_2015_280_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-07T20:48:10.000 to 2015-10-08T05:21:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1086-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:07.617070", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1087-V1.0", "title": "RORSI_2887_2015_281_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T10:16:40.000 to 2015-10-08T14:03:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1087-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:08.666619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1088-V1.0", "title": "RORSI_2888_2015_281_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T14:25:35.000 to 2015-10-08T17:29:39.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1088-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:09.712335", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1089-V1.0", "title": "RORSI_2889_2015_281_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-08T20:46:30.000 to 2015-10-09T01:17:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1089-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:10.625243", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1091-V1.0", "title": "RORSI_2890_2015_282_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-09T20:44:45.000 to 2015-10-10T02:54:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1091-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:11.624826", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1092-V1.0", "title": "RORSI_2891_2015_283_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-10T03:11:10.000 to 2015-10-10T07:05:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1092-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:12.626500", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1093-V1.0", "title": "RORSI_2892_2015_283_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-10T20:43:00.000 to 2015-10-11T03:57:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1093-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:13.632535", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1094-V1.0", "title": "RORSI_2893_2015_284_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-11T10:17:05.000 to 2015-10-11T17:28:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1094-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:14.738842", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1095-V1.0", "title": "RORSI_2894_2015_284_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-11T20:41:10.000 to 2015-10-11T23:45:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1095-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:15.634310", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1096-V1.0", "title": "RORSI_2895_2015_285_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-12T03:02:05.000 to 2015-10-12T06:55:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1096-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:16.643200", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1097-V1.0", "title": "RORSI_2896_2015_285_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-12T10:17:15.000 to 2015-10-12T17:27:53.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1097-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:17.638881", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1098-V1.0", "title": "RORSI_2897_2015_286_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-13T10:17:25.000 to 2015-10-13T17:27:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1098-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:18.638206", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1099-V1.0", "title": "RORSI_2898_2015_286_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-13T20:37:35.000 to 2015-10-13T23:45:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1099-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:19.676074", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1100-V1.0", "title": "RORSI_2899_2015_287_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-14T10:17:45.000 to 2015-10-14T17:26:50.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1100-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:20.723262", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1101-V1.0", "title": "RORSI_2900_2015_287_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-14T20:35:40.000 to 2015-10-14T23:45:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1101-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:21.736194", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1102-V1.0", "title": "RORSI_2901_2015_288_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-15T10:18:00.000 to 2015-10-15T17:26:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1102-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:22.646761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1103-V1.0", "title": "RORSI_2902_2015_289_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T03:42:05.000 to 2015-10-16T10:23:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1103-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:23.650349", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1104-V1.0", "title": "RORSI_2903_2015_289_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T10:18:20.000 to 2015-10-16T17:25:38.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1104-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:24.651072", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1105-V1.0", "title": "RORSI_2904_2015_289_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-16T20:31:55.000 to 2015-10-16T23:45:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1105-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:25.647711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1106-V1.0", "title": "RORSI_2905_2015_290_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-17T04:58:30.000 to 2015-10-17T10:01:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1106-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:26.658611", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1107-V1.0", "title": "RORSI_2906_2015_290_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-17T10:18:40.000 to 2015-10-17T17:24:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1107-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:27.658822", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1108-V1.0", "title": "RORSI_2907_2015_291_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T02:05:55.000 to 2015-10-18T04:27:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1108-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:28.659217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1109-V1.0", "title": "RORSI_2908_2015_291_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T05:31:30.000 to 2015-10-18T07:00:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1109-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:29.664612", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1110-V1.0", "title": "RORSI_2909_2015_291_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T10:25:30.000 to 2015-10-18T17:24:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1110-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:30.683538", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1111-V1.0", "title": "RORSI_2910_2015_291_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-18T20:28:00.000 to 2015-10-18T23:45:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1111-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:31.730300", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1112-V1.0", "title": "RORSI_2911_2015_292_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T02:56:30.000 to 2015-10-19T03:49:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1112-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:32.746605", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1113-V1.0", "title": "RORSI_2912_2015_292_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T04:10:30.000 to 2015-10-19T07:10:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1113-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:33.670750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1114-V1.0", "title": "RORSI_2913_2015_292_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-19T10:56:30.000 to 2015-10-19T17:23:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1114-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:34.667752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1115-V1.0", "title": "RORSI_2914_2015_293_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-20T10:19:55.000 to 2015-10-20T17:22:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1115-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:35.676636", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1116-V1.0", "title": "RORSI_2915_2015_293_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-20T20:24:05.000 to 2015-10-20T23:45:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1116-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:36.671649", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1117-V1.0", "title": "RORSI_2916_2015_294_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T05:12:30.000 to 2015-10-21T07:10:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1117-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:37.682993", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1118-V1.0", "title": "RORSI_2917_2015_294_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T10:20:25.000 to 2015-10-21T17:22:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1118-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:38.672026", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC3-1119-V1.0", "title": "RORSI_2918_2015_294_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 3 (ESC3). This is a Global Gravity measurement from 2015-10-21T20:22:05.000 to 2015-10-21T23:45:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc3-1119-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:39.685054", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1120-V1.0", "title": "RORSI_2919_2015_295_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-22T10:21:00.000 to 2015-10-22T17:21:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1120-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:40.683039", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1121-V1.0", "title": "RORSI_2920_2015_296_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T08:02:05.000 to 2015-10-23T10:04:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1121-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:41.692012", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1122-V1.0", "title": "RORSI_2921_2015_296_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T10:21:35.000 to 2015-10-23T14:06:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1122-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:42.738021", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1123-V1.0", "title": "RORSI_2922_2015_296_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T14:27:30.000 to 2015-10-23T17:20:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1123-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:43.757094", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1124-V1.0", "title": "RORSI_2923_2015_296_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-23T20:53:30.000 to 2015-10-23T23:45:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1124-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:44.695588", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1125-V1.0", "title": "RORSI_2924_2015_297_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-24T10:22:10.000 to 2015-10-24T17:19:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1125-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:45.695545", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1126-V1.0", "title": "RORSI_2925_2015_298_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T01:56:20.000 to 2015-10-25T05:08:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1126-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:46.700346", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1127-V1.0", "title": "RORSI_2926_2015_298_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T05:25:15.000 to 2015-10-25T07:15:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1127-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:47.701249", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1128-V1.0", "title": "RORSI_2927_2015_298_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T10:22:50.000 to 2015-10-25T17:18:53.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1128-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:48.702599", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1129-V1.0", "title": "RORSI_2928_2015_298_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-25T20:13:45.000 to 2015-10-26T05:07:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1129-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:49.701739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1130-V1.0", "title": "RORSI_2929_2015_299_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T05:24:15.000 to 2015-10-26T07:30:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1130-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:50.703953", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1131-V1.0", "title": "RORSI_2930_2015_299_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T11:15:30.000 to 2015-10-26T17:18:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1131-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:51.707297", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1132-V1.0", "title": "RORSI_2931_2015_299_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-26T20:11:40.000 to 2015-10-27T05:06:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1132-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:52.709962", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1133-V1.0", "title": "RORSI_2932_2015_300_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T10:24:15.000 to 2015-10-27T14:11:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1133-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:53.750957", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1134-V1.0", "title": "RORSI_2933_2015_300_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T14:32:35.000 to 2015-10-27T17:17:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1134-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:54.798782", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1135-V1.0", "title": "RORSI_2934_2015_300_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T20:10:35.000 to 2015-10-27T21:58:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1135-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:55.717027", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1136-V1.0", "title": "RORSI_2935_2015_300_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-27T22:20:35.000 to 2015-10-28T00:17:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1136-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:56.718171", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1137-V1.0", "title": "RORSI_2936_2015_301_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-28T10:24:55.000 to 2015-10-28T17:16:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1137-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:57.725813", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1138-V1.0", "title": "RORSI_2937_2015_301_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-28T20:07:20.000 to 2015-10-29T05:04:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1138-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:58.723551", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1139-V1.0", "title": "RORSI_2938_2015_302_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T10:49:35.000 to 2015-10-29T17:15:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1139-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:58:59.725436", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1140-V1.0", "title": "RORSI_2939_2015_302_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T20:05:10.000 to 2015-10-29T22:35:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1140-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:00.724322", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1141-V1.0", "title": "RORSI_2940_2015_302_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-29T22:35:12.000 to 2015-10-30T01:16:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1141-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:01.730785", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1142-V1.0", "title": "RORSI_2941_2015_303_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-30T08:37:10.000 to 2015-10-30T14:05:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1142-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:02.728045", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1143-V1.0", "title": "RORSI_2942_2015_303_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-30T14:26:35.000 to 2015-10-30T17:14:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1143-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:03.735753", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1144-V1.0", "title": "RORSI_2943_2015_304_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T04:58:35.000 to 2015-10-31T08:21:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1144-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:04.759439", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1145-V1.0", "title": "RORSI_2944_2015_304_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T08:38:10.000 to 2015-10-31T17:12:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1145-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:05.812983", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1146-V1.0", "title": "RORSI_2945_2015_304_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-10-31T20:00:45.000 to 2015-10-31T23:10:51.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1146-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:06.822050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1147-V1.0", "title": "RORSI_2946_2015_305_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T00:25:46.000 to 2015-11-01T05:00:34.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1147-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:07.741576", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1148-V1.0", "title": "RORSI_2947_2015_305_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T08:32:30.000 to 2015-11-01T17:11:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1148-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:08.742898", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1149-V1.0", "title": "RORSI_2948_2015_305_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-01T19:58:35.000 to 2015-11-02T04:59:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1149-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:09.749943", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1150-V1.0", "title": "RORSI_2949_2015_306_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-02T08:34:35.000 to 2015-11-02T11:19:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1150-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:10.750250", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1151-V1.0", "title": "RORSI_2950_2015_306_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-02T11:41:35.000 to 2015-11-02T17:10:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1151-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:11.751425", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1152-V1.0", "title": "RORSI_2951_2015_307_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-03T02:42:00.000 to 2015-11-03T10:05:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1152-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:12.753440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1153-V1.0", "title": "RORSI_2952_2015_307_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-03T19:54:00.000 to 2015-11-03T23:45:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1153-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:13.754423", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1154-V1.0", "title": "RORSI_2953_2015_308_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-04T08:25:25.000 to 2015-11-04T17:08:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1154-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:14.759870", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1155-V1.0", "title": "RORSI_2954_2015_308_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-04T19:51:45.000 to 2015-11-05T04:55:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1155-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:15.772381", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1156-V1.0", "title": "RORSI_2955_2015_309_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T06:04:55.000 to 2015-11-05T08:06:04.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1156-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:16.819828", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1157-V1.0", "title": "RORSI_2956_2015_309_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T08:23:00.000 to 2015-11-05T13:00:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1157-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:17.833018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1159-V1.0", "title": "RORSI_2957_2015_309_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-05T19:49:25.000 to 2015-11-06T03:08:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1159-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:18.766423", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1160-V1.0", "title": "RORSI_2958_2015_310_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-06T08:20:35.000 to 2015-11-06T15:26:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1160-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:19.767365", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1161-V1.0", "title": "RORSI_2959_2015_311_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T05:28:29.500 to 2015-11-07T12:29:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1161-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:20.769195", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1162-V1.0", "title": "RORSI_2960_2015_311_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T08:18:10.000 to 2015-11-07T12:29:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1162-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:21.771540", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1163-V1.0", "title": "RORSI_2961_2015_311_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-07T19:44:45.000 to 2015-11-08T02:20:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1163-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:22.775827", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1164-V1.0", "title": "RORSI_2962_2015_312_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-08T08:15:40.000 to 2015-11-08T17:03:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1164-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:23.775761", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1165-V1.0", "title": "RORSI_2963_2015_312_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-08T19:42:25.000 to 2015-11-08T23:46:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1165-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:24.775306", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1166-V1.0", "title": "RORSI_2964_2015_313_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T03:25:35.000 to 2015-11-09T07:13:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1166-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:25.780915", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1167-V1.0", "title": "RORSI_2965_2015_313_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T08:13:10.000 to 2015-11-09T11:03:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1167-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:26.783925", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1168-V1.0", "title": "RORSI_2966_2015_313_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-09T11:25:40.000 to 2015-11-09T17:02:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1168-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:27.827730", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1169-V1.0", "title": "RORSI_2967_2015_314_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T02:33:00.000 to 2015-11-10T07:53:47.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1169-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:28.842530", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1170-V1.0", "title": "RORSI_2968_2015_314_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T08:10:45.000 to 2015-11-10T10:45:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1170-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:29.789177", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1171-V1.0", "title": "RORSI_2969_2015_314_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-10T21:37:40.000 to 2015-11-11T00:17:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1171-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:30.790206", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1172-V1.0", "title": "RORSI_2970_2015_315_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-11T04:58:40.000 to 2015-11-11T07:59:48.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1172-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:31.793631", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1173-V1.0", "title": "RORSI_2971_2015_315_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-11T08:16:45.000 to 2015-11-11T16:59:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1173-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:32.797481", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1174-V1.0", "title": "RORSI_2972_2015_316_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T02:30:10.000 to 2015-11-12T07:27:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1174-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:33.791910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1175-V1.0", "title": "RORSI_2973_2015_316_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T07:48:40.000 to 2015-11-12T09:34:33.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1175-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:34.800042", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1176-V1.0", "title": "RORSI_2974_2015_316_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T09:51:25.000 to 2015-11-12T16:57:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1176-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:35.799501", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1177-V1.0", "title": "RORSI_2975_2015_316_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-12T20:25:40.000 to 2015-11-13T01:00:33.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1177-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:36.804532", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1178-V1.0", "title": "RORSI_2976_2015_317_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-13T10:13:35.000 to 2015-11-13T14:50:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1178-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:37.807658", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1179-V1.0", "title": "RORSI_2977_2015_317_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-13T15:11:40.000 to 2015-11-13T16:56:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1179-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:38.838386", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1180-V1.0", "title": "RORSI_2978_2015_318_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-14T02:27:15.000 to 2015-11-14T07:25:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1180-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:39.889027", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1181-V1.0", "title": "RORSI_2979_2015_318_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-14T10:17:50.000 to 2015-11-14T16:54:49.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1181-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:40.903162", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1182-V1.0", "title": "RORSI_2980_2015_319_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T02:25:40.000 to 2015-11-15T07:16:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1182-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:41.818208", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1183-V1.0", "title": "RORSI_2981_2015_319_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T10:28:25.000 to 2015-11-15T16:53:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1183-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:42.820036", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1184-V1.0", "title": "RORSI_2982_2015_319_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-15T20:57:05.000 to 2015-11-16T02:10:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1184-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:43.819834", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1185-V1.0", "title": "RORSI_2983_2015_320_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-16T19:22:55.000 to 2015-11-17T04:37:31.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1185-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:44.822374", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1188-V1.0", "title": "RORSI_2984_2015_320_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-16T12:07:05.000 to 2015-11-16T16:51:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1188-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:45.830273", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1189-V1.0", "title": "RORSI_2985_2015_321_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-17T09:35:55.000 to 2015-11-17T16:50:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1189-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:46.823957", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1190-V1.0", "title": "RORSI_2986_2015_321_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-17T21:07:05.000 to 2015-11-18T04:35:49.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1190-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:47.828201", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1191-V1.0", "title": "RORSI_2987_2015_322_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T04:52:45.000 to 2015-11-18T08:09:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1191-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:48.830345", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1192-V1.0", "title": "RORSI_2988_2015_322_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T08:26:25.000 to 2015-11-18T15:13:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1192-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:49.851465", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1193-V1.0", "title": "RORSI_2989_2015_322_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-18T19:17:50.000 to 2015-11-19T04:34:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1193-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:50.906905", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1194-V1.0", "title": "RORSI_2990_2015_323_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T07:54:40.000 to 2015-11-19T08:39:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1194-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:51.914584", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1195-V1.0", "title": "RORSI_2993_2015_323_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T19:15:15.000 to 2015-11-20T00:52:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1195-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:52.837798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1196-V1.0", "title": "RORSI_2994_2015_324_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-20T07:45:00.000 to 2015-11-20T16:45:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1196-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:53.845011", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1197-V1.0", "title": "RORSI_2995_2015_325_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-21T07:42:20.000 to 2015-11-21T16:43:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1197-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:54.844743", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1198-V1.0", "title": "RORSI_2996_2015_325_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-21T22:12:05.000 to 2015-11-22T04:28:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1198-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:56.631080", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1199-V1.0", "title": "RORSI_2997_2015_326_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-22T07:44:00.000 to 2015-11-22T16:41:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1199-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:57.185424", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1200-V1.0", "title": "RORSI_2998_2015_326_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-22T19:07:30.000 to 2015-11-23T03:04:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1200-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:58.240014", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1201-V1.0", "title": "RORSI_3021_2015_323_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T09:00:45.000 to 2015-11-19T14:02:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1201-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T03:59:59.250549", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1202-V1.0", "title": "RORSI_2991_2015_323_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T14:23:45.000 to 2015-11-19T15:43:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1202-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:00.181014", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1203-V1.0", "title": "RORSI_2992_2015_323_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-19T16:05:45.000 to 2015-11-19T16:46:50.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1203-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:01.190026", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1204-V1.0", "title": "RORSI_2999_2015_327_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T05:33:20.000 to 2015-11-23T07:02:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1204-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:02.182040", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1205-V1.0", "title": "RORSI_3000_2015_327_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T08:16:50.000 to 2015-11-23T10:09:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1205-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:03.200863", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1206-V1.0", "title": "RORSI_3001_2015_327_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T10:34:55.000 to 2015-11-23T13:05:26.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1206-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:04.191927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1207-V1.0", "title": "RORSI_3002_2015_327_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-23T19:04:55.000 to 2015-11-24T02:25:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1207-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:05.194355", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1208-V1.0", "title": "RORSI_3003_2015_328_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-24T07:34:15.000 to 2015-11-24T16:38:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1208-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:06.206522", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1209-V1.0", "title": "RORSI_3004_2015_328_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-24T22:25:10.000 to 2015-11-25T00:17:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1209-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:07.199122", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1210-V1.0", "title": "RORSI_3005_2015_329_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T05:21:55.000 to 2015-11-25T10:31:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1210-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:08.196410", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1211-V1.0", "title": "RORSI_3006_2015_329_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T10:48:15.000 to 2015-11-25T15:06:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1211-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:09.254502", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1212-V1.0", "title": "RORSI_3007_2015_329_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-25T18:59:35.000 to 2015-11-26T04:21:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1212-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:10.264564", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1213-V1.0", "title": "RORSI_3008_2015_330_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T05:33:50.000 to 2015-11-26T07:16:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1213-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:11.207173", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1214-V1.0", "title": "RORSI_3009_2015_330_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T07:33:00.000 to 2015-11-26T11:01:33.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1214-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:12.215545", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1215-V1.0", "title": "RORSI_3010_2015_330_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-26T11:18:25.000 to 2015-11-26T13:10:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1215-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:13.209833", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1216-V1.0", "title": "RORSI_3011_2015_331_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T00:10:35.000 to 2015-11-27T04:19:05.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1216-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:14.213587", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1217-V1.0", "title": "RORSI_3012_2015_331_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T07:31:00.000 to 2015-11-27T15:04:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1217-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:15.215392", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1218-V1.0", "title": "RORSI_3013_2015_331_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-27T18:54:15.000 to 2015-11-28T00:17:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1218-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:16.211783", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1219-V1.0", "title": "RORSI_3014_2015_332_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-28T07:23:15.000 to 2015-11-28T16:30:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1219-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:17.220986", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1220-V1.0", "title": "RORSI_3015_2015_332_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-28T18:51:35.000 to 2015-11-29T04:15:00.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1220-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:18.220306", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1221-V1.0", "title": "RORSI_3016_2015_333_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-29T06:25:35.000 to 2015-11-29T09:20:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1221-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:19.220629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1222-V1.0", "title": "RORSI_3017_2015_333_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-29T18:48:50.000 to 2015-11-30T04:12:56.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1222-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:20.258355", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1223-V1.0", "title": "RORSI_3018_2015_334_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T07:17:40.000 to 2015-11-30T12:56:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1223-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:21.309657", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1224-V1.0", "title": "RORSI_3019_2015_334_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T18:46:05.000 to 2015-11-30T19:24:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1224-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:22.321117", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1225-V1.0", "title": "RORSI_3020_2015_334_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-11-30T19:47:00.000 to 2015-12-01T04:10:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1225-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:23.229238", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1226-V1.0", "title": "RORSI_3022_2015_335_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-01T08:09:55.000 to 2015-12-01T16:24:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1226-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:24.233968", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1227-V1.0", "title": "RORSI_3023_2015_335_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-01T22:02:05.000 to 2015-12-01T23:45:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1227-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:25.235870", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1228-V1.0", "title": "RORSI_3024_2015_336_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T04:59:05.000 to 2015-12-02T12:12:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1228-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:26.236127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1229-V1.0", "title": "RORSI_3025_2015_336_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T12:29:05.000 to 2015-12-02T16:22:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1229-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:27.241031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1230-V1.0", "title": "RORSI_3026_2015_336_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-02T18:40:35.000 to 2015-12-03T01:46:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1230-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:28.244794", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1231-V1.0", "title": "RORSI_3027_2015_337_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T02:37:05.000 to 2015-12-03T04:06:28.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1231-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:29.241719", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1232-V1.0", "title": "RORSI_3028_2015_337_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T09:30:55.000 to 2015-12-03T16:20:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1232-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:30.245117", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1233-V1.0", "title": "RORSI_3029_2015_337_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-03T18:37:45.000 to 2015-12-04T00:35:31.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1233-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:31.269974", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1234-V1.0", "title": "RORSI_3030_2015_338_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T01:50:40.000 to 2015-12-04T07:06:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1234-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:32.319031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1235-V1.0", "title": "RORSI_3031_2015_338_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T09:57:10.000 to 2015-12-04T15:48:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1235-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:33.329520", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1236-V1.0", "title": "RORSI_3032_2015_338_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T18:35:00.000 to 2015-12-04T19:49:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1236-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:34.257661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1237-V1.0", "title": "RORSI_3033_2015_338_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-04T22:03:05.000 to 2015-12-05T04:02:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1237-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:35.256627", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1238-V1.0", "title": "RORSI_3034_2015_339_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-05T18:32:10.000 to 2015-12-06T01:29:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1238-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:36.258152", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1239-V1.0", "title": "RORSI_3035_2015_340_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T01:46:15.000 to 2015-12-06T07:21:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1239-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:37.262965", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1240-V1.0", "title": "RORSI_3036_2015_340_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T10:14:30.000 to 2015-12-06T16:13:24.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1240-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:38.264767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1241-V1.0", "title": "RORSI_3037_2015_340_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-06T18:29:20.000 to 2015-12-07T03:57:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1241-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:39.263161", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1242-V1.0", "title": "RORSI_3038_2015_341_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-07T18:26:30.000 to 2015-12-08T01:30:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1242-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:40.267673", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1243-V1.0", "title": "RORSI_3039_2015_342_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T06:54:45.000 to 2015-12-08T11:37:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1243-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:41.270665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1244-V1.0", "title": "RORSI_3040_2015_342_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T12:00:15.000 to 2015-12-08T16:08:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1244-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:42.279692", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1245-V1.0", "title": "RORSI_3041_2015_342_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-08T18:23:35.000 to 2015-12-09T00:11:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1245-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:43.326399", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1246-V1.0", "title": "RORSI_3042_2015_343_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-09T06:51:50.000 to 2015-12-09T09:00:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1246-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:44.339580", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1247-V1.0", "title": "RORSI_3043_2015_343_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-09T18:20:40.000 to 2015-12-09T22:57:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1247-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:45.275519", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1248-V1.0", "title": "RORSI_3044_2015_344_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-10T07:29:50.000 to 2015-12-10T16:04:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1248-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:46.284057", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1249-V1.0", "title": "RORSI_3045_2015_344_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-10T18:17:45.000 to 2015-12-10T22:57:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1249-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:47.293832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1250-V1.0", "title": "RORSI_3046_2015_345_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-11T08:06:35.000 to 2015-12-11T15:45:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1250-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:48.286706", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1251-V1.0", "title": "RORSI_3047_2015_345_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-11T18:14:50.000 to 2015-12-12T00:16:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1251-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:49.290083", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1252-V1.0", "title": "RORSI_3048_2015_346_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T08:47:15.000 to 2015-12-12T10:00:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1252-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:50.290373", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1253-V1.0", "title": "RORSI_3049_2015_346_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T13:27:05.000 to 2015-12-12T15:45:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1253-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:51.295074", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1254-V1.0", "title": "RORSI_3050_2015_346_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-12T18:11:55.000 to 2015-12-12T21:28:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1254-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:52.293105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1255-V1.0", "title": "RORSI_3051_2015_347_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-13T09:54:35.000 to 2015-12-13T15:56:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1255-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:53.296049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1256-V1.0", "title": "RORSI_3052_2015_347_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-13T18:08:55.000 to 2015-12-14T03:40:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1256-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:54.335819", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1257-V1.0", "title": "RORSI_3053_2015_348_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T10:13:00.000 to 2015-12-14T15:54:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1257-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:55.387477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1258-V1.0", "title": "RORSI_3054_2015_348_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T18:05:55.000 to 2015-12-14T20:01:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1258-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:56.306986", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1259-V1.0", "title": "RORSI_3055_2015_348_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-14T21:22:25.000 to 2015-12-15T03:37:40.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1259-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:57.305364", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1260-V1.0", "title": "RORSI_3056_2015_349_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-15T10:11:00.000 to 2015-12-15T15:51:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1260-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:58.308076", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1261-V1.0", "title": "RORSI_3057_2015_349_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-15T20:34:05.000 to 2015-12-16T00:16:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1261-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:00:59.307766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1262-V1.0", "title": "RORSI_3058_2015_350_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-16T17:59:55.000 to 2015-12-17T03:32:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1262-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:00.312874", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1263-V1.0", "title": "RORSI_3059_2015_351_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-17T10:06:20.000 to 2015-12-17T15:46:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1263-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:01.312629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1264-V1.0", "title": "RORSI_3060_2015_351_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-17T21:56:05.000 to 2015-12-18T03:29:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1264-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:02.317516", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1265-V1.0", "title": "RORSI_3061_2015_352_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-18T10:07:20.000 to 2015-12-18T15:43:41.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1265-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:03.316849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1266-V1.0", "title": "RORSI_3062_2015_352_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-18T17:53:45.000 to 2015-12-19T00:16:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1266-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:04.319424", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1267-V1.0", "title": "RORSI_3063_2015_353_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T04:59:35.000 to 2015-12-19T08:40:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1267-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:05.349279", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1268-V1.0", "title": "RORSI_3064_2015_353_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T09:41:05.000 to 2015-12-19T15:40:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1268-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:06.399398", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1269-V1.0", "title": "RORSI_3065_2015_353_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-19T17:50:40.000 to 2015-12-20T01:19:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1269-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:07.412426", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1270-V1.0", "title": "RORSI_3066_2015_354_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T01:36:25.000 to 2015-12-20T06:43:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1270-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:08.330872", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1271-V1.0", "title": "RORSI_3067_2015_354_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T07:00:25.000 to 2015-12-20T12:55:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1271-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:09.331264", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1272-V1.0", "title": "RORSI_3068_2015_354_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-20T17:47:35.000 to 2015-12-21T01:18:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1272-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:10.338169", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1273-V1.0", "title": "RORSI_3069_2015_355_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T01:34:55.000 to 2015-12-21T09:46:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1273-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:11.340451", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1274-V1.0", "title": "RORSI_3070_2015_355_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T10:03:10.000 to 2015-12-21T14:12:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1274-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:12.340755", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1275-V1.0", "title": "RORSI_3071_2015_355_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T17:44:30.000 to 2015-12-21T20:31:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1275-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:13.341150", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1276-V1.0", "title": "RORSI_3072_2015_355_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-21T21:01:40.000 to 2015-12-22T00:50:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1276-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:14.341822", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1277-V1.0", "title": "RORSI_3073_2015_356_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-22T09:11:10.000 to 2015-12-22T15:32:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1277-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:15.345878", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1278-V1.0", "title": "RORSI_3074_2015_356_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-22T17:41:20.000 to 2015-12-23T00:16:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1278-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:16.359526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1280-V1.0", "title": "RORSI_3075_2015_358_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-24T08:28:45.000 to 2015-12-24T15:26:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1280-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:17.405545", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1281-V1.0", "title": "RORSI_3076_2015_358_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-24T17:35:00.000 to 2015-12-24T23:57:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1281-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:18.420478", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1282-V1.0", "title": "RORSI_3077_2015_359_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T05:42:05.000 to 2015-12-25T07:32:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1282-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:19.349363", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1283-V1.0", "title": "RORSI_3078_2015_359_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T07:49:40.000 to 2015-12-25T15:23:47.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1283-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:20.359146", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1284-V1.0", "title": "RORSI_3079_2015_359_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T17:31:45.000 to 2015-12-25T19:00:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1284-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:21.363443", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1285-V1.0", "title": "RORSI_3080_2015_359_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T19:23:50.000 to 2015-12-25T22:01:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1285-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:22.364655", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1286-V1.0", "title": "RORSI_3081_2015_359_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-25T22:25:50.000 to 2015-12-26T01:11:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1286-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:23.363678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1287-V1.0", "title": "RORSI_3082_2015_360_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T01:28:00.000 to 2015-12-26T07:14:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1287-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:24.364497", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1288-V1.0", "title": "RORSI_3083_2015_360_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T07:31:35.000 to 2015-12-26T15:20:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1288-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:25.372223", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1289-V1.0", "title": "RORSI_3084_2015_360_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-26T17:28:35.000 to 2015-12-27T00:40:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1289-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:26.369347", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1290-V1.0", "title": "RORSI_3085_2015_361_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T05:56:00.000 to 2015-12-27T08:27:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1290-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:27.369630", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1291-V1.0", "title": "RORSI_3086_2015_361_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T09:45:55.000 to 2015-12-27T15:17:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1291-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:28.416035", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1292-V1.0", "title": "RORSI_3087_2015_361_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-27T17:25:20.000 to 2015-12-28T00:35:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1292-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:29.467763", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1293-V1.0", "title": "RORSI_3088_2015_362_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-28T05:52:40.000 to 2015-12-28T15:14:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1293-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:30.380457", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1294-V1.0", "title": "RORSI_3089_2015_362_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-28T17:22:00.000 to 2015-12-29T01:01:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1294-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:31.385929", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1295-V1.0", "title": "RORSI_3090_2015_363_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-29T01:24:05.000 to 2015-12-29T04:12:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1295-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:32.384727", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1296-V1.0", "title": "RORSI_3091_2015_363_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-29T22:09:40.000 to 2015-12-30T00:16:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1296-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:33.387038", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1297-V1.0", "title": "RORSI_3092_2015_364_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T01:34:00.000 to 2015-12-30T04:36:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1297-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:34.387197", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1298-V1.0", "title": "RORSI_3093_2015_364_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T05:00:00.000 to 2015-12-30T07:19:45.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1298-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:35.388607", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1299-V1.0", "title": "RORSI_3094_2015_364_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T07:36:40.000 to 2015-12-30T15:08:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1299-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:36.392555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1300-V1.0", "title": "RORSI_3095_2015_364_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-30T17:15:25.000 to 2015-12-31T01:09:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1300-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:37.500274", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1301-V1.0", "title": "RORSI_3096_2015_365_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T01:38:40.000 to 2015-12-31T07:32:55.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1301-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:38.399551", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1302-V1.0", "title": "RORSI_3097_2015_365_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T07:49:50.000 to 2015-12-31T15:05:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1302-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:39.425944", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-ESC4-1303-V1.0", "title": "RORSI_3098_2015_365_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase COMET ESCORT 4 (ESC4). This is a Global Gravity measurement from 2015-12-31T20:29:55.000 to 2016-01-01T02:47:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-esc4-1303-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:40.475633", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1304-V1.0", "title": "RORSI_3099_2016_001_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-01T08:12:15.000 to 2016-01-01T15:01:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1304-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:41.490639", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1305-V1.0", "title": "RORSI_3100_2016_001_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-01T21:36:45.000 to 2016-01-02T00:17:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1305-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:42.408116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1306-V1.0", "title": "RORSI_3101_2016_002_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-02T05:00:05.000 to 2016-01-02T08:10:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1306-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:43.407236", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1307-V1.0", "title": "RORSI_3102_2016_002_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-02T19:23:15.000 to 2016-01-02T21:15:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1307-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:44.407748", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1308-V1.0", "title": "RORSI_3103_2016_003_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T02:58:10.000 to 2016-01-03T08:30:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1308-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:45.412404", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1309-V1.0", "title": "RORSI_3104_2016_003_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T08:47:45.000 to 2016-01-03T14:55:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1309-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:46.413640", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1310-V1.0", "title": "RORSI_3105_2016_003_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-03T17:01:55.000 to 2016-01-04T01:15:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1310-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:47.418754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1311-V1.0", "title": "RORSI_3106_2016_004_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-04T01:32:35.000 to 2016-01-04T07:54:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1311-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:48.417524", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1312-V1.0", "title": "RORSI_3107_2016_004_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-04T08:29:10.000 to 2016-01-04T09:11:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1312-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:49.419148", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1313-V1.0", "title": "RORSI_3108_2016_005_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-05T05:32:05.000 to 2016-01-05T14:48:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1313-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:50.435852", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1314-V1.0", "title": "RORSI_3109_2016_005_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-05T20:34:35.000 to 2016-01-05T23:45:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1314-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:51.481920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1315-V1.0", "title": "RORSI_3110_2016_006_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T05:00:15.000 to 2016-01-06T09:37:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1315-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:52.496514", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1316-V1.0", "title": "RORSI_3111_2016_006_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T11:07:05.000 to 2016-01-06T14:44:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1316-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:53.432963", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1317-V1.0", "title": "RORSI_3112_2016_006_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-06T21:29:05.000 to 2016-01-06T23:58:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1317-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:54.428067", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1318-V1.0", "title": "RORSI_3113_2016_007_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T00:15:15.000 to 2016-01-07T03:07:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1318-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:55.444411", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1319-V1.0", "title": "RORSI_3114_2016_007_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T08:01:40.000 to 2016-01-07T14:41:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1319-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:56.434701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1320-V1.0", "title": "RORSI_3115_2016_007_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-07T22:35:20.000 to 2016-01-08T02:24:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1320-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:57.438418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1321-V1.0", "title": "RORSI_3116_2016_008_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T02:41:00.000 to 2016-01-08T08:41:43.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1321-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:58.433862", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1322-V1.0", "title": "RORSI_3117_2016_008_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T08:58:40.000 to 2016-01-08T14:37:56.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1322-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:01:59.440641", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1323-V1.0", "title": "RORSI_3118_2016_008_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-08T19:15:10.000 to 2016-01-09T00:15:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1323-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:00.444234", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1324-V1.0", "title": "RORSI_3119_2016_009_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T05:00:20.000 to 2016-01-09T09:24:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1324-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:01.444386", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1325-V1.0", "title": "RORSI_3120_2016_009_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T09:41:50.000 to 2016-01-09T14:34:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1325-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:02.492908", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1326-V1.0", "title": "RORSI_3121_2016_009_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-09T20:13:35.000 to 2016-01-10T00:56:38.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1326-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:03.508445", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1327-V1.0", "title": "RORSI_3122_2016_010_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-10T01:13:35.000 to 2016-01-10T09:25:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1327-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:04.444812", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1328-V1.0", "title": "RORSI_3123_2016_010_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-10T17:09:10.000 to 2016-01-11T00:51:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1328-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:05.456009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1329-V1.0", "title": "RORSI_3124_2016_011_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T01:08:15.000 to 2016-01-11T05:17:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1329-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:06.457060", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1330-V1.0", "title": "RORSI_3125_2016_011_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T05:34:30.000 to 2016-01-11T08:36:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1330-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:07.459427", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1331-V1.0", "title": "RORSI_3126_2016_011_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T09:01:25.000 to 2016-01-11T11:16:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1331-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:08.460909", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1332-V1.0", "title": "RORSI_3127_2016_011_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T11:43:25.000 to 2016-01-11T14:26:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1332-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:09.461116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1333-V1.0", "title": "RORSI_3128_2016_011_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-11T17:05:00.000 to 2016-01-12T00:50:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1333-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:10.464908", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1334-V1.0", "title": "RORSI_3129_2016_012_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T01:07:20.000 to 2016-01-12T05:13:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1334-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:11.469345", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1335-V1.0", "title": "RORSI_3130_2016_012_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T05:30:15.000 to 2016-01-12T08:50:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1335-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:12.467353", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1336-V1.0", "title": "RORSI_3131_2016_012_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-12T17:00:55.000 to 2016-01-13T00:15:33.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1336-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:13.503712", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1337-V1.0", "title": "RORSI_3132_2016_013_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-13T05:26:05.000 to 2016-01-13T14:19:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1337-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:14.545460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1338-V1.0", "title": "RORSI_3133_2016_013_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-13T16:56:55.000 to 2016-01-14T00:48:38.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1338-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:15.474720", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1340-V1.0", "title": "RORSI_3134_2016_014_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T01:05:35.000 to 2016-01-14T05:05:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1340-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:16.479329", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1341-V1.0", "title": "RORSI_3135_2016_014_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T06:03:35.000 to 2016-01-14T09:15:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1341-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:17.479403", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1342-V1.0", "title": "RORSI_3136_2016_014_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-14T21:02:05.000 to 2016-01-15T00:47:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1342-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:18.485018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1343-V1.0", "title": "RORSI_3137_2016_015_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T01:04:50.000 to 2016-01-15T05:01:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1343-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:19.483560", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1344-V1.0", "title": "RORSI_3138_2016_015_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T05:18:00.000 to 2016-01-15T14:11:50.999.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1344-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:20.485702", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1345-V1.0", "title": "RORSI_3139_2016_015_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-15T16:49:00.000 to 2016-01-16T00:15:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1345-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:21.489886", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1346-V1.0", "title": "RORSI_3140_2016_016_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-16T05:14:00.000 to 2016-01-16T14:07:52.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1346-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:22.492306", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1347-V1.0", "title": "RORSI_3141_2016_016_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-16T23:29:50.000 to 2016-01-17T01:47:55.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1347-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:23.490139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1348-V1.0", "title": "RORSI_3142_2016_017_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T02:07:05.000 to 2016-01-17T09:22:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1348-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:24.515558", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1349-V1.0", "title": "RORSI_3143_2016_017_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T09:39:50.000 to 2016-01-17T14:03:55.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1349-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:25.566678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1350-V1.0", "title": "RORSI_3144_2016_017_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-17T19:34:20.000 to 2016-01-17T22:30:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1350-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:26.576557", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1351-V1.0", "title": "RORSI_3145_2016_018_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-18T01:03:05.000 to 2016-01-18T09:22:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1351-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:27.505674", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1352-V1.0", "title": "RORSI_3146_2016_018_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-18T09:38:55.000 to 2016-01-18T13:59:52.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1352-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:28.505787", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1353-V1.0", "title": "RORSI_3147_2016_019_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T01:02:40.000 to 2016-01-19T09:20:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1353-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:29.506796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1354-V1.0", "title": "RORSI_3148_2016_019_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T09:37:55.000 to 2016-01-19T13:55:50.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1354-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:30.504902", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1355-V1.0", "title": "RORSI_3149_2016_019_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-19T20:52:25.000 to 2016-01-19T22:28:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1355-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:31.511041", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1356-V1.0", "title": "RORSI_3150_2016_020_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T05:00:45.000 to 2016-01-20T07:00:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1356-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:32.510325", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1357-V1.0", "title": "RORSI_3151_2016_020_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T07:58:25.000 to 2016-01-20T13:51:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1357-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:33.506769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1358-V1.0", "title": "RORSI_3152_2016_020_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-20T17:30:10.000 to 2016-01-20T20:30:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1358-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:34.517196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1359-V1.0", "title": "RORSI_3153_2016_021_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-21T01:02:05.000 to 2016-01-21T06:30:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1359-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:35.524084", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1360-V1.0", "title": "RORSI_3154_2016_021_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-21T07:54:35.000 to 2016-01-21T13:47:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1360-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:36.571241", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1361-V1.0", "title": "RORSI_3155_2016_022_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-22T01:34:05.000 to 2016-01-22T06:30:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1361-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:37.585289", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1362-V1.0", "title": "RORSI_3156_2016_022_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-22T15:52:40.000 to 2016-01-22T20:20:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1362-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:38.525676", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1363-V1.0", "title": "RORSI_3157_2016_023_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-23T09:19:45.000 to 2016-01-23T13:39:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1363-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:39.532402", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1364-V1.0", "title": "RORSI_3158_2016_023_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-23T19:37:05.000 to 2016-01-23T22:55:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1364-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:40.530324", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1365-V1.0", "title": "RORSI_3159_2016_024_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T01:38:35.000 to 2016-01-24T09:13:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1365-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:41.535072", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1366-V1.0", "title": "RORSI_3160_2016_024_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T09:30:30.000 to 2016-01-24T13:34:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1366-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:42.536503", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1367-V1.0", "title": "RORSI_3161_2016_024_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-24T19:24:45.000 to 2016-01-24T21:42:51.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1367-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:43.541658", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1368-V1.0", "title": "RORSI_3162_2016_025_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T01:01:40.000 to 2016-01-25T09:11:44.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1368-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:44.543742", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1369-V1.0", "title": "RORSI_3163_2016_025_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T09:28:40.000 to 2016-01-25T13:30:36.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1369-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:45.542182", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1370-V1.0", "title": "RORSI_3164_2016_025_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-25T16:23:40.000 to 2016-01-25T18:41:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1370-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:46.538632", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1371-V1.0", "title": "RORSI_3165_2016_026_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T01:01:40.000 to 2016-01-26T09:09:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1371-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:47.580952", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1372-V1.0", "title": "RORSI_3166_2016_026_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T09:26:40.000 to 2016-01-26T13:26:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1372-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:48.629249", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1373-V1.0", "title": "RORSI_3167_2016_026_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-26T20:21:40.000 to 2016-01-26T22:40:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1373-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:49.642878", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1374-V1.0", "title": "RORSI_3168_2016_027_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T05:00:55.000 to 2016-01-27T09:07:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1374-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:50.555026", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1375-V1.0", "title": "RORSI_3169_2016_027_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T09:24:35.000 to 2016-01-27T10:53:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1375-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:51.555857", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1376-V1.0", "title": "RORSI_3170_2016_027_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-27T17:21:05.000 to 2016-01-27T19:39:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1376-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:52.562379", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1377-V1.0", "title": "RORSI_3171_2016_028_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-28T01:01:45.000 to 2016-01-28T09:05:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1377-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:53.563629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1378-V1.0", "title": "RORSI_3172_2016_028_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-28T22:05:45.000 to 2016-01-29T00:59:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1378-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:54.567613", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1379-V1.0", "title": "RORSI_3173_2016_029_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T01:16:50.000 to 2016-01-29T09:03:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1379-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:55.566197", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1380-V1.0", "title": "RORSI_3174_2016_029_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T09:20:00.000 to 2016-01-29T13:12:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1380-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:56.565806", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1381-V1.0", "title": "RORSI_3175_2016_029_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-29T18:18:35.000 to 2016-01-29T20:36:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1381-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:57.570309", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1382-V1.0", "title": "RORSI_3176_2016_030_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T05:35:00.000 to 2016-01-30T09:01:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1382-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:58.596271", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1383-V1.0", "title": "RORSI_3177_2016_030_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T09:18:20.000 to 2016-01-30T13:08:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1383-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:02:59.638629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1384-V1.0", "title": "RORSI_3178_2016_030_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-30T20:13:15.000 to 2016-01-30T23:14:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1384-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:00.655506", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1385-V1.0", "title": "RORSI_3179_2016_031_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T03:12:55.000 to 2016-01-31T08:58:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1385-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:01.574031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1386-V1.0", "title": "RORSI_3180_2016_031_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T09:15:00.000 to 2016-01-31T13:03:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1386-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:02.583774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1387-V1.0", "title": "RORSI_3181_2016_031_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-01-31T19:45:55.000 to 2016-01-31T21:34:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1387-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:03.584487", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1388-V1.0", "title": "RORSI_3182_2016_032_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-01T03:49:10.000 to 2016-02-01T08:55:26.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1388-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:04.589297", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1389-V1.0", "title": "RORSI_3183_2016_032_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-01T09:12:25.000 to 2016-02-01T12:59:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1389-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:05.593657", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1390-V1.0", "title": "RORSI_3184_2016_033_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T02:39:30.000 to 2016-02-02T08:52:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1390-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:06.594542", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1391-V1.0", "title": "RORSI_3185_2016_033_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T09:09:40.000 to 2016-02-02T12:54:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1391-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:07.600472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1392-V1.0", "title": "RORSI_3186_2016_033_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T20:04:40.000 to 2016-02-02T22:06:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1392-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:08.608485", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1393-V1.0", "title": "RORSI_3187_2016_033_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-02T22:34:05.000 to 2016-02-02T23:45:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1393-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:09.606795", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1394-V1.0", "title": "RORSI_3188_2016_034_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T05:01:05.000 to 2016-02-03T08:50:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1394-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:10.656873", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1395-V1.0", "title": "RORSI_3189_2016_034_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T09:07:40.000 to 2016-02-03T12:49:40.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1395-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:11.665218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1396-V1.0", "title": "RORSI_3190_2016_034_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-03T22:19:20.000 to 2016-02-04T08:48:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1396-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:12.609338", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1397-V1.0", "title": "RORSI_3191_2016_035_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T09:05:00.000 to 2016-02-04T12:44:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1397-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:13.605914", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1398-V1.0", "title": "RORSI_3192_2016_035_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T20:48:20.000 to 2016-02-04T23:07:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1398-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:14.608102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1399-V1.0", "title": "RORSI_3193_2016_035_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-04T23:33:05.000 to 2016-02-05T08:44:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1399-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:15.614950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1400-V1.0", "title": "RORSI_3194_2016_036_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-05T09:01:00.000 to 2016-02-05T12:40:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1400-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:16.621213", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1401-V1.0", "title": "RORSI_3195_2016_037_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T04:43:05.000 to 2016-02-06T06:52:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1401-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:17.619545", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1402-V1.0", "title": "RORSI_3196_2016_037_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T09:10:10.000 to 2016-02-06T11:06:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1402-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:18.831099", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1403-V1.0", "title": "RORSI_3197_2016_037_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-06T20:17:50.000 to 2016-02-06T21:50:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1403-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:19.627699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1404-V1.0", "title": "RORSI_3198_2016_038_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T04:47:05.000 to 2016-02-07T10:56:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1404-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:20.628283", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1405-V1.0", "title": "RORSI_3199_2016_038_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T11:24:10.000 to 2016-02-07T12:29:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1405-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:21.662298", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1406-V1.0", "title": "RORSI_3200_2016_038_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-07T19:37:10.000 to 2016-02-07T21:43:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1406-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:22.709131", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1408-V1.0", "title": "RORSI_3201_2016_039_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T06:50:00.000 to 2016-02-08T07:22:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1408-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:23.630044", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1409-V1.0", "title": "RORSI_3202_2016_039_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T07:49:10.000 to 2016-02-08T11:14:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1409-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:24.634488", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1410-V1.0", "title": "RORSI_3203_2016_039_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T11:42:10.000 to 2016-02-08T12:25:32.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1410-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:25.634448", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1411-V1.0", "title": "RORSI_3204_2016_039_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-08T14:42:35.000 to 2016-02-08T19:24:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1411-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:26.642025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1412-V1.0", "title": "RORSI_3205_2016_040_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-09T03:10:25.000 to 2016-02-09T12:20:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1412-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:27.638513", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1413-V1.0", "title": "RORSI_3206_2016_040_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-09T14:38:15.000 to 2016-02-09T22:22:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1413-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:28.646981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1414-V1.0", "title": "RORSI_3207_2016_041_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-10T04:58:05.000 to 2016-02-10T12:15:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1414-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:29.650447", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1415-V1.0", "title": "RORSI_3208_2016_041_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-10T14:33:55.000 to 2016-02-10T19:21:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1415-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:30.647217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1417-V1.0", "title": "RORSI_3209_2016_042_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-11T14:29:30.000 to 2016-02-11T22:24:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1417-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:31.647104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1418-V1.0", "title": "RORSI_3210_2016_043_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-12T02:57:25.000 to 2016-02-12T12:05:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1418-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:32.670881", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1419-V1.0", "title": "RORSI_3211_2016_043_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-12T14:59:32.000 to 2016-02-12T20:18:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1419-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:33.720859", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1420-V1.0", "title": "RORSI_3212_2016_044_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-13T05:01:10.000 to 2016-02-13T12:00:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1420-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:34.735406", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1421-V1.0", "title": "RORSI_3213_2016_044_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-13T14:20:35.000 to 2016-02-13T22:50:42.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1421-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:35.652529", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1422-V1.0", "title": "RORSI_3214_2016_045_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-14T02:48:35.000 to 2016-02-14T11:55:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1422-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:36.656357", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1423-V1.0", "title": "RORSI_3215_2016_045_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-14T14:16:05.000 to 2016-02-14T21:15:56.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1423-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:37.665337", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1424-V1.0", "title": "RORSI_3216_2016_046_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-15T02:44:10.000 to 2016-02-15T11:50:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1424-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:38.666143", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1425-V1.0", "title": "RORSI_3217_2016_046_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-15T14:11:35.000 to 2016-02-15T17:00:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1425-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:39.665302", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1426-V1.0", "title": "RORSI_3218_2016_047_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-16T05:37:05.000 to 2016-02-16T11:45:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1426-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:40.668274", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1427-V1.0", "title": "RORSI_3219_2016_047_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-16T14:07:05.000 to 2016-02-16T22:13:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1427-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:41.668174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1428-V1.0", "title": "RORSI_3220_2016_048_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-17T05:01:10.000 to 2016-02-17T10:56:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1428-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:42.671440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1429-V1.0", "title": "RORSI_3221_2016_048_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-17T14:02:35.000 to 2016-02-17T19:12:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1429-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:43.683287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1430-V1.0", "title": "RORSI_3222_2016_049_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-18T02:30:45.000 to 2016-02-18T09:11:43.999.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1430-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:44.732517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1431-V1.0", "title": "RORSI_3223_2016_050_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-19T02:26:15.000 to 2016-02-19T11:29:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1431-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:45.742910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1433-V1.0", "title": "RORSI_3224_2016_051_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-20T13:48:50.000 to 2016-02-20T22:37:39.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1433-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:46.684902", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1434-V1.0", "title": "RORSI_3225_2016_052_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T01:11:50.000 to 2016-02-21T06:48:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1434-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:47.686975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1435-V1.0", "title": "RORSI_3226_2016_052_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T07:05:25.000 to 2016-02-21T11:18:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1435-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:48.686642", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1436-V1.0", "title": "RORSI_3227_2016_052_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-21T18:49:30.000 to 2016-02-21T20:35:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1436-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:49.689442", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1437-V1.0", "title": "RORSI_3228_2016_053_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T02:24:55.000 to 2016-02-22T04:42:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1437-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:50.692886", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1438-V1.0", "title": "RORSI_3229_2016_053_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T04:59:55.000 to 2016-02-22T10:44:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1438-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:51.700964", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1439-V1.0", "title": "RORSI_3230_2016_053_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-22T19:03:00.000 to 2016-02-22T22:57:13.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1439-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:52.691856", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1440-V1.0", "title": "RORSI_3231_2016_054_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-23T22:22:15.000 to 2016-02-24T07:48:40.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1440-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:53.697818", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1442-V1.0", "title": "RORSI_3232_2016_054_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-23T19:47:15.000 to 2016-02-23T22:05:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1442-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:54.706840", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1443-V1.0", "title": "RORSI_3233_2016_055_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-24T22:49:05.000 to 2016-02-25T02:04:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1443-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:55.741763", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1444-V1.0", "title": "RORSI_3234_2016_055_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-24T08:12:05.000 to 2016-02-24T11:03:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1444-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:56.790568", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1445-V1.0", "title": "RORSI_3235_2016_056_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-25T19:10:25.000 to 2016-02-25T22:27:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1445-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:57.800898", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1446-V1.0", "title": "RORSI_3236_2016_057_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-26T20:21:45.000 to 2016-02-27T00:14:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1446-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:58.709837", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1447-V1.0", "title": "RORSI_3237_2016_057_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-26T05:32:05.000 to 2016-02-26T10:52:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1447-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:03:59.715931", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1448-V1.0", "title": "RORSI_3238_2016_058_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-27T05:01:05.000 to 2016-02-27T07:36:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1448-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:00.716002", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1449-V1.0", "title": "RORSI_3239_2016_059_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T01:16:50.000 to 2016-02-28T07:32:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1449-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:01.719359", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1450-V1.0", "title": "RORSI_3240_2016_059_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T08:01:45.000 to 2016-02-28T10:41:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1450-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:02.757075", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1451-V1.0", "title": "RORSI_3241_2016_059_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-28T18:59:20.000 to 2016-02-28T22:25:36.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1451-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:03.724415", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1452-V1.0", "title": "RORSI_3242_2016_060_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-29T01:17:25.000 to 2016-02-29T03:20:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1452-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:04.728997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1453-V1.0", "title": "RORSI_3243_2016_060_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-02-29T19:21:20.000 to 2016-02-29T22:20:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1453-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:05.723278", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1454-V1.0", "title": "RORSI_3244_2016_061_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-01T01:18:00.000 to 2016-03-01T07:03:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1454-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:06.748108", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1455-V1.0", "title": "RORSI_3245_2016_061_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-01T19:24:10.000 to 2016-03-01T22:14:55.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1455-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:07.800288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1456-V1.0", "title": "RORSI_3246_2016_062_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-02T05:00:55.000 to 2016-03-02T07:17:56.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1456-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:08.813968", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1457-V1.0", "title": "RORSI_3247_2016_063_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-03T02:04:05.000 to 2016-03-03T07:13:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1457-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:09.740064", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1459-V1.0", "title": "RORSI_3248_2016_067_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-07T01:07:10.000 to 2016-03-07T05:06:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1459-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:10.738645", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1460-V1.0", "title": "RORSI_3249_2016_068_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-08T01:02:25.000 to 2016-03-08T05:06:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1460-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:11.742007", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1461-V1.0", "title": "RORSI_3250_2016_069_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-09T05:00:40.000 to 2016-03-09T07:00:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1461-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:12.736631", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1462-V1.0", "title": "RORSI_3251_2016_070_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-10T00:52:55.000 to 2016-03-10T05:06:35.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1462-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:13.748327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1463-V1.0", "title": "RORSI_3252_2016_071_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-11T00:48:10.000 to 2016-03-11T04:06:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1463-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:14.740756", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1464-V1.0", "title": "RORSI_3253_2016_073_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-13T00:38:35.000 to 2016-03-13T05:06:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1464-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:15.746547", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1465-V1.0", "title": "RORSI_3254_2016_082_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-22T00:43:40.000 to 2016-03-22T04:04:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1465-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:16.749009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1466-V1.0", "title": "RORSI_3255_2016_084_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-23T23:46:15.000 to 2016-03-24T07:00:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1466-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:17.758613", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1467-V1.0", "title": "RORSI_3256_2016_085_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-24T23:41:30.000 to 2016-03-25T06:59:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1467-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:18.806173", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1468-V1.0", "title": "RORSI_3257_2016_087_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-26T23:32:05.000 to 2016-03-27T06:50:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1468-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:19.822891", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1469-V1.0", "title": "RORSI_3258_2016_087_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-27T23:27:20.000 to 2016-03-28T01:05:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1469-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:20.760351", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1470-V1.0", "title": "RORSI_3259_2016_088_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-28T17:39:40.000 to 2016-03-28T19:27:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1470-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:21.761644", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1471-V1.0", "title": "RORSI_3260_2016_088_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-28T23:22:40.000 to 2016-03-29T05:00:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1471-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:22.769798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1472-V1.0", "title": "RORSI_3261_2016_089_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-29T17:34:50.000 to 2016-03-29T20:34:05.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1472-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:23.768296", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1473-V1.0", "title": "RORSI_3262_2016_089_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-29T23:18:00.000 to 2016-03-30T04:05:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1473-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:24.770678", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1474-V1.0", "title": "RORSI_3263_2016_091_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-03-31T23:08:35.000 to 2016-04-01T00:56:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1474-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:25.773237", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1475-V1.0", "title": "RORSI_3264_2016_092_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-01T17:20:25.000 to 2016-04-01T20:45:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1475-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:26.776121", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1476-V1.0", "title": "RORSI_3265_2016_092_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-01T23:04:00.000 to 2016-04-02T05:14:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1476-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:27.777118", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1477-V1.0", "title": "RORSI_3266_2016_093_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-02T22:59:20.000 to 2016-04-03T01:48:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1477-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:28.775510", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1478-V1.0", "title": "RORSI_3267_2016_094_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-03T17:11:00.000 to 2016-04-03T19:04:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1478-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:29.817786", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1479-V1.0", "title": "RORSI_3268_2016_094_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-03T22:54:45.000 to 2016-04-04T03:12:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1479-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:30.876359", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1480-V1.0", "title": "RORSI_3269_2016_095_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T17:06:20.000 to 2016-04-04T22:32:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1480-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:31.786711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1481-V1.0", "title": "RORSI_3270_2016_095_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T04:01:30.000 to 2016-04-04T05:15:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1481-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:32.791744", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1482-V1.0", "title": "RORSI_3271_2016_095_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-04T22:50:05.000 to 2016-04-05T03:00:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1482-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:33.789394", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT1-1483-V1.0", "title": "RORSI_3272_2016_096_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 1 (EXT1). This is a Global Gravity measurement from 2016-04-05T17:01:40.000 to 2016-04-05T19:59:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext1-1483-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:34.794323", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1484-V1.0", "title": "RORSI_3273_2016_097_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-06T16:57:05.000 to 2016-04-06T20:24:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1484-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:35.795002", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1485-V1.0", "title": "RORSI_3274_2016_097_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-06T22:40:55.000 to 2016-04-07T03:55:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1485-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:36.795199", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1486-V1.0", "title": "RORSI_3275_2016_098_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-07T16:52:30.000 to 2016-04-07T20:04:50.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1486-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:37.806091", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1487-V1.0", "title": "RORSI_3276_2016_098_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-07T22:36:20.000 to 2016-04-08T05:00:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1487-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:38.802619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1488-V1.0", "title": "RORSI_3277_2016_099_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-08T16:48:00.000 to 2016-04-08T19:19:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1488-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:39.805075", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1489-V1.0", "title": "RORSI_3278_2016_100_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-09T16:43:30.000 to 2016-04-10T04:14:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1489-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:40.824235", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1490-V1.0", "title": "RORSI_3279_2016_101_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-10T16:39:00.000 to 2016-04-10T19:25:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1490-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:41.882006", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1491-V1.0", "title": "RORSI_3280_2016_101_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-10T22:22:45.000 to 2016-04-11T02:32:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1491-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:42.892752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1492-V1.0", "title": "RORSI_3281_2016_102_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-11T16:34:35.000 to 2016-04-11T20:28:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1492-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:43.819685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1493-V1.0", "title": "RORSI_3282_2016_102_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-11T22:18:15.000 to 2016-04-12T02:02:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1493-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:44.816130", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1494-V1.0", "title": "RORSI_3283_2016_103_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-12T16:30:15.000 to 2016-04-12T20:35:47.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1494-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:45.818018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1495-V1.0", "title": "RORSI_3284_2016_103_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-12T22:13:45.000 to 2016-04-13T00:18:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1495-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:46.823537", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1496-V1.0", "title": "RORSI_3285_2016_104_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-13T16:25:50.000 to 2016-04-13T19:33:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1496-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:47.824452", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1497-V1.0", "title": "RORSI_3286_2016_104_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-13T22:09:20.000 to 2016-04-14T01:54:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1497-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:48.830796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1498-V1.0", "title": "RORSI_3287_2016_105_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-14T16:21:30.000 to 2016-04-14T20:36:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1498-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:49.832898", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1499-V1.0", "title": "RORSI_3288_2016_105_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-14T22:04:50.000 to 2016-04-15T02:50:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1499-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:50.831175", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1500-V1.0", "title": "RORSI_3289_2016_106_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-15T16:17:15.000 to 2016-04-15T19:39:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1500-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:51.839106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1501-V1.0", "title": "RORSI_3290_2016_106_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-15T22:00:25.000 to 2016-04-16T05:00:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1501-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:52.884916", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1502-V1.0", "title": "RORSI_3291_2016_107_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-16T16:13:00.000 to 2016-04-16T19:41:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1502-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:53.901397", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1503-V1.0", "title": "RORSI_3292_2016_107_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-16T21:56:00.000 to 2016-04-17T03:41:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1503-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:54.843254", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1504-V1.0", "title": "RORSI_3293_2016_108_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-17T16:08:45.000 to 2016-04-17T19:44:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1504-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:55.840546", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1505-V1.0", "title": "RORSI_3294_2016_108_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-17T21:51:35.000 to 2016-04-18T03:37:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1505-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:56.846844", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1506-V1.0", "title": "RORSI_3295_2016_109_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-18T16:04:35.000 to 2016-04-18T19:47:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1506-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:57.848938", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1508-V1.0", "title": "RORSI_3296_2016_110_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-19T16:00:25.000 to 2016-04-19T20:47:49.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1508-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:58.849840", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1509-V1.0", "title": "RORSI_3297_2016_110_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-19T21:42:50.000 to 2016-04-20T00:19:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1509-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:04:59.951407", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1510-V1.0", "title": "RORSI_3298_2016_111_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T15:56:20.000 to 2016-04-20T19:52:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1510-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:00.849927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1511-V1.0", "title": "RORSI_3299_2016_111_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T01:30:35.000 to 2016-04-20T03:25:42.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1511-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:01.851229", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1512-V1.0", "title": "RORSI_3300_2016_111_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-20T21:38:25.000 to 2016-04-21T02:24:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1512-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:02.856494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1513-V1.0", "title": "RORSI_3301_2016_112_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-21T15:52:15.000 to 2016-04-21T21:40:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1513-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:03.899978", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1514-V1.0", "title": "RORSI_3302_2016_112_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-21T21:57:15.000 to 2016-04-22T05:00:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1514-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:04.945638", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1515-V1.0", "title": "RORSI_3303_2016_113_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-22T15:48:10.000 to 2016-04-22T19:57:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1515-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:05.861432", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1516-V1.0", "title": "RORSI_3304_2016_113_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-22T21:29:45.000 to 2016-04-23T05:00:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1516-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:06.863228", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1517-V1.0", "title": "RORSI_3305_2016_114_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-23T18:17:10.000 to 2016-04-24T00:20:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1517-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:07.869186", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1518-V1.0", "title": "RORSI_3306_2016_115_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-24T16:34:35.000 to 2016-04-25T03:08:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1518-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:08.870300", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1519-V1.0", "title": "RORSI_3307_2016_116_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T16:33:35.000 to 2016-04-25T20:04:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1519-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:09.872711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1520-V1.0", "title": "RORSI_3308_2016_116_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T22:57:05.000 to 2016-04-26T03:04:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1520-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:10.872507", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1521-V1.0", "title": "RORSI_3309_2016_116_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-25T08:46:50.000 to 2016-04-25T11:34:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1521-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:11.877731", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1522-V1.0", "title": "RORSI_3310_2016_117_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T16:32:35.000 to 2016-04-26T20:06:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1522-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:12.882413", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1523-V1.0", "title": "RORSI_3311_2016_117_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T21:12:40.000 to 2016-04-27T00:20:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1523-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:13.882424", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1524-V1.0", "title": "RORSI_3312_2016_117_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-26T08:53:05.000 to 2016-04-26T11:00:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1524-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:14.908956", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1525-V1.0", "title": "RORSI_3313_2016_118_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T16:31:30.000 to 2016-04-27T20:08:41.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1525-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:15.952733", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1526-V1.0", "title": "RORSI_3314_2016_118_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T01:29:35.000 to 2016-04-27T03:00:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1526-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:16.968247", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1527-V1.0", "title": "RORSI_3315_2016_118_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-27T21:08:25.000 to 2016-04-28T04:08:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1527-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:17.888175", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1528-V1.0", "title": "RORSI_3316_2016_119_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T16:30:30.000 to 2016-04-28T20:47:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1528-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:18.892470", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1529-V1.0", "title": "RORSI_3317_2016_119_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T21:04:10.000 to 2016-04-29T03:00:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1529-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:19.893270", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1530-V1.0", "title": "RORSI_3318_2016_119_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-28T08:34:10.000 to 2016-04-28T10:14:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1530-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:20.894348", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1531-V1.0", "title": "RORSI_3319_2016_120_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-29T16:29:20.000 to 2016-04-29T20:12:43.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1531-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:21.900346", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1532-V1.0", "title": "RORSI_3320_2016_120_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-29T21:00:00.000 to 2016-04-30T04:03:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1532-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:22.903240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1533-V1.0", "title": "RORSI_3321_2016_121_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-30T15:27:15.000 to 2016-04-30T20:14:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1533-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:23.903417", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1534-V1.0", "title": "RORSI_3322_2016_121_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-04-30T08:25:50.000 to 2016-04-30T10:43:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1534-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:24.904977", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1535-V1.0", "title": "RORSI_3323_2016_122_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-01T16:27:05.000 to 2016-05-01T20:16:24.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1535-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:25.916909", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1536-V1.0", "title": "RORSI_3324_2016_122_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-01T20:51:35.000 to 2016-05-02T03:00:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1536-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:26.964483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1540-V1.0", "title": "RORSI_3325_2016_123_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-02T16:26:00.000 to 2016-05-02T20:18:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1540-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:27.981502", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1541-V1.0", "title": "RORSI_3326_2016_123_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-02T20:47:25.000 to 2016-05-03T03:45:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1541-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:28.914985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1542-V1.0", "title": "RORSI_3327_2016_124_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-03T17:43:40.000 to 2016-05-03T20:19:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1542-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:29.914128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1543-V1.0", "title": "RORSI_3328_2016_124_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-03T21:30:40.000 to 2016-05-03T22:54:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1543-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:30.913887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1544-V1.0", "title": "RORSI_3329_2016_125_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-04T15:56:50.000 to 2016-05-04T20:21:04.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1544-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:31.918188", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1545-V1.0", "title": "RORSI_3330_2016_125_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-04T20:39:10.000 to 2016-05-04T22:20:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1545-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:32.926575", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1546-V1.0", "title": "RORSI_3331_2016_126_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-05T16:22:30.000 to 2016-05-05T20:18:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1546-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:33.927152", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1547-V1.0", "title": "RORSI_3332_2016_126_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-05T20:35:05.000 to 2016-05-06T03:00:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1547-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:34.939605", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1548-V1.0", "title": "RORSI_3333_2016_127_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-06T16:00:45.000 to 2016-05-06T20:14:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1548-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:35.922837", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1549-V1.0", "title": "RORSI_3334_2016_127_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-06T20:31:00.000 to 2016-05-06T23:23:50.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1549-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:36.931883", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1550-V1.0", "title": "RORSI_3335_2016_128_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-07T16:02:00.000 to 2016-05-07T20:09:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1550-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:37.976260", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1551-V1.0", "title": "RORSI_3336_2016_128_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-07T20:26:55.000 to 2016-05-07T23:25:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1551-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:39.025187", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1552-V1.0", "title": "RORSI_3337_2016_129_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-08T16:18:50.000 to 2016-05-08T20:05:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1552-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:39.937427", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1553-V1.0", "title": "RORSI_3339_2016_129_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-08T20:22:50.000 to 2016-05-09T03:00:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1553-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:40.934756", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1557-V1.0", "title": "RORSI_3338_2016_130_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T16:17:35.000 to 2016-05-09T17:39:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1557-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:41.941041", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1558-V1.0", "title": "RORSI_3340_2016_130_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T17:50:45.000 to 2016-05-09T19:34:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1558-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:42.941526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1559-V1.0", "title": "RORSI_3341_2016_130_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-09T19:46:45.000 to 2016-05-10T02:06:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1559-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:43.945098", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1560-V1.0", "title": "RORSI_3342_2016_131_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T15:12:05.000 to 2016-05-10T20:28:23.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1560-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:44.945747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1561-V1.0", "title": "RORSI_3343_2016_131_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T21:41:45.000 to 2016-05-11T00:22:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1561-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:45.946768", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1562-V1.0", "title": "RORSI_3344_2016_131_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-10T10:58:05.000 to 2016-05-10T14:33:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1562-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:46.955911", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1563-V1.0", "title": "RORSI_3345_2016_132_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-11T16:14:45.000 to 2016-05-12T01:58:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1563-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:47.955196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1564-V1.0", "title": "RORSI_3346_2016_132_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-11T10:18:05.000 to 2016-05-11T15:57:50.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1564-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:48.987166", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1565-V1.0", "title": "RORSI_3347_2016_133_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T15:12:05.000 to 2016-05-12T20:30:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1565-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:50.035792", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1566-V1.0", "title": "RORSI_3348_2016_133_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T10:03:05.000 to 2016-05-12T13:07:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1566-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:51.049640", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1567-V1.0", "title": "RORSI_3349_2016_134_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-12T23:43:40.000 to 2016-05-13T03:00:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1567-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:51.965051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1568-V1.0", "title": "RORSI_3350_2016_134_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-13T16:11:45.000 to 2016-05-13T23:54:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1568-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:52.968170", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1569-V1.0", "title": "RORSI_3351_2016_134_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-13T07:33:10.000 to 2016-05-13T15:54:48.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1569-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:53.963892", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1570-V1.0", "title": "RORSI_3352_2016_135_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-14T16:10:05.000 to 2016-05-14T19:41:50.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1570-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:54.968122", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1571-V1.0", "title": "RORSI_3353_2016_135_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-14T19:58:45.000 to 2016-05-15T01:35:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1571-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:55.975350", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1572-V1.0", "title": "RORSI_3354_2016_136_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-15T16:08:25.000 to 2016-05-15T19:37:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1572-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:56.973744", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1573-V1.0", "title": "RORSI_3355_2016_136_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-15T19:54:50.000 to 2016-05-15T23:14:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1573-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:57.978675", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1574-V1.0", "title": "RORSI_3356_2016_137_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-16T19:50:50.000 to 2016-05-16T21:30:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1574-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:58.978424", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1575-V1.0", "title": "RORSI_3357_2016_138_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-17T00:42:05.000 to 2016-05-17T04:45:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1575-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:05:59.999342", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1576-V1.0", "title": "RORSI_3358_2016_139_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-18T16:02:40.000 to 2016-05-18T18:24:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1576-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:01.049154", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1577-V1.0", "title": "RORSI_3359_2016_140_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T16:00:40.000 to 2016-05-19T19:22:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1577-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:02.058082", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1578-V1.0", "title": "RORSI_3360_2016_140_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T19:39:05.000 to 2016-05-20T03:00:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1578-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:02.991078", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1579-V1.0", "title": "RORSI_3361_2016_140_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-19T07:09:50.000 to 2016-05-19T12:19:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1579-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:03.993288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1580-V1.0", "title": "RORSI_3362_2016_141_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-20T15:58:35.000 to 2016-05-21T01:22:33.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1580-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:04.993940", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1581-V1.0", "title": "RORSI_3363_2016_141_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-20T07:05:55.000 to 2016-05-20T15:41:38.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1581-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:05.997864", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1582-V1.0", "title": "RORSI_3364_2016_142_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-21T15:56:25.000 to 2016-05-21T19:39:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1582-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:06.998504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1583-V1.0", "title": "RORSI_3365_2016_142_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-21T19:57:05.000 to 2016-05-22T00:24:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1583-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:08.003844", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1584-V1.0", "title": "RORSI_3366_2016_143_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T15:54:10.000 to 2016-05-22T19:10:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1584-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:09.007108", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1585-V1.0", "title": "RORSI_3367_2016_143_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T01:25:35.000 to 2016-05-22T04:29:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1585-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:10.005883", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1586-V1.0", "title": "RORSI_3368_2016_143_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-22T19:27:25.000 to 2016-05-23T03:00:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1586-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:11.017754", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1587-V1.0", "title": "RORSI_3369_2016_144_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-23T15:51:50.000 to 2016-05-23T19:06:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1587-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:12.056600", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1588-V1.0", "title": "RORSI_3370_2016_144_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-23T19:23:35.000 to 2016-05-24T04:22:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1588-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:13.069222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1589-V1.0", "title": "RORSI_3371_2016_145_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-24T15:49:30.000 to 2016-05-25T00:24:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1589-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:14.015380", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1590-V1.0", "title": "RORSI_3372_2016_146_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-25T15:47:05.000 to 2016-05-25T18:59:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1590-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:15.023637", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1591-V1.0", "title": "RORSI_3373_2016_146_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-25T19:15:55.000 to 2016-05-26T00:34:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1591-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:16.014149", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1592-V1.0", "title": "RORSI_3374_2016_147_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T15:44:40.000 to 2016-05-26T18:55:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1592-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:17.016213", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1593-V1.0", "title": "RORSI_3375_2016_147_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T19:12:05.000 to 2016-05-27T03:00:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1593-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:18.025811", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1594-V1.0", "title": "RORSI_3376_2016_147_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-26T06:43:05.000 to 2016-05-26T12:25:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1594-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:19.024895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1595-V1.0", "title": "RORSI_3377_2016_148_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-27T15:42:10.000 to 2016-05-28T00:55:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1595-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:20.028452", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1596-V1.0", "title": "RORSI_3378_2016_149_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T15:39:45.000 to 2016-05-28T18:47:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1596-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:21.027354", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1597-V1.0", "title": "RORSI_3379_2016_149_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T19:04:25.000 to 2016-05-28T23:44:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1597-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:22.030948", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1598-V1.0", "title": "RORSI_3380_2016_149_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-28T08:03:05.000 to 2016-05-28T13:51:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1598-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:23.064615", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1599-V1.0", "title": "RORSI_3381_2016_150_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-29T15:37:15.000 to 2016-05-30T00:48:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1599-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:24.114299", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1600-V1.0", "title": "RORSI_3382_2016_150_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-29T15:26:00.000 to 2016-05-29T16:10:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1600-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:25.127558", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1601-V1.0", "title": "RORSI_3383_2016_151_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T16:07:54.000 to 2016-05-30T23:54:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1601-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:26.042481", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1602-V1.0", "title": "RORSI_3384_2016_151_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T12:11:02.000 to 2016-05-30T14:14:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1602-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:27.041976", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1603-V1.0", "title": "RORSI_3385_2016_151_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-30T14:32:53.000 to 2016-05-30T15:06:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1603-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:28.047049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1604-V1.0", "title": "RORSI_3386_2016_152_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-31T15:32:15.000 to 2016-06-01T00:26:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1604-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:29.048944", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1605-V1.0", "title": "RORSI_3387_2016_152_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-05-31T06:24:25.000 to 2016-05-31T11:23:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1605-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:30.052960", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1606-V1.0", "title": "RORSI_3388_2016_153_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T15:29:45.000 to 2016-06-01T18:32:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1606-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:31.053751", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1607-V1.0", "title": "RORSI_3389_2016_153_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T18:49:20.000 to 2016-06-02T03:54:24.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1607-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:32.057997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1608-V1.0", "title": "RORSI_3390_2016_153_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-01T07:56:51.000 to 2016-06-01T10:26:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1608-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:33.056794", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1609-V1.0", "title": "RORSI_3391_2016_154_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-02T15:27:20.000 to 2016-06-03T00:33:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1609-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:34.073792", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1610-V1.0", "title": "RORSI_3392_2016_154_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-02T06:17:00.000 to 2016-06-02T15:10:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1610-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:35.124196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1611-V1.0", "title": "RORSI_3393_2016_155_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T15:24:50.000 to 2016-06-03T20:41:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1611-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:36.137770", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1612-V1.0", "title": "RORSI_3394_2016_155_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T06:13:20.000 to 2016-06-03T11:00:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1612-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:37.067418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1613-V1.0", "title": "RORSI_3395_2016_156_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-03T23:58:35.000 to 2016-06-04T03:48:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1613-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:38.066403", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1614-V1.0", "title": "RORSI_3396_2016_156_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-04T19:13:05.000 to 2016-06-05T03:45:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1614-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:39.066957", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1615-V1.0", "title": "RORSI_3397_2016_156_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-04T06:09:40.000 to 2016-06-04T10:27:25.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1615-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:40.075219", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1616-V1.0", "title": "RORSI_3398_2016_157_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T15:19:50.000 to 2016-06-05T18:17:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1616-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:41.173477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1617-V1.0", "title": "RORSI_3399_2016_157_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T18:35:05.000 to 2016-06-05T22:44:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1617-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:42.079506", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1618-V1.0", "title": "RORSI_3400_2016_157_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-05T06:06:00.000 to 2016-06-05T09:09:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1618-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:43.080320", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1619-V1.0", "title": "RORSI_3401_2016_158_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T15:17:15.000 to 2016-06-06T23:35:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1619-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:44.085020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1620-V1.0", "title": "RORSI_3402_2016_158_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T02:13:05.000 to 2016-06-06T03:42:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1620-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:45.083114", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1621-V1.0", "title": "RORSI_3403_2016_158_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T06:33:05.000 to 2016-06-06T09:07:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1621-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:46.132086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1622-V1.0", "title": "RORSI_3404_2016_159_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-06T23:52:50.000 to 2016-06-07T03:39:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1622-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:47.147373", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1623-V1.0", "title": "RORSI_3405_2016_159_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-07T18:27:00.000 to 2016-06-08T00:27:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1623-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:48.087870", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1624-V1.0", "title": "RORSI_3406_2016_159_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-07T05:58:45.000 to 2016-06-07T09:05:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1624-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:49.095745", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1625-V1.0", "title": "RORSI_3407_2016_160_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T15:12:05.000 to 2016-06-08T18:06:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1625-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:50.093920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1626-V1.0", "title": "RORSI_3408_2016_160_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T01:22:45.000 to 2016-06-08T03:36:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1626-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:51.098253", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1627-V1.0", "title": "RORSI_3409_2016_160_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-08T18:23:20.000 to 2016-06-09T03:33:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1627-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:52.101259", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1628-V1.0", "title": "RORSI_3410_2016_161_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-09T15:12:05.000 to 2016-06-09T18:02:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1628-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:53.103829", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1629-V1.0", "title": "RORSI_3411_2016_161_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-09T18:19:40.000 to 2016-06-10T03:30:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1629-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:54.105406", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1630-V1.0", "title": "RORSI_3412_2016_162_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T15:08:05.000 to 2016-06-10T23:28:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1630-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:55.102447", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1631-V1.0", "title": "RORSI_3413_2016_162_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T06:38:05.000 to 2016-06-10T08:59:50.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1631-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:56.105052", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1632-V1.0", "title": "RORSI_3414_2016_163_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-10T23:45:15.000 to 2016-06-11T03:27:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1632-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:57.146676", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1633-V1.0", "title": "RORSI_3415_2016_163_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T18:12:20.000 to 2016-06-11T22:42:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1633-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:58.192925", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1634-V1.0", "title": "RORSI_3416_2016_163_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T22:44:15.000 to 2016-06-12T00:28:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1634-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:06:59.113881", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1635-V1.0", "title": "RORSI_3417_2016_163_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-11T05:44:15.000 to 2016-06-11T08:58:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1635-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:00.115548", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1636-V1.0", "title": "RORSI_3418_2016_164_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T15:00:50.000 to 2016-06-12T17:51:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1636-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:01.120689", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1637-V1.0", "title": "RORSI_3419_2016_164_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T02:01:05.000 to 2016-06-12T03:24:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1637-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:02.124228", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1638-V1.0", "title": "RORSI_3420_2016_164_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T18:08:40.000 to 2016-06-12T21:06:48.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1638-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:03.124647", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1639-V1.0", "title": "RORSI_3421_2016_164_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T21:08:05.000 to 2016-06-13T00:55:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1639-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:04.123737", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1640-V1.0", "title": "RORSI_3422_2016_164_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-12T05:40:40.000 to 2016-06-12T08:14:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1640-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:05.133084", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1641-V1.0", "title": "RORSI_3423_2016_165_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T14:57:55.000 to 2016-06-13T23:22:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1641-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:06.130932", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1642-V1.0", "title": "RORSI_3424_2016_165_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T00:56:55.000 to 2016-06-13T03:21:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1642-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:07.128507", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1644-V1.0", "title": "RORSI_3425_2016_166_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-14T15:57:05.000 to 2016-06-14T21:10:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1644-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:08.154946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1645-V1.0", "title": "RORSI_3426_2016_166_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-13T23:39:35.000 to 2016-06-14T03:18:30.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1645-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:09.203294", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1646-V1.0", "title": "RORSI_3427_2016_166_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-14T21:27:25.000 to 2016-06-15T01:02:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1646-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:10.216391", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1647-V1.0", "title": "RORSI_3428_2016_167_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T15:57:05.000 to 2016-06-15T23:45:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1647-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:11.140217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1648-V1.0", "title": "RORSI_3429_2016_167_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T10:23:30.000 to 2016-06-15T13:00:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1648-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:12.142696", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1649-V1.0", "title": "RORSI_3430_2016_167_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-15T13:51:33.000 to 2016-06-15T14:55:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1649-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:13.144478", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1650-V1.0", "title": "RORSI_3431_2016_168_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-16T15:57:05.000 to 2016-06-16T23:41:33.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1650-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:14.146736", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1651-V1.0", "title": "RORSI_3432_2016_168_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-16T10:20:25.000 to 2016-06-16T14:55:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1651-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:15.148290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1652-V1.0", "title": "RORSI_3433_2016_169_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-17T14:45:35.000 to 2016-06-17T23:37:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1652-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:16.148495", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1653-V1.0", "title": "RORSI_3434_2016_169_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-17T05:22:50.000 to 2016-06-17T08:36:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1653-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:17.155464", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1654-V1.0", "title": "RORSI_3435_2016_170_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-18T14:42:25.000 to 2016-06-18T23:34:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1654-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:18.155027", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1655-V1.0", "title": "RORSI_3436_2016_170_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-18T05:19:15.000 to 2016-06-18T13:18:05.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1655-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:19.164212", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1656-V1.0", "title": "RORSI_3437_2016_171_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T14:39:15.000 to 2016-06-19T17:30:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1656-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:20.222622", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1657-V1.0", "title": "RORSI_3438_2016_171_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T17:47:05.000 to 2016-06-20T03:01:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1657-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:21.227933", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1658-V1.0", "title": "RORSI_3439_2016_171_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-19T05:15:45.000 to 2016-06-19T13:46:13.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1658-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:22.163553", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1659-V1.0", "title": "RORSI_3440_2016_172_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-20T14:36:00.000 to 2016-06-20T23:27:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1659-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:23.163680", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1660-V1.0", "title": "RORSI_3441_2016_172_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-20T05:12:15.000 to 2016-06-20T08:33:24.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1660-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:24.175854", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1661-V1.0", "title": "RORSI_3442_2016_173_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T14:32:45.000 to 2016-06-21T17:30:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1661-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:25.164985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1662-V1.0", "title": "RORSI_3443_2016_173_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T17:47:05.000 to 2016-06-21T19:30:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1662-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:26.177929", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1663-V1.0", "title": "RORSI_3444_2016_173_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T20:21:34.000 to 2016-06-21T22:31:13.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1663-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:27.174799", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1664-V1.0", "title": "RORSI_3445_2016_173_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T23:23:34.000 to 2016-06-22T00:29:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1664-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:28.173812", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1665-V1.0", "title": "RORSI_3446_2016_173_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-21T05:08:45.000 to 2016-06-21T12:27:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1665-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:29.179061", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1666-V1.0", "title": "RORSI_3447_2016_174_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T14:29:35.000 to 2016-06-22T16:43:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1666-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:30.177420", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1667-V1.0", "title": "RORSI_3448_2016_174_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T21:02:05.000 to 2016-06-22T23:22:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1667-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:31.221240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1668-V1.0", "title": "RORSI_3449_2016_174_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-22T05:05:10.000 to 2016-06-22T11:50:35.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1668-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:32.277274", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1669-V1.0", "title": "RORSI_3450_2016_175_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T14:36:10.000 to 2016-06-23T17:30:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1669-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:33.186702", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1670-V1.0", "title": "RORSI_3451_2016_175_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T17:47:05.000 to 2016-06-24T02:49:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1670-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:34.186774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1671-V1.0", "title": "RORSI_3452_2016_175_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-23T05:01:40.000 to 2016-06-23T14:19:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1671-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:35.189230", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1672-V1.0", "title": "RORSI_3453_2016_176_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T14:23:15.000 to 2016-06-24T23:02:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1672-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:36.191294", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1673-V1.0", "title": "RORSI_3454_2016_176_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T04:58:10.000 to 2016-06-24T10:05:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1673-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:37.194552", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1674-V1.0", "title": "RORSI_3455_2016_177_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-25T14:46:45.000 to 2016-06-25T23:09:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1674-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:38.194508", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1675-V1.0", "title": "RORSI_3456_2016_177_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-24T23:19:10.000 to 2016-06-25T02:46:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1675-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:39.201580", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1676-V1.0", "title": "RORSI_3462_2016_177_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-25T04:54:45.000 to 2016-06-25T14:29:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1676-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:40.201258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1677-V1.0", "title": "RORSI_3457_2016_178_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T14:32:30.000 to 2016-06-26T17:30:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1677-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:41.203855", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1678-V1.0", "title": "RORSI_3458_2016_178_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T17:47:05.000 to 2016-06-27T02:41:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1678-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:42.231366", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1679-V1.0", "title": "RORSI_3459_2016_178_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-26T06:00:40.000 to 2016-06-26T14:15:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1679-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:43.281075", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1680-V1.0", "title": "RORSI_3460_2016_179_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-27T14:14:10.000 to 2016-06-27T23:02:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1680-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:44.298050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1681-V1.0", "title": "RORSI_3461_2016_179_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-27T04:47:45.000 to 2016-06-27T13:57:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1681-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:45.211633", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1682-V1.0", "title": "RORSI_3463_2016_180_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-28T04:44:15.000 to 2016-06-28T11:43:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1682-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:46.216585", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1683-V1.0", "title": "RORSI_3464_2016_180_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-28T14:11:15.000 to 2016-06-28T22:58:36.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1683-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:47.218136", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1684-V1.0", "title": "RORSI_3465_2016_181_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-29T04:45:10.000 to 2016-06-29T07:41:46.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1684-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:48.218469", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1685-V1.0", "title": "RORSI_3466_2016_181_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-29T14:08:25.000 to 2016-06-29T22:55:05.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1685-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:49.225700", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1686-V1.0", "title": "RORSI_3467_2016_182_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-30T04:37:20.000 to 2016-06-30T11:42:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1686-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:50.221492", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT2-1687-V1.0", "title": "RORSI_3468_2016_182_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 2 (EXT2). This is a Global Gravity measurement from 2016-06-30T14:05:40.000 to 2016-06-30T22:51:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext2-1687-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:51.226211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1688-V1.0", "title": "RORSI_3469_2016_183_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-01T04:33:55.000 to 2016-07-01T12:18:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1688-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:52.230914", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1689-V1.0", "title": "RORSI_3470_2016_183_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-01T14:03:00.000 to 2016-07-01T22:47:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1689-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:53.241307", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1690-V1.0", "title": "RORSI_3471_2016_184_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-02T04:30:30.000 to 2016-07-02T09:26:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1690-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:54.295786", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1691-V1.0", "title": "RORSI_3472_2016_184_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-02T15:12:05.000 to 2016-07-02T22:44:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1691-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:55.305671", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1692-V1.0", "title": "RORSI_3473_2016_185_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-03T04:27:05.000 to 2016-07-03T12:14:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1692-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:56.238538", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1693-V1.0", "title": "RORSI_3474_2016_185_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-03T17:02:05.000 to 2016-07-04T02:21:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1693-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:57.240077", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1694-V1.0", "title": "RORSI_3475_2016_186_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-04T04:23:35.000 to 2016-07-04T14:04:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1694-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:58.238740", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1695-V1.0", "title": "RORSI_3476_2016_186_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-04T15:06:55.000 to 2016-07-04T22:37:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1695-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:07:59.243386", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1696-V1.0", "title": "RORSI_3477_2016_187_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-05T04:20:10.000 to 2016-07-05T07:35:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1696-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:00.245880", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1697-V1.0", "title": "RORSI_3478_2016_187_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-05T13:52:40.000 to 2016-07-05T22:33:52.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1697-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:01.251785", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1698-V1.0", "title": "RORSI_3479_2016_188_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-06T13:50:10.000 to 2016-07-06T22:30:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1698-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:02.253401", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1699-V1.0", "title": "RORSI_3480_2016_188_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-06T11:57:05.000 to 2016-07-06T13:33:13.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1699-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:03.253473", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1700-V1.0", "title": "RORSI_3481_2016_189_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-07T14:12:50.000 to 2016-07-07T22:26:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1700-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:04.261275", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1701-V1.0", "title": "RORSI_3483_2016_189_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-07T04:13:20.000 to 2016-07-07T13:55:53.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1701-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:05.301257", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1702-V1.0", "title": "RORSI_3482_2016_190_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-08T13:45:15.000 to 2016-07-08T22:23:23.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1702-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:06.348079", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1703-V1.0", "title": "RORSI_3484_2016_190_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-08T04:09:55.000 to 2016-07-08T12:07:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1703-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:07.262565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1704-V1.0", "title": "RORSI_3485_2016_191_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T13:42:50.000 to 2016-07-09T17:30:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1704-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:08.265533", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1705-V1.0", "title": "RORSI_3486_2016_191_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T17:47:05.000 to 2016-07-09T23:52:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1705-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:09.264344", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1706-V1.0", "title": "RORSI_3487_2016_191_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-09T04:06:30.000 to 2016-07-09T08:22:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1706-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:10.267338", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1707-V1.0", "title": "RORSI_3488_2016_192_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-10T14:04:30.000 to 2016-07-10T22:16:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1707-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:11.273456", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1708-V1.0", "title": "RORSI_3489_2016_192_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-10T05:58:20.000 to 2016-07-10T13:47:33.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1708-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:12.274526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1709-V1.0", "title": "RORSI_3490_2016_193_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-11T13:38:00.000 to 2016-07-11T22:12:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1709-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:13.269525", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1710-V1.0", "title": "RORSI_3491_2016_193_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-11T04:59:45.000 to 2016-07-11T13:21:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1710-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:14.276731", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1711-V1.0", "title": "RORSI_3492_2016_194_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-12T13:59:00.000 to 2016-07-12T19:44:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1711-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:15.279020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1712-V1.0", "title": "RORSI_3493_2016_194_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-12T03:56:20.000 to 2016-07-12T13:42:01.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1712-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:16.318402", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1713-V1.0", "title": "RORSI_3494_2016_195_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-13T16:57:05.000 to 2016-07-13T22:05:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1713-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:17.364931", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1714-V1.0", "title": "RORSI_3495_2016_195_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-13T04:42:55.000 to 2016-07-13T09:02:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1714-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:18.380509", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1715-V1.0", "title": "RORSI_3496_2016_196_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-14T13:30:55.000 to 2016-07-14T22:02:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1715-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:19.291480", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1716-V1.0", "title": "RORSI_3497_2016_196_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-14T03:49:35.000 to 2016-07-14T08:30:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1716-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:20.291978", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1717-V1.0", "title": "RORSI_3498_2016_197_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-15T13:50:45.000 to 2016-07-15T21:59:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1717-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:21.291695", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1718-V1.0", "title": "RORSI_3499_2016_197_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-15T03:46:15.000 to 2016-07-15T06:48:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1718-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:22.399657", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1719-V1.0", "title": "RORSI_3500_2016_198_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-16T13:26:25.000 to 2016-07-16T21:55:34.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1719-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:23.300365", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1720-V1.0", "title": "RORSI_3501_2016_198_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-16T03:42:50.000 to 2016-07-16T11:14:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1720-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:24.298435", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1721-V1.0", "title": "RORSI_3502_2016_199_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T13:45:15.000 to 2016-07-17T17:30:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1721-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:25.298447", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1722-V1.0", "title": "RORSI_3503_2016_199_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T17:47:05.000 to 2016-07-18T01:44:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1722-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:26.306157", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1723-V1.0", "title": "RORSI_3504_2016_199_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-17T05:44:49.000 to 2016-07-17T13:28:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1723-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:27.325458", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1724-V1.0", "title": "RORSI_3505_2016_200_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T13:22:05.000 to 2016-07-18T18:25:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1724-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:28.371165", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1725-V1.0", "title": "RORSI_3506_2016_200_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T22:02:05.000 to 2016-07-19T00:40:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1725-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:29.384138", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1726-V1.0", "title": "RORSI_3507_2016_200_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-18T03:36:10.000 to 2016-07-18T06:54:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1726-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:30.315252", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1727-V1.0", "title": "RORSI_3508_2016_201_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T13:27:00.000 to 2016-07-19T16:05:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1727-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:31.312149", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1728-V1.0", "title": "RORSI_3509_2016_201_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T16:22:20.000 to 2016-07-20T00:59:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1728-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:32.317867", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1729-V1.0", "title": "RORSI_3510_2016_201_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-19T03:32:45.000 to 2016-07-19T06:30:36.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1729-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:33.318310", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1730-V1.0", "title": "RORSI_3511_2016_202_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-20T04:41:50.000 to 2016-07-20T06:31:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1730-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:34.321647", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1731-V1.0", "title": "RORSI_3512_2016_203_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T13:16:05.000 to 2016-07-21T16:13:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1731-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:35.323997", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1732-V1.0", "title": "RORSI_3513_2016_203_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T16:30:10.000 to 2016-07-21T19:30:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1732-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:36.327543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1733-V1.0", "title": "RORSI_3514_2016_203_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-21T04:02:47.000 to 2016-07-21T06:31:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1733-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:37.333783", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1734-V1.0", "title": "RORSI_3515_2016_204_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-22T03:22:45.000 to 2016-07-22T06:31:42.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1734-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:38.332844", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1735-V1.0", "title": "RORSI_3516_2016_205_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T14:12:40.000 to 2016-07-23T16:21:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1735-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:39.376317", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1736-V1.0", "title": "RORSI_3517_2016_205_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T16:38:25.000 to 2016-07-23T18:42:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1736-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:40.396132", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1737-V1.0", "title": "RORSI_3518_2016_205_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T19:42:09.000 to 2016-07-23T20:32:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1737-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:41.337412", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1738-V1.0", "title": "RORSI_3519_2016_205_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-23T03:19:25.000 to 2016-07-23T10:32:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1738-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:42.353675", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1739-V1.0", "title": "RORSI_3520_2016_206_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T13:11:05.000 to 2016-07-24T16:25:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1739-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:43.354130", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1740-V1.0", "title": "RORSI_3521_2016_206_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T17:42:35.000 to 2016-07-24T23:32:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1740-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:44.348898", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1741-V1.0", "title": "RORSI_3522_2016_206_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-24T03:16:05.000 to 2016-07-24T09:32:35.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1741-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:45.346993", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1742-V1.0", "title": "RORSI_3523_2016_207_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-25T17:07:05.000 to 2016-07-25T22:46:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1742-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:46.355790", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1743-V1.0", "title": "RORSI_3524_2016_207_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-25T06:47:05.000 to 2016-07-25T08:45:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1743-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:47.355744", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1744-V1.0", "title": "RORSI_3525_2016_208_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-26T16:34:50.000 to 2016-07-26T22:45:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1744-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:48.361593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1745-V1.0", "title": "RORSI_3526_2016_209_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T14:07:05.000 to 2016-07-27T15:38:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1745-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:49.359559", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1746-V1.0", "title": "RORSI_3527_2016_209_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T17:16:25.000 to 2016-07-27T20:22:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1746-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:50.388314", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1747-V1.0", "title": "RORSI_3528_2016_209_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-27T03:06:10.000 to 2016-07-27T05:24:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1747-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:51.436158", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1748-V1.0", "title": "RORSI_3529_2016_210_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-28T16:28:05.000 to 2016-07-28T21:42:26.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1748-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:52.452348", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1749-V1.0", "title": "RORSI_3530_2016_210_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-28T03:02:52.000 to 2016-07-28T05:20:59.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1749-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:53.360594", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1750-V1.0", "title": "RORSI_3531_2016_211_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T14:12:05.000 to 2016-07-29T15:14:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1750-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:54.368154", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1751-V1.0", "title": "RORSI_3532_2016_211_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T16:31:05.000 to 2016-07-29T20:18:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1751-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:55.373049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1752-V1.0", "title": "RORSI_3533_2016_211_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-29T02:59:33.000 to 2016-07-29T05:17:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1752-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:56.380184", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1753-V1.0", "title": "RORSI_3534_2016_212_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-30T14:12:45.000 to 2016-07-30T15:10:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1753-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:57.372630", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1754-V1.0", "title": "RORSI_3535_2016_212_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-30T16:27:05.000 to 2016-07-30T16:49:23.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1754-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:58.381172", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1755-V1.0", "title": "RORSI_3536_2016_213_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T16:17:55.000 to 2016-07-31T20:36:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1755-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:08:59.379178", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1756-V1.0", "title": "RORSI_3537_2016_213_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T02:52:57.000 to 2016-07-31T08:10:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1756-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:00.383288", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1757-V1.0", "title": "RORSI_3538_2016_213_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-07-31T03:59:46.000 to 2016-07-31T08:10:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1757-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:01.398401", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1758-V1.0", "title": "RORSI_3539_2016_214_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-01T16:14:35.000 to 2016-08-01T17:55:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1758-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:02.449806", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1759-V1.0", "title": "RORSI_3540_2016_215_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T14:02:00.000 to 2016-08-02T14:54:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1759-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:03.463418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1760-V1.0", "title": "RORSI_3541_2016_215_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T16:11:15.000 to 2016-08-02T16:44:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1760-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:04.388617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1761-V1.0", "title": "RORSI_3542_2016_215_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-02T20:57:05.000 to 2016-08-03T01:02:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1761-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:05.391690", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1762-V1.0", "title": "RORSI_3543_2016_216_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-03T16:07:50.000 to 2016-08-03T20:39:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1762-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:06.393387", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1763-V1.0", "title": "RORSI_3544_2016_217_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-04T14:01:00.000 to 2016-08-04T15:26:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1763-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:07.398865", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1764-V1.0", "title": "RORSI_3545_2016_217_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-04T02:39:46.000 to 2016-08-04T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1764-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:08.400330", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1765-V1.0", "title": "RORSI_3546_2016_218_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-05T16:07:05.000 to 2016-08-05T20:41:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1765-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:09.401433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1766-V1.0", "title": "RORSI_3547_2016_219_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-06T16:37:50.000 to 2016-08-06T20:26:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1766-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:10.409393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1767-V1.0", "title": "RORSI_3548_2016_219_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-06T02:33:12.000 to 2016-08-06T06:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1767-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:11.409178", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1768-V1.0", "title": "RORSI_3549_2016_220_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-07T15:54:30.000 to 2016-08-07T23:43:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1768-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:12.412890", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1769-V1.0", "title": "RORSI_3550_2016_220_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-07T02:29:55.000 to 2016-08-07T05:18:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1769-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:13.469731", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1770-V1.0", "title": "RORSI_3551_2016_221_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-08T16:47:05.000 to 2016-08-08T20:19:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1770-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:14.472946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1771-V1.0", "title": "RORSI_3552_2016_221_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-08T02:26:35.000 to 2016-08-08T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1771-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:15.412862", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1772-V1.0", "title": "RORSI_3553_2016_222_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-09T16:47:05.000 to 2016-08-09T20:01:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1772-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:16.416016", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1773-V1.0", "title": "RORSI_3554_2016_222_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-09T02:57:07.000 to 2016-08-09T05:00:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1773-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:17.421340", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1774-V1.0", "title": "RORSI_3555_2016_223_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-10T17:57:05.000 to 2016-08-10T20:27:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1774-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:18.423104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1775-V1.0", "title": "RORSI_3556_2016_223_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-10T15:44:25.000 to 2016-08-10T16:03:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1775-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:19.425574", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1776-V1.0", "title": "RORSI_3557_2016_224_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-11T15:41:10.000 to 2016-08-11T21:34:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1776-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:20.424213", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1777-V1.0", "title": "RORSI_3558_2016_224_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-11T03:17:07.000 to 2016-08-11T05:00:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1777-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:21.429580", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1778-V1.0", "title": "RORSI_3559_2016_225_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-12T15:37:50.000 to 2016-08-12T16:13:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1778-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:22.431467", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1779-V1.0", "title": "RORSI_3560_2016_226_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-13T15:37:05.000 to 2016-08-13T16:11:35.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1779-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:23.427183", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1780-V1.0", "title": "RORSI_3561_2016_226_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-13T02:10:18.000 to 2016-08-13T06:00:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1780-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:24.467701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1782-V1.0", "title": "RORSI_3562_2016_228_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-15T02:03:47.000 to 2016-08-15T06:00:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1782-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:25.518614", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1783-V1.0", "title": "RORSI_3563_2016_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-16T02:00:32.000 to 2016-08-16T06:00:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1783-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:26.529739", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1784-V1.0", "title": "RORSI_3564_2016_230_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T14:00:50.000 to 2016-08-17T16:25:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1784-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:27.439922", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1785-V1.0", "title": "RORSI_3565_2016_230_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T21:57:05.000 to 2016-08-18T00:23:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1785-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:28.448011", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1786-V1.0", "title": "RORSI_3566_2016_230_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-17T03:32:17.000 to 2016-08-17T06:00:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1786-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:29.451910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1787-V1.0", "title": "RORSI_3567_2016_231_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-18T15:17:55.000 to 2016-08-18T21:17:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1787-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:30.455327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1788-V1.0", "title": "RORSI_3568_2016_231_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-18T01:54:02.000 to 2016-08-18T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1788-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:31.451571", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1789-V1.0", "title": "RORSI_3569_2016_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-19T15:14:35.000 to 2016-08-19T23:06:49.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1789-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:32.453593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1790-V1.0", "title": "RORSI_3570_2016_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-19T01:50:47.000 to 2016-08-19T05:00:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1790-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:33.452880", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1791-V1.0", "title": "RORSI_3571_2016_233_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-20T15:11:15.000 to 2016-08-20T18:54:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1791-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:34.460031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1792-V1.0", "title": "RORSI_3572_2016_233_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-20T01:47:33.000 to 2016-08-20T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1792-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:35.478039", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1793-V1.0", "title": "RORSI_3573_2016_234_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-21T15:08:00.000 to 2016-08-21T21:20:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1793-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:36.525145", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1794-V1.0", "title": "RORSI_3574_2016_234_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-21T01:44:18.000 to 2016-08-21T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1794-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:37.539011", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1795-V1.0", "title": "RORSI_3575_2016_235_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-22T15:04:40.000 to 2016-08-22T21:14:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1795-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:38.464073", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1796-V1.0", "title": "RORSI_3576_2016_236_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-23T15:01:20.000 to 2016-08-23T21:16:40.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1796-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:39.465970", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1797-V1.0", "title": "RORSI_3577_2016_236_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-23T01:37:45.000 to 2016-08-23T11:49:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1797-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:40.475209", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1798-V1.0", "title": "RORSI_3578_2016_237_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-24T14:58:05.000 to 2016-08-24T21:19:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1798-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:41.471938", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1799-V1.0", "title": "RORSI_3580_2016_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T01:31:21.000 to 2016-08-25T10:44:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1799-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:42.471646", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1800-V1.0", "title": "RORSI_3581_2016_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T02:44:45.000 to 2016-08-25T11:44:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1800-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:43.473980", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1801-V1.0", "title": "RORSI_3582_2016_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-25T14:54:45.000 to 2016-08-25T21:21:35.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1801-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:44.475599", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1802-V1.0", "title": "RORSI_3579_2016_237_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-24T01:34:35.000 to 2016-08-24T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1802-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:45.479129", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1803-V1.0", "title": "RORSI_3583_2016_239_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-26T14:51:30.000 to 2016-08-26T23:11:50.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1803-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:46.489887", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1804-V1.0", "title": "RORSI_3584_2016_239_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-26T01:28:08.000 to 2016-08-26T07:55:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1804-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:47.537776", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1805-V1.0", "title": "RORSI_3585_2016_240_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-27T14:49:30.000 to 2016-08-27T22:03:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1805-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:48.552483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1806-V1.0", "title": "RORSI_3586_2016_240_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-27T01:24:50.000 to 2016-08-27T09:00:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1806-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:49.487020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1807-V1.0", "title": "RORSI_3587_2016_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T14:44:55.000 to 2016-08-28T21:29:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1807-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:50.488619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1808-V1.0", "title": "RORSI_3588_2016_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T01:21:40.000 to 2016-08-28T10:35:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1808-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:51.492203", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1809-V1.0", "title": "RORSI_3589_2016_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-28T02:35:45.000 to 2016-08-28T11:36:39.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1809-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:52.492767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1810-V1.0", "title": "RORSI_3590_2016_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T14:41:35.000 to 2016-08-29T21:31:53.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1810-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:53.492325", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1811-V1.0", "title": "RORSI_3591_2016_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T01:18:27.000 to 2016-08-29T04:11:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1811-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:54.496208", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1812-V1.0", "title": "RORSI_3592_2016_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-29T01:18:27.000 to 2016-08-29T07:51:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1812-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:55.498677", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1813-V1.0", "title": "RORSI_3593_2016_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-30T01:15:13.000 to 2016-08-30T08:02:57.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1813-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:56.501972", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1814-V1.0", "title": "RORSI_3594_2016_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-30T13:49:50.000 to 2016-08-30T15:48:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1814-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:57.504565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1815-V1.0", "title": "RORSI_3595_2016_244_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-31T14:35:05.000 to 2016-08-31T21:37:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1815-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:58.549441", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1816-V1.0", "title": "RORSI_3596_2016_244_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-08-31T01:12:00.000 to 2016-08-31T05:00:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1816-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:09:59.593637", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1817-V1.0", "title": "RORSI_3597_2016_245_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-01T19:57:00.000 to 2016-09-01T23:01:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1817-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:00.512185", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1818-V1.0", "title": "RORSI_3598_2016_245_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-01T01:08:47.000 to 2016-09-01T11:26:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1818-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:01.509655", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1819-V1.0", "title": "RORSI_3599_2016_246_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-02T14:50:10.000 to 2016-09-02T22:05:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1819-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:02.515618", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1820-V1.0", "title": "RORSI_3600_2016_246_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-02T01:05:33.000 to 2016-09-02T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1820-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:03.636110", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1821-V1.0", "title": "RORSI_3601_2016_247_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-03T14:25:15.000 to 2016-09-03T16:25:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1821-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:04.525385", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1822-V1.0", "title": "RORSI_3602_2016_247_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-03T01:02:21.000 to 2016-09-03T03:19:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1822-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:05.521031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1823-V1.0", "title": "RORSI_3603_2016_248_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-04T14:21:55.000 to 2016-09-04T23:37:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1823-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:06.523974", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1824-V1.0", "title": "RORSI_3604_2016_248_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-04T02:18:07.000 to 2016-09-04T11:18:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1824-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:07.519009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1825-V1.0", "title": "RORSI_3605_2016_249_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-05T14:50:30.000 to 2016-09-05T16:20:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1825-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:08.527533", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1826-V1.0", "title": "RORSI_3606_2016_249_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-05T00:55:56.000 to 2016-09-05T07:42:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1826-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:09.558280", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1827-V1.0", "title": "RORSI_3607_2016_250_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T20:07:50.000 to 2016-09-06T23:32:04.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1827-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:10.606992", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1828-V1.0", "title": "RORSI_3608_2016_250_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T01:13:36.000 to 2016-09-06T09:29:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1828-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:11.618232", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1829-V1.0", "title": "RORSI_3609_2016_250_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-06T02:29:35.000 to 2016-09-06T09:29:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1829-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:12.533890", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1830-V1.0", "title": "RORSI_3610_2016_251_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-07T14:12:10.000 to 2016-09-07T19:26:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1830-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:13.539956", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1831-V1.0", "title": "RORSI_3611_2016_252_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T14:50:45.000 to 2016-09-08T16:15:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1831-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:14.543036", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1832-V1.0", "title": "RORSI_3612_2016_252_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T19:46:50.000 to 2016-09-08T22:00:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1832-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:15.542153", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1833-V1.0", "title": "RORSI_3613_2016_252_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-08T00:46:18.000 to 2016-09-08T10:02:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1833-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:16.548035", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1834-V1.0", "title": "RORSI_3614_2016_253_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-09T14:05:35.000 to 2016-09-09T22:14:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1834-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:17.546801", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1835-V1.0", "title": "RORSI_3615_2016_253_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-09T01:37:55.000 to 2016-09-09T04:14:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1835-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:18.553233", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1836-V1.0", "title": "RORSI_3616_2016_254_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-10T14:02:20.000 to 2016-09-10T22:07:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1836-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:19.553064", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1837-V1.0", "title": "RORSI_3617_2016_254_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-10T01:38:07.000 to 2016-09-10T05:00:17.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1837-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:20.568966", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1838-V1.0", "title": "RORSI_3618_2016_255_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-11T14:51:10.000 to 2016-09-11T22:10:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1838-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:21.614799", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1839-V1.0", "title": "RORSI_3619_2016_255_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-11T00:36:42.000 to 2016-09-11T09:53:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1839-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:22.630772", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1840-V1.0", "title": "RORSI_3620_2016_256_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-12T13:55:50.000 to 2016-09-12T22:14:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1840-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:23.562729", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1841-V1.0", "title": "RORSI_3621_2016_256_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-12T01:48:07.000 to 2016-09-12T05:00:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1841-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:24.560015", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1842-V1.0", "title": "RORSI_3622_2016_257_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T14:24:35.000 to 2016-09-13T15:27:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1842-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:25.564543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1843-V1.0", "title": "RORSI_3623_2016_257_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T19:39:25.000 to 2016-09-13T22:17:49.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1843-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:26.570866", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1844-V1.0", "title": "RORSI_3624_2016_257_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-13T00:30:18.000 to 2016-09-13T10:54:42.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1844-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:27.568195", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1845-V1.0", "title": "RORSI_3625_2016_258_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-14T21:57:05.000 to 2016-09-14T23:11:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1845-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:28.570908", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1846-V1.0", "title": "RORSI_3626_2016_258_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-14T00:27:06.000 to 2016-09-14T04:59:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1846-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:29.575281", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1847-V1.0", "title": "RORSI_3627_2016_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T13:46:05.000 to 2016-09-15T15:54:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1847-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:30.574579", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1848-V1.0", "title": "RORSI_3628_2016_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T19:36:20.000 to 2016-09-15T22:24:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1848-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:31.576586", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1849-V1.0", "title": "RORSI_3629_2016_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T02:22:28.000 to 2016-09-15T10:26:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1849-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:32.628231", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1850-V1.0", "title": "RORSI_3630_2016_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-15T03:40:12.000 to 2016-09-15T10:26:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1850-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:33.639448", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1851-V1.0", "title": "RORSI_3631_2016_260_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-16T13:42:45.000 to 2016-09-16T16:53:04.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1851-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:34.582941", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1852-V1.0", "title": "RORSI_3632_2016_260_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-16T00:20:42.000 to 2016-09-16T07:27:28.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1852-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:35.586287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1853-V1.0", "title": "RORSI_3633_2016_261_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T14:51:35.000 to 2016-09-17T15:50:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1853-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:36.584647", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1854-V1.0", "title": "RORSI_3634_2016_261_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T20:18:10.000 to 2016-09-17T22:31:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1854-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:37.590586", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1855-V1.0", "title": "RORSI_3635_2016_261_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-17T00:17:31.000 to 2016-09-17T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1855-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:38.590718", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1856-V1.0", "title": "RORSI_3636_2016_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T13:36:15.000 to 2016-09-18T15:50:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1856-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:39.593603", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1857-V1.0", "title": "RORSI_3637_2016_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T20:18:05.000 to 2016-09-18T23:01:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1857-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:40.595344", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1858-V1.0", "title": "RORSI_3638_2016_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T00:14:15.000 to 2016-09-18T09:32:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1858-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:41.603257", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1859-V1.0", "title": "RORSI_3639_2016_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-18T01:32:33.000 to 2016-09-18T10:41:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1859-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:42.601583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1860-V1.0", "title": "RORSI_3640_2016_263_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-19T13:33:00.000 to 2016-09-19T22:39:11.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1860-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:43.635394", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1861-V1.0", "title": "RORSI_3641_2016_263_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-19T00:11:07.000 to 2016-09-19T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1861-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:44.685442", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1862-V1.0", "title": "RORSI_3642_2016_264_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-20T14:51:50.000 to 2016-09-20T15:45:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1862-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:45.698656", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1863-V1.0", "title": "RORSI_3643_2016_264_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-20T00:07:55.000 to 2016-09-20T07:22:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1863-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:46.609498", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1864-V1.0", "title": "RORSI_3644_2016_265_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-21T13:26:30.000 to 2016-09-21T22:52:38.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1864-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:47.612895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1865-V1.0", "title": "RORSI_3645_2016_266_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T13:23:20.000 to 2016-09-22T15:39:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1865-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:48.613448", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1866-V1.0", "title": "RORSI_3646_2016_266_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T20:15:20.000 to 2016-09-22T22:51:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1866-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:49.616744", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1867-V1.0", "title": "RORSI_3647_2016_266_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T00:01:32.000 to 2016-09-22T05:00:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1867-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:50.622061", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1868-V1.0", "title": "RORSI_3648_2016_267_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-23T14:52:05.000 to 2016-09-23T15:34:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1868-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:51.624158", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1869-V1.0", "title": "RORSI_3649_2016_267_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-22T23:58:21.000 to 2016-09-23T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1869-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:52.624830", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1870-V1.0", "title": "RORSI_3650_2016_268_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T13:16:50.000 to 2016-09-24T15:33:33.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1870-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:53.626294", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1871-V1.0", "title": "RORSI_3651_2016_268_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T00:42:06.000 to 2016-09-24T05:00:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1871-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:54.646793", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1872-V1.0", "title": "RORSI_3652_2016_269_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-25T13:13:35.000 to 2016-09-25T15:29:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1872-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:55.695372", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1873-V1.0", "title": "RORSI_3653_2016_269_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-24T23:51:58.000 to 2016-09-25T05:00:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1873-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:56.711031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1874-V1.0", "title": "RORSI_3654_2016_270_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T13:10:20.000 to 2016-09-26T16:35:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1874-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:57.634634", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1875-V1.0", "title": "RORSI_3655_2016_270_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T17:26:05.000 to 2016-09-26T17:31:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1875-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:58.634217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1876-V1.0", "title": "RORSI_3656_2016_270_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-26T00:48:06.000 to 2016-09-26T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1876-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:10:59.634276", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1877-V1.0", "title": "RORSI_3657_2016_271_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T13:07:05.000 to 2016-09-27T15:05:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1877-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:00.641991", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1878-V1.0", "title": "RORSI_3658_2016_271_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T19:57:10.000 to 2016-09-27T21:00:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1878-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:01.642540", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1879-V1.0", "title": "RORSI_3659_2016_271_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-27T00:45:35.000 to 2016-09-27T05:00:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1879-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:02.649151", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1880-V1.0", "title": "RORSI_3660_2016_272_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-28T13:03:50.000 to 2016-09-28T15:24:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1880-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:03.658768", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-EXT3-1881-V1.0", "title": "RORSI_3661_2016_273_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase ROSETTA EXTENSION 3 (EXT3). This is a Global Gravity measurement from 2016-09-29T19:37:10.000 to 2016-09-29T22:17:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-ext3-1881-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:04.648207", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0181-V1.0", "title": "RORSI_2001_2014_218_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T00:22:05.000 to 2014-08-06T02:42:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0181-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:05.666827", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0182-V1.0", "title": "RORSI_2002_2014_218_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T08:45:05.000 to 2014-08-06T12:29:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0182-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:06.706713", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0183-V1.0", "title": "RORSI_2003_2014_218_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T15:42:05.000 to 2014-08-06T19:43:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0183-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:07.718659", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0184-V1.0", "title": "RORSI_2004_2014_218_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-06T20:42:05.000 to 2014-08-07T01:43:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0184-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:08.660152", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0185-V1.0", "title": "RORSI_2005_2014_219_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T09:04:15.000 to 2014-08-07T14:04:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0185-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:09.658601", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0186-V1.0", "title": "RORSI_2006_2014_219_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T14:19:05.000 to 2014-08-07T19:38:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0186-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:10.659653", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0187-V1.0", "title": "RORSI_2007_2014_219_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-07T19:55:45.000 to 2014-08-08T02:32:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0187-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:11.663053", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0188-V1.0", "title": "RORSI_2008_2014_220_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T08:59:30.000 to 2014-08-08T14:00:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0188-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:12.667469", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0189-V1.0", "title": "RORSI_2009_2014_220_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T14:14:35.000 to 2014-08-08T19:34:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0189-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:13.669159", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0190-V1.0", "title": "RORSI_2010_2014_220_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-08T19:51:00.000 to 2014-08-09T02:27:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0190-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:14.669050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0191-V1.0", "title": "RORSI_2011_2014_221_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T08:54:50.000 to 2014-08-09T13:55:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0191-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:15.676618", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0192-V1.0", "title": "RORSI_2012_2014_221_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T15:42:00.000 to 2014-08-09T19:29:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0192-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:16.681344", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0193-V1.0", "title": "RORSI_2013_2014_221_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-09T20:42:00.000 to 2014-08-10T02:13:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0193-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:17.715985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0194-V1.0", "title": "RORSI_2014_2014_222_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T10:01:00.000 to 2014-08-10T13:50:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0194-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:18.765377", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0195-V1.0", "title": "RORSI_2015_2014_222_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T14:05:05.000 to 2014-08-10T19:24:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0195-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:19.776962", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0196-V1.0", "title": "RORSI_2016_2014_222_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-10T19:41:35.000 to 2014-08-11T02:18:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0196-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:20.684927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0197-V1.0", "title": "RORSI_2017_2014_223_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-11T07:48:25.000 to 2014-08-11T13:46:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0197-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:21.690693", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0198-V1.0", "title": "RORSI_2018_2014_223_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-11T14:00:35.000 to 2014-08-11T19:20:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0198-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:22.689280", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0199-V1.0", "title": "RORSI_2019_2014_224_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T07:43:45.000 to 2014-08-12T13:41:40.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0199-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:23.693411", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0200-V1.0", "title": "RORSI_2020_2014_224_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T13:56:05.000 to 2014-08-12T15:44:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0200-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:24.692687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0201-V1.0", "title": "RORSI_2021_2014_224_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T16:41:55.000 to 2014-08-12T19:15:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0201-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:25.699543", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0202-V1.0", "title": "RORSI_2022_2014_224_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-12T20:17:31.000 to 2014-08-12T20:43:49.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0202-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:26.698411", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0203-V1.0", "title": "RORSI_2023_2014_225_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-13T10:00:55.000 to 2014-08-13T13:36:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0203-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:27.702617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0204-V1.0", "title": "RORSI_2024_2014_225_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-13T13:51:05.000 to 2014-08-13T19:10:41.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0204-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:28.724995", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0205-V1.0", "title": "RORSI_2025_2014_226_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T07:34:30.000 to 2014-08-14T13:32:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0205-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:29.768752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0206-V1.0", "title": "RORSI_2026_2014_226_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T13:46:35.000 to 2014-08-14T19:06:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0206-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:30.789363", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0207-V1.0", "title": "RORSI_2027_2014_226_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-14T19:23:05.000 to 2014-08-15T01:59:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0207-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:31.710877", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0208-V1.0", "title": "RORSI_2028_2014_227_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T08:22:55.000 to 2014-08-15T13:27:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0208-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:32.711590", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0209-V1.0", "title": "RORSI_2029_2014_227_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T13:42:05.000 to 2014-08-15T19:01:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0209-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:33.728166", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0210-V1.0", "title": "RORSI_2030_2014_227_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-15T19:18:30.000 to 2014-08-16T01:20:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0210-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:34.716174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0211-V1.0", "title": "RORSI_2031_2014_228_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-16T08:17:20.000 to 2014-08-16T13:22:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0211-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:35.719902", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0212-V1.0", "title": "RORSI_2032_2014_228_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-16T13:37:05.000 to 2014-08-16T18:57:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0212-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:36.728596", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0213-V1.0", "title": "RORSI_2033_2014_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T00:07:05.000 to 2014-08-17T06:45:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0213-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:37.726639", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0214-V1.0", "title": "RORSI_2034_2014_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T07:20:45.000 to 2014-08-17T08:15:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0214-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:38.732515", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0215-V1.0", "title": "RORSI_2035_2014_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T10:00:45.000 to 2014-08-17T11:44:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0215-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:39.734264", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0216-V1.0", "title": "RORSI_2036_2014_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T13:33:05.000 to 2014-08-17T16:44:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0216-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:40.790158", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0217-V1.0", "title": "RORSI_2037_2014_229_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-17T17:41:45.000 to 2014-08-17T18:52:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0217-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:41.796929", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0218-V1.0", "title": "RORSI_2038_2014_230_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T07:16:15.000 to 2014-08-18T13:13:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0218-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:42.734850", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0219-V1.0", "title": "RORSI_2039_2014_230_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T13:28:05.000 to 2014-08-18T18:47:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0219-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:43.734082", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0220-V1.0", "title": "RORSI_2040_2014_231_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-18T23:34:55.000 to 2014-08-19T01:41:47.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0220-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:44.840251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0221-V1.0", "title": "RORSI_2041_2014_231_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T07:11:45.000 to 2014-08-19T13:09:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0221-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:45.755433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0222-V1.0", "title": "RORSI_2042_2014_231_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T13:24:05.000 to 2014-08-19T18:43:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0222-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:46.745426", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0223-V1.0", "title": "RORSI_2043_2014_231_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-19T19:00:25.000 to 2014-08-20T01:37:20.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0223-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:47.746701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0224-V1.0", "title": "RORSI_2044_2014_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T10:00:35.000 to 2014-08-20T13:04:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0224-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:48.751498", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0225-V1.0", "title": "RORSI_2045_2014_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T13:19:05.000 to 2014-08-20T18:39:01.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0225-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:49.752522", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0226-V1.0", "title": "RORSI_2046_2014_232_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-20T18:55:55.000 to 2014-08-21T01:32:53.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0226-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:50.754641", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0227-V1.0", "title": "RORSI_2072_2014_233_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T07:57:05.000 to 2014-08-21T13:00:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0227-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:51.793672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0228-V1.0", "title": "RORSI_2047_2014_233_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T13:15:05.000 to 2014-08-21T18:34:36.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0228-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:52.841055", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0229-V1.0", "title": "RORSI_2048_2014_233_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-21T18:51:30.000 to 2014-08-22T01:19:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0229-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:53.758486", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0230-V1.0", "title": "RORSI_2049_2014_234_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T07:52:25.000 to 2014-08-22T12:55:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0230-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:54.760930", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0231-V1.0", "title": "RORSI_2050_2014_234_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T13:10:05.000 to 2014-08-22T18:30:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0231-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:55.762861", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0232-V1.0", "title": "RORSI_2051_2014_234_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-22T18:47:05.000 to 2014-08-23T00:05:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0232-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:56.767499", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0233-V1.0", "title": "RORSI_2052_2014_235_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T07:48:00.000 to 2014-08-23T12:51:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0233-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:57.768243", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0234-V1.0", "title": "RORSI_2053_2014_235_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T13:06:05.000 to 2014-08-23T18:14:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0234-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:58.768767", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0235-V1.0", "title": "RORSI_2054_2014_235_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-23T22:52:45.000 to 2014-08-24T02:06:41.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0235-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:11:59.770858", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0236-V1.0", "title": "RORSI_2055_2014_236_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T06:49:35.000 to 2014-08-24T08:15:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0236-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:00.776263", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0237-V1.0", "title": "RORSI_2056_2014_236_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T10:00:40.000 to 2014-08-24T12:05:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0237-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:01.779217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0238-V1.0", "title": "RORSI_2057_2014_236_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T13:10:25.000 to 2014-08-24T18:21:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0238-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:02.803021", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0239-V1.0", "title": "RORSI_2059_2014_237_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T07:37:15.000 to 2014-08-25T12:42:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0239-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:03.853722", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0240-V1.0", "title": "RORSI_2058_2014_236_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-24T18:38:25.000 to 2014-08-25T02:00:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0240-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:04.865975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0241-V1.0", "title": "RORSI_2060_2014_237_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T12:57:05.000 to 2014-08-25T18:17:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0241-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:05.788191", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0242-V1.0", "title": "RORSI_2061_2014_237_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T22:42:05.000 to 2014-08-26T00:42:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0242-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:06.788900", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0243-V1.0", "title": "RORSI_2062_2014_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-25T23:37:09.000 to 2014-08-26T02:02:22.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0243-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:07.792455", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0244-V1.0", "title": "RORSI_2063_2014_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T06:40:55.000 to 2014-08-26T12:38:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0244-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:08.794132", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0245-V1.0", "title": "RORSI_2064_2014_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T12:53:05.000 to 2014-08-26T18:12:46.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0245-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:09.795731", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0246-V1.0", "title": "RORSI_2065_2014_238_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-26T23:02:45.000 to 2014-08-27T01:06:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0246-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:10.799438", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0247-V1.0", "title": "RORSI_2066_2014_239_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T06:36:40.000 to 2014-08-27T12:05:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0247-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:11.802315", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0248-V1.0", "title": "RORSI_2067_2014_239_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T13:10:40.000 to 2014-08-27T19:01:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0248-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:12.802750", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0249-V1.0", "title": "RORSI_2068_2014_239_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T19:18:10.000 to 2014-08-27T23:29:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0249-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:13.813362", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0250-V1.0", "title": "RORSI_2069_2014_240_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-27T23:34:15.000 to 2014-08-28T01:02:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0250-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:14.862391", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0251-V1.0", "title": "RORSI_2070_2014_240_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T06:32:20.000 to 2014-08-28T12:29:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0251-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:15.875757", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0252-V1.0", "title": "RORSI_2071_2014_240_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T12:44:05.000 to 2014-08-28T18:04:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0252-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:16.812687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0253-V1.0", "title": "RORSI_2073_2014_240_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-28T18:21:15.000 to 2014-08-29T00:44:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0253-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:17.814332", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0254-V1.0", "title": "RORSI_2074_2014_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-29T06:38:05.000 to 2014-08-29T18:00:00.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0254-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:18.814436", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0255-V1.0", "title": "RORSI_2075_2014_241_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-29T18:17:00.000 to 2014-08-30T00:54:02.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0255-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:19.816736", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0256-V1.0", "title": "RORSI_2076_2014_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T09:02:05.000 to 2014-08-30T11:57:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0256-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:20.822406", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0257-V1.0", "title": "RORSI_2077_2014_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T13:02:05.000 to 2014-08-30T15:17:37.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0257-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:21.821725", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0258-V1.0", "title": "RORSI_2078_2014_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T15:22:05.000 to 2014-08-30T17:55:48.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0258-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:22.820286", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0259-V1.0", "title": "RORSI_2079_2014_242_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-30T18:12:50.000 to 2014-08-31T00:39:47.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0259-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:23.827764", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0260-V1.0", "title": "RORSI_2080_2014_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T07:13:40.000 to 2014-08-31T08:16:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0260-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:24.831304", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0261-V1.0", "title": "RORSI_2081_2014_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T10:00:00.000 to 2014-08-31T12:20:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0261-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:25.870186", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0262-V1.0", "title": "RORSI_2082_2014_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T12:31:00.000 to 2014-08-31T17:51:40.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0262-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:26.920951", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0263-V1.0", "title": "RORSI_2083_2014_243_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-08-31T18:08:40.000 to 2014-09-01T00:08:03.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0263-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:27.834020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0264-V1.0", "title": "RORSI_2084_2014_244_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-01T07:12:05.000 to 2014-09-01T17:47:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0264-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:28.838935", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0265-V1.0", "title": "RORSI_2085_2014_244_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-01T18:04:30.000 to 2014-09-02T00:29:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0265-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:29.837441", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0266-V1.0", "title": "RORSI_2086_2014_245_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-02T06:32:05.000 to 2014-09-02T18:08:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0266-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:30.854628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0267-V1.0", "title": "RORSI_2087_2014_245_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-02T20:57:05.000 to 2014-09-03T01:37:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0267-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:31.847818", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0268-V1.0", "title": "RORSI_2088_2014_246_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-03T11:27:05.000 to 2014-09-03T17:39:21.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0268-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:32.846859", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0269-V1.0", "title": "RORSI_2089_2014_246_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-03T17:56:15.000 to 2014-09-04T00:30:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0269-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:33.849389", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0270-V1.0", "title": "RORSI_2090_2014_247_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-04T11:27:05.000 to 2014-09-04T17:35:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0270-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:34.851832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0271-V1.0", "title": "RORSI_2091_2014_247_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-04T18:14:50.000 to 2014-09-05T00:29:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0271-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:35.854291", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0272-V1.0", "title": "RORSI_2092_2014_248_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-05T06:52:05.000 to 2014-09-05T17:31:17.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0272-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:36.885857", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0273-V1.0", "title": "RORSI_2093_2014_248_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-05T17:48:10.000 to 2014-09-06T00:15:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0273-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:37.929885", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0274-V1.0", "title": "RORSI_2094_2014_249_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-06T06:47:05.000 to 2014-09-06T17:27:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0274-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:38.945097", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0275-V1.0", "title": "RORSI_2095_2014_249_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-06T17:44:10.000 to 2014-09-07T00:10:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0275-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:39.859557", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0276-V1.0", "title": "RORSI_2096_2014_250_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T06:32:05.000 to 2014-09-07T08:16:26.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0276-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:40.867787", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0277-V1.0", "title": "RORSI_2097_2014_250_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T09:59:35.000 to 2014-09-07T17:23:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0277-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:41.874393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0278-V1.0", "title": "RORSI_2098_2014_250_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-07T17:38:45.000 to 2014-09-07T23:27:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0278-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:42.868440", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0279-V1.0", "title": "RORSI_2099_2014_251_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-08T06:43:05.000 to 2014-09-08T17:19:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0279-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:43.874962", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0280-V1.0", "title": "RORSI_2100_2014_251_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-08T17:36:15.000 to 2014-09-09T00:00:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0280-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:44.871736", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0281-V1.0", "title": "RORSI_2101_2014_252_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T06:37:05.000 to 2014-09-09T17:15:21.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0281-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:45.872760", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0282-V1.0", "title": "RORSI_2102_2014_252_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T17:32:20.000 to 2014-09-09T19:02:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0282-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:46.874097", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0283-V1.0", "title": "RORSI_2103_2014_252_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-09T20:57:30.000 to 2014-09-10T00:42:35.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0283-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:47.892149", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0284-V1.0", "title": "RORSI_2104_2014_253_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T05:39:10.000 to 2014-09-10T08:16:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0284-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:48.943528", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0285-V1.0", "title": "RORSI_2105_2014_253_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T09:59:25.000 to 2014-09-10T17:11:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0285-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:49.955051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0286-V1.0", "title": "RORSI_2106_2014_253_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-10T17:28:22.000 to 2014-09-11T00:05:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0286-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:50.883954", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0287-V1.0", "title": "RORSI_2107_2014_254_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-11T06:32:02.000 to 2014-09-11T17:07:34.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0287-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:51.887661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0288-V1.0", "title": "RORSI_2108_2014_254_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-11T17:24:29.000 to 2014-09-12T01:05:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0288-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:52.892034", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0289-V1.0", "title": "RORSI_2109_2014_255_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-12T06:27:02.000 to 2014-09-12T17:03:42.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0289-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:53.892938", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0290-V1.0", "title": "RORSI_2110_2014_255_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-12T17:20:38.000 to 2014-09-13T01:10:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0290-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:54.896663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0291-V1.0", "title": "RORSI_2111_2014_256_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-13T06:22:02.000 to 2014-09-13T17:49:53.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0291-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:55.897283", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0292-V1.0", "title": "RORSI_2112_2014_256_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-13T22:12:03.000 to 2014-09-14T01:25:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0292-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:56.903785", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0293-V1.0", "title": "RORSI_2113_2014_257_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-14T06:17:02.000 to 2014-09-14T15:12:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0293-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:57.901574", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0294-V1.0", "title": "RORSI_2114_2014_257_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-14T17:13:03.000 to 2014-09-14T23:35:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0294-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:58.911335", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0295-V1.0", "title": "RORSI_2115_2014_258_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-15T06:17:02.000 to 2014-09-15T15:10:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0295-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:12:59.952583", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0296-V1.0", "title": "RORSI_2116_2014_258_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-15T17:09:03.000 to 2014-09-16T03:36:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0296-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:01.000522", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0297-V1.0", "title": "RORSI_2117_2014_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-16T05:16:04.000 to 2014-09-16T15:09:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0297-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:01.911757", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0298-V1.0", "title": "RORSI_2118_2014_259_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-16T17:05:04.000 to 2014-09-16T23:25:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0298-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:02.911548", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0299-V1.0", "title": "RORSI_2119_2014_260_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-17T06:07:02.000 to 2014-09-17T15:08:07.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0299-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:03.915641", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0300-V1.0", "title": "RORSI_2120_2014_260_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-17T17:01:03.000 to 2014-09-18T03:42:45.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0300-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:04.918817", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0301-V1.0", "title": "RORSI_2121_2014_261_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-18T05:08:34.000 to 2014-09-18T15:07:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0301-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:05.919322", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0302-V1.0", "title": "RORSI_2122_2014_261_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-18T16:57:04.000 to 2014-09-18T23:20:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0302-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:06.927490", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0303-V1.0", "title": "RORSI_2123_2014_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-19T06:02:02.000 to 2014-09-19T14:37:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0303-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:07.924745", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0304-V1.0", "title": "RORSI_2124_2014_262_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-19T16:54:05.000 to 2014-09-19T23:15:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0304-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:08.925314", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0305-V1.0", "title": "RORSI_2125_2014_263_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-20T05:57:05.000 to 2014-09-20T12:45:53.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0305-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:09.928364", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0306-V1.0", "title": "RORSI_2126_2014_263_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-20T16:50:05.000 to 2014-09-21T00:27:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0306-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:10.959272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0307-V1.0", "title": "RORSI_2127_2014_264_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T05:52:05.000 to 2014-09-21T08:17:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0307-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:12.006791", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0308-V1.0", "title": "RORSI_2128_2014_264_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T11:38:40.000 to 2014-09-21T14:30:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0308-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:13.023669", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0309-V1.0", "title": "RORSI_2129_2014_264_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-21T16:47:05.000 to 2014-09-22T02:47:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0309-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:13.939980", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0310-V1.0", "title": "RORSI_2130_2014_265_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-22T04:53:55.000 to 2014-09-22T16:26:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0310-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:14.940737", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0311-V1.0", "title": "RORSI_2131_2014_265_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-22T16:43:30.000 to 2014-09-23T01:06:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0311-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:15.943119", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0312-V1.0", "title": "RORSI_2132_2014_266_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-23T06:51:34.000 to 2014-09-23T16:22:57.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0312-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:16.948252", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0313-V1.0", "title": "RORSI_2133_2014_266_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-23T16:39:55.000 to 2014-09-24T00:03:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0313-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:17.942814", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0314-V1.0", "title": "RORSI_2134_2014_267_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-24T09:58:25.000 to 2014-09-24T17:07:50.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0314-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:18.948316", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0315-V1.0", "title": "RORSI_2135_2014_267_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-24T17:24:50.000 to 2014-09-25T01:15:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0315-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:19.951999", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0316-V1.0", "title": "RORSI_2136_2014_268_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-25T05:37:05.000 to 2014-09-25T15:12:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0316-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:20.952920", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0317-V1.0", "title": "RORSI_2137_2014_268_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-25T16:32:50.000 to 2014-09-26T00:25:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0317-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:21.970479", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0318-V1.0", "title": "RORSI_2138_2014_269_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-26T05:37:05.000 to 2014-09-26T16:12:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0318-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:23.022604", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0319-V1.0", "title": "RORSI_2139_2014_269_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-26T16:29:20.000 to 2014-09-27T01:10:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0319-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:24.033397", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0320-V1.0", "title": "RORSI_2140_2014_270_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-27T05:32:05.000 to 2014-09-27T16:08:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0320-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:24.961472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0321-V1.0", "title": "RORSI_2141_2014_270_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-27T16:25:50.000 to 2014-09-28T00:05:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0321-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:26.128864", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0322-V1.0", "title": "RORSI_2142_2014_271_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-28T05:27:05.000 to 2014-09-28T16:05:23.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0322-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:26.967166", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0323-V1.0", "title": "RORSI_2143_2014_271_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-28T16:22:20.000 to 2014-09-28T23:10:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0323-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:27.967785", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0324-V1.0", "title": "RORSI_2144_2014_272_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-29T09:58:05.000 to 2014-09-29T16:01:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0324-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:28.970530", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0325-V1.0", "title": "RORSI_2145_2014_272_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-29T16:18:55.000 to 2014-09-29T22:55:43.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0325-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:29.972128", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0326-V1.0", "title": "RORSI_2146_2014_273_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-30T05:22:05.000 to 2014-09-30T15:58:30.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0326-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:30.974685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0327-V1.0", "title": "RORSI_2147_2014_273_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-09-30T16:15:30.000 to 2014-10-01T01:15:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0327-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:31.987145", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0328-V1.0", "title": "RORSI_2148_2014_274_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-01T12:53:55.000 to 2014-10-01T15:55:07.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0328-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:32.982407", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0329-V1.0", "title": "RORSI_2149_2014_274_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-01T16:12:05.000 to 2014-10-02T00:10:09.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0329-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:34.031589", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0330-V1.0", "title": "RORSI_2150_2014_275_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-02T05:17:05.000 to 2014-10-02T15:51:45.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0330-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:35.043437", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0331-V1.0", "title": "RORSI_2151_2014_275_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-02T16:08:45.000 to 2014-10-02T22:55:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0331-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:35.985577", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0332-V1.0", "title": "RORSI_2152_2014_276_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-03T05:12:05.000 to 2014-10-03T15:48:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0332-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:36.990922", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0333-V1.0", "title": "RORSI_2153_2014_276_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-03T16:05:25.000 to 2014-10-04T03:37:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0333-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:37.988192", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0334-V1.0", "title": "RORSI_2154_2014_277_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-04T04:04:05.000 to 2014-10-04T15:45:05.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0334-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:38.993417", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0335-V1.0", "title": "RORSI_2155_2014_277_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-04T16:02:05.000 to 2014-10-04T22:00:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0335-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:40.000589", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0336-V1.0", "title": "RORSI_2156_2014_278_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T05:07:05.000 to 2014-10-05T08:18:25.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0336-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:40.998002", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0337-V1.0", "title": "RORSI_2157_2014_278_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T08:41:35.000 to 2014-10-05T11:41:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0337-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:42.001669", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0338-V1.0", "title": "RORSI_2158_2014_278_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-05T11:42:35.000 to 2014-10-05T16:26:47.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0338-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:43.002008", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0339-V1.0", "title": "RORSI_2159_2014_279_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-06T05:02:05.000 to 2014-10-06T15:38:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0339-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:44.002629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0340-V1.0", "title": "RORSI_2160_2014_279_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-06T15:55:30.000 to 2014-10-06T22:32:15.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0340-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:45.039403", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0341-V1.0", "title": "RORSI_2161_2014_280_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-07T05:02:05.000 to 2014-10-07T16:20:14.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0341-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:46.085635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0342-V1.0", "title": "RORSI_2162_2014_281_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T03:50:50.000 to 2014-10-08T08:50:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0342-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:47.005061", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0343-V1.0", "title": "RORSI_2163_2014_281_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T09:50:50.000 to 2014-10-08T15:32:00.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0343-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:48.012083", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0344-V1.0", "title": "RORSI_2164_2014_281_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-08T15:48:55.000 to 2014-10-09T01:35:10.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0344-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:49.006222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0345-V1.0", "title": "RORSI_2165_2014_282_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-09T04:52:05.000 to 2014-10-09T15:28:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0345-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:50.018849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0346-V1.0", "title": "RORSI_2166_2014_282_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-09T15:45:45.000 to 2014-10-09T22:22:26.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0346-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:51.014083", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0347-V1.0", "title": "RORSI_2167_2014_283_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-10T04:52:05.000 to 2014-10-10T15:25:36.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0347-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:52.019950", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0348-V1.0", "title": "RORSI_2168_2014_283_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-10T15:42:30.000 to 2014-10-10T23:10:13.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0348-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:53.022407", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0349-V1.0", "title": "RORSI_2169_2014_284_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-11T03:41:10.000 to 2014-10-11T15:22:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0349-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:54.027312", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0350-V1.0", "title": "RORSI_2170_2014_284_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-11T15:39:20.000 to 2014-10-11T22:16:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0350-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:55.033273", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0351-V1.0", "title": "RORSI_2171_2014_285_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T03:13:11.000 to 2014-10-12T08:18:56.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0351-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:56.048189", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0352-V1.0", "title": "RORSI_2172_2014_285_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T08:41:05.000 to 2014-10-12T11:38:38.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0352-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:57.097162", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0353-V1.0", "title": "RORSI_2173_2014_285_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T12:29:59.000 to 2014-10-12T15:19:16.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0353-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:58.111171", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0354-V1.0", "title": "RORSI_2174_2014_285_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-12T15:36:10.000 to 2014-10-12T21:50:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0354-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:13:59.037984", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0355-V1.0", "title": "RORSI_2175_2014_286_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-13T03:34:50.000 to 2014-10-13T15:16:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0355-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:00.036581", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0356-V1.0", "title": "RORSI_2176_2014_286_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-13T15:33:05.000 to 2014-10-13T22:09:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0356-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:01.039618", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0357-V1.0", "title": "RORSI_2177_2014_287_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-14T04:37:05.000 to 2014-10-14T15:12:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0357-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:02.048614", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0358-V1.0", "title": "RORSI_2178_2014_287_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-14T15:29:55.000 to 2014-10-14T22:06:39.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0358-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:03.043494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0359-V1.0", "title": "RORSI_2179_2014_288_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T04:37:05.000 to 2014-10-15T08:19:08.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0359-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:04.051025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0360-V1.0", "title": "RORSI_2180_2014_288_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T08:40:55.000 to 2014-10-15T09:58:50.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0360-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:05.050433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0361-V1.0", "title": "RORSI_2181_2014_288_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T10:50:11.000 to 2014-10-15T15:09:51.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0361-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:06.054764", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0362-V1.0", "title": "RORSI_2182_2014_288_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-15T15:26:50.000 to 2014-10-15T22:52:33.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0362-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:07.059925", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0364-V1.0", "title": "RORSI_2183_2014_289_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-16T15:23:45.000 to 2014-10-17T01:16:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0364-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:08.111285", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0365-V1.0", "title": "RORSI_2184_2014_290_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-17T03:27:05.000 to 2014-10-17T15:03:46.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0365-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:09.121795", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0366-V1.0", "title": "RORSI_2185_2014_290_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-17T15:20:40.000 to 2014-10-17T22:55:11.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0366-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:10.063589", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0367-V1.0", "title": "RORSI_2186_2014_291_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-18T04:27:05.000 to 2014-10-18T15:00:42.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0367-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:11.065947", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0368-V1.0", "title": "RORSI_2187_2014_291_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-18T15:17:40.000 to 2014-10-18T21:30:09.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0368-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:12.059362", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0369-V1.0", "title": "RORSI_2188_2014_292_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T04:22:05.000 to 2014-10-19T08:19:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0369-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:13.069089", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0370-V1.0", "title": "RORSI_2189_2014_292_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T11:36:40.000 to 2014-10-19T14:57:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0370-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:14.070126", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0371-V1.0", "title": "RORSI_2190_2014_292_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-19T15:15:40.000 to 2014-10-19T22:01:23.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0371-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:15.072569", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0372-V1.0", "title": "RORSI_2191_2014_293_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-20T12:27:10.000 to 2014-10-20T14:55:43.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0372-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:16.075841", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0373-V1.0", "title": "RORSI_2192_2014_293_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-20T15:12:40.000 to 2014-10-20T21:48:12.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0373-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:17.082264", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0374-V1.0", "title": "RORSI_2193_2014_294_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-21T04:17:05.000 to 2014-10-21T14:51:46.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0374-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:18.081110", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0375-V1.0", "title": "RORSI_2194_2014_294_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-21T15:08:40.000 to 2014-10-21T22:16:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0375-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:19.114745", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0376-V1.0", "title": "RORSI_2195_2014_295_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T04:17:05.000 to 2014-10-22T08:19:36.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0376-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:20.165525", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0377-V1.0", "title": "RORSI_2196_2014_295_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T11:36:25.000 to 2014-10-22T15:31:18.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0377-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:21.086389", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0378-V1.0", "title": "RORSI_2197_2014_295_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-22T15:48:15.000 to 2014-10-22T22:57:04.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0378-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:22.089910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0379-V1.0", "title": "RORSI_2198_2014_296_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T02:54:10.000 to 2014-10-23T14:45:48.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0379-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:23.094416", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0380-V1.0", "title": "RORSI_2199_2014_296_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T03:48:31.000 to 2014-10-23T14:45:48.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0380-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:24.093074", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0381-V1.0", "title": "RORSI_2200_2014_296_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-23T15:02:45.000 to 2014-10-23T21:39:15.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0381-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:25.096411", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0383-V1.0", "title": "RORSI_2201_2014_297_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-24T14:59:50.000 to 2014-10-24T23:40:14.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0383-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:26.097042", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0384-V1.0", "title": "RORSI_2202_2014_298_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T04:07:05.000 to 2014-10-25T07:49:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0384-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:27.101064", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0385-V1.0", "title": "RORSI_2203_2014_298_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T12:21:15.000 to 2014-10-25T14:39:58.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0385-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:28.106394", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0386-V1.0", "title": "RORSI_2204_2014_298_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-25T14:56:55.000 to 2014-10-25T21:33:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0386-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:29.106180", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0387-V1.0", "title": "RORSI_2205_2014_299_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-26T04:02:05.000 to 2014-10-26T14:37:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0387-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:30.128395", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0388-V1.0", "title": "RORSI_2206_2014_299_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-26T14:54:00.000 to 2014-10-26T21:30:32.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0388-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:31.182258", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0389-V1.0", "title": "RORSI_2207_2014_300_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T04:02:05.000 to 2014-10-27T14:34:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0389-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:32.191397", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0390-V1.0", "title": "RORSI_2208_2014_300_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T04:56:57.000 to 2014-10-27T14:34:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0390-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:33.110959", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0391-V1.0", "title": "RORSI_2209_2014_300_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-27T14:51:10.000 to 2014-10-27T22:16:27.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0391-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:34.115461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0392-V1.0", "title": "RORSI_2210_2014_301_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-28T03:57:05.000 to 2014-10-28T12:19:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0392-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:35.117939", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0393-V1.0", "title": "RORSI_2211_2014_301_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-28T14:48:20.000 to 2014-10-28T21:24:45.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0393-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:36.120868", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0394-V1.0", "title": "RORSI_2212_2014_302_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-29T14:45:30.000 to 2014-10-29T22:29:54.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0394-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:37.125315", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0395-V1.0", "title": "RORSI_2213_2014_303_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-30T09:53:05.000 to 2014-10-30T14:25:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0395-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:38.126004", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0396-V1.0", "title": "RORSI_2214_2014_303_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-30T14:42:40.000 to 2014-10-30T21:19:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0396-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:39.126272", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0397-V1.0", "title": "RORSI_2215_2014_304_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-31T10:02:05.000 to 2014-10-31T14:22:55.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0397-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:40.125881", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0398-V1.0", "title": "RORSI_2216_2014_304_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-10-31T14:39:50.000 to 2014-11-01T02:11:18.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0398-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:41.136526", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0400-V1.0", "title": "RORSI_2217_2014_305_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-01T14:37:05.000 to 2014-11-01T21:13:28.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0400-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:42.186645", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0402-V1.0", "title": "RORSI_2218_2014_306_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-02T16:26:10.000 to 2014-11-02T21:10:38.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0402-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:43.200199", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0403-V1.0", "title": "RORSI_2219_2014_307_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T03:42:05.000 to 2014-11-03T08:20:20.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0403-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:44.134802", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0404-V1.0", "title": "RORSI_2220_2014_307_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T08:39:45.000 to 2014-11-03T11:40:02.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0404-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:45.140810", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0405-V1.0", "title": "RORSI_2221_2014_307_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T12:31:23.000 to 2014-11-03T15:53:23.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0405-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:46.134868", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0406-V1.0", "title": "RORSI_2222_2014_307_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-03T15:11:05.000 to 2014-11-03T21:29:22.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0406-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:47.141864", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0408-V1.0", "title": "RORSI_2223_2014_308_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-04T20:57:05.000 to 2014-11-04T23:24:48.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0408-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:48.147105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0409-V1.0", "title": "RORSI_2224_2014_309_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-05T03:38:05.000 to 2014-11-05T10:25:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0409-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:49.149005", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0410-V1.0", "title": "RORSI_2225_2014_309_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-05T15:26:10.000 to 2014-11-05T19:39:27.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0410-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:50.153429", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0412-V1.0", "title": "RORSI_2226_2014_310_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-06T14:23:25.000 to 2014-11-06T23:09:52.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0412-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:51.151218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0414-V1.0", "title": "RORSI_2227_2014_311_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-07T15:00:45.000 to 2014-11-07T21:00:06.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0414-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:52.156794", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0416-V1.0", "title": "RORSI_2228_2014_312_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-08T14:57:05.000 to 2014-11-08T20:53:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0416-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:53.211927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0418-V1.0", "title": "RORSI_2229_2014_313_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-09T15:52:16.000 to 2014-11-09T21:50:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0418-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:54.243666", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0420-V1.0", "title": "RORSI_2230_2014_314_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-10T14:51:05.000 to 2014-11-11T03:06:06.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0420-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:55.161134", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0422-V1.0", "title": "RORSI_2231_2014_315_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-11T14:48:05.000 to 2014-11-12T03:03:12.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0422-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:56.157149", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0423-V1.0", "title": "RORSI_2232_2014_316_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T03:05:00.000 to 2014-11-12T07:04:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0423-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:57.165045", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0424-V1.0", "title": "RORSI_2233_2014_316_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T07:00:45.000 to 2014-11-12T11:04:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0424-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:58.167670", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0426-V1.0", "title": "RORSI_2234_2014_316_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-12T14:07:05.000 to 2014-11-13T02:42:38.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0426-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:14:59.168855", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0427-V1.0", "title": "RORSI_2235_2014_317_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-13T01:55:40.000 to 2014-11-13T10:41:37.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0427-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:00.176494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0428-V1.0", "title": "RORSI_2236_2014_317_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-13T11:32:54.000 to 2014-11-13T14:24:41.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0428-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:01.199817", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0430-V1.0", "title": "RORSI_2237_2014_318_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T03:07:05.000 to 2014-11-14T06:11:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0430-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:02.177161", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0431-V1.0", "title": "RORSI_2238_2014_318_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T04:05:30.000 to 2014-11-14T14:20:54.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0431-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:03.177830", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0432-V1.0", "title": "RORSI_2239_2014_318_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-14T14:38:25.000 to 2014-11-15T02:38:24.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0432-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:04.206103", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0434-V1.0", "title": "RORSI_2240_2014_319_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-15T14:35:50.000 to 2014-11-16T01:35:49.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0434-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:05.256483", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0435-V1.0", "title": "RORSI_2241_2014_320_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T01:47:50.000 to 2014-11-16T05:20:58.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0435-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:06.267511", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0436-V1.0", "title": "RORSI_2242_2014_320_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T08:35:05.000 to 2014-11-16T14:14:59.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0436-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:07.368874", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0437-V1.0", "title": "RORSI_2243_2014_320_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-16T14:32:20.000 to 2014-11-17T02:48:31.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0437-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:08.194295", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0439-V1.0", "title": "RORSI_2244_2014_321_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-17T13:54:50.000 to 2014-11-17T20:30:47.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0439-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:09.207896", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0440-V1.0", "title": "RORSI_2245_2014_322_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T01:42:45.000 to 2014-11-18T09:42:44.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0440-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:10.201869", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0441-V1.0", "title": "RORSI_2246_2014_322_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T02:41:29.000 to 2014-11-18T13:35:19.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0441-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:11.199061", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0442-V1.0", "title": "RORSI_2247_2014_322_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-18T13:52:15.000 to 2014-11-18T20:28:13.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0442-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:12.202278", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0443-V1.0", "title": "RORSI_2248_2014_323_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T03:55:50.000 to 2014-11-19T07:00:19.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0443-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:13.201113", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0444-V1.0", "title": "RORSI_2249_2014_323_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T06:14:49.000 to 2014-11-19T14:07:29.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0444-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:14.204212", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-RSI-1/2/3-PRL-0445-V1.0", "title": "RORSI_2250_2014_323_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Rosetta Radio Science experiment from the mission phase PRELANDING (PRL). This is a Global Gravity measurement from 2014-11-19T14:24:25.000 to 2014-11-19T20:35:08.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-rsi-1_2_3-prl-0445-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:15.222683", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC1-MTP010-V1.0", "title": "ROSETTA VIRTIS ESC1-MTP010 DATA", "description": "ROSETTA VIRTIS data for ESC1-MTP010 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp010-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:16.267464", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC1-MTP010-V2.0", "title": "ROSETTA VIRTIS ESC1-MTP010 DATA", "description": "ROSETTA VIRTIS RAW data for ESC1-MTP010 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp010-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:17.281218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC1-MTP011-V1.0", "title": "ROSETTA VIRTIS ESC1-MTP011 DATA", "description": "ROSETTA VIRTIS data for ESC1-MTP011 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:18.219779", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC1-MTP011-V2.0", "title": "ROSETTA VIRTIS ESC1-MTP011 DATA", "description": "ROSETTA VIRTIS RAW data for ESC1-MTP011 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp011-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:19.225790", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC1-MTP012-V1.0", "title": "ROSETTA VIRTIS ESC1-MTP012 DATA", "description": "ROSETTA VIRTIS data for ESC1-MTP012 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp012-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:20.227512", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC1-MTP012-V2.0", "title": "ROSETTA VIRTIS ESC1-MTP012 DATA", "description": "ROSETTA VIRTIS RAW data for ESC1-MTP012 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp012-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:21.225359", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC1-MTP013-V1.0", "title": "ROSETTA VIRTIS ESC1-MTP013 DATA", "description": "ROSETTA VIRTIS data for ESC1-MTP013 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp013-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:22.239665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC1-MTP013-V2.0", "title": "ROSETTA VIRTIS ESC1-MTP013 DATA", "description": "ROSETTA VIRTIS RAW data for ESC1-MTP013 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc1-mtp013-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:23.240865", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC2-MTP014-V1.0", "title": "ROSETTA VIRTIS ESC2-MTP014 DATA", "description": "ROSETTA VIRTIS data for ESC2-MTP014 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:24.240698", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC2-MTP014-V2.0", "title": "ROSETTA VIRTIS ESC2-MTP014 DATA", "description": "ROSETTA VIRTIS RAW data for ESC2-MTP014 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp014-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:25.246313", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC2-MTP015-V1.0", "title": "ROSETTA VIRTIS ESC2-MTP015 DATA", "description": "ROSETTA VIRTIS data for ESC2-MTP015 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:26.249685", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC2-MTP015-V2.0", "title": "ROSETTA VIRTIS ESC2-MTP015 DATA", "description": "ROSETTA VIRTIS RAW data for ESC2-MTP015 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp015-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:27.273694", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC2-MTP016-V1.0", "title": "ROSETTA VIRTIS ESC2-MTP016 DATA", "description": "ROSETTA VIRTIS data for ESC2-MTP016 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp016-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:28.325643", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC2-MTP016-V2.0", "title": "ROSETTA VIRTIS ESC2-MTP016 DATA", "description": "ROSETTA VIRTIS RAW data for ESC2-MTP016 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp016-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:29.338150", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC2-MTP017-V1.0", "title": "ROSETTA VIRTIS ESC2-MTP017 DATA", "description": "ROSETTA VIRTIS data for ESC2-MTP017 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp017-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:30.260061", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC2-MTP017-V2.0", "title": "ROSETTA VIRTIS ESC2-MTP017 DATA", "description": "ROSETTA VIRTIS RAW data for ESC2-MTP017 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc2-mtp017-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:31.265895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC3-MTP018-V1.0", "title": "ROSETTA VIRTIS ESC3-MTP018 DATA", "description": "ROSETTA VIRTIS data for ESC3-MTP018 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp018-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:32.269981", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC3-MTP018-V2.0", "title": "ROSETTA VIRTIS ESC3-MTP018 DATA", "description": "ROSETTA VIRTIS RAW data for ESC3-MTP018 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp018-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:33.269628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC3-MTP019-V1.0", "title": "ROSETTA VIRTIS ESC3-MTP019 DATA", "description": "ROSETTA VIRTIS data for ESC3-MTP019 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp019-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:34.281698", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC3-MTP019-V2.0", "title": "ROSETTA VIRTIS ESC3-MTP019 DATA", "description": "ROSETTA VIRTIS RAW data for ESC3-MTP019 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp019-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:35.279471", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC3-MTP020-V1.0", "title": "ROSETTA VIRTIS ESC3-MTP020 DATA", "description": "ROSETTA VIRTIS data for ESC3-MTP020 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp020-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:36.281604", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC3-MTP020-V2.0", "title": "ROSETTA VIRTIS ESC3-MTP020 DATA", "description": "ROSETTA VIRTIS RAW data for ESC3-MTP020 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp020-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:37.292384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC3-MTP021-V1.0", "title": "ROSETTA VIRTIS ESC3-MTP021 DATA", "description": "ROSETTA VIRTIS data for ESC3-MTP021 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp021-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:38.292447", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC3-MTP021-V2.0", "title": "ROSETTA VIRTIS ESC3-MTP021 DATA", "description": "ROSETTA VIRTIS RAW data for ESC3-MTP021 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc3-mtp021-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:39.338015", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC4-MTP022-V1.0", "title": "ROSETTA VIRTIS ESC4-MTP022 DATA", "description": "ROSETTA VIRTIS data for ESC4-MTP022 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp022-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:40.377534", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC4-MTP022-V2.0", "title": "ROSETTA VIRTIS ESC4-MTP022 DATA", "description": "ROSETTA VIRTIS RAW data for ESC4-MTP022 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp022-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:41.394576", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC4-MTP023-V1.0", "title": "ROSETTA VIRTIS ESC4-MTP023 DATA", "description": "ROSETTA VIRTIS data for ESC4-MTP023 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp023-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:42.310280", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC4-MTP023-V2.0", "title": "ROSETTA VIRTIS ESC4-MTP023 DATA", "description": "ROSETTA VIRTIS RAW data for ESC4-MTP023 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp023-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:43.313398", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC4-MTP024-V1.0", "title": "ROSETTA VIRTIS ESC4-MTP024 DATA", "description": "ROSETTA VIRTIS data for ESC4-MTP024 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:44.319375", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-ESC4-MTP024-V2.0", "title": "ROSETTA VIRTIS ESC4-MTP024 DATA", "description": "ROSETTA VIRTIS RAW data for ESC4-MTP024 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-esc4-mtp024-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:45.333472", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT1-MTP025-V1.0", "title": "ROSETTA VIRTIS EXT1-MTP025 DATA", "description": "ROSETTA VIRTIS data for EXT1-MTP025 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp025-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:46.323723", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT1-MTP025-V2.0", "title": "ROSETTA VIRTIS EXT1-MTP025 DATA", "description": "ROSETTA VIRTIS RAW data for EXT1-MTP025 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp025-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:47.330340", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT1-MTP026-V1.0", "title": "ROSETTA VIRTIS EXT1-MTP026 DATA", "description": "ROSETTA VIRTIS data for EXT1-MTP026 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp026-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:48.329374", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT1-MTP026-V2.0", "title": "ROSETTA VIRTIS EXT1-MTP026 DATA", "description": "ROSETTA VIRTIS RAW data for EXT1-MTP026 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp026-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:49.332522", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT1-MTP027-V1.0", "title": "ROSETTA VIRTIS EXT1-MTP027 DATA", "description": "ROSETTA VIRTIS data for EXT1-MTP027 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp027-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:50.341643", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT1-MTP027-V2.0", "title": "ROSETTA VIRTIS EXT1-MTP027 DATA", "description": "ROSETTA VIRTIS RAW data for EXT1-MTP027 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext1-mtp027-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:51.391916", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT2-MTP028-V1.0", "title": "ROSETTA VIRTIS EXT2-MTP028 DATA", "description": "ROSETTA VIRTIS data for EXT2-MTP028 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp028-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:52.405295", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT2-MTP028-V2.0", "title": "ROSETTA VIRTIS EXT2-MTP028 DATA", "description": "ROSETTA VIRTIS RAW data for EXT2-MTP028 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp028-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:53.347729", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT2-MTP029-V1.0", "title": "ROSETTA VIRTIS EXT2-MTP029 DATA", "description": "ROSETTA VIRTIS data for EXT2-MTP029 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp029-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:54.354309", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT2-MTP029-V2.0", "title": "ROSETTA VIRTIS EXT2-MTP029 DATA", "description": "ROSETTA VIRTIS RAW data for EXT2-MTP029 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp029-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:55.358740", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT2-MTP030-V1.0", "title": "ROSETTA VIRTIS EXT2-MTP030 DATA", "description": "ROSETTA VIRTIS data for EXT2-MTP030 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp030-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:56.364374", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT2-MTP030-V2.0", "title": "ROSETTA VIRTIS EXT2-MTP030 DATA", "description": "ROSETTA VIRTIS RAW data for EXT2-MTP030 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext2-mtp030-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:57.376697", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP031-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP031 DATA", "description": "ROSETTA VIRTIS data for EXT3-MTP031 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp031-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:58.372426", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP031-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP031 DATA", "description": "ROSETTA VIRTIS RAW data for EXT3-MTP031 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp031-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:15:59.375838", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP032-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP032 DATA", "description": "ROSETTA VIRTIS data for EXT3-MTP032 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp032-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:00.377504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP032-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP032 DATA", "description": "ROSETTA VIRTIS RAW data for EXT3-MTP032 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp032-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:01.373802", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP033-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP033 DATA", "description": "ROSETTA VIRTIS data for EXT3-MTP033 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp033-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:02.403586", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP033-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP033 DATA", "description": "ROSETTA VIRTIS RAW data for EXT3-MTP033 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp033-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:03.454148", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP034-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP034 DATA", "description": "ROSETTA VIRTIS data for EXT3-MTP034 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp034-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:04.464660", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP034-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP034 DATA", "description": "ROSETTA VIRTIS RAW data for EXT3-MTP034 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp034-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:05.393444", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP035-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP035 DATA", "description": "ROSETTA VIRTIS data for EXT3-MTP035 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp035-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:06.403420", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-EXT3-MTP035-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP035 DATA", "description": "ROSETTA VIRTIS RAW data for EXT3-MTP035 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-ext3-mtp035-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:07.409775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-COM-V2.0", "title": "ROSETTA VIRTIS PRL-COM DATA", "description": "ROSETTA VIRTIS RAW data for PRL-COM phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-com-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:08.410069", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP004-V1.0", "title": "ROSETTA VIRTIS PRL-MTP004 DATA", "description": "ROSETTA VIRTIS data for PRL-MTP004 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp004-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:09.417227", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP004-V2.0", "title": "ROSETTA VIRTIS PRL-MTP004 DATA", "description": "ROSETTA VIRTIS RAW data for PRL-MTP004 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp004-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:10.418188", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP005-V1.0", "title": "ROSETTA VIRTIS PRL-MTP005 DATA", "description": "ROSETTA VIRTIS data for PRL-MTP005 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp005-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:11.416314", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP005-V2.0", "title": "ROSETTA VIRTIS PRL-MTP005 DATA", "description": "ROSETTA VIRTIS RAW data for PRL-MTP005 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp005-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:12.428978", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP006-V1.0", "title": "ROSETTA VIRTIS PRL-MTP006 DATA", "description": "ROSETTA VIRTIS data for PRL-MTP006 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp006-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:13.426418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP006-V2.0", "title": "ROSETTA VIRTIS PRL-MTP006 DATA", "description": "ROSETTA VIRTIS RAW data for PRL-MTP006 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp006-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:14.455513", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP007-V1.0", "title": "ROSETTA VIRTIS PRL-MTP007 DATA", "description": "ROSETTA VIRTIS data for PRL-MTP007 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp007-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:15.515749", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP007-V2.0", "title": "ROSETTA VIRTIS PRL-MTP007 DATA", "description": "ROSETTA VIRTIS RAW data for PRL-MTP007 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp007-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:16.523926", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP008-V1.0", "title": "ROSETTA VIRTIS PRL-MTP008 DATA", "description": "ROSETTA VIRTIS data for PRL-MTP008 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:17.439165", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP008-V2.0", "title": "ROSETTA VIRTIS PRL-MTP008 DATA", "description": "ROSETTA VIRTIS RAW data for PRL-MTP008 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp008-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:18.442575", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP009-V1.0", "title": "ROSETTA VIRTIS PRL-MTP009 DATA", "description": "ROSETTA VIRTIS data for PRL-MTP009 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:19.448753", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-2-PRL-MTP009-V2.0", "title": "ROSETTA VIRTIS PRL-MTP009 DATA", "description": "ROSETTA VIRTIS RAW data for PRL-MTP009 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-2-prl-mtp009-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:20.451419", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC1-MTP010-V1.0", "title": "ROSETTA VIRTIS ESC1-MTP010 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC1-MTP010 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp010-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:21.458200", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC1-MTP010-V2.0", "title": "ROSETTA VIRTIS ESC1-MTP010 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC1-MTP010 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp010-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:22.459512", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC1-MTP011-V1.0", "title": "ROSETTA VIRTIS ESC1-MTP011 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC1-MTP011 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:23.466550", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC1-MTP011-V2.0", "title": "ROSETTA VIRTIS ESC1-MTP011 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC1-MTP011 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp011-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:24.465376", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC1-MTP012-V1.0", "title": "ROSETTA VIRTIS ESC1-MTP012 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC1-MTP012 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp012-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:25.474633", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC1-MTP012-V2.0", "title": "ROSETTA VIRTIS ESC1-MTP012 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC1-MTP012 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp012-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:26.526879", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC1-MTP013-V1.0", "title": "ROSETTA VIRTIS ESC1-MTP013 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC1-MTP013 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp013-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:27.533705", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC1-MTP013-V2.0", "title": "ROSETTA VIRTIS ESC1-MTP013 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC1-MTP013 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc1-mtp013-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:28.477664", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC2-MTP014-V1.0", "title": "ROSETTA VIRTIS ESC2-MTP014 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC2-MTP014 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:29.483111", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC2-MTP014-V2.0", "title": "ROSETTA VIRTIS ESC2-MTP014 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC2-MTP014 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp014-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:30.483401", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC2-MTP015-V1.0", "title": "ROSETTA VIRTIS ESC2-MTP015 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC2-MTP015 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:31.486945", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC2-MTP015-V2.0", "title": "ROSETTA VIRTIS ESC2-MTP015 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC2-MTP015 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp015-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:32.492830", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC2-MTP016-V1.0", "title": "ROSETTA VIRTIS ESC2-MTP016 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC2-MTP016 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp016-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:33.496895", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC2-MTP016-V2.0", "title": "ROSETTA VIRTIS ESC2-MTP016 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC2-MTP016 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp016-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:34.497866", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC2-MTP017-V1.0", "title": "ROSETTA VIRTIS ESC2-MTP017 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC2-MTP017 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp017-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:35.502192", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC2-MTP017-V2.0", "title": "ROSETTA VIRTIS ESC2-MTP017 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC2-MTP017 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc2-mtp017-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:36.509716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC3-MTP018-V1.0", "title": "ROSETTA VIRTIS ESC3-MTP018 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC3-MTP018 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp018-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:37.541490", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC3-MTP018-V2.0", "title": "ROSETTA VIRTIS ESC3-MTP018 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC3-MTP018 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp018-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:38.579058", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC3-MTP019-V1.0", "title": "ROSETTA VIRTIS ESC3-MTP019 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC3-MTP019 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp019-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:39.593009", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC3-MTP019-V2.0", "title": "ROSETTA VIRTIS ESC3-MTP019 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC3-MTP019 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp019-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:40.519969", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC3-MTP020-V1.0", "title": "ROSETTA VIRTIS ESC3-MTP020 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC3-MTP020 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp020-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:41.525480", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC3-MTP020-V2.0", "title": "ROSETTA VIRTIS ESC3-MTP020 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC3-MTP020 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp020-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:42.527644", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC3-MTP021-V1.0", "title": "ROSETTA VIRTIS ESC3-MTP021 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC3-MTP021 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp021-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:43.537541", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC3-MTP021-V2.0", "title": "ROSETTA VIRTIS ESC3-MTP021 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC3-MTP021 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc3-mtp021-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:44.538161", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC4-MTP022-V1.0", "title": "ROSETTA VIRTIS ESC4-MTP022 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC4-MTP022 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp022-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:45.553007", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC4-MTP022-V2.0", "title": "ROSETTA VIRTIS ESC4-MTP022 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC4-MTP022 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp022-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:46.547956", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC4-MTP023-V1.0", "title": "ROSETTA VIRTIS ESC4-MTP023 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC4-MTP023 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp023-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:47.555307", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC4-MTP023-V2.0", "title": "ROSETTA VIRTIS ESC4-MTP023 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC4-MTP023 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp023-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:48.652716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC4-MTP024-V1.0", "title": "ROSETTA VIRTIS ESC4-MTP024 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC4-MTP024 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:49.594149", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-ESC4-MTP024-V2.0", "title": "ROSETTA VIRTIS ESC4-MTP024 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for ESC4-MTP024 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-esc4-mtp024-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:50.640174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT1-MTP025-V1.0", "title": "ROSETTA VIRTIS EXT1-MTP025 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT1-MTP025 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp025-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:51.651490", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT1-MTP025-V2.0", "title": "ROSETTA VIRTIS EXT1-MTP025 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT1-MTP025 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp025-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:52.570660", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT1-MTP026-V1.0", "title": "ROSETTA VIRTIS EXT1-MTP026 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT1-MTP026 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp026-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:53.567628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT1-MTP026-V2.0", "title": "ROSETTA VIRTIS EXT1-MTP026 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT1-MTP026 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp026-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:54.566496", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT1-MTP027-V1.0", "title": "ROSETTA VIRTIS EXT1-MTP027 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT1-MTP027 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp027-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:55.576601", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT1-MTP027-V2.0", "title": "ROSETTA VIRTIS EXT1-MTP027 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT1-MTP027 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext1-mtp027-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:56.588960", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT2-MTP028-V1.0", "title": "ROSETTA VIRTIS EXT2-MTP028 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT2-MTP028 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp028-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:57.583544", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT2-MTP028-V2.0", "title": "ROSETTA VIRTIS EXT2-MTP028 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT2-MTP028 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp028-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:58.588769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT2-MTP029-V1.0", "title": "ROSETTA VIRTIS EXT2-MTP029 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT2-MTP029 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp029-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:16:59.589593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT2-MTP029-V2.0", "title": "ROSETTA VIRTIS EXT2-MTP029 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT2-MTP029 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp029-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:00.597908", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT2-MTP030-V1.0", "title": "ROSETTA VIRTIS EXT2-MTP030 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT2-MTP030 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp030-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:01.646224", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT2-MTP030-V2.0", "title": "ROSETTA VIRTIS EXT2-MTP030 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT2-MTP030 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext2-mtp030-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:02.661880", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP031-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP031 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP031 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp031-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:03.604107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP031-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP031 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP031 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp031-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:04.606561", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP032-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP032 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP032 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp032-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:05.615823", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP032-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP032 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP032 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp032-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:06.611955", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP033-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP033 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP033 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp033-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:07.620201", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP033-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP033 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP033 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp033-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:08.630005", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP034-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP034 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP034 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp034-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:09.633452", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP034-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP034 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP034 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp034-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:10.637059", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP035-V1.0", "title": "ROSETTA VIRTIS EXT3-MTP035 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP035 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp035-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:11.635426", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-EXT3-MTP035-V2.0", "title": "ROSETTA VIRTIS EXT3-MTP035 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for EXT3-MTP035 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-ext3-mtp035-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:12.654294", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP004-V1.0", "title": "ROSETTA VIRTIS PRL-MTP004 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP004 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp004-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:13.708798", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP004-V2.0", "title": "ROSETTA VIRTIS PRL-MTP004 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP004 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp004-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:14.717711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP005-V1.0", "title": "ROSETTA VIRTIS PRL-MTP005 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP005 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp005-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:15.652461", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP005-V2.0", "title": "ROSETTA VIRTIS PRL-MTP005 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP005 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp005-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:16.655716", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP006-V1.0", "title": "ROSETTA VIRTIS PRL-MTP006 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP006 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp006-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:17.653381", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP006-V2.0", "title": "ROSETTA VIRTIS PRL-MTP006 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP006 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp006-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:18.660239", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP007-V1.0", "title": "ROSETTA VIRTIS PRL-MTP007 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP007 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp007-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:19.662046", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP007-V2.0", "title": "ROSETTA VIRTIS PRL-MTP007 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP007 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp007-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:20.670168", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP008-V1.0", "title": "ROSETTA VIRTIS PRL-MTP008 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP008 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:21.674952", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP008-V2.0", "title": "ROSETTA VIRTIS PRL-MTP008 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP008 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp008-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:22.682327", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP009-V1.0", "title": "ROSETTA VIRTIS PRL-MTP009 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP009 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:23.682138", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-3-PRL-MTP009-V2.0", "title": "ROSETTA VIRTIS PRL-MTP009 LEVEL 3 DATA", "description": "ROSETTA VIRTIS level 3 data for PRL-MTP009 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-3-prl-mtp009-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:24.718549", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C-VIRTIS-5-67P-MAPS-V1.0", "title": "ROSETTA-ORBITER 67P VIRTIS 5 MAPS V1.0", "description": "ROSETTA VIRTIS level 5 data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c-virtis-5-67p-maps-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:25.767521", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-ALICE-2-CR4A-V1.0", "title": "ROSETTA ALICE IN CRUISE 4A PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:26.778089", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-ALICE-2-RVM1-V1.0", "title": "ROSETTA ALICE IN RVM1 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the RVM1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-2-rvm1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:27.695665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-ALICE-3-CR4A-V1.0", "title": "ROSETTA ALICE IN CRUISE 4A PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:28.698787", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-ALICE-3-EAR1-V1.0", "title": "ROSETTA ALICE IN EARTH 1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the first Earth swing-by phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-3-ear1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:29.702756", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-ALICE-4-CR4A-V1.0", "title": "ROSETTA ALICE IN AST 1 PHASE, RESAMPLED DATA", "description": "This volume contains calibrated, resampled data obtained by the ALICE instrument on the Rosetta Orbiter during the Actice Checkout, PC8, which occured during the Cruise 4A mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-alice-4-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:30.707473", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-COSIMA-3-V2.0", "title": "ROSETTA COSIMA CALIBRATION DATA UPTO COMET PHASE", "description": "This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-cosima-3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:31.712608", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-COSIMA-3-V3.0", "title": "ROSETTA COSIMA CALIBRATION DATA UPTO COMET PHASE", "description": "This volume contains ROSETTA COSIMA instrument data starting from the ground calibration phase up to the comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-cosima-3-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:32.717508", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-CVP-FULL-V1.0", "title": "ROMID_1001", "description": "Commissioning Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-cvp-full-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:33.722296", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-CVP-FULL-V3.0", "title": "MIDAS SCIENCE DATA FOR THE COMMISSIONING PHASE", "description": "Commissioning Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-cvp-full-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:34.724697", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-GRND-REF-2008-V1.0", "title": "MIDAS SCIENCE DATA FOR THE GROUND PHASE", "description": "Reference Measurement Data of 2008", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:35.730198", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-GRND-REF-2009-V1.0", "title": "MIDAS SCIENCE DATA FOR THE GROUND PHASE", "description": "Ground-based Reference Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:36.776294", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-GRND-REF-2010-V1.0", "title": "MIDAS SCIENCE DATA FOR THE GROUND PHASE", "description": "Ground-based Reference Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2010-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:37.787267", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-GRND-REF-2011-V1.0", "title": "MIDAS SCIENCE DATA FOR THE GROUND PHASE", "description": "Ground-based Reference Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:38.736269", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-GRND-REF-2013-V1.0", "title": "MIDAS SCIENCE DATA FOR THE GROUND PHASE", "description": "Ground-based Reference Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2013-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:39.740839", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-GRND-REF-2014-V1.0", "title": "MIDAS SCIENCE DATA FOR THE GROUND PHASE", "description": "Ground-based Reference Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:40.744291", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIDAS-3-GRND-REF-2015-V1.0", "title": "MIDAS SCIENCE DATA FOR THE GROUND PHASE", "description": "Ground-based Reference Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-midas-3-grnd-ref-2015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:41.748133", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-MIRO-2-GRND-THERMAL-VAC-V1.0", "title": "RAW MIRO DATA FOR THE GROUND PHASE", "description": "This volume is the first containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during ground testing at NASA/JPL.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-miro-2-grnd-thermal-vac-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:42.749351", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-NAVCAM-2-CR4B-V1.0", "title": "NAVCAM RAW DATA FOR CRUISE 4-2 PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 4-2 Phase, Feb - Sept 2010", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cr4b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:43.754246", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-NAVCAM-2-CR4B-V1.1", "title": "NAVCAM RAW DATA FOR CRUISE 4-2 PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 4-2 Phase, Feb - Sept 2009", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cr4b-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:44.758196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-NAVCAM-2-CVP2-V1.0", "title": "NAVCAM RAW DATA FROM COMISSIONING 2", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the COMISSIONING 2 PHASE.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cvp2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:45.765465", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-NAVCAM-2-CVP2-V1.1", "title": "NAVCAM RAW DATA FROM COMISSIONING 2", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the COMISSIONING 2 PHASE.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-cvp2-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:46.763689", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-NAVCAM-2-RVM1-V1.0", "title": "NAVCAM RAW DATA FOR RVM1", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the RVM1 phase, which took place between 2010-09-04 and 2011-07-13.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-rvm1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:47.786793", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-NAVCAM-2-RVM1-V1.1", "title": "NAVCAM RAW DATA FOR RVM1", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the RVM1 phase, taken on 25th March 2011.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-navcam-2-rvm1-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:48.835499", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-RPCIES-2-CVP-V1.0", "title": "RPCIES RAW DATA FOR THE COMMISSIONING PHASE", "description": "This volume contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the complete commissioning phase (CVP) between March and October 2004.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcies-2-cvp-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:49.845256", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-RPCMIP-3-CR2-V1.0", "title": "RPCMIP CRUISE 2 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:50.783665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-RPCMIP-3-CR4A-V1.0", "title": "RPCMIP CRUISE 4-1 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:51.785748", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-RPCMIP-3-CR4B-V1.0", "title": "RPCMIP CRUISE 4-2 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr4b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:52.790321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-RPCMIP-3-CR5-V1.0", "title": "RPCMIP CRUISE 5 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cr5-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:53.791527", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-RPCMIP-3-CVP1-V1.0", "title": "RPCMIP COMMISSIONING 1 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:54.794886", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-RPCMIP-3-CVP2-V1.0", "title": "RPCMIP COMMISSIONING 2 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-cvp2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:55.798477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL-RPCMIP-3-RVM1-V1.0", "title": "RPCMIP RENDEZVOUS MANOEUVRE 1 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal-rpcmip-3-rvm1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:56.804020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL/E-ALICE-2-EAR2-V1.0", "title": "ROSETTA ALICE IN EARTH 2 PHASE, EXPERIMENT DATA", "description": "This volume contains unprocessed (raw) data obtained by the ALICE instrument on the Rosetta Orbiter during the second Earth swing-by phase of the mission. Also included are data from payload checkout #6 (PC6).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-2-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:57.806752", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL/E-ALICE-3-EAR2-V1.0", "title": "ROSETTA ALICE IN EARTH 2 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the second Earth swing-by phase of the mission. Also included are data from payload checkout #6 (PC6).", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_e-alice-3-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:58.812740", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL/J/M-ALICE-2-MARS-V1.0", "title": "ROSETTA ALICE IN THE MARS PHASE, EXPERIMENT DATA", "description": "This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the Mars swing-by phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-2-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:17:59.841520", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL/J/M-ALICE-3-MARS-V1.0", "title": "ROSETTA ALICE IN THE MARS PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Mars swing-by phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_j_m-alice-3-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:00.893359", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL/X-ALICE-2-CVP2-V1.0", "title": "ROSETTA ALICE COMMISSIONING 2 PHASE, EXPERIMENT DATA", "description": "This volume contains unprocessed data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 2 phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-cvp2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:01.905414", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL/X-ALICE-2-EAR1-V1.0", "title": "ROSETTA ALICE IN EARTH 1 PHASE, EXPERIMENT DATA", "description": "This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the first Earth swing-by phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-2-ear1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:02.828560", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-CAL/X-ALICE-3-CVP2-V1.0", "title": "ROSETTA ALICE COMMISSIONING 2 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 2 phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-cal_x-alice-3-cvp2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:03.825770", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC1-V1.0", "title": "ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:04.833466", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC1-V2.0", "title": "ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:05.832432", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC1-V3.0", "title": "ROSETTA ALICE IN ESC1 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:06.843384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC2-V1.0", "title": "ROSETTA ALICE IN ESC2 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:07.846212", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC2-V2.0", "title": "ROSETTA ALICE IN ESC2 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:08.846218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC3-V1.0", "title": "ROSETTA ALICE IN ESC3 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:09.848910", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC3-V2.0", "title": "ROSETTA ALICE IN ESC3 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:10.852106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC4-V1.0", "title": "ROSETTA ALICE IN ESC4 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:11.897243", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-ESC4-V2.0", "title": "ROSETTA ALICE IN ESC4 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:12.916253", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-EXT1-V1.0", "title": "ROSETTA ALICE IN EXT1 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:13.862860", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-EXT1-V2.0", "title": "ROSETTA ALICE IN EXT1 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:14.867471", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-EXT2-V1.0", "title": "ROSETTA ALICE IN EXT2 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:15.868696", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-EXT2-V2.0", "title": "ROSETTA ALICE IN EXT2 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:16.876893", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-EXT3-V1.0", "title": "ROSETTA ALICE IN EXT3 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:17.877764", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-EXT3-V2.0", "title": "ROSETTA ALICE IN EXT3 PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:18.879829", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-PRL-V1.0", "title": "ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:19.883517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-PRL-V2.0", "title": "ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:20.890020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-2-PRL-V3.0", "title": "ROSETTA ALICE IN PRL PHASE, EXPERIMENT DATA", "description": "This volume contains uncalibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-2-prl-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:21.890916", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC1-V1.0", "title": "ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:22.909912", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC1-V2.0", "title": "ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:23.965141", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC1-V3.0", "title": "ROSETTA ALICE IN ESC1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:24.974328", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC2-V1.0", "title": "ROSETTA ALICE IN ESC2 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:25.904115", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC2-V2.0", "title": "ROSETTA ALICE IN ESC2 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:26.908619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC3-V1.0", "title": "ROSETTA ALICE IN ESC3 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:27.911890", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC3-V2.0", "title": "ROSETTA ALICE IN ESC3 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:28.918627", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC4-V1.0", "title": "ROSETTA ALICE IN ESC4 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:30.033154", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-ESC4-V2.0", "title": "ROSETTA ALICE IN ESC4 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:30.931551", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-EXT1-V1.0", "title": "ROSETTA ALICE IN EXT1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:31.932563", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-EXT1-V2.0", "title": "ROSETTA ALICE IN EXT1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:32.935946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-EXT2-V1.0", "title": "ROSETTA ALICE IN EXT2 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:33.936503", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-EXT2-V2.0", "title": "ROSETTA ALICE IN EXT2 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:34.967470", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-EXT3-V1.0", "title": "ROSETTA ALICE IN EXT3 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:36.018139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-EXT3-V2.0", "title": "ROSETTA ALICE IN EXT3 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:37.034271", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-PRL-V1.0", "title": "ROSETTA ALICE IN PRL PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:37.954460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-PRL-V2.0", "title": "ROSETTA ALICE IN PRL PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:38.959339", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-3-PRL-V3.0", "title": "ROSETTA ALICE IN PRL PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-3-prl-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:39.966290", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC1-V1.0", "title": "ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:40.967758", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC1-V2.0", "title": "ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:41.975726", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC1-V3.0", "title": "ROSETTA ALICE IN ESC1 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc1-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:42.981191", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC2-V1.0", "title": "ROSETTA ALICE IN ESC2 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:43.984786", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC2-V2.0", "title": "ROSETTA ALICE IN ESC2 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:44.997083", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC3-V1.0", "title": "ROSETTA ALICE IN ESC3 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:45.992126", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC3-V2.0", "title": "ROSETTA ALICE IN ESC3 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:47.028829", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC4-V1.0", "title": "ROSETTA ALICE IN ESC4 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc4-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:48.079934", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-ESC4-V2.0", "title": "ROSETTA ALICE IN ESC4 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Comet Escort 4 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-esc4-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:49.092004", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-EXT1-V1.0", "title": "ROSETTA ALICE IN EXT1 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:50.005333", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-EXT1-V2.0", "title": "ROSETTA ALICE IN EXT1 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:51.009533", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-EXT2-V1.0", "title": "ROSETTA ALICE IN EXT2 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:52.012684", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-EXT2-V2.0", "title": "ROSETTA ALICE IN EXT2 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:53.019190", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-EXT3-V1.0", "title": "ROSETTA ALICE IN EXT3 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:54.027465", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-EXT3-V2.0", "title": "ROSETTA ALICE IN EXT3 PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Rosetta Extension 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-ext3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:55.023218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-PRL-V1.0", "title": "ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:56.030165", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-PRL-V2.0", "title": "ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:57.036229", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL-ALICE-4-PRL-V3.0", "title": "ROSETTA ALICE IN PRL PHASE, REFORMATTED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the Prelanding mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal-alice-4-prl-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:58.041828", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL/X-ALICE-2-CR2-V1.0", "title": "ROSETTA ALICE IN CRUISE 2 PHASE, EXPERIMENT DATA", "description": "This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the second cruise phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:18:59.086957", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL/X-ALICE-2-CVP1-V1.0", "title": "ROSETTA ALICE COMMISSIONING 1 PHASE, EXPERIMENT DATA", "description": "This volume contains unprocessed data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 1 phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-2-cvp1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:00.098625", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL/X-ALICE-3-CR2-V1.0", "title": "ROSETTA ALICE IN CRUISE 2 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the second cruise phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:01.050048", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/CAL/X-ALICE-3-CVP1-V1.0", "title": "ROSETTA ALICE COMMISSIONING 1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the Alice instrument on the Rosetta Orbiter during the Commissining 1 phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_cal_x-alice-3-cvp1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:02.052554", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/X-NAVCAM-2-CR2-V1.0", "title": "NAVCAM RAW DATA FOR CRUISE 2 PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 2 Phase, June 2005 - March 2006", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_x-navcam-2-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:03.055721", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-C/X-NAVCAM-2-CR2-V1.1", "title": "NAVCAM RAW DATA FOR CRUISE 2 PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise 2 Phase, June 2005 - March 2006", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-c_x-navcam-2-cr2-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:04.058509", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-D-MIDAS-3-PRL-SAMPLES-V1.0", "title": "RAW MIDAS DATA FOR THE PRELANDING PHASE", "description": "Philae Prelanding Phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:05.061221", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-D-MIDAS-3-PRL-SAMPLES-V2.0", "title": "MIDAS SCIENCE DATA FOR THE PRELANDING PHASE", "description": "Philae Prelanding Phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:06.064830", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-D-MIDAS-3-PRL-SAMPLES-V3.0", "title": "MIDAS SCIENCE DATA FOR THE PRELANDING PHASE", "description": "Prelanding Phase Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-d-midas-3-prl-samples-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:07.069945", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-MIRO-2-EAR1-EARTH1-V1.0", "title": "RAW MIRO DATA FOR THE EARTH FLY-BY 1 PHASE", "description": "This volume is the third containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear1-earth1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:08.076044", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-MIRO-2-EAR2-EARTH2-V1.0", "title": "RAW MIRO DATA FOR THE EARTH FLY-BY 2 PHASE", "description": "This volume is the 8th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-2-ear2-earth2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:09.077024", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-MIRO-3-EAR1-EARTH1-V1.0", "title": "CALIBRATED MIRO DATA FOR THE EARTH FLY-BY 1 PHASE", "description": "This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Earth Swing-by 1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear1-earth1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:10.096872", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-MIRO-3-EAR1-EARTH1-V1.1", "title": "CALIBRATED MIRO DATA FOR THE EARTH FLY-BY 1 PHASE", "description": "This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Earth Swing-by 1 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear1-earth1-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:11.154029", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-MIRO-3-EAR2-EARTH2-V1.0", "title": "RAW MIRO DATA FOR THE EARTH FLY-BY 2 PHASE", "description": "This volume is the 9th containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Earth Swing-by 2 Mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-miro-3-ear2-earth2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:12.158938", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-NAVCAM-2-EAR1-V1.0", "title": "NAVCAM RAW DATA FOR EARTH 1 SWINGBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 1 Swingby Phase of 4 March 2005 to 5 March 2005, with closest approach taking place on 4 March 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-navcam-2-ear1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:13.089515", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-NAVCAM-2-EAR1-V1.1", "title": "NAVCAM RAW DATA FOR EARTH 1 SWINGBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 1 Swingby Phase of 4 March 2005 to 5 March 2005, with closest approach taking place on 4 March 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-navcam-2-ear1-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:14.102443", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear1-earthswingby1-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:15.154777", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-2-EAR1-EARTHSWINGBY1-V2.0", "title": "RAW OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear1-earthswingby1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:16.102582", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear2-earthswingby2-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:17.156849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-2-EAR2-EARTHSWINGBY2-V2.0", "title": "RAW OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear2-earthswingby2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:18.118695", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V1.2", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear3-earthswingby3-v1.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:19.167927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-2-EAR3-EARTHSWINGBY3-V2.0", "title": "RAW OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-2-ear3-earthswingby3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:20.117557", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear1-earthswingby1-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:21.164525", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-3-EAR1-EARTHSWINGBY1-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear1-earthswingby1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:22.154532", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear2-earthswingby2-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:23.267766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-3-EAR2-EARTHSWINGBY2-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear2-earthswingby2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:24.220951", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear3-earthswingby3-v1.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:25.268626", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-3-ear3-earthswingby3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:26.141179", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR1-EARTH-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:27.144471", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR1-EARTH-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:28.150565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR1-EARTH-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earth-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:29.154927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR1-EARTHSWINGBY1-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear1-earthswingby1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:30.152698", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR2-EARTH-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:31.161194", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR2-EARTH-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:32.160929", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR2-EARTH-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earth-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:33.168603", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR2-EARTHSWINGBY2-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear2-earthswingby2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:34.216129", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR3-EARTH-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:35.261594", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR3-EARTH-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:36.180861", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR3-EARTH-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earth-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:37.185867", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSINAC-4-EAR3-EARTHSWINGBY3-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osinac-4-ear3-earthswingby3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:38.188204", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear1-earthswingby1-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:39.254663", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-2-EAR1-EARTHSWINGBY1-V2.0", "title": "RAW OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear1-earthswingby1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:40.192036", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear2-earthswingby2-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:41.250316", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-2-EAR2-EARTHSWINGBY2-V2.0", "title": "RAW OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear2-earthswingby2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:42.201146", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V1.2", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear3-earthswingby3-v1.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:43.260371", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-2-EAR3-EARTHSWINGBY3-V2.0", "title": "RAW OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-2-ear3-earthswingby3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:44.212546", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear1-earthswingby1-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:45.265194", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-3-EAR1-EARTHSWINGBY1-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear1-earthswingby1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:46.275464", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear2-earthswingby2-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:47.330486", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-3-EAR2-EARTHSWINGBY2-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear2-earthswingby2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:48.225457", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V1.2", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear3-earthswingby3-v1.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:49.284141", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-3-EAR3-EARTHSWINGBY3-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-3-ear3-earthswingby3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:50.229434", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR1-EARTH-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:51.240013", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR1-EARTH-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:52.240302", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR1-EARTH-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earth-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:53.244137", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR1-EARTHSWINGBY1-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 1 mission phase, covering the period from 2004-10-17T00:00:00.000 to 2005-04-04T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear1-earthswingby1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:54.249053", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR2-EARTH-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:55.246811", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR2-EARTH-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:56.256051", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR2-EARTH-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earth-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:57.283438", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR2-EARTHSWINGBY2-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 2 mission phase, covering the period from 2007-09-13T00:00:00.000 to 2008-01-27T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear2-earthswingby2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:58.333536", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR3-EARTH-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:19:59.346377", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR3-EARTH-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:00.268840", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR3-EARTH-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earth-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:01.276015", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-OSIWAC-4-EAR3-EARTHSWINGBY3-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR EARTH SWING-BY 3 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the EARTH SWING-BY 3 mission phase, covering the period from 2009-09-14T00:00:00.000 to 2009-12-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-osiwac-4-ear3-earthswingby3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:02.275519", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-2-EAR1-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:03.283755", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-2-EAR1-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER EARTH RPCICA 2 EAR1 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:04.283929", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-2-EAR1-RAW-V3.0", "title": "ROSETTA-ORBITER EARTH RPCICA 2 EAR1 EDITED", "description": "ROSETTA-ORBITER EARTH RPCICA 2 EAR1 UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear1-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:05.290027", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-2-EAR2-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:06.290875", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-2-EAR2-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER EARTH RPCICA 2 EAR2 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:07.295680", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-2-EAR2-RAW-V3.0", "title": "ROSETTA-ORBITER EARTH RPCICA 2 EAR2 EDITED", "description": "ROSETTA-ORBITER EARTH RPCICA 2 EAR2 UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear2-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:08.300050", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-2-EAR3-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER EARTH RPCICA 2 EAR3 UNCALIBRATED V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear3-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:09.342018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-2-EAR3-RAW-V2.0", "title": "ROSETTA-ORBITER EARTH RPCICA 2 EAR3 EDITED", "description": "ROSETTA-ORBITER EARTH RPCICA 2 EAR3 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-2-ear3-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:10.395157", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-3-EAR1-CALIB-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 3 EAR1 CALIBRATED", "description": "ROSETTA-ORBITER EARTH RPCICA 3 EAR1 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear1-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:11.506802", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-3-EAR2-CALIB-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 3 EAR2 CALIBRATED", "description": "ROSETTA-ORBITER EARTH RPCICA 3 EAR2 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear2-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:12.316580", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-3-EAR3-CALIB-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 3 EAR3 CALIBRATED", "description": "ROSETTA-ORBITER EARTH RPCICA 3 EAR3 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-3-ear3-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:13.317163", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-4-EAR1-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR_CTS", "description": "ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:14.310927", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-4-EAR1-CORR-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR", "description": "ROSETTA-ORBITER EARTH RPCICA 4 EAR1 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear1-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:15.322560", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-4-EAR2-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR_CTS", "description": "ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:16.319615", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-4-EAR2-CORR-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR", "description": "ROSETTA-ORBITER EARTH RPCICA 4 EAR2 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear2-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:17.332846", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-4-EAR3-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR_CTS", "description": "ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:18.331387", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCICA-4-EAR3-CORR-V1.0", "title": "ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR", "description": "ROSETTA-ORBITER EARTH RPCICA 4 EAR3 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcica-4-ear3-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:19.335464", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCIES-2-EAR1-V1.0", "title": "RPCIES RAW DATA FOR EARTH SWINGBY 1", "description": "This data set contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the first Earth Swingby (EAR1) in March 2005. The swingby took place between March 1 and March 7 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:20.351418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCIES-2-EAR3-V1.0", "title": "RPCIES RAW DATA FOR THE EARTH SWINGBY 3", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Earth Swingby 3 in November 2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcies-2-ear3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:21.399200", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCLAP-2-EAR1-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR EAR1", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 1 phase in 2004-2005 where the primary target was the planet EARTH. This particular data set contains data for the time period 2004-10-17T00:00:00.000 -- 2005-04-05T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear1-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:22.412287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCLAP-2-EAR2-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR EAR2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 2 phase in 2007-2008 where the primary target was the planet EARTH. This particular data set contains data for the time period 2007-09-13T00:00:00.000 -- 2008-01-28T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear2-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:23.355714", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCLAP-2-EAR3-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR EAR3", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 3 phase in 2009 where the primary target was the planet EARTH. This particular data set contains data for the time period 2009-09-14T00:00:00.000 -- 2009-12-14T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-2-ear3-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:24.360964", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCLAP-3-EAR1-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR EAR1", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 1 phase in 2004-2005 where the primary target was the planet EARTH. This particular data set contains data for the time period 2004-10-17T00:00:00.000 -- 2005-04-05T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear1-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:25.363165", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCLAP-3-EAR2-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR EAR2", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 2 phase in 2007-2008 where the primary target was the planet EARTH. This particular data set contains data for the time period 2007-09-13T00:00:00.000 -- 2008-01-28T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear2-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:26.369220", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCLAP-3-EAR3-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR EAR3", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the EARTH SWING-BY 3 phase in 2009 where the primary target was the planet EARTH. This particular data set contains data for the time period 2009-09-14T00:00:00.000 -- 2009-12-14T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpclap-3-ear3-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:27.369521", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-2-EAR1-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE FIRST EARTH FLYBY", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear1-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:28.378197", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-2-EAR1-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE FIRST EARTH SWINGBY (EAR1)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear1-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:29.382044", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-2-EAR2-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE SECOND EARTH FLYBY", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear2-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:30.380093", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-2-EAR2-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE SECOND EARTH SWINGBY (EAR2)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear2-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:31.383533", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-2-EAR3-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE THIRD EARTH SWINGBY", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear3-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:32.410560", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-2-EAR3-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE THIRD EARTH SWINGBY (EAR3)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-2-ear3-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:33.457650", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-3-EAR1-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE FIRST EARTH FLYBY", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear1-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:34.472435", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-3-EAR1-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: FIRST EARTH SWINGBY (EAR1)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear1-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:35.410405", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-3-EAR2-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE SECOND EARTH FLYBY", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear2-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:36.401796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-3-EAR2-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: SECOND EARTH SWINGBY (EAR2)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear2-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:37.403351", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-3-EAR3-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE THIRD EARTH SWINGBY", "description": "This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear3-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:38.407766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-3-EAR3-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: THIRD EARTH SWINGBY (EAR3)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-3-ear3-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:39.416699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-4-EAR1-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE FIRST EARTH FLYBY", "description": "This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the first Earth Flyby (EAR1) in March 2005. The very Flyby took place between March 1 and March 7,2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 from March 29,2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear1-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:40.417470", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-4-EAR1-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: FIRST EARTH SWINGBY (EAR1)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the FIRST EARTH SWINGBY (EAR1). The very Flyby took place between March 1 and March 7, 2005 with the Closest Approach on March 4, 2005 at 22:09 UTC. The dataset also contains the data from the Passive Checkout PC0 on March 29, 2005.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear1-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:41.421221", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-4-EAR2-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE SECOND EARTH FLYBY", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the second Earth Flyby (EAR2) in November 2007. The very Flyby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event also data are available for the Passive Checkout PC7 taking place on January 7-8, 2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear2-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:42.422598", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-4-EAR2-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: SECOND EARTH SWINGBY (EAR2)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the SECOND EARTH SWINGBY (EAR2) in November 2007. The very Swingby took place between November 7 and November 20 with the Closest Approach on November 13,2007 at 20:58 UTC. Besides this event data are also available for the Passive Checkout PC7taking place on January 7-8, 2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear2-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:43.430311", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-4-EAR3-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE THIRD EARTH SWINGBY", "description": "This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the third Earth Swingby, called EAR3, for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9-16. Afterwards a MAG-LAP interference test as rest of PC10 was executed on November 16/17.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear3-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:44.469625", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMAG-4-EAR3-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: THIRD EARTH SWINGBY (EAR3)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the THIRD EARTH SWINGBY (EAR3), for the time interval September 2009 until December 2009. Data are available for the the Payload Checkout PC10 taking place from September 20 until October 2.The very Earth Swingby Phase happened from November 9.-16. with C/A on November 13, 2009. Afterwards a MAG-LAP interference test as a remainder of PC10 was executed on November 16/17.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmag-4-ear3-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:45.516234", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMIP-3-EAR1-V1.0", "title": "RPCMIP EARTH SWING-BY 1 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:46.437849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMIP-3-EAR2-V1.0", "title": "RPCMIP CALIBRATED DATA FOR THE EARTH SWING 2 BY PHASE", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation from the earth swing by 2 phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:47.439450", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMIP-3-EAR2-V2.0", "title": "RPCMIP EARTH SWING-BY 2 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:48.444279", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E-RPCMIP-3-EAR3-V1.0", "title": "RPCMIP EARTH SWING-BY 3 L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e-rpcmip-3-ear3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:49.442848", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E/CAL-NAVCAM-2-EAR2-V1.0", "title": "NAVCAM RAW DATA FOR EARTH 2 SWINGBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 2 Swingby Phase of 16 September 2007 to 22 January 2008, with closest approach taking place on 13 November 2007.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:50.452146", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E/CAL-NAVCAM-2-EAR2-V1.1", "title": "NAVCAM RAW DATA FOR EARTH 2 SWINGBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 2 Swingby Phase of 16 September 2007 to 22 January 2008, with closest approach taking place on 13 November 2007.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear2-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:51.452420", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E/CAL-NAVCAM-2-EAR3-V1.0", "title": "NAVCAM RAW DATA FOR EARTH 3 SWINGBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 3 Swingby Phase of 13 November 2009 to 30 November 2009, with closest approach taking place on 13 November 2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:52.456549", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E/CAL-NAVCAM-2-EAR3-V1.1", "title": "NAVCAM RAW DATA FOR EARTH 3 SWINGBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the EARTH 3 Swingby Phase of 13 November 2009 to 30 November 2009, with closest approach taking place on 13 November 2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e_cal-navcam-2-ear3-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:53.460682", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E/X-NAVCAM-2-CR1-V1.0", "title": "NAVCAM RAW DATA FOR CRUISE 1", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the CRUISE 1 Phase of 27 July 2004 to 1 August 2004.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e_x-navcam-2-cr1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:54.461585", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-E/X-NAVCAM-2-CR1-V1.1", "title": "NAVCAM RAW DATA FOR CRUISE 1", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the CRUISE 1 Phase of 27 July 2004 to 1 August 2004.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-e_x-navcam-2-cr1-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:55.476494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSINAC-2-MARS-MARSSWINGBY-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSINAC-2-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-2-mars-marsswingby-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:56.574399", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSINAC-2-MARS-MARSSWINGBY-V2.0", "title": "RAW OSIRIS NAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-2-mars-marsswingby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:57.544332", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSINAC-3-MARS-MARSSWINGBY-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSINAC-3-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-3-mars-marsswingby-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:58.592112", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSINAC-3-MARS-MARSSWINGBY-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-3-mars-marsswingby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:20:59.480900", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSINAC-4-MARS-MARS-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:00.486619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSINAC-4-MARS-MARS-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:01.497711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSINAC-4-MARS-MARS-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-mars-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:02.494701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSINAC-4-MARS-MARSSWINGBY-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osinac-4-mars-marsswingby-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:03.502116", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSIWAC-2-MARS-MARSSWINGBY-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSIWAC-2-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-2-mars-marsswingby-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:04.556928", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSIWAC-2-MARS-MARSSWINGBY-V2.0", "title": "RAW OSIRIS WAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-2-mars-marsswingby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:05.507862", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSIWAC-3-MARS-MARSSWINGBY-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-M-OSIWAC-3-MARS-MARSSWINGBY-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-3-mars-marsswingby-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:06.554156", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSIWAC-3-MARS-MARSSWINGBY-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-3-mars-marsswingby-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:07.539929", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSIWAC-4-MARS-MARS-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:08.584005", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSIWAC-4-MARS-MARS-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:09.601127", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSIWAC-4-MARS-MARS-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-mars-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:10.523222", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-OSIWAC-4-MARS-MARSSWINGBY-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR MARS SWING-BY PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the MARS SWING-BY mission phase, covering the period from 2006-07-29T00:00:00.000 to 2007-05-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-osiwac-4-mars-marsswingby-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:11.526372", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCICA-2-MARS-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:12.531498", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCICA-2-MARS-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER MARS RPCICA 2 MARS UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:13.533210", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCICA-2-MARS-RAW-V3.0", "title": "ROSETTA-ORBITER MARS RPCICA 2 MARS EDITED", "description": "ROSETTA-ORBITER MARS RPCICA 2 MARS UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-2-mars-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:14.538972", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCICA-3-MARS-CALIB-V1.0", "title": "ROSETTA-ORBITER MARS RPCICA 3 MARS CALIBRATED", "description": "ROSETTA-ORBITER MARS RPCICA 3 MARS CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-3-mars-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:15.541304", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCICA-4-MARS-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER MARS RPCICA 4 MARS CORR_CTS", "description": "ROSETTA-ORBITER MARS RPCICA 4 MARS CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:16.548833", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCICA-4-MARS-CORR-V1.0", "title": "ROSETTA-ORBITER MARS RPCICA 4 MARS CORR", "description": "ROSETTA-ORBITER MARS RPCICA 4 MARS CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcica-4-mars-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:17.551527", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCLAP-2-MARS-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR MARS", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the MARS SWING-BY phase in 2006-2007 where the primary target was the planet MARS. This particular data set contains data for the time period 2006-07-29T00:00:00.000 -- 2007-05-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-2-mars-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:18.548532", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCLAP-3-MARS-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR MARS", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the MARS SWING-BY phase in 2006-2007 where the primary target was the planet MARS. This particular data set contains data for the time period 2006-07-29T00:00:00.000 -- 2007-05-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpclap-3-mars-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:19.592650", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCMAG-2-MARS-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE MARS FLYBY", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-2-mars-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:20.643619", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCMAG-2-MARS-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE MARS SWINGBY (MARS)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-2-mars-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:21.564847", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCMAG-3-MARS-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE MARS FLYBY", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-3-mars-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:22.571563", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCMAG-3-MARS-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: MARS SWINGBY (MARS).", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-3-mars-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:23.566533", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCMAG-4-MARS-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE MARS FLYBY", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the MARS Flyby (MSB) Phase. The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-4-mars-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:24.570549", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCMAG-4-MARS-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: MARS SWINGBY (MARS).", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the MARS SWINGBY (MARS). The covered data period is August 29, 2006 until May 22, 2007. On August 29 the Passive Checkout PC3 was executed. In November and December 2006 the Passive Checkout PC4 took place. The very Mars Flyby happened between February 23 and February 27, 2007 with the Closest Approach on February 25, 2007 at 01:58 UTC. On May 22 the Passive Checkout PC5 was executed.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmag-4-mars-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:25.583675", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M-RPCMIP-3-MARS-V1.0", "title": "RPCMIP MARS SWING-BY L3 DATA", "description": "This volume contains Rosetta RPC-MIP level 3 data products (in physical units) and supporting documentation", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m-rpcmip-3-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:26.585741", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M/CAL-NAVCAM-2-MARS-V1.0", "title": "NAVCAM RAW DATA FOR MARS SWINGBY", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the MARS Swingby Phase of 27 November 2006 to 24 February 2007, with closest approach taking place on 25 February 2007.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m_cal-navcam-2-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:27.588650", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-M/CAL-NAVCAM-2-MARS-V1.1", "title": "NAVCAM RAW DATA FOR ESCORT PHASE", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the Cruise phase- Mars Swing by from 27, No 2006 to 24 Feb 2007.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-m_cal-navcam-2-mars-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:28.589533", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-2-CR2-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:29.598615", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-2-CR2-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER SW RPCICA 2 CR2 UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:30.608020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-2-CR2-RAW-V3.0", "title": "ROSETTA-ORBITER SW RPCICA 2 CR2 EDITED", "description": "ROSETTA-ORBITER SW RPCICA 2 CR2 UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr2-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:31.656564", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-2-CR4-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:32.670137", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-2-CR4-RAW-V3.0", "title": "ROSETTA-ORBITER SW RPCICA 2 CR4 EDITED", "description": "ROSETTA-ORBITER SW RPCICA 2 CR4 UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:33.620924", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-2-CR4B-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER SW RPCICA 2 CR4B UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-2-cr4b-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:34.621239", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-3-CR2-CALIB-V1.0", "title": "ROSETTA-ORBITER SW RPCICA 3 CR2 CALIBRATED", "description": "ROSETTA-ORBITER SW RPCICA 3 CR2 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr2-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:35.621741", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-3-CR4-CALIB-V1.0", "title": "ROSETTA-ORBITER SW RPCICA 3 CR4 CALIBRATED", "description": "ROSETTA-ORBITER SW RPCICA 3 CR4 CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-3-cr4-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:36.621985", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-4-CR2-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER SW RPCICA 4 CR2 CORR_CTS", "description": "ROSETTA-ORBITER SW RPCICA 4 CR2 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:37.624957", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-4-CR2-CORR-V1.0", "title": "ROSETTA-ORBITER SW RPCICA 4 CR2 CORR", "description": "ROSETTA-ORBITER SW RPCICA 4 CR2 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr2-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:38.634217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-4-CR4-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER SW RPCICA 4 CR4 CORR_CTS", "description": "ROSETTA-ORBITER SW RPCICA 4 CR4 CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:39.639804", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCICA-4-CR4-CORR-V1.0", "title": "ROSETTA-ORBITER SW RPCICA 4 CR4 CORR", "description": "ROSETTA-ORBITER SW RPCICA 4 CR4 CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcica-4-cr4-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:40.638621", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCIES-2-CR2-V1.0", "title": "RPCIES RAW DATA FOR CRUISE 2 PHASE", "description": "This data set contains instrument raw data obtained by the Ion and Electron Sensor (RPC-IES) onboard the Rosetta spacecraft from the second cruise phase (CR2) between April 2005 and June 2006.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:41.639485", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCIES-2-CR5-V1.0", "title": "RPCIES RAW DATA FOR CRUISE 5", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Cruise 5 Phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-cr5-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:42.662628", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCIES-2-RVM1-V1.0", "title": "RPCIES RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1", "description": "This Volume contains ion and electron counts data (EDITED RAW DATA) from the RPC-IES instrument for the Rendezvous Manoeuvre 1 in November 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcies-2-rvm1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:43.714270", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-2-CR2-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR CR2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 2 phase in 2005-2006 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2005-04-05T00:00:00.000 -- 2006-07-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr2-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:44.725206", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-2-CR4A-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR CR4A", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-1 phase in 2008 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-01-28T00:00:00.000 -- 2008-08-04T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4a-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:45.665167", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-2-CR4B-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR CR4B", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-2 phase in 2008-2009 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-10-06T00:00:00.000 -- 2009-09-14T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr4b-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:46.665356", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-2-CR5-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR CR5", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 5 phase in 2009-2010 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2009-12-14T00:00:00.000 -- 2010-05-17T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-cr5-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:47.671106", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-2-RVM1-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR RVM1", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the RENDEZVOUS MANOEUVRE 1 phase in 2010-2011 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2010-09-04T00:00:00.000 -- 2011-06-08T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-2-rvm1-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:48.673171", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-3-CR2-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR CR2", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 2 phase in 2005-2006 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2005-04-05T00:00:00.000 -- 2006-07-29T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr2-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:49.678582", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-3-CR4A-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR CR4A", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-1 phase in 2008 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-01-28T00:00:00.000 -- 2008-08-04T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4a-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:50.683477", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-3-CR4B-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR CR4B", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 4-2 phase in 2008-2009 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2008-10-06T00:00:00.000 -- 2009-09-14T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr4b-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:51.692108", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-3-CR5-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR CR5", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the CRUISE 5 phase in 2009-2010 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2009-12-14T00:00:00.000 -- 2010-05-17T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-cr5-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:52.807638", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCLAP-3-RVM1-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR RVM1", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the RENDEZVOUS MANOEUVRE 1 phase in 2010-2011 where the primary target was the SOLAR WIND. This particular data set contains data for the time period 2010-09-04T00:00:00.000 -- 2011-06-08T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpclap-3-rvm1-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:53.692005", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-2-CR2-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE SECOND CRUISE PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-cr2-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:54.726046", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-2-CR2-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE SECOND CRUISE PHASE (CR2)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-cr2-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:55.771760", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-2-PRL-RAW-V5.0", "title": "RPCMAG RAW DATA FOR THE PRELANDING PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:56.785581", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-2-PRL-RAW-V6.0", "title": "RPCMAG RAW DATA FOR THE PRELANDING PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:57.715717", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-2-PRL-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE PRELANDING PHASE (PRL)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-prl-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:58.710213", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-2-RVM1-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-rvm1-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:21:59.717901", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-2-RVM1-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-2-rvm1-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:00.718002", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-3-CR2-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE SECOND CRUISE PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-cr2-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:01.720838", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-3-CR2-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: SECOND CRUISE PHASE (CR2)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-cr2-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:02.727236", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-3-PRL-CALIBRATED-V6.0", "title": "RPCMAG CALIBRATED DATA FOR THE PRELANDING PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-prl-calibrated-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:03.727747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-3-PRL-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: PRELANDING PHASE (PRL)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-prl-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:04.733425", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-3-RVM1-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-rvm1-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:05.733666", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-3-RVM1-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: RENDEZVOUS MANOEUVRE 1 (RVM1)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-3-rvm1-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:06.782812", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-4-CR2-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE SECOND CRUISE PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase CRUISE 2 (CR2) . The covered time interval is April 5, 2005 until July 28,2006.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-cr2-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:07.832527", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-4-CR2-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: SECOND CRUISE PHASE (CR2)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the SECOND CRUISE PHASE (CR2) from 5. April 2005 until 28. July 2006", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-cr2-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:08.744948", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-4-PRL-RESAMPLED-V5.0", "title": "RPCMAG RESMPLED DATA FOR THE PRELANDING PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v5.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:09.748457", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-4-PRL-RESAMPLED-V6.0", "title": "RPCMAG RESMPLED DATA FOR THE PRELANDING PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING Phase from 23.March 2014 until 21. November 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v6.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:10.744157", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-4-PRL-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: PRELANDING PHASE (PRL)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the PRELANDING PHASE (PRL) from 23. March 2014 until 21. November 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-prl-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:11.756085", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-4-RVM1-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE RENDEZVOUS MANOEUVRE 1 (RVM1)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-rvm1-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:12.759025", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-SS-RPCMAG-4-RVM1-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: RENDEZVOUS MANOEUVRE 1 (RVM1)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase RENDEZVOUS MANOEUVRE 1 (RVM1). Data are available for the Payload Checkout PC13 in NOV/DEC 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-ss-rpcmag-4-rvm1-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:13.762209", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-ALICE-2-CR1-V1.0", "title": "ROSETTA ALICE IN CRUISE 1 PHASE, EXPERIMENT DATA", "description": "This volume contains unprocessed data obtained by the ALICE instrument on the Rosetta Orbiter during the first cruise phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-2-cr1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:14.761081", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-ALICE-3-CR1-V1.0", "title": "ROSETTA ALICE IN CRUISE 1 PHASE, REDUCED DATA", "description": "This volume contains calibrated data obtained by the ALICE instrument on the Rosetta Orbiter during the first cruise phase of the mission.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-3-cr1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:15.766315", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-ALICE-6-SUPPLEMENTARY-V1.0", "title": "ROSETTA ALICE SUPPLEMENTAL DOCUMENTATION and DATA", "description": "This small dataset collects supplementary documentation and data for the Rosetta Alice instrument and its data products.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-alice-6-supplementary-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:16.769551", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-GIA-2-CR2-CRUISE2-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING CRUISE 2 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Cruise 2' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 1' (PC1) held on 02/03-10-2005; 'Passive Payload Checkout n. 2' (PC2) held on 05/06-03-2006. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cr2-cruise2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:17.795611", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-GIA-2-CVP1-COMMISSIONING1-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING COMMISSIONING 1 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Commissioning 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'First GIADA switch ON' held on 03/04-04-2004. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp1-commissioning1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:18.844496", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-GIA-2-CVP2-COMMISSIONING2-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING COMMISSIONING 2 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Commissioning 2' phase. More in detail it refers to the data provided during the following in-flight scenarios: 'Interference 1' held on 20/21/22-09-2004; 'Pointing 1' held on 23-09-2004; 'Pointing 2' held on 30-09-2004; 'Interference 2' held on 12/13/14-10-2004. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-cvp2-commissioning2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:19.857003", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-GIA-2-EAR1-EARTHSWINGBY1-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING EARTH SWING-BY 1 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Earth swing-by 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 0' (PC0) held on 28/29-03-2005. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear1-earthswingby1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:20.788606", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-GIA-2-EAR2-EARTHSWINGBY2-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING EARTH SWING-BY 2 PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Earth swing-by 2' phase. More in detail it refers to the data provided during the following in-flight tests: 'Active Payload Checkout n. 6' (PC6) held on 15/16/17-09-2007 and 24-09-2007; 'Passive Payload Checkout n. 7' (PC7) held on 06/07-01-2008 and 17-01-2008. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-ear2-earthswingby2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:21.791539", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-GIA-2-MARS-MARSSWINGBY-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING MARS SWING-BY PHASE", "description": "This volume contains Experiment Data acquired by GIADA during 'Mars swing-by' phase. More in detail it refers to the data provided during the following in-flight tests: 'Active Payload Checkout n. 4' (PC4) held on 24/25-11-2006 and 04-12-2006; 'Passive Payload Checkout n. 5' (PC5) held on 20/21-05-2007. It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-mars-marsswingby-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:22.800020", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-GIA-2-RVM1-RENDEZMANOEUVRE1-V1.0", "title": "ROSETTA GIADA EXPERIMENT DATA DURING RENDEZMANOUVRE 1", "description": "This volume contains Experiment Data acquired by GIADA during 'Rendez-vous manoeuvre 1' phase. More in detail it refers to the data provided during the following in-flight tests: 'Passive Payload Checkout n. 13' (PC13) held on 1-12-2010 and It also contains documentation which describes the GIADA experiment.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-gia-2-rvm1-rendezmanoeuvre1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:23.796366", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-ANTENNASTATUS-V1.0", "title": "ROSETTA HK: ANTENNA STATUS", "description": "This volume contains the status of the Rosetta Orbiter Antenna extracted from the MUST system for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-antennastatus-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:24.800425", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-AOCGEN-V1.0", "title": "ROSETTA HK: AOC SYSTEM DATA", "description": "This volume contains data from the Rosetta Attitude and Orbit Control System for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-aocgen-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:25.802990", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-EDAC-V1.0", "title": "ROSETTA HK: EDAC DATA", "description": "This volume contains data from the Rosetta Error Detection and Correction System for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-edac-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:26.805819", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-HGAAPM-V1.0", "title": "ROSETTA HK: HIGH GAIN ANTENNA DATA", "description": "This volume contains data from the Rosetta High Gain Antenna and Antenna Pointing Mechanism for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-hgaapm-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:27.811681", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-IMP-V1.0", "title": "ROSETTA HK: INERTIAL MEASUREMENT PACKAGE", "description": "This volume contains data from the Rosetta Inertial Measurement Package for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-imp-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:28.814485", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-NAVCAM-V1.0", "title": "ROSETTA HK: NAVCAM ENGINEERING", "description": "This volume contains engineering data from Rosetta's two Navigation cameras for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-navcam-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:29.850433", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-OCMRCS-V1.0", "title": "ROSETTA HK: ORBITAL CONTROL MANOEUVRE REACTION CONTROL", "description": "This volume contains key parameters from Rosetta's Orbit Control Manouevres and the thruster based Reaction Control Subsystem for for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-ocmrcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:30.898328", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-RWL-V1.0", "title": "ROSETTA HK: REACTION WHEEL ENGINEERING", "description": "This volume contains engineering data from the four Reaction Wheels onboard Rosetta for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-rwl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:31.910797", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-SOLARARRAY-V1.0", "title": "ROSETTA HK: SOLAR ARRAY POWER", "description": "This volume contain key parameters of the Solar Array and Power housekeeping for Rosetta over the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-solararray-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:32.828427", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-STARTRACKER-V1.0", "title": "ROSETTA HK: SOLAR ARRAY POWER", "description": "This volume contains key parameters from the housekeeping of the two Star Trackers onboard Rosetta over the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-startracker-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:33.833079", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-HK-3-TCS-V1.0", "title": "ROSETTA HK: EDAC DATA", "description": "This volume contains selected data from the Rosetta Thermal Control System for the entire mission, from March 2004 until September 2016.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-hk-3-tcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:34.833766", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-CR2-PC1-2-V1.0", "title": "ROMID_1003", "description": "Payload Checkout 1-2 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr2-pc1-2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:35.842617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-CR2-PC1-2-V3.0", "title": "MIDAS SCIENCE DATA FOR THE CRUISE 2 PHASE", "description": "Payload Checkout 1-2 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr2-pc1-2-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:36.836263", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-CR4A-PC8-V1.0", "title": "MIDAS SCIENCE DATA FOR THE CRUISE 4-1 PHASE", "description": "Payload Checkout 8 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4a-pc8-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:37.845861", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-CR4A-PC8-V3.0", "title": "MIDAS SCIENCE DATA FOR THE CRUISE 4-1 PHASE", "description": "Payload Checkout 8 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4a-pc8-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:38.848434", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-CR4B-PC9-V1.0", "title": "MIDAS SCIENCE DATA FOR THE CRUISE 4-2 PHASE", "description": "Payload Checkout 9 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4b-pc9-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:39.851601", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-CR4B-PC9-V3.0", "title": "MIDAS SCIENCE DATA FOR THE CRUISE 4-2 PHASE", "description": "Payload Checkout 9 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr4b-pc9-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:40.861400", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-CR5-PC12-V1.0", "title": "MIDAS SCIENCE DATA FOR THE CRUISE 5 PHASE", "description": "Payload Checkout 12 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr5-pc12-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:41.909126", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-CR5-PC12-V3.0", "title": "MIDAS SCIENCE DATA FOR THE CRUISE 5 PHASE", "description": "Payload Checkout 12 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-cr5-pc12-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:42.925691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-EAR1-PC0-V1.0", "title": "ROMID_1002", "description": "Payload Checkout 0 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear1-pc0-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:43.873511", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-EAR1-PC0-V3.0", "title": "MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 1 PHASE", "description": "Payload Checkout 0 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear1-pc0-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:44.871993", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-EAR2-PC6-7-V1.0", "title": "MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 2 PHASE", "description": "Payload Checkout 6-7 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear2-pc6-7-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:45.874751", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-EAR2-PC6-7-V3.0", "title": "MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 2 PHASE", "description": "Payload Checkout 6-7 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear2-pc6-7-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:46.881474", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-EAR3-PC10-V1.0", "title": "MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 3 PHASE", "description": "Payload Checkout 10 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear3-pc10-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:47.883217", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-EAR3-PC10-V3.0", "title": "MIDAS SCIENCE DATA FOR THE EARTH SWING-BY 3 PHASE", "description": "Payload Checkout 10 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-ear3-pc10-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:48.889328", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-MARS-PC3-5-V1.0", "title": "MIDAS SCIENCE DATA FOR THE MARS SWING-BY PHASE", "description": "Payload Checkout 3-5 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-mars-pc3-5-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:49.888215", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-MARS-PC3-5-V3.0", "title": "MIDAS SCIENCE DATA FOR THE MARS SWING-BY PHASE", "description": "Payload Checkout 3-5 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-mars-pc3-5-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:50.891733", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-RVM1-PC13-V1.0", "title": "MIDAS SCIENCE DATA FOR THE RENDEZVOUS MANOEUVRE 1 PHASE", "description": "Payload Checkout 13 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-rvm1-pc13-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:51.893540", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIDAS-3-RVM1-PC13-V3.0", "title": "MIDAS SCIENCE DATA FOR THE RENDEZVOUS MANOEUVRE 1 PHASE", "description": "Payload Checkout 13 Data", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-midas-3-rvm1-pc13-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:52.919484", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIRO-2-CVP-COMMISSIONING-V1.0", "title": "RAW MIRO DATA FOR THE COMMISSIONING PHASE", "description": "This volume is the second containing Microwave Instrument for the Rosetta Orbiter (MIRO) data. It contains data obtained during the Commissioning mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-2-cvp-commissioning-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:53.970451", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIRO-3-CVP-COMMISSIONING-V1.0", "title": "CALIBRATED MIRO DATA FOR THE COMMISSIONING PHASE", "description": "This volume is the first containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Commissioning mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-3-cvp-commissioning-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:54.982575", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-MIRO-3-CVP-COMMISSIONING-V1.1", "title": "CALIBRATED MIRO DATA FOR THE COMMISSIONING PHASE", "description": "This volume is the fourth containing Microwave Instrument for the Rosetta Orbiter (MIRO) calibrated data. It contains data obtained during the Commissioning mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-miro-3-cvp-commissioning-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:55.914925", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-NAVCAM-2-PRL-COM-V1.0", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jan 2014 to May 2014", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-2-prl-com-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:56.917132", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-NAVCAM-2-PRL-COM-V1.1", "title": "NAVCAM RAW DATA FOR PRELANDING", "description": "This volume contains RAW images taken by the NavCam onboard the ROSETTA S/C during the PRELANDING phase, Jan 2014 to May 2014 just after hibernation in its journey to comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-2-prl-com-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:57.918834", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-NAVCAM-3-PRL-COM-V1.0", "title": "NAVCAM CALIBRATED DATA FOR PRELANDING COMMISSIONING PHASE", "description": "This volume contains CALIBRATED images taken by the NavCam onboard the ROSETTA S/C from 23 Feb. 2014, 08:10:01 to 30 Apr. 2014, 03:32:08, during the PRELANDING COMMISSIONING phase, when at the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-navcam-3-prl-com-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:58.925237", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR1-CHECKOUT-V1.0", "title": "RAW OSIRIS NAC DATA FOR CRUISE 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 1 mission phase, covering the period from 2004-06-07T00:00:00.000 to 2004-09-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:22:59.924576", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR2-CHECKOUT-V2.0", "title": "RAW OSIRIS NAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr2-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:00.929139", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR2-CRUISE2-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr2-cruise2-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:01.993573", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR4A-CHECKOUT-V2.0", "title": "RAW OSIRIS NAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4a-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:02.934632", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR4A-CRUISE4A-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4a-cruise4a-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:04.007174", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR4B-CHECKOUT-V2.0", "title": "RAW OSIRIS NAC DATA FOR CRUISE 4-2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-2 mission phase, covering the period from 2008-10-06T00:00:00.000 to 2009-09-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4b-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:04.984667", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR4B-CRUISE4B-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-2-CR4B-CRUISE4B-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr4b-cruise4b-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:06.086045", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR5-CHECKOUT-V2.0", "title": "RAW OSIRIS NAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr5-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:07.041336", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CR5-CRUISE5-V1.2", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-E-OSINAC-3-EAR3-EARTHSWINGBY3-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cr5-cruise5-v1.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:08.091090", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CVP1-CHECKOUT-V1.0", "title": "RAW OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cvp1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:09.964177", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-CVP2-CHECKOUT-V1.0", "title": "RAW OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-cvp2-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:10.968790", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-2-RVM1-CHECKOUT-V1.0", "title": "RAW OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-2-rvm1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:11.966656", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CR2-CHECKOUT-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr2-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:12.974085", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CR2-CRUISE2-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-3-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr2-cruise2-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:14.046074", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CR4A-CHECKOUT-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4a-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:14.979691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CR4A-CRUISE4A-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSINAC-3-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4a-cruise4a-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:16.041515", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CR4B-CRUISE4B-V1.4", "title": "CALIBRATED OSIRIS NAC DATA FOR THE CRUISE 4-2 PHASE", "description": "CALIBRATED OSIRIS NAC data from the CRUISE 4-2 mission phase. The data has been acquired between 2008-10-06 and 2009-09-14.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr4b-cruise4b-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:17.035715", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CR5-CHECKOUT-V2.0", "title": "CALIBRATED OSIRIS NAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr5-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:18.049460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CR5-CRUISE5-V1.2", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSINAC-3-CR5-CRUISE5-V1.2 and NASA Planetary Data System, ESA Planetary Science Archive, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cr5-cruise5-v1.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:19.140476", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CVP1-CHECKOUT-V1.0", "title": "Menu: Skip within this page", "description": "Special Note: When all OSIRIS calibrated data sets were reprocessed, this data set was split and any CR1 images did not qualify for calibration in their latest pipeline. See documentation in the CVP1/2 calibrated data set for details on selection.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cvp-commissioning-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:20.051706", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-CVP2-CHECKOUT-V1.0", "title": "CALIBRATED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-cvp2-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:22.011346", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-3-RVM1-CHECKOUT-V1.0", "title": "CALIBRATED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-3-rvm1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:23.014253", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR2-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:24.016765", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR2-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:25.019649", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR2-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:26.014422", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR2-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr2-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:27.023283", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR4A-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:28.046503", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR4A-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:29.094331", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR4A-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:30.110237", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR4A-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr4a-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:31.045018", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR5-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:32.043664", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR5-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:33.053052", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR5-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:34.145989", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CR5-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cr5-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:35.054668", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CVP1-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:36.061455", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CVP1-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:37.067086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CVP1-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:38.065460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CVP1-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp1-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:39.067393", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CVP2-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:40.101112", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CVP2-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:41.153825", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CVP2-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:42.166854", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-CVP2-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-cvp2-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:43.083765", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-RVM1-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:44.086865", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-RVM1-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:45.104849", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-RVM1-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:46.103937", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSINAC-4-RVM1-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS NAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Narrow Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osinac-4-rvm1-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:47.105030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR1-CHECKOUT-V1.0", "title": "RAW OSIRIS WAC DATA FOR CRUISE 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 1 mission phase, covering the period from 2004-06-07T00:00:00.000 to 2004-09-05T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:48.109010", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR2-CHECKOUT-V2.0", "title": "RAW OSIRIS WAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr2-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:49.114318", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR2-CRUISE2-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr2-cruise2-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:50.168851", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR4A-CHECKOUT-V2.0", "title": "RAW OSIRIS WAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4a-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:51.118934", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR4A-CRUISE4A-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4a-cruise4a-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:52.224480", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR4B-CHECKOUT-V2.0", "title": "RAW OSIRIS WAC DATA FOR CRUISE 4-2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-2 mission phase, covering the period from 2008-10-06T00:00:00.000 to 2009-09-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4b-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:53.179430", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR4B-CRUISE4B-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-2-CR4B-CRUISE4B-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr4b-cruise4b-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:54.268661", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR5-CHECKOUT-V2.0", "title": "RAW OSIRIS WAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr5-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:55.130202", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CR5-CRUISE5-V1.2", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSIWAC-2-CR5-CRUISE5-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cr5-cruise5-v1.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:56.193086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CVP1-CHECKOUT-V1.0", "title": "RAW OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cvp1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:58.148833", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-CVP2-CHECKOUT-V1.0", "title": "RAW OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-cvp2-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:23:59.145816", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-2-RVM1-CHECKOUT-V1.0", "title": "RAW OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 2 data set contains uncalibrated image data in DN unit, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-2-rvm1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:00.153547", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-CR2-CHECKOUT-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr2-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:01.159191", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-CR2-CRUISE2-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-3-CR2-CRUISE2-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr2-cruise2-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:02.216044", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-CR4A-CHECKOUT-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr4a-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:03.178804", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-CR4A-CRUISE4A-V1.4", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.4, RO-X-OSIWAC-3-CR4A-CRUISE4A-V1.4, ESA Planetary Science Archive and NASA Planetary Data System, 2011.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr4a-cruise4a-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:04.270240", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-CR5-CHECKOUT-V2.0", "title": "CALIBRATED OSIRIS WAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr5-checkout-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:05.236760", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-CR5-CRUISE5-V1.2", "title": "Menu: Skip within this page", "description": "Citation to use when referencing this data set: \"Hviid, S. F., Keller H. U. and the OSIRIS Team, OSIRIS ROSETTA EXPERIMENT DATA RECORD V1.2, RO-X-OSIWAC-3-CR5-CRUISE5-V1.2, ESA Planetary Science Archive and NASA Planetary Data System, 2012.\"", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cr5-cruise5-v1.2/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:06.322201", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-CVP1-CHECKOUT-V1.0", "title": "Menu: Skip within this page", "description": "Special Note: When all OSIRIS calibrated data sets were reprocessed, this data set was split and any CR1 images did not qualify for calibration in their latest pipeline. See documentation in the CVP1/2 calibrated data set for details on selection.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cvp-commissioning-v1.4/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:07.231129", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-CVP2-CHECKOUT-V1.0", "title": "CALIBRATED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-cvp2-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:09.189660", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-3-RVM1-CHECKOUT-V1.0", "title": "CALIBRATED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 3 data set contains radiometric calibrated image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-3-rvm1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:10.193287", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR2-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:11.196701", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR2-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:12.202828", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR2-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:13.200482", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR2-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 2 mission phase, covering the period from 2005-04-05T00:00:00.000 to 2006-07-28T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr2-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:14.205498", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR4A-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:15.235459", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR4A-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:16.285672", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR4A-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:17.295800", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR4A-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 4-1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 4-1 mission phase, covering the period from 2008-01-28T00:00:00.000 to 2008-08-03T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr4a-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:18.221296", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR5-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:19.227270", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR5-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:20.234157", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR5-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:21.235205", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CR5-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR CRUISE 5 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the CRUISE 5 mission phase, covering the period from 2009-12-14T00:00:00.000 to 2010-05-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cr5-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:22.245207", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CVP1-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:23.242343", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CVP1-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:24.253884", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CVP1-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:25.249192", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CVP1-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 1 mission phase, covering the period from 2004-03-05T00:00:00.000 to 2004-06-06T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp1-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:26.249070", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CVP2-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:27.289321", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CVP2-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:28.341993", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CVP2-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:29.352039", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-CVP2-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR COMMISSIONING 2 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the COMMISSIONING 2 mission phase, covering the period from 2004-09-06T00:00:00.000 to 2004-10-16T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-cvp2-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:30.274497", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-RVM1-CHECKOUT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-checkout-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:31.273772", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-RVM1-CHKOUT-REFLECT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 4 data set contains radiometric calibrated and geometric distortion corrected (resampled) image data in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-reflect-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:32.275531", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-RVM1-CHKOUT-STR-REFL-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in in reflectance units (normalized and thus without unit), acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-str-refl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:33.276384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-OSIWAC-4-RVM1-CHKOUT-STRLIGHT-V1.0", "title": "RESAMPLED OSIRIS WAC DATA FOR RENDEZVOUS MANOEUVRE 1 PHASE", "description": "This CODMAC level 4 data set contains solar stray light corrected, radiometric calibrated and geometric distortion corrected (resampled) image data in W/m^2/sr/nm, acquired by the OSIRIS Wide Angle Camera on the Rosetta spacecraft during the RENDEZVOUS MANOEUVRE 1 mission phase, covering the period from 2010-09-04T00:00:00.000 to 2011-07-13T23:59:59.000. Note that the data part of the FITs files in the /DATA/FIT directory is identical to the data part of the PDS files in the /DATA/IMG directory. FITs files are delivered only for CODMAC levels 2,3, and 4 datasets. No FITs files are delivered for CODMAC level 5 datasets.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-osiwac-4-rvm1-chkout-strlight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:34.289794", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-ROSINA-2-ENG-V1.0", "title": "RO-X-ROSINA-2-ENG-V1.0", "description": "This volume contains a dataset of ROSINA mass spectra and pressure records, from the ROSETTA spacecraft during Commissioning. The dataset includes data from COPS, DFMS and RTOF. The volume also contains documentation and index files to support access and use of the data .", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rosina-2-eng-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:35.297494", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCICA-2-CVP-RAW-V1.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V1.0", "description": "ROSETTA-ORBITER RPCICA UNCALIBRATED DATA V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:36.297180", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCICA-2-CVP-RAW-V2.0", "title": "ROSETTA-ORBITER RPCICA UNCALIBRATED CURRENT DATA V2.0", "description": "ROSETTA-ORBITER CHECK RPCICA 2 CVP UNCALIBRATED V2.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:37.301218", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCICA-2-CVP-RAW-V3.0", "title": "ROSETTA-ORBITER CHECK RPCICA 2 CVP EDITED", "description": "ROSETTA-ORBITER CHECK RPCICA 2 CVP UNCALIBRATED V3.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-2-cvp-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:38.306039", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCICA-3-CVP-CALIB-V1.0", "title": "ROSETTA-ORBITER CHECK RPCICA 3 CVP CALIBRATED", "description": "ROSETTA-ORBITER CHECK RPCICA 3 CVP CALIB V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-3-cvp-calib-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:39.349980", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCICA-4-CVP-CORR-CTS-V1.0", "title": "ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR_CTS", "description": "ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR-CTS V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-cts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:40.365416", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCICA-4-CVP-CORR-V1.0", "title": "ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR", "description": "ROSETTA-ORBITER CHECK RPCICA 4 CVP CORR V1.0", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcica-4-cvp-corr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:41.313102", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCLAP-2-CVP1-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR CVP1", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 1 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-03-05T00:00:00.000 -- 2006-09-17T00:02:36.148.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp1-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:42.319459", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCLAP-2-CVP2-EDITED2-V1.0", "title": "RPCLAP EDITED DATA FOR CVP2", "description": "This volume contains EDITED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 2 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-09-06T00:00:00.000 -- 2004-10-17T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-2-cvp2-edited2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:43.323474", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCLAP-3-CVP1-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR CVP1", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 1 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-03-05T00:00:00.000 -- 2006-09-17T00:02:36.128.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp1-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:44.326665", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCLAP-3-CVP2-CALIB2-V1.0", "title": "RPCLAP CALIBRATED DATA FOR CVP2", "description": "This volume contains CALIBRATED data from the Rosetta RPC-LAP instrument, acquired during the COMMISSIONING 2 phase in 2004 where there was no primary target. This particular data set contains data for the time period 2004-09-06T00:00:00.000 -- 2004-10-17T00:00:00.000.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpclap-3-cvp2-calib2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:45.328441", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-2-CR4A-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE CRUISE-4A PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4a-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:46.332177", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-2-CR4A-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE CRUISE-4A PHASE (CR4A)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4a-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:47.340043", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-2-CR4B-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE CRUISE-4B PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4b-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:48.344765", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-2-CR4B-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE CRUISE-4B PHASE (CR4B)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr4b-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:49.346592", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-2-CR5-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE FIFTH CRUISE PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr5-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:50.364210", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-2-CR5-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE CRUISE-5 PHASE (CR5)", "description": "This Volume contains magnetic field data (EDITED RAW DATA) from the RPC-MAG instrument for the Cruise Phase 5, called CR5, for the time interval December 2009 until June 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cr5-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:51.409733", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-2-CVP-RAW-V3.0", "title": "RPCMAG RAW DATA FOR THE COMMISSIONING PHASE", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cvp-raw-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:52.423710", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-2-CVP-RAW-V9.0", "title": "RPCMAG RAW DATA FOR THE COMMISSIONING PHASE (CVP)", "description": "This Volume contains magnetic field data (EDITED RAW DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2004 until 14. October 2004", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-2-cvp-raw-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:53.368751", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-3-CR4A-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE CRUISE-4A PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4a-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:54.364415", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-3-CR4A-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: CRUISE-4A PHASE (CR4A)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)fromthe RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4a-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:55.363332", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-3-CR4B-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE CRUISE-4B PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA) from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4b-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:56.373899", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-3-CR4B-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: CRUISE-4B PHASE (CR4B)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr4b-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:57.379576", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-3-CR5-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE FIFTH CRUISE PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr5-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:58.374301", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-3-CR5-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: CRUISE-5 PHASE (CR5)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the Cruise Phase 5, called CR5B, for the time interval December 2009 until June 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cr5-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:24:59.382992", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-3-CVP-CALIBRATED-V3.0", "title": "RPCMAG CALIBRATED DATA FOR THE COMMISSIONING PHASE", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cvp-calibrated-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:00.388850", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-3-CVP-CALIBRATED-V9.0", "title": "RPCMAG CALIBRATED DATA FOR: COMMISSIONING PHASE (CVP)", "description": "This Volume contains magnetic field data (CALIBRATED DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2014 until 14. October 2004", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-3-cvp-calibrated-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:01.388888", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-4-CR4A-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE CRUISE-4A PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the Cruise Phase 4-1, called CR4A, for the time interval January 28, 2008 until August 3, 2008. Data are available for the the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4a-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:02.423609", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-4-CR4A-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: CRUISE-4A PHASE (CR4A)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the CRUISE-4A PHASE (CR4A) for the time interval January 28, 2008 until August 3, 2008. Data are available for the Passive Checkout PC8 and Interference campaign taking place from July 19 until July 26,2008.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4a-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:03.472344", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-4-CR4B-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE CRUISE-4B PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31 until February 01.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4b-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:04.481776", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-4-CR4B-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: CRUISE-4B PHASE (CR4B)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the Cruise Phase 4-2, called CR4B, for the time interval October 2008 until September 2009. Data are available for the the Payload Checkout PC9 taking place from January 31,2009 until February 01,2009.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr4b-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:05.407008", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-4-CR5-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE FIFTH CRUISE PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the mission phase CRUISE 5 (CR5). The covered time interval is December 2009 until June 2010", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr5-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:06.406523", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-4-CR5-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: CRUISE-5 PHASE (CR5)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the Cruise Phase 5, called CR5, for the time interval December 2009 until June 2010.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cr5-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:07.422625", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-4-CVP-RESAMPLED-V3.0", "title": "RPCMAG RESAMPLED DATA FOR THE COMMISSIONING PHASE", "description": "This Volume contains magnetic field data (RESAMPLED DATA) from the RPC-MAG instrument for the complete commissioning phase (CVP) between March and October 2004.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cvp-resampled-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:08.411965", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RPCMAG-4-CVP-RESAMPLED-V9.0", "title": "RPCMAG RESAMPLED DATA FOR: COMMISSIONING PHASE (CVP)", "description": "This Volume contains magnetic field data (RESAMPLED DATA)from the RPC-MAG instrument for the COMMISSIONING PHASE (CVP) from 17. March 2004 until 14. October 2004", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rpcmag-4-cvp-resampled-v9.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:09.420197", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0001-V1.0", "title": "RORSI_0001_2004_086_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-26T22:57:28.500 to 2004-03-27T07:10:52.950.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0001-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:10.415093", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0002-V1.0", "title": "RORSI_0002_2004_087_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-27T21:51:39.500 to 2004-03-28T07:17:42.950.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0002-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:11.424694", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0003-V1.0", "title": "RORSI_0003_2004_088_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-28T21:51:03.500 to 2004-03-29T06:51:57.950.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0003-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:12.425691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0004-V1.0", "title": "RORSI_0004_2004_089_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-03-29T22:59:42.500 to 2004-03-30T06:37:31.950.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0004-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:13.430570", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0005-V1.0", "title": "RORSI_0005_2004_123_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-02T20:16:44.500 to 2004-05-03T02:32:29.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0005-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:14.478687", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0006-V1.0", "title": "RORSI_0006_2004_124_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-03T21:38:35.500 to 2004-05-04T02:11:38.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0006-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:15.591982", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0007-V1.0", "title": "RORSI_0007_2004_125_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-04T20:17:40.500 to 2004-05-05T02:19:16.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0007-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:16.433252", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0008-V1.0", "title": "RORSI_0008_2004_126_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-05T20:11:52.500 to 2004-05-06T02:21:10.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:17.433721", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP1-0009-V1.0", "title": "RORSI_0009_2004_127_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 1 (CVP1). This is a Commissioning measurement from 2004-05-06T20:11:29.500 to 2004-05-07T02:16:28.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp1-0009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:18.433373", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP2-0010-V1.0", "title": "RORSI_0010_2004_255_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 2 (CVP2). This is a Commissioning measurement from 2004-09-11T19:30:04.500 to 2004-09-12T02:15:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp2-0010-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:19.437668", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-RSI-1/2/3-CVP2-0011-V1.0", "title": "RORSI_0011_2004_283_V1.0", "description": "This volume contains raw data, partially processed data, and ancillary files from the Venus Express Radio Science experiment of the Commissioning 2 (CVP2). This is a Commissioning measurement from 2004-10-09T19:19:48.000 to 2004-10-10T02:29:03.500.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-rsi-1_2_3-cvp2-0011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:20.438775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-AST1-V1.0", "title": "SREM RAW COUNT RATE DATA FOR AST1", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the AST1 (STEINS) mission phase, when in the vicinity of asteroid 2867 STEINS.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:21.440126", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-AST2-V1.0", "title": "SREM RAW COUNT RATE DATA FOR AST2", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the AST2 (LUTETIA) mission phase, when in the vicinity of asteroid 21 LUTETIA.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:22.441192", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-CR1-V1.0", "title": "SREM RAW COUNT RATE DATA FOR CR1", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:23.448778", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-CR2-V1.0", "title": "SREM RAW COUNT RATE DATA FOR CR2", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:24.445613", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-CR3-V1.0", "title": "SREM RAW COUNT RATE DATA FOR CR3", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:25.487602", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-CR4A-V1.0", "title": "SREM RAW COUNT RATE DATA FOR CR4A", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 4A mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:26.533104", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-CR4B-V1.0", "title": "SREM RAW COUNT RATE DATA FOR CR4B", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 4B mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr4b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:27.445196", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-CR5-V1.0", "title": "SREM RAW COUNT RATE DATA FOR CR5", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CRUISE 5 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cr5-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:28.451219", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-CVP1-V1.0", "title": "SREM RAW COUNT RATE DATA FOR CVP1", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CVP1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:29.457395", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-CVP2-V1.0", "title": "SREM RAW COUNT RATE DATA FOR CVP2", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the CVP2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-cvp2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:30.457538", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EAR1-V1.0", "title": "SREM RAW COUNT RATE DATA FOR EAR1", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 1 mission phase, when in the vicinity of Earth.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:31.468925", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EAR2-V1.0", "title": "SREM RAW COUNT RATE DATA FOR EAR2", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 2 mission phase, when in the vicinity of Earth.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:32.460635", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EAR3-V1.0", "title": "SREM RAW COUNT RATE DATA FOR EAR3", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the EARTH 3 mission phase, when in the vicinity of Earth.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ear3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:33.468502", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC1-MTP010-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP010", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 10 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp010-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:34.468497", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC1-MTP011-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP011", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 11 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:35.467988", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC1-MTP012-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP012", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 12 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp012-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:36.494350", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC1-MTP013-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP013", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 13 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc1-mtp013-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:37.543975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC2-MTP014-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP014", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 14 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:38.555748", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC2-MTP015-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP015", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 15 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:39.474929", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC2-MTP016-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP016", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 16 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp016-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:40.469667", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC2-MTP017-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP017", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 17 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc2-mtp017-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:41.484347", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC3-MTP018-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP018", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 18 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp018-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:42.482722", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC3-MTP019-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP019", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 19 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp019-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:43.485694", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC3-MTP020-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP020", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 20 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp020-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:44.493537", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC3-MTP021-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP021", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 21 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc3-mtp021-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:45.487749", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC4-MTP022-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP022", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 22 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp022-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:46.491704", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC4-MTP023-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP023", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 23 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp023-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:47.508602", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-ESC4-MTP024-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP024", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 24 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-esc4-mtp024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:48.552334", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT1-MTP025-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP025", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 25 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp025-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:49.568292", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT1-MTP026-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP026", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 26 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp026-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:50.496636", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT1-MTP027-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP027", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 27 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext1-mtp027-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:51.498249", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT2-MTP028-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP028", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 28 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp028-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:52.501140", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT2-MTP029-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP029", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 29 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp029-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:53.508682", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT2-MTP030-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP030", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 30 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext2-mtp030-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:54.509487", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT3-MTP031-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP031", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 31 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp031-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:55.508975", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT3-MTP032-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP032", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 32 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp032-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:56.515456", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT3-MTP033-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP033", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 33 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp033-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:57.513916", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT3-MTP034-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP034", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 34 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp034-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:58.522435", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-EXT3-MTP035-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP035", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 35 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-ext3-mtp035-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:25:59.569691", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-MARS-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MARS", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the MARS mission phase, when in the vicinity of Mars.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:00.577168", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-PRL-COM-V1.0", "title": "SREM RAW COUNT RATE DATA FOR PRL", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the PRELANDING COMISSIONING mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-com-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:01.524821", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-PRL-MTP003-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP003", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 3 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp003-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:02.528347", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-PRL-MTP004-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP004", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 4 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp004-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:03.525747", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-PRL-MTP005-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP005", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 5 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp005-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:04.522809", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-PRL-MTP006-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP006", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 6 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp006-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:05.532056", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-PRL-MTP007-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP007", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 7 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp007-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:06.533344", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-PRL-MTP008-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP008", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 8 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:07.534807", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-PRL-MTP009-V1.0", "title": "SREM RAW COUNT RATE DATA FOR MTP009", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 9 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-prl-mtp009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:08.532261", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-2-RVM1-V1.0", "title": "SREM RAW COUNT RATE DATA FOR RVM1", "description": "This volume contains raw count rates observed by the SREM instrument on the ROSETTA S/C measured during the RVM1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-2-rvm1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:09.541181", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-AST1-V1.0", "title": "SREM DERIVED FLUX DATA FOR AST1", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the AST1 (STEINS) mission phase, when in the vicinity of asteroid 2867 STEINS.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:10.574610", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-AST2-V1.0", "title": "SREM DERIVED FLUX DATA FOR AST2", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the AST2 (LUTETIA) mission phase, when in the vicinity of asteroid 21 LUTETIA.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:11.625905", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-CR1-V1.0", "title": "SREM DERIVED FLUX DATA FOR CR1", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:12.635068", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-CR2-V1.0", "title": "SREM DERIVED FLUX DATA FOR CR2", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:13.548555", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-CR3-V1.0", "title": "SREM DERIVED FLUX DATA FOR CR3", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 3 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:14.542602", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-CR4A-V1.0", "title": "SREM DERIVED FLUX DATA FOR CR4A", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 4A mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:15.553185", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-CR4B-V1.0", "title": "SREM DERIVED FLUX DATA FOR CR4B", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 4B mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr4b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:16.551487", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-CR5-V1.0", "title": "SREM DERIVED FLUX DATA FOR CR5", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CRUISE 5 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cr5-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:17.557517", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-CVP1-V1.0", "title": "SREM DERIVED FLUX DATA FOR CVP1", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CVP1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:18.547204", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-CVP2-V1.0", "title": "SREM DERIVED FLUX DATA FOR CVP2", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the CVP2 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-cvp2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:19.548519", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EAR1-V1.0", "title": "SREM DERIVED FLUX DATA FOR EAR1", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 1 mission phase, when in the vicinity of Earth.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:20.560414", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EAR2-V1.0", "title": "SREM DERIVED FLUX DATA FOR EAR2", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 2 mission phase, when in the vicinity of Earth.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:21.585946", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EAR3-V1.0", "title": "SREM DERIVED FLUX DATA FOR EAR3", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the EARTH 3 mission phase, when in the vicinity of Earth.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ear3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:22.631832", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC1-MTP010-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP010", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 10 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp010-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:23.646382", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC1-MTP011-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP011", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 11 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp011-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:24.569086", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC1-MTP012-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP012", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 12 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp012-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:25.568959", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC1-MTP013-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP013", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 13 period of the ESCORT 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc1-mtp013-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:26.572699", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC2-MTP014-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP014", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 14 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp014-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:27.571488", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC2-MTP015-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP015", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 15 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp015-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:28.573289", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC2-MTP016-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP016", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 16 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp016-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:29.582141", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC2-MTP017-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP017", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 17 period of the ESCORT 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc2-mtp017-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:30.581342", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC3-MTP018-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP018", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 18 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp018-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:31.585666", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC3-MTP019-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP019", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 19 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp019-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:32.597990", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC3-MTP020-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP020", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 20 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp020-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:33.640702", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC3-MTP021-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP021", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 21 period of the ESCORT 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc3-mtp021-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:34.658924", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC4-MTP022-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP022", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 22 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp022-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:35.589590", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC4-MTP023-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP023", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 23 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp023-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:36.595121", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-ESC4-MTP024-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP024", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 24 period of the ESCORT 4 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-esc4-mtp024-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:37.586439", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT1-MTP025-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP025", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 25 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp025-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:38.591692", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT1-MTP026-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP026", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 26 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp026-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:39.600163", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT1-MTP027-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP027", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 27 period of the EXTENSION 1 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext1-mtp027-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:40.603388", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT2-MTP028-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP028", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 28 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp028-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:41.605030", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT2-MTP029-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP029", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 29 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp029-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:42.607451", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT2-MTP030-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP030", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 30 period of the EXTENSION 2 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext2-mtp030-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:43.609917", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT3-MTP031-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP031", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 31 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp031-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:44.655868", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT3-MTP032-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP032", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 32 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp032-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:45.668368", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT3-MTP033-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP033", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 33 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp033-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:46.612073", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT3-MTP034-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP034", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 34 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp034-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:47.617092", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-EXT3-MTP035-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP035", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 35 period of the EXTENSION 3 mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-ext3-mtp035-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:48.610065", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-MARS-V1.0", "title": "SREM DERIVED FLUX DATA FOR MARS", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the MARS mission phase, when in the vicinity of Mars.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:49.613337", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-PRL-COM-V1.0", "title": "SREM DERIVED FLUX DATA FOR PRL", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the PRELANDING COMISSIONING mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-com-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:50.624211", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-PRL-MTP003-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP003", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 3 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp003-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:51.623454", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-PRL-MTP004-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP004", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 4 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp004-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:52.626932", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-PRL-MTP005-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP005", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 5 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp005-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:53.625345", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-PRL-MTP006-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP006", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 6 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp006-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:54.629986", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-PRL-MTP007-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP007", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 7 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp007-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:55.668454", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-PRL-MTP008-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP008", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 8 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp008-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:56.812280", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-PRL-MTP009-V1.0", "title": "SREM DERIVED FLUX DATA FOR MTP009", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the Medium Term Plan 9 period of the PRELANDING mission phase, when in the vicinity of comet 67P/C-G.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-prl-mtp009-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:57.725769", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO-X-SREM-5-RVM1-V1.0", "title": "SREM DERIVED FLUX DATA FOR RVM1", "description": "This volume contains electron and proton flux energies from the SREM instrument on the ROSETTA S/C measured during the RVM1 mission phase.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro-x-srem-5-rvm1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:58.633648", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-A-CONSERT-2-AST2-V1.0", "title": "CONSERT RAW DATA FOR THE LUTETIA FLY_BY", "description": "This volume contains data and supporting documentation from the Rosetta Lutetia fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-a-consert-2-ast2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:26:59.640504", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-2-FSS-V1.0", "title": "CONSERT RAW DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:00.644641", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-2-FSS-V2.0", "title": "CONSERT EDITED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-fss-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:01.644077", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-2-LTS-V1.0", "title": "CONSERT RAW DATA FOR THE LTS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta LTS comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-lts-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:02.643670", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-2-SDL-V1.0", "title": "CONSERT RAW DATA FOR THE SDL PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:03.648454", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-2-SDL-V2.0", "title": "CONSERT EDITED DATA FOR THE SDL PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-2-sdl-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:04.646651", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-3-FSS-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:05.650717", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-3-FSS-V1.1", "title": "CONSERT CALIBRATED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-fss-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:06.677275", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-3-SDL-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE SDL PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:07.725323", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-3-SDL-V1.1", "title": "CONSERT CALIBRATED DATA FOR THE SDL PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-3-sdl-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:08.733539", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-4-FSS-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE FSS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta FSS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-fss-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:09.658974", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-C-CONSERT-4-SDL-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE SDL PHASE", "description": "This volume contains data and supporting documentation from the Rosetta SDL mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-c-consert-4-sdl-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:10.662466", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CR2-V1.0", "title": "CONSERT RAW DATA FOR THE CR2 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:11.663257", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CR2-V2.0", "title": "CONSERT EDITED DATA FOR THE CR2 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:12.670289", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CR4A-V1.0", "title": "CONSERT RAW DATA FOR THE CR4A PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR4A mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:13.669893", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CR4A-V2.0", "title": "CONSERT EDITED DATA FOR THE CR4A PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR4A mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4a-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:14.672270", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CR4B-V1.0", "title": "CONSERT RAW DATA FOR THE CR4B PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR4B mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4b-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:15.672553", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CR4B-V2.0", "title": "CONSERT EDITED DATA FOR THE CR4B PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR4B mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr4b-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:16.676160", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CR5-V1.0", "title": "CONSERT RAW DATA FOR THE CR5 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr5-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:17.688806", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CR5-V2.0", "title": "CONSERT EDITED DATA FOR THE CR5 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cr5-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:18.732221", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CVP-V1.0", "title": "CONSERT RAW DATA FOR THE COMMISSIONING PHASE", "description": "This volume contains data and supporting documentation from the Rosetta Commissiong mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:19.747068", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CVP1-V1.0", "title": "CONSERT EDITED DATA FOR THE COMMISSIONING PHASE PART 1", "description": "This volume contains data and supporting documentation from the Rosetta Commissiong mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:20.685105", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-CVP2-V1.0", "title": "CONSERT EDITED DATA FOR THE COMMISSIONING PHASE PART 2", "description": "This volume contains data and supporting documentation from the Rosetta Commissiong mission phase part 2", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-cvp2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:21.686748", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-EAR1-V2.0", "title": "CONSERT EDITED DATA FOR THE EARTH SWING_BY 1", "description": "This volume contains data and supporting documentation from the Rosetta Earth swing by 1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:22.685875", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-EAR2-V2.0", "title": "CONSERT EDITED DATA FOR THE EARTH SWING-BY 2", "description": "This volume contains data and supporting documentation from the Rosetta Earth swing by 2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:23.688971", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-EAR3-V2.0", "title": "CONSERT EDITED DATA FOR THE EARTH SWING-BY 3", "description": "This volume contains data and supporting documentation from the Rosetta Earth swing by 3 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-ear3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:24.694489", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-GRND-V1.0", "title": "CONSERT EDITED DATA FOR THE GRND PHASE", "description": "This volume contains data and supporting documentation from the Rosetta GRND mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grnd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:25.691224", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-GRNDBENCH-V1.0", "title": "CONSERT CALIBRATION DATA FOR THE GROUND PHASE", "description": "This volume contains data and supporting documentation from the Rosetta GROUND mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-grndbench-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:26.699236", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-MARS-V2.0", "title": "CONSERT EDITED DATA FOR THE MARS FLY-BY", "description": "This volume contains edited data and supporting documentation from the Rosetta Mars fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-mars-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:27.696588", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-PDCS-V1.0", "title": "CONSERT RAW DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:28.697384", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-PDCS-V2.0", "title": "CONSERT EDITED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-pdcs-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:29.738205", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-PHC-V1.0", "title": "CONSERT RAW DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:30.793294", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-PHC-V2.0", "title": "CONSERT EDITED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC comet phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-phc-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:31.704225", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-RVM1-V1.0", "title": "CONSERT RAW DATA FOR THE RVM1 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RVM1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-rvm1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:32.710844", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-2-RVM1-V2.0", "title": "CONSERT EDITED DATA FOR THE RVM1 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta RVM1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-2-rvm1-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:33.709945", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-CR2-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE CR2 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:34.712565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-CR2-V2.0", "title": "CONSERT CALIBRATED DATA FOR THE CR2 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:35.714876", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-CR4A-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE CR4A PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR4A mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:36.718280", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-CR4A-V2.0", "title": "CONSERT CALIBRATED DATA FOR THE CR4A PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR4A mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr4a-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:37.722028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-CR5-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE CR5 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr5-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:38.720713", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-CR5-V2.0", "title": "CONSERT CALIBRATED DATA FOR THE CR5 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-cr5-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:39.717506", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-EAR2-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE EAR2 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta EAR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:40.752423", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-EAR2-V2.0", "title": "CONSERT CALIBRATED DATA FOR THE EAR2 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta EAR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:41.800059", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-EAR3-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE EAR3 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta EAR3 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:42.814248", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-EAR3-V2.0", "title": "CONSERT CALIBRATED DATA FOR THE EAR3 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta EAR3 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-ear3-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:43.728231", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-GRND-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE GROUND PHASE", "description": "This volume contains data and supporting documentation from the Rosetta GROUND mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-grnd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:44.736413", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-GRND-V1.1", "title": "CONSERT CALIBRATED DATA FOR THE GROUND PHASE", "description": "This volume contains data and supporting documentation from the Rosetta GROUND mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-grnd-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:45.733875", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-MARS-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE MARS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta MARS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:46.740858", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-MARS-V2.0", "title": "CONSERT CALIBRATED DATA FOR THE MARS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta MARS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-mars-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:47.740912", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-PDCS-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:48.740667", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-PDCS-V1.1", "title": "CONSERT CALIBRATED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-pdcs-v1.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:49.741130", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-PHC-V1.0", "title": "CONSERT CALIBRATED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:50.749266", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-3-PHC-V2.0", "title": "CONSERT CALIBRATED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-3-phc-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:51.763907", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-CR2-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE CR2 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:52.812088", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-CR4A-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE CR4A PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR4A mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr4a-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:53.822912", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-CR5-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE CR5 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta CR5 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-cr5-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:54.752414", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-EAR2-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE EAR2 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta EAR2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:55.760277", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-EAR3-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE EAR3 PHASE", "description": "This volume contains data and supporting documentation from the Rosetta EAR3 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-ear3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:56.760423", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-GRND-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE GROUND PHASE", "description": "This volume contains data and supporting documentation from the Rosetta GROUND mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-grnd-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:57.762618", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-MARS-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE MARS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta MARS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:58.765216", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-PDCS-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE PDCS PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PDCS mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-pdcs-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:27:59.768617", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-CAL-CONSERT-4-PHC-V1.0", "title": "CONSERT REFORMATTED DATA FOR THE PHC PHASE", "description": "This volume contains data and supporting documentation from the Rosetta PHC mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-cal-consert-4-phc-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:00.769597", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-E-CONSERT-2-EAR1-V1.0", "title": "CONSERT RAW DATA FOR THE EARTH SWING_BY 1", "description": "This volume contains data and supporting documentation from the Rosetta Earth swing by 1 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:01.772538", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-E-CONSERT-2-EAR2-V1.0", "title": "CONSERT RAW DATA FOR THE EARTH SWING-BY 2", "description": "This volume contains data and supporting documentation from the Rosetta Earth swing by 2 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:02.773773", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-E-CONSERT-2-EAR3-V1.0", "title": "CONSERT RAW DATA FOR THE EARTH SWING-BY 3", "description": "This volume contains data and supporting documentation from the Rosetta Earth swing by 3 mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-e-consert-2-ear3-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:03.820324", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "RO/RL-M-CONSERT-2-MARS-V1.0", "title": "CONSERT RAW DATA FOR THE MARS FLY-BY", "description": "This volume contains data and supporting documentation from the Rosetta Mars fly by mission phase", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/ro_rl-m-consert-2-mars-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:04.834582", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SAKIG-C-IMF-3-RDR-HALLEY-V1.0", "title": "SAKIGAKE MAGNETIC FIELD DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-imf-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:05.780365", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SAKIG-C-SOW-3-RDR-HALLEY-V1.0", "title": "SAKIGAKE SOLAR WIND DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sakig-c-sow-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:06.789012", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-A-NAVCAM-2-EDR-ANNEFRANK-V1.0", "title": "STARDUST NAVCAM IMAGES OF ASTEROID ANNEFRANK", "description": "This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the asteroid Annefrank encounter (between July 22, 2002 and December 2, 2002.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:07.779084", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-A-NAVCAM-2-EDR-ANNEFRANK-V2.0", "title": "STARDUST NAVCAM IMAGES OF ASTEROID ANNEFRANK", "description": "This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the asteroid Annefrank encounter (between July 22, 2002 and December 2, 2002.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:08.781825", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-A-NAVCAM-2-EDR-ANNEFRANK-V3.0", "title": "STARDUST NAVCAM EDR DATA", "description": "This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-2-edr-annefrank-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:09.788593", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-A-NAVCAM-3-RDR-ANNEFRANK-V1.0", "title": "STARDUST NAVCAM RDR DATA", "description": "This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-a-navcam-3-rdr-annefrank-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:10.792418", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-DFMI-2-EDR-WILD2-V1.0", "title": "STARDUST DFMI WILD 2 ENCOUNTER EDR DATA", "description": "This volume contains the EDR data collected by the STARDUST Dust Flux Monitor Instrument (DFMI) during Wild 2 encounter. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dfmi-2-edr-wild2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:11.791109", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-DYNSCI-2-WILD2-V1.0", "title": "STARDUST WILD 2 ENCOUNTER DYNAMIC SCIENCE DATA VOLUME_ID =", "description": "This volume contains the Dynamic Science Experiment data collected by the STARDUST spacecraft during Wild 2 encounter. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-dynsci-2-wild2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:12.797031", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-2-EDR-WILD2-V1.0", "title": "STARDUST NAVCAM IMAGES OF COMET WILD 2", "description": "This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:13.798602", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-2-EDR-WILD2-V2.0", "title": "STARDUST NAVCAM IMAGES OF COMET WILD 2", "description": "This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:14.831565", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-2-EDR-WILD2-V3.0", "title": "STARDUST NAVCAM EDR DATA", "description": "This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-2-edr-wild2-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:15.886993", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-3-RDR-WILD2-V1.0", "title": "STARDUST NAVCAM CALIBRATED IMAGES OF COMET WILD 2", "description": "This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) These images have been calibrated using the best available information at the time of creation. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set. Final data preparation for PDS archiving was done by personnel of the Small Bodies Node", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:16.797237", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-3-RDR-WILD2-V2.0", "title": "STARDUST NAVCAM CALIBRATED IMAGES OF COMET WILD 2", "description": "This volume contains the images taken by the STARDUST Navigation Camera prior to, during, and after the comet Wild 2 encounter (between January 28, 2003 and January 13, 2004.) These images have been calibrated using the best available information at the time of creation. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set. Final data preparation for PDS archiving was done by personnel of the Small Bodies Node", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:17.800404", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-3-RDR-WILD2-V3.0", "title": "STARDUST NAVCAM RDR DATA", "description": "This volume contains data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-3-rdr-wild2-v3.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:18.803049", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V1.0", "title": "SBN DELIVERY VOLUME 5, 2005", "description": "This delivery volume holds the data set containing the basic tri-axial ellipsoid shape model of comet 81P/Wild 2 derived from Stardust NAVCAM images.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:19.808451", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V2.0", "title": "SBN DELIVERY VOLUME 3, 2006", "description": "This delivery volume holds the data sets containing both the basic tri-axial ellipsoid shape model and the detailed plate model of comet 81P/Wild 2. Both were derived from Stardust NAVCAM images.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:20.810198", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-NAVCAM-5-WILD2-SHAPE-MODEL-V2.1", "title": "SBN DELIVERY VOLUME 1, 2007", "description": "This delivery volume holds the data sets containing both the basic tri-axial ellipsoid shape model and the detailed plate model of comet 81P/Wild 2. Both were derived from Stardust NAVCAM images. Version 2.1 of this data set includes corrections to file desriptor keywords in two of the data file labels.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-navcam-5-wild2-shape-model-v2.1/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:21.814251", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-SRC-2-TEMPS-V1.0", "title": "STARDUST SRC TEMPERATURE MEASUREMENTS", "description": "This volume contains measurements from multiple temperature sensors in the Sample Return Collector.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-2-temps-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:22.812469", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C-SRC-6-GEOMETRY-V1.0", "title": "STARDUST SRC GEOMETRY MEASUREMENTS", "description": "This volume contains data describing the geometry and orientation of the spacecraft and dust collector plate during the two insterstellar dust collecting phases and the encounter with comet Wild 2.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c-src-6-geometry-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:23.813629", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C/CAL-NAVCAM-2-NEXT-TEMPEL1-V1.0", "title": "STARDUST-NEXT NAVCAM EDR DATA", "description": "This volume contains the data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-2-next-tempel1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:24.821632", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C/CAL-NAVCAM-3-NEXT-TEMPEL1-V1.0", "title": "STARDUST-NEXT NAVCAM RDR DATA", "description": "This volume contains the data collected by the STARDUST Navigation Camera (NAVCAM) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_cal-navcam-3-next-tempel1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:25.841167", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C/D-CIDA-1-EDF/HK-V1.0", "title": "STARDUST CIDA DATA", "description": "This volume contains the data collected by the STARDUST Cometary and Interstellar Dust Analyser (CIDA) during the whole mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-1-edf_hk-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:26.892558", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C/D-CIDA-2/3-NEXT-TEMPEL1-V1.0", "title": "STARDUST-NEXT CIDA EDR/RDR DATA", "description": "This volume contains the data collected by the STARDUST Cometary and Interstellar Dust Analyzer (CIDA) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-cida-2_3-next-tempel1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:27.905124", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SDU-C/D-DFMI-2/3-NEXT-TEMPEL1-V1.0", "title": "STARDUST-NEXT DFMI EDR/RDR DATA", "description": "This volume contains the data collected by the STARDUST Dust Flux Monitor Instrument (DFMI) during the Stardust-NExT mission. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/sdu-c_d-dfmi-2_3-next-tempel1-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:28.824749", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SOHO-C-LASCO-4-COMETIMAGES-V1.0", "title": "COMETIMAGES DELIVERY VOLUME", "description": "This volume contains the data for the SOHO LASCO COMET IMAGES V1.0 data set, ID: SOHO-C-LASCO-4-COMETIMAGES-V1.0. The data set was submitted by Matthew Knight. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-4-cometimages-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:29.871541", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SOHO-C-LASCO-5-KREUTZPHOTOM-V1.0", "title": "KREUTZPHOTOM DELIVERY VOLUME", "description": "This volume contains the data for the SOHO LASCO Comet Photometry V1.0 data set, ID: SOHO-C-LASCO-5-KREUTZPHOTOM-V1.0. The data set was submitted by Matthew Knight. This volume was auto-generated by OLAF. This volume is a transfer volume, and is only intended to be used to deliver the data set to Engineering Node.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/soho-c-lasco-5-kreutzphotom-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:30.875058", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "STARDUST-CAL-NC-2-PREFLIGHT-V1.0", "title": "VOLUME 1: SDU NAVCAM PREFLIGHT CALIBRATION", "description": "This volume contains the images taken by the STARDUST navigation camera on April 8-10, 1998, prior to flight. The images were acquired while the flight camera unit was in a thermal vacuum chamber and conditions varied to fully characterize the flight unit. A calibration report is also included to describe the calibration process and concerns. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/stardust-cal-nc-2-preflight-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:31.836107", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "STARDUST-CAL-NC-2-PREFLIGHT-V2.0", "title": "STARDUST NAVCAM RAW PREFLIGHT CALIBRATION IMAGES", "description": "This volume contains the raw, preflight, thermal-vacuum calibration images collected by the Navigation Camera (NAVCAM) on 8-10 April 1998 for the Stardust mission. This is version 2.0 of the dataset, in which the original image data were converted from the standard PDS IMG format to the FITS format; no corrections were applied. The NExT mission to comet 9P/Tempel 1 used some of these preflight data to check the exposure time offsets due to shutter reversal and to determine dark current rates. This dataset supersedes version 1.0 which was safed by PDS because the data were not considered to be scientifically useful for the Stardust mission. This volume also contains detailed documentation about the Stardust and NExT missions, spacecraft, instrument, and data set, as well as calibration information and PDS-required index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/stardust-cal-nc-2-preflight-v2.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:32.836326", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "STARDUST-C/E/L-DFMI-2-EDR-V1.0", "title": "VOLUME 1: SDU DUST FLUX MONITOR INSTRUMENT", "description": "This volume contains the data taken by the STARDUST Dust Flux Monitor Instrument during flight from February 19, 1999 until September 13, 1999. A calibration report is also included to describe the calibration process and concerns. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-dfmi-2-edr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:33.841028", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "STARDUST-C/E/L-NC-2-EDR-V1.0", "title": "VOLUME 1: SDU NAVCAM EARLY CRUISE IMAGES", "description": "This volume contains the images taken by the STARDUST navigation camera in flight from the launch of the satellite, February 7, 2000, until October 29, 2001. The volume also contains detailed documentation about the mission, spacecraft, instrument, and data set, as well as calibration information, and index tables.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/stardust-c_e_l-nc-2-edr-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:34.845119", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "SUISEI-C-ESP-3-RDR-HALLEY-V1.0", "title": "SUISEI SOLAR WIND EXPERIMENT DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0025 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/suisei-c-esp-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:35.842982", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-DUCMA-3-RDR-HALLEY-V1.0", "title": "VEGA1 DUCMA DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-ducma-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:36.852966", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-IKS-2-RDR-HALLEY-V1.0", "title": "VEGA 1 IKS IMAGE MODE DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:38.007945", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-IKS-3-RDR-HALLEY-PROCESSED-V1.0", "title": "VEGA 1 IKS HIGH-RES IR SPECTRA of COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-iks-3-rdr-halley-processed-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:38.912621", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-MISCHA-3-RDR-HALLEY-V1.0", "title": "VEGA1 MISCHA DATA FOR COMET 1P/HALLEY ENCOUNTER", "description": "Data extracted from the HAL_1003 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-mischa-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:39.855388", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-PM1-2-RDR-HALLEY-V1.0", "title": "VEGA 1 PLASMA ENERGY ANALYZER DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-pm1-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:40.851800", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-PUMA-2-RDR-HALLEY-V1.0", "title": "VEGA 1 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:41.855532", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-PUMA-3-RDR-HALLEY-PROCESSED-V1.0", "title": "VEGA 1 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-puma-3-rdr-halley-processed-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:42.856774", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-SP1-2-RDR-HALLEY-V1.0", "title": "VEGA1 SP1 DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp1-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:43.862329", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-SP2-2-RDR-HALLEY-V1.0", "title": "VEGA1 SP2 DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-sp2-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:44.861775", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-TNM-2-RDR-HALLEY-V1.0", "title": "VEGA1 TUNDE-M DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tnm-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:45.863796", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-TVS-2-RDR-HALLEY-V1.0", "title": "VEGA1 TELEVISION SYSTEM DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:46.867755", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C-TVS-3-RDR-HALLEY-PROCESSED-V1.0", "title": "VEGA1 PROCESSED TELEVISION DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c-tvs-3-rdr-halley-processed-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:47.871481", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-C/SW-MISCHA-3-RDR-ORIGINAL-V1.0", "title": "VEGA1 MISCHA ORIGINAL SUBMISSION FOR CRUISE/HALLEY", "description": "Data extracted from the HAL_1004 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-c_sw-mischa-3-rdr-original-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:48.910460", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA1-SW-MISCHA-3-RDR-CRUISE-V1.0", "title": "VEGA1 MISCHA DATA FROM PRE-HALLEY CRUISE", "description": "Data extracted from the HAL_1003 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega1-sw-mischa-3-rdr-cruise-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:49.958536", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-DUCMA-3-RDR-HALLEY-V1.0", "title": "VEGA2 DUCMA DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-ducma-3-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:50.873581", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-PM1-2-RDR-HALLEY-V1.0", "title": "VEGA 2 PLASMA ENERGY ANALYZER DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-pm1-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:51.866938", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-PUMA-2-RDR-HALLEY-V1.0", "title": "VEGA 2 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:52.878474", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-PUMA-3-RDR-HALLEY-PROCESSED-V1.0", "title": "VEGA 2 PUMA DUST MASS SPEC. DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-puma-3-rdr-halley-processed-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:53.880319", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-SP1-2-RDR-HALLEY-V1.0", "title": "VEGA2 SP1 DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp1-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:54.882711", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-SP2-2-RDR-HALLEY-V1.0", "title": "VEGA2 SP2 DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-sp2-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:55.880436", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-TVS-2-RDR-HALLEY-V1.0", "title": "VEGA2 UNPROCESSED TELEVISION DATA FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-2-rdr-halley-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:56.886426", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-TVS-3-RDR-HALLEY-PROCESSED-V1.0", "title": "VEGA2 TV DATA PROCESSED BY KFKI, FOR COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-3-rdr-halley-processed-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:57.890903", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C-TVS-5-RDR-HALLEY-TRANSFORM-V1.0", "title": "VEGA2 TRANSFORMED TV IMAGE OF COMET 1P/HALLEY", "description": "Data extracted from the HAL_0026 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c-tvs-5-rdr-halley-transform-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:58.885524", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VEGA2-C/SW-MISCHA-3-RDR-ORIGINAL-V1.0", "title": "VEGA2 MISCHA ORIGINAL SUBMISSION FOR CRUISE/HALLEY", "description": "Data extracted from the HAL_1004 volume, reorganized into single data set volumes but otherwise untouched. Directories common to all the original data sets are included here as appropriate. The DATA_PRODUCER listed below prepared the reorganized volumes.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vega2-c_sw-mischa-3-rdr-original-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:28:59.918638", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "VG2-J-UVS-0--SL9-NULL-RESULTS-V1.0", "title": "VOLUME 1009", "description": "This volume contains the data for the VOYAGER 2 JUPITER/SHOEMAKER-LEVY 9 UVS NULL RESULTS V1.0 data set, ID: VG2-J-UVS-0--SL9-NULL-RESULTS-V1.0. A statement of null results is included for the Voyager 2 UVS instrument.", "node": "sbn", "pds_version": "PDS3", "type": "volume", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/vg2-j-uvs-0--sl9-null-results-v1.0/", "download_url": null, "label_url": null, "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/", "scraped_at": "2026-02-18T04:29:00.971943", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_teleobs::1.0", "title": "DART Telescopic Observation Archive", "description": "The DART Telescopic Observation Bundle contains raw, calibrated, and derived data products taken from several ground observations in support of the DART mission. The bundle also includes documentation organized by ground observatory that describes the observatory data collections.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/bundle.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.736899Z", "keywords": ["Lowell"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_lightcurve_derived_parameters::1.0", "title": "ASTEROID LIGHTCURVE DERIVED DATA", "description": "This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1913-01-01", "stop_date": "2017-02-03", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/bundle_ast_lightcurve_derived_parameters.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/bundle_ast_lightcurve_derived_parameters.xml", "scraped_at": "2026-02-25T20:02:10.736962Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-mb.reddy.spectra::1.0", "title": "REDDY MAIN BELT ASTEROID SPECTRA", "description": "This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1) Ceres", "(101) Helena", "(105) Artemis", "(1086) Nata", "(1124) Stroobantia", "(113) Amalthea", "(1145) Robelmonte", "(12) Victoria", "(121) Hermione", "(1251) Hedera", "(1284) Latvia", "(130) Elektra", "(1329) Eliane", "(135) Hertha", "(138) Tolosa", "(1503) Kuopio", "(1616) Filipoff", "(1626) Sadeya", "(167) Urda", "(170) Maria", "(1717) Arlon", "(182) Elsa", "(1830) Pogson", "(184) Dejopeja", "(1883) Rimito", "(192) Nausikaa", "(1929) Kollaa", "(2) Pallas", "(20) Massalia", "(2011) Veteraniya", "(2014) Vasilevskis", "(2045) Peking", "(213) Lilaea", "(214) Aschera", "(22) Kalliope", "(233) Asterope", "(243) Ida", "(253) Mathilde", "(255) Oppavia", "(256) Walpurga", "(264) Libussa", "(273) Atropos", "(276) Adelheid", "(283) Emma", "(289) Nenetta", "(30) Urania", "(306) Unitas", "(308) Polyxo", "(317) Roxane", "(349) Dembowska", "(37) Fides", "(379) Huenna", "(385) Ilmatar", "(389) Industria", "(4) Vesta", "(403) Cyane", "(41) Daphne", "(419) Aurelia", "(434) Hungaria", "(44) Nysa", "(442) Eichsfeldia", "(446) Aeternitas", "(45) Eugenia", "(458) Hercynia", "(470) Kilia", "(472) Roma", "(482) Petrina", "(502) Sigune", "(504) Cora", "(51) Nemausa", "(56) Melete", "(569) Misa", "(620) Drakonia", "(63) Ausonia", "(64) Angelina", "(66) Maja", "(663) Gerlinde", "(670) Ottegebe", "(704) Interamnia", "(741) Botolphia", "(762) Pulcova", "(809) Lundia", "(84) Klio", "(858) El Djezair", "(863) Benkoela", "(87) Sylvia", "(872) Holda", "(877) Walkure", "(9) Metis", "(951) Gaspra", "Multiple Asteroids"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "2001-03-11", "stop_date": "2012-06-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/bundle_gbo.ast-mb.reddy.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/bundle_gbo.ast-mb.reddy.spectra.xml", "scraped_at": "2026-02-25T20:02:10.736972Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.2mass.phot::1.0", "title": "2MASS ASTEROID AND COMET SURVEY", "description": "This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["2MASS Camera - North", "2MASS 1.3m Telescope at Fred L. Whipple Observatory", "2MASS Camera - South", "2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"], "instrument_hosts": ["Fred L. Whipple Observatory", "Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "1997-06-07", "stop_date": "2001-02-15", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/bundle_gbo.ast.2mass.phot.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/bundle_gbo.ast.2mass.phot.xml", "scraped_at": "2026-02-25T20:02:10.736978Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:tno-centaur_diam-albedo-density::1.0", "title": "TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0", "description": "This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": [], "start_date": "1986-01-01", "stop_date": "2018-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/bundle_tno-centaur_diam-albedo-density.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/bundle_tno-centaur_diam-albedo-density.xml", "scraped_at": "2026-02-25T20:02:10.736981Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.polarimetry::1.0", "title": "POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS", "description": "The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)", "8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory", "Sanglok Observatory Photometer-Polarimeter", "RCC Richey-Chretien Telescope at Institute of Astrophysics", "KPNO Single Channel Polarimeter", "1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory", "McDonald Observatory Linear Polarimeter", "2.1-m Struve Warner &"], "instrument_hosts": ["European Southern Observatory on Cerro Paranal", "Institute of Astrophysics", "Kitt Peak National Observatory", "McDonald Observatory"], "data_types": [], "start_date": "1972-04-08", "stop_date": "2012-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/bundle_compil.tno-centaur.polarimetry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/bundle_compil.tno-centaur.polarimetry.xml", "scraped_at": "2026-02-25T20:02:10.736987Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.dione.shape-model::1.0", "title": "GASKELL DIONE SHAPE MODEL", "description": "The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn IV (Dione)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": [], "start_date": "2004-12-14", "stop_date": "2010-12-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/bundle_gaskell.dione.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/bundle_gaskell.dione.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.736991Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.mimas.shape-model::1.0", "title": "GASKELL MIMAS SHAPE MODEL", "description": "The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["CASSINI-HUYGENS", "VOYAGER"], "targets": ["Saturn I (Mimas)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "VOYAGER 1", "CASSINI ORBITER"], "data_types": [], "start_date": "1980-11-12", "stop_date": "2011-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/bundle_gaskell.mimas.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/bundle_gaskell.mimas.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.736996Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.phoebe.shape-model::1.0", "title": "GASKELL PHOEBE SHAPE MODEL", "description": "The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn IX (Phoebe)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": [], "start_date": "2004-06-11", "stop_date": "2004-06-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/bundle_gaskell.phoebe.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/bundle_gaskell.phoebe.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.737000Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.tethys.shape-model::1.0", "title": "GASKELL TETHYS SHAPE MODEL", "description": "The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn III (Tethys)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": [], "start_date": "2004-10-28", "stop_date": "2010-08-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/bundle_gaskell.tethys.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/bundle_gaskell.tethys.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.737003Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.smass.spectra::1.0", "title": "Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0", "description": "The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(541) Deborah", "(4179) Toutatis", "(1166) Sakuntala", "(38) Leda", "(495) Eulalia", "(808) Merxia", "(234) Barbara", "(7341) 1991 VK", "(631) Philippina", "(319) Leona", "(3494) Purplemountain", "(4606) Saheki", "(3748) Tatum", "(111) Ate", "(2645) Daphneplane", "(297) Caecilia", "(314) Rosalia", "(3321) Dasha", "(5143) Heracles", "(169) Zelia", "(4038) Kristina", "(86) Semele", "(2538) Vanderlinden", "(4031) Mueller", "(722) Frieda", "(509) Iolanda", "(126) Velleda", "(4219) Nakamura", "(1451) Grano", "(28) Bellona", "(39) Laetitia", "(8) Flora", "(415690) 1992 UB", "(3935) Toatenmongakkai", "1991 XB", "(339) Dorothea", "(36) Atalante", "(4165) Didkovskij", "(4640) Hara", "(248) Lameia", "(2091) Sampo", "(374) Burgundia", "(481) Emita", "(702) Alauda", "(3220) Murayama", "(402) Chloe", "(6) Hebe", "(32) Pomona", "(2365) Interkosmos", "(239) Adrastea", "(204) Kallisto", "(3332) Raksha", "(3760) Poutanen", "(54) Alexandra", "(4370) Dickens", "(4156) Okadanoboru", "(4373) Crespo", "(1375) Alfreda", "(471) Papagena", "(511) Davida", "(1697) Koskenniemi", "(3578) Carestia", "(470) Kilia", "(137) Meliboea", "(2923) Schuyler", "(384) Burdigala", "(4104) Alu", "(61) Danae", "(3528) Counselman", "(2074) Shoemaker", "(3167) Babcock", "(10) Hygiea", "(2174) Asmodeus", "(2299) Hanko", "(4761) Urrutia", "(480) Hansa", "(55) Pandora", "(1626) Sadeya", "(2215) Sichuan", "(1279) Uganda", "(2775) Odishaw", "(4085) Weir", "(3155) Lee", "(3915) Fukushima", "(8176) 1991 WA", "(529) Preziosa", "(4353) Onizaki", "(4635) Rimbaud", "(653) Berenike", "(2259) Sofievka", "(243) Ida", "(416) Vaticana", "(737) Arequipa", "(2140) Kemerovo", "(3759) Piironen", "(138) Tolosa", "(1534) Nasi", "(803) Picka", "(72) Feronia", "(1577) Reiss", "(1325) Inanda", "(2558) Viv", "(2442) Corbett", "(3677) Magnusson", "(371) Bohemia", "(1772) Gagarin", "(3381) Mikkola", "(4956) Noymer", "(582) Olympia", "(1143) Odysseus", "(134) Sophrosyne", "(2590) Mourao", "(639) Latona", "(350) Ornamenta", "(3792) Preston", "(2070) Humason", "(128) Nemesis", "(4) Vesta", "(441) Bathilde", "(230) Athamantis", "(2107) Ilmari", "(256) Walpurga", "(43) Ariadne", "(519) Sylvania", "(3657) Ermolova", "(1906) Naef", "(2444) Lederle", "(599) Luisa", "(2908) Shimoyama", "(185) Eunike", "(2011) Veteraniya", "(1653) Yakhontovia", "(14) Irene", "(196) Philomela", "(4006) Sandler", "(1145) Robelmonte", "(2078) Nanking", "(235) Carolina", "(787) Moskva", "(2599) Veseli", "(2965) Surikov", "(879) Ricarda", "(2130) Evdokiya", "(1393) Sofala", "(3431) Nakano", "(1749) Telamon", "(3559) Violaumayer", "(7474) 1992 TC", "(149) Medusa", "(82) Alkmene", "(22) Kalliope", "(1198) Atlantis", "(1501) Baade", "(7) Iris", "(3740) Menge", "(1712) Angola", "(245) Vera", "(4062) Schiaparelli", "(4376) Shigemori", "(4215) Kamo", "(4562) Poleungkuk", "(3268) Desanctis", "(131) Vala", "(788) Hohensteina", "(1584) Fuji", "(918) Itha", "(1110) Jaroslawa", "(116) Sirona", "(3501) Olegiya", "(4159) Freeman", "(518) Halawe", "(88) Thisbe", "(2420) Ciurlionis", "(5065) Johnstone", "(1967) Menzel", "(65706) 1992 NA", "(42) Isis", "(430) Hybris", "(4440) Tchantches", "(2060) Chiron", "(512) Taurinensis", "(68) Leto", "(3944) Halliday", "(3158) Anga", "(446) Aeternitas", "(2159) Kukkamaki", "(3674) Erbisbuhl", "(1646) Rosseland", "(2204) Lyyli", "(4005) Dyagilev", "(2024) Mclaughlin", "(346) Hermentaria", "(292) Ludovica", "(456) Abnoba", "(1358) Gaika", "(1892) Lucienne", "(3963) Paradzhanov", "(1722) Goffin", "(4546) Franck", "(1679) Nevanlinna", "(1302) Werra", "(2327) Gershberg", "(290) Bruna", "(1934) Jeffers", "(354) Eleonora", "(1781) Vanbiesbroeck", "(1084) Tamariwa", "(1478) Vihuri", "(5145) Pholus", "(1257) Mora", "(1658) Innes", "(4673) Bortle", "(3231) Mila", "(2728) Yatskiv", "(724) Hapag", "(1607) Mavis", "(1463) Nordenmarkia", "(218) Bianca", "(1264) Letaba", "(2966) Korsunia", "(1995) Hajek", "(4282) Endate", "(1651) Behrens", "(2128) Wetherill", "(291) Alice", "(4939) Scovil", "(1289) Kutaissi", "(3523) Arina", "(2143) Jimarnold", "(25) Phocaea", "(563) Suleika", "(774) Armor", "(2790) Needham", "(289) Nenetta", "(2403) Sumava", "(1063) Aquilegia", "(1854) Skvortsov", "(2014) Vasilevskis", "(4145) Maximova", "(915) Cosette", "(73) Klytia", "(158) Koronis", "(1725) Crao", "Multiple Asteroids", "(1471) Tornio", "(231) Vindobona", "(3109) Machin", "(683) Lanzia", "(1807) Slovakia", "(2440) Educatio", "(3869) Norton", "(3285) Ruthwolfe", "(2149) Schwambraniya", "(1165) Imprinetta", "(29) Amphitrite", "(2503) Liaoning", "(1929) Kollaa", "(349) Dembowska", "(237) Coelestina", "(3586) Vasnetsov", "(71) Niobe", "(1907) Rudneva", "(1933) Tinchen", "(1480) Aunus", "(2119) Schwall", "(467) Laura", "(477) Italia", "(3968) Koptelov", "(1743) Schmidt", "(53) Kalypso", "(2017) Wesson", "(811) Nauheima", "(345) Tercidina", "(211) Isolda", "(863) Benkoela", "(2253) Espinette", "(1144) Oda", "(157) Dejanira", "(4002) Shinagawa", "(4025) Ridley", "(720) Bohlinia", "(3628) Boznemcova", "(550) Senta", "(851) Zeissia", "(5118) Elnapoul", "(4510) Shawna", "(186) Celuta", "(18) Melpomene", "(3354) Mcnair", "(1379) Lomonosowa", "(2920) Automedon", "(287) Nephthys", "(752) Sulamitis", "(474) Prudentia", "(900) Rosalinde", "(221) Eos", "(1071) Brita", "(11066) Sigurd", "(951) Gaspra", "(1273) Helma", "(1518) Rovaniemi", "(732) Tjilaki", "(2946) Muchachos", "(813) Baumeia", "(167) Urda", "(2105) Gudy", "(3665) Fitzgerald", "(1628) Strobel", "(675) Ludmilla", "(3153) Lincoln", "(4147) Lennon", "(124) Alkeste", "(2113) Ehrdni", "(4948) Hideonishimura", "(3999) Aristarchus", "(3) Juno", "(2098) Zyskin"], "instruments": ["2.4-m Hiltner Ritchey-Chretien equatorial reflector", "Mark III Spectrograph"], "instrument_hosts": ["McGraw-Hill Observatory"], "data_types": [], "start_date": "1990-01-01", "stop_date": "1994-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/bundle_gbo.ast.smass.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/bundle_gbo.ast.smass.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737025Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.7-color-survey::1.0", "title": "SEVEN COLOR ASTEROID SURVEY", "description": "The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Primo I Photometer", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "1992-07-01", "stop_date": "1994-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/bundle_gbo.ast.7-color-survey.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/bundle_gbo.ast.7-color-survey.xml", "scraped_at": "2026-02-25T20:02:10.737031Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.satellite.polarimetry::1.0", "title": "POLARIMETRY OF PLANETARY SATELLITES", "description": "This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Satellites"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1966-12-12", "stop_date": "2011-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/bundle_compil.satellite.polarimetry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/bundle_compil.satellite.polarimetry.xml", "scraped_at": "2026-02-25T20:02:10.737035Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.pluto-charon.mutual-events::1.0", "title": "PLUTO-CHARON MUTUAL EVENTS", "description": "Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(134340) Pluto"], "instruments": ["Tinsley Photometer", "2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory", "Tinsley Photometer", "61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory", "McDonald P45a Two-Channel Photometer", "2.7m Telescope", "McDonald P45a Two-Channel Photometer", "2.1-m Struve Warner &", "McDonald P45a Two-Channel Photometer", "91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory", "Literature Compilation"], "instrument_hosts": ["Mauna Kea Observatory", "Mauna Kea Observatory", "McDonald Observatory", "McDonald Observatory", "McDonald Observatory"], "data_types": [], "start_date": "1985-01-16", "stop_date": "1990-09-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/bundle_gbo.pluto-charon.mutual-events.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/bundle_gbo.pluto-charon.mutual-events.xml", "scraped_at": "2026-02-25T20:02:10.737041Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.ecas.phot::1.0", "title": "EIGHT COLOR ASTEROID SURVEY", "description": "This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids", "Calibration Target"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1979-05-31", "stop_date": "1983-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/bundle_gbo.ast.ecas.phot.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/bundle_gbo.ast.ecas.phot.xml", "scraped_at": "2026-02-25T20:02:10.737045Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.albedos::1.0", "title": "ASTEROID ALBEDOS", "description": "This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1973-01-01", "stop_date": "2001-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/bundle_compil.ast.albedos.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/bundle_compil.ast.albedos.xml", "scraped_at": "2026-02-25T20:02:10.737050Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.magnitude-slope::1.0", "title": "ASTEROID ABSOLUTE MAGNITUDES", "description": "Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1990-12-02", "stop_date": "2008-04-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/bundle_compil.ast.magnitude-slope.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/bundle_compil.ast.magnitude-slope.xml", "scraped_at": "2026-02-25T20:02:10.737053Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.names::1.0", "title": "ASTEROID NAMES AND DISCOVERY", "description": "This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1801-01-01", "stop_date": "2008-04-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/bundle_compil.ast.names.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/bundle_compil.ast.names.xml", "scraped_at": "2026-02-25T20:02:10.737057Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.radar-properties::1.0", "title": "ASTEROID RADAR", "description": "This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1968-01-01", "stop_date": "2011-01-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/bundle_compil.ast.radar-properties.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/bundle_compil.ast.radar-properties.xml", "scraped_at": "2026-02-25T20:02:10.737061Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.jpl.radar.shape_models::1.0", "title": "Radar shape models of asteroids compiled by Lawrence V1.0", "description": "This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(33342) 1998 WT24", "(10115) 1992 SK", "(276049) 2002 CE26", "(29075) 1950 DA", "(341843) 2008 EV5", "(54509) YORP", "(136617) 1994 CC", "(2100) Ra-Shalom", "(4486) Mithra", "(4660) Nereus", "(66391) 1999 KW4"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "34-m antenna", "goldstone.dss13_34m.recv_x", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Goldstone Complex", "Goldstone Complex", "Goldstone Complex"], "data_types": [], "start_date": "1999-02-07", "stop_date": "2009-06-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/bundle_gbo.ast.jpl.radar.shape_models.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/bundle_gbo.ast.jpl.radar.shape_models.xml", "scraped_at": "2026-02-25T20:02:10.737068Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.ubv-photometry::1.0", "title": "UBV MEAN ASTEROID COLORS", "description": "This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1951-01-01", "stop_date": "1989-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/bundle_compil.ast.ubv-photometry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/bundle_compil.ast.ubv-photometry.xml", "scraped_at": "2026-02-25T20:02:10.737072Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.magnitude-phase::1.0", "title": "KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS", "description": "A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1978-04-28", "stop_date": "2008-06-30", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/bundle_compil.ast.magnitude-phase.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/bundle_compil.ast.magnitude-phase.xml", "scraped_at": "2026-02-25T20:02:10.737075Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.colors::1.0", "title": "TNO AND CENTAUR COLORS", "description": "This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids", "Multiple Comets"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1985-09-23", "stop_date": "2014-03-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/bundle_compil.tno-centaur.colors.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/bundle_compil.tno-centaur.colors.xml", "scraped_at": "2026-02-25T20:02:10.737079Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.lightcurves::1.0", "title": "TRANS-NEPTUNIAN OBJECT LIGHTCURVES", "description": "This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(19521) Chaos", "(79360) Sila-Nunam", "(91133) 1998 HK151", "1998 XY95", "(40314) 1999 KR16", "(47932) 2000 GN171", "(150642) 2001 CZ31", "(82155) 2001 FZ173", "(38628) Huya", "Multiple Asteroids", "(15875) 1996 TP66", "(19255) 1994 VK8", "(19308) 1996 TO66", "(26181) 1996 GQ21", "(26375) 1999 DE9", "(33128) 1998 BU48", "(33340) 1998 VG44"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1997-08-27", "stop_date": "2001-11-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/bundle_compil.tno-centaur.lightcurves.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/bundle_compil.tno-centaur.lightcurves.xml", "scraped_at": "2026-02-25T20:02:10.737083Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.masses::1.0", "title": "ASTEROID MASSES", "description": "This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1991-01-01", "stop_date": "2012-04-18", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/bundle_compil.ast.masses.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/bundle_compil.ast.masses.xml", "scraped_at": "2026-02-25T20:02:10.737087Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.vilas.spectra::1.0", "title": "VILAS ASTEROID SPECTRA", "description": "This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1) Ceres", "(102) Miriam", "(1036) Ganymed", "(1162) Larissa", "(1167) Dubiago", "(1172) Aneas", "(1208) Troilus", "(121) Hermione", "(130) Elektra", "(134) Sophrosyne", "(1368) Numidia", "(1390) Abastumani", "(142) Polana", "(1467) Mashona", "(1512) Oulu", "(152) Atala", "(153) Hilda", "(165) Loreley", "(17) Thetis", "(1722) Goffin", "(181) Eucharis", "(1866) Sisyphus", "(1867) Deiphobus", "(187) Lamberta", "(19) Fortuna", "(190) Ismene", "(2) Pallas", "(2113) Ehrdni", "(2241) Alcathous", "(225) Henrietta", "(2357) Phereclos", "(2674) Pandarus", "(276) Adelheid", "(292) Ludovica", "(31) Euphrosyne", "(326) Tamara", "(3288) Seleucus", "(334) Chicago", "(368) Haidea", "(375) Ursula", "(407) Arachne", "(409) Aspasia", "(41) Daphne", "(420) Bertholda", "(433) Eros", "(466) Tisiphone", "(483) Seppina", "(495) Eulalia", "(499) Venusia", "(528) Rezia", "(54) Alexandra", "(559) Nanon", "(566) Stereoskopia", "(570) Kythera", "(606) Brangane", "(624) Hektor", "(643) Scheherezade", "(65) Cybele", "(654) Zelinda", "(66) Maja", "(692) Hippodamia", "(695) Bella", "(709) Fringilla", "(733) Mocia", "(748) Simeisa", "(76) Freia", "(773) Irmintraud", "(776) Berbericia", "(797) Montana", "(87) Sylvia", "(877) Walkure", "(884) Priamus", "(908) Buda", "(914) Palisana", "(940) Kordula", "Multiple Asteroids"], "instruments": ["CTIO 1.5-meter Cassegrain Spectrograph", "1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory", "Fink Spectrograph", "1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station", "CTIO 1.0m 2DFrutti Spectrograph", "1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory", "Larson IHW spectrograph", "1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory", "Mount Bigelow (Catalina) Station", "Cerro Tololo Inter-American Observatory", "Mount Bigelow (Catalina) Station"], "data_types": [], "start_date": "1982-02-04", "stop_date": "1998-09-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/bundle_gbo.ast.vilas.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/bundle_gbo.ast.vilas.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737098Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-vesta.reddy.spectra::1.0", "title": "REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA", "description": "This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(4) Vesta"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "2010-03-27", "stop_date": "2010-03-27", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/bundle_gbo.ast-vesta.reddy.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/bundle_gbo.ast-vesta.reddy.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737104Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.24-color-survey::1.0", "title": "24-COLOR ASTEROID SURVEY", "description": "This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(1015) Christa", "(1019) Strackea", "(1025) Riema", "(1036) Ganymed", "(105) Artemis", "(1055) Tynka", "(1058) Grubba", "(106) Dione", "(1075) Helina", "(108) Hecuba", "(1088) Mitaka", "(11) Parthenope", "(110) Lydia", "(1103) Sequoia", "(113) Amalthea", "(115) Thyra", "(116) Sirona", "(1162) Larissa", "(1172) Aneas", "(1173) Anchises", "(119) Althaea", "(1199) Geldonia", "(12) Victoria", "(1208) Troilus", "(121) Hermione", "(1212) Francette", "(122) Gerda", "(124) Alkeste", "(1263) Varsavia", "(128) Nemesis", "(1284) Latvia", "(129) Antigone", "(13) Egeria", "(130) Elektra", "(1317) Silvretta", "(1330) Spiridonia", "(136) Austria", "(1364) Safara", "(139) Juewa", "(14) Irene", "(140) Siwa", "(141) Lumen", "(144) Vibilia", "(1449) Virtanen", "(145) Adeona", "(149) Medusa", "(1493) Sigrid", "(15) Eunomia", "(150) Nuwa", "(1512) Oulu", "(1529) Oterma", "(156) Xanthippe", "(1566) Icarus", "(158) Koronis", "(1580) Betulia", "(1595) Tanga", "(16) Psyche", "(1620) Geographos", "(1627) Ivar", "(163) Erigone", "(1636) Porter", "(164) Eva", "(1645) Waterfield", "(1656) Suomi", "(166) Rhodope", "(167) Urda", "(1685) Toro", "(169) Zelia", "(17) Thetis", "(170) Maria", "(1717) Arlon", "(1727) Mette", "(175) Andromache", "(176) Iduna", "(18) Melpomene", "(181) Eucharis", "(1830) Pogson", "(185) Eunike", "(1862) Apollo", "(19) Fortuna", "(1915) Quetzalcoatl", "(192) Nausikaa", "(194) Prokne", "(196) Philomela", "(197) Arete", "(198) Ampella", "(2) Pallas", "(20) Massalia", "(200) Dynamene", "(208) Lacrimosa", "(21) Lutetia", "(210) Isabella", "(2100) Ra-Shalom", "(213) Lilaea", "(216) Kleopatra", "(217) Eudora", "(22) Kalliope", "(220) Stephania", "(2201) Oljato", "(221) Eos", "(23) Thalia", "(230) Athamantis", "(236) Honoria", "(24) Themis", "(243) Ida", "(246) Asporina", "(25) Phocaea", "(258) Tyche", "(26) Proserpina", "(262) Valda", "(264) Libussa", "(268) Adorea", "(27) Euterpe", "(279) Thule", "(28) Bellona", "(281) Lucretia", "(29) Amphitrite", "(293) Brasilia", "(3) Juno", "(30) Urania", "(308) Polyxo", "(31) Euphrosyne", "(3102) Krok", "(313) Chaldaea", "(32) Pomona", "(323) Brucia", "(324) Bamberga", "(325) Heidelberga", "(326) Tamara", "(335) Roberta", "(337) Devosa", "(338) Budrosa", "(339) Dorothea", "(34) Circe", "(340) Eduarda", "(341) California", "(344) Desiderata", "(345) Tercidina", "(347) Pariana", "(349) Dembowska", "(354) Eleonora", "(356) Liguria", "(36) Atalante", "(361) Bononia", "(363) Padua", "(365) Corduba", "(37) Fides", "(372) Palma", "(374) Burgundia", "(375) Ursula", "(386) Siegena", "(389) Industria", "(39) Laetitia", "(391) Ingeborg", "(4) Vesta", "(40) Harmonia", "(402) Chloe", "(403) Cyane", "(409) Aspasia", "(41) Daphne", "(413) Edburga", "(415) Palatia", "(416) Vaticana", "(419) Aurelia", "(42) Isis", "(423) Diotima", "(426) Hippo", "(43) Ariadne", "(433) Eros", "(434) Hungaria", "(435) Ella", "(439) Ohio", "(44) Nysa", "(441) Bathilde", "(446) Aeternitas", "(45) Eugenia", "(453) Tea", "(46) Hestia", "(462) Eriphyla", "(468) Lina", "(471) Papagena", "(472) Roma", "(48) Doris", "(481) Emita", "(488) Kreusa", "(490) Veritas", "(496) Gryphia", "(5) Astraea", "(505) Cava", "(51) Nemausa", "(510) Mabella", "(511) Davida", "(513) Centesima", "(52) Europa", "(526) Jena", "(53) Kalypso", "(532) Herculina", "(54) Alexandra", "(554) Peraga", "(558) Carmen", "(560) Delila", "(562) Salome", "(563) Suleika", "(574) Reginhild", "(579) Sidonia", "(5797) Bivoj", "(58) Concordia", "(582) Olympia", "(584) Semiramis", "(588) Achilles", "(599) Luisa", "(6) Hebe", "(60) Echo", "(613) Ginevra", "(617) Patroclus", "(62) Erato", "(624) Hektor", "(628) Christine", "(63) Ausonia", "(639) Latona", "(64) Angelina", "(648) Pippa", "(65) Cybele", "(654) Zelinda", "(66) Maja", "(660) Crescentia", "(674) Rachele", "(676) Melitta", "(68) Leto", "(69) Hesperia", "(695) Bella", "(696) Leonora", "(7) Iris", "(704) Interamnia", "(71) Niobe", "(712) Boliviana", "(714) Ulula", "(739) Mandeville", "(741) Botolphia", "(747) Winchester", "(750) Oskar", "(758) Mancunia", "(760) Massinga", "(770) Bali", "(772) Tanete", "(773) Irmintraud", "(78) Diana", "(781) Kartvelia", "(782) Montefiore", "(783) Nora", "(785) Zwetana", "(79) Eurynome", "(790) Pretoria", "(8) Flora", "(80) Sappho", "(801) Helwerthia", "(811) Nauheima", "(82) Alkmene", "(83) Beatrix", "(839) Valborg", "(84) Klio", "(846) Lipperta", "(85) Io", "(858) El Djezair", "(87) Sylvia", "(88) Thisbe", "(884) Priamus", "(887) Alinda", "(89) Julia", "(895) Helio", "(9) Metis", "(90) Antiope", "(909) Ulla", "(911) Agamemnon", "(92) Undina", "(925) Alphonsina", "(93) Minerva", "(94) Aurora", "(944) Hidalgo", "(969) Leocadia", "(97) Klotho", "(976) Benjamina", "Multiple Asteroids"], "instruments": ["DUAL BEAM PHOTOMETER"], "instrument_hosts": [], "data_types": [], "start_date": "1965-01-01", "stop_date": "1981-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/bundle_gbo.ast.24-color-survey.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/bundle_gbo.ast.24-color-survey.xml", "scraped_at": "2026-02-25T20:02:10.737123Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra::1.0", "title": "SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS", "description": "This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1172) Aneas", "(1173) Anchises", "(18268) Dardanos", "(1871) Astyanax", "(192388) 1996 RD29", "(192929) 2000 AT44", "(2223) Sarpedon", "(2357) Phereclos", "(30698) Hippokoon", "(3548) Eurybates", "(4829) Sergestus", "(5130) Ilioneus", "(5511) Cloanthus", "(6998) Tithonus", "(9430) Erichthonios", "(9818) Eurymachos", "Multiple Asteroids", "(105685) 2000 SC51", "(11089) 1994 CS8", "(111113) 2001 VK85", "(11351) Leucus", "(11488) 1988 RM11", "(11663) 1997 GO24", "(120453) 1988 RE12", "(124729) 2001 SB173", "(12921) 1998 WZ5", "(13862) 1999 XT160", "(14707) 2000 CC20", "(15502) 1999 NV27", "(15977) 1998 MA11", "(163135) 2002 CT22", "(163216) 2002 EN68", "(17416) 1988 RR10", "(18060) 1999 XJ156", "(18137) 2000 OU30", "(18493) Demoleon", "(18940) 2000 QV49", "(23549) Epicles", "(23694) 1997 KZ3", "(24233) 1999 XD94", "(24341) 2000 AJ87", "(24380) 2000 AA160", "(24420) 2000 BU22", "(24426) 2000 CR12", "(24452) 2000 QU167", "(24467) 2000 SS165", "(25347) 1999 RQ116", "(28958) 2001 CQ42", "(31820) 1999 RT186", "(31821) 1999 RK225", "(32430) 2000 RQ83", "(32615) 2001 QU277", "(32794) 1989 UE5", "(34785) 2001 RG87", "(39285) 2001 BP75", "(4035) 1986 WD", "(43212) 2000 AL113", "(47967) 2000 SL298", "(48249) 2001 SY345", "(48252) 2001 TL212", "(51359) 2000 SC17", "(53469) 2000 AX8", "(56968) 2000 SA92", "(65150) 2002 CA126", "(65225) 2002 EK44", "(6545) 1986 TR6", "(7352) 1994 CO", "(76804) 2000 QE", "(84709) 2002 VW120", "(9030) 1989 UX5", "(99328) 2001 UY123"], "instruments": ["Eso Multimode Instrument", "New Technology Telescope (NTT) at European Southern Observatory"], "instrument_hosts": ["European Southern Observatory"], "data_types": [], "start_date": "2002-11-09", "stop_date": "2005-01-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/bundle_gbo.ast-trojan.fornasier-etal.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/bundle_gbo.ast-trojan.fornasier-etal.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737134Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.sdss-moc.phot::1.0", "title": "SDSS MOVING OBJECT CATALOG", "description": "The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids", "Calibration Target"], "instruments": ["SDSS Photometric Camera", "2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"], "instrument_hosts": ["Apache Point Observatory"], "data_types": [], "start_date": "1998-09-19", "stop_date": "2007-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/bundle_gbo.sdss-moc.phot.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/bundle_gbo.sdss-moc.phot.xml", "scraped_at": "2026-02-25T20:02:10.737139Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.triad.radiometry::1.0", "title": "TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS", "description": "This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "1972-01-01", "stop_date": "1978-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/bundle_compil.ast.triad.radiometry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/bundle_compil.ast.triad.radiometry.xml", "scraped_at": "2026-02-25T20:02:10.737143Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.sdss-based-taxonomy::1.0", "title": "SDSS-BASED ASTEROID TAXONOMY", "description": "The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["SDSS Photometric Camera", "2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"], "instrument_hosts": ["Apache Point Observatory"], "data_types": [], "start_date": "1998-09-19", "stop_date": "2007-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/bundle_ast.sdss-based-taxonomy.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/bundle_ast.sdss-based-taxonomy.xml", "scraped_at": "2026-02-25T20:02:10.737147Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-iannini-family.spectra::1.0", "title": "IANNINI ASTEROID FAMILY SPECTRA", "description": "Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(202951) 1999 RE", "(217773) 2000 RO76", "(122633) 2000 RA80", "(122636) 2000 RZ81", "(147311) 2003 AF89", "(150781) 2001 QO282", "(61207) 2000 OZ7", "(61928) 2000 RP4", "(81550) 2000 HU23", "(87239) 2000 OH45", "(88187) 2000 XZ42"], "instruments": ["Keck Echelle Spectrograph and Imager", "10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"], "instrument_hosts": ["W.M. Keck Observatory"], "data_types": [], "start_date": "2004-11-10", "stop_date": "2007-03-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/bundle_gbo.ast-iannini-family.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/bundle_gbo.ast-iannini-family.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737151Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra::1.0", "title": "SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC", "description": "These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(334008) 2000 UP66", "(5498) Gustafsson", "(7558) Yurlov", "(9147) Kourakuen", "(9254) Shunkai", "(9481) Menchu", "(9553) Colas", "(10537) 1991 RY16", "(111515) 2001 YC91", "(113844) 2002 TV237", "(114544) 2003 BN28", "(122357) 2000 QH49", "(12543) 1998 QM5", "(131010) 2000 XQ9", "(134455) 1998 ST116", "(24941) 1997 JM14", "(26886) 1994 TJ2", "(28034) 1998 EU13", "(28517) 2000 DD7", "(36840) 2000 SH112", "(37304) 2001 EW23", "(38070) Redwine", "(44447) 1998 UM21", "(46690) 1997 AN23", "(53143) 1999 BB9", "(56026) 1998 VN52", "(56570) 2000 JA21", "(60669) 2000 GE4", "(94005) 2000 XO25"], "instruments": ["Keck Echelle Spectrograph and Imager", "10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory", "Supernova Integral Field Spectrograph (SNIFS)", "2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"], "instrument_hosts": ["W.M. Keck Observatory", "Mauna Kea Observatory"], "data_types": [], "start_date": "2004-11-10", "stop_date": "2008-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/bundle_gbo.ast-v-type.moscovitz.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/bundle_gbo.ast-v-type.moscovitz.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737159Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.fieber-beyer.spectra::1.0", "title": "FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA", "description": "The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1018) Arnolda", "(1036) Ganymed", "(1064) Aethusa", "(1158) Luda", "(1166) Sakuntala", "(1215) Boyer", "(1358) Gaika", "(1368) Numidia", "(1379) Lomonosowa", "(1391) Carelia", "(1447) Utra", "(1501) Baade", "(1587) Kahrstedt", "(1607) Mavis", "(1644) Rafita", "(1722) Goffin", "(1772) Gagarin", "(1854) Skvortsov", "(1960) Guisan", "(198) Ampella", "(2089) Cetacea", "(248) Lameia", "(2497) Kulikovskij", "(292) Ludovica", "(3066) McFadden", "(329) Svea", "(3345) Tarkovskij", "(335) Roberta", "(355) Gabriella", "(3637) O'Meara", "(3760) Poutanen", "(3999) Aristarchus", "(421) Zahringia", "(46) Hestia", "(495) Eulalia", "(556) Phyllis", "(5676) Voltaire", "(619) Triberga", "(623) Chimaera", "(652) Jubilatrix", "(660) Crescentia", "(6649) Yokotatakao", "(695) Bella", "(714) Ulula", "(787) Moskva", "(797) Montana", "(875) Nymphe", "(879) Ricarda", "(897) Lysistrata", "(908) Buda", "(974) Lioba", "Multiple Asteroids", "(6212) 1993 MS1"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "2000-06-30", "stop_date": "2014-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/bundle_gbo.ast.fieber-beyer.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/bundle_gbo.ast.fieber-beyer.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737168Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.belskaya.polarimetry::1.0", "title": "BELSKAYA ASTEROID POLARIMETRY", "description": "This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["AFOSC Polarimeter", "Copernico 1.82m Telescope at Asiago Astrophysical Observatory", "CrAO Five-Channel Photopolarimeter", "1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"], "instrument_hosts": ["Asiago Astrophysical Observatory", "Crimean Astrophysical Observatory-Partizanskoye"], "data_types": [], "start_date": "1996-06-09", "stop_date": "2006-03-07", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/bundle_gbo.ast.belskaya.polarimetry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/bundle_gbo.ast.belskaya.polarimetry.xml", "scraped_at": "2026-02-25T20:02:10.737173Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.delbo.radiometric-diameters-albedos::1.0", "title": "DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS", "description": "This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Thermal Infrared Multi-Mode Instrument 2", "3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory", "JPL Mid-InfraRed Large-well Imager", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "MIRSI - Mid-Infrared Spectrometer and Imager", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "Keck I Long Wavelength Spectrograph (IR)", "W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"], "instrument_hosts": ["European Southern Observatory", "Mauna Kea Observatory", "Mauna Kea Observatory", "W.M. Keck Observatory"], "data_types": [], "start_date": "2000-03-16", "stop_date": "2003-06-03", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/bundle_ast.delbo.radiometric-diameters-albedos.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/bundle_ast.delbo.radiometric-diameters-albedos.xml", "scraped_at": "2026-02-25T20:02:10.737179Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.bus-demeo.taxonomy::1.0", "title": "BUS-DEMEO ASTEROID TAXONOMY", "description": "The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1991-10-25", "stop_date": "2008-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/bundle_ast.bus-demeo.taxonomy.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/bundle_ast.bus-demeo.taxonomy.xml", "scraped_at": "2026-02-25T20:02:10.737183Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.mrc.families::1.0", "title": "MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES", "description": "This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/bundle_ast.mrc.families.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/bundle_ast.mrc.families.xml", "scraped_at": "2026-02-25T20:02:10.737187Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.wisniewski.magnitudes::1.0", "title": "WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES", "description": "Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1976-10-19", "stop_date": "1993-12-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/bundle_gbo.ast.wisniewski.magnitudes.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/bundle_gbo.ast.wisniewski.magnitudes.xml", "scraped_at": "2026-02-25T20:02:10.737190Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ices.mastrapa.lab-spectra::1.0", "title": "OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE", "description": "Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Terrestrial Water Ice"], "instruments": ["VARIAN EXCALIBUR SERIES FTS 3000"], "instrument_hosts": [], "data_types": [], "start_date": "2006-04-12", "stop_date": "2006-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/bundle_gbo.ices.mastrapa.lab-spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/bundle_gbo.ices.mastrapa.lab-spectra.xml", "scraped_at": "2026-02-25T20:02:10.737194Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra::1.0", "title": "LEBOFSKY ET AL. 3-MICRON ASTEROID DATA", "description": "3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(111) Ate", "(114) Kassandra", "(1172) Aneas", "(13) Egeria", "(130) Elektra", "(139) Juewa", "(148) Gallia", "(16) Psyche", "(173) Ino", "(18) Melpomene", "(1867) Deiphobus", "(19) Fortuna", "(2) Pallas", "(233) Asterope", "(24) Themis", "(247) Eukrate", "(308) Polyxo", "(31) Euphrosyne", "(313) Chaldaea", "(324) Bamberga", "(344) Desiderata", "(349) Dembowska", "(36) Atalante", "(375) Ursula", "(386) Siegena", "(4) Vesta", "(409) Aspasia", "(410) Chloris", "(423) Diotima", "(5) Astraea", "(505) Cava", "(51) Nemausa", "(511) Davida", "(52) Europa", "(532) Herculina", "(55) Pandora", "(554) Peraga", "(570) Kythera", "(65) Cybele", "(70) Panopaea", "(704) Interamnia", "(72) Feronia", "(721) Tabora", "(74) Galatea", "(748) Simeisa", "(773) Irmintraud", "(776) Berbericia", "(87) Sylvia", "(88) Thisbe", "(92) Undina", "Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1977-02-17", "stop_date": "1989-04-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/bundle_gbo.ast.lebofsky-etal.3-micron-spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/bundle_gbo.ast.lebofsky-etal.3-micron-spectra.xml", "scraped_at": "2026-02-25T20:02:10.737200Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.smass2.spectra::1.0", "title": "Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0", "description": "This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(140) SIWA", "(2912) LAPALMA", "(4352) KYOTO", "(4701) MILANI", "(2305) KING", "(245) VERA", "(5563) 1991 VZ1", "(1541) ESTONIA", "(125) LIBERATRIX", "(634) UTE", "(3151) TALBOT", "(4276) CLIFFORD", "(4382) STRAVINSKY", "(70) PANOPAEA", "(2118) FLAGSTAFF", "(7564) GOKUMENON", "(1041) ASTA", "(188) MENIPPE", "(2106) HUGO", "(3306) BYRON", "(3809) AMICI", "(4649) SUMOTO", "(606) BRANGANE", "(1785) WURM", "(1135) COLCHIS", "(1830) POGSON", "(3340) YINHAI", "(670) OTTEGEBE", "(1147) STAVROPOLIS", "(1348) MICHEL", "(7817) ZIBITURTLE", "(50) VIRGINIA", "(625) XENIA", "(338) BUDROSA", "(3435) BOURY", "(147) PROTOGENEIA", "(5184) CAVAILLE-COLL", "(192) NAUSIKAA", "(26) PROSERPINA", "(8516) HYAKKAI", "(6500) KODAIRA", "(1424) SUNDMANIA", "(1618) DAWN", "(897) LYSISTRATA", "(2813) ZAPPALA", "(4591) BRYANTSEV", "(133) CYRENE", "(1777) GEHRELS", "(4200) SHIZUKAGOZEN", "(4686) MAISICA", "(1998) WS", "(741) BOTOLPHIA", "(5261) EUREKA", "(354) ELEONORA", "(478) TERGESTE", "(5588) JENNABELLE", "(154) BERTHA", "(170) MARIA", "(211) ISOLDA", "(3759) PIIRONEN", "(2902) WESTERLUND", "(2246) BOWELL", "(6582) FLAGSYMPHONY", "(868) LOVA", "(1594) DANJON", "(228) AGATHE", "(3389) SINZOT", "(4993) COSSARD", "(301) BAVARIA", "(1176) LUCIDOR", "(2504) GAVIOLA", "(5965) 1990 SV15", "(106) DIONE", "(4512) SINUHE", "(153) HILDA", "(230) ATHAMANTIS", "(2875) LAGERKVIST", "(6071) SAKITAMA", "(2038) BISTRO", "(3037) ALKU", "(4968) SUZAMUR", "(306) UNITAS", "(504) CORA", "(815) COPPELIA", "(912) MARITIMA", "(159) AEMILIA", "(15) EUNOMIA", "(2631) ZHEJIANG", "(3900) KNEZEVIC", "(3395) JITKA", "(3775) ELLENBETH", "(4909) COUTEAU", "(6509) GIOVANNIPRATESI", "(98) IANTHE", "(1094) SIBERIA", "(2681) OSTROVSKIJ", "(3491) FRIDOLIN", "(3813) FORTOV", "(1056) AZALEA", "(4945) IKENOZENNI", "(826) HENRIKA", "(12) VICTORIA", "(4951) IWAMOTO", "(2271) KISO", "(181) EUCHARIS", "(1052) BELGICA", "(193) AMBROSIA", "(387) AQUITANIA", "(759) VINIFERA", "(1848) DELVAUX", "(1659) PUNKAHARJU", "(358) APOLLONIA", "(10473) THIROUIN", "(105) ARTEMIS", "(539) PAMINA", "(564) DUDU", "(3635) KREUTZ", "(2141) SIMFEROPOL", "(3265) FLETCHER", "(103) HERA", "(2370) VAN ALTENA", "(631) PHILIPPINA", "(1882) RAUMA", "(17) THETIS", "(269) JUSTITIA", "(136) AUSTRIA", "(984) GRETIA", "(162) LAURENTIA", "(161) ATHOR", "(90) ANTIOPE", "(3678) MONGMANWAI", "(2147) KHARADZE", "(378) HOLMIA", "(476) HEDWIG", "(383) JANINA", "(795) FINI", "(753) TIFLIS", "(1071) BRITA", "(3074) POPOV", "(2575) BULGARIA", "(1214) RICHILDE", "(592) BATHSEBA", "(177) IRMA", "(5242) KENREIMONIN", "(4804) PASTEUR", "(194) PROKNE", "(534) NASSOVIA", "(973) ARALIA", "(2559) SVOBODA", "(5318) DIENTZENHOFER", "(4718) ARAKI", "(30) URANIA", "(6078) BURT", "(4774) HOBETSU", "(279) THULE", "(808) MERXIA", "(5010) AMENEMHET", "(345) TERCIDINA", "(677) AALTJE", "(2086) NEWELL", "(1433) GERAMTINA", "(4982) BARTINI", "(3307) ATHABASCA", "(1502) ARENDA", "(152) ATALA", "(1539) BORRELLY", "(208) LACRIMOSA", "(2917) SAWYER HOGG", "(679) PAX", "(1730) MARCELINE", "(1385) GELRIA", "(1534) NASI", "(547) PRAXEDIS", "(2444) LEDERLE", "(3885) BOGORODSKIJ", "(1271) ISERGINA", "(3406) OMSK", "(4619) POLYAKHOVA", "(481) EMITA", "(4726) FEDERER", "(1490) LIMPOPO", "(494) VIRTUS", "(7225) HUNTRESS", "(642) CLARA", "(1086) NATA", "(3865) LINDBLOOM", "(205) MARTHA", "(3020) NAUDTS", "(1783) ALBITSKIJ", "(3654) AAS", "(554) PERAGA", "(7081) LUDIBUNDA", "(4547) MASSACHUSETTS", "(668) DORA", "(2818) JUVENALIS", "(46) HESTIA", "(1228) SCABIOSA", "(4265) KANI", "(88) THISBE", "(4570) RUNCORN", "(3762) AMARAVELLA", "(1329) ELIANE", "(179) KLYTAEMNESTRA", "(56) MELETE", "(399) PERSEPHONE", "(5348) KENNOGUCHI", "(1702) KALAHARI", "(3704) GAOSHIQI", "(4706) DENNISREUTER", "(5595) ROTH", "(7405) 1988 FF", "(1929) KOLLAA", "(1301) YVONNE", "(3546) ATANASOFF", "(122) GERDA", "(2401) AEHLITA", "(1601) PATRY", "(507) LAODICA", "(674) RACHELE", "(3249) MUSASHINO", "(87) SYLVIA", "(737) AREQUIPA", "(5344) RYABOV", "(7304) NAMIKI", "(824) ANASTASIA", "(3474) LINSLEY", "(886) WASHINGTONIA", "(8008) 1988 TQ4", "(3363) BOWEN", "(2430) BRUCE HELIN", "(1332) MARCONIA", "(3576) GALINA", "(1891) GONDOLA", "(3314) BEALS", "(142) POLANA", "(9970) 1992 ST1", "(2852) DECLERCQ", "(130) ELEKTRA", "(261) PRYMNO", "(377) CAMPANIA", "(7451) VERBITSKAYA", "(189) PHTHIA", "(783) NORA", "(751) FAINA", "(1474) BEIRA", "(336) LACADIERA", "(4304) GEICHENKO", "(4786) TATIANINA", "(1304) AROSA", "(410) CHLORIS", "(337) DEVOSA", "(3796) LENE", "(543) CHARLOTTE", "(1110) JAROSLAWA", "(2402) SATPAEV", "(1716) PETER", "(3371) GIACCONI", "(747) WINCHESTER", "(2754) EFIMOV", "(1015) CHRISTA", "(1970) SUMERIA", "(353) RUPERTO-CAROLA", "(2930) EURIPIDES", "(2446) LUNACHARSKY", "(2369) CHEKHOV", "(331) ETHERIDGEA", "(2448) SHOLOKHOV", "(3311) PODOBED", "(3587) DESCARTES", "(5892) MILESDAVIS", "(980) ANACOSTIA", "(1188) GOTHLANDIA", "(384) BURDIGALA", "(1903) ADZHIMUSHKAJ", "(5690) 1992 EU", "(247) EUKRATE", "(2244) TESLA", "(395) DELIA", "(167) URDA", "(2744) BIRGITTA", "(1751) HERGET", "(3862) AGEKIAN", "(7404) 1988 AA5", "(6086) VRCHLICKY", "(3713) PIETERS", "(8334) 1984 CF", "(4733) ORO", "(1734) ZHONGOLOVICH", "(4548) WIELEN", "(720) BOHLINIA", "(4082) SWANN", "(4311) ZGURIDI", "(2640) HALLSTROM", "(3248) FARINELLA", "(327) COLUMBIA", "(281) LUCRETIA", "(365) CORDUBA", "(180) GARUMNA", "(398) ADMETE", "(6585) O'KEEFE", "(2567) ELBA", "(1638) RUANDA", "(3844) LUJIAXI", "(3850) PELTIER", "(523) ADA", "(288) GLAUKE", "(1542) SCHALEN", "(4284) KAHO", "(5195) KAENDLER", "(51) NEMAUSA", "(1336) ZEELANDIA", "(742) EDISONA", "(1284) LATVIA", "(134) SOPHROSYNE", "(4737) KILADZE", "(2851) HARBIN", "(101) HELENA", "(1977) SHURA", "(119) ALTHAEA", "(4426) ROERICH", "(2085) HENAN", "(924) TONI", "(2107) ILMARI", "(2582) HARIMAYA-BASHI", "(3175) NETTO", "(1839) RAGAZZA", "(2736) OPS", "(7245) 1991 RN10", "(785) ZWETANA", "(3542) TANJIAZHEN", "(614) PIA", "(174) PHAEDRA", "(3209) BUCHWALD", "(1664) FELIX", "(201) PENELOPE", "(3155) LEE", "(3443) LEETSUNGDAO", "(1351) UZBEKISTANIA", "(2973) PAOLA", "(1857) PARCHOMENKO", "(2579) SPARTACUS", "(2675) TOLKIEN", "Multiple Asteroids", "(675) LUDMILLA", "(3827) ZDENEKHORSKY", "(3873) RODDY", "(845) NAEMA", "(3767) DIMAGGIO", "(1251) HEDERA", "(1798) WATTS", "(844) LEONTINA", "(75) EURYDIKE", "(638) MOIRA", "(84) KLIO", "(462) ERIPHYLA", "(1021) FLAMMARIO", "(1045) MICHELA", "(24) THEMIS", "(994) OTTHILD", "(2251) TIKHOV", "(513) CENTESIMA", "(107) CAMILLA", "(3971) VORONIKHIN", "(6146) ADAMKRAFFT", "(62) ERATO", "(13) EGERIA", "(3737) BECKMAN", "(584) SEMIRAMIS", "(4036) WHITEHOUSE", "(898) HILDEGARD", "(1738) OOSTERHOFF", "(1480) AUNUS", "(4292) AOBA", "(2386) NIKONOV", "(2911) MIAHELENA", "(5079) BRUBECK", "(622) ESTHER", "(186) CELUTA", "(416) VATICANA", "(3563) CANTERBURY", "(458) HERCYNIA", "(1724) VLADIMIR", "(1904) MASSEVITCH", "(1729) BERYL", "(2708) BURNS", "(109) FELICITAS", "(2635) HUGGINS", "(263) DRESDA", "(460) SCANIA", "(6386) KEITHNOLL", "(2604) MARSHAK", "(3287) OLMSTEAD", "(453) TEA", "(1560) STRATTONIA", "(164) EVA", "(35) LEUKOTHEA", "(2042) SITARSKI", "(1635) BOHRMANN", "(485) GENUA", "(519) SYLVANIA", "(1128) ASTRID", "(286) ICLEA", "(1603) NEVA", "(3040) KOZAI", "(7211) XERXES", "(2715) MIELIKKI", "(4215) KAMO", "(28) BELLONA", "(553) KUNDRY", "(65) CYBELE", "(997) PRISKA", "(1888) ZU CHONG-ZHI", "(14) IRENE", "(4917) YURILVOVIA", "(61) DANAE", "(386) SIEGENA", "(5108) LUBECK", "(278) PAULINA", "(233) ASTEROPE", "(360) CARLOVA", "(1494) SAVO", "(4845) TSUBETSU", "(21) LUTETIA", "(5553) CHODAS", "(6907) HARRYFORD", "(1025) RIEMA", "(250) BETTINA", "(856) BACKLUNDA", "(1386) STORERIA", "(266) ALINE", "(4033) YATSUGATAKE", "(556) PHYLLIS", "(4) VESTA", "(60) ECHO", "(1104) SYRINGA", "(729) WATSONIA", "(735) MARGHANNA", "(1373) CINCINNATI", "(4536) DREWPINSKY", "(3782) CELLE", "(2346) LILIO", "(491) CARINA", "(1517) BEOGRAD", "(5840) RAYBROWN", "(496) GRYPHIA", "(531) ZERLINA", "(3670) NORTHCOTT", "(925) ALPHONSINA", "(3376) ARMANDHAMMER", "(7) IRIS", "(1020) ARCADIA", "(521) BRIXIA", "(687) TINETTE", "(2331) PARVULESCO", "(102) MIRIAM", "(3394) BANNO", "(1022) OLYMPIADA", "(1201) STRENUA", "(1799) KOUSSEVITZKY", "(5234) SECHENOV", "(516) AMHERSTIA", "(779) NINA", "(200) DYNAMENE", "(1102) PEPITA", "(6005) 1989 BD", "(375) URSULA", "(2354) LAVROV", "(321) FLORENTINA", "(853) NANSENIA", "(971) ALSATIA", "(2089) CETACEA", "(304) OLGA", "(4434) NIKULIN", "(2152) HANNIBAL", "(4182) MOUNT LOCKE", "(2547) HUBEI", "(579) SIDONIA", "(7056) KIERKEGAARD", "(2952) LILLIPUTIA", "(781) KARTVELIA", "(160) UNA", "(3262) MIUNE", "(3526) JEFFBELL", "(1234) ELYNA", "(63) AUSONIA", "(6354) VANGELIS", "(1014) SEMPHYRA", "(2507) BOBONE", "(1252) CELESTIA", "(2509) CHUKOTKA", "(135) HERTHA", "(3642) FRIEDEN", "(95) ARETHUSA", "(1140) CRIMEA", "(409) ASPASIA", "(5103) DIVIS", "(246) ASPORINA", "(671) CARNEGIA", "(2704) JULIAN LOEWE", "(4610) KAJOV", "(934) THURINGIA", "(226) WERINGIA", "(4611) VULKANEIFEL", "(3364) ZDENKA", "(392) WILHELMINA", "(895) HELIO", "(3417) TAMBLYN", "(5081) SANGUIN", "(782) MONTEFIORE", "(363) PADUA", "(2194) ARPOLA", "(423) DIOTIMA", "(1107) LICTORIA", "(1634) NDOLA", "(388) CHARYBDIS", "(3375) AMY", "(374) BURGUNDIA", "(7224) VESNINA", "(1055) TYNKA", "(3192) A'HEARN", "(2737) KOTKA", "(5685) SANENOBUFUKUI", "(731) SORGA", "(776) BERBERICIA", "(6211) TSUBAME", "(78) DIANA", "(115) THYRA", "(1930) LUCIFER", "(2762) FOWLER", "(425) CORNELIA", "(431) NEPHELE", "(2157) ASHBROOK", "(5647) SAROJININAIDU", "(1548) PALOMAA", "(1587) KAHRSTEDT", "(175) ANDROMACHE", "(58) CONCORDIA", "(2772) DUGAN", "(5534) 1941 UN", "(3458) BODUOGNAT", "(34) CIRCE", "(2957) TATSUO", "(3829) GUNMA", "(1148) RARAHU", "(965) ANGELICA", "(3198) WALLONIA", "(236) HONORIA", "(144) VIBILIA", "(2396) KOCHI", "(4051) HATANAKA", "(396) AEOLIA", "(2185) GUANGDONG", "(4516) PUGOVKIN", "(1352) WAWEL", "(99913) 1997 CZ5", "(2371) DIMITROV", "(2720) PYOTR PERVYJ", "(3534) SAX", "(3430) BRADFIELD", "(4135) SVETLANOV", "(69) HESPERIA", "(611) VALERIA", "(3701) PURKYNE", "(393) LAMPETIA", "(1262) SNIADECKIA", "(4817) GLIBA", "(6) HEBE", "(2508) ALUPKA", "(5552) STUDNICKA", "(715) TRANSVAALIA", "(5240) KWASAN", "(3611) DABU", "(5134) EBILSON", "(1428) MOMBASA", "(484) PITTSBURGHIA", "(165) LORELEY", "(3858) DORCHESTER", "(8450) EGOROV", "(1323) TUGELA", "(4997) KSANA", "(148) GALLIA", "(3647) DERMOTT", "(397) VIENNA", "(129) ANTIGONE", "(1493) SIGRID", "(5632) INGELEHMANN", "(2468) REPIN", "(3800) KARAYUSUF", "(3365) RECOGNE", "(3841) DICICCO", "(4923) CLARKE", "(2022) WEST", "(85) IO", "(1680) PER BRAHE", "(6192) JAVIERGOROSABEL", "(673) EDDA", "(443) PHOTOGRAPHICA", "(111) ATE", "(2501) LOHJA", "(2521) HEIDI", "(5091) ISAKOVSKIJ", "(112) IPHIGENIA", "(3734) WALAND", "(6364) CASARINI", "(1204) RENZIA", "(2864) SODERBLOM", "(3628) BOZNEMCOVA", "(4628) LAPLACE", "(1483) HAKOILA", "(413) EDBURGA", "(1300) MARCELLE", "(1706) DIECKVOSS", "(187) LAMBERTA", "(1562) GONDOLATSCH", "(355) GABRIELLA", "(7763) CRABEELS", "(359) GEORGIA", "(569) MISA", "(1106) CYDONIA", "(127) JOHANNA", "(3349) MANAS", "(4096) KUSHIRO", "(804) HISPANIA", "(1640) NEMO", "(773) IRMINTRAUD", "(2881) MEIDEN", "(191) KOLGA", "(2380) HEILONGJIANG", "(1076) VIOLA", "(1600) VYSSOTSKY", "(2949) KAVERZNEV", "(114) KASSANDRA", "(541) DEBORAH", "(1048) FEODOSIA", "(5159) BURBINE", "(3686) ANTOKU", "(1458) MINEURA", "(2789) FOSHAN", "(4422) JARRE", "(1471) TORNIO", "(128) NEMESIS", "(866) FATME", "(1088) MITAKA", "(1263) VARSAVIA", "(2099) OPIK", "(2801) HUYGENS", "(1406) KOMPPA", "(6906) JOHNMILLS", "(2750) LOVIISA", "(4256) KAGAMIGAWA", "(4272) ENTSUJI", "(4944) KOZLOVSKIJ", "(2527) GREGORY", "(596) SCHEILA", "(961) GUNNIE", "(206) HERSILIA", "(1807) SLOVAKIA", "(7728) GIBLIN", "(3669) VERTINSKIJ", "(23) THALIA", "(4995) GRIFFIN", "(4297) EICHHORN", "(4719) BURNABY", "(985) ROSINA", "(258) TYCHE", "(166) RHODOPE", "(6592) GOYA", "(80) SAPPHO", "(1653) YAKHONTOVIA", "(4107) RUFINO", "(79) EURYNOME", "(2988) KORHONEN", "(207) HEDDA", "(1520) IMATRA", "(414) LIRIOPE", "(578) HAPPELIA", "(4342) FREUD", "(702) ALAUDA", "(342) ENDYMION", "(3949) MACH", "(402) CHLOE", "(444) GYPTIS", "(600) MUSA", "(6782) 1990 SU10", "(4682) BYKOV", "(3440) STAMPFER", "(1565) LEMAITRE", "(511) DAVIDA", "(649) JOSEFA", "(190) ISMENE", "(4037) IKEYA", "(2060) CHIRON", "(26209) 1997 RD1", "(282) CLORINDE", "(3137) HORKY", "(4287) TRISOV", "(2732) WITT", "(3687) DZUS", "(2335) JAMES", "(178) BELISANA", "(3007) REAVES", "(38) LEDA", "(7604) KRIDSADAPORN", "(3985) RAYBATSON", "(1294) ANTWERPIA", "(173) INO", "(209) DIDO", "(116) SIRONA", "(3169) OSTRO", "(3861) LORENZ", "(1185) NIKKO", "(3090) TJOSSEM", "(4713) STEEL", "(555) NORMA", "(372) PALMA", "(2035) STEARNS", "(633) ZELIMA", "(37) FIDES", "(1189) TERENTIA", "(5416) ESTREMADOYRO", "(244) SITA", "(2390) NEZARKA", "(64) ANGELINA", "(5133) PHILLIPADAMS", "(970) PRIMULA", "(4942) MUNROE", "(2167) ERIN", "(477) ITALIA", "(242) KRIEMHILD", "(381) MYRRHA", "(5069) TOKEIDAI", "(1017) JACQUELINE", "(2834) CHRISTY CAROL", "(3214) MAKARENKO", "(3920) AUBIGNAN", "(2410) MORRISON", "(241) GERMANIA", "(705) ERMINIA", "(5111) JACLIFF", "(2465) WILSON", "(3) JUNO", "(5397) VOJISLAVA", "(4607) SEILANDFARM", "(48) DORIS", "(4396) GRESSMANN", "(1152) PAWONA", "(1968) MEHLTRETTER", "(1936) LUGANO", "(5102) BENFRANKLIN", "(6283) 1980 VX1", "(2328) ROBESON", "(3910) LISZT", "(1726) HOFFMEISTER", "(3976) LISE", "(2428) KAMENYAR", "(1374) ISORA", "(1858) LOBACHEVSKIJ", "(3684) BERRY", "(1563) NOEL", "(3630) LUBOMIR", "(597) BANDUSIA", "(237) COELESTINA", "(4417) LECAR", "(89) JULIA", "(490) VERITAS", "(560) DELILA", "(10504) DOGA", "(4435) HOLT", "(151) ABUNDANTIA", "(1836) KOMAROV", "(470) KILIA", "(5482) KORANKEI", "(308) POLYXO", "(5196) BUSTELLI", "(10199) CHARIKLO", "(3579) ROCKHOLT", "(1007) PAWLOWIA", "(2258) VIIPURI", "(3744) HORN-D'ARTURO", "(2809) VERNADSKIJ", "(559) NANON", "(2840) KALLAVESI", "(3181) AHNERT", "(2378) PANNEKOEK", "(2791) PARADISE", "(2427) KOBZAR", "(3320) NAMBA", "(1715) SALLI", "(5) ASTRAEA", "(110) LYDIA", "(4678) NINIAN", "(5243) CLASIEN", "(240) VANADIS", "(860) URSINA", "(5610) BALSTER", "(563) SULEIKA", "(2353) ALVA", "(4188) KITEZH", "(757) PORTLANDIA", "(3636) PAJDUSAKOVA", "(3451) MENTOR", "(150) NUWA", "(184) DEJOPEJA", "(17480) 1991 PE10", "(2934) ARISTOPHANES", "(3309) BRORFELDE", "(792) METCALFIA", "(4261) GEKKO", "(1131) PORZIA", "(2827) VELLAMO", "(4372) QUINCY", "(512) TAURINENSIS", "(1069) PLANCKIA", "(1293) SONJA", "(3833) CALINGASTA", "(1248 )JUGURTHA", "(2598) MERLIN", "(2746) HISSAO", "(1667) PELS", "(5448) SIEBOLD", "(5641) MCCLEESE", "(2748) PATRICK GENE", "(139) JUEWA", "(1058) GRUBBA", "(1187) AFRA", "(2029) BINOMI", "(2733) HAMINA", "(4900) MAYMELOU", "(3345) TARKOVSKIJ", "(4479) CHARLIEPARKER", "(2409) CHAPMAN", "(2625) JACK LONDON", "(627) CHARIS", "(171) OPHELIA", "(4194) SWEITZER", "(405) THIA", "(7170) LIVESEY", "(42) ISIS", "(1797) SCHAUMASSE", "(322) PHAEO", "(257) SILESIA", "(4604) STEKARSTROM", "(29) AMPHITRITE", "(2879) SHIMIZU", "(52) EUROPA", "(2925) BEATTY", "(3788) STEYAERT", "(4910) KAWASATO", "(146) LUCINA", "(2874) JIM YOUNG", "(5379) ABEHIROSHI", "(5253) FREDCLIFFORD", "(5333) KANAYA", "(872) HOLDA", "(4116) ELACHI", "(4156) OKADANOBORU", "(551) ORTRUD", "(3170) DZHANIBEKOV", "(253) MATHILDE", "(295) THERESIA", "(4838) BILLMCLAUGHLIN", "(950) AHRENSA", "(905) UNIVERSITAS", "(389) INDUSTRIA", "(8333) 1982 VF", "(1196) SHEBA", "(4369) SEIFERT", "(1155) AENNA", "(348) MAY", "(739) MANDEVILLE", "(5956) D'ALEMBERT", "(1065) AMUNDSENIA", "(1660) WOOD", "(6716) 1990 RO1", "(4969) LAWRENCE", "(2169) TAIWAN", "(4650) MORI", "(1695) WALBECK", "(2857) NOT", "(1831) NICHOLSON", "(5329) DECARO", "(929) ALGUNDE", "(2040) CHALONGE", "(57) MNEMOSYNE", "(1860) BARBAROSSA", "(2482) PERKIN", "(310) MARGARITA", "(121) HERMIONE", "(1856) RUZENA", "(3536) SCHLEICHER", "(4702) BEROUNKA", "(4424) ARKHIPOVA", "(243) IDA", "(442) EICHSFELDIA", "(352) GISELA", "(2045) PEKING", "(2566) KIRGHIZIA", "(2065) SPICER", "(586) THEKLA", "(2560) SIEGMA", "(4750) MUKAI", "(713) LUSCINIA", "(2078) NANKING", "(2478) TOKAI", "(870) MANTO", "(94) AURORA", "(275) SAPIENTIA", "(767) BONDIA", "(1508) KEMI", "(234) BARBARA", "(503) EVELYN", "(1016) ANITRA", "(1264) LETABA", "(1747) WRIGHT", "(7397) 1986 QS", "(1847) STOBBE", "(1407) LINDELOF", "(3658) FELDMAN", "(196) PHILOMELA", "(412) ELISABETHA", "(1484) POSTREMA", "(2467) KOLLONTAI", "(6410) FUJIWARA", "(6908) KUNIMOTO", "(1604) TOMBAUGH", "(1046) EDWIN", "(22449) OTTIJEFF", "(2373) IMMO", "(71) NIOBE", "(4534) RIMSKIJ-KORSAKOV", "(4001) PTOLEMAEUS", "(3712) KRAFT", "(572) REBEKKA", "(5230) ASAHINA", "(604) TEKMESSA", "(27) EUTERPE", "(2) PALLAS", "(1278) KENYA", "(3533) TOYOTA", "(3831) PETTENGILL", "(1360) TARKA", "(1350) ROSSELIA", "(66) MAJA", "(32) POMONA", "(2493) ELMER", "(1545) THERNOE", "(5330) SENRIKYU", "(784) PICKERINGIA", "(796) SARITA", "(2873) BINZEL", "(532) HERCULINA", "(4072) YAYOI", "(172) BAUCIS", "(1024) HALE", "(117) LOMIA", "(3028) ZHANGGUOXI", "(456) ABNOBA", "(3819) ROBINSON", "(4849) ARDENNE", "(771) LIBERA", "(1593) FAGNES", "(4839) DAISETSUZAN", "(2872) GENTELEC", "(33) POLYHYMNIA", "(1212) FRANCETTE", "(156) XANTHIPPE", "(1998) TITIUS", "(2087) KOCHERA", "(4711) KATHY", "(4853) MARIELUKAC", "(2001) EINSTEIN", "(2280) KUNIKOV", "(5649) DONNASHIRLEY", "(3972) RICHARD", "(527) EURYANTHE", "(3258) SOMNIUM", "(951) GASPRA", "(4390) MADRETERESA", "(12281) CHAUMONT", "(2977) CHIVILIKHIN", "(3792) PRESTON", "(83) BEATRIX", "(6233) KIMURA", "(1403) IDELSONIA", "(910) ANNELIESE", "(3581) ALVAREZ", "(5565) UKYOUNODAIBU", "(1427) RUVUMA", "(2423) IBARRURI", "(3401) VANPHILOS", "(1948) KAMPALA", "(259) ALETHEIA", "(913) OTILA", "(2382) NONIE", "(4374) TADAMORI", "(4491) OTARU", "(108) HECUBA", "(2953) VYSHESLAVIA", "(3367) ALEX", "(1550) TITO", "(2349) KURCHENKO", "(4327) RIES", "(19) FORTUNA", "(2906) CALTECH", "(479) CAPRERA", "(3567) ALVEMA", "(404) ARSINOE", "(5067) OCCIDENTAL", "(5214) OOZORA", "(2511) PATTERSON", "(3853) HAAS", "(11906) 1992 AE1", "(216) KLEOPATRA", "(2161) GRISSOM", "(2455) SOMVILLE", "(100480) 1996 UK", "(376) GEOMETRIA", "(749) MALZOVIA", "(930) WESTPHALIA", "(4461) SAYAMA", "(6077) MESSNER", "(2816) PIEN", "(5510) 1988 RF7", "(4280) SIMONENKO", "(74) GALATEA", "(3511) TSVETAEVA", "(4340) DENCE", "(141) LUMEN", "(2905) PLASKETT", "(3566) LEVITAN", "(4748) TOKIWAGOZEN", "(688) MELANIE", "(4222) NANCITA", "(661) CLOELIA", "(4407) TAIHAKU", "(39) LAETITIA", "(471) PAPAGENA", "(3385) BRONNINA", "(704) INTERAMNIA", "(1951) LICK", "(403) CYANE", "(123) BRUNHILD", "(349) DEMBOWSKA", "(4844) MATSUYAMA", "(169) ZELIA", "(317) ROXANE", "(2778) TANGSHAN", "(197) ARETE", "(2996) BOWMAN", "(716) BERKELEY", "(6230) FRAM", "(1186) TURNERA", "(629) BERNARDINA", "(3903) KLIMENT OHRIDSKI", "(2053) NUKI", "(3493) STEPANOV", "(5051) RALPH", "(5438) LORRE", "(3096) BEZRUC", "(862) FRANZIA", "(1613) SMILEY", "(3640) GOSTIN", "(82) ALKMENE", "(18) MELPOMENE", "(1553) BAUERSFELDA", "(5013) SUZHOUSANZHONG", "(3527) MCCORD", "(3700) GEOWILLIAMS", "(120) LACHESIS", "(1327) NAMAQUA", "(723) HAMMONIA", "(113) AMALTHEA", "(267) TIRZA", "(5401) MINAMIODA", "(16) PSYCHE", "(2088) SAHLIA", "(2308) SCHILT", "(5485) KAULA", "(5467) 1988 AG", "(5492) THOMA", "(5208) ROYER", "(158) KORONIS", "(4157) IZU", "(47) AGLAJA", "(264) LIBUSSA", "(4343) TETSUYA", "(176) IDUNA", "(1795) WOLTJER", "(2056) NANCY", "(2855) BASTIAN", "(4305) CLAPTON", "(2282) ANDRES BELLO", "(124) ALKESTE", "(41) DAPHNE", "(7562) KAGIROINO-OKA", "(2064) THOMSEN", "(22) KALLIOPE", "(379) HUENNA", "(118) PEITHO", "(77) FRIGGA", "(1414) JEROME", "(11785) SARGENT", "(5294) ONNETOH", "(1032) PAFURI", "(2730) BARKS", "(3860) PLOVDIV", "(2231) DURRELL", "(945) BARCELONA", "(1039) SONNEBERGA", "(1181) LILITH", "(1692) SUBBOTINA", "(3121) TAMINES", "(626) NOTBURGA", "(2306) BAUSCHINGER", "(3085) DONNA", "(4353) ONIZAKI", "(11) PARTHENOPE", "(18514) 1996 TE11", "(4977) RAUTHGUNDIS", "(7512) MONICALAZZARIN", "(2234) SCHMADEL", "(3575) ANYUTA", "(825) TANINA", "(93) MINERVA", "(198) AMPELLA", "(706) HIRUNDO", "(1222) TINA", "(20) MASSALIA", "(5008) MIYAZAWAKENJI", "(54) ALEXANDRA", "(43) ARIADNE", "(446) AETERNITAS", "(4039) SOUSEKI", "(67) ASIA", "(941) MURRAY", "(3886) SHCHERBAKOVIA", "(213) LILAEA", "(5038) OVERBEEK", "(533) SARA", "(545) MESSALINA", "(819) BARNARDIANA", "(5678) DUBRIDGE", "(2606) ODESSA", "(2892) FILIPENKO", "(6704) 1988 CJ", "(183) ISTRIA", "(3592) NEDBAL", "(417) SUEVIA", "(1423) JOSE", "(210) ISABELLA", "(4124) HERRIOT", "(654) ZELINDA", "(1098) HAKONE", "(1331) SOLVEJG", "(1034) MOZARTIA", "(7110) JOHNPEARSE", "(2569) MADELINE", "(2703) RODARI", "(3255) THOLEN", "(289) NENETTA", "(821) FANNY", "(653) BERENIKE", "(3498) BELTON", "(570) KYTHERA", "(3710) BOGOSLOVSKIJ", "(4558) JANESICK", "(2795) LEPAGE", "(4584) AKAN", "(145) ADEONA", "(2807) KARL MARX", "(2268) SZMYTOWNA", "(2451) DOLLFUS", "(391) INGEBORG", "(168) SIBYLLA", "(2438) OLESHKO", "(441) BATHILDE", "(3645) FABINI", "(3254) BUS", "(4299) WIYN", "(45) EUGENIA", "(3179) BERUTI", "(346) HERMENTARIA", "(366) VINCENTINA", "(185) EUNIKE", "(6129) DEMOKRITOS", "(2019) VAN ALBADA", "(3849) INCIDENTIA", "(10) HYGIEA", "(789) LENA", "(4824) STRADONICE", "(2317) GALYA", "(25) PHOCAEA", "(394) ARDUINA", "(863) BENKOELA", "(2956) YEOMANS", "(5622) PERCYJULIAN", "(464) MEGAIRA", "(99) DIKE", "(238) HYPATIA", "(515) ATHALIA", "(5227) BOCACARA", "(92) UNDINA", "(1642) HILL", "(2189) ZARAGOZA", "(4796) LEWIS", "(581) TAUNTONIA", "(908) BUDA", "(3416) DORRIT", "(55) PANDORA", "(3256) DAGUERRE", "(2724) ORLOV", "(3627) SAYERS", "(8513) 1991 PK11", "(376713) 1995 WQ5", "(4332) MILTON", "(4744) ROVERETO", "(1316) KASAN", "(3224) IRKUTSK", "(4142) DERSU-UZALA", "(5585) PARKS", "(4387) TANAKA", "(272) ANTONIA", "(847) AGNIA", "(1372) HAREMARI", "(5349) PAULHARRIS", "(104) KLYMENE", "(40) HARMONIA", "(5142) OKUTAMA", "(1420) RADCLIFFE", "(31) EUPHROSYNE", "(4950) HOUSE", "(1592) MATHIEU", "(284) AMALIA", "(743) EUGENISIS", "(1549) MIKKO", "(2929) HARRIS", "(7402) 1987 YH", "(712) BOLIVIANA", "(332) SIRI", "(1796) RIGA", "(1324) KNYSNA", "(59) ELPIS", "(1272) GEFION", "(163) ERIGONE", "(5732) 1988 WC", "(2073) JANACEK", "(3545) GAFFEY", "(2131) MAYALL", "(143) ADRIA", "(754) MALABAR", "(4523) MIT", "(5275) ZDISLAVA", "(3730) HURBAN", "(1011) LAODAMIA", "(44) NYSA", "(6249) JENNIFER", "(4884) BRAGARIA", "(1) CERES", "(214) ASCHERA", "(3317) PARIS", "(4767) SUTOKU", "(509) IOLANDA", "(601) NERTHUS", "(1139) ATAMI", "(3674) ERBISBUHL", "(129493) 1995 BM2", "(4205) DAVID HUGHES", "(919) ILSEBILL", "(3507) VILAS", "(4456) MAWSON", "(339) DOROTHEA", "(2861) LAMBRECHT", "(1134) KEPLER", "(1343 )NICOLE", "(599) LUISA", "(371) BOHEMIA", "(3958) KOMENDANTOV", "(335) ROBERTA", "(5817) ROBERTFRAZER", "(5407) 1992 AX", "(678) FREDEGUNDIS", "(793) ARIZONA", "(5087) EMEL'YANOV", "(221) EOS", "(81) TERPSICHORE", "(5576) ALBANESE", "(432) PYTHIA", "(1510) CHARLOIS", "(1567) ALIKOSKI", "(1705) TAPIO", "(3000) LEONARDO", "(76) FREIA", "(5392) PARKER", "(5364) 1980 RC1", "(2659) MILLIS", "(1277) DOLORES", "(5222) IOFFE", "(195) EURYKLEIA", "(1655) COMAS SOLA", "(1932) JANSKY", "(1103) SEQUOIA", "(1126) OTERO", "(49) PALES", "(312) PIERRETTA", "(907) RHODA", "(2653) PRINCIPIA", "(2709) SAGAN", "(182) ELSA", "(2763) JEANS", "(797) MONTANA", "(1923) OSIRIS", "1996 PW", "(3060) DELCANO", "(2850) MOZHAISKIJ", "(6847) KUNZ-HALLSTEIN", "(132) AETHRA", "(1629) PECKER", "(718) ERIDA", "(131) VALA", "(5591) KOYO", "(6669) OBI", "(571) DULCINEA", "(2629) RUDRA", "(3824) BRENDALEE", "(91) AEGINA", "(199) BYBLIS", "(3197) WEISSMAN", "(1766) SLIPHER", "(1989) TATRY", "(1662) HOFFMANN", "(699) HELA", "(3065) SARAHILL", "(598) OCTAVIA", "(1114) LORRAINE", "(2316) JO-ANN", "(1768) APPENZELLA", "(2955) NEWBURN", "(96) AEGLE", "(814) TAURIS", "(100) HEKATE", "(3216) HARRINGTON", "(434) HUNGARIA"], "instruments": ["1.3-m Tinsley Cassegrain/Coude reflector", "Mark III Spectrograph", "2.4-m Hiltner Ritchey-Chretien equatorial reflector", "Mark III Spectrograph"], "instrument_hosts": ["McGraw-Hill Observatory", "McGraw-Hill Observatory"], "data_types": [], "start_date": "1993-08-21", "stop_date": "1999-03-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/bundle_gbo.ast.smass2.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/bundle_gbo.ast.smass2.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737271Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_binary_parameters_compilation::3.0", "title": "BINARY MINOR PLANETS V3.0", "description": "The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": [], "start_date": "1978-12-01", "stop_date": "2019-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/bundle_ast_binary_parameters_compilation.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/bundle_ast_binary_parameters_compilation.xml", "scraped_at": "2026-02-25T20:02:10.737286Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images::1.0", "title": "OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0", "description": "This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Purgathofer SA71-20", "Landolt SA114-790", "Landolt SA114-223", "(101955) Bennu", "Purgathofer SA71-07"], "instruments": ["University of Arizona Kuiper 1.54m telescope", "ccd21 camera for the Kuiper 1.54m telescope"], "instrument_hosts": ["Steward Observatory"], "data_types": [], "start_date": "2005-09-14", "stop_date": "2005-09-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/bundle_orex.gbo.ast-bennu.lightcurves-images.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/bundle_orex.gbo.ast-bennu.lightcurves-images.xml", "scraped_at": "2026-02-25T20:02:10.737291Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.zappala-etal.families::1.0", "title": "Zappala et al. (1995) Asteroid Dynamical Families V1.0", "description": "Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search", "Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/bundle_ast.zappala-etal.families.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/bundle_ast.zappala-etal.families.xml", "scraped_at": "2026-02-25T20:02:10.737295Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.phobos.shape-model::1.0", "title": "Gaskell Phobos Shape Model V1.0", "description": "The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Viking", "Phobos 2"], "targets": ["Mars I (Phobos)"], "instruments": ["Visual Imaging Subsystem - Camera A", "Visual Imaging Subsystem - Camera B", "VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1", "VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1", "Vsk-fregat"], "instrument_hosts": ["Viking Orbiter 2", "Viking Orbiter 2", "Viking Orbiter 1", "Viking Orbiter 1", "Phobos 2"], "data_types": [], "start_date": "1976-07-24", "stop_date": "1989-03-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/bundle_gaskell.phobos.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/bundle_gaskell.phobos.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.737300Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra::1.0", "title": "IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS", "description": "This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1014) Semphyra", "(1020) Arcadia", "(1039) Sonneberga", "(1098) Hakone", "(110) Lydia", "(1103) Sequoia", "(112) Iphigenia", "(1228) Scabiosa", "(1251) Hedera", "(1275) Cimbria", "(129) Antigone", "(1317) Silvretta", "(135) Hertha", "(136) Austria", "(143) Adria", "(144) Vibilia", "(1468) Zomba", "(1545) Thernoe", "(1580) Betulia", "(16) Psyche", "(166) Rhodope", "(1662) Hoffmann", "(17) Thetis", "(173) Ino", "(179) Klytaemnestra", "(1858) Lobachevskij", "(186) Celuta", "(1903) Adzhimushkaj", "(1929) Kollaa", "(2) Pallas", "(2042) Sitarski", "(2045) Peking", "(2048) Dwornik", "(209) Dido", "(21) Lutetia", "(2100) Ra-Shalom", "(213) Lilaea", "(214) Aschera", "(216) Kleopatra", "(217) Eudora", "(221) Eos", "(224) Oceana", "(229) Adelinda", "(233) Asterope", "(234) Barbara", "(2371) Dimitrov", "(2401) Aehlita", "(2442) Corbett", "(246) Asporina", "(250) Bettina", "(2501) Lohja", "(2504) Gaviola", "(2511) Patterson", "(25143) Itokawa", "(2566) Kirghizia", "(2579) Spartacus", "(260) Huberta", "(2606) Odessa", "(2653) Principia", "(27343) Deannashea", "(2763) Jeans", "(2795) Lepage", "(2823) van der Laan", "(283) Emma", "(284) Amalia", "(2851) Harbin", "(289) Nenetta", "(2912) Lapalma", "(304) Olga", "(3103) Eger", "(3155) Lee", "(317) Roxane", "(322) Phaeo", "(335) Roberta", "(3363) Bowen", "(337) Devosa", "(3395) Jitka", "(347) Pariana", "(354) Eleonora", "(359) Georgia", "(3657) Ermolova", "(3703) Volkonskaya", "(375) Ursula", "(3782) Celle", "(379) Huenna", "(38070) Redwine", "(3819) Robinson", "(383) Janina", "(387) Aquitania", "(397) Vienna", "(4) Vesta", "(4038) Kristina", "(409) Aspasia", "(41) Daphne", "(417) Suevia", "(4188) Kitezh", "(419) Aurelia", "(4215) Kamo", "(426) Hippo", "(43) Ariadne", "(434) Hungaria", "(44) Nysa", "(441) Bathilde", "(4426) Roerich", "(446) Aeternitas", "(46) Hestia", "(4796) Lewis", "(497) Iva", "(50) Virginia", "(505) Cava", "(5111) Jacliff", "(517) Edith", "(53) Kalypso", "(536) Merapi", "(547) Praxedis", "(5481) Kiuchi", "(5498) Gustafsson", "(55) Pandora", "(559) Nanon", "(572) Rebekka", "(5840) Raybrown", "(599) Luisa", "(62) Erato", "(64) Angelina", "(661) Cloelia", "(676) Melitta", "(678) Fredegundis", "(679) Pax", "(686) Gersuind", "(709) Fringilla", "(71) Niobe", "(712) Boliviana", "(739) Mandeville", "(742) Edisona", "(75) Eurydike", "(757) Portlandia", "(758) Mancunia", "(768) Struveana", "(77) Frigga", "(771) Libera", "(779) Nina", "(7800) Zhongkeyuan", "(785) Zwetana", "(789) Lena", "(808) Merxia", "(809) Lundia", "(844) Leontina", "(847) Agnia", "(863) Benkoela", "(87) Sylvia", "(872) Holda", "(89) Julia", "(899) Jokaste", "(909) Ulla", "(9481) Menchu", "(9553) Colas", "(956) Elisa", "(97) Klotho", "(973) Aralia", "(976) Benjamina", "(980) Anacostia", "(984) Gretia", "(99) Dike", "Multiple Asteroids", "(10537) 1991 RY16", "(139359) 2001 ME1", "(16416) 1987 SM3", "(26760) 2001 KP41", "(26886) 1994 TJ2", "(29075) 1950 DA", "(33881) 2000 JK66", "(36412) 2000 OP49", "(50098) 2000 AG98", "(97276) 1999 XC143"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "2000-09-04", "stop_date": "2009-08-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/bundle_gbo.ast.irtf-spex-collection.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/bundle_gbo.ast.irtf-spex-collection.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737314Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.torino.polarimetry::1.0", "title": "TORINO ASTEROID POLARIMETRY", "description": "This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Torino Photopolarimeter", "2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"], "instrument_hosts": ["El Leoncito Astronomical Complex"], "data_types": [], "start_date": "1995-01-01", "stop_date": "2005-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/bundle_gbo.ast.torino.polarimetry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/bundle_gbo.ast.torino.polarimetry.xml", "scraped_at": "2026-02-25T20:02:10.737321Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.denis.ir-photometry::1.0", "title": "NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS", "description": "The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["DENIS 3-Channel Near-Infrared Camera", "1-m photometric Cassegrain reflector at European Southern Observatory"], "instrument_hosts": ["European Southern Observatory"], "data_types": [], "start_date": "1995-12-01", "stop_date": "1999-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/bundle_gbo.ast.denis.ir-photometry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/bundle_gbo.ast.denis.ir-photometry.xml", "scraped_at": "2026-02-25T20:02:10.737325Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-153591.radar.shape-model::1.0", "title": "SHAPE MODEL OF ASTEROID (153591) 2001 SN263", "description": "We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(153591) 2001 SN263", "(153591) 2001 SN263"], "instruments": ["Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Arecibo Planetary Radar Transmitter", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Table Mountain Observatory 24-inch CCD camera", "61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory", "SBIG ST-8", "Hunters Hill Observatory 0.36-m SCT", "SBIG ST-9E", "Leura 0.25m", "SBIG ST-6", "1-m Grubb reflector", "FLI--FL-PL3041-1-BB", "Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA", "Apogee AP8", "Modra 0.6-m", "Observatoire de Haute-Provence 1.2m CCD 1996-2014", "1.20-m Newtonian reflector at Observatory of Haute-Provence", "Palmer Divide 0.5m CCD", "0.5m"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Table Mountain Observatory", "Hunters Hill Observatory", "Leura", "Crimean Astrophysical Observatory-Simeis", "Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA", "Modra", "Observatory of Haute-Provence", "Palmer Divide Observatory"], "data_types": [], "start_date": "2007-01-12", "stop_date": "2008-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/bundle_gbo.ast-153591.radar.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/bundle_gbo.ast-153591.radar.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.737334Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-8567.radar.shape-model::1.0", "title": "SHAPE AND ROTATION OF (8567) 1996 HW1", "description": "We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(8567) 1996 HW1"], "instruments": ["Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Arecibo Planetary Radar Transmitter", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Table Mountain Observatory 24-inch CCD camera", "61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory", "SBIG ST-8", "Hunters Hill Observatory 0.36-m SCT", "SBIG ST-8", "SBIG ST-6", "1-m Grubb reflector", "SBIG ST-6", "Apogee AP8", "Modra 0.6-m", "APOGEE AP8"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Table Mountain Observatory", "Hunters Hill Observatory", "Crimean Astrophysical Observatory-Simeis", "Modra"], "data_types": [], "start_date": "2005-06-26", "stop_date": "2009-01-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/bundle_gbo.ast-8567.radar.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/bundle_gbo.ast-8567.radar.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.737341Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves::1.0", "title": "SUBMILLIMETER LIGHTCURVES OF ASTEROIDS", "description": "Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1) Ceres", "(12) Victoria", "(2) Pallas", "(3) Juno", "(4) Vesta", "(511) Davida", "(85) Io", "Multiple Asteroids"], "instruments": ["SMT MPIfR 19-channel Bolometer", "10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"], "instrument_hosts": ["Submillimeter Telescope Observatory"], "data_types": [], "start_date": "2003-01-04", "stop_date": "2004-05-06", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/bundle_gbo.ast.chamberlain.sub-mm-lightcurves.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/bundle_gbo.ast.chamberlain.sub-mm-lightcurves.xml", "scraped_at": "2026-02-25T20:02:10.737346Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.skads.astrometry-photometry::1.0", "title": "SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)", "description": "The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Kitt Peak Mosaic Camera", "4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": [], "start_date": "2001-03-21", "stop_date": "2001-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/bundle_gbo.ast.skads.astrometry-photometry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/bundle_gbo.ast.skads.astrometry-photometry.xml", "scraped_at": "2026-02-25T20:02:10.737350Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteoroid.cmor.radar-survey::1.0", "title": "CMOR METEOROID STREAM SURVEY", "description": "A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple"], "instruments": ["Canadian Meteor Orbit Radar (CMOR)", "Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"], "instrument_hosts": ["UWO Meteor Radar Complex"], "data_types": [], "start_date": "2002-01-01", "stop_date": "2008-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/bundle_gbo.meteoroid.cmor.radar-survey.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/bundle_gbo.meteoroid.cmor.radar-survey.xml", "scraped_at": "2026-02-25T20:02:10.737354Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-m-type.fornasier.spectra::1.0", "title": "FORNASIER SPECTRA OF M ASTEROIDS", "description": "This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(110) Lydia", "(125) Liberatrix", "(129) Antigone", "(132) Aethra", "(135) Hertha", "(16) Psyche", "(161) Athor", "(201) Penelope", "(216) Kleopatra", "(22) Kalliope", "(224) Oceana", "(250) Bettina", "(325) Heidelberga", "(338) Budrosa", "(347) Pariana", "(369) Aeria", "(382) Dodona", "(418) Alemannia", "(441) Bathilde", "(498) Tokio", "(516) Amherstia", "(55) Pandora", "(558) Carmen", "(69) Hesperia", "(755) Quintilla", "(785) Zwetana", "(849) Ara", "(860) Ursina", "(872) Holda", "(97) Klotho", "Multiple Asteroids"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "ESO Multi-Mode Instrument: RILD Mode", "New Technology Telescope (NTT) at European Southern Observatory", "DOLORES (Device Optimized for LOw RESolution)", "3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "Near Infrared Camera Spectrometer (NICS)", "3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "SOFI (Son OF Isaac)", "New Technology Telescope (NTT) at European Southern Observatory"], "instrument_hosts": ["Mauna Kea Observatory", "European Southern Observatory", "Roque de los Muchachos Observatory", "Roque de los Muchachos Observatory", "European Southern Observatory"], "data_types": [], "start_date": "2004-02-29", "stop_date": "2008-12-22", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/bundle_gbo.ast-m-type.fornasier.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/bundle_gbo.ast-m-type.fornasier.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737362Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.52-color-survey::1.0", "title": "52-COLOR ASTEROID SURVEY", "description": "This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(101) Helena", "(103) Hera", "(1036) Ganymed", "(1056) Azalea", "(106) Dione", "(11) Parthenope", "(113) Amalthea", "(114) Kassandra", "(115) Thyra", "(116) Sirona", "(12) Victoria", "(1219) Britta", "(13) Egeria", "(130) Elektra", "(135) Hertha", "(138) Tolosa", "(145) Adeona", "(15) Eunomia", "(152) Atala", "(153) Hilda", "(16) Psyche", "(1627) Ivar", "(18) Melpomene", "(1866) Sisyphus", "(19) Fortuna", "(2) Pallas", "(20) Massalia", "(21) Lutetia", "(218) Bianca", "(22) Kalliope", "(221) Eos", "(233) Asterope", "(235) Carolina", "(241) Germania", "(246) Asporina", "(25) Phocaea", "(258) Tyche", "(26) Proserpina", "(264) Libussa", "(267) Tirza", "(27) Euterpe", "(270) Anahita", "(289) Nenetta", "(29) Amphitrite", "(3) Juno", "(308) Polyxo", "(31) Euphrosyne", "(317) Roxane", "(32) Pomona", "(324) Bamberga", "(33) Polyhymnia", "(336) Lacadiera", "(346) Hermentaria", "(349) Dembowska", "(352) Gisela", "(354) Eleonora", "(3551) Verenia", "(356) Liguria", "(364) Isara", "(367) Amicitia", "(368) Haidea", "(37) Fides", "(376) Geometria", "(379) Huenna", "(385) Ilmatar", "(387) Aquitania", "(389) Industria", "(39) Laetitia", "(4) Vesta", "(40) Harmonia", "(42) Isis", "(422) Berolina", "(43) Ariadne", "(431) Nephele", "(44) Nysa", "(446) Aeternitas", "(46) Hestia", "(476) Hedwig", "(5) Astraea", "(511) Davida", "(521) Brixia", "(532) Herculina", "(554) Peraga", "(57) Mnemosyne", "(584) Semiramis", "(59) Elpis", "(6) Hebe", "(6063) Jason", "(63) Ausonia", "(639) Latona", "(64) Angelina", "(65) Cybele", "(653) Berenike", "(661) Cloelia", "(67) Asia", "(674) Rachele", "(68) Leto", "(69) Hesperia", "(7) Iris", "(702) Alauda", "(704) Interamnia", "(714) Ulula", "(76) Freia", "(762) Pulcova", "(772) Tanete", "(773) Irmintraud", "(80) Sappho", "(82) Alkmene", "(823) Sisigambis", "(849) Ara", "(86) Semele", "(863) Benkoela", "(89) Julia", "(9) Metis", "(92) Undina", "(96) Aegle", "(980) Anacostia", "Multiple Asteroids"], "instruments": ["Circularly Variable Filter", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "1983-06-11", "stop_date": "1987-04-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/bundle_gbo.ast.52-color-survey.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/bundle_gbo.ast.52-color-survey.xml", "scraped_at": "2026-02-25T20:02:10.737373Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.kbo-centaur.magnitudes::1.0", "title": "KBO AND CENTAUR ABSOLUTE MAGNITUDES", "description": "This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1995-01-01", "stop_date": "2001-05-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/bundle_gbo.kbo-centaur.magnitudes.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/bundle_gbo.kbo-centaur.magnitudes.xml", "scraped_at": "2026-02-25T20:02:10.737410Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:meteoroid.steel.orbits::1.0", "title": "METEOROID ORBITS", "description": "This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1936-10-21", "stop_date": "1983-08-15", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/bundle_meteoroid.steel.orbits.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/bundle_meteoroid.steel.orbits.xml", "scraped_at": "2026-02-25T20:02:10.737415Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos::1.0", "title": "ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS", "description": "This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1958-02-19", "stop_date": "2005-02-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/bundle_ast.shevchenko-tedesco.occultation-albedos.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/bundle_ast.shevchenko-tedesco.occultation-albedos.xml", "scraped_at": "2026-02-25T20:02:10.737418Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.olivines.pitman.lab-spectra::1.0", "title": "OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA", "description": "Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["METEORITIC FO81", "Natural Fayalite (FO0)", "Natural FO14", "Natural FO31", "Natural FO41", "Natural FO45", "Natural FO54", "Natural FO63", "Natural FO68", "Natural FO9", "Natural FO91", "Natural FO93", "msng (FO0)", "Synthetic FO100", "Synthetic FO50", "Synthetic FO67", "Synthetic FO75", "Synthetic FO80"], "instruments": ["BOMEM DA 3.02 FT-IR SPECTROMETER"], "instrument_hosts": [], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/bundle_gbo.olivines.pitman.lab-spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/bundle_gbo.olivines.pitman.lab-spectra.xml", "scraped_at": "2026-02-25T20:02:10.737423Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves::1.0", "title": "NEAR EARTH ASTEROID LIGHTCURVES", "description": "This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(11066) Sigurd", "(1627) Ivar", "(1943) Anteros", "1998 KY26", "(2063) Bacchus", "(2100) Ra-Shalom", "(2102) Tantalus", "(2212) Hephaistos", "(3103) Eger", "(3122) Florence", "(3199) Nefertiti", "(3200) Phaethon", "(3691) Bede", "(3752) Camillo", "(4341) Poseidon", "(4957) Brucemurray", "(5143) Heracles", "(5751) Zao", "(7341) 1991 VK", "(7474) 1992 TC", "(7480) Norwan", "(8034) Akka", "Multiple Asteroids", "(13651) 1997 BR", "(17511) 1992 QN", "(19356) 1997 GH3", "(422638) 1994 CB", "1995 FX", "1997 GL3", "(35107) 1991 VH", "(5587) 1990 SB", "(6053) 1993 BW3", "(6322) 1991 CQ", "(65679) 1989 UQ", "(6569) Ondaatje", "(7025) 1993 QA", "(7482) 1994 PC1", "(7822) 1991 CS", "(7888) 1993 UC", "(7889) 1994 LX", "(8201) 1994 AH2", "(85490) 1997 SE5", "(99907) 1989 VA"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1984-08-29", "stop_date": "1998-06-05", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/bundle_gbo.ast-neo.ondrejov.lightcurves.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/bundle_gbo.ast-neo.ondrejov.lightcurves.xml", "scraped_at": "2026-02-25T20:02:10.737434Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-high-inclination.gil-hutton.families::1.0", "title": "HIGH-INCLINATION ASTEROID FAMILIES", "description": "This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": [], "start_date": "2005-03-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/bundle_ast-high-inclination.gil-hutton.families.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/bundle_ast-high-inclination.gil-hutton.families.xml", "scraped_at": "2026-02-25T20:02:10.737438Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot::1.0", "title": "Whiteley NEO Photometry V1.0", "description": "This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["2.24-m Cassegrain/Coude reflector", "UH Tektronix 2K CCD"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "1996-02-15", "stop_date": "2000-07-28", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/bundle_gbo.ast-neo.whiteley.ecas-phot.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/bundle_gbo.ast-neo.whiteley.ecas-phot.xml", "scraped_at": "2026-02-25T20:02:10.737442Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra::1.0", "title": "Gaffey Meteorite Spectra V1.0", "description": "This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Hamlet", "Elenovka", "Queen's Mercy", "Barwise", "Chainpur", "Sevrukovo", "Cynthiana", "Murchison", "Shelburne", "Mighei", "Homestead", "Coolidge", "Butler", "Aumale", "Girgenti", "Atlanta", "Bruderheim", "Kainsaz", "Babb's Mill (Troost's Iron)", "Ausson", "Olivenza", "Orgueil", "Pantar", "Alfianello", "Mokoia", "Cold Bokkeveld", "Hvittis", "Pillistfer", "Nerft", "Utrecht", "Collescipoli", "Allegan", "Petersburg", "Olmedilla de Alarcon", "Ochansk", "Chulafinnee", "Tatahouine", "Colby (Wisconsin)", "Nakhla", "Karoonda", "Mezoe-Madaras", "METEORITE", "Leedey", "Lance", "Jonzac", "Zavid", "Manbhoom", "Nanjemoy", "Soko-Banja", "Cabezo de Mayo", "Murray", "Tourinnes-la-Grosse", "Daniel's Kuil", "Veramin", "Bereba", "Vigarano", "Warrenton", "Khairpur", "Shalka", "Zhovtnevyi", "Farmington", "Buschhof", "Casey County", "Paragould", "Parnellee", "Juvinas", "Sioux County", "Rose City", "Frankfort (stone)", "Drake Creek", "Leoville", "Felix", "Andover", "Castalia", "Alais", "Haraiya", "Bald Mountain", "Le Teilleul", "Abee", "Grueneberg", "Tieschitz", "Saratov", "Stannern", "Allende", "St. Mark's", "Johnstown", "Ornans", "Jelica", "Grosnaja", "Forest City", "Roda", "Quenggouk", "Chassigny", "Pasamonte", "Vavilovka", "Nogoya", "Angra dos Reis", "MULTIPLE", "St. Michel", "Nobleborough", "Indarch", "Knyahina", "Lancon", "Padvarninkai", "Pavlovka"], "instruments": ["Beckman DK2A Ratio Recording Spectroreflectometer"], "instrument_hosts": ["Terrestrial Laboratory"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/bundle_gbo.meteorite.gaffey.lab-spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/bundle_gbo.meteorite.gaffey.lab-spectra.xml", "scraped_at": "2026-02-25T20:02:10.737451Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.radar.shape-models::1.0", "title": "Small Bodies Radar Shape Models V1.0", "description": "This data set contains radar-based shape models for small solar system bodies, prepared by various authors.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1620) Geographos", "(52760) 1998 ML14", "(4769) Castalia", "1998 KY26", "(6489) Golevka", "(216) Kleopatra", "(4179) Toutatis", "(25143) Itokawa", "(2063) Bacchus"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "34-m antenna", "goldstone.dss13_34m.recv_x", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Goldstone Complex", "Goldstone Complex", "Goldstone Complex"], "data_types": [], "start_date": "1989-08-19", "stop_date": "2001-04-09", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/bundle_compil.ast.radar.shape-models.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/bundle_compil.ast.radar.shape-models.xml", "scraped_at": "2026-02-25T20:02:10.737458Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra::1.0", "title": "Gartrelle et al. IRTF Asteroid Spectra V1.0", "description": "This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(3283) Skorina", "(1542) Schalen", "(1746) Brouwer", "(2207) Antenor", "Multiple Asteroids", "(721) Tabora", "(1269) Rollandia", "(2208) Pushkin", "(1256) Normannia", "(1583) Antilochus", "(2246) Bowell", "(2357) Phereclos", "(2311) El Leoncito", "(884) Priamus", "(336) Lacadiera", "(1702) Kalahari", "(2266) Tchaikovsky", "(368) Haidea", "(1167) Dubiago", "(2872) Gentelec", "(4744) Rovereto", "(2674) Pandarus", "(267) Tirza", "(2893) Peiroos", "(773) Irmintraud", "(3248) Farinella"], "instruments": ["3.0-m NASA Infrared Telescope Facility (IRTF)", "SpeX"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "2016-12-29", "stop_date": "2019-01-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/bundle_gbo.ast-dtype.gartrelleetal.irtf.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/bundle_gbo.ast-dtype.gartrelleetal.irtf.spectra.xml", "scraped_at": "2026-02-25T20:02:10.737482Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.ast-eros.shape-model::1.1", "title": "Gaskell Eros Shape Model V1.1", "description": "The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros"], "instruments": ["Multi-spectral Imager"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": [], "start_date": "2000-02-15", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/bundle_gaskell.ast-eros.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/bundle_gaskell.ast-eros.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.737486Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.ast-itokawa.shape-model::1.1", "title": "Gaskell Itokawa Shape Model V1.1", "description": "The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa"], "targets": ["(25143) Itokawa"], "instruments": ["Asteroid Multi-band Imaging Camera"], "instrument_hosts": ["Hayabusa"], "data_types": [], "start_date": "2005-09-11", "stop_date": "2005-11-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/bundle_gaskell.ast-itokawa.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/bundle_gaskell.ast-itokawa.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.737490Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-eros.roberts.ponds-catalog::1.1", "title": "Roberts Eros Ponds Catalog V1.1", "description": "This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros"], "instruments": ["Multi-spectral Imager"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": [], "start_date": "2000-05-01", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/bundle_ast-eros.roberts.ponds-catalog.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/bundle_ast-eros.roberts.ponds-catalog.xml", "scraped_at": "2026-02-25T20:02:10.737493Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry::1.1", "title": "POLARIMETRY OF ASTEROID ITOKAWA", "description": "This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(25143) Itokawa"], "instruments": ["Torino Photopolarimeter", "2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"], "instrument_hosts": ["El Leoncito Astronomical Complex"], "data_types": [], "start_date": "2004-06-28", "stop_date": "2004-07-04", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/bundle_gbo.ast-itokawa.torino.polarimetry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/bundle_gbo.ast-itokawa.torino.polarimetry.xml", "scraped_at": "2026-02-25T20:02:10.737497Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.alcdef-database::1.0", "title": "Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0", "description": "The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": "1986-07-03", "stop_date": "2021-09-09", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/bundle_gbo.ast.alcdef-database.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/bundle_gbo.ast.alcdef-database.xml", "scraped_at": "2026-02-25T20:02:10.737503Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-lightcurve-database::4.0", "title": "Asteroid Lightcurve Database (LCDB) V4.0", "description": "The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": "1913-01-01", "stop_date": "2021-09-02", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/bundle_ast-lightcurve-database.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/bundle_ast-lightcurve-database.xml", "scraped_at": "2026-02-25T20:02:10.737506Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-sat.thomas.shape-models::1.0", "title": "Small Body Optical Shape Models V1.0", "description": "The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["HST", "Voyager", "Galileo", "Near Earth Asteroid Rendezvous", "Viking", "Phobos 2", "Mariner71"], "targets": ["(253) Mathilde", "Mars I (Phobos)", "Saturn XI (Epimetheus)", "Mars II (Deimos)", "(243) Ida", "(951) Gaspra", "(4) Vesta", "Mars II (Deimos)", "Saturn VII (Hyperion)", "Saturn VII (Hyperion)", "Saturn X (Janus)", "Mars I (Phobos)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "Visual Imaging Subsystem - Camera A for VO2", "Imaging Science Subsystem", "Visual Imaging Subsystem - Camera B for VO2", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "Multi-spectral Imager", "VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1", "Solid State Imaging System", "VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1", "Vsk-fregat", "Wide Field Planetary Camera 2"], "instrument_hosts": ["Voyager 1", "Viking Orbiter 2", "Mariner 9", "Viking Orbiter 2", "Voyager 2", "Near Earth Asteroid Rendezvous", "Viking Orbiter 1", "Galileo Orbiter", "Viking Orbiter 1", "Phobos 2", "Hubble Space Telescope"], "data_types": [], "start_date": "1976-06-22", "stop_date": "1997-06-27", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/bundle_ast-sat.thomas.shape-models.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/bundle_ast-sat.thomas.shape-models.xml", "scraped_at": "2026-02-25T20:02:10.737514Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-bennu.radar.shape-model::1.1", "title": "Asteroid (101955) Bennu Radar Shape Model V1.1", "description": "We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(101955) Bennu"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "University of Arizona Kuiper 1.54m telescope", "ccd21 camera for the Kuiper 1.54m telescope", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70 cm AZT-8", "SBIG ST-6 UV camera", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Steward Observatory", "Arecibo Observatory", "Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station", "Goldstone Complex", "Goldstone Complex"], "data_types": [], "start_date": "1999-09-21", "stop_date": "2005-10-02", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/bundle_ast-bennu.radar.shape-model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/bundle_ast-bennu.radar.shape-model.xml", "scraped_at": "2026-02-25T20:02:10.737522Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:asteroid_polarimetric_database::2.0", "title": "Asteroid Polarimetric Database V2.0", "description": "The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": [], "start_date": "1958-10-22", "stop_date": "2020-12-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/bundle_asteroid_polarimetric_database.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/bundle_asteroid_polarimetric_database.xml", "scraped_at": "2026-02-25T20:02:10.737526Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-ceres.alma.images-spectra::1.0", "title": "ALMA Ceres Imaging and Spectrum V1.0", "description": "This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1) Ceres"], "instruments": ["Atacama Millimeter/submillimeter Array (ALMA)", "ALMA Radio Receivers"], "instrument_hosts": ["European Southern Observatory - Chajnantor"], "data_types": [], "start_date": "2015-10-31", "stop_date": "2017-10-26", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/bundle_gbo.ast-ceres.alma.images-spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/bundle_gbo.ast-ceres.alma.images-spectra.xml", "scraped_at": "2026-02-25T20:02:10.737531Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.amica.itokawa.backplanes::1.0", "title": "Hayabusa AMICA Images with Geometry Backplanes V1.0", "description": "The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa"], "targets": ["(25143) Itokawa"], "instruments": ["Asteroid Multi-band Imaging Camera"], "instrument_hosts": ["Hayabusa"], "data_types": [], "start_date": "2005-09-11", "stop_date": "2005-10-28", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/bundle_hay.amica.itokawa.backplanes.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/bundle_hay.amica.itokawa.backplanes.xml", "scraped_at": "2026-02-25T20:02:10.738065Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_high_rate_detector::1.0", "title": "CASSINI HIGH RATE DETECTOR", "description": "The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["CASSINI-HUYGENS"], "targets": ["Calibration Target", "Dust"], "instruments": ["HIGH RATE DETECTOR"], "instrument_hosts": ["CASSINI ORBITER"], "data_types": [], "start_date": "1999-03-25", "stop_date": "2017-09-15", "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/bundle_cassini_high_rate_detector.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/bundle_cassini_high_rate_detector.xml", "scraped_at": "2026-02-25T20:02:10.738069Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:saturn_satellite_shape_models::1.0", "title": "Saturn Small Moon Shape Models V1.0", "description": "Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-huygens"], "targets": ["Saturn XVI (Prometheus)", "Saturn XV (Atlas)", "Saturn XIV (Calypso)", "PAN", "PANDORA", "EPIMETHEUS", "Saturn VII (Hyperion)", "Saturn XXXV (Daphnis)", "Saturn X (Janus)", "Saturn XII (Helene)", "Saturn XIII (Telesto)"], "instruments": ["Imaging Science Subsystem - Narrow Angle"], "instrument_hosts": ["Cassini Orbiter"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/bundle_saturn_satellite_shape_models.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/bundle_saturn_satellite_shape_models.xml", "scraped_at": "2026-02-25T20:02:10.738073Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ceres::1.0", "title": "DAWN GRaND Ceres Bundle", "description": "This bundle collects the Ceres products for the GRaND instrument on the DAWN mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres", "(4) Vesta", "Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": [], "start_date": "2015-03-13", "stop_date": "2018-10-26", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/bundle_dawn-grand-ceres.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/bundle_dawn-grand-ceres.xml", "scraped_at": "2026-02-25T20:02:10.738078Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-vesta::1.0", "title": "DAWN GRaND Vesta Bundle", "description": "This bundle collects the Vesta products for the GRaND instrument on the DAWN mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres", "(4) Vesta", "Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": [], "start_date": "2011-05-03", "stop_date": "2012-08-09", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/bundle_dawn-grand-vesta.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/bundle_dawn-grand-vesta.xml", "scraped_at": "2026-02-25T20:02:10.738082Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-cruise::1.0", "title": "DAWN GRaND Cruise Bundle", "description": "This bundle collects the cruise products for the GRaND instrument on the DAWN mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres", "(4) Vesta", "Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": [], "start_date": "2007-10-16", "stop_date": "2014-07-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/bundle_dawn-grand-cruise.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/bundle_dawn-grand-cruise.xml", "scraped_at": "2026-02-25T20:02:10.738086Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ancillary::1.0", "title": "DAWN GRaND Ancillary Bundle", "description": "This bundle collects the ancillary products for the GRaND instrument on the DAWN mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres", "(4) Vesta", "Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/bundle_dawn-grand-ancillary.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/bundle_dawn-grand-ancillary.xml", "scraped_at": "2026-02-25T20:02:10.738089Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-mars::1.0", "title": "DAWN GRaND Mars Bundle", "description": "This bundle collects the Mars products for the GRaND instrument on the DAWN mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres", "(4) Vesta", "Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": [], "start_date": "2009-01-20", "stop_date": "2009-03-27", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/bundle_dawn-grand-mars.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/bundle_dawn-grand-mars.xml", "scraped_at": "2026-02-25T20:02:10.738093Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.mission::9.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Mission Bundle", "description": "This bundle collects all the mission wide information needed to use and understand the scientific data products produced by the Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx) mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["TAGCAMS", "OCAMS", "OLA", "OTES", "OVIRS", "REXIS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/bundle_mission.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/bundle_mission.xml", "scraped_at": "2026-02-25T20:02:10.738099Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola::4.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Laser Altimeter (OLA) Bundle", "description": "This bundle collects all the operational data products produced by the OSIRIS-REx Laser Altimeter (OLA). OLA is used for the topographic characterization of the surface of (101955) Bennu.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/bundle_ola.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/bundle_ola.xml", "scraped_at": "2026-02-25T20:02:10.738104Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.otes::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Emission Spectrometer (OTES) Bundle", "description": "This bundle collects all the operational data products produced by the OSIRIS-REx Thermal Emission (OTES). OTES is used for the spectral characterization of the surface of (101955) Bennu.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/bundle_otes.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/bundle_otes.xml", "scraped_at": "2026-02-25T20:02:10.738116Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_nirs3::1.0", "title": "Hayabusa2 NIRS3 Bundle", "description": "This bundle collects all the operational data products produced by the Hayabusa2 NIRS3 instrument.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["NIRS3"], "instrument_hosts": ["Hayabusa2"], "data_types": [], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/bundle_hyb2_nirs3.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/bundle_hyb2_nirs3.xml", "scraped_at": "2026-02-25T20:02:10.738121Z", "keywords": ["Hayabusa2", "NIRS3", "Spectrometer", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_tir::1.0", "title": "Hayabusa2 TIR Bundle", "description": "This bundle collects all the operational data products produced by the Hayabusa2 TIR instrument.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["TIR"], "instrument_hosts": ["Hayabusa2"], "data_types": [], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/bundle_hyb2_tir.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/bundle_hyb2_tir.xml", "scraped_at": "2026-02-25T20:02:10.738127Z", "keywords": ["Hayabusa2", "TIR", "Thermal Infrared Imager", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_spectra_reddy_neos_marscrossers::1.0", "title": "REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS", "description": "This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1036) Ganymed", "(1170) Siva", "(1727) Mette", "(1916) Boreas", "2004 RS109", "2008 RW24", "(2035) Stearns", "(323) Brucia", "(391) Ingeborg", "(4179) Toutatis", "(7088) Ishtar", "Multiple Asteroids", "(137032) 1998 UO1", "(137924) 2000 BD19", "(143678) 2003 SA224", "(143947) 2003 YQ117", "(144411) 2004 EW9", "(163000) 2001 SW169", "(21374) 1997 WS22", "(23183) 2000 OY21", "(391151) 2005 YY93", "(39572) 1993 DQ1", "(446791) 1998 SJ70", "(66063) 1998 RO1", "(68950) 2002 QF15", "(85709) 1998 SG36", "(85713) 1998 SS49", "(87684) 2000 SY2"], "instruments": ["SpeX", "Infrared Telescope Facility"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "2001-09-29", "stop_date": "2008-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/bundle_ast_spectra_reddy_neos_marscrossers.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/bundle_ast_spectra_reddy_neos_marscrossers.xml", "scraped_at": "2026-02-25T20:02:10.738133Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:epoxi_mri::1.0", "title": "EPOXI MRI Observations Bundle", "description": "This bundle contains observations collected with the MRI instrument on the Deep Impact Flyby Spacecraft during the EPOXI mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["EPOXI"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738258Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil-comet::4.0", "title": "Comet Data Compilations from Published Sources", "description": "The collections in this archive contain results that have been reported in the literature, or in some cases made available by private communication, for various comet properties. Individual collections focus on one or several closely related properties or targets of high interest.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Comets"], "instruments": ["Compilation"], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": "2016-10-19", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738263Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:spitzer::1.0", "title": "Data from the Spitzer Space Telescope", "description": "This archive bundle contains collections of observations and derived results from the Spitzer Heritage Archive, with related documentation.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Spitzer Space Telescope"], "targets": [], "instruments": [], "instrument_hosts": ["Spitzer Space Telescope"], "data_types": [], "start_date": "2003-11-23", "stop_date": "2009-04-04", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738285Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-ctio::1.0", "title": "Groundbased Observations at Cerro Tololo Inter-American Observatory", "description": "This bundle collects data taken at Cerro Tololo Inter-American Observatory.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["19P/1904 Y2 (Borrelly 1)"], "instruments": ["1.5-m Ritchey-Chretien Cassegrain reflector", "Cassegrain Focus Direct Image CCD Camera"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "2000-07-28", "stop_date": "2000-08-01", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738290Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-c2012_s1_ison::1.0", "title": "Comet C/ISON (2012 S1) Ground-Based Observations Bundle", "description": "This bundle contains raw, processed, and derived imaging and spectroscopic data of comet ISON taken in 2013.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["C/ISON (2012 S1)"], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738293Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-irtf::2.0", "title": "Groundbased Observations at the NASA Infrared Telescope Facility (IRTF)", "description": "This bundle collects data taken at IRTF and associated document files.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": [], "targets": ["9P/1867 G1 (Tempel 1)"], "instruments": ["IRTF 3.0-Meter Telescope", "SpeX", "Mid-Infrared Spectrometer and Imager"], "instrument_hosts": ["NASA Infrared Telescope Facility"], "data_types": [], "start_date": "2005-06-24", "stop_date": "2005-07-18", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738304Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-mcdonald::3.0", "title": "Groundbased Observations at McDonald Observatory", "description": "This bundle collects data taken at McDonald Observatory.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["Multiple Comets", "9P/1867 G1 (Tempel 1)", "19P/1904 Y2 (Borrelly 1)"], "instruments": ["2.7m Telescope", "2.1m Otto Struve telescope", "Image Dissector Scanner", "Large Cassegrain Spectrograph", "Imaging Grism Instrument"], "instrument_hosts": ["McDonald Observatory"], "data_types": [], "start_date": "1981-01-03", "stop_date": "1995-10-04", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738309Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-kpno::4.0", "title": "Groundbased Observations at Kitt Peak National Observatory (KPNO)", "description": "This bundle collects data taken at Kitt Peak National Observatory and associated document files.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": [], "targets": ["C/1996 B2 (Hyakutake)", "9P/1867 G1 (Tempel 1)", "19P/1904 Y2 (Borrelly 1)"], "instruments": [], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": [], "start_date": "1996-03-26", "stop_date": "2005-07-09", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738312Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ro_derived::1.0", "title": "Rosetta Derived Data Bundle", "description": "This bundle contains collections of products derived from archival Rosetta data that are separate from deliveries by the Rosetta team.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["INTERNATIONAL ROSETTA MISSION"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/bundle.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738412Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbl-classe::1.0", "title": "Laboratory Experiments at the Center for Laboratory Astrophysics and Space Science Experiments (CLASSE)", "description": "This bundle contains collections of data from instrument suites at the Southwest Research Institute (SwRI) Center for Laboratory Astrophysics and Space Science Experiments (CLASSE).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": [], "targets": [], "instruments": [], "instrument_hosts": ["CLASSE"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/bundle.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.738939Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.nesvorny.families::2.0", "title": "Nesvorny HCM Asteroid Families", "description": "The proper elements of asteroids are obtained from the instantaneous orbital elements by removing periodic oscillations produced by gravitational interactions with planets. They are unchanging in time, at least if chaotic dynamics and non-gravitational forces could be ignored, and can therefore be used to identify fragments of major collisions (asteroid families) that happened eons ago. Here we publish a new catalog of proper elements for 1.25 million main belt asteroids. A systematic search for families yielded 153 cases not reported in Nesvorn\\'y at al. (2015) -- 17 of these cases were identified in various other publications, 136 cases are new discoveries. There are now 274 families in the asteroid belt in total (plus a handful of new families in the resonant Hilda population). The present package contains member identifications for 153 new families.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids", "Multiple Asteroids"], "instruments": ["Literature search", "Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/bundle_ast.nesvorny.families.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families_V2_0/bundle_ast.nesvorny.families.xml", "scraped_at": "2026-02-25T20:02:10.739582Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:smallbodiesoccultations::4.0", "title": "Small Bodies Occultations V4.0", "description": "This data set is intended to include all reported timings of observed asteroid, comet nucleus, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version contains 9729 occultations. It is complete through to June 2023, with partial observations up until December 2023.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids", "Multiple Satellites", "Multiple Planets", "Multiple Dwarf Planets", "Multiple Comets"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1911-08-14", "stop_date": "2024-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/bundle_smallbodiesoccultations.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V4_0/bundle_smallbodiesoccultations.xml", "scraped_at": "2026-02-25T20:02:10.739590Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-1999td10.images-lightcurves::2.0", "title": "Visual Imaging and Photometry of (29981) 1999 TD10 V2.0", "description": "The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Landolt PG 2213-006", "Landolt SA 95", "Landolt PG 0231+051", "Landolt SA 92", "(29981) 1999 TD10"], "instruments": ["2.13-m Corning Cassegrain/Coude reflector", "CFIM+T2KA"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": [], "start_date": "2001-09-21", "stop_date": "2002-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/bundle_gbo.ast-1999td10.images-lightcurves.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves_V2_0/bundle_gbo.ast-1999td10.images-lightcurves.xml", "scraped_at": "2026-02-25T20:02:10.739595Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.primass-l.spectra::2.0", "title": "PRIMASS-L V2.0", "description": "PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of the end of 2023 this library contains 438 visible and 264 near-infrared spectra of primitive asteroids from 10 families and two groups that had been sparsely studied before. PRIMASS-L contains spectra from a variety of ground-based facilities. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(78921) 2003 SP108", "(84536) 2002 UV19", "(86812) 2000 GB125", "(3185) Clintford", "(79044) 3919 T-2", "(96690) 1999 JA73", "(96918) 1999 TJ113", "(178844) 2001 HG53", "(5594) Jimmiller", "(3064) Zimmer", "(1754) Cunningham", "(5158) Ogarev", "(28424) 1999 XA", "(1209) Pumma", "(1439) Vogtia", "(34487) 2000 SE133", "(107070) 2001 AH16", "(66333) 1999 JS60", "(12421) Zhenya", "(39260) 2000 YE138", "(53537) Zhangyun", "(29623) 1998 SR164", "(72384) 2001 CF12", "(20432) 1999 BD12", "(30514) Chiomento", "(162755) Spacesora", "(57473) 2001 SE127", "(17230) 2000 CX116", "(35358) Lorifini", "(237295) 2008 YN7", "(3162) Nostalgia", "(528) Rezia", "(132509) 2002 JU41", "(65354) 2002 NG43", "(940) Kordula", "(174594) 2003 QH56", "(34210) 2000 QV67", "(1511) Dalera", "(6237) Chikushi", "(6661) Ikemura", "(203620) 2002 EU125", "(72143) 2000 YQ86", "(20771) 2000 QY150", "(71932) 2000 WO61", "(52870) 1998 SC26", "(79143) 1992 BQ2", "(85) Io", "(2081) Sazava", "(13997) 1993 FB32", "(213825) 2003 QW63", "(110819) 2001 UW49", "(767) Bondia", "(252953) 2002 PB91", "(13537) 1991 SG", "(61309) 2000 OF50", "(78826) 2003 QE17", "(1768) Appenzella", "(25829) 2000 DU108", "(122109) 2000 HJ94", "(8091) 1992 BG", "(20992) 1985 RV2", "(6698) Malhotra", "(44773) 1999 TU140", "(2624) Samitchell", "(92634) 2000 QN19", "(210564) 1999 TR195", "(84) Klio", "(623) Chimaera", "(43346) 2000 RT103", "(174120) 2002 JC146", "(11214) 1999 HP8", "(34890) Vasikaran", "(853) Nansenia", "(28620) Anicia", "(6578) Zapesotskij", "(81010) 2000 EL35", "(109030) 2001 QL10", "(85626) 1998 HM141", "(243648) 1999 TX176", "(9723) Binyang", "(6118) Mayuboshi", "(190) Ismene", "(249427) 2009 EH18", "(6542) Jacquescousteau", "(24726) Nagatatetsuya", "(24956) Qiannan", "(3298) Massandra", "(57442) 2001 SF54", "(5368) Vitagliano", "(32847) 1992 JO3", "(329) Svea", "(39955) 1998 FV118", "(37437) 2576 P-L", "(17233) Stanshapiro", "(11118) Modra", "(67891) 2000 WR61", "(65264) 2002 GW16", "(42552) 1996 RH25", "(42431) 1051 T-3", "(242324) 2003 YY12", "(16132) Angelakim", "(4231) Fireman", "(2728) Yatskiv", "(29626) 1998 TV12", "(3130) Hillary", "(151019) 2001 UF119", "(123979) 2001 FB38", "(52891) 1998 SM61", "(33804) 1999 WL4", "(25381) Jerrynelson", "(25490) Kevinkelly", "(1539) Borrelly", "(6039) Parmenides", "(33913) 2000 LK14", "(132383) 2002 GQ83", "(42781) 1998 VL28", "(132056) 2002 CA141", "(1190) Pelagia", "(42006) 2000 YA50", "(11750) 1999 NM33", "(557) Violetta", "(126046) 2001 YH72", "(67586) 2000 SH125", "(362332) 2010 KW34", "(11338) Schiele", "(1700) Zvezdara", "(48153) 2001 FW172", "(2171) Kiev", "(72047) 2000 YZ6", "(6343) 1993 VK", "(212417) 2006 KJ103", "(38657) 2000 OO46", "(6125) Singto", "(320575) 2008 AM110", "(164286) 2004 XO86", "(262102) 2006 RE98", "(24638) 1981 UC23", "(169633) 2002 HQ12", "(69706) 1998 HJ77", "(11751) Davidcarroll", "(59317) 1999 CN89", "(80062) 1999 JX85", "(752) Sulamitis", "(133123) 2003 PO1", "(401) Ottilia", "(85727) 1998 SC75", "(54286) 2000 JD51", "(36469) 2000 QT23", "(142297) 2002 RF145", "(61500) 2000 QV51", "(44766) 1999 TM123", "(72169) 2000 YW107", "(42347) 2002 AV155", "(18477) 1995 WA11", "(72230) 2001 AN15", "(59) Elpis", "(3036) Krat", "(110518) 2001 TY78", "(251796) 1999 TO9", "(67940) 2000 WT143", "(120384) 2005 QU29", "(58240) 1993 FV81", "(13737) 1998 RU76", "(28736) 2000 GE133", "(163) Erigone", "(132091) 2002 CC175", "(25932) 2001 DB72", "(39094) 2000 VQ58", "(147535) 2004 EH14", "(136267) 2003 YR80", "(147777) 2005 QV103", "(253538) 2003 SX220", "(3485) Barucci", "(1280) Baillauda", "(36342) 2000 NX15", "(106085) 2000 SO355", "(1183) Jutta", "(19415) Parvamenon", "(5771) Somerville", "(69679) 1998 HR15", "(3146) Dato", "(45892) 2000 WR179", "(42802) 1999 GE15", "(14849) 1989 GQ1", "(6415) 1993 VR3", "(370) Modestia", "(70394) 1999 RP237", "(66403) 1999 LM13", "(40976) 1999 TV272", "(13509) Guayaquil", "(52951) 1998 SO147", "(5116) Korsor", "(3470) Yaronika", "(304858) 2007 RQ77", "(50239) 2000 BW3", "(156670) 2002 JK111", "(76922) 2001 AH15", "(39888) 1998 ES20", "(5661) Hildebrand", "(933) Susi", "(5794) Irmina", "(265259) 2004 EW82", "(19862) 2556 P-L", "(43482) 2001 BW32", "(2066) Palala", "(45357) 2000 AC102", "(107032) 2000 YB1240", "(169066) 2001 FR157", "(282) Clorinde", "(35135) 1992 RO1", "(10979) Fristephenson", "(70361) 1999 RK189", "(117745) 2005 GP37", "(4100) Sumiko", "(6840) 1995 WW5", "(186446) 2002 SM30", "(57068) 2001 OC1", "(7748) 1987 TA", "(22118) 2000 SL86", "(44463) 1998 VT18", "(135384) 2001 TT166", "(53170) 1999 CH19", "(12072) Anupamakotha", "(2839) Annette", "(36465) 2000 QR19", "(5333) Kanaya", "(6647) Josse", "(2067) Aksnes", "(232922) 2005 AP26", "(14179) Skinner", "(60852) 2000 HU65", "(3561) Devine", "(14264) 2000 AH142", "(238992) 2006 BH260", "(138668) 2000 RB103", "(1924) Horus", "(59322) 1999 CB95", "(38106) 1999 JG23", "(66325) 1999 JF55", "(85241) 1993 PC3", "(119526) 2001 UF175", "(3562) Ignatius", "(100784) 1998 FM61", "(5327) Gertwilkens", "(133197) 2003 QS59", "(186530) 2002 VX78", "(24656) 1987 QT7", "(2918) Salazar", "(65540) 7628 P-L", "(122871) 2000 SX138", "(32061) 2000 JK48", "(15134) 2000 ED92", "(183911) 2004 CB100", "(3247) Di Martino", "(93347) 2000 SX247", "(1923) Osiris", "(1705) Tapio", "(49859) 1999 XB100", "(208048) 1999 TL149", "(15561) 2000 GU36", "(249089) 2007 VL55", "(74962) 1999 TW200", "(27506) Glassmeier", "(155162) 2005 UZ104", "(42155) 2001 BA63", "(85167) 1989 RS2", "(4589) McDowell", "(2279) Barto", "(38661) 2000 OC49", "(20168) 1996 VY4", "(1021) Flammario", "(12051) Picha", "(14000) 1993 FZ55", "(1493) Sigrid", "(73860) 1996 XR5", "(325852) 2010 TO53", "(80754) 2000 CV49", "(9052) Uhland", "(250431) 2003 WL117", "(175194) 2005 EL268", "(1902) Shaposhnikov", "(2276) Warck", "(208039) 1999 RV113", "(10866) Peru", "(37233) 2000 WV154", "(37354) 2001 TN107", "(74755) 1999 RL199", "(66432) 1999 NL46", "(149396) 2003 AU39", "(11856) Nicolabonev", "(3330) Gantrisch", "(98391) 2000 TL62", "Multiple Asteroids", "(12) Victoria", "(73205) 2002 JY16", "(255959) 2006 TP34", "(109019) 2001 QT6", "(26516) 2000 CW56", "(78069) 2002 LU4", "(113374) 2002 SB8", "(65102) 2002 CY17", "(23893) Lauman", "(1177) Gonnessia", "(80789) 2000 CC85", "(161079) 2002 LP61", "(96405) 1998 ES", "(96768) 1999 RH50", "(70158) 1999 NZ37", "(34923) 4870 P-L", "(39895) 1998 FK15", "(66421) 1999 NQ19", "(27738) 1990 TT4", "(173657) 2001 HN14", "(66336) 1999 JB62", "(175811) 1999 RS193", "(18759) 1999 HO2", "(66062) 1998 RG1", "(36286) 2000 EL14", "(5429) 1988 BZ1", "(53918) 2000 GM18", "(63312) 2001 FH24", "(1386) Storeria", "(1144) Oda", "(3577) Putilin", "(1035) Amata", "(7078) Unojonsson", "(3202) Graff", "(268) Adorea", "(15794) 1993 TG31", "(220) Stephania", "(15540) 2000 CF18", "(208724) 2002 JV130", "(300289) 2007 OM10", "(4219) Nakamura", "(27715) 1989 CR1", "(8398) Rubbia", "(165403) 2000 XM43", "(80993) 2000 EY26", "(3566) Levitan", "(332038) 2005 QZ73", "(7030) Colombini", "(137397) 1999 TH165", "(112) Iphigenia", "(2441) Hibbs", "(8927) Ryojiro", "(56970) 2000 SJ111", "(75089) 1999 VY30", "(1806) Derice", "(790) Pretoria", "(165536) 2001 DC6", "(2259) Sofievka", "(909) Ulla", "(2332) Kalm", "(5524) Lecacheux", "(3006) Livadia", "(106918) 2000 YZ52", "(48876) 1998 HE103", "(917) Lyka", "(1267) Geertruida", "(133873) 2004 LB26", "(15202) Yamada-Houkoku", "(7274) Washioyama", "(7394) Xanthomalitia", "(4750) Mukai", "(4229) Plevitskaya", "(34857) Sutaria", "Multiple", "(74832) 1999 TH26", "(59065) 1998 UB43", "(171027) 2005 EN57", "(41525) 2000 QP218", "(1484) Postrema", "(32898) 1994 PS1", "(1012) Sarema", "(30120) 2000 FZ38", "(129818) 1999 NE28", "(37917) 1998 FJ103", "(4422) Jarre", "(4458) Oizumi", "(9476) Vincenthuang", "(49833) 1999 XB84", "(24650) 1986 QM", "(53178) 1999 CT35", "(31487) Parthchopra", "(61560) 2000 QT74", "(203141) 2000 UV41", "(41746) 2000 VD16", "(90975) 1997 WF37", "(46566) 1991 RW21", "(71655) 2000 EF121", "(5506) Artiglio", "(77495) 2001 HM37", "(24358) 2000 AV117", "(172478) 2003 SM87", "(1003) Lilofee", "(56600) 2000 JK50", "(1269) Rollandia", "(66309) 1999 JX41", "(72308) 2001 BZ34", "(142751) 2002 TG300", "(6769) Brokoff", "(24322) 2000 AM43", "(177258) 2003 WX39", "(2662) Kandinsky", "(98178) 2000 SU99", "(5711) Eneev", "(106919) 2000 YC53", "(916) America", "(111789) 2002 CQ236", "(1159) Granada", "(49863) 1999 XK104", "(112308) 2002 LR47", "(1244) Deira", "(68490) 2001 TH239", "(122596) 2000 RG35", "(98818) 2000 YH125", "(10992) Veryuslaviya", "(495) Eulalia", "(18075) Donasharma", "(99691) 2002 JP27", "(2990) Trimberger", "(77278) 2001 FL61", "(2348) Michkovitch", "(108631) 2001 NG", "(2772) Dugan", "(63310) 2001 FS21", "(95018) 2002 AZ9", "(244905) 2003 WJ120", "(173129) 1994 JH2", "(364204) 2006 QR100", "(84211) 2002 RV141", "(49731) 1999 VR80", "(3579) Rockholt", "(3228) Pire", "(148658) 2001 SG128", "(21176) 1994 CN13", "(9121) Stefanovalentini", "(383) Janina", "(4524) Barklajdetolli", "(10446) Siegbahn", "(39694) 1996 ST2", "(2139) Makharadze", "(42089) 2001 AQ15", "(2563) Boyarchuk", "(2575) Bulgaria", "(8152) Martinlee", "(35627)1998 KW9", "(168936) 2000 YN95", "(20604) Vrishikpatil", "(133503) 2003 SW288", "(3556) Lixiaohua", "(70312) 1999 RM137", "(5081) Sanguin", "(6712) Hornstein", "(45378) 2000 AD118", "(180349) 2003 YW71", "(142) Polana", "(16090) Lukaszewski", "(43152) 1999 XM115", "(246226) 2007 RH212", "(26394) Kandola", "(4317) Garibaldi", "(6857) Castelli", "(10542) Ruckers", "(2794) Kulik", "(2007) McCuskey", "(2322) Kitt Peak", "(8032) Michaeladams", "(253798) 2003 XP17", "(59397) 1999 FT26", "(19145) 1989 YC", "(26719) 2001 HQ5", "(68685) 2002 CK142", "(38166) 1999 JV84", "(23397) 5122 T-3", "(1782) Schneller", "(6806) Kaufmann", "(531) Zerlina", "(15415) Rika", "(313) Chaldaea", "(1358) Gaika", "(34326) Zhaurova", "(131119) 2001 BK4", "(217593) 2008 FK3", "(106794) 2000 XK26", "(112414) 2002 NV42", "(2642) Vesale", "(142282) 2002 RT128", "(42411) 3249 T-1", "(14530) 1997 PR", "(50068) 2000 AR77", "(72292) 2001 BE22", "(229) Adelinda", "(24907) Alfredhaar", "(750) Oskar", "(302) Clarissa", "(689) Zita", "(206344) 2003 PA8", "(34339) 2000 QH218", "(147241) 2002 XW62", "(3429) Chuvaev", "(2534) Houzeau", "(44942) 1999 VM55", "(20080) Maeharatorakichi", "(2328) Robeson", "(6471) Collins", "(162795) 2000 YF52", "(6374) Beslan", "(2776) Baikal", "(14215) 1999 TV6", "(23916) 1998 SD131", "(57400) 2001 RR90", "(107861) 2001 FN80", "(67918) 2000 WW109", "(24037) 1999 SB7", "(214) Aschera", "(335) Roberta", "(170184) 2003 MV11", "(70511) 1999 TL103", "(120548) 1995 BO", "(67352) 2000 JN80", "(9667) Amastrinc", "(2446) Lunacharsky", "(6278) Ametkhan", "(20843) Kuotzuhao", "(132352) 2002 GV54", "(2773) Brooks", "(53103) 1999 AB2", "(68114) Deakferenc", "(6133) Royaldutchastro", "(242858) 2006 GJ9", "(78889) 2003 SA36", "(26807) 1982 RK1", "(27354) Stiklaitis", "(8106) Carpino", "(1202) Marina", "(45846) Avdellidou", "(1650) Heckmann", "(24048) Pedroduque", "(1674) Groeneveld", "(3633) Mira", "(9860) Archaeopteryx", "(72941) 2002 CD8", "(4648) Tirion", "(98246) 2000 SY166", "(107742) 2001 FH33", "(120190) 2004 CL97", "(71966) 2000 WP118", "(3723) Voznesenskij", "(3626) Ohsaki", "(56349) 2000 AZ90", "(357) Ninina", "(1544) Vinterhansenia", "(69266) 1988 RJ6", "(26121) 1992 BX", "(79610) 1998 RF51", "(8233) Asada", "(16715) Trettenero", "(123915) 2001 DK95", "(249) Ilse", "(15505) 1999 RF56", "(431) Nephele", "(1216) Askania", "(225) Henrietta", "(7132) Casulli", "(334) Chicago", "(9792) Nonodakesan", "(106797) 2000 XX27", "(9200) 1993 FK21", "(18483) 1995 YY2", "(6815) Mutchler", "(3627) Sayers", "(70427) 1999 TB1", "(96463) 1998 HW51", "(4173) Thicksten", "(98345) 2000 SQ304", "(166264) 2002 GL74", "(55454) 2001 TJ128", "(5900) Jensen", "(262642) 2006 WT49", "(5924) Teruo", "(70528) 1999 TF116", "(3999) Aristarchus", "(15417) Babylon", "(1740) Paavo Nurmi", "(1655) Comas Sola", "(60571) 2000 ER116", "(15998) 1999 AG2", "(23270) Kellerman", "(121096) 1999 FG51", "(114308) 2002 XY50", "(561) Ingwelde", "(9566) Rykhlova", "(77421) 2001 GB", "(12455) 1997 AR", "(25024) Calebmcgraw", "(334314) 2001 VY132", "(25036) Elizabethof", "(3843) OISCA", "(38173) 1999 JZ112", "(256789) 2008 CY45", "(30043) Lisamichaels", "(7231) Porco", "(116717) 2004 DU8", "(34228) 2000 QF90", "(153694) 2001 UV28", "(28894) Ryanchung", "(134740) 2000 AX187", "(2536) Kozyrev", "(6142) Tantawi", "(186714) 2004 BV88", "(2778) Tangshan", "(132248) 2002 EM90"], "instruments": ["IRTF 3.2m", "SpeX", "3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "DOLORES (Device Optimized for LOw RESolution)", "3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "Near Infrared Camera Spectrometer (NICS)", "New Technology Telescope (NTT)", "ESO Faint Object Spectrograph and Camera 2", "Gran Telescopio Canaria (GTC)", "GTC OSIRIS Optical Imager and Spectrograph", "2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)", "Intermediate Dispersion Spectrograph (IDS)", "SOAR", "SOAR-GHTS"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea", "Roque de los Muchachos Observatory", "Roque de los Muchachos Observatory", "European Southern Observatory", "Roque de los Muchachos Observatory", "Roque de los Muchachos Observatory", "Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "2001-08-04", "stop_date": "2020-02-03", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/bundle_gbo.ast.primass-l.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V2_0/bundle_gbo.ast.primass-l.spectra.xml", "scraped_at": "2026-02-25T20:02:10.739636Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo_ast_fieber-beyer_spectra::2.0", "title": "Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0", "description": "The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(495) Eulalia", "Multiple Asteroids", "(897) Lysistrata", "(6212) Franzthaler", "(1215) Boyer", "(292) Ludovica", "(2038) Bistro", "(329) Svea", "(248) Lameia", "(3637) O'Meara", "(198) Ampella", "(115) Thyra", "(335) Roberta", "(421) Zahringia", "(1064) Aethusa", "(162385) 2000 BM19", "(1644) Rafita", "(1772) Gagarin", "(1368) Numidia", "(1379) Lomonosowa", "(1722) Goffin", "(714) Ulula", "(556) Phyllis", "(6) Hebe", "(6649) Yokotatakao", "(797) Montana", "(46) Hestia", "(3066) McFadden", "(974) Lioba", "(1158) Luda", "(285263) 1998 QE2", "(481532) 2007 LE", "(695) Bella", "(19727) Allen", "(619) Triberga", "(3345) Tarkovskij", "(5676) Voltaire", "(355) Gabriella", "(3999) Aristarchus", "(623) Chimaera", "(1166) Sakuntala", "(518) Halawe", "(1391) Carelia", "(908) Buda", "(1854) Skvortsov", "(1607) Mavis", "(1587) Kahrstedt", "(3760) Poutanen", "(5129) Groom", "(652) Jubilatrix", "(1501) Baade", "(2497) Kulikovskij", "(1447) Utra", "(660) Crescentia", "(875) Nymphe", "(1960) Guisan", "(1018) Arnolda", "(787) Moskva", "(1036) Ganymed", "(354) Eleonora", "(879) Ricarda", "(2089) Cetacea", "(1358) Gaika"], "instruments": ["3.0-m NASA Infrared Telescope Facility (IRTF)", "SpeX"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": [], "start_date": "2000-06-30", "stop_date": "2017-12-13", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/bundle_gbo.ast.fieber-beyer.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/bundle_gbo.ast.fieber-beyer.spectra.xml", "scraped_at": "2026-02-25T20:02:10.739648Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.nirs::1.0", "title": "The Hayabusa NIRS Bundle", "description": "This data set includes the 117,937 raw spectra returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission, along with 111,226 calibrated spectra of asteroid 25143 Itokawa. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The raw data cover the period from May 12, 2003 through November 24, 2005, and the calibrated data cover the Itokawa encounter phases of the mission, from Aug. 31 through November 24, 2005.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["HAYABUSA"], "targets": ["(25143) Itokawa"], "instruments": ["NEAR-INFRARED SPECTROMETER"], "instrument_hosts": ["HAYABUSA"], "data_types": [], "start_date": "2005-08-31", "stop_date": "2005-11-24", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/bundle_hay.nirs.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/bundle_hay.nirs.xml", "scraped_at": "2026-02-25T20:02:10.739658Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Bundle", "description": "This bundle collects all the operational data products produced by Hayabusa2 Optical Navigation Camera (ONC).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": [], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/bundle_hyb2_onc.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/bundle_hyb2_onc.xml", "scraped_at": "2026-02-25T20:02:10.739663Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mag::1.0", "title": "Hayabusa2/MASCOT Magnetometer Bundle", "description": "This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT Fluxgate Magnetometer.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MASMAG"], "instrument_hosts": ["MASCOT"], "data_types": [], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/bundle_hyb2_mascot_mag.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/bundle_hyb2_mascot_mag.xml", "scraped_at": "2026-02-25T20:02:10.739668Z", "keywords": ["Hayabusa2", "MASMAG", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mara::1.0", "title": "Hayabusa2/MASCOT MARA Radiometer Bundle", "description": "This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT MARA Radiometer.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MARA"], "instrument_hosts": ["MASCOT"], "data_types": [], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/bundle_hyb2_mascot_mara.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/bundle_hyb2_mascot_mara.xml", "scraped_at": "2026-02-25T20:02:10.739672Z", "keywords": ["Hayabusa2", "MARA", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mascam::1.0", "title": "Hayabusa2/MASCOT Camera Bundle", "description": "This PDS4 bundle collects all the operational data products produced by the Hayabusa2 MASCOT Camera, MASCAM.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["HAYABUSA2 ASTEROID SAMPLE RETURN MISSION"], "targets": ["(162173) RYUGU"], "instruments": ["MASCOT CAMERA"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": [], "start_date": "2018-10-03", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/bundle_hyb2_mascot_mascam.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/bundle_hyb2_mascot_mascam.xml", "scraped_at": "2026-02-25T20:02:10.739677Z", "keywords": ["Hayabusa2", "MASCAM", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_shapemodel::1.0", "title": "DART Shapemodel Archive Bundle", "description": "The DART Shapemodel Bundle contains derived stereophotoclinometry (SPC) data products produced by the DART project. The primary inputs to the shape model collections are the calibrated Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) images from the DART spacecraft and the LICIACube Unit Key Explorer (LUKE) images from LICIAcube spacecraft, as well as SPICE ancillary information. These data are processed through a variety of algorithms resulting in shape, topographic, and geometric information. The bundle also includes documentation that describes the data products for each data collection.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos", "(65803) Didymos I (Dimorphos)"], "instruments": ["DRACO", "LUKE"], "instrument_hosts": ["DART", "LICIACube"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/bundle_dart_shapemodel.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel-v1.0/bundle_dart_shapemodel.xml", "scraped_at": "2026-02-25T20:02:10.739786Z", "keywords": ["DART"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart::2.0", "title": "DART Spacecraft Archive Bundle", "description": "The DART Spacecraft Bundle contains raw and calibrated data products taken from the DRACO imager on board the DART spacecraft, Radio Science products received from the Deep Space Network (DSN), and Maneuver Acceleration File (MAF) data for DART. The bundle also includes documentation that describes the data products for each data collection.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Double Asteroid Redirection Test"], "targets": ["(65803) Didymos", "(65803) Didymos I (Dimorphos)"], "instruments": ["DRACO", "DART High Gain Antenna (HGA)"], "instrument_hosts": ["DART", "DSN"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/bundle_dart_spacecraft.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart-v2.0/bundle_dart_spacecraft.xml", "scraped_at": "2026-02-25T20:02:10.739795Z", "keywords": ["DART"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_alice::2.0", "title": "New Horizons Alice Ultraviolet Imaging Spectrograph Instrument Archive Bundle", "description": "This bundle contains collections of raw and calibrated data from the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission 1"], "targets": [], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice-v2.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.739810Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_leisa::2.0", "title": "New Horizons Linear Etalon Imaging Spectral Array Instrument Archive Bundle", "description": "This bundle contains collections of raw and calibrated data from the Linear Etalon Imaging Spectral Array (LEISA) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission 1"], "targets": [], "instruments": ["Linear Etalon Imaging Spectral Array"], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa-v2.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.739814Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_mvic::2.0", "title": "New Horizons MVIC Data Archive", "description": "This bundle contains collections of raw and processed data from the MVIC instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission 1"], "targets": [], "instruments": ["Multispectral Visible Imaging Camera"], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic-v2.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.739818Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_sdc::2.0", "title": "New Horizons Student Dust Counter (SDC) Instrument Archive Bundle", "description": "This bundle contains collections of raw and calibrated data from the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission 1"], "targets": [], "instruments": ["Student Dust Counter"], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc-v2.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.739822Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:soho::1.3", "title": "Comet Data from the Solar and Heliospheric Observatory (SOHO)", "description": "This archive bundle contains collections of comet observations and derived results from the SOHO data archives, with related documentation.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Solar and Heliospheric Observatory"], "targets": [], "instruments": [], "instrument_hosts": ["Solar and Heliospheric Observatory"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/bundle.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho-v1.3/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739886Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_pepssi::2.0", "title": "New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Archive Bundle", "description": "This bundle contains collections of raw and calibrated data from the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to calibrated.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi-v2.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.739903Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lucy.llorri::1.0", "title": "Lucy Mission L'LORRI Instrument Bundle", "description": "This bundle collects all the operational data products produced by the Lucy LOng Range Reconnaissance Imager.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Lucy Mission"], "targets": ["(65803) Didymos"], "instruments": ["Lucy Long Range Reconnaissance Imager (L'LORRI)"], "instrument_hosts": ["Lucy"], "data_types": [], "start_date": "2022-09-26", "stop_date": "2022-09-27", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/bundle.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri-v1.0/bundle.xml", "scraped_at": "2026-02-25T20:02:10.739908Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_secondary::1.0", "title": "Secondary Collections to Support New Horizons Research Results", "description": "This bundle provides a place to create collections containing only secondary members to support lists of product IDs related to derived data sets and analytical references in publications. The collection labels will indicate the relevant data sets or publications.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary-v1.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.739933Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived::4.0", "title": "Derived Products from New Horizons Data", "description": "This bundle contains collections of products derived from archival New Horizons data (i.e., not direct observational products).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived-v4.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.739936Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_rex::1.0", "title": "New Horizons Radio Science Experiment (REX) Instrument Archive Bundle", "description": "This bundle contains collections of raw and calibrated data from the Radio Science Experiment (REX) instrument onboard the New Horizons spacecraft, as well related Tracking and Navigation Files (TNF) used by the project.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission 1"], "targets": [], "instruments": ["Radio Science Experiment"], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex-v1.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.740007Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap::2.1", "title": "New Horizons Solar Wind Around Pluto (SWAP) Instrument Archive Bundle", "description": "This bundle contains collections of raw and calibrated data from the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, as well as a data summary plots collection, a calibration collection of ancillary files used to calibrate the data from raw to calibrated, and a trajectory collection with the New Horizons (NH) spacecraft trajectory in various reference frames.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap-v2.1/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.740147Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents::4.3", "title": "New Horizons Mission Instrument-Specific and Mission-Wide Documents", "description": "This bundle contains collections of documents for the New Horizons mission. Each instrument has a separate document collection (or in the case of MVIC and LEISA, a combined Ralph collection). In addition, a mission collection contains documents that apply across the entire mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission", "New Horizons Kuiper Belt Extended Mission 2"], "targets": [], "instruments": [], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents-v4.3/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.740151Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_lorri::2.0", "title": "New Horizons LORRI Data Archive", "description": "This bundle contains collections of raw and processed data from the LORRI instrument onboard the New Horizons spacecraft, as well as a calibration collection of ancillary files used to calibrate the data from raw to processed.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission (KEM1)"], "targets": [], "instruments": ["Long Range Reconnaissance Imager"], "instrument_hosts": ["New Horizons"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/bundle.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri-v2.0/bundle.lblx", "scraped_at": "2026-02-25T20:02:10.740695Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar::2.0", "title": "Hayabusa2 LIDAR Bundle", "description": "This bundle collects all the operational data products produced by the Hayabusa2 LIDAR instrument.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["LIght Detection And Ranging (LIDAR)"], "instrument_hosts": ["Hayabusa2"], "data_types": [], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/bundle_hyb2_lidar_v002.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/bundle_hyb2_lidar_v002.xml", "scraped_at": "2026-02-25T20:02:10.740711Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2::4.0", "title": "Hayabusa2 Mission Bundle", "description": "This bundle collects all the mission wide information needed to use and understand the scientific data products produced by the Hayabusa2 mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["Small Monitor Camera (CAM-H)", "LIght Detection And Ranging (LIDAR)", "Near InfraRed Spectrometer (NIRS3)", "Optical Navigation Camera", "Small Carry-on Impactor (SCI)", "Thermal Infrared Imager (TIR)", "DCAM3-A (DCAM3 Analog)", "DCAM3-D (DCAM3 Digital)", "MASCOT Camera", "MASCOT Fluxgate Magnetometer", "MARA", "MicrOmega"], "instrument_hosts": ["Hayabusa2", "DCAM3 (Deployable Camera 3)", "MASCOT", "MINERVA-II1 Rover-1a HIBOU", "MINERVA-II1 Rover-1b OWL", "MINERVA-II2 Rover-2 ULULA"], "data_types": [], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/bundle_hyb2_v004.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/bundle_hyb2_v004.xml", "scraped_at": "2026-02-25T20:02:10.740720Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.satellite.colors::1.0", "title": "Small Planetary Satellite Colors V1.0", "description": "This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["MULTIPLE"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": [], "start_date": "1977-09-11", "stop_date": "2002-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/bundle_compil.satellite.colors.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/bundle_compil.satellite.colors.xml", "scraped_at": "2026-02-25T20:02:10.740723Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics::1.0", "title": "Ceres Urvara Dawn FC C2E mosaics V1.0", "description": "This bundle contains controlled mosaics of the Urvara crater region using Dawn FC2 level 1b calibrated images from the Ceres X2 Elliptical (C2E) mission phase. Approximately 1600 images are used, with resolutions varying from a few m/pixel to around 40 m/pixel. Images are controlled relative to each other and to the Dawn LAMO basemap, and are photometrically corrected to account for varying illumination conditions. A single large mosaic is included, with all images scaled to 5 m/pixel resolution, along with four subset mosaics incorporating only those images in different ranges of native resolution: 3.5-7 m/pixel, 7-14 m/pixel, 14-28 m/pixel, and greater than 28 m/pixel. When layered together, the four submosaics include all images contained in the full mosaic.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/bundle_dwarf_planet-ceres.dawn-fc.urvara-mosaics.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/bundle_dwarf_planet-ceres.dawn-fc.urvara-mosaics.xml", "scraped_at": "2026-02-25T20:02:10.740727Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo-dds::1.0", "title": "Galileo Dust Detection System Bundle", "description": "This bundle contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission. Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["GALILEO"], "targets": ["Calibration Target", "Dust"], "instruments": ["GALILEO DUST DETECTION SYSTEM"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": "1989-10-18", "stop_date": "2003-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/bundle_galileo-dds.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/bundle_galileo-dds.xml", "scraped_at": "2026-02-25T20:02:10.740730Z", "keywords": [], "processing_level": "Raw | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra::1.0", "title": "Reddy IRTF Near Earth Asteroid Spectra V1.0", "description": "This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of 40 near-Earth asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra that were obtained as part of Vishnu Reddy's Ph.D. disseration at the University of North Dakota. They have been used for detailed mineralogical/compositional analysis and thermal modeling to constrain the albedo of these objects.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "2005-06-30", "stop_date": "2009-10-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/bundle_gbo.ast-neo.reddy.irtf.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/bundle_gbo.ast-neo.reddy.irtf.spectra.xml", "scraped_at": "2026-02-25T20:02:10.740734Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra::1.0", "title": "Near-infrared spectra of small NEOs by Sanchez and Reddy", "description": "This dataset includes near-infrared (NIR) spectra (~0.7-2.5 microns) of 82 small near-Earth objects (NEOs) with absolute visual magnitudes H > 20 (mean diameter of 126 m). All spectra were obtained with the IRTF and the SpeX instrument over the course of ~7 years. These NIR spectra are published in [SANCHEZETAL2024].", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["2019 JX7", "2016 CO247", "2007 EC", "2020 HS6", "2014 WZ120", "(438908) 2009 XO", "2016 EV27", "2019 JL3", "(501647) 2014 SD224", "2012 ER14", "2002 LY1", "2006 XY", "2017 BY93", "(459872) 2014 EK24", "2019 UO13", "2020 KC5", "2016 BC14", "2014 WY119", "(85990) 1999 JV6", "2020 SN", "2020 YQ3", "2019 RC", "2001 YV3", "2013 XA22", "2016 CM194", "2015 LK24", "2019 AN5", "2014 VQ", "2015 AK45", "2014 PL51", "2016 EB1", "2014 PR62", "(469737) 2005 NW44", "(163348) 2002 NN4", "(496816) 1989 UP", "2017 CR32", "2015 HA1", "2019 GT3", "2015 WF13", "2017 OL1", "2017 RR15", "(528159) 2008 HS3", "2014 SS1", "2016 EF28", "2016 FV13", "2016 LG", "2015 BC", "2019 YM3", "(436724) 2011 UW158", "2015 TB25", "2005 TF", "2017 BS5", "2020 ST1", "2017 OP68", "2018 XG5", "2020 DZ1", "2014 WN4", "2015 TF", "2005 NE21", "2017 WX12", "2020 RO6", "(412995) 1999 LP28", "2018 XS4", "2015 BK509", "2015 FL", "2019 SH6", "2017 FU64", "(471240) 2011 BT15", "(467336) 2002 LT38", "2017 DR34", "2015 XC", "(515767) 2015 JA2", "2015 VE66", "2015 AP43", "2014 VH2", "(363599) 2004 FG11", "2016 GU", "2015 NA14", "2013 CW32", "2000 TU28", "2017 BW", "(437844) 1999 MN"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "2013-10-14", "stop_date": "2021-01-15", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/bundle_gbo.ast-neo.sanchez-reddy.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/bundle_gbo.ast-neo.sanchez-reddy.spectra.xml", "scraped_at": "2026-02-25T20:02:10.740743Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.hardersen.spectra::1.0", "title": "Hardersen IRTF NIR Asteroid Reflectance Spectra", "description": "This dataset includes average near-infrared (NIR) reflectance spectra for 68 main-belt asteroids that were observed at the NASA Infrared Telescope Facility (IRTF), Mauna Kea, Hawaii, from April 2001 to January 2015. Raw NIR spectral data were obtained under mostly uniform instrumental conditions and include observations of the asteroids, extinction stars, and solar analog stars that were necessary for data reduction and production of the final average asteroid NIR reflectance spectra. SpecPR and Spextool were used during data reduction to produce the final spectra and both programs utilize similar functions that include sky background subtraction, telluric corrections, channel shifting, and averaging routines. The set of asteroids observed include a wide variety of taxonomic types and include V-, S-, M-, X-types that correspond to a wide variety of surface mineralogies, rock types, and potential meteorite analogs.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "2001-04-29", "stop_date": "2015-01-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/bundle_gbo.ast.hardersen.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/bundle_gbo.ast.hardersen.spectra.xml", "scraped_at": "2026-02-25T20:02:10.740747Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra::1.0", "title": "Rivkin Three Micron Asteroid Data", "description": "This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids", "Phobos", "Deimos"], "instruments": ["IRTF 3.2m", "RC2", "NSFCam", "Infrared cold coronagraph (CoCo)"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "1991-12-29", "stop_date": "1999-04-26", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/bundle_gbo.ast.rivkin.3-micron-spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/bundle_gbo.ast.rivkin.3-micron-spectra.xml", "scraped_at": "2026-02-25T20:02:10.740753Z", "keywords": ["3-micron data", "asteroids", "Phobos", "Deimos"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.s3os2.spectra::1.0", "title": "Small Solar System Objects Spectroscopic Survey V1.0", "description": "This dataset contains the visible spectra of 820 asteroids obtained between November 1996 and May 2001 at the 1.52m telescope at ESO (La Silla). The useful spectral range is between about 4900 and 9200 Angstroms. The global spatial distribution of the objects covers the region between 2.2 and 3.3 AU. Some concentrations are apparent, since part of the survey was focused on particularly interesting groups or families of asteroids. The observed asteroids have been classified according to the Tholen and the Bus taxonomies, with a good agreement between both in most of the cases.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["(1) Ceres", "(3) Juno", "(9) Metis", "(12) Victoria", "(21) Lutetia", "(23) Thalia", "(24) Themis", "(25) Phocaea", "(27) Euterpe", "(29) Amphitrite", "(33) Polyhymnia", "(37) Fides", "(43) Ariadne", "(47) Aglaja", "(50) Virginia", "(56) Melete", "(57) Mnemosyne", "(58) Concordia", "(62) Erato", "(65) Cybele", "(68) Leto", "(78) Diana", "(84) Klio", "(85) Io", "(87) Sylvia", "(89) Julia", "(90) Antiope", "(91) Aegina", "(93) Minerva", "(95) Arethusa", "(98) Ianthe", "(104) Klymene", "(105) Artemis", "(106) Dione", "(107) Camilla", "(109) Felicitas", "(112) Iphigenia", "(115) Thyra", "(117) Lomia", "(119) Althaea", "(127) Johanna", "(130) Elektra", "(133) Cyrene", "(140) Siwa", "(141) Lumen", "(145) Adeona", "(148) Gallia", "(154) Bertha", "(156) Xanthippe", "(164) Eva", "(166) Rhodope", "(168) Sibylla", "(169) Zelia", "(170) Maria", "(171) Ophelia", "(173) Ino", "(176) Iduna", "(177) Irma", "(181) Eucharis", "(183) Istria", "(184) Dejopeja", "(191) Kolga", "(194) Prokne", "(199) Byblis", "(205) Martha", "(207) Hedda", "(214) Aschera", "(217) Eudora", "(219) Thusnelda", "(220) Stephania", "(223) Rosa", "(224) Oceana", "(226) Weringia", "(227) Philosophia", "(229) Adelinda", "(233) Asterope", "(241) Germania", "(246) Asporina", "(249) Ilse", "(251) Sophia", "(252) Clementina", "(254) Augusta", "(255) Oppavia", "(258) Tyche", "(259) Aletheia", "(260) Huberta", "(265) Anna", "(266) Aline", "(268) Adorea", "(270) Anahita", "(271) Penthesilea", "(273) Atropos", "(274) Philagoria", "(283) Emma", "(286) Iclea", "(293) Brasilia", "(294) Felicia", "(298) Baptistina", "(303) Josephina", "(307) Nike", "(309) Fraternitas", "(311) Claudia", "(314) Rosalia", "(316) Goberta", "(323) Brucia", "(324) Bamberga", "(329) Svea", "(332) Siri", "(339) Dorothea", "(350) Ornamenta", "(352) Gisela", "(354) Eleonora", "(356) Liguria", "(357) Ninina", "(361) Bononia", "(362) Havnia", "(365) Corduba", "(366) Vincentina", "(372) Palma", "(373) Melusina", "(381) Myrrha", "(386) Siegena", "(388) Charybdis", "(390) Alma", "(391) Ingeborg", "(393) Lampetia", "(394) Arduina", "(397) Vienna", "(400) Ducrosa", "(403) Cyane", "(404) Arsinoe", "(405) Thia", "(407) Arachne", "(412) Elisabetha", "(414) Liriope", "(415) Palatia", "(417) Suevia", "(418) Alemannia", "(419) Aurelia", "(422) Berolina", "(424) Gratia", "(426) Hippo", "(429) Lotis", "(431) Nephele", "(434) Hungaria", "(436) Patricia", "(437) Rhodia", "(439) Ohio", "(445) Edna", "(447) Valentine", "(451) Patientia", "(455) Bruchsalia", "(457) Alleghenia", "(459) Signe", "(461) Saskia", "(465) Alekto", "(468) Lina", "(469) Argentina", "(472) Roma", "(479) Caprera", "(480) Hansa", "(485) Genua", "(487) Venetia", "(488) Kreusa", "(489) Comacina", "(491) Carina", "(493) Griseldis", "(494) Virtus", "(500) Selinur", "(501) Urhixidur", "(502) Sigune", "(504) Cora", "(506) Marion", "(508) Princetonia", "(510) Mabella", "(511) Davida", "(514) Armida", "(517) Edith", "(521) Brixia", "(522) Helga", "(524) Fidelio", "(525) Adelaide", "(526) Jena", "(527) Euryanthe", "(530) Turandot", "(536) Merapi", "(537) Pauly", "(539) Pamina", "(544) Jetta", "(545) Messalina", "(547) Praxedis", "(558) Carmen", "(565) Marbachia", "(567) Eleutheria", "(568) Cheruskia", "(569) Misa", "(573) Recha", "(576) Emanuela", "(579) Sidonia", "(581) Tauntonia", "(589) Croatia", "(595) Polyxena", "(598) Octavia", "(601) Nerthus", "(602) Marianna", "(607) Jenny", "(612) Veronika", "(616) Elly", "(618) Elfriede", "(619) Triberga", "(621) Werdandi", "(625) Xenia", "(626) Notburga", "(628) Christine", "(630) Euphemia", "(635) Vundtia", "(640) Brambilla", "(657) Gunlod", "(660) Crescentia", "(662) Newtonia", "(663) Gerlinde", "(665) Sabine", "(666) Desdemona", "(667) Denise", "(680) Genoveva", "(683) Lanzia", "(685) Hermia", "(690) Wratislavia", "(692) Hippodamia", "(694) Ekard", "(696) Leonora", "(697) Galilea", "(699) Hela", "(702) Alauda", "(704) Interamnia", "(705) Erminia", "(713) Luscinia", "(714) Ulula", "(716) Berkeley", "(717) Wisibada", "(721) Tabora", "(726) Joella", "(727) Nipponia", "(728) Leonisis", "(729) Watsonia", "(732) Tjilaki", "(734) Benda", "(739) Mandeville", "(740) Cantabia", "(746) Marlu", "(747) Winchester", "(752) Sulamitis", "(753) Tiflis", "(756) Lilliana", "(760) Massinga", "(761) Brendelia", "(762) Pulcova", "(764) Gedania", "(768) Struveana", "(772) Tanete", "(775) Lumiere", "(777) Gutemberga", "(778) Theobalda", "(779) Nina", "(780) Armenia", "(788) Hohensteina", "(790) Pretoria", "(791) Ani", "(796) Sarita", "(804) Hispania", "(808) Merxia", "(809) Lundia", "(814) Tauris", "(815) Coppelia", "(816) Juliana", "(817) Annika", "(822) Lalage", "(829) Academia", "(834) Burnhamia", "(838) Seraphina", "(846) Lipperta", "(847) Agnia", "(848) Inna", "(850) Altona", "(857) Glasenappia", "(859) Bouzareah", "(869) Mellena", "(870) Manto", "(874) Rotraut", "(881) Athene", "(882) Swetlana", "(889) Erynia", "(891) Gunhild", "(892) Seeligeria", "(893) Leopoldina", "(894) Erda", "(897) Lysistrata", "(899) Jokaste", "(904) Rockefellia", "(906) Repsolda", "(911) Agamemnon", "(914) Palisana", "(917) Lyka", "(921) Jovita", "(923) Herluga", "(928) Hildrun", "(929) Algunde", "(932) Hooveria", "(936) Kunigunde", "(943) Begonia", "(947) Monterosa", "(949) Hel", "(950) Ahrensa", "(952) Caia", "(953) Painleva", "(954) Li", "(955) Alstede", "(956) Elisa", "(957) Camelia", "(966) Muschi", "(968) Petunia", "(972) Cohnia", "(973) Aralia", "(977) Philippa", "(978) Aidamina", "(979) Ilsewa", "(981) Martina", "(982) Franklina", "(983) Gunila", "(986) Amelia", "(987) Wallia", "(988) Appella", "(989) Schwassmannia", "(1000) Piazzia", "(1003) Lilofee", "(1004) Belopolskya", "(1005) Arago", "(1006) Lagrangea", "(1013) Tombecka", "(1018) Arnolda", "(1021) Flammario", "(1022) Olympiada", "(1023) Thomana", "(1024) Hale", "(1025) Riema", "(1028) Lydina", "(1030) Vitja", "(1031) Arctica", "(1034) Mozarita", "(1035) Amata", "(1036) Ganymed", "(1042) Amazone", "(1050) Meta", "(1051) Merope", "(1056) Azalea", "(1057) Wanda", "(1060) Magnolia", "(1067) Lunaria", "(1075) Helina", "(1077) Campanula", "(1086) Nata", "(1089) Tama", "(1090) Sumida", "(1094) Siberia", "(1095) Tulipa", "(1097) Vicia", "(1099) Figneria", "(1101) Clematis", "(1108) Demeter", "(1109) Tata", "(1114) Lorraine", "(1115) Sabauda", "(1117) Reginita", "(1118) Hanskya", "(1122) Neith", "(1123) Shapleya", "(1127) Mimi", "(1130) Skuld", "(1137) Raissa", "(1139) Atami", "(1146) Biarmia", "(1149) Volga", "(1150) Achaia", "(1154) Astronomia", "(1164) Kobolda", "(1171) Rusthawelia", "(1177) Gonnessia", "(1178) Irmela", "(1180) Rita", "(1194) Aletta", "(1209) Pumma", "(1213) Algeria", "(1215) Boyer", "(1219) Britta", "(1226) Golia", "(1229) Tilia", "(1236) Thais", "(1242) Zambesia", "(1243) Pamela", "(1244) Deira", "(1246) Chaka", "(1252) Celestia", "(1261) Legia", "(1263) Varsavia", "(1266) Tone", "(1274) Delportia", "(1276) Ucclia", "(1280) Baillauda", "(1281) Jeanne", "(1282) Utopia", "(1283) Komsomolia", "(1284) Latvia", "(1294) Antwerpia", "(1301) Yvonne", "(1306) Scythia", "(1312) Vassar", "(1317) Silvretta", "(1318) Nerina", "(1319) Disa", "(1320) Impala", "(1321) Majuba", "(1322) Coppernicus", "(1326) Losaka", "(1328) Devota", "(1329) Eliane", "(1330) Spiridonia", "(1333) Cevenola", "(1335) Demoulina", "(1337) Gerarda", "(1340) Yvette", "(1351) Uzbekistania", "(1355) Magoeba", "(1356) Nyanza", "(1361) Leuschneria", "(1362) Griqua", "(1365) Henyey", "(1367) Nongoma", "(1369) Ostanina", "(1384) Kniertje", "(1392) Pierre", "(1396) Outeniqua", "(1399) Teneriffa", "(1400) Tirela", "(1403) Idelsonia", "(1409) Isko", "(1414) Jerome", "(1425) Tuorla", "(1431) Luanda", "(1432) Ethiopia", "(1436) Salonta", "(1444) Pannonia", "(1449) Virtanen", "(1455) Mitchella", "(1459) Magnya", "(1467) Mashona", "(1469) Linzia", "(1481) Tubingia", "(1487) Boda", "(1499) Pori", "(1506) Xosa", "(1509) Esclangona", "(1530) Rantaseppa", "(1531) Hartmut", "(1535) Paijanne", "(1539) Borrelly", "(1546) Izsak", "(1554) Yugoslavia", "(1556) Wingolfia", "(1568) Aisleen", "(1571) Cesco", "(1573) Vaisala", "(1574) Meyer", "(1575) Winifred", "(1576) Fabiola", "(1579) Herrick", "(1585) Union", "(1591) Baize", "(1600) Vyssotsky", "(1602) Indiana", "(1605) Milankovitch", "(1609) Brenda", "(1615) Bardwell", "(1621) Druzhba", "(1625) The NORC", "(1637) Swings", "(1646) Rosseland", "(1654) Bojeva", "(1656) Suomi", "(1660) Wood", "(1665) Gaby", "(1677) Tycho Brahe", "(1685) Toro", "(1689) Floris-Jan", "(1691) Oort", "(1693) Hertzsprung", "(1694) Kaiser", "(1701) Okavango", "(1728) Goethe Link", "(1731) Smuts", "(1747) Wright", "(1750) Eckert", "(1754) Cunningham", "(1759) Kienle", "(1765) Wrubel", "(1771) Makover", "(1775) Zimmerwald", "(1793) Zoya", "(1796) Riga", "(1798) Watts", "(1806) Derice", "(1816) Liberia", "(1819) Laputa", "(1828) Kashirina", "(1838) Ursa", "(1841) Masaryk", "(1883) Rimito", "(1901) Moravia", "(1904) Massevitch", "(1919) Clemence", "(1936) Lugano", "(1943) Anteros", "(1980) Tezcatlipoca", "(1992) Galvarino", "(1994) Shane", "(1999) Hirayama", "(2001) Einstein", "(2014) Vasilevskis", "(2019) van Albada", "(2031) BAM", "(2050) Francis", "(2060) Chiron", "(2074) Shoemaker", "(2091) Sampo", "(2093) Genichesk", "(2096) Vaino", "(2103) Laverna", "(2104) Toronto", "(2105) Gudy", "(2111) Tselina", "(2112) Ulyanov", "(2121) Sevastopol", "(2150) Nyctimene", "(2151) Hadwiger", "(2157) Ashbrook", "(2204) Lyyli", "(2235) Vittore", "(2263) Shaanxi", "(2266) Tchaikovsky", "(2272) Montezuma", "(2291) Kevo", "(2292) Seili", "(2296) Kugultinov", "(2303) Retsina", "(2332) Kalm", "(2341) Aoluta", "(2349) Kurchenko", "(2374) Vladvysotskij", "(2381) Landi", "(2397) Lappajarvi", "(2407) Haug", "(2448) Sholokhov", "(2463) Sterpin", "(2464) Nordenskiold", "(2478) Tokai", "(2489) Suvorov", "(2490) Bussolini", "(2491) Tvashtri", "(2510) Shandong", "(2519) Annagerman", "(2524) Budovicium", "(2525) O'Steen", "(2548) Leloir", "(2577) Litva", "(2612) Kathryn", "(2634) James Bradley", "(2651) Karen", "(2655) Guangxi", "(2685) Masursky", "(2717) Tellervo", "(2780) Monnig", "(2796) Kron", "(2810) Lev Tolstoj", "(2815) Soma", "(2820) Iisalmi", "(2829) Bobhope", "(2841) Puijo", "(2891) McGetchin", "(2906) Caltech", "(2911) Miahelena", "(2914) Glarnisch", "(2927) Alamosa", "(2938) Hopi", "(2959) Scholl", "(2961) Katsurahama", "(2962) Otto", "(2965) Surikov", "(2975) Spahr", "(2988) Korhonen", "(2991) Bilbo", "(2993) Wendy", "(3015) Candy", "(3022) Dobermann", "(3023) Heard", "(3033) Holbaek", "(3036) Krat", "(3043) San Diego", "(3063) Makhaon", "(3066) McFadden", "(3067) Akhmatova", "(3073) Kursk", "(3101) Goldberger", "(3104) Durer", "(3105) Stumpff", "(3106) Morabito", "(3116) Goodricke", "(3128) Obruchev", "(3139) Shantou", "(3141) Buchar", "(3152) Jones", "(3162) Nostalgia", "(3169) Ostro", "(3181) Ahnert", "(3182) Shimanto", "(3197) Weissman", "(3198) Wallonia", "(3204) Lindgren", "(3225) Hoag", "(3242) Bakhchisaraj", "(3246) Bidstrup", "(3259) Brownlee", "(3267) Glo", "(3274) Maillen", "(3296) Bosque Alegre", "(3300) McGlasson", "(3308) Ferreri", "(3309) Brorfelde", "(3328) Interposita", "(3330) Gantrisch", "(3333) Schaber", "(3341) Hartmann", "(3343) Nedzel", "(3352) McAuliffe", "(3388) Tsanghinchi", "(3400) Aotearoa", "(3445) Pinson", "(3447) Burckhalter", "(3478) Fanale", "(3483) Svetlov", "(3492) Petra-Pepi", "(3507) Vilas", "(3533) Toyota", "(3573) Holmberg", "(3600) Archimedes", "(3615) Safronov", "(3635) Kreutz", "(3663) Tisserand", "(3682) Welther", "(3702) Trubetskaya", "(3709) Polypoites", "(3728) IRAS", "(3753) Cruithne", "(3767) DiMaggio", "(3786) Yamada", "(3787) Aivazovskij", "(3789) Zhongguo", "(3793) Leonteus", "(3816) Chugainov", "(3829) Gunma", "(3832) Shapiro", "(3873) Roddy", "(3875) Staehle", "(3880) Kaiserman", "(3888) Hoyt", "(3894) Williamcooke", "(3906) Chao", "(3913) Chemin", "(3915) Fukushima", "(3925) Tret'yakov", "(3939) Huruhata", "(3940) Larion", "(3990) Heimdal", "(3995) Sakaino", "(4055) Magellan", "(4056) Timwarner", "(4060) Deiplyos", "(4063) Euforbo", "(4068) Menestheus", "(4083) Jody", "(4100) Sumiko", "(4103) Chahine", "(4112) Hrabal", "(4116) Elachi", "(4121) Carlin", "(4125) Lew Allen", "(4127) Kyogoku", "(4132) Bartok", "(4143) Huziak", "(4175) Billbaum", "(4191) Assesse", "(4201) Orosz", "(4220) Flood", "(4276) Clifford", "(4278) Harvey", "(4299) WIYN", "(4340) Dence", "(4375) Kiyomori", "(4422) Jarre", "(4448) Phildavis", "(4457) van Gogh", "(4460) Bihoro", "(4483) Petofi", "(4484) Sif", "(4489) Dracius", "(4490) Bambery", "(4497) Taguchi", "(4502) Elizabethann", "(4511) Rembrandt", "(4520) Dovzhenko", "(4522) Britastra", "(4533) Orth", "(4556) Gumilyov", "(4558) Janesick", "(4580) Child", "(4601) Ludkewycz", "(4613) Mamoru", "(4617) Zadunaisky", "(4621) Tambov", "(4666) Dietz", "(4695) Mediolanum", "(4706) Dennisreuter", "(4713) Steel", "(4725) Milone", "(4730) Xingmingzhou", "(4759) Aretta", "(4764) Joneberhart", "(4770) Lane", "(4778) Fuss", "(4820) Fay", "(4826) Wilhelms", "(4833) Meges", "(4835) Asaeus", "(4843) Megantic", "(4856) Seaborg", "(4880) Tovstonogov", "(4889) Praetorius", "(4902) Thessandrus", "(4914) Pardina", "(4931) Tomsk", "(4950) House", "(4954) Eric", "(4955) Gold", "(4957) Brucemurray", "(5016) Migirenko", "(5045) Hoyin", "(5057) Weeks", "(5090) Wyeth", "(5122) Mucha", "(5147) Maruyama", "(5215) Tsurui", "(5216) Cannizzo", "(5230) Asahina", "(5264) Telephus", "(5301) Novobranets", "(5343) Ryzhov", "(5362) Johnyoung", "(5461) Autumn", "(5481) Kiuchi", "(5559) Beategordon", "(5592) Oshima", "(5600) 1991 UY", "(5639) Cuk", "(5648) Axius", "(5651) Traversa", "(5751) Zao", "(5818) 1989 RC1", "(5832) Martaprincipe", "(5870) Baltimore", "(5914) Kathywhaler", "(5959) Shaklan", "(6051) Anaximenes", "(6057) Robbia", "(6084) Bascom", "(6139) Naomi", "(6193) Manabe", "(6297) 1988 VZ1", "(6307) Maiztegui", "(6310) Jankonke", "(6384) Kervin", "(6394) 1990 QM2", "(6447) Terrycole", "(6461) Adam", "(6493) Cathybennett", "(6560) Pravdo", "(6916) Lewispearce", "(6974) Solti", "(7002) Bronshten", "(7052) Octaviabutler", "(7353) Kazuya", "(7480) Norwan", "(7482) 1994 PC1", "(7496) Miroslavholub", "(7516) Kranjc", "(7638) Gladman", "(7868) Barker", "(7898) Ohkuma", "(8106) Carpino", "(8518) 1992 DM6", "(8795) Dudorov", "(8906) Yano", "(9219) 1995 WO8", "(10007) Malytheatre", "(10094) Eijikato", "(10261) Nikdollezhal'", "(11079) Mitsunori", "(11548) Jerrylewis", "(12447) Yatescup", "(13111) Papacosmas", "(14465) 1993 NB", "(26879) Haines", "(43754) 1983 AA"], "instruments": ["1.52-m spectrographic Cassegrain/Coude reflector", "ESO Boller and Chivens Spectrograph"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": [], "start_date": "1996-11-17", "stop_date": "2001-10-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/bundle_gbo.ast.s3os2.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/bundle_gbo.ast.s3os2.spectra.xml", "scraped_at": "2026-02-25T20:02:10.740796Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteorites.friability::1.0", "title": "Friability of Meteorites V1.0", "description": "This bundle contains the complete experimental dataset and visual documentation from the friability analysis of seven meteorites: Richardton (H5), Tamdakht (H5), Zhob (H3/4), New Concord (L6), Allende (CV3), Murchison (CM2), and Aguas Zarcas (CM2). The dataset records the mass retained in each sieve bin after successive tumbling stages of 10, 100, 1,000, 10,000, and 100,000 revolutions, performed using the PTF-100 friability tester. All measurements were conducted according to the USP 1216 friability standard, using a 28.7 cm diameter drum that rotated at 25 rpm. Corresponding sieve sizes are 2000, 841, 400, 250, 177, 125, 63, 37, and 0.1. The data quantify the progressive mechanical disaggregation and redistribution of fragment sizes across increasing revolution counts, providing a quantitative basis for modeling the friability of meteorites. Seven chondritic meteorites representing diverse lithologies. The archive enables reproduction of all plots and calculations related to the evolution of friability as a bounded, multiplicative process, and provides a benchmark for linking laboratory comminution to asteroid surface processes.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["Aguas Zarcas", "New Concord", "Murchison", "Zhob", "Richardton", "Tamdakht", "Allende"], "instruments": ["PTF 100 Friability Tester"], "instrument_hosts": ["EM3 Lab"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/bundle_gbo.meteorites.friability.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/bundle_gbo.meteorites.friability.xml", "scraped_at": "2026-02-25T20:02:10.740807Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.pluto.benecchi-etal.occultation::1.0", "title": "Occultation of star P445.3 by Pluto", "description": "The dataset includes simultaneous imaging obtained at the MMT in the infrared (H-band, 1.65 micron) and visible (unfiltered, approximately 0.24-1.24 micron) of Pluto occulting the star P445.3 (2UCAC 25823784 = Gaia DR2 4144912550502784384) on 2007 March 18. The measurements included in the dataset were obtained continuously from 10:10:00 to 11:30:00 UTC. The midpoint of the occultation, at the MMT, was 10:53:49+/-00:01. The event was grazing and gives information about the atmosphere of Pluto to a depth of 1348 km above the surface. Images from the other observing sites for this event are not contained within this dataset, however lightcurve tables are included.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["(134340) Pluto", "(134340) Pluto"], "instruments": ["6.5-m Single Mirror (MMT)", "POETS: Portable Occultation, Eclipse, and Transit System", "USNO 1.55m", "POETS: Portable Occultation, Eclipse, and Transit System", "8.4/8.4-m Large Binocular Telescope (LBT)", "LBC Guide Camera", "MRO 2.4m", "POETS: Portable Occultation, Eclipse, and Transit System", "FPO 0.32m", "SBIG ST-10XME", "6.5-m Single Mirror (MMT)", "PISCES"], "instrument_hosts": ["MMT Observatory", "US Naval Observatory", "Large Binocular Telescope Observatory", "Magdelena Ridge Observatory", "Fremont Peak Observatory", "MMT Observatory"], "data_types": [], "start_date": "2007-03-18", "stop_date": "2007-03-18", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/bundle_gbo.pluto.benecchi-etal.occultation.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/bundle_gbo.pluto.benecchi-etal.occultation.xml", "scraped_at": "2026-02-25T20:02:10.740813Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.grs::1.0", "title": "NEAR Gamma-Ray Spectrometer (GRS) Data Bundle", "description": "The NEAR Gamma-Ray Spectrometer (GRS) is part of the X-Ray/Gamma-Ray Spectrometer (XGRS) instrument package on the NEAR spacecraft. This bundle contains all of the raw and calibrated GRS instrument data from the NEAR mission, plus derived results.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "Earth", "SOLAR_SYSTEM"], "instruments": ["GAMMA RAY SPECTROMETER"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": [], "start_date": "1997-08-27", "stop_date": "2001-02-28", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/bundle_near.grs.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/bundle_near.grs.xml", "scraped_at": "2026-02-25T20:02:10.740817Z", "keywords": [], "processing_level": "Raw | Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.nlr::1.0", "title": "NEAR Laser Rangefinder (NLR) Instrument Bundle V1.0", "description": "The NEAR NLR Laser Rangefinder (NLR) is an instrument on the NEAR spacecraft. This bundle contains all of the raw NLR instrument data, plus derived results.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "SPACE"], "instruments": ["NEAR LASER RANGEFINDER for NEAR"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": [], "start_date": "1996-04-25", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/bundle_near.nlr.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/bundle_near.nlr.xml", "scraped_at": "2026-02-25T20:02:10.740821Z", "keywords": [], "processing_level": "Calibrated | Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:neowise_diameters_albedos::2.0", "title": "NEOWISE Diameters and Albedos V2.0", "description": "This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["NEOWISE"], "targets": ["Multiple Asteroids", "SATELLITE", "COMET"], "instruments": ["WISE Camera"], "instrument_hosts": ["Wide-Field Infrared Survey Explorer"], "data_types": [], "start_date": "2010-01-07", "stop_date": "2016-12-13", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/bundle_neowise_diameters_albedos.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/bundle_neowise_diameters_albedos.xml", "scraped_at": "2026-02-25T20:02:10.740825Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ast-bennu.simulated-shape-models::1.0", "title": "OSIRIS-REx Simulated Test Models V1.0", "description": "This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"], "targets": ["(101955) Bennu"], "instruments": ["Simulation", "Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": ["OSIRIS-REx"], "data_types": [], "start_date": "2016-02-03", "stop_date": "2016-10-21", "browse_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/bundle_orex.ast-bennu.simulated-shape-models.xml", "source_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/bundle_orex.ast-bennu.simulated-shape-models.xml", "scraped_at": "2026-02-25T20:02:10.740829Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.grs::2.0", "title": "The Psyche Gamma Ray Spectrometer Bundle", "description": "The Psyche Gamma Ray Spectrometer (GRS) Raw and Calibrated Bundle contains the raw and calibrated data products generated from the GRS instrument on the Psyche spacecraft. The bundle includes the documentation that describes the data products for each data collection.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Psyche Mission"], "targets": ["Solar System"], "instruments": ["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"], "instrument_hosts": ["The Psyche Spacecraft"], "data_types": [], "start_date": "2023-11-06", "stop_date": "2025-06-30", "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/bundle_psyche_grs.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/bundle_psyche_grs.xml", "scraped_at": "2026-02-25T20:02:10.740856Z", "keywords": ["Psyche", "Gamma Ray Spectrometer", "GRS"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps::2.0", "title": "Ceres SPC Shape and Regional Models V2.0", "description": "This bundle contains topography and albedo generated for 9 polar craters on asteroid Ceres. Utilizing secondary illumination allows heights to be determined inside Permanently Shadowed Regions (PSRs). A global model is provided for context.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["The Dawn Mission To Vesta And Ceres"], "targets": ["1 Ceres"], "instruments": ["Framing Camera 2 (FC2) for Dawn", "Framing Camera 1 (FC1) for Dawn"], "instrument_hosts": ["The Dawn Spacecraft", "The Dawn Spacecraft"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/bundle_dwarf_planet-ceres.dawn.shape-models-maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/bundle_dwarf_planet-ceres.dawn.shape-models-maps.xml", "scraped_at": "2026-02-25T20:02:10.740861Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.mission::1.0", "title": "The Psyche Mission Bundle", "description": "The Psyche Mission Bundle", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Psyche Mission"], "targets": ["16 Psyche"], "instruments": ["The Psyche Imager (PMI) aboard the Psyche spacecraft", "The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft", "The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft", "The Psyche Magnetometer (MAG) aboard the Psyche spacecraft", "Psyche Radio Science Subsystem (RSS)"], "instrument_hosts": ["The Psyche Spacecraft"], "data_types": [], "start_date": "2020-07-31", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/bundle_psyche_mission.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/bundle_psyche_mission.xml", "scraped_at": "2026-02-25T20:02:10.740866Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.ns::2.0", "title": "The Psyche Neutron Spectrometer Bundle", "description": "The Psyche Neutron Spectrometer (NS) Raw and Calibrated Bundle contains the raw and calibrated data products generated from the NS instrument on the Psyche spacecraft. The bundle includes the documentation that describes the data products for each data collection.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Psyche Mission"], "targets": ["Solar System"], "instruments": ["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"], "instrument_hosts": ["The Psyche Spacecraft"], "data_types": [], "start_date": "2023-12-11", "stop_date": "2025-06-30", "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/bundle_psyche_ns.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/bundle_psyche_ns.xml", "scraped_at": "2026-02-25T20:02:10.740871Z", "keywords": ["Psyche", "Neutron Spectrotometer", "NS"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-dione.cassini.shape-models-maps::1.0", "title": "Dione SPC Shape Models and Assessment Products V1.0", "description": "This bundle contains global and regional topography of Saturn\u2019s moon Dione, as well as photometric data for each of the regional models. Data products were generated using the Gaskell Stereophotoclinometry (SPC) software suite with images from the Cassini mission to Saturn. The global model is an update to the archived \"Gaskell Dione Shape Model\", and is generated with more images. In addition to the topographic models, we also provide assessment data to understand the uncertainty of the models.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["Dione"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/bundle_satellite-dione.cassini.shape-models-maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/bundle_satellite-dione.cassini.shape-models-maps.xml", "scraped_at": "2026-02-25T20:02:10.740875Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-mimas.cassini.shape-models-maps::1.0", "title": "Mimas SPC Shape Model and Assessment Products V1.0", "description": "This bundle contains a shape model for the Saturnian moon Mimas, along with quality assessment data. The global model is an update to the archived \"Gaskell Mimas Shape Model\", and is generated with more images and has higher resolution topography in some locations. The data is provided in multiple formats.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["Mimas"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/bundle_satellite-mimas.cassini.shape-models-maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/bundle_satellite-mimas.cassini.shape-models-maps.xml", "scraped_at": "2026-02-25T20:02:10.740880Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-rhea.cassini.shape-models-maps::1.0", "title": "Rhea SPC Shape Model and Assessment Products V1.0", "description": "This bundle contains the first shape model for the Saturnian moon Rhea submitted to the PDS, along with quality assessment data. The data is provided in multiple formats.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["Rhea"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/bundle_satellite-rhea.cassini.shape-models-maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/bundle_satellite-rhea.cassini.shape-models-maps.xml", "scraped_at": "2026-02-25T20:02:10.740883Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-tethys.cassini.shape-models-maps::1.0", "title": "Tethys SPC Shape Models and Assessment Products V1.0", "description": "This bundle contains global and regional topography of Saturn\u2019s moon Tethys, as well as photometric data for each of the regional models. Data products were generated using the Gaskell Stereophotoclinometry (SPC) software suite with images from the Cassini mission to Saturn. The global model is an update to the archived \"Gaskell Tethys Shape Model\", and is generated with more images and has higher resolution topography in some locations. In addition to the topographic models, we also provide assessment data to understand the uncertainty of the models.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-Huygens"], "targets": ["Tethys"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/bundle_satellite-tethys.cassini.shape-models-maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/bundle_satellite-tethys.cassini.shape-models-maps.xml", "scraped_at": "2026-02-25T20:02:10.740887Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:small_bodies.stooke.maps::1.0", "title": "Stooke small bodies maps", "description": "This bundle contains maps of small solar system bodies which have been prepared by Philip Stooke of the University of Western Ontario. It includes 270 map sheets of six asteroids, five planetary satellites, and three comets, all prepared from spacecraft images.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Galileo", "Near Earth Asteroid Rendezvous Mission", "International Rosetta Mission", "Hayabusa Mission", "Viking Project", "Mars Global Surveyor", "Mars Express", "Mars Reconnaissance Orbiter", "The Mariner Mars '71 (Mariner 9) Mission", "Voyager"], "targets": ["103P/Hartley 2", "19P/Borrelly", "243 Ida", "25143 Itokawa", "253 Mathilde", "2867 Steins", "433 Eros", "81P/Wild 2", "951 Gaspra", "Amalthea", "Phobos", "Deimos", "Epimetheus", "Hyperion"], "instruments": ["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker", "Solid State Imaging System for GO", "The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter", "The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter", "The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa", "Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A", "Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B", "Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A", "Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B", "Mars Global Surveyor Spacecraft Mars Orbiter Camera", "Mars Express Orbiter High Resolution Stereo Camera", "Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment", "Imaging Science Subsystem for MR9", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"], "instrument_hosts": ["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft", "GALILEO ORBITER", "The Rosetta Orbiter Spacecraft", "The Hayabusa Spacecraft", "The Viking Orbiter 1 Spacecraft", "The Viking Orbiter 2 Spacecraft", "The Mars Global Surveyor Spacecraft", "Mars Express", "Mars Reconnaissance Orbiter", "The Mariner 9 Spacecraft", "VOYAGER 1", "VOYAGER 2"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/bundle_small_bodies.stooke.maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/bundle_small_bodies.stooke.maps.xml", "scraped_at": "2026-02-25T20:02:10.740899Z", "keywords": ["jpg maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:small_bodies.stooke.shape-models::1.0", "title": "Stooke small bodies shape models", "description": "This data set contains Philip Stooke shape models for 243 Ida, 253 Mathilde, 951 Gaspra, comet Halley, J5 Amalthea, J14 Thebe, N7 Larissa, N8 Proteus, S10 Janus, S11 Epimetheus, S16 Prometheus, and S17 Pandora, based on optical data from the NEAR, Galileo, Giotto, Vega 1, Vega 2, and Voyager missions.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["243 Ida", "253 Mathilde", "951 Gaspra", "Pandora", "Amalthea", "Thebe", "Larissa", "Proteus", "Janus", "Epimetheus", "Prometheus", "1P/Halley"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "The Halley Multicolor Camera (HMC) for Giotto", "The Television System (TVS) for Vega 1", "The Television System (TVS) for Vega 2", "Solid State Imaging System for GO", "The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"], "instrument_hosts": ["VOYAGER 1", "VOYAGER 2", "The Giotto Spacecraft", "The Vega 1 Spacecraft", "The Vega 2 Spacecraft", "GALILEO ORBITER", "The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/bundle_small_bodies.stooke.shape-models.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/bundle_small_bodies.stooke.shape-models.xml", "scraped_at": "2026-02-25T20:02:10.740909Z", "keywords": ["shape models"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ulysses-udds::1.0", "title": "Ulysses Dust Detection System Instrument Bundle", "description": "This bundle contains the data from the Ulysses dust detector system (UDDS) from start of mission through the end of mission, 1990-2007. (As the dust detector was turned off after Nov. 30, 2007, this is the last date for which UDDS data is recorded.) Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["ULYSSES"], "targets": ["Calibration Target", "Dust"], "instruments": ["ULYSSES DUST DETECTION SYSTEM"], "instrument_hosts": ["ULYSSES"], "data_types": [], "start_date": "1990-01-01", "stop_date": "2007-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/bundle_ulysses.udds.xml", "source_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/bundle_ulysses.udds.xml", "scraped_at": "2026-02-25T20:02:10.740913Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.tagcams::13.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) Bundle", "description": "This bundle collects all the operational data products produced by the OSIRIS-REx Touch-and_Go Camera Suite (TAGCAMS). TAGCAMS is a suite of engineering cameras used for optical navigation (navcam), natural feature tracking (nftcam), and documenting sample stowage (stowcam).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/bundle_tagcams.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/bundle_tagcams.xml", "scraped_at": "2026-02-25T20:02:10.740916Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msx.mimps::1.0", "title": "Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Bundle", "description": "Infrared observations of asteroids serendipitously observed by the Midcourse Space Experiment", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["The Midcourse Space Experiment"], "targets": ["Multiple Asteroids"], "instruments": ["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"], "instrument_hosts": ["The Midcourse Space Experiment (MSX) Spacecraft"], "data_types": [], "start_date": "1996-04-01", "stop_date": "1997-02-28", "browse_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/bundle.msx.mimps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/bundle.msx.mimps.xml", "scraped_at": "2026-02-25T20:02:10.740920Z", "keywords": [], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msx.zody.dust::1.0", "title": "Midcourse Space Experiment (MSX) Zodiacal Dust Data Bundle", "description": "The Midcourse Space Experiment (MSX) mid-infrared emission measurements from the zodiacal dust cloud in spectral bands centered at 8.3 12, 15, and 21 microns.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["The Midcourse Space Experiment"], "targets": ["Multiple Asteroids"], "instruments": ["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"], "instrument_hosts": ["The Midcourse Space Experiment (MSX) Spacecraft"], "data_types": [], "start_date": "1986-05-28", "stop_date": "1997-02-04", "browse_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/bundle.msx.zody.dust.xml", "source_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/bundle.msx.zody.dust.xml", "scraped_at": "2026-02-25T20:02:10.740924Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-ceres::1.0", "title": "Dawn Ceres Gravity Science Derived Data Bundle", "description": "This bundle contains derived gravity data for the Dawn Radio Science Gravity Field Determination experiments during the Ceres encounter, including spherical harmonics and gravity maps.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["1 Ceres"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": [], "start_date": "2015-02-02", "stop_date": "2018-10-31", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/bundle-dawn-rss-der-ceres.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/bundle-dawn-rss-der-ceres.xml", "scraped_at": "2026-02-25T20:02:10.740927Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-vesta::1.0", "title": "Dawn Vesta Gravity Science Derived Data Bundle", "description": "This bundle contains derived gravity data for the Dawn Radio Science Gravity Field Determination experiments during the Vesta encounter, including spherical harmonics and gravity maps.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["4 Vesta"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": [], "start_date": "2011-07-13", "stop_date": "2012-07-25", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/bundle-dawn-rss-der-vesta.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/bundle-dawn-rss-der-vesta.xml", "scraped_at": "2026-02-25T20:02:10.740930Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.thermal::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Derived Thermal Data Products Bundle", "description": "This bundle collects the derived thermal data products produced by the OSIRIS-REx Thermal Working Group (TAWG). Derived prodcuts include (101955) Bennu global and sample site specific thermal inertia maps, and global predicted temperature maps.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES", "OVIRS", "OCAMS", "OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/bundle_thermal.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/bundle_thermal.xml", "scraped_at": "2026-02-25T20:02:10.740934Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.radioscience::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Radio Science Bundle", "description": "This bundle collects mission specific Tracking and Navigation Files (TNF), Ionospheric Data Files (ION), and Small Forces Files (SFF) acquired by the Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx) spacecraft and the Deep Space Network (DSN) on Earth. Derived Radio science products such as gravity, spherical harmonic coefficients, and final ephemeris data are also collected.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OSIRIS-REx Radio Science (Telecom) Subsystem", "OSIRIS-REx Propulsion Subsystem", "NASA Deep Space Network Radio Science"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/bundle_orex_radioscience.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/bundle_orex_radioscience.xml", "scraped_at": "2026-02-25T20:02:10.740939Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.apc.lightcurves::1.0", "title": "Asteroid Photometric Catalog V1.0", "description": "The Asteroid Photometric Catalog (3rd update), Lagerkvist et al. 1993 [LAGERKVISTETAL1993], is a compilation of all asteroid lightcurve photometry published up to and including the year 1992. The dataset includes the lightcurves in digital form and a table of references to all original publications.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(1) Ceres", "Multiple Asteroids", "(4) Vesta", "(10) Hygiea", "(100) Hekate", "(101) Helena", "(1012) Sarema", "(1013) Tombecka", "(1018) Arnolda", "(102) Miriam", "(1029) La Plata", "(103) Hera", "(1036) Ganymed", "(104) Klymene", "(105) Artemis", "(1057) Wanda", "(1058) Grubba", "(106) Dione", "(1062) Ljuba", "(1063) Aquilegia", "(1067) Lunaria", "(1068) Nofretete", "(107) Camilla", "(1076) Viola", "(1079) Mimosa", "(1084) Tamariwa", "(109) Felicitas", "(1090) Sumida", "(1092) Lilium", "(1095) Tulipa", "(11) Parthenope", "(110) Lydia", "(111) Ate", "(1111) Reinmuthia", "(1112) Polonia", "(1129) Neujmina", "(113) Amalthea", "(1137) Raissa", "(1139) Atami", "(114) Kassandra", "(1143) Odysseus", "(1149) Volga", "(115) Thyra", "(1159) Granada", "(116) Sirona", "(1167) Dubiago", "(1168) Brandia", "(1173) Anchises", "(1178) Irmela", "(118) Peitho", "(1180) Rita", "(1186) Turnera", "(11868) Kleinrichert", "(119) Althaea", "(1192) Prisma", "(1196) Sheba", "(1197) Rhodesia", "(12) Victoria", "(120) Lachesis", "(1207) Ostenia", "(121) Hermione", "(1210) Morosovia", "(1212) Francette", "(1219) Britta", "(1220) Crocus", "(1223) Neckar", "(1224) Fantasia", "(123) Brunhild", "(1234) Elyna", "(1236) Thais", "(1237) Genevieve", "(124) Alkeste", "(1240) Centenaria", "(1245) Calvinia", "(125) Liberatrix", "(1250) Galanthus", "(1256) Normannia", "(1257) Mora", "(1259) Ogyalla", "(126) Velleda", "(1262) Sniadeckia", "(1267) Geertruida", "(1279) Uganda", "(128) Nemesis", "(1284) Latvia", "(1288) Santa", "(1289) Kutaissi", "(129) Antigone", "(1291) Phryne", "(13) Egeria", "(130) Elektra", "(13014) Hasslacher", "(1305) Pongola", "(1317) Silvretta", "(132) Aethra", "(1321) Majuba", "(1322) Coppernicus", "(133) Cyrene", "(1331) Solvejg", "(1337) Gerarda", "(134) Sophrosyne", "(1346) Gotha", "(135) Hertha", "(1350) Rosselia", "(136) Austria", "(1362) Griqua", "(1366) Piccolo", "(1368) Numidia", "(137) Meliboea", "(1379) Lomonosowa", "(138) Tolosa", "(1389) Onnie", "(139) Juewa", "(1392) Pierre", "(1397) Umtata", "(14) Irene", "(140) Siwa", "(1404) Ajax", "(141) Lumen", "(1416) Renauxa", "(143) Adria", "(1434) Margot", "(1437) Diomedes", "(144) Vibilia", "(145) Adeona", "(146) Lucina", "(1468) Zomba", "(147) Protogeneia", "(1478) Vihuri", "(148) Gallia", "(1481) Tubingia", "(1482) Sebastiana", "(14827) Hypnos", "(149) Medusa", "(15) Eunomia", "(150) Nuwa", "(1504) Lappeenranta", "(151) Abundantia", "(1513) Matra", "(152) Atala", "(1522) Kokkola", "(1523) Pieksmaki", "(153) Hilda", "(1533) Saimaa", "(154) Bertha", "(1556) Wingolfia", "(156) Xanthippe", "(1562) Gondolatsch", "(1566) Icarus", "(1576) Fabiola", "(158) Koronis", "(1580) Betulia", "(1583) Antilochus", "(1584) Fuji", "(1585) Union", "(159) Aemilia", "(1590) Tsiolkovskaja", "(1593) Fagnes", "(16) Psyche", "(1604) Tombaugh", "(1609) Brenda", "(161) Athor", "(1615) Bardwell", "(161989) Cacus", "(162) Laurentia", "(1620) Geographos", "(1627) Ivar", "(1628) Strobel", "(163) Erigone", "(164) Eva", "(1641) Tana", "(1644) Rafita", "(1646) Rosseland", "(165) Loreley", "(1665) Gaby", "(167) Urda", "(1670) Minnaert", "(1672) Gezelle", "(1674) Groeneveld", "(1685) Toro", "(1687) Glarona", "(1689) Floris-Jan", "(169) Zelia", "(1693) Hertzsprung", "(17) Thetis", "(1709) Ukraina", "(171) Ophelia", "(1715) Salli", "(172) Baucis", "(1722) Goffin", "(1723) Klemola", "(1727) Mette", "(173) Ino", "(174) Phaedra", "(1742) Schaifers", "(1743) Schmidt", "(1753) Mieke", "(1757) Porvoo", "(1759) Kienle", "(1772) Gagarin", "(178) Belisana", "(1780) Kippes", "(1789) Dobrovolsky", "(179) Klytaemnestra", "(1793) Zoya", "(18) Melpomene", "(181) Eucharis", "(182) Elsa", "(183) Istria", "(184) Dejopeja", "(185) Eunike", "(186) Celuta", "(1862) Apollo", "(1863) Antinous", "(1864) Daedalus", "(1865) Cerberus", "(189) Phthia", "(1892) Lucienne", "(19) Fortuna", "(190) Ismene", "(1902) Shaposhnikov", "(1915) Quetzalcoatl", "(1917) Cuyo", "(192) Nausikaa", "(1928) Summa", "(194) Prokne", "(1941) Wild", "(1943) Anteros", "(1946) Walraven", "(1951) Lick", "(1957) Angara", "(196) Philomela", "(1960) Guisan", "(197) Arete", "(1972) Yi Xing", "(2) Pallas", "(20) Massalia", "(200) Dynamene", "(201) Penelope", "(2017) Wesson", "(203) Pompeja", "(204) Kallisto", "(206) Hersilia", "95P/1977 UB (Chiron) [(2060) Chiron]", "(2061) Anza", "(2064) Thomsen", "(2072) Kosmodemyanskaya", "(208) Lacrimosa", "(2088) Sahlia", "(209) Dido", "(21) Lutetia", "(2100) Ra-Shalom", "(2109) Dhotel", "(211) Isolda", "(2113) Ehrdni", "(213) Lilaea", "(214) Aschera", "(2156) Kate", "(2159) Kukkamaki", "(216) Kleopatra", "(2167) Erin", "(218) Bianca", "(219) Thusnelda", "(22) Kalliope", "(2201) Oljato", "(221) Eos", "(222) Lucia", "(224) Oceana", "(225) Henrietta", "(226) Weringia", "(23) Thalia", "(230) Athamantis", "(2317) Galya", "(233) Asterope", "(2339) Anacreon", "(234) Barbara", "(235) Carolina", "(236) Honoria", "(2363) Cebriones", "(238) Hypatia", "(24) Themis", "(241) Germania", "(243) Ida", "(245) Vera", "(246) Asporina", "(247) Eukrate", "(248) Lameia", "(249) Ilse", "(25) Phocaea", "(250) Bettina", "(254) Augusta", "(255) Oppavia", "(258) Tyche", "(259) Aletheia", "(26) Proserpina", "(2608) Seneca", "(261) Prymno", "(263) Dresda", "(264) Libussa", "(267) Tirza", "(2674) Pandarus", "(268) Adorea", "(2687) Tortali", "(269) Justitia", "(27) Euterpe", "(270) Anahita", "(273) Atropos", "(2744) Birgitta", "(277) Elvira", "(279) Thule", "(2797) Teucer", "(28) Bellona", "(280) Philia", "(281) Lucretia", "(282) Clorinde", "(283) Emma", "(2830) Greenwich", "(284) Amalia", "(287) Nephthys", "(288) Glauke", "(289) Nenetta", "(2895) Memnon", "(29) Amphitrite", "(291) Alice", "(292) Ludovica", "(2952) Lilliputia", "(3) Juno", "(30) Urania", "(302) Clarissa", "(304) Olga", "(306) Unitas", "(3063) Makhaon", "(308) Polyxo", "(31) Euphrosyne", "(3102) Krok", "(3103) Eger", "(311) Claudia", "Chaldaea", "(3169) Ostro", "(317) Roxane", "(3199) Nefertiti", "(32) Pomona", "(321) Florentina", "(322) Phaeo", "(323) Brucia", "(324) Bamberga", "(325) Heidelberga", "(3254) Bus", "(326) Tamara", "(3268) De Sanctis", "(329) Svea", "(33) Polyhymnia", "(3317) Paris", "(332) Siri", "(334) Chicago", "(335) Roberta", "(336) Lacadiera", "(3361) Orpheus", "(337) Devosa", "(338) Budrosa", "(34) Circe", "(340) Eduarda", "(343) Ostara", "(344) Desiderata", "(345) Tercidina", "(346) Hermentaria", "(347) Pariana", "(349) Dembowska", "(35) Leukothea", "(352) Gisela", "(3536) Schleicher", "(354) Eleonora", "(3540) Protesilaos", "(3551) Verenia", "(3552) Don Quixote", "(356) Liguria", "(357) Ninina", "(359) Georgia", "(36) Atalante", "(360) Carlova", "(361) Bononia", "(362) Havnia", "(363) Padua", "(364) Isara", "(3651) Friedman", "(3671) Dionysus", "(3686) Antoku", "(369) Aeria", "(37) Fides", "(372) Palma", "(3737) Beckman", "(375) Ursula", "(376) Geometria", "(377) Campania", "(379) Huenna", "(38) Leda", "(381) Myrrha", "(382) Dodona", "(383) Janina", "(385) Ilmatar", "(386) Siegena", "(387) Aquitania", "(388) Charybdis", "(389) Industria", "(39) Laetitia", "(3908) Nyx", "(393) Lampetia", "(394) Arduina", "(396) Aeolia", "(397) Vienna", "(40) Harmonia", "107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]", "(404) Arsinoe", "(405) Thia", "(407) Arachne", "(409) Aspasia", "(41) Daphne", "(410) Chloris", "(412) Elisabetha", "(416) Vaticana", "(417) Suevia", "(418) Alemannia", "(419) Aurelia", "(42) Isis", "(420) Bertholda", "(422) Berolina", "(423) Diotima", "(429) Lotis", "(43) Ariadne", "(431) Nephele", "(432) Pythia", "(433) Eros", "(434) Hungaria", "(435) Ella", "(437) Rhodia", "(439) Ohio", "(44) Nysa", "(441) Bathilde", "(4432) McGraw-Hill", "(444) Gyptis", "(449) Hamburga", "(45) Eugenia", "(451) Patientia", "(454) Mathesis", "(458) Hercynia", "(459) Signe", "(46) Hestia", "(462) Eriphyla", "(464) Megaira", "(4659) Roddenberry", "(468) Lina", "(47) Aglaja", "(470) Kilia", "(471) Papagena", "(476) Hedwig", "(478) Tergeste", "(48) Doris", "(482) Petrina", "(483) Seppina", "(484) Pittsburghia", "(485) Genua", "(487) Venetia", "(488) Kreusa", "(489) Comacina", "(49) Pales", "(4924) Hiltner", "(495) Eulalia", "(497) Iva", "(498) Tokio", "(5) Astraea", "(50) Virginia", "(501) Urhixidur", "(502) Sigune", "(504) Cora", "(505) Cava", "(5080) Oja", "(51) Nemausa", "(510) Mabella", "(511) Davida", "(512) Taurinensis", "(513) Centesima", "(514) Armida", "(5145) Pholus", "(516) Amherstia", "(517) Edith", "(519) Sylvania", "(52) Europa", "(520) Franziska", "(521) Brixia", "(528) Rezia", "(529) Preziosa", "(53) Kalypso", "(532) Herculina", "(534) Nassovia", "(537) Pauly", "(5370) Taranis", "(539) Pamina", "(54) Alexandra", "(545) Messalina", "(55) Pandora", "(550) Senta", "(554) Peraga", "(556) Phyllis", "(558) Carmen", "(56) Melete", "(560) Delila", "(562) Salome", "(563) Suleika", "(566) Stereoskopia", "(568) Cheruskia", "(57) Mnemosyne", "(5761) Andreivanov", "(579) Sidonia", "(5797) Bivoj", "(58) Concordia", "(584) Semiramis", "(588) Achilles", "(59) Elpis", "(590) Tomyris", "(591) Irmgard", "(593) Titania", "(594) Mireille", "(599) Luisa", "(6) Hebe", "(60) Echo", "(600) Musa", "(602) Marianna", "(606) Brangane", "(61) Danae", "(618) Elfriede", "(619) Triberga", "(62) Erato", "(621) Werdandi", "(622) Esther", "(624) Hektor", "(628) Christine", "(63) Ausonia", "(631) Philippina", "(632) Pyrrha", "(639) Latona", "(64) Angelina", "(641) Agnes", "(644) Cosima", "(645) Agrippina", "(65) Cybele", "(653) Berenike", "(654) Zelinda", "(657) Gunlod", "(658) Asteria", "(659) Nestor", "(66) Maja", "(660) Crescentia", "(67) Asia", "(674) Rachele", "(675) Ludmilla", "(677) Aaltje", "(678) Fredegundis", "(679) Pax", "(68) Leto", "(683) Lanzia", "(684) Hildburg", "(688) Melanie", "(69) Hesperia", "(690) Wratislavia", "(692) Hippodamia", "(694) Ekard", "(695) Bella", "(699) Hela", "(7) Iris", "(70) Panopaea", "(700) Auravictrix", "(702) Alauda", "(704) Interamnia", "(7041) Nantucket", "(705) Erminia", "(709) Fringilla", "(71) Niobe", "(712) Boliviana", "(714) Ulula", "(716) Berkeley", "(72) Feronia", "(720) Bohlinia", "(721) Tabora", "(726) Joella", "(73) Klytia", "(733) Mocia", "(736) Harvard", "(737) Arequipa", "(739) Mandeville", "(74) Galatea", "(746) Marlu", "(747) Winchester", "(75) Eurydike", "(751) Faina", "(753) Tiflis", "(7550) Woolum", "(76) Freia", "(766) Moguntia", "(77) Frigga", "(771) Libera", "(775) Lumiere", "(776) Berbericia", "(778) Theobalda", "(779) Nina", "(78) Diana", "(783) Nora", "(785) Zwetana", "(79) Eurynome", "(790) Pretoria", "(792) Metcalfia", "(796) Sarita", "(798) Ruth", "(8) Flora", "(80) Sappho", "(800) Kressmannia", "(8013) Gordonmoore", "(804) Hispania", "(807) Ceraskia", "(81) Terpsichore", "(811) Nauheima", "(814) Tauris", "(82) Alkmene", "(83) Beatrix", "(832) Karin", "(838) Seraphina", "(8395) Rembaut", "(84) Klio", "(841) Arabella", "(846) Lipperta", "(849) Ara", "(85) Io", "(850) Altona", "(852) Wladilena", "(853) Nansenia", "(856) Backlunda", "(8589) Stellaris", "(86) Semele", "(863) Benkoela", "(87) Sylvia", "(870) Manto", "(873) Mechthild", "(876) Scott", "(877) Walkure", "(88) Thisbe", "(887) Alinda", "(89) Julia", "(9) Metis", "(900) Rosalinde", "(905) Universitas", "(908) Buda", "(91) Aegina", "(911) Agamemnon", "(914) Palisana", "(916) America", "(92) Undina", "(925) Alphonsina", "(93) Minerva", "(939) Isberga", "(94) Aurora", "(940) Kordula", "(944) Hidalgo", "(945) Barcelona", "(95) Arethusa", "(951) Gaspra", "(952) Caia", "(96) Aegle", "(97) Klotho", "(974) Lioba", "(98) Ianthe", "(980) Anacostia", "(984) Gretia", "(987) Wallia", "(99) Dike", "(994) Otthild", "(995) Sternberga", "(10475) Maxpoilane", "(11457) Hitomikobayashi", "(129442) 1981 EC15", "(12989) Chriseanderson", "(14761) 6608 P-L", "(16382) 1981 ER27", "(17383) 1981 EE12", "(20749) 2000 AD199", "(23429) 1981 EO35", "(29196) Dius", "(30762) 1981 ES42", "(32755) 1981 EP15", "(37546) 1981 ET20", "(3757) Anagolay", "(5646) 1990 TR", "(58119) 1981 EJ9", "(6178) 1986 DA", "(8252) Elkins-Tanton", "(8253) Brunetto", "(8794) Joepatterson", "(8796) Sonnett", "(9286) Patricktaylor", "(9527) Sherrypervan", "(9723) Binyang", "(99980) 1981 ER18"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": [], "start_date": "1913-08-20", "stop_date": "1992-03-22", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/bundle_compil.ast.apc.lightcurves.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/bundle_compil.ast.apc.lightcurves.xml", "scraped_at": "2026-02-25T20:02:10.740981Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-mission::1.0", "title": "Dawn Mission Bundle", "description": "This bundle contains the Dawn Mission Documentation.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["Mars", "4 Vesta", "1 Ceres"], "instruments": ["Framing Camera 1", "FRAMING CAMERA 2", "GAMMA-RAY AND NEUTRON DETECTOR", "GRAVITY SCIENCE INSTRUMENT", "VISIBLE AND INFRARED SPECTROMETER"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": [], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/bundle-dawn.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/bundle-dawn.xml", "scraped_at": "2026-02-25T20:02:10.740990Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres::1.0", "title": "Dawn RSS Raw Data Bundle For Dwarf Planet 1 Ceres", "description": "This bundle contains raw radio data that can be used to determine the position and velocity of the DAWN spacecraft during its encounter with 1 Ceres. The bundle also contains the calibration data for the effects of Earth's ionosphere and troposphere, meteorological conditions at stations of the NASA Deep Space Network, thruster activity, spacecraft mass history, and changes in spacecraft antenna selection. The data were used to determine the gravity field and shape of 1 Ceres. Documents describing these data are also included in the bundle. The bundle is a migration of data from the original PDS3 archive.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Dawn", "DSN Media Calibration"], "targets": ["1 Ceres", "Earth", "Dawn"], "instruments": ["RSS", "Global Positioning System", "Global Positioning System", "DSN Media Instrumentation", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 35", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Dawn", "NASA Deep Space Network"], "data_types": [], "start_date": "2007-09-27", "stop_date": "2018-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/bundle_dawn-rss_raw_ceres.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/bundle_dawn-rss_raw_ceres.xml", "scraped_at": "2026-02-25T20:02:10.740997Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.nims.spectra::1.0", "title": "Galileo NIMS Radiance Point Spectra of Gaspra V1.0", "description": "This data volume contains radiometrically corrected point spectra of asteroid 951 as acquired by the Galileo spacecraft Near Infrared Mapping Spectrometer (NIMS) on October 29, 1991. They record the spectra collected as the Galileo spacecraft approached the target asteroid. These data are products of the calibration of the raw data number files gap015tn.qub, gap035tn.qub, gap036tn.qub, gap037tn.qub, and gap038tn.qub (DATA SET ID ='GO-A-NIMS-3 TUBE-V1.0') with calibration factors acquired during the first Earth/Moon encounter of the Galileo mission. These raw data .qub files are archived in the Imaging Node of the NASA Planetary Data System (PDS). The calibrated spectra consist of radiance measurements for wavelengths between 0.7 - 5.2 micrometers.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": "1991-10-29", "stop_date": "1991-10-29", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/bundle_galileo.ast-gaspra.nims.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/bundle_galileo.ast-gaspra.nims.spectra.xml", "scraped_at": "2026-02-25T20:02:10.741002Z", "keywords": ["NIMS spectra", "951 Gaspra"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube::1.0", "title": "Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0", "description": "This bundle contains a radiometrically corrected spectral image cube of the highest spatial resolution observation of asteroid 951 Gaspra as acquired by the Galileo spacescraft Near Infrared Mapping Spectrometer (NIMS) on October 29, 1991. It is the product of the calibration of the raw data number file gap016tn.qub with calibration factors contained in the file e1wanta2.qub and projected in a point perspective geometry. Both files are contained within the NASA pds archive of Galileo NIMS data. This spectral image cube, gaspra_nims_hires_radiance.fit, combines data acquired during the asteroid 951 Gaspra encounter and the Earth encounters to produce a radiometrically calibrated product.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": "1991-10-29", "stop_date": "1991-10-29", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/bundle_galileo.ast-gaspra.nims.spectral-cube.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/bundle_galileo.ast-gaspra.nims.spectral-cube.xml", "scraped_at": "2026-02-25T20:02:10.741007Z", "keywords": ["NIMS spectral cube", "951 Gaspra"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images::1.0", "title": "Galileo SSI Gaspra Radiometrically Calibrated Images V1.0", "description": "This dataset includes the Galileo Orbiter Solid State Imaging data on the asteroid 951 Gaspra. The raw data have already been archived in PDS with the data set name 'Galileo Imaging (SSI) Asteroid, Earth and Moon Experiment Data Records' and can be found by searching on the data set identification 'GO-A/E-SSI-2-REDR-V1.0'. Only those images in which Gaspra actually appears have been included here. Images in both FITS and ISIS Cube format are provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Solid State Imaging System for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": "1991-10-29", "stop_date": "1991-10-29", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/bundle_galileo.ast-gaspra.ssi.cal-images.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/bundle_galileo.ast-gaspra.ssi.cal-images.xml", "scraped_at": "2026-02-25T20:02:10.741012Z", "keywords": ["SSI calibrated Images", "951 Gaspra"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.nims.spectra::1.0", "title": "Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0", "description": "This data volume contains radiometrically corrected point spectra of asteroid 243 Ida and a spectrum of the asteroid satellite Dactyl (Ida I) as acquired by the Galileo spacecraft Near Infrared Mapping Spectrometer (NIMS) on August 28, 1993. They record the spectra collected as the Galileo spacecraft approached the 243 Ida system. These data are products of the calibration of the raw data number files idu002tn.qub, idu005tn.qub, idu006tn.qub, idu007tn.qub, idu019tn.qub, idu020tn.qub, idu022tn.qub, idu028tn.qub, idu032tn.qub, idu033tn.qub, and idu035tn.qub (DATA SET ID ='GO-A-NIMS-3-TUBE-V1.0') with calibration factors acquired during the Jovian tour of the Galileo mission. These raw data .qub files are archived in the Imaging Node of the NASA Planetary Data System (PDS). The calibrated spectra consist of radiance and incidence/flux measurements for wavelengths between 0.7 - 5.2 micrometers.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Galileo"], "targets": ["243 Ida", "(243) Ida I (Dactyl)"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": "1993-08-28", "stop_date": "1993-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/bundle_galileo.ast-ida.nims.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/bundle_galileo.ast-ida.nims.spectra.xml", "scraped_at": "2026-02-25T20:02:10.741018Z", "keywords": ["NIMS spectra", "241 Ida", "Dactyl (243 Ida I)"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes::1.0", "title": "Hi-Res Galileo NIMS Ida Spectral Image Cube V1.0", "description": "This bundle contains 17 channel spectral image cubes of asteroid 243 Ida ranging from 0.7 to 5.2 micrometers in wavelength in cgs units of radiance. These data were obtained by the Galileo spacecraft Near Infrared Mapping Spectrometer on August 28, 1993. They were radiometrically calibrated using calibration measurements obtained by the Near Infrared Mapping Spectrometer during its observations of Europa on June 28, 1996.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Galileo"], "targets": ["243 Ida"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": "1993-08-28", "stop_date": "1993-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/bundle_galileo.ast-ida.nims.spectral-cubes.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/bundle_galileo.ast-ida.nims.spectral-cubes.xml", "scraped_at": "2026-02-25T20:02:10.741024Z", "keywords": ["NIMS spectral cube", "243 Ida"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.ssi.cal-images::1.0", "title": "Galileo SSI Ida Radiometrically Calibrated Images V1.0", "description": "This data set includes Galileo Orbiter SSI radiometrically calibrated images of the asteroid 243 Ida, created using ISIS software and assuming nadir pointing. This is an original delivery of radiometrically calibrated files, not an update to existing files. All images archived include the asteroid within the image frame. Calibration was performed in 2013-2014.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Galileo"], "targets": ["243 Ida"], "instruments": ["Solid State Imaging System for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": [], "start_date": "1993-08-28", "stop_date": "1993-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/bundle_galileo.ast-ida.ssi.cal-images.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/bundle_galileo.ast-ida.ssi.cal-images.xml", "scraped_at": "2026-02-25T20:02:10.741028Z", "keywords": ["SSI calibrated Images", "243 Ida"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta::1.0", "title": "Dawn RSS Raw Data Bundle For Asteroid 4 Vesta", "description": "This bundle contains raw radio data that can be used to determine the position and velocity of the DAWN spacecraft during its encounter with 4 Vesta. The bundle also contains the calibration data for the effects of Earth's ionosphere and troposphere, meteorological conditions at stations of the NASA Deep Space Network, thruster activity, spacecraft mass history, and changes in spacecraft antenna selection. The data were used to determine the gravity field and shape of 4 Vesta. Documents describing these data are also included in the bundle. The bundle is a migration of data from the original PDS3 archive.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Dawn", "DSN Media Calibration"], "targets": ["4 Vesta", "Earth", "Dawn"], "instruments": ["RSS", "Global Positioning System", "Global Positioning System", "DSN Media Instrumentation", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Dawn", "NASA Deep Space Network"], "data_types": [], "start_date": "2007-09-27", "stop_date": "2012-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/bundle_dawn-rss_raw_vesta.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/bundle_dawn-rss_raw_vesta.xml", "scraped_at": "2026-02-25T20:02:10.741034Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.des.taxonomy::1.0", "title": "DES_Asteroid_taxonomy V1.0", "description": "We provide taxonomical information from Dark Energy Survey (DES) data for 16517 asteroids for which gri slope and i-z colors are available, taxonomical complex information for 58116 asteroids with DES colors g-r, g-i, and a list of 409 new possible V-type objects.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["Multiple Asteroids", "Asteroids"], "instruments": ["Victor Blanco 4.0m Telescope", "Dark Energy Camera (DECam)"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": [], "start_date": "2013-08-31", "stop_date": "2019-01-09", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/bundle_gbo.ast.des.taxonomy.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/bundle_gbo.ast.des.taxonomy.xml", "scraped_at": "2026-02-25T20:02:10.741038Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021::1.0", "title": "MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0", "description": "This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["2020 RC", "(415029) 2011 UL21", "(65996) 1998 MX5", "(3288) Seleucus", "2018 MM8", "(11405) 1999 CV3", "(143404) 2003 BD44", "(6569) Ondaatje", "1996 AE2", "2002 LY1", "(5011) Ptah", "2015 FS332", "(5626) Melissabrucker", "(7888) 1993 UC", "(52762) 1998 MT24", "(7358) Oze", "(613512) 2006 SK134", "2019 YH2", "2016 NL15", "(1627) Ivar", "2011 WN15", "(612098) 1999 RM45", "(19356) 1997 GH3", "(137126) 1999 CF9", "107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]", "(137799) 1999 YB", "(154302) 2002 UQ3", "2008 QS11", "(318411) 2005 AH14", "(163348) 2002 NN4", "(496816) 1989 UP", "(380128) 1997 WB21", "2007 XY9", "(454177) 2013 GJ35", "(142040) 2002 QE15", "(438902) 2009 WF104", "(11066) Sigurd", "2016 LG", "(455148) 1994 UG", "(52768) 1998 OR2", "(612484) 2002 TS67", "(301964) 2000 EJ37", "(53426) 1999 SL5", "(217796) 2000 TO64", "(186822) 2004 FE31", "(413577) 2005 UL5", "(523586) 1999 LK1", "(380981) 2006 SU131", "(4953) 1990 MU", "(217807) 2000 XK44", "(36017) 1999 ND43", "(3691) Bede", "(194386) 2001 VG5", "(480004) 2014 KD91", "(495102) 2011 UU106", "2003 AF23", "2018 WX1", "(4179) Toutatis", "2014 QK434", "2015 OX78", "(101955) Bennu", "(162142) 1998 VR", "(503871) 2000 SL", "(7482) 1994 PC1", "2014 AD17", "(496817) 1989 VB", "(411165) 2010 DF1", "(457260) 2008 RY24", "2015 BF92", "2019 CH", "2015 WH9", "(153814) 2001 WN5", "(363067) 2000 CO101", "(144332) 2004 DV24", "(2335) James", "(163697) 2003 EF54", "(200840) 2001 XN254", "(141525) 2002 FV5", "(528650) 2008 WX32", "(155110) 2005 TB", "(163081) 2002 AG29", "(275611) 1999 XX262", "2018 TT1", "(162186) 1999 OP3", "(3554) Amun", "2002 AV", "(2340) Hathor", "(437844) 1999 MN", "(85989) 1999 JD6", "(488645) 2003 OV", "(511684) 2015 BN509", "(24445) 2000 PM8", "(326290) Akhenaten", "2017 BQ93", "(67367) 2000 LY27", "2011 UA", "(21088) Chelyabinsk", "(100926) 1998 MQ", "(1011) Laodamia", "2020 WU5", "(6585) O'Keefe", "(163373) 2002 PZ39", "2018 QN1", "(88188) 2000 XH44", "(170502) 2003 WM7", "(171819) 2001 FZ6", "(137924) 2000 BD19", "(363831) 2005 PY16", "(143651) 2003 QO104", "(1916) Boreas", "(1508) Kemi", "(65717) 1993 BX3", "(357024) 1999 YR14", "(3833) Calingasta", "(2212) Hephaistos", "(4688) 1980 WF", "(236716) 2007 FV42", "(612143) 2000 BO28", "2015 NU13", "2014 UR116", "(161998) 1988 PA", "(440212) 2004 OB", "(1468) Zomba", "2018 RC", "(310442) 2000 CH59", "(99907) 1989 VA", "2015 OL35", "(194126) 2001 SG276", "2013 PY6", "(68216) 2001 CV26", "(5653) Camarillo", "(138937) 2001 BK16", "(398188) Agni", "(453707) 2010 XY72", "(13553) Masaakikoyama", "(2063) Bacchus", "(214869) 2007 PA8", "(2449) Kenos", "(10145) 1994 CK1", "(5604) 1992 FE", "(24475) 2000 VN2", "(5587) 1990 SB", "2016 ED85", "2020 RO6", "(457768) 2009 KN4", "(413002) 1999 VG22", "(96189) Pygmalion", "2020 ME1", "2015 BK509", "(349063) 2006 XA", "2020 RF", "(3199) Nefertiti", "(5261) Eureka", "(468583) 2007 LS", "2018 KE3", "(244670) 2003 KN18", "2016 CL136", "2019 DN", "(612813) 2004 RF84", "(370307) 2002 RH52", "(523631) 2009 SX1", "(19127) Olegefremov", "(162058) 1997 AE12", "(88254) 2001 FM129", "2020 TB12", "(3402) Wisdom", "(523817) 2009 TK", "(144898) 2004 VD17", "(159504) 2000 WO67", "(4769) Castalia", "(18736) 1998 NU", "(154007) 2002 BY", "(450648) 2006 UC63", "(484795) 2009 DE47", "2020 PM7", "(11398) 1998 YP11", "2019 BK", "(189552) 2000 RL77", "2016 LX48", "(453778) 2011 JK", "(699) Hela", "2006 NL", "(380359) 2002 TN30", "(496818) 1993 RA", "(137199) 1999 KX4", "2011 WA", "(250706) 2005 RR6", "(265962) 2006 CG", "(518735) 2009 JL1", "(85990) 1999 JV6", "2020 XU6", "(226514) 2003 UX34", "2017 MC4", "(154347) 2002 XK4", "(496005) 2007 XJ16", "2017 CS", "(6053) 1993 BW3", "(3361) Orpheus", "2017 YE5", "(1951) Lick", "(416186) 2002 TD60", "(6386) Keithnoll", "(99942) Apophis", "(35107) 1991 VH", "(414586) 2009 UV18", "(137084) 1998 XS16", "(18882) 1999 YN4", "(329437) 2002 OA22", "(433) Eros", "(17182) 1999 VU", "(1139) Atami", "(36284) 2000 DM8", "2014 YM9", "(3988) Huma", "2011 YS62", "(242708) 2005 UK1", "(380160) 2000 JO78", "(505657) 2014 SR339", "2019 FU", "(465749) 2009 WO6", "(141354) 2002 AJ29", "(169675) 2002 JM97", "2013 UX14", "(159402) 1999 AP10", "2015 RF36", "(441987) 2010 NY65", "(54690) 2001 EB", "(480883) 2001 YE4", "(4995) Griffin", "(25916) 2001 CP44", "(66063) 1998 RO1", "(303174) 2004 FH11", "(1981) Midas", "(450649) 2006 UY64", "(527715) 2007 YQ56", "(137120) 1999 BJ8", "(4183) Cuno", "(1685) Toro", "(471240) 2011 BT15", "(153201) 2000 WO107", "(154807) 2004 PP97", "(138258) 2000 GD2", "(162911) 2001 LL5", "(90416) 2003 YK118", "(25143) Itokawa", "(2368) Beltrovata", "(337866) 2001 WL15", "(376864) 2001 TP103", "(474179) 1999 VS6", "(162082) 1998 HL1", "(297300) 1998 SC15", "(1865) Cerberus", "2016 NV38", "(5407) 1992 AX", "2016 GU", "(54789) 2001 MZ7", "(4451) Grieve", "(86450) 2000 CK33", "(312473) 2008 SX245", "(242211) 2003 QB90", "(1198) Atlantis", "2007 EC", "(4341) Poseidon", "(66146) 1998 TU3", "(162004) 1991 VE", "(1580) Betulia", "2018 NB", "(1204) Renzia", "2016 AZ8", "(458198) 2010 RT11", "(21374) 1997 WS22", "(388945) 2008 TZ3", "(2102) Tantalus", "(68950) 2002 QF15", "(136874) 1998 FH74", "(243025) 2006 UM216", "(11500) Tomaiyowit", "(385343) 2002 LV", "2021 CG", "(2078) Nanking", "(5693) 1993 EA", "2018 PP10", "(354030) 2001 RB18", "(24761) Ahau", "(8014) 1990 MF", "(7336) Saunders", "2014 LW21", "(132) Aethra", "2016 XH1", "(4197) Morpheus", "2017 RL", "(361123) 2006 GW2", "(444584) 2006 UK", "(382503) 2001 RE8", "(66272) 1999 JW6", "(53435) 1999 VM40", "(162998) 2001 SK162", "(3920) Aubignan", "(7304) Namiki", "2015 BC", "2016 ES155", "(283460) 2001 PD1", "(152563) 1992 BF", "(1566) Icarus", "(17511) 1992 QN", "(1862) Apollo", "(3200) Phaethon", "(141018) 2001 WC47", "(25330) 1999 KV4", "(265482) 2005 EE", "(3671) Dionysus", "(241662) 2000 KO44", "(452389) 2002 NW16", "(206378) 2003 RB", "(138911) 2001 AE2", "(138404) 2000 HA24", "(389694) 2011 QD48", "(85628) 1998 KV2", "(887) Alinda", "(139622) 2001 QQ142", "(15817) Lucianotesi", "(1310) Villigera", "(452561) 2005 AB", "(68359) 2001 OZ13", "(531060) 2012 DJ61", "(416151) 2002 RQ25", "(399774) 2005 NB7", "(53319) 1999 JM8", "2016 UE101", "(8567) 1996 HW1", "(381677) 2009 BJ81", "(612777) 2004 LU3", "(416584) 2004 JB12", "2017 DA36", "(203217) 2001 FX9", "(22771) 1999 CU3", "(153842) 2001 XT30", "(302830) 2003 FB", "2017 MB1", "2020 RJ3", "(31345) 1998 PG", "(7088) Ishtar", "2020 DX", "(86819) 2000 GK137", "(99799) 2002 LJ3", "(163899) 2003 SD220", "(523811) 2008 TQ2", "(6239) Minos", "(20790) 2000 SE45", "(495615) 2015 PQ291", "(6411) Tamaga", "(138524) 2000 OJ8", "(719) Albert", "(175189) 2005 EC224", "(189040) 2000 MU1", "2018 LQ2", "(141053) 2001 XT1", "(512) Taurinensis", "(5131) 1990 BG", "(489486) 2007 GS3", "(294739) 2008 CM", "(86039) 1999 NC43", "2019 AN5", "2020 TY1", "(140158) 2001 SX169", "2020 SY4", "2015 TA25", "(3103) Eger", "(7889) 1994 LX", "2018 BP", "2016 PR8", "(267494) 2002 JB9", "(4486) Mithra", "(190208) 2006 AQ", "(5392) Parker", "(451157) 2009 SQ104", "(137108) 1999 AN10", "(2059) Baboquivari", "(482650) 2013 BK18", "(365424) 2010 KX7", "2015 XB379", "2017 RR15", "(163249) 2002 GT", "(5817) Robertfrazer", "(96590) 1998 XB", "(338292) 2002 UA31", "(98943) 2001 CC21", "(163902) 2003 SW222", "(333888) 1998 ST4", "(5189) 1990 UQ", "(63164) 2000 YU14", "(141498) 2002 EZ16", "2015 JJ2", "(29075) 1950 DA", "(65679) 1989 UQ", "(5646) 1990 TR", "(326777) 2003 SV222", "(39572) 1993 DQ1", "2015 DB", "(35396) 1997 XF11", "(152931) 2000 EA107", "2005 GR33", "(10115) 1992 SK", "2015 JY1", "(4954) Eric", "(163696) 2003 EB50", "(3102) Krok", "(86212) 1999 TG21", "(142464) 2002 TC9", "(5879) Almeria", "2018 JA", "(66391) Moshup", "(7341) 1991 VK", "(450160) 2000 RM12", "(414960) 2011 CS4", "2008 SR1", "(326291) 1998 HM3", "(363599) 2004 FG11", "(348400) 2005 JF21", "(3908) Nyx", "(88710) 2001 SL9", "(470510) 2008 CJ116", "(3552) Don Quixote", "2020 PD1", "2013 CW32", "(6611) 1993 VW", "(163000) 2001 SW169", "(410778) 2009 FG19", "(250577) 2005 AC", "(175706) 1996 FG3", "2018 QV1", "2016 LV", "(313276) 2002 AX1", "(164202) 2004 EW", "(5230) Asahina", "(237805) 2002 CF26", "(52760) 1998 ML14", "(173664) 2001 JU2", "(162173) Ryugu", "2020 WL3", "(102528) 1999 US3", "(153591) 2001 SN263", "(5660) 1974 MA", "(443103) 2013 WT67", "(162510) 2000 QW69", "(483422) 2000 CE59", "(162781) 2000 XL44", "Multiple Asteroids", "(422686) 2000 AC6", "(512245) 2016 AU8", "(66251) 1999 GJ2", "(469737) 2005 NW44", "2020 QW", "(1640) Nemo", "2015 SV2", "2019 HC", "(308635) 2005 YU55", "(141670) 2002 JS100", "(438955) 2010 LN14", "(4558) Janesick", "(194268) 2001 UY4", "2017 AE5", "(612199) 2000 WL63", "(154244) 2002 KL6", "(355256) 2007 KN4", "(34613) 2000 UR13", "(5143) Heracles", "(612348) 2002 GZ8", "(2099) Opik", "(467963) 2012 JT17", "(22753) 1998 WT", "(87684) 2000 SY2", "2016 YM", "(405058) 2001 TX16", "(154330) 2002 VX94", "2017 BM123", "2018 QU1", "(437316) 2013 OS3", "2014 UF206", "(85709) 1998 SG36", "(2062) Aten", "2020 WM3", "(1374) Isora", "(154993) 2005 EA94", "(90147) 2002 YK14", "2007 RU17", "(455322) 2002 NX18", "(1036) Ganymed", "(410777) 2009 FD", "(448003) 2008 DE", "2019 CD5", "(68278) 2001 FC7", "(1131) Porzia", "(413038) 2001 MF1", "(5786) Talos", "(154276) 2002 SY50", "(454100) 2013 BO73", "(6455) 1992 HE", "2020 PS", "(9400) 1994 TW1", "(13353) 1998 TU12", "(297418) 2000 SP43", "(143992) 2004 AF", "(333889) 1998 SV4", "2019 AP3", "2005 WS3", "(141593) 2002 HK12", "(37336) 2001 RM", "(475665) 2006 VY13", "(85804) 1998 WQ5", "(203015) 1999 YF3", "(523667) 2012 TM139", "(112221) 2002 KH4", "2016 UU80", "(250620) 2005 GE59", "(1864) Daedalus", "2015 DP155", "2016 YK", "(416591) 2004 LC2", "(401857) 2000 PG3", "(3674) Erbisbuhl", "2012 SG32", "(137170) 1999 HF1", "(162687) 2000 UH1", "(1565) Lemaitre", "2020 SN", "2004 QD3", "(85818) 1998 XM4", "(136923) 1998 JH2", "(190166) 2005 UP156", "2009 SV17", "2015 AZ43", "(326683) 2002 WP", "(33342) 1998 WT24", "(26760) 2001 KP41", "(526238) 2005 YY36", "(2074) Shoemaker", "(329340) 2001 LM5", "(3753) Cruithne", "(438429) 2006 WN1", "(385186) 1994 AW1", "(471241) 2011 BX18", "2011 WK15", "(451397) 2011 EZ78", "(5836) 1993 MF", "(523788) 2015 FP118", "2015 SY", "(2064) Thomsen", "(2061) Anza", "2005 TF", "(163364) 2002 OD20", "2020 ST1", "(108519) 2001 LF", "(30825) 1990 TG1", "(68347) 2001 KB67", "2018 WD2", "2018 XG5", "(311554) 2006 BQ147", "(253841) 2003 YG118", "(481394) 2006 SF6", "(3352) McAuliffe", "(442243) 2011 MD11", "2015 QT9", "(155334) 2006 DZ169", "2020 WK3", "(32906) 1994 RH", "(144411) 2004 EW9", "2018 UQ1", "(410088) 2007 EJ", "(477885) 2011 JT9", "(52340) 1992 SY", "2014 RL12", "2019 UC", "(219071) 1997 US9", "(485652) 2011 WO41", "(498066) 2007 RM133", "2015 SZ", "(8037) 1993 HO1", "(345705) 2006 VB14", "(65690) 1991 DG", "(153958) 2002 AM31", "(136993) 1998 ST49", "(154029) 2002 CY46", "(14402) 1991 DB", "2016 CO247", "(302311) 2002 AA", "2020 XH1", "(106589) 2000 WN107", "(285263) 1998 QE2", "(481532) 2007 LE", "2011 HP", "(459872) 2014 EK24", "2007 TQ24", "(420302) 2011 XZ1", "(525477) 2005 FC3", "(89355) 2001 VS78", "(220839) 2004 VA", "(2329) Orthos", "(422699) 2000 PD3", "(68346) 2001 KZ66", "2020 RB6", "(1980) Tezcatlipoca", "(145656) 4788 P-L", "(96631) 1999 FP59", "(506459) 2002 AL14", "2003 YJ", "(416071) 2002 NV", "2010 GT7", "2016 NA1", "(3635) Kreutz", "(8566) 1996 EN", "(19764) 2000 NF5", "(152978) 2000 GJ147", "(388838) 2008 EZ5", "(16834) 1997 WU22", "(461501) 2003 FT3", "(69230) Hermes", "(10636) 1998 QK56", "2020 SS4", "(492143) 2013 OE", "2011 CT4", "2017 CR32", "(89830) 2002 CE", "(137062) 1998 WM", "2019 GT3", "(1620) Geographos", "2018 EJ4", "(1917) Cuyo", "(1943) Anteros", "(15745) Yuliya", "(141052) 2001 XR1", "(1866) Sisyphus", "2017 VC", "(3198) Wallonia", "(500080) 2011 WV134", "(7822) 1991 CS", "(143624) 2003 HM16", "2019 YP5", "(137032) 1998 UO1", "(16960) 1998 QS52", "(4581) Asclepius", "(3858) Dorchester", "(3122) Florence", "(6037) 1988 EG", "(5863) Tara", "(442037) 2010 PR66", "(192563) 1998 WZ6", "(446833) 2001 RB12", "(465616) 2009 EC", "(462959) 2011 DU", "2019 SH6", "2014 WG365", "(174050) 2002 CC19", "(138852) 2000 WN10", "(4055) Magellan", "(515767) 2015 JA2", "(3255) Tholen", "(411201) 2010 LJ14", "2002 NY40", "(17274) 2000 LC16", "(433953) 1997 XR2", "(159608) 2002 AC2", "(5645) 1990 SP", "(40329) 1999 ML", "(12711) Tukmit", "(2100) Ra-Shalom", "(243147) 2007 TX18", "(331471) 1984 QY1", "(464798) 2004 JX20"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": [], "start_date": "2000-09-04", "stop_date": "2021-02-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/bundle_gbo.ast.mithneos.spectra_2000-2021.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/bundle_gbo.ast.mithneos.spectra_2000-2021.xml", "scraped_at": "2026-02-25T20:02:10.741075Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.sawyer.spectra::1.0", "title": "Sawyer Asteroid Spectra V1.0", "description": "This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["None"], "targets": ["(107) Camilla", "(34) Circe", "(230) Athamantis", "(419) Aurelia", "(704) Interamnia", "(410) Chloris", "(130) Elektra", "(91) Aegina", "(203) Pompeja", "(85) Io", "(476) Hedwig", "(5) Astraea", "(72) Feronia", "(65) Cybele", "(87) Sylvia", "(45) Eugenia", "(27) Euterpe", "(1268) Libya", "(14) Irene", "(173) Ino", "(57) Mnemosyne", "(532) Herculina", "(51) Nemausa", "Multiple Asteroids", "(64) Angelina", "(386) Siegena", "(41) Daphne", "(712) Boliviana", "(111) Ate", "(171) Ophelia", "(1167) Dubiago", "(702) Alauda", "(52) Europa", "Solar Analog Stars", "(148) Gallia", "(434) Hungaria", "(19) Fortuna", "(2) Pallas", "(804) Hispania", "(63) Ausonia", "(329) Svea", "(1172) Aneas", "(128) Nemesis", "(30) Urania", "(70) Panopaea", "(54) Alexandra", "(10) Hygiea", "(127) Johanna", "(387) Aquitania", "(190) Ismene", "(212) Medea", "(194) Prokne", "(13) Egeria", "(511) Davida", "(48) Doris", "(137) Meliboea", "(241) Germania", "(95) Arethusa", "(98) Ianthe", "(537) Pauly", "(405) Thia", "(9) Metis", "(602) Marianna", "(93) Minerva", "(409) Aspasia", "(617) Patroclus", "(44) Nysa", "(20) Massalia", "(431) Nephele", "(505) Cava"], "instruments": ["2.7m Telescope", "Large Cassegrain Spectrometer", "2.1-m Struve Warner & Swasey reflector", "Cassegrain Spectrometer", "Literature search"], "instrument_hosts": ["McDonald Observatory", "McDonald Observatory"], "data_types": [], "start_date": "1983-09-15", "stop_date": "1990-07-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/bundle_gbo.ast.sawyer.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/bundle_gbo.ast.sawyer.spectra.xml", "scraped_at": "2026-02-25T20:02:10.741089Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hst.ast-ceres.images-albedo-shape::1.0", "title": "HST images, albedo maps, and shape of (1) Ceres V1.0", "description": "This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["HST"], "targets": ["(1) Ceres"], "instruments": ["Advance Camera For Surveys"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": [], "start_date": "2003-12-28", "stop_date": "2004-01-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/bundle_hst.ast-ceres.images-albedo-shape.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/bundle_hst.ast-ceres.images-albedo-shape.xml", "scraped_at": "2026-02-25T20:02:10.741094Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hst.ast-ceres.uv-spectra::1.0", "title": "HST UV Slitless Reflectance Spectra of (1) Ceres V1.0", "description": "This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["HST"], "targets": ["(1) Ceres", "(1) Ceres"], "instruments": ["Advance Camera For Surveys"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": [], "start_date": "2007-11-25", "stop_date": "2007-11-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/bundle_hst.ast-ceres.uv-spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/bundle_hst.ast-ceres.uv-spectra.xml", "scraped_at": "2026-02-25T20:02:10.741098Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.amica::1.0", "title": "The Hayabusa AMICA Bundle", "description": "The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission, plus pre-flight flat field images.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["HAYABUSA"], "targets": ["(25143) Itokawa", "* 31 Leo", "* alf Crv", "* alf Aur", "* alf Leo", "* alf Ori", "* alf Sco", "* alf Vir", "* bet Tau", "Calibration Target", "Earth", "Calibration Lamp", "Flat Field", "Mars", "Earth I (Moon)", "Saturn", "Sky", "* tau Sco"], "instruments": ["ASTEROID MULTI-BAND IMAGING CAMERA", "SBIG ST-9E", "Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"], "instrument_hosts": ["HAYABUSA", "Goodricke-Pigott Observatory"], "data_types": [], "start_date": "2003-03-18", "stop_date": "2005-11-19", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/bundle_hay.amica.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/bundle_hay.amica.xml", "scraped_at": "2026-02-25T20:02:10.741104Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.lidar::1.0", "title": "The Hayabusa LIDAR Bundle", "description": "The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optimizing the spacecraft trajectory.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["HAYABUSA"], "targets": ["(25143) Itokawa"], "instruments": ["LIGHT DETECTION AND RANGING INSTRUMENT"], "instrument_hosts": ["HAYABUSA"], "data_types": [], "start_date": "2005-09-11", "stop_date": "2005-11-25", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/bundle_hay.lidar.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/bundle_hay.lidar.xml", "scraped_at": "2026-02-25T20:02:10.741109Z", "keywords": [], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.mission::1.0", "title": "Hayabusa Mission Bundle", "description": "This bundle contains all the mission wide information needed to use and understand the scientific data products produced by the Hayabusa mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["HAYABUSA"], "targets": ["(25143) Itokawa"], "instruments": ["ASTEROID MULTI-BAND IMAGING CAMERA", "NEAR-INFRARED SPECTROMETER", "LIGHT DETECTION AND RANGING INSTRUMENT"], "instrument_hosts": ["HAYABUSA"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/bundle_hay.mission.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/bundle_hay.mission.xml", "scraped_at": "2026-02-25T20:02:10.741113Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iras::1.0", "title": "The IRAS Mission Data Bundle", "description": "The InfraRed Astronomical Satellite (IRAS) was launched on January 26, 1983 from Vandenburg Air Force Base in California. It was a joint program of the United States, the Netherlands, and the United Kingdom. The primary mission of IRAS was to conduct a sensitive and unbiased survey of the sky in four wavelength bands centered at 12, 25, 60, and 100 microns. It also made pointed observatons of selected astronomical and solar system objects. This bundle contains the PDS data holdings from the IRAS mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["INFRARED ASTRONOMICAL SATELLITE (IRAS)"], "targets": ["Multiple Asteroids", "9P/Tempel 1", "DUST"], "instruments": ["FOCAL PLANE ARRAY for IRAS"], "instrument_hosts": ["INFRARED ASTRONOMICAL SATELLITE"], "data_types": [], "start_date": "1983-01-26", "stop_date": "1983-11-22", "browse_url": "https://sbnarchive.psi.edu/pds4/iras/iras/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/iras/iras/bundle_iras.xml", "source_url": "https://sbnarchive.psi.edu/pds4/iras/iras/bundle_iras.xml", "scraped_at": "2026-02-25T20:02:10.741116Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iue.ast.hendrix.spectra::2.0", "title": "Hendrix IUE asteroid reflectance spectra V2.0", "description": "This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Iue"], "targets": ["(308) Polyxo", "(41) Daphne", "(42) Isis", "(12) Victoria", "(1620) Geographos", "(40) Harmonia", "(14) Irene", "(433) Eros", "(29) Amphitrite", "(410) Chloris", "(27) Euterpe", "(654) Zelinda", "(10) Hygiea", "(471) Papagena", "(16) Psyche", "(63) Ausonia", "(8) Flora", "(135) Hertha", "(4179) Toutatis", "(18) Melpomene", "(51) Nemausa", "(20) Massalia", "(511) Davida", "(75) Eurydike", "(349) Dembowska", "(21) Lutetia", "(54) Alexandra", "(9) Metis", "(23) Thalia", "Multiple Asteroids", "(129) Antigone", "(324) Bamberga", "(88) Thisbe", "(15) Eunomia", "(216) Kleopatra", "(44) Nysa", "(532) Herculina", "(1566) Icarus", "(354) Eleonora", "(704) Interamnia"], "instruments": ["LONG-WAVELENGTH REDUNDANT for IUE", "LONG-WAVELENGTH PRIME for IUE"], "instrument_hosts": ["International Ultraviolet Explorer", "International Ultraviolet Explorer"], "data_types": [], "start_date": "1978-05-21", "stop_date": "1994-09-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/bundle_iue.ast.hendrix.spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/bundle_iue.ast.hendrix.spectra.xml", "scraped_at": "2026-02-25T20:02:10.741122Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps::1.0", "title": "Phoebe SPC Shape Model and Assessment Products V1.0", "description": "This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Cassini-huygens"], "targets": ["Saturn IX (Phoebe)"], "instruments": ["Imaging Science Subsystem - Wide Angle", "Imaging Science Subsystem - Narrow Angle"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/bundle_satellite-phoebe.cassini.shape-models-maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/bundle_satellite-phoebe.cassini.shape-models-maps.xml", "scraped_at": "2026-02-25T20:02:10.741126Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.mission::2.0", "title": "NEAR Mission Information Bundle", "description": "The bundle contains all the mission wide information needed to use and understand the scientific data products produced by the NEAR mission.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["NEAR"], "targets": ["433 Eros", "253 Mathilde", "Earth", "C/1996 B2 (Hyakutake)", "SOLAR_SYSTEM", "Interplanetary Magnetic Field", "SPACE"], "instruments": ["GAMMA RAY SPECTROMETER for NEAR", "MAGNETOMETER for NEAR", "MULTI-SPECTRAL IMAGER for NEAR", "NEAR INFRARED SPECTROMETER for NEAR", "NEAR LASER RANGEFINDER for NEAR", "XRAY SPECTROMETER for NEAR", "RADIO SCIENCE SUBSYSTEM for NEAR"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": [], "start_date": "1996-02-17", "stop_date": "2001-02-28", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/bundle_near.mission.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/bundle_near.mission.xml", "scraped_at": "2026-02-25T20:02:10.741132Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.spectral_analysis::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Spectral Analysis Bundle", "description": "This bundle collects all the derived spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) and the OSIRIS-REx Thermal Emission Spectrometer (OTES). These products include resampled and reflectance OVIRS spectra, and temperature/emissivity OTES data products. Additionally, both visible and near infrared (vnir) and thermal infrared (tir) map products are collected.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES", "OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/bundle_spectral_analysis.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/bundle_spectral_analysis.xml", "scraped_at": "2026-02-25T20:02:10.741137Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_raw::1.1", "title": "NEAR Radio Science Subsystem (RSS) raw data bundle", "description": "This bundle contains raw radio science tracking data and associated calibration files. There are six product types: Orbit Determination Files (ODF), Earth Orientation Parameters (EOP), Troposphere (TRO), Ionosphere (ION), Numberical Model (nmlmodl), and solution pages (Paramsum).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros", "253 Mathilde"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": [], "start_date": "1997-07-03", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/bundle_near_rss_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/bundle_near_rss_raw.xml", "scraped_at": "2026-02-25T20:02:10.741144Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_derived::1.1", "title": "NEAR Radio Science Subsystem (RSS) derived data bundle", "description": "The bundle contains derived models of Eros gravity and topography from radio science tracking. There are four product types: Landmark, Image, Spherical Harmonics ASCII Data Records (SHADR), and the Spherical Harmonics Binary Data Records (SHBDR).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": [], "start_date": "2000-02-14", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/bundle_near_rs_derived.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/bundle_near_rs_derived.xml", "scraped_at": "2026-02-25T20:02:10.741147Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams::11.1", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) Bundle", "description": "This bundle collects all the operational data products produced by the OSIRIS-REx Camera Suite (OCAMS). OCAMS is a suite of scientific cameras used for the characterization of the surface of (101955) Bennu. http://doi.org/10.26033/asca-b202.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/bundle_ocams.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/bundle_ocams.xml", "scraped_at": "2026-02-25T20:02:10.741151Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ovirs::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible and InfraRed Spectrometer (OVIRS) Bundle", "description": "This bundle collects all the operational data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS). OVIRS is used for the spectral characterization of the surface of (101955) Bennu.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/bundle_ovirs.xml", "source_url": "https://sbnarchive.psi.edu/pds4/bundle_ovirs.xml", "scraped_at": "2026-02-25T20:02:10.741154Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.sample_site::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Derived Sample Site Products Bundle", "description": "This collection contains detailed catalogs created during the Sample Site Selection Phase of the OSIRIS-REx mission. Each catalog features geospatial maps with comparative visualizations across all candidate sites. These catalogs are decisional products, and as such are historical documents. They are not final curated science products.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS", "OLA", "OTES", "OVIRS", "TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": [], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/bundle_sample_site.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/bundle_sample_site.xml", "scraped_at": "2026-02-25T20:02:10.741163Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clipper.sud_ground_cal::1.0", "title": "Europa Clipper SUDA Ground Calibration Bundle", "description": "This bundle collects all the ground calibration data products produced by the SUDA instrument.", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["Europa Clipper Mission"], "targets": ["DUST"], "instruments": ["SUrface Dust Analyzer (SUDA)"], "instrument_hosts": ["Europa Clipper Spacecraft"], "data_types": [], "start_date": "2022-07-07", "stop_date": "2022-08-31", "browse_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/bundle_suda.xml", "source_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/bundle_suda.xml", "scraped_at": "2026-02-25T20:02:10.741183Z", "keywords": [], "processing_level": "Partially Processed | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model::1.0", "title": "Radar shape model of asteroid (99942) Apophis", "description": "This data set contains a preliminary three-dimensional shape model and spin state of near-Earth asteroid (99942) Apophis based on ground-based radar images as reported by Brozovic et al. (2018).", "node": "sbn", "pds_version": "PDS4", "type": "bundle", "missions": ["No Specific Investigation"], "targets": ["(99942) Apophis"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "Arecibo 2380 MHz Radar Receiver", "DSS-14 70-m Radio Telescope", "DSS-14 X-band Goldstone Solar System Radar Transmitter", "DSS-14 X-band Goldstone Solar System Radar Receiver"], "instrument_hosts": ["Arecibo Observatory", "Goldstone Deep Space Communications Complex"], "data_types": [], "start_date": "2012-12-21", "stop_date": "2013-03-16", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/bundle_gbo.ast-apophis.jpl.radar.shape_model.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/bundle_gbo.ast-apophis.jpl.radar.shape_model.xml", "scraped_at": "2026-02-25T20:02:10.741193Z", "keywords": ["radar shape model"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_teleobs:data_ldtcal::1.0", "title": "DART Lowell Discovery Telescope (LDT) Calibrated Data Collection", "description": "We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the Lowell calibrated images, the supporting calibration images: master bias frame images, and master flat field images, and the reference star PNGs.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": ["Lowell Discovery Telescope (LDT)", "Large Monolithic Imager"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["Data"], "start_date": "2020-12-17", "stop_date": "2021-03-06", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtcal/collection.xml", "scraped_at": "2026-02-25T20:02:10.750193Z", "keywords": ["Lowell"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_teleobs:data_ldtddp::1.0", "title": "DART Lowell Discovery Telescope (LDT) Derived Data Product Collection", "description": "We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the photometry summary tables, which are a PDS4 derived product.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": ["Lowell Discovery Telescope (LDT)", "Large Monolithic Imager"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["Data"], "start_date": "2020-12-17", "stop_date": "2021-03-06", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtddp/collection.xml", "scraped_at": "2026-02-25T20:02:10.750197Z", "keywords": ["Lowell"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_teleobs:data_ldtraw::1.0", "title": "DART Lowell Discovery Telescope (LDT) Raw Data Collection", "description": "We obtained images of the (65803) Didymos system and supporting calibration images with the Lowell Discovery Telescope (LDT) through a VR filter. These images were taken in order to determine the orbit period of Dimorphos, the satellite of Didymos. This collection consists of the Lowell Raw Images.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": ["Lowell Discovery Telescope (LDT)", "Large Monolithic Imager"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["Data"], "start_date": "2020-12-17", "stop_date": "2021-03-06", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/data_ldtraw/collection.xml", "scraped_at": "2026-02-25T20:02:10.750203Z", "keywords": ["Lowell"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_teleobs:document_ldt::1.0", "title": "DART Lowell Document Collection", "description": "This collection contains documents relevant to the Lowell Discovery Telescope ground observations in support of the Double Asteroid Redirection Test mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": ["Lowell Discovery Telescope (LDT)", "Large Monolithic Imager"], "instrument_hosts": ["Lowell Observatory"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_teleobs-v1.0/document_ldt/collection.xml", "scraped_at": "2026-02-25T20:02:10.750206Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_lightcurve_derived_parameters:data::1.0", "title": "data collection for the \"ASTEROID LIGHTCURVE DERIVED DATA\" bundle", "description": "This is the data collection for the ast_lightcurve_derived_parameters bundle. This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1913-01-01", "stop_date": "2017-02-03", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/collection_ast_lightcurve_derived_parameters_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/data/collection_ast_lightcurve_derived_parameters_data.xml", "scraped_at": "2026-02-25T20:02:10.750496Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_lightcurve_derived_parameters:document::1.0", "title": "document collection for the \"ASTEROID LIGHTCURVE DERIVED DATA\" bundle", "description": "This is the document collection for the ast_lightcurve_derived_parameters bundle. This is a compilation of published rotational parameters derived from lightcurve data for asteroids, based on the Warner et al. (2009) Asteroid Lightcurve Database. This is the version as of February 3, 2017. In addition to reported rotational parameters by individual papers, there is a summary file with the values adopted by Harris, Warner, and Pravec as the most likely correct values for each asteroid. The data set also contains files listing known binary asteroids, asteroid spin axes, and 'tumbling' asteroids.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1913-01-01", "stop_date": "2017-02-03", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/collection_ast_lightcurve_derived_parameters_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_lightcurve_derived/document/collection_ast_lightcurve_derived_parameters_document.xml", "scraped_at": "2026-02-25T20:02:10.750499Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-mb.reddy.spectra:document::1.0", "title": "document collection for the \"REDDY MAIN BELT ASTEROID SPECTRA\" bundle", "description": "This is the document collection for the gbo.ast-mb.reddy.spectra bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(101) Helena", "(105) Artemis", "(1086) Nata", "(1124) Stroobantia", "(113) Amalthea", "(1145) Robelmonte", "(12) Victoria", "(121) Hermione", "(1251) Hedera", "(1284) Latvia", "(130) Elektra", "(1329) Eliane", "(135) Hertha", "(138) Tolosa", "(1503) Kuopio", "(1616) Filipoff", "(1626) Sadeya", "(167) Urda", "(170) Maria", "(1717) Arlon", "(182) Elsa", "(1830) Pogson", "(184) Dejopeja", "(1883) Rimito", "(192) Nausikaa", "(1929) Kollaa", "(2) Pallas", "(20) Massalia", "(2011) Veteraniya", "(2014) Vasilevskis", "(2045) Peking", "(213) Lilaea", "(214) Aschera", "(22) Kalliope", "(233) Asterope", "(243) Ida", "(253) Mathilde", "(255) Oppavia", "(256) Walpurga", "(264) Libussa", "(273) Atropos", "(276) Adelheid", "(283) Emma", "(289) Nenetta", "(30) Urania", "(306) Unitas", "(308) Polyxo", "(317) Roxane", "(349) Dembowska", "(37) Fides", "(379) Huenna", "(385) Ilmatar", "(389) Industria", "(4) Vesta", "(403) Cyane", "(41) Daphne", "(419) Aurelia", "(434) Hungaria", "(44) Nysa", "(442) Eichsfeldia", "(446) Aeternitas", "(45) Eugenia", "(458) Hercynia", "(470) Kilia", "(472) Roma", "(482) Petrina", "(502) Sigune", "(504) Cora", "(51) Nemausa", "(56) Melete", "(569) Misa", "(620) Drakonia", "(63) Ausonia", "(64) Angelina", "(66) Maja", "(663) Gerlinde", "(670) Ottegebe", "(704) Interamnia", "(741) Botolphia", "(762) Pulcova", "(809) Lundia", "(84) Klio", "(858) El Djezair", "(863) Benkoela", "(87) Sylvia", "(872) Holda", "(877) Walkure", "(9) Metis", "(951) Gaspra", "Multiple Asteroids"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "2001-03-11", "stop_date": "2012-06-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/collection_gbo.ast-mb.reddy.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/document/collection_gbo.ast-mb.reddy.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750508Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-mb.reddy.spectra:data::1.0", "title": "data collection for the \"REDDY MAIN BELT ASTEROID SPECTRA\" bundle", "description": "This is the data collection for the gbo.ast-mb.reddy.spectra bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 90 main belt asteroids observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2012.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(101) Helena", "(105) Artemis", "(1086) Nata", "(1124) Stroobantia", "(113) Amalthea", "(1145) Robelmonte", "(12) Victoria", "(121) Hermione", "(1251) Hedera", "(1284) Latvia", "(130) Elektra", "(1329) Eliane", "(135) Hertha", "(138) Tolosa", "(1503) Kuopio", "(1616) Filipoff", "(1626) Sadeya", "(167) Urda", "(170) Maria", "(1717) Arlon", "(182) Elsa", "(1830) Pogson", "(184) Dejopeja", "(1883) Rimito", "(192) Nausikaa", "(1929) Kollaa", "(2) Pallas", "(20) Massalia", "(2011) Veteraniya", "(2014) Vasilevskis", "(2045) Peking", "(213) Lilaea", "(214) Aschera", "(22) Kalliope", "(233) Asterope", "(243) Ida", "(253) Mathilde", "(255) Oppavia", "(256) Walpurga", "(264) Libussa", "(273) Atropos", "(276) Adelheid", "(283) Emma", "(289) Nenetta", "(30) Urania", "(306) Unitas", "(308) Polyxo", "(317) Roxane", "(349) Dembowska", "(37) Fides", "(379) Huenna", "(385) Ilmatar", "(389) Industria", "(4) Vesta", "(403) Cyane", "(41) Daphne", "(419) Aurelia", "(434) Hungaria", "(44) Nysa", "(442) Eichsfeldia", "(446) Aeternitas", "(45) Eugenia", "(458) Hercynia", "(470) Kilia", "(472) Roma", "(482) Petrina", "(502) Sigune", "(504) Cora", "(51) Nemausa", "(56) Melete", "(569) Misa", "(620) Drakonia", "(63) Ausonia", "(64) Angelina", "(66) Maja", "(663) Gerlinde", "(670) Ottegebe", "(704) Interamnia", "(741) Botolphia", "(762) Pulcova", "(809) Lundia", "(84) Klio", "(858) El Djezair", "(863) Benkoela", "(87) Sylvia", "(872) Holda", "(877) Walkure", "(9) Metis", "(951) Gaspra", "Multiple Asteroids"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "2001-03-11", "stop_date": "2012-06-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/collection_gbo.ast-mb.reddy.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-mb.reddy.spectra/data/collection_gbo.ast-mb.reddy.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750516Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.2mass.phot:document::1.0", "title": "document collection for the \"2MASS ASTEROID AND COMET SURVEY\" bundle", "description": "This is the document collection for the gbo.ast.2mass.phot bundle. This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["2MASS Camera - North", "2MASS 1.3m Telescope at Fred L. Whipple Observatory", "2MASS Camera - South", "2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"], "instrument_hosts": ["Fred L. Whipple Observatory", "Cerro Tololo Inter-American Observatory"], "data_types": ["Document"], "start_date": "1997-06-07", "stop_date": "2001-02-15", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/collection_gbo.ast.2mass.phot_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/document/collection_gbo.ast.2mass.phot_document.xml", "scraped_at": "2026-02-25T20:02:10.750521Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.2mass.phot:data::1.0", "title": "data collection for the \"2MASS ASTEROID AND COMET SURVEY\" bundle", "description": "This is the data collection for the gbo.ast.2mass.phot bundle. This data set includes J, H, and Ks magnitudes from the Two Micron All-Sky Survey (2MASS) for sources which were positionally associated with asteroids, comets, planets, and planetary satellites. This version includes the 2MASS Extended Mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["2MASS Camera - North", "2MASS 1.3m Telescope at Fred L. Whipple Observatory", "2MASS Camera - South", "2MASS 1.3m Telescope at Cerro Tololo Inter-American Observatory"], "instrument_hosts": ["Fred L. Whipple Observatory", "Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "1997-06-07", "stop_date": "2001-02-15", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/collection_gbo.ast.2mass.phot_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.2mass.phot/data/collection_gbo.ast.2mass.phot_data.xml", "scraped_at": "2026-02-25T20:02:10.750526Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:tno-centaur_diam-albedo-density:data::1.0", "title": "TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0", "description": "This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1986-01-01", "stop_date": "2018-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/collection_tno-centaur_diam-albedo-density_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/data/collection_tno-centaur_diam-albedo-density_data.xml", "scraped_at": "2026-02-25T20:02:10.750529Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:tno-centaur_diam-albedo-density:document::1.0", "title": "TNO AND CENTAUR DIAMETERS, ALBEDOS, AND DENSITIES V1.0", "description": "This data set is a compilation of published diameters, albedos, and densities for Transneptunian Objects (TNOs) and Centaurs. A total of 194 objects are listed, many with more than one entry. This version covers published values through 31 March 2018.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1986-01-01", "stop_date": "2018-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/collection_tno-centaur_diam-albedo-density_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/tno-centaur_diam-albedo-density_V1_0/document/collection_tno-centaur_diam-albedo-density_document.xml", "scraped_at": "2026-02-25T20:02:10.750534Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.polarimetry:document::1.0", "title": "document collection for the \"POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS\" bundle", "description": "This is the document collection for the compil.tno-centaur.polarimetry bundle. The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)", "8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory", "Sanglok Observatory Photometer-Polarimeter", "RCC Richey-Chretien Telescope at Institute of Astrophysics", "KPNO Single Channel Polarimeter", "1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory", "McDonald Observatory Linear Polarimeter", "2.1-m Struve Warner &"], "instrument_hosts": ["European Southern Observatory on Cerro Paranal", "Institute of Astrophysics", "Kitt Peak National Observatory", "McDonald Observatory"], "data_types": ["Document"], "start_date": "1972-04-08", "stop_date": "2012-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/collection_compil.tno-centaur.polarimetry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/document/collection_compil.tno-centaur.polarimetry_document.xml", "scraped_at": "2026-02-25T20:02:10.750540Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.polarimetry:data::1.0", "title": "data collection for the \"POLARIMETRY OF TRANSNEPTUNIAN OBJECTS AND CENTAURS\" bundle", "description": "This is the data collection for the compil.tno-centaur.polarimetry bundle. The bundle contains a summary of polarimetric observations of Transneptunian objects (including Pluto-Charon system) and Centaurs published by March 19, 2013.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["ESO VLT Focal Reducer and Spectrograph #1 (FORS1)", "8.2m Kuyen Very Large Telescope (VLT)-UT2 at Paranal Observatory", "Sanglok Observatory Photometer-Polarimeter", "RCC Richey-Chretien Telescope at Institute of Astrophysics", "KPNO Single Channel Polarimeter", "1.3-m Boller & Chivens Cassegrain reflector at Kitt Peak National Observatory", "McDonald Observatory Linear Polarimeter", "2.1-m Struve Warner &"], "instrument_hosts": ["European Southern Observatory on Cerro Paranal", "Institute of Astrophysics", "Kitt Peak National Observatory", "McDonald Observatory"], "data_types": ["Data"], "start_date": "1972-04-08", "stop_date": "2012-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/collection_compil.tno-centaur.polarimetry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.polarimetry/data/collection_compil.tno-centaur.polarimetry_data.xml", "scraped_at": "2026-02-25T20:02:10.750545Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.dione.shape-model:document::1.0", "title": "document collection for the \"GASKELL DIONE SHAPE MODEL\" bundle", "description": "This is the document collection for the gaskell.dione.shape-model bundle. The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn IV (Dione)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": ["Document"], "start_date": "2004-12-14", "stop_date": "2010-12-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/collection_gaskell.dione.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/document/collection_gaskell.dione.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.750549Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.dione.shape-model:data::1.0", "title": "data collection for the \"GASKELL DIONE SHAPE MODEL\" bundle", "description": "This is the data collection for the gaskell.dione.shape-model bundle. The shape model of Dione derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 23, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn IV (Dione)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": ["Data"], "start_date": "2004-12-14", "stop_date": "2010-12-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/collection_gaskell.dione.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.dione.shape-model/data/collection_gaskell.dione.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.750553Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.mimas.shape-model:document::1.0", "title": "document collection for the \"GASKELL MIMAS SHAPE MODEL\" bundle", "description": "This is the document collection for the gaskell.mimas.shape-model bundle. The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS", "VOYAGER"], "targets": ["Saturn I (Mimas)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "VOYAGER 1", "CASSINI ORBITER"], "data_types": ["Document"], "start_date": "1980-11-12", "stop_date": "2011-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/collection_gaskell.mimas.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/document/collection_gaskell.mimas.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.750557Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.mimas.shape-model:data::1.0", "title": "data collection for the \"GASKELL MIMAS SHAPE MODEL\" bundle", "description": "This is the data collection for the gaskell.mimas.shape-model bundle. The shape model of Mimas derived by Robert Gaskell from Cassini ISSNA and ISSWA images and Voyager 1 ISSN images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on June 26, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS", "VOYAGER"], "targets": ["Saturn I (Mimas)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "VOYAGER 1", "CASSINI ORBITER"], "data_types": ["Data"], "start_date": "1980-11-12", "stop_date": "2011-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/collection_gaskell.mimas.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.mimas.shape-model/data/collection_gaskell.mimas.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.750561Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.phoebe.shape-model:document::1.0", "title": "document collection for the \"GASKELL PHOEBE SHAPE MODEL\" bundle", "description": "This is the document collection for the gaskell.phoebe.shape-model bundle. The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn IX (Phoebe)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": ["Document"], "start_date": "2004-06-11", "stop_date": "2004-06-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/collection_gaskell.phoebe.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/document/collection_gaskell.phoebe.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.750565Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.phoebe.shape-model:data::1.0", "title": "data collection for the \"GASKELL PHOEBE SHAPE MODEL\" bundle", "description": "This is the data collection for the gaskell.phoebe.shape-model bundle. The shape model of Phoebe derived by Robert Gaskell from Cassini images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on August 4, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn IX (Phoebe)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": ["Data"], "start_date": "2004-06-11", "stop_date": "2004-06-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/collection_gaskell.phoebe.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phoebe.shape-model/data/collection_gaskell.phoebe.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.750570Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.tethys.shape-model:document::1.0", "title": "document collection for the \"GASKELL TETHYS SHAPE MODEL\" bundle", "description": "This is the document collection for the gaskell.tethys.shape-model bundle. The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn III (Tethys)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": ["Document"], "start_date": "2004-10-28", "stop_date": "2010-08-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/collection_gaskell.tethys.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/document/collection_gaskell.tethys.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.750574Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.tethys.shape-model:data::1.0", "title": "data collection for the \"GASKELL TETHYS SHAPE MODEL\" bundle", "description": "This is the data collection for the gaskell.tethys.shape-model bundle. The shape model of Tethys derived by Robert Gaskell from Cassini Imaging Science Subsystem narrow and wide angle camera (ISSNA and ISSWA) images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on July 25, 2012. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Saturn III (Tethys)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE"], "instrument_hosts": ["CASSINI ORBITER", "CASSINI ORBITER"], "data_types": ["Data"], "start_date": "2004-10-28", "stop_date": "2010-08-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/collection_gaskell.tethys.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.tethys.shape-model/data/collection_gaskell.tethys.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.750578Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.smass.spectra:data::1.0", "title": "Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0", "description": "The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(541) Deborah", "(4179) Toutatis", "(1166) Sakuntala", "(38) Leda", "(495) Eulalia", "(808) Merxia", "(234) Barbara", "(7341) 1991 VK", "(631) Philippina", "(319) Leona", "(3494) Purplemountain", "(4606) Saheki", "(3748) Tatum", "(111) Ate", "(2645) Daphneplane", "(297) Caecilia", "(314) Rosalia", "(3321) Dasha", "(5143) Heracles", "(169) Zelia", "(4038) Kristina", "(86) Semele", "(2538) Vanderlinden", "(4031) Mueller", "(722) Frieda", "(509) Iolanda", "(126) Velleda", "(4219) Nakamura", "(1451) Grano", "(28) Bellona", "(39) Laetitia", "(8) Flora", "(415690) 1992 UB", "(3935) Toatenmongakkai", "1991 XB", "(339) Dorothea", "(36) Atalante", "(4165) Didkovskij", "(4640) Hara", "(248) Lameia", "(2091) Sampo", "(374) Burgundia", "(481) Emita", "(702) Alauda", "(3220) Murayama", "(402) Chloe", "(6) Hebe", "(32) Pomona", "(2365) Interkosmos", "(239) Adrastea", "(204) Kallisto", "(3332) Raksha", "(3760) Poutanen", "(54) Alexandra", "(4370) Dickens", "(4156) Okadanoboru", "(4373) Crespo", "(1375) Alfreda", "(471) Papagena", "(511) Davida", "(1697) Koskenniemi", "(3578) Carestia", "(470) Kilia", "(137) Meliboea", "(2923) Schuyler", "(384) Burdigala", "(4104) Alu", "(61) Danae", "(3528) Counselman", "(2074) Shoemaker", "(3167) Babcock", "(10) Hygiea", "(2174) Asmodeus", "(2299) Hanko", "(4761) Urrutia", "(480) Hansa", "(55) Pandora", "(1626) Sadeya", "(2215) Sichuan", "(1279) Uganda", "(2775) Odishaw", "(4085) Weir", "(3155) Lee", "(3915) Fukushima", "(8176) 1991 WA", "(529) Preziosa", "(4353) Onizaki", "(4635) Rimbaud", "(653) Berenike", "(2259) Sofievka", "(243) Ida", "(416) Vaticana", "(737) Arequipa", "(2140) Kemerovo", "(3759) Piironen", "(138) Tolosa", "(1534) Nasi", "(803) Picka", "(72) Feronia", "(1577) Reiss", "(1325) Inanda", "(2558) Viv", "(2442) Corbett", "(3677) Magnusson", "(371) Bohemia", "(1772) Gagarin", "(3381) Mikkola", "(4956) Noymer", "(582) Olympia", "(1143) Odysseus", "(134) Sophrosyne", "(2590) Mourao", "(639) Latona", "(350) Ornamenta", "(3792) Preston", "(2070) Humason", "(128) Nemesis", "(4) Vesta", "(441) Bathilde", "(230) Athamantis", "(2107) Ilmari", "(256) Walpurga", "(43) Ariadne", "(519) Sylvania", "(3657) Ermolova", "(1906) Naef", "(2444) Lederle", "(599) Luisa", "(2908) Shimoyama", "(185) Eunike", "(2011) Veteraniya", "(1653) Yakhontovia", "(14) Irene", "(196) Philomela", "(4006) Sandler", "(1145) Robelmonte", "(2078) Nanking", "(235) Carolina", "(787) Moskva", "(2599) Veseli", "(2965) Surikov", "(879) Ricarda", "(2130) Evdokiya", "(1393) Sofala", "(3431) Nakano", "(1749) Telamon", "(3559) Violaumayer", "(7474) 1992 TC", "(149) Medusa", "(82) Alkmene", "(22) Kalliope", "(1198) Atlantis", "(1501) Baade", "(7) Iris", "(3740) Menge", "(1712) Angola", "(245) Vera", "(4062) Schiaparelli", "(4376) Shigemori", "(4215) Kamo", "(4562) Poleungkuk", "(3268) Desanctis", "(131) Vala", "(788) Hohensteina", "(1584) Fuji", "(918) Itha", "(1110) Jaroslawa", "(116) Sirona", "(3501) Olegiya", "(4159) Freeman", "(518) Halawe", "(88) Thisbe", "(2420) Ciurlionis", "(5065) Johnstone", "(1967) Menzel", "(65706) 1992 NA", "(42) Isis", "(430) Hybris", "(4440) Tchantches", "(2060) Chiron", "(512) Taurinensis", "(68) Leto", "(3944) Halliday", "(3158) Anga", "(446) Aeternitas", "(2159) Kukkamaki", "(3674) Erbisbuhl", "(1646) Rosseland", "(2204) Lyyli", "(4005) Dyagilev", "(2024) Mclaughlin", "(346) Hermentaria", "(292) Ludovica", "(456) Abnoba", "(1358) Gaika", "(1892) Lucienne", "(3963) Paradzhanov", "(1722) Goffin", "(4546) Franck", "(1679) Nevanlinna", "(1302) Werra", "(2327) Gershberg", "(290) Bruna", "(1934) Jeffers", "(354) Eleonora", "(1781) Vanbiesbroeck", "(1084) Tamariwa", "(1478) Vihuri", "(5145) Pholus", "(1257) Mora", "(1658) Innes", "(4673) Bortle", "(3231) Mila", "(2728) Yatskiv", "(724) Hapag", "(1607) Mavis", "(1463) Nordenmarkia", "(218) Bianca", "(1264) Letaba", "(2966) Korsunia", "(1995) Hajek", "(4282) Endate", "(1651) Behrens", "(2128) Wetherill", "(291) Alice", "(4939) Scovil", "(1289) Kutaissi", "(3523) Arina", "(2143) Jimarnold", "(25) Phocaea", "(563) Suleika", "(774) Armor", "(2790) Needham", "(289) Nenetta", "(2403) Sumava", "(1063) Aquilegia", "(1854) Skvortsov", "(2014) Vasilevskis", "(4145) Maximova", "(915) Cosette", "(73) Klytia", "(158) Koronis", "(1725) Crao", "Multiple Asteroids", "(1471) Tornio", "(231) Vindobona", "(3109) Machin", "(683) Lanzia", "(1807) Slovakia", "(2440) Educatio", "(3869) Norton", "(3285) Ruthwolfe", "(2149) Schwambraniya", "(1165) Imprinetta", "(29) Amphitrite", "(2503) Liaoning", "(1929) Kollaa", "(349) Dembowska", "(237) Coelestina", "(3586) Vasnetsov", "(71) Niobe", "(1907) Rudneva", "(1933) Tinchen", "(1480) Aunus", "(2119) Schwall", "(467) Laura", "(477) Italia", "(3968) Koptelov", "(1743) Schmidt", "(53) Kalypso", "(2017) Wesson", "(811) Nauheima", "(345) Tercidina", "(211) Isolda", "(863) Benkoela", "(2253) Espinette", "(1144) Oda", "(157) Dejanira", "(4002) Shinagawa", "(4025) Ridley", "(720) Bohlinia", "(3628) Boznemcova", "(550) Senta", "(851) Zeissia", "(5118) Elnapoul", "(4510) Shawna", "(186) Celuta", "(18) Melpomene", "(3354) Mcnair", "(1379) Lomonosowa", "(2920) Automedon", "(287) Nephthys", "(752) Sulamitis", "(474) Prudentia", "(900) Rosalinde", "(221) Eos", "(1071) Brita", "(11066) Sigurd", "(951) Gaspra", "(1273) Helma", "(1518) Rovaniemi", "(732) Tjilaki", "(2946) Muchachos", "(813) Baumeia", "(167) Urda", "(2105) Gudy", "(3665) Fitzgerald", "(1628) Strobel", "(675) Ludmilla", "(3153) Lincoln", "(4147) Lennon", "(124) Alkeste", "(2113) Ehrdni", "(4948) Hideonishimura", "(3999) Aristarchus", "(3) Juno", "(2098) Zyskin"], "instruments": ["2.4-m Hiltner Ritchey-Chretien equatorial reflector", "Mark III Spectrograph"], "instrument_hosts": ["McGraw-Hill Observatory"], "data_types": ["Data"], "start_date": "1990-01-01", "stop_date": "1994-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/collection_gbo.ast.smass.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/data/collection_gbo.ast.smass.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750597Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.smass.spectra:document::1.0", "title": "Small Main-Belt Asteroid Spectroscopic Survey (SMASS) V1.0", "description": "The Small Main-Belt Asteroid Spectroscopic Survey (SMASS) was a wide wavelength-coverage visible spectroscopic survey of asteroids carried out primarily at the Michagan-Dartmouth-MIT (McGraw Hill) Observatory on Kitt Peak beginning in 1990. This data set covers the observations for the years 1990-1994 and includes spectra of 316 asteroids. The data have been published in Xu et al. (1995), Icarus 115, 1-35, 1995.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(541) Deborah", "(4179) Toutatis", "(1166) Sakuntala", "(38) Leda", "(495) Eulalia", "(808) Merxia", "(234) Barbara", "(7341) 1991 VK", "(631) Philippina", "(319) Leona", "(3494) Purplemountain", "(4606) Saheki", "(3748) Tatum", "(111) Ate", "(2645) Daphneplane", "(297) Caecilia", "(314) Rosalia", "(3321) Dasha", "(5143) Heracles", "(169) Zelia", "(4038) Kristina", "(86) Semele", "(2538) Vanderlinden", "(4031) Mueller", "(722) Frieda", "(509) Iolanda", "(126) Velleda", "(4219) Nakamura", "(1451) Grano", "(28) Bellona", "(39) Laetitia", "(8) Flora", "(415690) 1992 UB", "(3935) Toatenmongakkai", "1991 XB", "(339) Dorothea", "(36) Atalante", "(4165) Didkovskij", "(4640) Hara", "(248) Lameia", "(2091) Sampo", "(374) Burgundia", "(481) Emita", "(702) Alauda", "(3220) Murayama", "(402) Chloe", "(6) Hebe", "(32) Pomona", "(2365) Interkosmos", "(239) Adrastea", "(204) Kallisto", "(3332) Raksha", "(3760) Poutanen", "(54) Alexandra", "(4370) Dickens", "(4156) Okadanoboru", "(4373) Crespo", "(1375) Alfreda", "(471) Papagena", "(511) Davida", "(1697) Koskenniemi", "(3578) Carestia", "(470) Kilia", "(137) Meliboea", "(2923) Schuyler", "(384) Burdigala", "(4104) Alu", "(61) Danae", "(3528) Counselman", "(2074) Shoemaker", "(3167) Babcock", "(10) Hygiea", "(2174) Asmodeus", "(2299) Hanko", "(4761) Urrutia", "(480) Hansa", "(55) Pandora", "(1626) Sadeya", "(2215) Sichuan", "(1279) Uganda", "(2775) Odishaw", "(4085) Weir", "(3155) Lee", "(3915) Fukushima", "(8176) 1991 WA", "(529) Preziosa", "(4353) Onizaki", "(4635) Rimbaud", "(653) Berenike", "(2259) Sofievka", "(243) Ida", "(416) Vaticana", "(737) Arequipa", "(2140) Kemerovo", "(3759) Piironen", "(138) Tolosa", "(1534) Nasi", "(803) Picka", "(72) Feronia", "(1577) Reiss", "(1325) Inanda", "(2558) Viv", "(2442) Corbett", "(3677) Magnusson", "(371) Bohemia", "(1772) Gagarin", "(3381) Mikkola", "(4956) Noymer", "(582) Olympia", "(1143) Odysseus", "(134) Sophrosyne", "(2590) Mourao", "(639) Latona", "(350) Ornamenta", "(3792) Preston", "(2070) Humason", "(128) Nemesis", "(4) Vesta", "(441) Bathilde", "(230) Athamantis", "(2107) Ilmari", "(256) Walpurga", "(43) Ariadne", "(519) Sylvania", "(3657) Ermolova", "(1906) Naef", "(2444) Lederle", "(599) Luisa", "(2908) Shimoyama", "(185) Eunike", "(2011) Veteraniya", "(1653) Yakhontovia", "(14) Irene", "(196) Philomela", "(4006) Sandler", "(1145) Robelmonte", "(2078) Nanking", "(235) Carolina", "(787) Moskva", "(2599) Veseli", "(2965) Surikov", "(879) Ricarda", "(2130) Evdokiya", "(1393) Sofala", "(3431) Nakano", "(1749) Telamon", "(3559) Violaumayer", "(7474) 1992 TC", "(149) Medusa", "(82) Alkmene", "(22) Kalliope", "(1198) Atlantis", "(1501) Baade", "(7) Iris", "(3740) Menge", "(1712) Angola", "(245) Vera", "(4062) Schiaparelli", "(4376) Shigemori", "(4215) Kamo", "(4562) Poleungkuk", "(3268) Desanctis", "(131) Vala", "(788) Hohensteina", "(1584) Fuji", "(918) Itha", "(1110) Jaroslawa", "(116) Sirona", "(3501) Olegiya", "(4159) Freeman", "(518) Halawe", "(88) Thisbe", "(2420) Ciurlionis", "(5065) Johnstone", "(1967) Menzel", "(65706) 1992 NA", "(42) Isis", "(430) Hybris", "(4440) Tchantches", "(2060) Chiron", "(512) Taurinensis", "(68) Leto", "(3944) Halliday", "(3158) Anga", "(446) Aeternitas", "(2159) Kukkamaki", "(3674) Erbisbuhl", "(1646) Rosseland", "(2204) Lyyli", "(4005) Dyagilev", "(2024) Mclaughlin", "(346) Hermentaria", "(292) Ludovica", "(456) Abnoba", "(1358) Gaika", "(1892) Lucienne", "(3963) Paradzhanov", "(1722) Goffin", "(4546) Franck", "(1679) Nevanlinna", "(1302) Werra", "(2327) Gershberg", "(290) Bruna", "(1934) Jeffers", "(354) Eleonora", "(1781) Vanbiesbroeck", "(1084) Tamariwa", "(1478) Vihuri", "(5145) Pholus", "(1257) Mora", "(1658) Innes", "(4673) Bortle", "(3231) Mila", "(2728) Yatskiv", "(724) Hapag", "(1607) Mavis", "(1463) Nordenmarkia", "(218) Bianca", "(1264) Letaba", "(2966) Korsunia", "(1995) Hajek", "(4282) Endate", "(1651) Behrens", "(2128) Wetherill", "(291) Alice", "(4939) Scovil", "(1289) Kutaissi", "(3523) Arina", "(2143) Jimarnold", "(25) Phocaea", "(563) Suleika", "(774) Armor", "(2790) Needham", "(289) Nenetta", "(2403) Sumava", "(1063) Aquilegia", "(1854) Skvortsov", "(2014) Vasilevskis", "(4145) Maximova", "(915) Cosette", "(73) Klytia", "(158) Koronis", "(1725) Crao", "Multiple Asteroids", "(1471) Tornio", "(231) Vindobona", "(3109) Machin", "(683) Lanzia", "(1807) Slovakia", "(2440) Educatio", "(3869) Norton", "(3285) Ruthwolfe", "(2149) Schwambraniya", "(1165) Imprinetta", "(29) Amphitrite", "(2503) Liaoning", "(1929) Kollaa", "(349) Dembowska", "(237) Coelestina", "(3586) Vasnetsov", "(71) Niobe", "(1907) Rudneva", "(1933) Tinchen", "(1480) Aunus", "(2119) Schwall", "(467) Laura", "(477) Italia", "(3968) Koptelov", "(1743) Schmidt", "(53) Kalypso", "(2017) Wesson", "(811) Nauheima", "(345) Tercidina", "(211) Isolda", "(863) Benkoela", "(2253) Espinette", "(1144) Oda", "(157) Dejanira", "(4002) Shinagawa", "(4025) Ridley", "(720) Bohlinia", "(3628) Boznemcova", "(550) Senta", "(851) Zeissia", "(5118) Elnapoul", "(4510) Shawna", "(186) Celuta", "(18) Melpomene", "(3354) Mcnair", "(1379) Lomonosowa", "(2920) Automedon", "(287) Nephthys", "(752) Sulamitis", "(474) Prudentia", "(900) Rosalinde", "(221) Eos", "(1071) Brita", "(11066) Sigurd", "(951) Gaspra", "(1273) Helma", "(1518) Rovaniemi", "(732) Tjilaki", "(2946) Muchachos", "(813) Baumeia", "(167) Urda", "(2105) Gudy", "(3665) Fitzgerald", "(1628) Strobel", "(675) Ludmilla", "(3153) Lincoln", "(4147) Lennon", "(124) Alkeste", "(2113) Ehrdni", "(4948) Hideonishimura", "(3999) Aristarchus", "(3) Juno", "(2098) Zyskin"], "instruments": ["2.4-m Hiltner Ritchey-Chretien equatorial reflector", "Mark III Spectrograph"], "instrument_hosts": ["McGraw-Hill Observatory"], "data_types": ["Document"], "start_date": "1990-01-01", "stop_date": "1994-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/collection_gbo.ast.smass.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass.spectra/document/collection_gbo.ast.smass.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750616Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.7-color-survey:document::1.0", "title": "document collection for the \"SEVEN COLOR ASTEROID SURVEY\" bundle", "description": "This is the document collection for the gbo.ast.7-color-survey bundle. The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Primo I Photometer", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "1992-07-01", "stop_date": "1994-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/collection_gbo.ast.7-color-survey_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/document/collection_gbo.ast.7-color-survey_document.xml", "scraped_at": "2026-02-25T20:02:10.750622Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.7-color-survey:data::1.0", "title": "data collection for the \"SEVEN COLOR ASTEROID SURVEY\" bundle", "description": "This is the data collection for the gbo.ast.7-color-survey bundle. The Seven-color Asteroid Survey (SCAS) consists of photometry in seven filters from 0.9 to 2.3 microns, of a total of 126 asteroids of types S, K, and M.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Primo I Photometer", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "1992-07-01", "stop_date": "1994-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/collection_gbo.ast.7-color-survey_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.7-color-survey/data/collection_gbo.ast.7-color-survey_data.xml", "scraped_at": "2026-02-25T20:02:10.750626Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.satellite.polarimetry:document::1.0", "title": "document collection for the \"POLARIMETRY OF PLANETARY SATELLITES \" bundle", "description": "This is the document collection for the compil.satellite.polarimetry bundle. This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Satellites"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1966-12-12", "stop_date": "2011-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/collection_compil.satellite.polarimetry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/document/collection_compil.satellite.polarimetry_document.xml", "scraped_at": "2026-02-25T20:02:10.750629Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.satellite.polarimetry:data::1.0", "title": "data collection for the \"POLARIMETRY OF PLANETARY SATELLITES \" bundle", "description": "This is the data collection for the compil.satellite.polarimetry bundle. This compilation of polarimetry of planetary satellites has been compiled from the published literature and from unpublished results by Zaitsev, Rosenbush, and Kiselev. Geometric observational circumstances, calculated using the JPL Horizons ephemeris system, are also included. This version of the compilation is dated April 15, 2012.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Satellites"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1966-12-12", "stop_date": "2011-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/collection_compil.satellite.polarimetry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.polarimetry/data/collection_compil.satellite.polarimetry_data.xml", "scraped_at": "2026-02-25T20:02:10.750634Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.pluto-charon.mutual-events:document::1.0", "title": "document collection for the \"PLUTO-CHARON MUTUAL EVENTS\" bundle", "description": "This is the document collection for the gbo.pluto-charon.mutual-events bundle. Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(134340) Pluto"], "instruments": ["Tinsley Photometer", "2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory", "Tinsley Photometer", "61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory", "McDonald P45a Two-Channel Photometer", "2.7m Telescope", "McDonald P45a Two-Channel Photometer", "2.1-m Struve Warner &", "McDonald P45a Two-Channel Photometer", "91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory", "Literature Compilation"], "instrument_hosts": ["Mauna Kea Observatory", "Mauna Kea Observatory", "McDonald Observatory", "McDonald Observatory", "McDonald Observatory"], "data_types": ["Document"], "start_date": "1985-01-16", "stop_date": "1990-09-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/collection_gbo.pluto-charon.mutual-events_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/document/collection_gbo.pluto-charon.mutual-events_document.xml", "scraped_at": "2026-02-25T20:02:10.750640Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.pluto-charon.mutual-events:data::1.0", "title": "data collection for the \"PLUTO-CHARON MUTUAL EVENTS\" bundle", "description": "This is the data collection for the gbo.pluto-charon.mutual-events bundle. Ground-based photometric observations of the 1985-1990 Pluto-Charon mutual events, observed from Palomar, Mauna Kea, and McDonald Observatories.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(134340) Pluto"], "instruments": ["Tinsley Photometer", "2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory", "Tinsley Photometer", "61-cm Boller & Chivens Cassegrain reflector #1 at Mauna Kea Observatory", "McDonald P45a Two-Channel Photometer", "2.7m Telescope", "McDonald P45a Two-Channel Photometer", "2.1-m Struve Warner &", "McDonald P45a Two-Channel Photometer", "91-cm Boller & Chivens Cassegrain reflector at McDonald Observatory", "Literature Compilation"], "instrument_hosts": ["Mauna Kea Observatory", "Mauna Kea Observatory", "McDonald Observatory", "McDonald Observatory", "McDonald Observatory"], "data_types": ["Data"], "start_date": "1985-01-16", "stop_date": "1990-09-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/collection_gbo.pluto-charon.mutual-events_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto-charon.mutual-events/data/collection_gbo.pluto-charon.mutual-events_data.xml", "scraped_at": "2026-02-25T20:02:10.750645Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.ecas.phot:document::1.0", "title": "document collection for the \"EIGHT COLOR ASTEROID SURVEY\" bundle", "description": "This is the document collection for the gbo.ast.ecas.phot bundle. This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "Calibration Target"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1979-05-31", "stop_date": "1983-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/collection_gbo.ast.ecas.phot_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/document/collection_gbo.ast.ecas.phot_document.xml", "scraped_at": "2026-02-25T20:02:10.750649Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.ecas.phot:data::1.0", "title": "data collection for the \"EIGHT COLOR ASTEROID SURVEY\" bundle", "description": "This is the data collection for the gbo.ast.ecas.phot bundle. This data set contains the reflectance spectra and associated data of the Eight Color Asteroid Survey (ECAS), including results for 589 asteroids.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "Calibration Target"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1979-05-31", "stop_date": "1983-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/collection_gbo.ast.ecas.phot_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.ecas.phot/data/collection_gbo.ast.ecas.phot_data.xml", "scraped_at": "2026-02-25T20:02:10.750653Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.albedos:document::1.0", "title": "document collection for the \"ASTEROID ALBEDOS\" bundle", "description": "This is the document collection for the compil.ast.albedos bundle. This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1973-01-01", "stop_date": "2001-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/collection_compil.ast.albedos_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/document/collection_compil.ast.albedos_document.xml", "scraped_at": "2026-02-25T20:02:10.750656Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.albedos:data::1.0", "title": "data collection for the \"ASTEROID ALBEDOS\" bundle", "description": "This is the data collection for the compil.ast.albedos bundle. This data set comprises a compilation of asteroid albedos for the convenience of the user. Most but not all of the albedos compiled here also appear in other PDS data sets.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1973-01-01", "stop_date": "2001-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/collection_compil.ast.albedos_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.albedos/data/collection_compil.ast.albedos_data.xml", "scraped_at": "2026-02-25T20:02:10.750660Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.magnitude-slope:document::1.0", "title": "document collection for the \"ASTEROID ABSOLUTE MAGNITUDES\" bundle", "description": "This is the document collection for the compil.ast.magnitude-slope bundle. Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1990-12-02", "stop_date": "2008-04-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/collection_compil.ast.magnitude-slope_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/document/collection_compil.ast.magnitude-slope_document.xml", "scraped_at": "2026-02-25T20:02:10.750663Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.magnitude-slope:data::1.0", "title": "data collection for the \"ASTEROID ABSOLUTE MAGNITUDES\" bundle", "description": "This is the data collection for the compil.ast.magnitude-slope bundle. Absolute magnitudes and slopes, mostly IAU-adopted with exceptions noted, for all asteroids numbered as of the 2008 April 20 batch of Minor Planet Circulars.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1990-12-02", "stop_date": "2008-04-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/collection_compil.ast.magnitude-slope_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-slope/data/collection_compil.ast.magnitude-slope_data.xml", "scraped_at": "2026-02-25T20:02:10.750667Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.names:document::1.0", "title": "document collection for the \"ASTEROID NAMES AND DISCOVERY\" bundle", "description": "This is the document collection for the compil.ast.names bundle. This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1801-01-01", "stop_date": "2008-04-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/collection_compil.ast.names_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/document/collection_compil.ast.names_document.xml", "scraped_at": "2026-02-25T20:02:10.750671Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.names:data::1.0", "title": "data collection for the \"ASTEROID NAMES AND DISCOVERY\" bundle", "description": "This is the data collection for the compil.ast.names bundle. This data set includes names, designations, and discovery circumstances for the asteroids numbered as of April 20, 2008.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1801-01-01", "stop_date": "2008-04-20", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/collection_compil.ast.names_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.names/data/collection_compil.ast.names_data.xml", "scraped_at": "2026-02-25T20:02:10.750674Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.radar-properties:document::1.0", "title": "document collection for the \"ASTEROID RADAR\" bundle", "description": "This is the document collection for the compil.ast.radar-properties bundle. This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1968-01-01", "stop_date": "2011-01-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/collection_compil.ast.radar-properties_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/document/collection_compil.ast.radar-properties_document.xml", "scraped_at": "2026-02-25T20:02:10.750677Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.radar-properties:data::1.0", "title": "data collection for the \"ASTEROID RADAR\" bundle", "description": "This is the data collection for the compil.ast.radar-properties bundle. This data set is intended to include all published groundbased asteroid radar detections. The file is based on the collection of asteroid radar detections established by Steven J. Ostro and currently maintained by Lance A.M. Benner. The file includes disc-integrated radar properties extracted from the published papers.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1968-01-01", "stop_date": "2011-01-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/collection_compil.ast.radar-properties_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar-properties/data/collection_compil.ast.radar-properties_data.xml", "scraped_at": "2026-02-25T20:02:10.750681Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.jpl.radar.shape_models:data::1.0", "title": "Radar shape models of asteroids compiled by Lawrence V1.0", "description": "This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(33342) 1998 WT24", "(10115) 1992 SK", "(276049) 2002 CE26", "(29075) 1950 DA", "(341843) 2008 EV5", "(54509) YORP", "(136617) 1994 CC", "(2100) Ra-Shalom", "(4486) Mithra", "(4660) Nereus", "(66391) 1999 KW4"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "34-m antenna", "goldstone.dss13_34m.recv_x", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Goldstone Complex", "Goldstone Complex", "Goldstone Complex"], "data_types": ["Data"], "start_date": "1999-02-07", "stop_date": "2009-06-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/collection_gbo.ast.jpl.radar.shape_models_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/data/collection_gbo.ast.jpl.radar.shape_models_data.xml", "scraped_at": "2026-02-25T20:02:10.750687Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.jpl.radar.shape_models:document::1.0", "title": "Radar shape models of asteroids compiled by Lawrence V1.0", "description": "This data set contains three-dimensional shape models for asteroids observed by ground-based radar facilities. The data set contains shape models for the following asteroids: (2100) Ra-Shalom (4486) Mithra (4660) Nereus (10115) 1992 SK (29075) 1950 DA (Retrograde and Prograde models) (33342) 1998 WT24 (54509) YORP (66391) 1999 KW4 Alpha (primary) and Beta (secondary) (136617) 1994 CC Alpha (primary) (276049) 2002 CE26 Alpha (primary) (341843) 2008 EV5", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(33342) 1998 WT24", "(10115) 1992 SK", "(276049) 2002 CE26", "(29075) 1950 DA", "(341843) 2008 EV5", "(54509) YORP", "(136617) 1994 CC", "(2100) Ra-Shalom", "(4486) Mithra", "(4660) Nereus", "(66391) 1999 KW4"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "34-m antenna", "goldstone.dss13_34m.recv_x", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Goldstone Complex", "Goldstone Complex", "Goldstone Complex"], "data_types": ["Document"], "start_date": "1999-02-07", "stop_date": "2009-06-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/collection_gbo.ast.jpl.radar.shape_models_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.jpl.radar.shape_models_V1_0/document/collection_gbo.ast.jpl.radar.shape_models_document.xml", "scraped_at": "2026-02-25T20:02:10.750693Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.ubv-photometry:document::1.0", "title": "document collection for the \"UBV MEAN ASTEROID COLORS\" bundle", "description": "This is the document collection for the compil.ast.ubv-photometry bundle. This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1951-01-01", "stop_date": "1989-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/collection_compil.ast.ubv-photometry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/document/collection_compil.ast.ubv-photometry_document.xml", "scraped_at": "2026-02-25T20:02:10.750697Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.ubv-photometry:data::1.0", "title": "data collection for the \"UBV MEAN ASTEROID COLORS\" bundle", "description": "This is the data collection for the compil.ast.ubv-photometry bundle. This data set is a compilation of mean U-B and B-V color indices of asteroids, collected from the published literature and from the unpublished Lowell Observatory UBV Asteroid Survey.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1951-01-01", "stop_date": "1989-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/collection_compil.ast.ubv-photometry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.ubv-photometry/data/collection_compil.ast.ubv-photometry_data.xml", "scraped_at": "2026-02-25T20:02:10.750701Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.magnitude-phase:document::1.0", "title": "document collection for the \"KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS\" bundle", "description": "This is the document collection for the compil.ast.magnitude-phase bundle. A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1978-04-28", "stop_date": "2008-06-30", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/collection_compil.ast.magnitude-phase_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/document/collection_compil.ast.magnitude-phase_document.xml", "scraped_at": "2026-02-25T20:02:10.750705Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.magnitude-phase:data::1.0", "title": "data collection for the \"KHARKIV ASTEROID MAGNITUDE-PHASE RELATIONS\" bundle", "description": "This is the data collection for the compil.ast.magnitude-phase bundle. A database of asteroid magnitude-phase relations compiled at the Institute of Astronomy of Kharkiv Kharazin University by Shevchenko et al., including observations from 1978 through 2008. Mainly the observations were performed at the Institute of Astronomy (Kharkiv, Ukraine) and at the Astrophysics Institute (Dushanbe, Tadjikistan). For most asteroids the magnitude-phase relations were obtained down to phase angles less than 1 deg. For some asteroids the magnitudes are presented in three (UBV) or four (BVRI) standard spectral bands.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1978-04-28", "stop_date": "2008-06-30", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/collection_compil.ast.magnitude-phase_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.magnitude-phase/data/collection_compil.ast.magnitude-phase_data.xml", "scraped_at": "2026-02-25T20:02:10.750708Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.colors:document::1.0", "title": "document collection for the \"TNO AND CENTAUR COLORS\" bundle", "description": "This is the document collection for the compil.tno-centaur.colors bundle. This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "Multiple Comets"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1985-09-23", "stop_date": "2014-03-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/collection_compil.tno-centaur.colors_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/document/collection_compil.tno-centaur.colors_document.xml", "scraped_at": "2026-02-25T20:02:10.750712Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.colors:data::1.0", "title": "data collection for the \"TNO AND CENTAUR COLORS\" bundle", "description": "This is the data collection for the compil.tno-centaur.colors bundle. This data set is intended to include published broadband colors of centaurs and Transneptunian Objects (TNOs) published through March 2014. It includes some comets with Centaur orbits. It supersedes all versions of the TNO colors data set EAR-A-3-RDR-TNO-PHOT.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "Multiple Comets"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1985-09-23", "stop_date": "2014-03-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/collection_compil.tno-centaur.colors_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.colors/data/collection_compil.tno-centaur.colors_data.xml", "scraped_at": "2026-02-25T20:02:10.750716Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.lightcurves:document::1.0", "title": "document collection for the \"TRANS-NEPTUNIAN OBJECT LIGHTCURVES\" bundle", "description": "This is the document collection for the compil.tno-centaur.lightcurves bundle. This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(19521) Chaos", "(79360) Sila-Nunam", "(91133) 1998 HK151", "1998 XY95", "(40314) 1999 KR16", "(47932) 2000 GN171", "(150642) 2001 CZ31", "(82155) 2001 FZ173", "(38628) Huya", "Multiple Asteroids", "(15875) 1996 TP66", "(19255) 1994 VK8", "(19308) 1996 TO66", "(26181) 1996 GQ21", "(26375) 1999 DE9", "(33128) 1998 BU48", "(33340) 1998 VG44"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1997-08-27", "stop_date": "2001-11-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/collection_compil.tno-centaur.lightcurves_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/document/collection_compil.tno-centaur.lightcurves_document.xml", "scraped_at": "2026-02-25T20:02:10.750720Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.tno-centaur.lightcurves:data::1.0", "title": "data collection for the \"TRANS-NEPTUNIAN OBJECT LIGHTCURVES\" bundle", "description": "This is the data collection for the compil.tno-centaur.lightcurves bundle. This data set includes a collection of published lightcurves of trans-Neptunian objects published through December 2002. The collection includes lightcurves of 18 TNOs.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(19521) Chaos", "(79360) Sila-Nunam", "(91133) 1998 HK151", "1998 XY95", "(40314) 1999 KR16", "(47932) 2000 GN171", "(150642) 2001 CZ31", "(82155) 2001 FZ173", "(38628) Huya", "Multiple Asteroids", "(15875) 1996 TP66", "(19255) 1994 VK8", "(19308) 1996 TO66", "(26181) 1996 GQ21", "(26375) 1999 DE9", "(33128) 1998 BU48", "(33340) 1998 VG44"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1997-08-27", "stop_date": "2001-11-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/collection_compil.tno-centaur.lightcurves_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.tno-centaur.lightcurves/data/collection_compil.tno-centaur.lightcurves_data.xml", "scraped_at": "2026-02-25T20:02:10.750725Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.masses:document::1.0", "title": "document collection for the \"ASTEROID MASSES\" bundle", "description": "This is the document collection for the compil.ast.masses bundle. This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1991-01-01", "stop_date": "2012-04-18", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/collection_compil.ast.masses_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/document/collection_compil.ast.masses_document.xml", "scraped_at": "2026-02-25T20:02:10.750728Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.masses:data::1.0", "title": "data collection for the \"ASTEROID MASSES\" bundle", "description": "This is the data collection for the compil.ast.masses bundle. This collection of asteroid masses and densities was compiled from the published literature by Jim Baer, Steve Chesley, and Dan Britt. Size and shape information are included as well to show the source of the tabulated bulk density. This is the version of the compilation as of April 18, 2012.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1991-01-01", "stop_date": "2012-04-18", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/collection_compil.ast.masses_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.masses/data/collection_compil.ast.masses_data.xml", "scraped_at": "2026-02-25T20:02:10.750737Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.vilas.spectra:document::1.0", "title": "document collection for the \"VILAS ASTEROID SPECTRA\" bundle", "description": "This is the document collection for the gbo.ast.vilas.spectra bundle. This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(102) Miriam", "(1036) Ganymed", "(1162) Larissa", "(1167) Dubiago", "(1172) Aneas", "(1208) Troilus", "(121) Hermione", "(130) Elektra", "(134) Sophrosyne", "(1368) Numidia", "(1390) Abastumani", "(142) Polana", "(1467) Mashona", "(1512) Oulu", "(152) Atala", "(153) Hilda", "(165) Loreley", "(17) Thetis", "(1722) Goffin", "(181) Eucharis", "(1866) Sisyphus", "(1867) Deiphobus", "(187) Lamberta", "(19) Fortuna", "(190) Ismene", "(2) Pallas", "(2113) Ehrdni", "(2241) Alcathous", "(225) Henrietta", "(2357) Phereclos", "(2674) Pandarus", "(276) Adelheid", "(292) Ludovica", "(31) Euphrosyne", "(326) Tamara", "(3288) Seleucus", "(334) Chicago", "(368) Haidea", "(375) Ursula", "(407) Arachne", "(409) Aspasia", "(41) Daphne", "(420) Bertholda", "(433) Eros", "(466) Tisiphone", "(483) Seppina", "(495) Eulalia", "(499) Venusia", "(528) Rezia", "(54) Alexandra", "(559) Nanon", "(566) Stereoskopia", "(570) Kythera", "(606) Brangane", "(624) Hektor", "(643) Scheherezade", "(65) Cybele", "(654) Zelinda", "(66) Maja", "(692) Hippodamia", "(695) Bella", "(709) Fringilla", "(733) Mocia", "(748) Simeisa", "(76) Freia", "(773) Irmintraud", "(776) Berbericia", "(797) Montana", "(87) Sylvia", "(877) Walkure", "(884) Priamus", "(908) Buda", "(914) Palisana", "(940) Kordula", "Multiple Asteroids"], "instruments": ["CTIO 1.5-meter Cassegrain Spectrograph", "1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory", "Fink Spectrograph", "1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station", "CTIO 1.0m 2DFrutti Spectrograph", "1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory", "Larson IHW spectrograph", "1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory", "Mount Bigelow (Catalina) Station", "Cerro Tololo Inter-American Observatory", "Mount Bigelow (Catalina) Station"], "data_types": ["Document"], "start_date": "1982-02-04", "stop_date": "1998-09-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/collection_gbo.ast.vilas.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/document/collection_gbo.ast.vilas.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750745Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.vilas.spectra:data::1.0", "title": "data collection for the \"VILAS ASTEROID SPECTRA\" bundle", "description": "This is the data collection for the gbo.ast.vilas.spectra bundle. This data set contains 81 published spectra of asteroids obtained by Faith Vilas during the years 1982 - 1992.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(102) Miriam", "(1036) Ganymed", "(1162) Larissa", "(1167) Dubiago", "(1172) Aneas", "(1208) Troilus", "(121) Hermione", "(130) Elektra", "(134) Sophrosyne", "(1368) Numidia", "(1390) Abastumani", "(142) Polana", "(1467) Mashona", "(1512) Oulu", "(152) Atala", "(153) Hilda", "(165) Loreley", "(17) Thetis", "(1722) Goffin", "(181) Eucharis", "(1866) Sisyphus", "(1867) Deiphobus", "(187) Lamberta", "(19) Fortuna", "(190) Ismene", "(2) Pallas", "(2113) Ehrdni", "(2241) Alcathous", "(225) Henrietta", "(2357) Phereclos", "(2674) Pandarus", "(276) Adelheid", "(292) Ludovica", "(31) Euphrosyne", "(326) Tamara", "(3288) Seleucus", "(334) Chicago", "(368) Haidea", "(375) Ursula", "(407) Arachne", "(409) Aspasia", "(41) Daphne", "(420) Bertholda", "(433) Eros", "(466) Tisiphone", "(483) Seppina", "(495) Eulalia", "(499) Venusia", "(528) Rezia", "(54) Alexandra", "(559) Nanon", "(566) Stereoskopia", "(570) Kythera", "(606) Brangane", "(624) Hektor", "(643) Scheherezade", "(65) Cybele", "(654) Zelinda", "(66) Maja", "(692) Hippodamia", "(695) Bella", "(709) Fringilla", "(733) Mocia", "(748) Simeisa", "(76) Freia", "(773) Irmintraud", "(776) Berbericia", "(797) Montana", "(87) Sylvia", "(877) Walkure", "(884) Priamus", "(908) Buda", "(914) Palisana", "(940) Kordula", "Multiple Asteroids"], "instruments": ["CTIO 1.5-meter Cassegrain Spectrograph", "1.5-m Ritchey-Chretien Cassegrain reflector at Cerro Tololo Inter-American Observatory", "Fink Spectrograph", "1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station", "CTIO 1.0m 2DFrutti Spectrograph", "1-m Boller & Chivens Ritchey-Chretien reflector at Cerro Tololo Inter-American Observatory", "Larson IHW spectrograph", "1.54-m Cassegrain/Coude reflector at Mount Bigelow (Catalina) Station"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory", "Mount Bigelow (Catalina) Station", "Cerro Tololo Inter-American Observatory", "Mount Bigelow (Catalina) Station"], "data_types": ["Data"], "start_date": "1982-02-04", "stop_date": "1998-09-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/collection_gbo.ast.vilas.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.vilas.spectra/data/collection_gbo.ast.vilas.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750754Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-vesta.reddy.spectra:document::1.0", "title": "document collection for the \"REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA\" bundle", "description": "This is the document collection for the gbo.ast-vesta.reddy.spectra bundle. This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(4) Vesta"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "2010-03-27", "stop_date": "2010-03-27", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/collection_gbo.ast-vesta.reddy.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/document/collection_gbo.ast-vesta.reddy.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750759Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-vesta.reddy.spectra:data::1.0", "title": "data collection for the \"REDDY VESTA ROTATIONALLY RESOLVED NEAR-INFRARED SPECTRA\" bundle", "description": "This is the data collection for the gbo.ast-vesta.reddy.spectra bundle. This data set contains low-resolution near-infrared (~0.7-2.5 microns) spectra of main belt asteroid (4) Vesta observed with the SpeX instrument on NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i, and reported in Reddy et al. (2011). This data set archives reduced, calibrated spectra that were obtained as part of ground-based characterization of Vesta prior to the arrival of Dawn spacecraft. They have been used for detailed rotationally-resolved mineralogical/compositional analysis.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(4) Vesta"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "2010-03-27", "stop_date": "2010-03-27", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/collection_gbo.ast-vesta.reddy.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-vesta.reddy.spectra/data/collection_gbo.ast-vesta.reddy.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750763Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.24-color-survey:document::1.0", "title": "document collection for the \"24-COLOR ASTEROID SURVEY\" bundle", "description": "This is the document collection for the gbo.ast.24-color-survey bundle. This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(1015) Christa", "(1019) Strackea", "(1025) Riema", "(1036) Ganymed", "(105) Artemis", "(1055) Tynka", "(1058) Grubba", "(106) Dione", "(1075) Helina", "(108) Hecuba", "(1088) Mitaka", "(11) Parthenope", "(110) Lydia", "(1103) Sequoia", "(113) Amalthea", "(115) Thyra", "(116) Sirona", "(1162) Larissa", "(1172) Aneas", "(1173) Anchises", "(119) Althaea", "(1199) Geldonia", "(12) Victoria", "(1208) Troilus", "(121) Hermione", "(1212) Francette", "(122) Gerda", "(124) Alkeste", "(1263) Varsavia", "(128) Nemesis", "(1284) Latvia", "(129) Antigone", "(13) Egeria", "(130) Elektra", "(1317) Silvretta", "(1330) Spiridonia", "(136) Austria", "(1364) Safara", "(139) Juewa", "(14) Irene", "(140) Siwa", "(141) Lumen", "(144) Vibilia", "(1449) Virtanen", "(145) Adeona", "(149) Medusa", "(1493) Sigrid", "(15) Eunomia", "(150) Nuwa", "(1512) Oulu", "(1529) Oterma", "(156) Xanthippe", "(1566) Icarus", "(158) Koronis", "(1580) Betulia", "(1595) Tanga", "(16) Psyche", "(1620) Geographos", "(1627) Ivar", "(163) Erigone", "(1636) Porter", "(164) Eva", "(1645) Waterfield", "(1656) Suomi", "(166) Rhodope", "(167) Urda", "(1685) Toro", "(169) Zelia", "(17) Thetis", "(170) Maria", "(1717) Arlon", "(1727) Mette", "(175) Andromache", "(176) Iduna", "(18) Melpomene", "(181) Eucharis", "(1830) Pogson", "(185) Eunike", "(1862) Apollo", "(19) Fortuna", "(1915) Quetzalcoatl", "(192) Nausikaa", "(194) Prokne", "(196) Philomela", "(197) Arete", "(198) Ampella", "(2) Pallas", "(20) Massalia", "(200) Dynamene", "(208) Lacrimosa", "(21) Lutetia", "(210) Isabella", "(2100) Ra-Shalom", "(213) Lilaea", "(216) Kleopatra", "(217) Eudora", "(22) Kalliope", "(220) Stephania", "(2201) Oljato", "(221) Eos", "(23) Thalia", "(230) Athamantis", "(236) Honoria", "(24) Themis", "(243) Ida", "(246) Asporina", "(25) Phocaea", "(258) Tyche", "(26) Proserpina", "(262) Valda", "(264) Libussa", "(268) Adorea", "(27) Euterpe", "(279) Thule", "(28) Bellona", "(281) Lucretia", "(29) Amphitrite", "(293) Brasilia", "(3) Juno", "(30) Urania", "(308) Polyxo", "(31) Euphrosyne", "(3102) Krok", "(313) Chaldaea", "(32) Pomona", "(323) Brucia", "(324) Bamberga", "(325) Heidelberga", "(326) Tamara", "(335) Roberta", "(337) Devosa", "(338) Budrosa", "(339) Dorothea", "(34) Circe", "(340) Eduarda", "(341) California", "(344) Desiderata", "(345) Tercidina", "(347) Pariana", "(349) Dembowska", "(354) Eleonora", "(356) Liguria", "(36) Atalante", "(361) Bononia", "(363) Padua", "(365) Corduba", "(37) Fides", "(372) Palma", "(374) Burgundia", "(375) Ursula", "(386) Siegena", "(389) Industria", "(39) Laetitia", "(391) Ingeborg", "(4) Vesta", "(40) Harmonia", "(402) Chloe", "(403) Cyane", "(409) Aspasia", "(41) Daphne", "(413) Edburga", "(415) Palatia", "(416) Vaticana", "(419) Aurelia", "(42) Isis", "(423) Diotima", "(426) Hippo", "(43) Ariadne", "(433) Eros", "(434) Hungaria", "(435) Ella", "(439) Ohio", "(44) Nysa", "(441) Bathilde", "(446) Aeternitas", "(45) Eugenia", "(453) Tea", "(46) Hestia", "(462) Eriphyla", "(468) Lina", "(471) Papagena", "(472) Roma", "(48) Doris", "(481) Emita", "(488) Kreusa", "(490) Veritas", "(496) Gryphia", "(5) Astraea", "(505) Cava", "(51) Nemausa", "(510) Mabella", "(511) Davida", "(513) Centesima", "(52) Europa", "(526) Jena", "(53) Kalypso", "(532) Herculina", "(54) Alexandra", "(554) Peraga", "(558) Carmen", "(560) Delila", "(562) Salome", "(563) Suleika", "(574) Reginhild", "(579) Sidonia", "(5797) Bivoj", "(58) Concordia", "(582) Olympia", "(584) Semiramis", "(588) Achilles", "(599) Luisa", "(6) Hebe", "(60) Echo", "(613) Ginevra", "(617) Patroclus", "(62) Erato", "(624) Hektor", "(628) Christine", "(63) Ausonia", "(639) Latona", "(64) Angelina", "(648) Pippa", "(65) Cybele", "(654) Zelinda", "(66) Maja", "(660) Crescentia", "(674) Rachele", "(676) Melitta", "(68) Leto", "(69) Hesperia", "(695) Bella", "(696) Leonora", "(7) Iris", "(704) Interamnia", "(71) Niobe", "(712) Boliviana", "(714) Ulula", "(739) Mandeville", "(741) Botolphia", "(747) Winchester", "(750) Oskar", "(758) Mancunia", "(760) Massinga", "(770) Bali", "(772) Tanete", "(773) Irmintraud", "(78) Diana", "(781) Kartvelia", "(782) Montefiore", "(783) Nora", "(785) Zwetana", "(79) Eurynome", "(790) Pretoria", "(8) Flora", "(80) Sappho", "(801) Helwerthia", "(811) Nauheima", "(82) Alkmene", "(83) Beatrix", "(839) Valborg", "(84) Klio", "(846) Lipperta", "(85) Io", "(858) El Djezair", "(87) Sylvia", "(88) Thisbe", "(884) Priamus", "(887) Alinda", "(89) Julia", "(895) Helio", "(9) Metis", "(90) Antiope", "(909) Ulla", "(911) Agamemnon", "(92) Undina", "(925) Alphonsina", "(93) Minerva", "(94) Aurora", "(944) Hidalgo", "(969) Leocadia", "(97) Klotho", "(976) Benjamina", "Multiple Asteroids"], "instruments": ["DUAL BEAM PHOTOMETER"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": "1981-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/collection_gbo.ast.24-color-survey_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/document/collection_gbo.ast.24-color-survey_document.xml", "scraped_at": "2026-02-25T20:02:10.750779Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.24-color-survey:data::1.0", "title": "data collection for the \"24-COLOR ASTEROID SURVEY\" bundle", "description": "This is the data collection for the gbo.ast.24-color-survey bundle. This bundle is comprised of asteroid flux data measured in 26 filters using the McCord dual beam photometer, and covering the range 0.32 - 1.08 microns for 285 numbered asteroids, as published in Chapman & Gaffey (1979b) and McFadden, et al. (1984).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(1015) Christa", "(1019) Strackea", "(1025) Riema", "(1036) Ganymed", "(105) Artemis", "(1055) Tynka", "(1058) Grubba", "(106) Dione", "(1075) Helina", "(108) Hecuba", "(1088) Mitaka", "(11) Parthenope", "(110) Lydia", "(1103) Sequoia", "(113) Amalthea", "(115) Thyra", "(116) Sirona", "(1162) Larissa", "(1172) Aneas", "(1173) Anchises", "(119) Althaea", "(1199) Geldonia", "(12) Victoria", "(1208) Troilus", "(121) Hermione", "(1212) Francette", "(122) Gerda", "(124) Alkeste", "(1263) Varsavia", "(128) Nemesis", "(1284) Latvia", "(129) Antigone", "(13) Egeria", "(130) Elektra", "(1317) Silvretta", "(1330) Spiridonia", "(136) Austria", "(1364) Safara", "(139) Juewa", "(14) Irene", "(140) Siwa", "(141) Lumen", "(144) Vibilia", "(1449) Virtanen", "(145) Adeona", "(149) Medusa", "(1493) Sigrid", "(15) Eunomia", "(150) Nuwa", "(1512) Oulu", "(1529) Oterma", "(156) Xanthippe", "(1566) Icarus", "(158) Koronis", "(1580) Betulia", "(1595) Tanga", "(16) Psyche", "(1620) Geographos", "(1627) Ivar", "(163) Erigone", "(1636) Porter", "(164) Eva", "(1645) Waterfield", "(1656) Suomi", "(166) Rhodope", "(167) Urda", "(1685) Toro", "(169) Zelia", "(17) Thetis", "(170) Maria", "(1717) Arlon", "(1727) Mette", "(175) Andromache", "(176) Iduna", "(18) Melpomene", "(181) Eucharis", "(1830) Pogson", "(185) Eunike", "(1862) Apollo", "(19) Fortuna", "(1915) Quetzalcoatl", "(192) Nausikaa", "(194) Prokne", "(196) Philomela", "(197) Arete", "(198) Ampella", "(2) Pallas", "(20) Massalia", "(200) Dynamene", "(208) Lacrimosa", "(21) Lutetia", "(210) Isabella", "(2100) Ra-Shalom", "(213) Lilaea", "(216) Kleopatra", "(217) Eudora", "(22) Kalliope", "(220) Stephania", "(2201) Oljato", "(221) Eos", "(23) Thalia", "(230) Athamantis", "(236) Honoria", "(24) Themis", "(243) Ida", "(246) Asporina", "(25) Phocaea", "(258) Tyche", "(26) Proserpina", "(262) Valda", "(264) Libussa", "(268) Adorea", "(27) Euterpe", "(279) Thule", "(28) Bellona", "(281) Lucretia", "(29) Amphitrite", "(293) Brasilia", "(3) Juno", "(30) Urania", "(308) Polyxo", "(31) Euphrosyne", "(3102) Krok", "(313) Chaldaea", "(32) Pomona", "(323) Brucia", "(324) Bamberga", "(325) Heidelberga", "(326) Tamara", "(335) Roberta", "(337) Devosa", "(338) Budrosa", "(339) Dorothea", "(34) Circe", "(340) Eduarda", "(341) California", "(344) Desiderata", "(345) Tercidina", "(347) Pariana", "(349) Dembowska", "(354) Eleonora", "(356) Liguria", "(36) Atalante", "(361) Bononia", "(363) Padua", "(365) Corduba", "(37) Fides", "(372) Palma", "(374) Burgundia", "(375) Ursula", "(386) Siegena", "(389) Industria", "(39) Laetitia", "(391) Ingeborg", "(4) Vesta", "(40) Harmonia", "(402) Chloe", "(403) Cyane", "(409) Aspasia", "(41) Daphne", "(413) Edburga", "(415) Palatia", "(416) Vaticana", "(419) Aurelia", "(42) Isis", "(423) Diotima", "(426) Hippo", "(43) Ariadne", "(433) Eros", "(434) Hungaria", "(435) Ella", "(439) Ohio", "(44) Nysa", "(441) Bathilde", "(446) Aeternitas", "(45) Eugenia", "(453) Tea", "(46) Hestia", "(462) Eriphyla", "(468) Lina", "(471) Papagena", "(472) Roma", "(48) Doris", "(481) Emita", "(488) Kreusa", "(490) Veritas", "(496) Gryphia", "(5) Astraea", "(505) Cava", "(51) Nemausa", "(510) Mabella", "(511) Davida", "(513) Centesima", "(52) Europa", "(526) Jena", "(53) Kalypso", "(532) Herculina", "(54) Alexandra", "(554) Peraga", "(558) Carmen", "(560) Delila", "(562) Salome", "(563) Suleika", "(574) Reginhild", "(579) Sidonia", "(5797) Bivoj", "(58) Concordia", "(582) Olympia", "(584) Semiramis", "(588) Achilles", "(599) Luisa", "(6) Hebe", "(60) Echo", "(613) Ginevra", "(617) Patroclus", "(62) Erato", "(624) Hektor", "(628) Christine", "(63) Ausonia", "(639) Latona", "(64) Angelina", "(648) Pippa", "(65) Cybele", "(654) Zelinda", "(66) Maja", "(660) Crescentia", "(674) Rachele", "(676) Melitta", "(68) Leto", "(69) Hesperia", "(695) Bella", "(696) Leonora", "(7) Iris", "(704) Interamnia", "(71) Niobe", "(712) Boliviana", "(714) Ulula", "(739) Mandeville", "(741) Botolphia", "(747) Winchester", "(750) Oskar", "(758) Mancunia", "(760) Massinga", "(770) Bali", "(772) Tanete", "(773) Irmintraud", "(78) Diana", "(781) Kartvelia", "(782) Montefiore", "(783) Nora", "(785) Zwetana", "(79) Eurynome", "(790) Pretoria", "(8) Flora", "(80) Sappho", "(801) Helwerthia", "(811) Nauheima", "(82) Alkmene", "(83) Beatrix", "(839) Valborg", "(84) Klio", "(846) Lipperta", "(85) Io", "(858) El Djezair", "(87) Sylvia", "(88) Thisbe", "(884) Priamus", "(887) Alinda", "(89) Julia", "(895) Helio", "(9) Metis", "(90) Antiope", "(909) Ulla", "(911) Agamemnon", "(92) Undina", "(925) Alphonsina", "(93) Minerva", "(94) Aurora", "(944) Hidalgo", "(969) Leocadia", "(97) Klotho", "(976) Benjamina", "Multiple Asteroids"], "instruments": ["DUAL BEAM PHOTOMETER"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": "1981-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/collection_gbo.ast.24-color-survey_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.24-color-survey/data/collection_gbo.ast.24-color-survey_data.xml", "scraped_at": "2026-02-25T20:02:10.750795Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra:document::1.0", "title": "document collection for the \"SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS\" bundle", "description": "This is the document collection for the gbo.ast-trojan.fornasier-etal.spectra bundle. This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1172) Aneas", "(1173) Anchises", "(18268) Dardanos", "(1871) Astyanax", "(192388) 1996 RD29", "(192929) 2000 AT44", "(2223) Sarpedon", "(2357) Phereclos", "(30698) Hippokoon", "(3548) Eurybates", "(4829) Sergestus", "(5130) Ilioneus", "(5511) Cloanthus", "(6998) Tithonus", "(9430) Erichthonios", "(9818) Eurymachos", "Multiple Asteroids", "(105685) 2000 SC51", "(11089) 1994 CS8", "(111113) 2001 VK85", "(11351) Leucus", "(11488) 1988 RM11", "(11663) 1997 GO24", "(120453) 1988 RE12", "(124729) 2001 SB173", "(12921) 1998 WZ5", "(13862) 1999 XT160", "(14707) 2000 CC20", "(15502) 1999 NV27", "(15977) 1998 MA11", "(163135) 2002 CT22", "(163216) 2002 EN68", "(17416) 1988 RR10", "(18060) 1999 XJ156", "(18137) 2000 OU30", "(18493) Demoleon", "(18940) 2000 QV49", "(23549) Epicles", "(23694) 1997 KZ3", "(24233) 1999 XD94", "(24341) 2000 AJ87", "(24380) 2000 AA160", "(24420) 2000 BU22", "(24426) 2000 CR12", "(24452) 2000 QU167", "(24467) 2000 SS165", "(25347) 1999 RQ116", "(28958) 2001 CQ42", "(31820) 1999 RT186", "(31821) 1999 RK225", "(32430) 2000 RQ83", "(32615) 2001 QU277", "(32794) 1989 UE5", "(34785) 2001 RG87", "(39285) 2001 BP75", "(4035) 1986 WD", "(43212) 2000 AL113", "(47967) 2000 SL298", "(48249) 2001 SY345", "(48252) 2001 TL212", "(51359) 2000 SC17", "(53469) 2000 AX8", "(56968) 2000 SA92", "(65150) 2002 CA126", "(65225) 2002 EK44", "(6545) 1986 TR6", "(7352) 1994 CO", "(76804) 2000 QE", "(84709) 2002 VW120", "(9030) 1989 UX5", "(99328) 2001 UY123"], "instruments": ["Eso Multimode Instrument", "New Technology Telescope (NTT) at European Southern Observatory"], "instrument_hosts": ["European Southern Observatory"], "data_types": ["Document"], "start_date": "2002-11-09", "stop_date": "2005-01-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/collection_gbo.ast-trojan.fornasier-etal.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/document/collection_gbo.ast-trojan.fornasier-etal.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750805Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-trojan.fornasier-etal.spectra:data::1.0", "title": "data collection for the \"SPECTROSCOPY AND PHOTOMETRY OF JUPITER TROJANS\" bundle", "description": "This is the data collection for the gbo.ast-trojan.fornasier-etal.spectra bundle. This data set contains the results of the visible spectroscopic and photometric survey of Jupiter Trojans reported in Fornasier et al. 2004 and Fornasier et al. 2007. The survey was carried out in the years 2002-2005 at the 3.5 m New Technology Telescope of the European Southern Observatory at La Silla, Chile. Included are visible spectroscopy and BVRI photometry of 73 Jupiter Trojans.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1172) Aneas", "(1173) Anchises", "(18268) Dardanos", "(1871) Astyanax", "(192388) 1996 RD29", "(192929) 2000 AT44", "(2223) Sarpedon", "(2357) Phereclos", "(30698) Hippokoon", "(3548) Eurybates", "(4829) Sergestus", "(5130) Ilioneus", "(5511) Cloanthus", "(6998) Tithonus", "(9430) Erichthonios", "(9818) Eurymachos", "Multiple Asteroids", "(105685) 2000 SC51", "(11089) 1994 CS8", "(111113) 2001 VK85", "(11351) Leucus", "(11488) 1988 RM11", "(11663) 1997 GO24", "(120453) 1988 RE12", "(124729) 2001 SB173", "(12921) 1998 WZ5", "(13862) 1999 XT160", "(14707) 2000 CC20", "(15502) 1999 NV27", "(15977) 1998 MA11", "(163135) 2002 CT22", "(163216) 2002 EN68", "(17416) 1988 RR10", "(18060) 1999 XJ156", "(18137) 2000 OU30", "(18493) Demoleon", "(18940) 2000 QV49", "(23549) Epicles", "(23694) 1997 KZ3", "(24233) 1999 XD94", "(24341) 2000 AJ87", "(24380) 2000 AA160", "(24420) 2000 BU22", "(24426) 2000 CR12", "(24452) 2000 QU167", "(24467) 2000 SS165", "(25347) 1999 RQ116", "(28958) 2001 CQ42", "(31820) 1999 RT186", "(31821) 1999 RK225", "(32430) 2000 RQ83", "(32615) 2001 QU277", "(32794) 1989 UE5", "(34785) 2001 RG87", "(39285) 2001 BP75", "(4035) 1986 WD", "(43212) 2000 AL113", "(47967) 2000 SL298", "(48249) 2001 SY345", "(48252) 2001 TL212", "(51359) 2000 SC17", "(53469) 2000 AX8", "(56968) 2000 SA92", "(65150) 2002 CA126", "(65225) 2002 EK44", "(6545) 1986 TR6", "(7352) 1994 CO", "(76804) 2000 QE", "(84709) 2002 VW120", "(9030) 1989 UX5", "(99328) 2001 UY123"], "instruments": ["Eso Multimode Instrument", "New Technology Telescope (NTT) at European Southern Observatory"], "instrument_hosts": ["European Southern Observatory"], "data_types": ["Data"], "start_date": "2002-11-09", "stop_date": "2005-01-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/collection_gbo.ast-trojan.fornasier-etal.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-trojan.fornasier-etal.spectra/data/collection_gbo.ast-trojan.fornasier-etal.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750839Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.sdss-moc.phot:document::1.0", "title": "document collection for the \"SDSS MOVING OBJECT CATALOG\" bundle", "description": "This is the document collection for the gbo.sdss-moc.phot bundle. The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "Calibration Target"], "instruments": ["SDSS Photometric Camera", "2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"], "instrument_hosts": ["Apache Point Observatory"], "data_types": ["Document"], "start_date": "1998-09-19", "stop_date": "2007-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/collection_gbo.sdss-moc.phot_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/document/collection_gbo.sdss-moc.phot_document.xml", "scraped_at": "2026-02-25T20:02:10.750844Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.sdss-moc.phot:data::1.0", "title": "data collection for the \"SDSS MOVING OBJECT CATALOG\" bundle", "description": "This is the data collection for the gbo.sdss-moc.phot bundle. The Sloan Digital Sky Survey (SDSS) Moving Object Catalog 4th release lists astrometric and photometric data for moving objects detected in the SDSS. The catalog includes various identification parameters, SDSS astrometric measurements (five SDSS magnitudes and their errors), and orbital elements for previously cataloged asteroids. The data set also includes a list of the runs from which data are included, and filter response curves.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "Calibration Target"], "instruments": ["SDSS Photometric Camera", "2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"], "instrument_hosts": ["Apache Point Observatory"], "data_types": ["Data"], "start_date": "1998-09-19", "stop_date": "2007-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/collection_gbo.sdss-moc.phot_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.sdss-moc.phot/data/collection_gbo.sdss-moc.phot_data.xml", "scraped_at": "2026-02-25T20:02:10.750848Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.triad.radiometry:document::1.0", "title": "document collection for the \"TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS \" bundle", "description": "This is the document collection for the compil.ast.triad.radiometry bundle. This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1972-01-01", "stop_date": "1978-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/collection_compil.ast.triad.radiometry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/document/collection_compil.ast.triad.radiometry_document.xml", "scraped_at": "2026-02-25T20:02:10.750852Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.triad.radiometry:data::1.0", "title": "data collection for the \"TRIAD RADIOMETRIC DIAMETERS AND ALBEDOS \" bundle", "description": "This is the data collection for the compil.ast.triad.radiometry bundle. This data set reproduces the Tucson Revised Index of Asteroid Data (TRIAD) radiometric asteroid diameters and albedos tabulated in Morrison and Zellner (1979). Albedos and diameters for 195 asteroids are included.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1972-01-01", "stop_date": "1978-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/collection_compil.ast.triad.radiometry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.triad.radiometry/data/collection_compil.ast.triad.radiometry_data.xml", "scraped_at": "2026-02-25T20:02:10.750855Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.sdss-based-taxonomy:document::1.0", "title": "document collection for the \"SDSS-BASED ASTEROID TAXONOMY\" bundle", "description": "This is the document collection for the ast.sdss-based-taxonomy bundle. The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["SDSS Photometric Camera", "2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"], "instrument_hosts": ["Apache Point Observatory"], "data_types": ["Document"], "start_date": "1998-09-19", "stop_date": "2007-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/collection_ast.sdss-based-taxonomy_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/document/collection_ast.sdss-based-taxonomy_document.xml", "scraped_at": "2026-02-25T20:02:10.750859Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.sdss-based-taxonomy:data::1.0", "title": "data collection for the \"SDSS-BASED ASTEROID TAXONOMY\" bundle", "description": "This is the data collection for the ast.sdss-based-taxonomy bundle. The Sloan Digital Sky Survey Moving Object Catalog (SDSS-MOC) is a large data set that provides five-filter magnitudes and astrometric information for all moving objects identified in the SDSS images (Izevic et al., 2010). The photometric observations were classified by Carvano et al. (2010) into nine taxonomic classes: Vp, Op, Qp, Sp, Ap, Lp, Dp, Xp and Cp, which are related to the classes and complexes of Bus Taxonomy (Bus & Binzel, 2002b). This data set is contains the taxonomic classification of each SDSS detections and its compilation for each observed asteroid.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["SDSS Photometric Camera", "2.5-m SDSS Ritchey-Chretien altazimuth reflector at Apache Point Observatory"], "instrument_hosts": ["Apache Point Observatory"], "data_types": ["Data"], "start_date": "1998-09-19", "stop_date": "2007-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/collection_ast.sdss-based-taxonomy_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.sdss-based-taxonomy/data/collection_ast.sdss-based-taxonomy_data.xml", "scraped_at": "2026-02-25T20:02:10.750863Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-iannini-family.spectra:document::1.0", "title": "document collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle", "description": "This is the document collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(202951) 1999 RE", "(217773) 2000 RO76", "(122633) 2000 RA80", "(122636) 2000 RZ81", "(147311) 2003 AF89", "(150781) 2001 QO282", "(61207) 2000 OZ7", "(61928) 2000 RP4", "(81550) 2000 HU23", "(87239) 2000 OH45", "(88187) 2000 XZ42"], "instruments": ["Keck Echelle Spectrograph and Imager", "10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"], "instrument_hosts": ["W.M. Keck Observatory"], "data_types": ["Document"], "start_date": "2004-11-10", "stop_date": "2007-03-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/collection_gbo.ast-iannini-family.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/document/collection_gbo.ast-iannini-family.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750867Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-iannini-family.spectra:browse::1.0", "title": "browse collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle", "description": "This is the browse collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(202951) 1999 RE", "(217773) 2000 RO76", "(122633) 2000 RA80", "(122636) 2000 RZ81", "(147311) 2003 AF89", "(150781) 2001 QO282", "(61207) 2000 OZ7", "(61928) 2000 RP4", "(81550) 2000 HU23", "(87239) 2000 OH45", "(88187) 2000 XZ42"], "instruments": ["Keck Echelle Spectrograph and Imager", "10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"], "instrument_hosts": ["W.M. Keck Observatory"], "data_types": ["Browse"], "start_date": "2004-11-10", "stop_date": "2007-03-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/collection_gbo.ast-iannini-family.spectra_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/browse/collection_gbo.ast-iannini-family.spectra_browse.xml", "scraped_at": "2026-02-25T20:02:10.750872Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-iannini-family.spectra:data::1.0", "title": "data collection for the \"IANNINI ASTEROID FAMILY SPECTRA\" bundle", "description": "This is the data collection for the gbo.ast-iannini-family.spectra bundle. Keck/ESI spectra of 11 Iannini asteroid family members were obtained over visual wavelengths. The data have been published in Willman, et al. (2008Icar...195...663W)[WILLMANETAL2008]. The spectra show family likeness and are believed to represent young S class surfaces aged a few million years by space weathering, the dynamically estimated collisional age of the family.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(202951) 1999 RE", "(217773) 2000 RO76", "(122633) 2000 RA80", "(122636) 2000 RZ81", "(147311) 2003 AF89", "(150781) 2001 QO282", "(61207) 2000 OZ7", "(61928) 2000 RP4", "(81550) 2000 HU23", "(87239) 2000 OH45", "(88187) 2000 XZ42"], "instruments": ["Keck Echelle Spectrograph and Imager", "10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory"], "instrument_hosts": ["W.M. Keck Observatory"], "data_types": ["Data"], "start_date": "2004-11-10", "stop_date": "2007-03-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/collection_gbo.ast-iannini-family.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-iannini-family.spectra/data/collection_gbo.ast-iannini-family.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750877Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:document::1.0", "title": "document collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle", "description": "This is the document collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(334008) 2000 UP66", "(5498) Gustafsson", "(7558) Yurlov", "(9147) Kourakuen", "(9254) Shunkai", "(9481) Menchu", "(9553) Colas", "(10537) 1991 RY16", "(111515) 2001 YC91", "(113844) 2002 TV237", "(114544) 2003 BN28", "(122357) 2000 QH49", "(12543) 1998 QM5", "(131010) 2000 XQ9", "(134455) 1998 ST116", "(24941) 1997 JM14", "(26886) 1994 TJ2", "(28034) 1998 EU13", "(28517) 2000 DD7", "(36840) 2000 SH112", "(37304) 2001 EW23", "(38070) Redwine", "(44447) 1998 UM21", "(46690) 1997 AN23", "(53143) 1999 BB9", "(56026) 1998 VN52", "(56570) 2000 JA21", "(60669) 2000 GE4", "(94005) 2000 XO25"], "instruments": ["Keck Echelle Spectrograph and Imager", "10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory", "Supernova Integral Field Spectrograph (SNIFS)", "2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"], "instrument_hosts": ["W.M. Keck Observatory", "Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "2004-11-10", "stop_date": "2008-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/collection_gbo.ast-v-type.moscovitz.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/document/collection_gbo.ast-v-type.moscovitz.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750883Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:browse::1.0", "title": "browse collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle", "description": "This is the browse collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(334008) 2000 UP66", "(5498) Gustafsson", "(7558) Yurlov", "(9147) Kourakuen", "(9254) Shunkai", "(9481) Menchu", "(9553) Colas", "(10537) 1991 RY16", "(111515) 2001 YC91", "(113844) 2002 TV237", "(114544) 2003 BN28", "(122357) 2000 QH49", "(12543) 1998 QM5", "(131010) 2000 XQ9", "(134455) 1998 ST116", "(24941) 1997 JM14", "(26886) 1994 TJ2", "(28034) 1998 EU13", "(28517) 2000 DD7", "(36840) 2000 SH112", "(37304) 2001 EW23", "(38070) Redwine", "(44447) 1998 UM21", "(46690) 1997 AN23", "(53143) 1999 BB9", "(56026) 1998 VN52", "(56570) 2000 JA21", "(60669) 2000 GE4", "(94005) 2000 XO25"], "instruments": ["Keck Echelle Spectrograph and Imager", "10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory", "Supernova Integral Field Spectrograph (SNIFS)", "2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"], "instrument_hosts": ["W.M. Keck Observatory", "Mauna Kea Observatory"], "data_types": ["Browse"], "start_date": "2004-11-10", "stop_date": "2008-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/collection_gbo.ast-v-type.moscovitz.spectra_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/browse/collection_gbo.ast-v-type.moscovitz.spectra_browse.xml", "scraped_at": "2026-02-25T20:02:10.750889Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-v-type.moscovitz.spectra:data::1.0", "title": "data collection for the \"SPECTRA OF V-TYPE CANDIDATES FROM THE SDSS MOC\" bundle", "description": "This is the data collection for the gbo.ast-v-type.moscovitz.spectra bundle. These data are the results of a spectroscopic survey designed to target and detect asteroids whose photometric colors are similar to those of Vesta family members and thus may be considered as candidates for having a basaltic composition. The colors of these candidates were measured as part of the 3rd release of the Sloan Digital Sky Survey Moving Object Catalog (Ivezic et al. 2001) [IVEZICETAL2001]. These spectra were obtained with two visible wavelength instruments: the Echellete Spectrograph and Imager (ESI, Sheinis et al. 2002) [SHEINISETAL2002] on Keck II and the Supernova Integral Field Spectrograph (SNIFS, Lantz et al. 2004) [LANTZETAL2004] at the University of Hawaii 2.2m telescope. A subset of these data were published in Moskovitz et al. (2008a, 2008b) [MOSKOVITZETAL2008, MOSKOVITZETAL2008B].", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(334008) 2000 UP66", "(5498) Gustafsson", "(7558) Yurlov", "(9147) Kourakuen", "(9254) Shunkai", "(9481) Menchu", "(9553) Colas", "(10537) 1991 RY16", "(111515) 2001 YC91", "(113844) 2002 TV237", "(114544) 2003 BN28", "(122357) 2000 QH49", "(12543) 1998 QM5", "(131010) 2000 XQ9", "(134455) 1998 ST116", "(24941) 1997 JM14", "(26886) 1994 TJ2", "(28034) 1998 EU13", "(28517) 2000 DD7", "(36840) 2000 SH112", "(37304) 2001 EW23", "(38070) Redwine", "(44447) 1998 UM21", "(46690) 1997 AN23", "(53143) 1999 BB9", "(56026) 1998 VN52", "(56570) 2000 JA21", "(60669) 2000 GE4", "(94005) 2000 XO25"], "instruments": ["Keck Echelle Spectrograph and Imager", "10-m Keck II Ritchey-Chretien altazimuth reflector at W.M. Keck Observatory", "Supernova Integral Field Spectrograph (SNIFS)", "2.24-m Cassegrain/Coude reflector at Mauna Kea Observatory"], "instrument_hosts": ["W.M. Keck Observatory", "Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "2004-11-10", "stop_date": "2008-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/collection_gbo.ast-v-type.moscovitz.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-v-type.moscovitz.spectra/data/collection_gbo.ast-v-type.moscovitz.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750895Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.fieber-beyer.spectra:document::1.0", "title": "document collection for the \"FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA\" bundle", "description": "This is the document collection for the gbo.ast.fieber-beyer.spectra bundle. The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1018) Arnolda", "(1036) Ganymed", "(1064) Aethusa", "(1158) Luda", "(1166) Sakuntala", "(1215) Boyer", "(1358) Gaika", "(1368) Numidia", "(1379) Lomonosowa", "(1391) Carelia", "(1447) Utra", "(1501) Baade", "(1587) Kahrstedt", "(1607) Mavis", "(1644) Rafita", "(1722) Goffin", "(1772) Gagarin", "(1854) Skvortsov", "(1960) Guisan", "(198) Ampella", "(2089) Cetacea", "(248) Lameia", "(2497) Kulikovskij", "(292) Ludovica", "(3066) McFadden", "(329) Svea", "(3345) Tarkovskij", "(335) Roberta", "(355) Gabriella", "(3637) O'Meara", "(3760) Poutanen", "(3999) Aristarchus", "(421) Zahringia", "(46) Hestia", "(495) Eulalia", "(556) Phyllis", "(5676) Voltaire", "(619) Triberga", "(623) Chimaera", "(652) Jubilatrix", "(660) Crescentia", "(6649) Yokotatakao", "(695) Bella", "(714) Ulula", "(787) Moskva", "(797) Montana", "(875) Nymphe", "(879) Ricarda", "(897) Lysistrata", "(908) Buda", "(974) Lioba", "Multiple Asteroids", "(6212) 1993 MS1"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "2000-06-30", "stop_date": "2014-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/collection_gbo.ast.fieber-beyer.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/document/collection_gbo.ast.fieber-beyer.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750902Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.fieber-beyer.spectra:data::1.0", "title": "data collection for the \"FIEBER-BEYER IRTF MAINBELT ASTEROID SPECTRA\" bundle", "description": "This is the data collection for the gbo.ast.fieber-beyer.spectra bundle. The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained and used in Sherry Fieber-Beyer's Ph.D. dissertation at the University of North Dakota and archives reduced, calibrated spectra subsequent 2010. The research focused on asteroids in a zone centered on the 3:1 resonance. These spectra were used to mineralogically characterize asteroids in this zone in an attempt to identify their meteorite analogs.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1018) Arnolda", "(1036) Ganymed", "(1064) Aethusa", "(1158) Luda", "(1166) Sakuntala", "(1215) Boyer", "(1358) Gaika", "(1368) Numidia", "(1379) Lomonosowa", "(1391) Carelia", "(1447) Utra", "(1501) Baade", "(1587) Kahrstedt", "(1607) Mavis", "(1644) Rafita", "(1722) Goffin", "(1772) Gagarin", "(1854) Skvortsov", "(1960) Guisan", "(198) Ampella", "(2089) Cetacea", "(248) Lameia", "(2497) Kulikovskij", "(292) Ludovica", "(3066) McFadden", "(329) Svea", "(3345) Tarkovskij", "(335) Roberta", "(355) Gabriella", "(3637) O'Meara", "(3760) Poutanen", "(3999) Aristarchus", "(421) Zahringia", "(46) Hestia", "(495) Eulalia", "(556) Phyllis", "(5676) Voltaire", "(619) Triberga", "(623) Chimaera", "(652) Jubilatrix", "(660) Crescentia", "(6649) Yokotatakao", "(695) Bella", "(714) Ulula", "(787) Moskva", "(797) Montana", "(875) Nymphe", "(879) Ricarda", "(897) Lysistrata", "(908) Buda", "(974) Lioba", "Multiple Asteroids", "(6212) 1993 MS1"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "2000-06-30", "stop_date": "2014-01-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/collection_gbo.ast.fieber-beyer.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra/data/collection_gbo.ast.fieber-beyer.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750908Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.belskaya.polarimetry:document::1.0", "title": "document collection for the \"BELSKAYA ASTEROID POLARIMETRY\" bundle", "description": "This is the document collection for the gbo.ast.belskaya.polarimetry bundle. This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["AFOSC Polarimeter", "Copernico 1.82m Telescope at Asiago Astrophysical Observatory", "CrAO Five-Channel Photopolarimeter", "1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"], "instrument_hosts": ["Asiago Astrophysical Observatory", "Crimean Astrophysical Observatory-Partizanskoye"], "data_types": ["Document"], "start_date": "1996-06-09", "stop_date": "2006-03-07", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/collection_gbo.ast.belskaya.polarimetry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/document/collection_gbo.ast.belskaya.polarimetry_document.xml", "scraped_at": "2026-02-25T20:02:10.750913Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.belskaya.polarimetry:data::1.0", "title": "data collection for the \"BELSKAYA ASTEROID POLARIMETRY\" bundle", "description": "This is the data collection for the gbo.ast.belskaya.polarimetry bundle. This data set contains UBVRI polarimetric measurements of ten main belt asteroids and one potentially hazardous near-Earth asteroid (NEA), from Belskaya et al. (2009) and Belskaya et al. (2009b).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["AFOSC Polarimeter", "Copernico 1.82m Telescope at Asiago Astrophysical Observatory", "CrAO Five-Channel Photopolarimeter", "1.25m Ritchey-Chretien Reflector AZT-11 at Crimean Astrophysical Observatory-Partizanskoye"], "instrument_hosts": ["Asiago Astrophysical Observatory", "Crimean Astrophysical Observatory-Partizanskoye"], "data_types": ["Data"], "start_date": "1996-06-09", "stop_date": "2006-03-07", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/collection_gbo.ast.belskaya.polarimetry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.belskaya.polarimetry/data/collection_gbo.ast.belskaya.polarimetry_data.xml", "scraped_at": "2026-02-25T20:02:10.750918Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.delbo.radiometric-diameters-albedos:document::1.0", "title": "document collection for the \"DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS\" bundle", "description": "This is the document collection for the ast.delbo.radiometric-diameters-albedos bundle. This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Thermal Infrared Multi-Mode Instrument 2", "3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory", "JPL Mid-InfraRed Large-well Imager", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "MIRSI - Mid-Infrared Spectrometer and Imager", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "Keck I Long Wavelength Spectrograph (IR)", "W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"], "instrument_hosts": ["European Southern Observatory", "Mauna Kea Observatory", "Mauna Kea Observatory", "W.M. Keck Observatory"], "data_types": ["Document"], "start_date": "2000-03-16", "stop_date": "2003-06-03", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/collection_ast.delbo.radiometric-diameters-albedos_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/document/collection_ast.delbo.radiometric-diameters-albedos_document.xml", "scraped_at": "2026-02-25T20:02:10.750924Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.delbo.radiometric-diameters-albedos:data::1.0", "title": "data collection for the \"DELBO THERMAL INFRARED ASTEROID DIAMETERS AND ALBEDOS\" bundle", "description": "This is the data collection for the ast.delbo.radiometric-diameters-albedos bundle. This data set contains radiometric albedos and diameters for Near Earth Asteroids (NEAs) derived by three different thermal models and reported in Delbo (2004) [DELBO2004]. The observed infrared fluxes on which the derivations were based are also included.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Thermal Infrared Multi-Mode Instrument 2", "3.6-m equatorial Cassegrain/Coude reflector at European Southern Observatory", "JPL Mid-InfraRed Large-well Imager", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "MIRSI - Mid-Infrared Spectrometer and Imager", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "Keck I Long Wavelength Spectrograph (IR)", "W.M. Keck Observatory 10-m Keck I Ritchey-Chretien altazimuth reflector"], "instrument_hosts": ["European Southern Observatory", "Mauna Kea Observatory", "Mauna Kea Observatory", "W.M. Keck Observatory"], "data_types": ["Data"], "start_date": "2000-03-16", "stop_date": "2003-06-03", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/collection_ast.delbo.radiometric-diameters-albedos_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.delbo.radiometric-diameters-albedos/data/collection_ast.delbo.radiometric-diameters-albedos_data.xml", "scraped_at": "2026-02-25T20:02:10.750929Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.bus-demeo.taxonomy:document::1.0", "title": "document collection for the \"BUS-DEMEO ASTEROID TAXONOMY\" bundle", "description": "This is the document collection for the ast.bus-demeo.taxonomy bundle. The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1991-10-25", "stop_date": "2008-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/collection_ast.bus-demeo.taxonomy_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/document/collection_ast.bus-demeo.taxonomy_document.xml", "scraped_at": "2026-02-25T20:02:10.750933Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.bus-demeo.taxonomy:data::1.0", "title": "data collection for the \"BUS-DEMEO ASTEROID TAXONOMY\" bundle", "description": "This is the data collection for the ast.bus-demeo.taxonomy bundle. The Bus-DeMeo asteroid taxonomy classification system, described in DeMeo et al. (2009), is based on reflectance spectrum characteristics for 371 asteroids measured over the wavelength 0.45 to 2.45 microns. This system of 24 classes is constructed using principal component analysis, following most closely the visible wavelength taxonomy of Bus (1999), which itself builds upon the system of Tholen (1984). Nearly all of the Bus taxonomy classes are preserved, with one new class (Sv) defined. This data set includes a table of classifications in the Bus-DeMeo system for the 371 asteroids upon which the system is based. It also includes mean spectra for each of the classes.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1991-10-25", "stop_date": "2008-05-10", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/collection_ast.bus-demeo.taxonomy_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.bus-demeo.taxonomy/data/collection_ast.bus-demeo.taxonomy_data.xml", "scraped_at": "2026-02-25T20:02:10.750936Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.mrc.families:document::1.0", "title": "document collection for the \"MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES \" bundle", "description": "This is the document collection for the ast.mrc.families bundle. This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/collection_ast.mrc.families_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/document/collection_ast.mrc.families_document.xml", "scraped_at": "2026-02-25T20:02:10.750940Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.mrc.families:data::1.0", "title": "data collection for the \"MOTHE-DINIZ ASTEROID DYNAMICAL FAMILIES \" bundle", "description": "This is the data collection for the ast.mrc.families bundle. This bundle contains an updated compilation of asteroid families and clusters, resulting from the application of the Hierarchical Clustering Method (HCM) on a set of around 120,000 asteroids with available proper elements. Whenever available, the classification in the Bus taxonomy is provided for family members, based on spectra from the SMASS, SMASS2 and S3OS2 spectroscopic surveys.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/collection_ast.mrc.families_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.mrc.families/data/collection_ast.mrc.families_data.xml", "scraped_at": "2026-02-25T20:02:10.750944Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.wisniewski.magnitudes:document::1.0", "title": "document collection for the \"WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES \" bundle", "description": "This is the document collection for the gbo.ast.wisniewski.magnitudes bundle. Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1976-10-19", "stop_date": "1993-12-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/collection_gbo.ast.wisniewski.magnitudes_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/document/collection_gbo.ast.wisniewski.magnitudes_document.xml", "scraped_at": "2026-02-25T20:02:10.750947Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.wisniewski.magnitudes:data::1.0", "title": "data collection for the \"WISNIEWSKI ASTEROID ABSOLUTE MAGNITUDES \" bundle", "description": "This is the data collection for the gbo.ast.wisniewski.magnitudes bundle. Photometric observations of 125 asteroids, including absolute magnitudes, reported in Wisniewski et al. 1997.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1976-10-19", "stop_date": "1993-12-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/collection_gbo.ast.wisniewski.magnitudes_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.wisniewski.magnitudes/data/collection_gbo.ast.wisniewski.magnitudes_data.xml", "scraped_at": "2026-02-25T20:02:10.750952Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ices.mastrapa.lab-spectra:document::1.0", "title": "document collection for the \"OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE\" bundle", "description": "This is the document collection for the gbo.ices.mastrapa.lab-spectra bundle. Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Terrestrial Water Ice"], "instruments": ["VARIAN EXCALIBUR SERIES FTS 3000"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "2006-04-12", "stop_date": "2006-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/collection_gbo.ices.mastrapa.lab-spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/document/collection_gbo.ices.mastrapa.lab-spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750956Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ices.mastrapa.lab-spectra:data::1.0", "title": "data collection for the \"OPTICAL CONSTANTS AND LAB SPECTRA OF WATER ICE\" bundle", "description": "This is the data collection for the gbo.ices.mastrapa.lab-spectra bundle. Transmission spectra of amorphous and crystalline H2O-ice at temperatures from 20-150 K for a wavelength range from 1.11 to 2.63 microns. These spectra have not been continuum-corrected or had the infrared interference fringes removed. Optical constants (n and k values) were derived from these laboratory spectra and are included in the data set.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Terrestrial Water Ice"], "instruments": ["VARIAN EXCALIBUR SERIES FTS 3000"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2006-04-12", "stop_date": "2006-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/collection_gbo.ices.mastrapa.lab-spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ices.mastrapa.lab-spectra/data/collection_gbo.ices.mastrapa.lab-spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750960Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra:document::1.0", "title": "document collection for the \"LEBOFSKY ET AL. 3-MICRON ASTEROID DATA \" bundle", "description": "This is the document collection for the gbo.ast.lebofsky-etal.3-micron-spectra bundle. 3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(111) Ate", "(114) Kassandra", "(1172) Aneas", "(13) Egeria", "(130) Elektra", "(139) Juewa", "(148) Gallia", "(16) Psyche", "(173) Ino", "(18) Melpomene", "(1867) Deiphobus", "(19) Fortuna", "(2) Pallas", "(233) Asterope", "(24) Themis", "(247) Eukrate", "(308) Polyxo", "(31) Euphrosyne", "(313) Chaldaea", "(324) Bamberga", "(344) Desiderata", "(349) Dembowska", "(36) Atalante", "(375) Ursula", "(386) Siegena", "(4) Vesta", "(409) Aspasia", "(410) Chloris", "(423) Diotima", "(5) Astraea", "(505) Cava", "(51) Nemausa", "(511) Davida", "(52) Europa", "(532) Herculina", "(55) Pandora", "(554) Peraga", "(570) Kythera", "(65) Cybele", "(70) Panopaea", "(704) Interamnia", "(72) Feronia", "(721) Tabora", "(74) Galatea", "(748) Simeisa", "(773) Irmintraud", "(776) Berbericia", "(87) Sylvia", "(88) Thisbe", "(92) Undina", "Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1977-02-17", "stop_date": "1989-04-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/collection_gbo.ast.lebofsky-etal.3-micron-spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/document/collection_gbo.ast.lebofsky-etal.3-micron-spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.750966Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.lebofsky-etal.3-micron-spectra:data::1.0", "title": "data collection for the \"LEBOFSKY ET AL. 3-MICRON ASTEROID DATA \" bundle", "description": "This is the data collection for the gbo.ast.lebofsky-etal.3-micron-spectra bundle. 3-micron spectrophotometric data on asteroids collected from several papers by Lebofsky, Jones, and Feierberg and their collaborators, published 1980-1990.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(111) Ate", "(114) Kassandra", "(1172) Aneas", "(13) Egeria", "(130) Elektra", "(139) Juewa", "(148) Gallia", "(16) Psyche", "(173) Ino", "(18) Melpomene", "(1867) Deiphobus", "(19) Fortuna", "(2) Pallas", "(233) Asterope", "(24) Themis", "(247) Eukrate", "(308) Polyxo", "(31) Euphrosyne", "(313) Chaldaea", "(324) Bamberga", "(344) Desiderata", "(349) Dembowska", "(36) Atalante", "(375) Ursula", "(386) Siegena", "(4) Vesta", "(409) Aspasia", "(410) Chloris", "(423) Diotima", "(5) Astraea", "(505) Cava", "(51) Nemausa", "(511) Davida", "(52) Europa", "(532) Herculina", "(55) Pandora", "(554) Peraga", "(570) Kythera", "(65) Cybele", "(70) Panopaea", "(704) Interamnia", "(72) Feronia", "(721) Tabora", "(74) Galatea", "(748) Simeisa", "(773) Irmintraud", "(776) Berbericia", "(87) Sylvia", "(88) Thisbe", "(92) Undina", "Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1977-02-17", "stop_date": "1989-04-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/collection_gbo.ast.lebofsky-etal.3-micron-spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.lebofsky-etal.3-micron-spectra/data/collection_gbo.ast.lebofsky-etal.3-micron-spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.750972Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.smass2.spectra:data::1.0", "title": "Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0", "description": "This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(140) SIWA", "(2912) LAPALMA", "(4352) KYOTO", "(4701) MILANI", "(2305) KING", "(245) VERA", "(5563) 1991 VZ1", "(1541) ESTONIA", "(125) LIBERATRIX", "(634) UTE", "(3151) TALBOT", "(4276) CLIFFORD", "(4382) STRAVINSKY", "(70) PANOPAEA", "(2118) FLAGSTAFF", "(7564) GOKUMENON", "(1041) ASTA", "(188) MENIPPE", "(2106) HUGO", "(3306) BYRON", "(3809) AMICI", "(4649) SUMOTO", "(606) BRANGANE", "(1785) WURM", "(1135) COLCHIS", "(1830) POGSON", "(3340) YINHAI", "(670) OTTEGEBE", "(1147) STAVROPOLIS", "(1348) MICHEL", "(7817) ZIBITURTLE", "(50) VIRGINIA", "(625) XENIA", "(338) BUDROSA", "(3435) BOURY", "(147) PROTOGENEIA", "(5184) CAVAILLE-COLL", "(192) NAUSIKAA", "(26) PROSERPINA", "(8516) HYAKKAI", "(6500) KODAIRA", "(1424) SUNDMANIA", "(1618) DAWN", "(897) LYSISTRATA", "(2813) ZAPPALA", "(4591) BRYANTSEV", "(133) CYRENE", "(1777) GEHRELS", "(4200) SHIZUKAGOZEN", "(4686) MAISICA", "(1998) WS", "(741) BOTOLPHIA", "(5261) EUREKA", "(354) ELEONORA", "(478) TERGESTE", "(5588) JENNABELLE", "(154) BERTHA", "(170) MARIA", "(211) ISOLDA", "(3759) PIIRONEN", "(2902) WESTERLUND", "(2246) BOWELL", "(6582) FLAGSYMPHONY", "(868) LOVA", "(1594) DANJON", "(228) AGATHE", "(3389) SINZOT", "(4993) COSSARD", "(301) BAVARIA", "(1176) LUCIDOR", "(2504) GAVIOLA", "(5965) 1990 SV15", "(106) DIONE", "(4512) SINUHE", "(153) HILDA", "(230) ATHAMANTIS", "(2875) LAGERKVIST", "(6071) SAKITAMA", "(2038) BISTRO", "(3037) ALKU", "(4968) SUZAMUR", "(306) UNITAS", "(504) CORA", "(815) COPPELIA", "(912) MARITIMA", "(159) AEMILIA", "(15) EUNOMIA", "(2631) ZHEJIANG", "(3900) KNEZEVIC", "(3395) JITKA", "(3775) ELLENBETH", "(4909) COUTEAU", "(6509) GIOVANNIPRATESI", "(98) IANTHE", "(1094) SIBERIA", "(2681) OSTROVSKIJ", "(3491) FRIDOLIN", "(3813) FORTOV", "(1056) AZALEA", "(4945) IKENOZENNI", "(826) HENRIKA", "(12) VICTORIA", "(4951) IWAMOTO", "(2271) KISO", "(181) EUCHARIS", "(1052) BELGICA", "(193) AMBROSIA", "(387) AQUITANIA", "(759) VINIFERA", "(1848) DELVAUX", "(1659) PUNKAHARJU", "(358) APOLLONIA", "(10473) THIROUIN", "(105) ARTEMIS", "(539) PAMINA", "(564) DUDU", "(3635) KREUTZ", "(2141) SIMFEROPOL", "(3265) FLETCHER", "(103) HERA", "(2370) VAN ALTENA", "(631) PHILIPPINA", "(1882) RAUMA", "(17) THETIS", "(269) JUSTITIA", "(136) AUSTRIA", "(984) GRETIA", "(162) LAURENTIA", "(161) ATHOR", "(90) ANTIOPE", "(3678) MONGMANWAI", "(2147) KHARADZE", "(378) HOLMIA", "(476) HEDWIG", "(383) JANINA", "(795) FINI", "(753) TIFLIS", "(1071) BRITA", "(3074) POPOV", "(2575) BULGARIA", "(1214) RICHILDE", "(592) BATHSEBA", "(177) IRMA", "(5242) KENREIMONIN", "(4804) PASTEUR", "(194) PROKNE", "(534) NASSOVIA", "(973) ARALIA", "(2559) SVOBODA", "(5318) DIENTZENHOFER", "(4718) ARAKI", "(30) URANIA", "(6078) BURT", "(4774) HOBETSU", "(279) THULE", "(808) MERXIA", "(5010) AMENEMHET", "(345) TERCIDINA", "(677) AALTJE", "(2086) NEWELL", "(1433) GERAMTINA", "(4982) BARTINI", "(3307) ATHABASCA", "(1502) ARENDA", "(152) ATALA", "(1539) BORRELLY", "(208) LACRIMOSA", "(2917) SAWYER HOGG", "(679) PAX", "(1730) MARCELINE", "(1385) GELRIA", "(1534) NASI", "(547) PRAXEDIS", "(2444) LEDERLE", "(3885) BOGORODSKIJ", "(1271) ISERGINA", "(3406) OMSK", "(4619) POLYAKHOVA", "(481) EMITA", "(4726) FEDERER", "(1490) LIMPOPO", "(494) VIRTUS", "(7225) HUNTRESS", "(642) CLARA", "(1086) NATA", "(3865) LINDBLOOM", "(205) MARTHA", "(3020) NAUDTS", "(1783) ALBITSKIJ", "(3654) AAS", "(554) PERAGA", "(7081) LUDIBUNDA", "(4547) MASSACHUSETTS", "(668) DORA", "(2818) JUVENALIS", "(46) HESTIA", "(1228) SCABIOSA", "(4265) KANI", "(88) THISBE", "(4570) RUNCORN", "(3762) AMARAVELLA", "(1329) ELIANE", "(179) KLYTAEMNESTRA", "(56) MELETE", "(399) PERSEPHONE", "(5348) KENNOGUCHI", "(1702) KALAHARI", "(3704) GAOSHIQI", "(4706) DENNISREUTER", "(5595) ROTH", "(7405) 1988 FF", "(1929) KOLLAA", "(1301) YVONNE", "(3546) ATANASOFF", "(122) GERDA", "(2401) AEHLITA", "(1601) PATRY", "(507) LAODICA", "(674) RACHELE", "(3249) MUSASHINO", "(87) SYLVIA", "(737) AREQUIPA", "(5344) RYABOV", "(7304) NAMIKI", "(824) ANASTASIA", "(3474) LINSLEY", "(886) WASHINGTONIA", "(8008) 1988 TQ4", "(3363) BOWEN", "(2430) BRUCE HELIN", "(1332) MARCONIA", "(3576) GALINA", "(1891) GONDOLA", "(3314) BEALS", "(142) POLANA", "(9970) 1992 ST1", "(2852) DECLERCQ", "(130) ELEKTRA", "(261) PRYMNO", "(377) CAMPANIA", "(7451) VERBITSKAYA", "(189) PHTHIA", "(783) NORA", "(751) FAINA", "(1474) BEIRA", "(336) LACADIERA", "(4304) GEICHENKO", "(4786) TATIANINA", "(1304) AROSA", "(410) CHLORIS", "(337) DEVOSA", "(3796) LENE", "(543) CHARLOTTE", "(1110) JAROSLAWA", "(2402) SATPAEV", "(1716) PETER", "(3371) GIACCONI", "(747) WINCHESTER", "(2754) EFIMOV", "(1015) CHRISTA", "(1970) SUMERIA", "(353) RUPERTO-CAROLA", "(2930) EURIPIDES", "(2446) LUNACHARSKY", "(2369) CHEKHOV", "(331) ETHERIDGEA", "(2448) SHOLOKHOV", "(3311) PODOBED", "(3587) DESCARTES", "(5892) MILESDAVIS", "(980) ANACOSTIA", "(1188) GOTHLANDIA", "(384) BURDIGALA", "(1903) ADZHIMUSHKAJ", "(5690) 1992 EU", "(247) EUKRATE", "(2244) TESLA", "(395) DELIA", "(167) URDA", "(2744) BIRGITTA", "(1751) HERGET", "(3862) AGEKIAN", "(7404) 1988 AA5", "(6086) VRCHLICKY", "(3713) PIETERS", "(8334) 1984 CF", "(4733) ORO", "(1734) ZHONGOLOVICH", "(4548) WIELEN", "(720) BOHLINIA", "(4082) SWANN", "(4311) ZGURIDI", "(2640) HALLSTROM", "(3248) FARINELLA", "(327) COLUMBIA", "(281) LUCRETIA", "(365) CORDUBA", "(180) GARUMNA", "(398) ADMETE", "(6585) O'KEEFE", "(2567) ELBA", "(1638) RUANDA", "(3844) LUJIAXI", "(3850) PELTIER", "(523) ADA", "(288) GLAUKE", "(1542) SCHALEN", "(4284) KAHO", "(5195) KAENDLER", "(51) NEMAUSA", "(1336) ZEELANDIA", "(742) EDISONA", "(1284) LATVIA", "(134) SOPHROSYNE", "(4737) KILADZE", "(2851) HARBIN", "(101) HELENA", "(1977) SHURA", "(119) ALTHAEA", "(4426) ROERICH", "(2085) HENAN", "(924) TONI", "(2107) ILMARI", "(2582) HARIMAYA-BASHI", "(3175) NETTO", "(1839) RAGAZZA", "(2736) OPS", "(7245) 1991 RN10", "(785) ZWETANA", "(3542) TANJIAZHEN", "(614) PIA", "(174) PHAEDRA", "(3209) BUCHWALD", "(1664) FELIX", "(201) PENELOPE", "(3155) LEE", "(3443) LEETSUNGDAO", "(1351) UZBEKISTANIA", "(2973) PAOLA", "(1857) PARCHOMENKO", "(2579) SPARTACUS", "(2675) TOLKIEN", "Multiple Asteroids", "(675) LUDMILLA", "(3827) ZDENEKHORSKY", "(3873) RODDY", "(845) NAEMA", "(3767) DIMAGGIO", "(1251) HEDERA", "(1798) WATTS", "(844) LEONTINA", "(75) EURYDIKE", "(638) MOIRA", "(84) KLIO", "(462) ERIPHYLA", "(1021) FLAMMARIO", "(1045) MICHELA", "(24) THEMIS", "(994) OTTHILD", "(2251) TIKHOV", "(513) CENTESIMA", "(107) CAMILLA", "(3971) VORONIKHIN", "(6146) ADAMKRAFFT", "(62) ERATO", "(13) EGERIA", "(3737) BECKMAN", "(584) SEMIRAMIS", "(4036) WHITEHOUSE", "(898) HILDEGARD", "(1738) OOSTERHOFF", "(1480) AUNUS", "(4292) AOBA", "(2386) NIKONOV", "(2911) MIAHELENA", "(5079) BRUBECK", "(622) ESTHER", "(186) CELUTA", "(416) VATICANA", "(3563) CANTERBURY", "(458) HERCYNIA", "(1724) VLADIMIR", "(1904) MASSEVITCH", "(1729) BERYL", "(2708) BURNS", "(109) FELICITAS", "(2635) HUGGINS", "(263) DRESDA", "(460) SCANIA", "(6386) KEITHNOLL", "(2604) MARSHAK", "(3287) OLMSTEAD", "(453) TEA", "(1560) STRATTONIA", "(164) EVA", "(35) LEUKOTHEA", "(2042) SITARSKI", "(1635) BOHRMANN", "(485) GENUA", "(519) SYLVANIA", "(1128) ASTRID", "(286) ICLEA", "(1603) NEVA", "(3040) KOZAI", "(7211) XERXES", "(2715) MIELIKKI", "(4215) KAMO", "(28) BELLONA", "(553) KUNDRY", "(65) CYBELE", "(997) PRISKA", "(1888) ZU CHONG-ZHI", "(14) IRENE", "(4917) YURILVOVIA", "(61) DANAE", "(386) SIEGENA", "(5108) LUBECK", "(278) PAULINA", "(233) ASTEROPE", "(360) CARLOVA", "(1494) SAVO", "(4845) TSUBETSU", "(21) LUTETIA", "(5553) CHODAS", "(6907) HARRYFORD", "(1025) RIEMA", "(250) BETTINA", "(856) BACKLUNDA", "(1386) STORERIA", "(266) ALINE", "(4033) YATSUGATAKE", "(556) PHYLLIS", "(4) VESTA", "(60) ECHO", "(1104) SYRINGA", "(729) WATSONIA", "(735) MARGHANNA", "(1373) CINCINNATI", "(4536) DREWPINSKY", "(3782) CELLE", "(2346) LILIO", "(491) CARINA", "(1517) BEOGRAD", "(5840) RAYBROWN", "(496) GRYPHIA", "(531) ZERLINA", "(3670) NORTHCOTT", "(925) ALPHONSINA", "(3376) ARMANDHAMMER", "(7) IRIS", "(1020) ARCADIA", "(521) BRIXIA", "(687) TINETTE", "(2331) PARVULESCO", "(102) MIRIAM", "(3394) BANNO", "(1022) OLYMPIADA", "(1201) STRENUA", "(1799) KOUSSEVITZKY", "(5234) SECHENOV", "(516) AMHERSTIA", "(779) NINA", "(200) DYNAMENE", "(1102) PEPITA", "(6005) 1989 BD", "(375) URSULA", "(2354) LAVROV", "(321) FLORENTINA", "(853) NANSENIA", "(971) ALSATIA", "(2089) CETACEA", "(304) OLGA", "(4434) NIKULIN", "(2152) HANNIBAL", "(4182) MOUNT LOCKE", "(2547) HUBEI", "(579) SIDONIA", "(7056) KIERKEGAARD", "(2952) LILLIPUTIA", "(781) KARTVELIA", "(160) UNA", "(3262) MIUNE", "(3526) JEFFBELL", "(1234) ELYNA", "(63) AUSONIA", "(6354) VANGELIS", "(1014) SEMPHYRA", "(2507) BOBONE", "(1252) CELESTIA", "(2509) CHUKOTKA", "(135) HERTHA", "(3642) FRIEDEN", "(95) ARETHUSA", "(1140) CRIMEA", "(409) ASPASIA", "(5103) DIVIS", "(246) ASPORINA", "(671) CARNEGIA", "(2704) JULIAN LOEWE", "(4610) KAJOV", "(934) THURINGIA", "(226) WERINGIA", "(4611) VULKANEIFEL", "(3364) ZDENKA", "(392) WILHELMINA", "(895) HELIO", "(3417) TAMBLYN", "(5081) SANGUIN", "(782) MONTEFIORE", "(363) PADUA", "(2194) ARPOLA", "(423) DIOTIMA", "(1107) LICTORIA", "(1634) NDOLA", "(388) CHARYBDIS", "(3375) AMY", "(374) BURGUNDIA", "(7224) VESNINA", "(1055) TYNKA", "(3192) A'HEARN", "(2737) KOTKA", "(5685) SANENOBUFUKUI", "(731) SORGA", "(776) BERBERICIA", "(6211) TSUBAME", "(78) DIANA", "(115) THYRA", "(1930) LUCIFER", "(2762) FOWLER", "(425) CORNELIA", "(431) NEPHELE", "(2157) ASHBROOK", "(5647) SAROJININAIDU", "(1548) PALOMAA", "(1587) KAHRSTEDT", "(175) ANDROMACHE", "(58) CONCORDIA", "(2772) DUGAN", "(5534) 1941 UN", "(3458) BODUOGNAT", "(34) CIRCE", "(2957) TATSUO", "(3829) GUNMA", "(1148) RARAHU", "(965) ANGELICA", "(3198) WALLONIA", "(236) HONORIA", "(144) VIBILIA", "(2396) KOCHI", "(4051) HATANAKA", "(396) AEOLIA", "(2185) GUANGDONG", "(4516) PUGOVKIN", "(1352) WAWEL", "(99913) 1997 CZ5", "(2371) DIMITROV", "(2720) PYOTR PERVYJ", "(3534) SAX", "(3430) BRADFIELD", "(4135) SVETLANOV", "(69) HESPERIA", "(611) VALERIA", "(3701) PURKYNE", "(393) LAMPETIA", "(1262) SNIADECKIA", "(4817) GLIBA", "(6) HEBE", "(2508) ALUPKA", "(5552) STUDNICKA", "(715) TRANSVAALIA", "(5240) KWASAN", "(3611) DABU", "(5134) EBILSON", "(1428) MOMBASA", "(484) PITTSBURGHIA", "(165) LORELEY", "(3858) DORCHESTER", "(8450) EGOROV", "(1323) TUGELA", "(4997) KSANA", "(148) GALLIA", "(3647) DERMOTT", "(397) VIENNA", "(129) ANTIGONE", "(1493) SIGRID", "(5632) INGELEHMANN", "(2468) REPIN", "(3800) KARAYUSUF", "(3365) RECOGNE", "(3841) DICICCO", "(4923) CLARKE", "(2022) WEST", "(85) IO", "(1680) PER BRAHE", "(6192) JAVIERGOROSABEL", "(673) EDDA", "(443) PHOTOGRAPHICA", "(111) ATE", "(2501) LOHJA", "(2521) HEIDI", "(5091) ISAKOVSKIJ", "(112) IPHIGENIA", "(3734) WALAND", "(6364) CASARINI", "(1204) RENZIA", "(2864) SODERBLOM", "(3628) BOZNEMCOVA", "(4628) LAPLACE", "(1483) HAKOILA", "(413) EDBURGA", "(1300) MARCELLE", "(1706) DIECKVOSS", "(187) LAMBERTA", "(1562) GONDOLATSCH", "(355) GABRIELLA", "(7763) CRABEELS", "(359) GEORGIA", "(569) MISA", "(1106) CYDONIA", "(127) JOHANNA", "(3349) MANAS", "(4096) KUSHIRO", "(804) HISPANIA", "(1640) NEMO", "(773) IRMINTRAUD", "(2881) MEIDEN", "(191) KOLGA", "(2380) HEILONGJIANG", "(1076) VIOLA", "(1600) VYSSOTSKY", "(2949) KAVERZNEV", "(114) KASSANDRA", "(541) DEBORAH", "(1048) FEODOSIA", "(5159) BURBINE", "(3686) ANTOKU", "(1458) MINEURA", "(2789) FOSHAN", "(4422) JARRE", "(1471) TORNIO", "(128) NEMESIS", "(866) FATME", "(1088) MITAKA", "(1263) VARSAVIA", "(2099) OPIK", "(2801) HUYGENS", "(1406) KOMPPA", "(6906) JOHNMILLS", "(2750) LOVIISA", "(4256) KAGAMIGAWA", "(4272) ENTSUJI", "(4944) KOZLOVSKIJ", "(2527) GREGORY", "(596) SCHEILA", "(961) GUNNIE", "(206) HERSILIA", "(1807) SLOVAKIA", "(7728) GIBLIN", "(3669) VERTINSKIJ", "(23) THALIA", "(4995) GRIFFIN", "(4297) EICHHORN", "(4719) BURNABY", "(985) ROSINA", "(258) TYCHE", "(166) RHODOPE", "(6592) GOYA", "(80) SAPPHO", "(1653) YAKHONTOVIA", "(4107) RUFINO", "(79) EURYNOME", "(2988) KORHONEN", "(207) HEDDA", "(1520) IMATRA", "(414) LIRIOPE", "(578) HAPPELIA", "(4342) FREUD", "(702) ALAUDA", "(342) ENDYMION", "(3949) MACH", "(402) CHLOE", "(444) GYPTIS", "(600) MUSA", "(6782) 1990 SU10", "(4682) BYKOV", "(3440) STAMPFER", "(1565) LEMAITRE", "(511) DAVIDA", "(649) JOSEFA", "(190) ISMENE", "(4037) IKEYA", "(2060) CHIRON", "(26209) 1997 RD1", "(282) CLORINDE", "(3137) HORKY", "(4287) TRISOV", "(2732) WITT", "(3687) DZUS", "(2335) JAMES", "(178) BELISANA", "(3007) REAVES", "(38) LEDA", "(7604) KRIDSADAPORN", "(3985) RAYBATSON", "(1294) ANTWERPIA", "(173) INO", "(209) DIDO", "(116) SIRONA", "(3169) OSTRO", "(3861) LORENZ", "(1185) NIKKO", "(3090) TJOSSEM", "(4713) STEEL", "(555) NORMA", "(372) PALMA", "(2035) STEARNS", "(633) ZELIMA", "(37) FIDES", "(1189) TERENTIA", "(5416) ESTREMADOYRO", "(244) SITA", "(2390) NEZARKA", "(64) ANGELINA", "(5133) PHILLIPADAMS", "(970) PRIMULA", "(4942) MUNROE", "(2167) ERIN", "(477) ITALIA", "(242) KRIEMHILD", "(381) MYRRHA", "(5069) TOKEIDAI", "(1017) JACQUELINE", "(2834) CHRISTY CAROL", "(3214) MAKARENKO", "(3920) AUBIGNAN", "(2410) MORRISON", "(241) GERMANIA", "(705) ERMINIA", "(5111) JACLIFF", "(2465) WILSON", "(3) JUNO", "(5397) VOJISLAVA", "(4607) SEILANDFARM", "(48) DORIS", "(4396) GRESSMANN", "(1152) PAWONA", "(1968) MEHLTRETTER", "(1936) LUGANO", "(5102) BENFRANKLIN", "(6283) 1980 VX1", "(2328) ROBESON", "(3910) LISZT", "(1726) HOFFMEISTER", "(3976) LISE", "(2428) KAMENYAR", "(1374) ISORA", "(1858) LOBACHEVSKIJ", "(3684) BERRY", "(1563) NOEL", "(3630) LUBOMIR", "(597) BANDUSIA", "(237) COELESTINA", "(4417) LECAR", "(89) JULIA", "(490) VERITAS", "(560) DELILA", "(10504) DOGA", "(4435) HOLT", "(151) ABUNDANTIA", "(1836) KOMAROV", "(470) KILIA", "(5482) KORANKEI", "(308) POLYXO", "(5196) BUSTELLI", "(10199) CHARIKLO", "(3579) ROCKHOLT", "(1007) PAWLOWIA", "(2258) VIIPURI", "(3744) HORN-D'ARTURO", "(2809) VERNADSKIJ", "(559) NANON", "(2840) KALLAVESI", "(3181) AHNERT", "(2378) PANNEKOEK", "(2791) PARADISE", "(2427) KOBZAR", "(3320) NAMBA", "(1715) SALLI", "(5) ASTRAEA", "(110) LYDIA", "(4678) NINIAN", "(5243) CLASIEN", "(240) VANADIS", "(860) URSINA", "(5610) BALSTER", "(563) SULEIKA", "(2353) ALVA", "(4188) KITEZH", "(757) PORTLANDIA", "(3636) PAJDUSAKOVA", "(3451) MENTOR", "(150) NUWA", "(184) DEJOPEJA", "(17480) 1991 PE10", "(2934) ARISTOPHANES", "(3309) BRORFELDE", "(792) METCALFIA", "(4261) GEKKO", "(1131) PORZIA", "(2827) VELLAMO", "(4372) QUINCY", "(512) TAURINENSIS", "(1069) PLANCKIA", "(1293) SONJA", "(3833) CALINGASTA", "(1248 )JUGURTHA", "(2598) MERLIN", "(2746) HISSAO", "(1667) PELS", "(5448) SIEBOLD", "(5641) MCCLEESE", "(2748) PATRICK GENE", "(139) JUEWA", "(1058) GRUBBA", "(1187) AFRA", "(2029) BINOMI", "(2733) HAMINA", "(4900) MAYMELOU", "(3345) TARKOVSKIJ", "(4479) CHARLIEPARKER", "(2409) CHAPMAN", "(2625) JACK LONDON", "(627) CHARIS", "(171) OPHELIA", "(4194) SWEITZER", "(405) THIA", "(7170) LIVESEY", "(42) ISIS", "(1797) SCHAUMASSE", "(322) PHAEO", "(257) SILESIA", "(4604) STEKARSTROM", "(29) AMPHITRITE", "(2879) SHIMIZU", "(52) EUROPA", "(2925) BEATTY", "(3788) STEYAERT", "(4910) KAWASATO", "(146) LUCINA", "(2874) JIM YOUNG", "(5379) ABEHIROSHI", "(5253) FREDCLIFFORD", "(5333) KANAYA", "(872) HOLDA", "(4116) ELACHI", "(4156) OKADANOBORU", "(551) ORTRUD", "(3170) DZHANIBEKOV", "(253) MATHILDE", "(295) THERESIA", "(4838) BILLMCLAUGHLIN", "(950) AHRENSA", "(905) UNIVERSITAS", "(389) INDUSTRIA", "(8333) 1982 VF", "(1196) SHEBA", "(4369) SEIFERT", "(1155) AENNA", "(348) MAY", "(739) MANDEVILLE", "(5956) D'ALEMBERT", "(1065) AMUNDSENIA", "(1660) WOOD", "(6716) 1990 RO1", "(4969) LAWRENCE", "(2169) TAIWAN", "(4650) MORI", "(1695) WALBECK", "(2857) NOT", "(1831) NICHOLSON", "(5329) DECARO", "(929) ALGUNDE", "(2040) CHALONGE", "(57) MNEMOSYNE", "(1860) BARBAROSSA", "(2482) PERKIN", "(310) MARGARITA", "(121) HERMIONE", "(1856) RUZENA", "(3536) SCHLEICHER", "(4702) BEROUNKA", "(4424) ARKHIPOVA", "(243) IDA", "(442) EICHSFELDIA", "(352) GISELA", "(2045) PEKING", "(2566) KIRGHIZIA", "(2065) SPICER", "(586) THEKLA", "(2560) SIEGMA", "(4750) MUKAI", "(713) LUSCINIA", "(2078) NANKING", "(2478) TOKAI", "(870) MANTO", "(94) AURORA", "(275) SAPIENTIA", "(767) BONDIA", "(1508) KEMI", "(234) BARBARA", "(503) EVELYN", "(1016) ANITRA", "(1264) LETABA", "(1747) WRIGHT", "(7397) 1986 QS", "(1847) STOBBE", "(1407) LINDELOF", "(3658) FELDMAN", "(196) PHILOMELA", "(412) ELISABETHA", "(1484) POSTREMA", "(2467) KOLLONTAI", "(6410) FUJIWARA", "(6908) KUNIMOTO", "(1604) TOMBAUGH", "(1046) EDWIN", "(22449) OTTIJEFF", "(2373) IMMO", "(71) NIOBE", "(4534) RIMSKIJ-KORSAKOV", "(4001) PTOLEMAEUS", "(3712) KRAFT", "(572) REBEKKA", "(5230) ASAHINA", "(604) TEKMESSA", "(27) EUTERPE", "(2) PALLAS", "(1278) KENYA", "(3533) TOYOTA", "(3831) PETTENGILL", "(1360) TARKA", "(1350) ROSSELIA", "(66) MAJA", "(32) POMONA", "(2493) ELMER", "(1545) THERNOE", "(5330) SENRIKYU", "(784) PICKERINGIA", "(796) SARITA", "(2873) BINZEL", "(532) HERCULINA", "(4072) YAYOI", "(172) BAUCIS", "(1024) HALE", "(117) LOMIA", "(3028) ZHANGGUOXI", "(456) ABNOBA", "(3819) ROBINSON", "(4849) ARDENNE", "(771) LIBERA", "(1593) FAGNES", "(4839) DAISETSUZAN", "(2872) GENTELEC", "(33) POLYHYMNIA", "(1212) FRANCETTE", "(156) XANTHIPPE", "(1998) TITIUS", "(2087) KOCHERA", "(4711) KATHY", "(4853) MARIELUKAC", "(2001) EINSTEIN", "(2280) KUNIKOV", "(5649) DONNASHIRLEY", "(3972) RICHARD", "(527) EURYANTHE", "(3258) SOMNIUM", "(951) GASPRA", "(4390) MADRETERESA", "(12281) CHAUMONT", "(2977) CHIVILIKHIN", "(3792) PRESTON", "(83) BEATRIX", "(6233) KIMURA", "(1403) IDELSONIA", "(910) ANNELIESE", "(3581) ALVAREZ", "(5565) UKYOUNODAIBU", "(1427) RUVUMA", "(2423) IBARRURI", "(3401) VANPHILOS", "(1948) KAMPALA", "(259) ALETHEIA", "(913) OTILA", "(2382) NONIE", "(4374) TADAMORI", "(4491) OTARU", "(108) HECUBA", "(2953) VYSHESLAVIA", "(3367) ALEX", "(1550) TITO", "(2349) KURCHENKO", "(4327) RIES", "(19) FORTUNA", "(2906) CALTECH", "(479) CAPRERA", "(3567) ALVEMA", "(404) ARSINOE", "(5067) OCCIDENTAL", "(5214) OOZORA", "(2511) PATTERSON", "(3853) HAAS", "(11906) 1992 AE1", "(216) KLEOPATRA", "(2161) GRISSOM", "(2455) SOMVILLE", "(100480) 1996 UK", "(376) GEOMETRIA", "(749) MALZOVIA", "(930) WESTPHALIA", "(4461) SAYAMA", "(6077) MESSNER", "(2816) PIEN", "(5510) 1988 RF7", "(4280) SIMONENKO", "(74) GALATEA", "(3511) TSVETAEVA", "(4340) DENCE", "(141) LUMEN", "(2905) PLASKETT", "(3566) LEVITAN", "(4748) TOKIWAGOZEN", "(688) MELANIE", "(4222) NANCITA", "(661) CLOELIA", "(4407) TAIHAKU", "(39) LAETITIA", "(471) PAPAGENA", "(3385) BRONNINA", "(704) INTERAMNIA", "(1951) LICK", "(403) CYANE", "(123) BRUNHILD", "(349) DEMBOWSKA", "(4844) MATSUYAMA", "(169) ZELIA", "(317) ROXANE", "(2778) TANGSHAN", "(197) ARETE", "(2996) BOWMAN", "(716) BERKELEY", "(6230) FRAM", "(1186) TURNERA", "(629) BERNARDINA", "(3903) KLIMENT OHRIDSKI", "(2053) NUKI", "(3493) STEPANOV", "(5051) RALPH", "(5438) LORRE", "(3096) BEZRUC", "(862) FRANZIA", "(1613) SMILEY", "(3640) GOSTIN", "(82) ALKMENE", "(18) MELPOMENE", "(1553) BAUERSFELDA", "(5013) SUZHOUSANZHONG", "(3527) MCCORD", "(3700) GEOWILLIAMS", "(120) LACHESIS", "(1327) NAMAQUA", "(723) HAMMONIA", "(113) AMALTHEA", "(267) TIRZA", "(5401) MINAMIODA", "(16) PSYCHE", "(2088) SAHLIA", "(2308) SCHILT", "(5485) KAULA", "(5467) 1988 AG", "(5492) THOMA", "(5208) ROYER", "(158) KORONIS", "(4157) IZU", "(47) AGLAJA", "(264) LIBUSSA", "(4343) TETSUYA", "(176) IDUNA", "(1795) WOLTJER", "(2056) NANCY", "(2855) BASTIAN", "(4305) CLAPTON", "(2282) ANDRES BELLO", "(124) ALKESTE", "(41) DAPHNE", "(7562) KAGIROINO-OKA", "(2064) THOMSEN", "(22) KALLIOPE", "(379) HUENNA", "(118) PEITHO", "(77) FRIGGA", "(1414) JEROME", "(11785) SARGENT", "(5294) ONNETOH", "(1032) PAFURI", "(2730) BARKS", "(3860) PLOVDIV", "(2231) DURRELL", "(945) BARCELONA", "(1039) SONNEBERGA", "(1181) LILITH", "(1692) SUBBOTINA", "(3121) TAMINES", "(626) NOTBURGA", "(2306) BAUSCHINGER", "(3085) DONNA", "(4353) ONIZAKI", "(11) PARTHENOPE", "(18514) 1996 TE11", "(4977) RAUTHGUNDIS", "(7512) MONICALAZZARIN", "(2234) SCHMADEL", "(3575) ANYUTA", "(825) TANINA", "(93) MINERVA", "(198) AMPELLA", "(706) HIRUNDO", "(1222) TINA", "(20) MASSALIA", "(5008) MIYAZAWAKENJI", "(54) ALEXANDRA", "(43) ARIADNE", "(446) AETERNITAS", "(4039) SOUSEKI", "(67) ASIA", "(941) MURRAY", "(3886) SHCHERBAKOVIA", "(213) LILAEA", "(5038) OVERBEEK", "(533) SARA", "(545) MESSALINA", "(819) BARNARDIANA", "(5678) DUBRIDGE", "(2606) ODESSA", "(2892) FILIPENKO", "(6704) 1988 CJ", "(183) ISTRIA", "(3592) NEDBAL", "(417) SUEVIA", "(1423) JOSE", "(210) ISABELLA", "(4124) HERRIOT", "(654) ZELINDA", "(1098) HAKONE", "(1331) SOLVEJG", "(1034) MOZARTIA", "(7110) JOHNPEARSE", "(2569) MADELINE", "(2703) RODARI", "(3255) THOLEN", "(289) NENETTA", "(821) FANNY", "(653) BERENIKE", "(3498) BELTON", "(570) KYTHERA", "(3710) BOGOSLOVSKIJ", "(4558) JANESICK", "(2795) LEPAGE", "(4584) AKAN", "(145) ADEONA", "(2807) KARL MARX", "(2268) SZMYTOWNA", "(2451) DOLLFUS", "(391) INGEBORG", "(168) SIBYLLA", "(2438) OLESHKO", "(441) BATHILDE", "(3645) FABINI", "(3254) BUS", "(4299) WIYN", "(45) EUGENIA", "(3179) BERUTI", "(346) HERMENTARIA", "(366) VINCENTINA", "(185) EUNIKE", "(6129) DEMOKRITOS", "(2019) VAN ALBADA", "(3849) INCIDENTIA", "(10) HYGIEA", "(789) LENA", "(4824) STRADONICE", "(2317) GALYA", "(25) PHOCAEA", "(394) ARDUINA", "(863) BENKOELA", "(2956) YEOMANS", "(5622) PERCYJULIAN", "(464) MEGAIRA", "(99) DIKE", "(238) HYPATIA", "(515) ATHALIA", "(5227) BOCACARA", "(92) UNDINA", "(1642) HILL", "(2189) ZARAGOZA", "(4796) LEWIS", "(581) TAUNTONIA", "(908) BUDA", "(3416) DORRIT", "(55) PANDORA", "(3256) DAGUERRE", "(2724) ORLOV", "(3627) SAYERS", "(8513) 1991 PK11", "(376713) 1995 WQ5", "(4332) MILTON", "(4744) ROVERETO", "(1316) KASAN", "(3224) IRKUTSK", "(4142) DERSU-UZALA", "(5585) PARKS", "(4387) TANAKA", "(272) ANTONIA", "(847) AGNIA", "(1372) HAREMARI", "(5349) PAULHARRIS", "(104) KLYMENE", "(40) HARMONIA", "(5142) OKUTAMA", "(1420) RADCLIFFE", "(31) EUPHROSYNE", "(4950) HOUSE", "(1592) MATHIEU", "(284) AMALIA", "(743) EUGENISIS", "(1549) MIKKO", "(2929) HARRIS", "(7402) 1987 YH", "(712) BOLIVIANA", "(332) SIRI", "(1796) RIGA", "(1324) KNYSNA", "(59) ELPIS", "(1272) GEFION", "(163) ERIGONE", "(5732) 1988 WC", "(2073) JANACEK", "(3545) GAFFEY", "(2131) MAYALL", "(143) ADRIA", "(754) MALABAR", "(4523) MIT", "(5275) ZDISLAVA", "(3730) HURBAN", "(1011) LAODAMIA", "(44) NYSA", "(6249) JENNIFER", "(4884) BRAGARIA", "(1) CERES", "(214) ASCHERA", "(3317) PARIS", "(4767) SUTOKU", "(509) IOLANDA", "(601) NERTHUS", "(1139) ATAMI", "(3674) ERBISBUHL", "(129493) 1995 BM2", "(4205) DAVID HUGHES", "(919) ILSEBILL", "(3507) VILAS", "(4456) MAWSON", "(339) DOROTHEA", "(2861) LAMBRECHT", "(1134) KEPLER", "(1343 )NICOLE", "(599) LUISA", "(371) BOHEMIA", "(3958) KOMENDANTOV", "(335) ROBERTA", "(5817) ROBERTFRAZER", "(5407) 1992 AX", "(678) FREDEGUNDIS", "(793) ARIZONA", "(5087) EMEL'YANOV", "(221) EOS", "(81) TERPSICHORE", "(5576) ALBANESE", "(432) PYTHIA", "(1510) CHARLOIS", "(1567) ALIKOSKI", "(1705) TAPIO", "(3000) LEONARDO", "(76) FREIA", "(5392) PARKER", "(5364) 1980 RC1", "(2659) MILLIS", "(1277) DOLORES", "(5222) IOFFE", "(195) EURYKLEIA", "(1655) COMAS SOLA", "(1932) JANSKY", "(1103) SEQUOIA", "(1126) OTERO", "(49) PALES", "(312) PIERRETTA", "(907) RHODA", "(2653) PRINCIPIA", "(2709) SAGAN", "(182) ELSA", "(2763) JEANS", "(797) MONTANA", "(1923) OSIRIS", "1996 PW", "(3060) DELCANO", "(2850) MOZHAISKIJ", "(6847) KUNZ-HALLSTEIN", "(132) AETHRA", "(1629) PECKER", "(718) ERIDA", "(131) VALA", "(5591) KOYO", "(6669) OBI", "(571) DULCINEA", "(2629) RUDRA", "(3824) BRENDALEE", "(91) AEGINA", "(199) BYBLIS", "(3197) WEISSMAN", "(1766) SLIPHER", "(1989) TATRY", "(1662) HOFFMANN", "(699) HELA", "(3065) SARAHILL", "(598) OCTAVIA", "(1114) LORRAINE", "(2316) JO-ANN", "(1768) APPENZELLA", "(2955) NEWBURN", "(96) AEGLE", "(814) TAURIS", "(100) HEKATE", "(3216) HARRINGTON", "(434) HUNGARIA"], "instruments": ["1.3-m Tinsley Cassegrain/Coude reflector", "Mark III Spectrograph", "2.4-m Hiltner Ritchey-Chretien equatorial reflector", "Mark III Spectrograph"], "instrument_hosts": ["McGraw-Hill Observatory", "McGraw-Hill Observatory"], "data_types": ["Data"], "start_date": "1993-08-21", "stop_date": "1999-03-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/collection_gbo.ast.smass2.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/data/collection_gbo.ast.smass2.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.751036Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.smass2.spectra:document::1.0", "title": "Small Main-Belt Asteroid Spectroscopic Survey, Phase II V1.0", "description": "This data set contains visible-wavelength (0.435-0.925 micron) spectra for 1341 main-belt asteroids observed during the second phase of the Small Main-belt Asteroid Spectroscopic Survey (SMASSII) between August 1993 and March 1999. The purpose of the SMASSII survey was to provide a new basis for studying the compositional diversity and structure of the asteroid belt. Based on experiences gained from the earlier SMASS survey, SMASSII focused on producing an even larger, internally consistent set of CCD spectra for small (D < 20 km) main-belt asteroids. The observing strategies and procedures used during SMASSII roughly parallel those used in the first survey (Xu et al. Icarus 115 1-35, 1995), though several minor changes were made in instrumentation and in portions of the data reduction process.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(140) SIWA", "(2912) LAPALMA", "(4352) KYOTO", "(4701) MILANI", "(2305) KING", "(245) VERA", "(5563) 1991 VZ1", "(1541) ESTONIA", "(125) LIBERATRIX", "(634) UTE", "(3151) TALBOT", "(4276) CLIFFORD", "(4382) STRAVINSKY", "(70) PANOPAEA", "(2118) FLAGSTAFF", "(7564) GOKUMENON", "(1041) ASTA", "(188) MENIPPE", "(2106) HUGO", "(3306) BYRON", "(3809) AMICI", "(4649) SUMOTO", "(606) BRANGANE", "(1785) WURM", "(1135) COLCHIS", "(1830) POGSON", "(3340) YINHAI", "(670) OTTEGEBE", "(1147) STAVROPOLIS", "(1348) MICHEL", "(7817) ZIBITURTLE", "(50) VIRGINIA", "(625) XENIA", "(338) BUDROSA", "(3435) BOURY", "(147) PROTOGENEIA", "(5184) CAVAILLE-COLL", "(192) NAUSIKAA", "(26) PROSERPINA", "(8516) HYAKKAI", "(6500) KODAIRA", "(1424) SUNDMANIA", "(1618) DAWN", "(897) LYSISTRATA", "(2813) ZAPPALA", "(4591) BRYANTSEV", "(133) CYRENE", "(1777) GEHRELS", "(4200) SHIZUKAGOZEN", "(4686) MAISICA", "(1998) WS", "(741) BOTOLPHIA", "(5261) EUREKA", "(354) ELEONORA", "(478) TERGESTE", "(5588) JENNABELLE", "(154) BERTHA", "(170) MARIA", "(211) ISOLDA", "(3759) PIIRONEN", "(2902) WESTERLUND", "(2246) BOWELL", "(6582) FLAGSYMPHONY", "(868) LOVA", "(1594) DANJON", "(228) AGATHE", "(3389) SINZOT", "(4993) COSSARD", "(301) BAVARIA", "(1176) LUCIDOR", "(2504) GAVIOLA", "(5965) 1990 SV15", "(106) DIONE", "(4512) SINUHE", "(153) HILDA", "(230) ATHAMANTIS", "(2875) LAGERKVIST", "(6071) SAKITAMA", "(2038) BISTRO", "(3037) ALKU", "(4968) SUZAMUR", "(306) UNITAS", "(504) CORA", "(815) COPPELIA", "(912) MARITIMA", "(159) AEMILIA", "(15) EUNOMIA", "(2631) ZHEJIANG", "(3900) KNEZEVIC", "(3395) JITKA", "(3775) ELLENBETH", "(4909) COUTEAU", "(6509) GIOVANNIPRATESI", "(98) IANTHE", "(1094) SIBERIA", "(2681) OSTROVSKIJ", "(3491) FRIDOLIN", "(3813) FORTOV", "(1056) AZALEA", "(4945) IKENOZENNI", "(826) HENRIKA", "(12) VICTORIA", "(4951) IWAMOTO", "(2271) KISO", "(181) EUCHARIS", "(1052) BELGICA", "(193) AMBROSIA", "(387) AQUITANIA", "(759) VINIFERA", "(1848) DELVAUX", "(1659) PUNKAHARJU", "(358) APOLLONIA", "(10473) THIROUIN", "(105) ARTEMIS", "(539) PAMINA", "(564) DUDU", "(3635) KREUTZ", "(2141) SIMFEROPOL", "(3265) FLETCHER", "(103) HERA", "(2370) VAN ALTENA", "(631) PHILIPPINA", "(1882) RAUMA", "(17) THETIS", "(269) JUSTITIA", "(136) AUSTRIA", "(984) GRETIA", "(162) LAURENTIA", "(161) ATHOR", "(90) ANTIOPE", "(3678) MONGMANWAI", "(2147) KHARADZE", "(378) HOLMIA", "(476) HEDWIG", "(383) JANINA", "(795) FINI", "(753) TIFLIS", "(1071) BRITA", "(3074) POPOV", "(2575) BULGARIA", "(1214) RICHILDE", "(592) BATHSEBA", "(177) IRMA", "(5242) KENREIMONIN", "(4804) PASTEUR", "(194) PROKNE", "(534) NASSOVIA", "(973) ARALIA", "(2559) SVOBODA", "(5318) DIENTZENHOFER", "(4718) ARAKI", "(30) URANIA", "(6078) BURT", "(4774) HOBETSU", "(279) THULE", "(808) MERXIA", "(5010) AMENEMHET", "(345) TERCIDINA", "(677) AALTJE", "(2086) NEWELL", "(1433) GERAMTINA", "(4982) BARTINI", "(3307) ATHABASCA", "(1502) ARENDA", "(152) ATALA", "(1539) BORRELLY", "(208) LACRIMOSA", "(2917) SAWYER HOGG", "(679) PAX", "(1730) MARCELINE", "(1385) GELRIA", "(1534) NASI", "(547) PRAXEDIS", "(2444) LEDERLE", "(3885) BOGORODSKIJ", "(1271) ISERGINA", "(3406) OMSK", "(4619) POLYAKHOVA", "(481) EMITA", "(4726) FEDERER", "(1490) LIMPOPO", "(494) VIRTUS", "(7225) HUNTRESS", "(642) CLARA", "(1086) NATA", "(3865) LINDBLOOM", "(205) MARTHA", "(3020) NAUDTS", "(1783) ALBITSKIJ", "(3654) AAS", "(554) PERAGA", "(7081) LUDIBUNDA", "(4547) MASSACHUSETTS", "(668) DORA", "(2818) JUVENALIS", "(46) HESTIA", "(1228) SCABIOSA", "(4265) KANI", "(88) THISBE", "(4570) RUNCORN", "(3762) AMARAVELLA", "(1329) ELIANE", "(179) KLYTAEMNESTRA", "(56) MELETE", "(399) PERSEPHONE", "(5348) KENNOGUCHI", "(1702) KALAHARI", "(3704) GAOSHIQI", "(4706) DENNISREUTER", "(5595) ROTH", "(7405) 1988 FF", "(1929) KOLLAA", "(1301) YVONNE", "(3546) ATANASOFF", "(122) GERDA", "(2401) AEHLITA", "(1601) PATRY", "(507) LAODICA", "(674) RACHELE", "(3249) MUSASHINO", "(87) SYLVIA", "(737) AREQUIPA", "(5344) RYABOV", "(7304) NAMIKI", "(824) ANASTASIA", "(3474) LINSLEY", "(886) WASHINGTONIA", "(8008) 1988 TQ4", "(3363) BOWEN", "(2430) BRUCE HELIN", "(1332) MARCONIA", "(3576) GALINA", "(1891) GONDOLA", "(3314) BEALS", "(142) POLANA", "(9970) 1992 ST1", "(2852) DECLERCQ", "(130) ELEKTRA", "(261) PRYMNO", "(377) CAMPANIA", "(7451) VERBITSKAYA", "(189) PHTHIA", "(783) NORA", "(751) FAINA", "(1474) BEIRA", "(336) LACADIERA", "(4304) GEICHENKO", "(4786) TATIANINA", "(1304) AROSA", "(410) CHLORIS", "(337) DEVOSA", "(3796) LENE", "(543) CHARLOTTE", "(1110) JAROSLAWA", "(2402) SATPAEV", "(1716) PETER", "(3371) GIACCONI", "(747) WINCHESTER", "(2754) EFIMOV", "(1015) CHRISTA", "(1970) SUMERIA", "(353) RUPERTO-CAROLA", "(2930) EURIPIDES", "(2446) LUNACHARSKY", "(2369) CHEKHOV", "(331) ETHERIDGEA", "(2448) SHOLOKHOV", "(3311) PODOBED", "(3587) DESCARTES", "(5892) MILESDAVIS", "(980) ANACOSTIA", "(1188) GOTHLANDIA", "(384) BURDIGALA", "(1903) ADZHIMUSHKAJ", "(5690) 1992 EU", "(247) EUKRATE", "(2244) TESLA", "(395) DELIA", "(167) URDA", "(2744) BIRGITTA", "(1751) HERGET", "(3862) AGEKIAN", "(7404) 1988 AA5", "(6086) VRCHLICKY", "(3713) PIETERS", "(8334) 1984 CF", "(4733) ORO", "(1734) ZHONGOLOVICH", "(4548) WIELEN", "(720) BOHLINIA", "(4082) SWANN", "(4311) ZGURIDI", "(2640) HALLSTROM", "(3248) FARINELLA", "(327) COLUMBIA", "(281) LUCRETIA", "(365) CORDUBA", "(180) GARUMNA", "(398) ADMETE", "(6585) O'KEEFE", "(2567) ELBA", "(1638) RUANDA", "(3844) LUJIAXI", "(3850) PELTIER", "(523) ADA", "(288) GLAUKE", "(1542) SCHALEN", "(4284) KAHO", "(5195) KAENDLER", "(51) NEMAUSA", "(1336) ZEELANDIA", "(742) EDISONA", "(1284) LATVIA", "(134) SOPHROSYNE", "(4737) KILADZE", "(2851) HARBIN", "(101) HELENA", "(1977) SHURA", "(119) ALTHAEA", "(4426) ROERICH", "(2085) HENAN", "(924) TONI", "(2107) ILMARI", "(2582) HARIMAYA-BASHI", "(3175) NETTO", "(1839) RAGAZZA", "(2736) OPS", "(7245) 1991 RN10", "(785) ZWETANA", "(3542) TANJIAZHEN", "(614) PIA", "(174) PHAEDRA", "(3209) BUCHWALD", "(1664) FELIX", "(201) PENELOPE", "(3155) LEE", "(3443) LEETSUNGDAO", "(1351) UZBEKISTANIA", "(2973) PAOLA", "(1857) PARCHOMENKO", "(2579) SPARTACUS", "(2675) TOLKIEN", "Multiple Asteroids", "(675) LUDMILLA", "(3827) ZDENEKHORSKY", "(3873) RODDY", "(845) NAEMA", "(3767) DIMAGGIO", "(1251) HEDERA", "(1798) WATTS", "(844) LEONTINA", "(75) EURYDIKE", "(638) MOIRA", "(84) KLIO", "(462) ERIPHYLA", "(1021) FLAMMARIO", "(1045) MICHELA", "(24) THEMIS", "(994) OTTHILD", "(2251) TIKHOV", "(513) CENTESIMA", "(107) CAMILLA", "(3971) VORONIKHIN", "(6146) ADAMKRAFFT", "(62) ERATO", "(13) EGERIA", "(3737) BECKMAN", "(584) SEMIRAMIS", "(4036) WHITEHOUSE", "(898) HILDEGARD", "(1738) OOSTERHOFF", "(1480) AUNUS", "(4292) AOBA", "(2386) NIKONOV", "(2911) MIAHELENA", "(5079) BRUBECK", "(622) ESTHER", "(186) CELUTA", "(416) VATICANA", "(3563) CANTERBURY", "(458) HERCYNIA", "(1724) VLADIMIR", "(1904) MASSEVITCH", "(1729) BERYL", "(2708) BURNS", "(109) FELICITAS", "(2635) HUGGINS", "(263) DRESDA", "(460) SCANIA", "(6386) KEITHNOLL", "(2604) MARSHAK", "(3287) OLMSTEAD", "(453) TEA", "(1560) STRATTONIA", "(164) EVA", "(35) LEUKOTHEA", "(2042) SITARSKI", "(1635) BOHRMANN", "(485) GENUA", "(519) SYLVANIA", "(1128) ASTRID", "(286) ICLEA", "(1603) NEVA", "(3040) KOZAI", "(7211) XERXES", "(2715) MIELIKKI", "(4215) KAMO", "(28) BELLONA", "(553) KUNDRY", "(65) CYBELE", "(997) PRISKA", "(1888) ZU CHONG-ZHI", "(14) IRENE", "(4917) YURILVOVIA", "(61) DANAE", "(386) SIEGENA", "(5108) LUBECK", "(278) PAULINA", "(233) ASTEROPE", "(360) CARLOVA", "(1494) SAVO", "(4845) TSUBETSU", "(21) LUTETIA", "(5553) CHODAS", "(6907) HARRYFORD", "(1025) RIEMA", "(250) BETTINA", "(856) BACKLUNDA", "(1386) STORERIA", "(266) ALINE", "(4033) YATSUGATAKE", "(556) PHYLLIS", "(4) VESTA", "(60) ECHO", "(1104) SYRINGA", "(729) WATSONIA", "(735) MARGHANNA", "(1373) CINCINNATI", "(4536) DREWPINSKY", "(3782) CELLE", "(2346) LILIO", "(491) CARINA", "(1517) BEOGRAD", "(5840) RAYBROWN", "(496) GRYPHIA", "(531) ZERLINA", "(3670) NORTHCOTT", "(925) ALPHONSINA", "(3376) ARMANDHAMMER", "(7) IRIS", "(1020) ARCADIA", "(521) BRIXIA", "(687) TINETTE", "(2331) PARVULESCO", "(102) MIRIAM", "(3394) BANNO", "(1022) OLYMPIADA", "(1201) STRENUA", "(1799) KOUSSEVITZKY", "(5234) SECHENOV", "(516) AMHERSTIA", "(779) NINA", "(200) DYNAMENE", "(1102) PEPITA", "(6005) 1989 BD", "(375) URSULA", "(2354) LAVROV", "(321) FLORENTINA", "(853) NANSENIA", "(971) ALSATIA", "(2089) CETACEA", "(304) OLGA", "(4434) NIKULIN", "(2152) HANNIBAL", "(4182) MOUNT LOCKE", "(2547) HUBEI", "(579) SIDONIA", "(7056) KIERKEGAARD", "(2952) LILLIPUTIA", "(781) KARTVELIA", "(160) UNA", "(3262) MIUNE", "(3526) JEFFBELL", "(1234) ELYNA", "(63) AUSONIA", "(6354) VANGELIS", "(1014) SEMPHYRA", "(2507) BOBONE", "(1252) CELESTIA", "(2509) CHUKOTKA", "(135) HERTHA", "(3642) FRIEDEN", "(95) ARETHUSA", "(1140) CRIMEA", "(409) ASPASIA", "(5103) DIVIS", "(246) ASPORINA", "(671) CARNEGIA", "(2704) JULIAN LOEWE", "(4610) KAJOV", "(934) THURINGIA", "(226) WERINGIA", "(4611) VULKANEIFEL", "(3364) ZDENKA", "(392) WILHELMINA", "(895) HELIO", "(3417) TAMBLYN", "(5081) SANGUIN", "(782) MONTEFIORE", "(363) PADUA", "(2194) ARPOLA", "(423) DIOTIMA", "(1107) LICTORIA", "(1634) NDOLA", "(388) CHARYBDIS", "(3375) AMY", "(374) BURGUNDIA", "(7224) VESNINA", "(1055) TYNKA", "(3192) A'HEARN", "(2737) KOTKA", "(5685) SANENOBUFUKUI", "(731) SORGA", "(776) BERBERICIA", "(6211) TSUBAME", "(78) DIANA", "(115) THYRA", "(1930) LUCIFER", "(2762) FOWLER", "(425) CORNELIA", "(431) NEPHELE", "(2157) ASHBROOK", "(5647) SAROJININAIDU", "(1548) PALOMAA", "(1587) KAHRSTEDT", "(175) ANDROMACHE", "(58) CONCORDIA", "(2772) DUGAN", "(5534) 1941 UN", "(3458) BODUOGNAT", "(34) CIRCE", "(2957) TATSUO", "(3829) GUNMA", "(1148) RARAHU", "(965) ANGELICA", "(3198) WALLONIA", "(236) HONORIA", "(144) VIBILIA", "(2396) KOCHI", "(4051) HATANAKA", "(396) AEOLIA", "(2185) GUANGDONG", "(4516) PUGOVKIN", "(1352) WAWEL", "(99913) 1997 CZ5", "(2371) DIMITROV", "(2720) PYOTR PERVYJ", "(3534) SAX", "(3430) BRADFIELD", "(4135) SVETLANOV", "(69) HESPERIA", "(611) VALERIA", "(3701) PURKYNE", "(393) LAMPETIA", "(1262) SNIADECKIA", "(4817) GLIBA", "(6) HEBE", "(2508) ALUPKA", "(5552) STUDNICKA", "(715) TRANSVAALIA", "(5240) KWASAN", "(3611) DABU", "(5134) EBILSON", "(1428) MOMBASA", "(484) PITTSBURGHIA", "(165) LORELEY", "(3858) DORCHESTER", "(8450) EGOROV", "(1323) TUGELA", "(4997) KSANA", "(148) GALLIA", "(3647) DERMOTT", "(397) VIENNA", "(129) ANTIGONE", "(1493) SIGRID", "(5632) INGELEHMANN", "(2468) REPIN", "(3800) KARAYUSUF", "(3365) RECOGNE", "(3841) DICICCO", "(4923) CLARKE", "(2022) WEST", "(85) IO", "(1680) PER BRAHE", "(6192) JAVIERGOROSABEL", "(673) EDDA", "(443) PHOTOGRAPHICA", "(111) ATE", "(2501) LOHJA", "(2521) HEIDI", "(5091) ISAKOVSKIJ", "(112) IPHIGENIA", "(3734) WALAND", "(6364) CASARINI", "(1204) RENZIA", "(2864) SODERBLOM", "(3628) BOZNEMCOVA", "(4628) LAPLACE", "(1483) HAKOILA", "(413) EDBURGA", "(1300) MARCELLE", "(1706) DIECKVOSS", "(187) LAMBERTA", "(1562) GONDOLATSCH", "(355) GABRIELLA", "(7763) CRABEELS", "(359) GEORGIA", "(569) MISA", "(1106) CYDONIA", "(127) JOHANNA", "(3349) MANAS", "(4096) KUSHIRO", "(804) HISPANIA", "(1640) NEMO", "(773) IRMINTRAUD", "(2881) MEIDEN", "(191) KOLGA", "(2380) HEILONGJIANG", "(1076) VIOLA", "(1600) VYSSOTSKY", "(2949) KAVERZNEV", "(114) KASSANDRA", "(541) DEBORAH", "(1048) FEODOSIA", "(5159) BURBINE", "(3686) ANTOKU", "(1458) MINEURA", "(2789) FOSHAN", "(4422) JARRE", "(1471) TORNIO", "(128) NEMESIS", "(866) FATME", "(1088) MITAKA", "(1263) VARSAVIA", "(2099) OPIK", "(2801) HUYGENS", "(1406) KOMPPA", "(6906) JOHNMILLS", "(2750) LOVIISA", "(4256) KAGAMIGAWA", "(4272) ENTSUJI", "(4944) KOZLOVSKIJ", "(2527) GREGORY", "(596) SCHEILA", "(961) GUNNIE", "(206) HERSILIA", "(1807) SLOVAKIA", "(7728) GIBLIN", "(3669) VERTINSKIJ", "(23) THALIA", "(4995) GRIFFIN", "(4297) EICHHORN", "(4719) BURNABY", "(985) ROSINA", "(258) TYCHE", "(166) RHODOPE", "(6592) GOYA", "(80) SAPPHO", "(1653) YAKHONTOVIA", "(4107) RUFINO", "(79) EURYNOME", "(2988) KORHONEN", "(207) HEDDA", "(1520) IMATRA", "(414) LIRIOPE", "(578) HAPPELIA", "(4342) FREUD", "(702) ALAUDA", "(342) ENDYMION", "(3949) MACH", "(402) CHLOE", "(444) GYPTIS", "(600) MUSA", "(6782) 1990 SU10", "(4682) BYKOV", "(3440) STAMPFER", "(1565) LEMAITRE", "(511) DAVIDA", "(649) JOSEFA", "(190) ISMENE", "(4037) IKEYA", "(2060) CHIRON", "(26209) 1997 RD1", "(282) CLORINDE", "(3137) HORKY", "(4287) TRISOV", "(2732) WITT", "(3687) DZUS", "(2335) JAMES", "(178) BELISANA", "(3007) REAVES", "(38) LEDA", "(7604) KRIDSADAPORN", "(3985) RAYBATSON", "(1294) ANTWERPIA", "(173) INO", "(209) DIDO", "(116) SIRONA", "(3169) OSTRO", "(3861) LORENZ", "(1185) NIKKO", "(3090) TJOSSEM", "(4713) STEEL", "(555) NORMA", "(372) PALMA", "(2035) STEARNS", "(633) ZELIMA", "(37) FIDES", "(1189) TERENTIA", "(5416) ESTREMADOYRO", "(244) SITA", "(2390) NEZARKA", "(64) ANGELINA", "(5133) PHILLIPADAMS", "(970) PRIMULA", "(4942) MUNROE", "(2167) ERIN", "(477) ITALIA", "(242) KRIEMHILD", "(381) MYRRHA", "(5069) TOKEIDAI", "(1017) JACQUELINE", "(2834) CHRISTY CAROL", "(3214) MAKARENKO", "(3920) AUBIGNAN", "(2410) MORRISON", "(241) GERMANIA", "(705) ERMINIA", "(5111) JACLIFF", "(2465) WILSON", "(3) JUNO", "(5397) VOJISLAVA", "(4607) SEILANDFARM", "(48) DORIS", "(4396) GRESSMANN", "(1152) PAWONA", "(1968) MEHLTRETTER", "(1936) LUGANO", "(5102) BENFRANKLIN", "(6283) 1980 VX1", "(2328) ROBESON", "(3910) LISZT", "(1726) HOFFMEISTER", "(3976) LISE", "(2428) KAMENYAR", "(1374) ISORA", "(1858) LOBACHEVSKIJ", "(3684) BERRY", "(1563) NOEL", "(3630) LUBOMIR", "(597) BANDUSIA", "(237) COELESTINA", "(4417) LECAR", "(89) JULIA", "(490) VERITAS", "(560) DELILA", "(10504) DOGA", "(4435) HOLT", "(151) ABUNDANTIA", "(1836) KOMAROV", "(470) KILIA", "(5482) KORANKEI", "(308) POLYXO", "(5196) BUSTELLI", "(10199) CHARIKLO", "(3579) ROCKHOLT", "(1007) PAWLOWIA", "(2258) VIIPURI", "(3744) HORN-D'ARTURO", "(2809) VERNADSKIJ", "(559) NANON", "(2840) KALLAVESI", "(3181) AHNERT", "(2378) PANNEKOEK", "(2791) PARADISE", "(2427) KOBZAR", "(3320) NAMBA", "(1715) SALLI", "(5) ASTRAEA", "(110) LYDIA", "(4678) NINIAN", "(5243) CLASIEN", "(240) VANADIS", "(860) URSINA", "(5610) BALSTER", "(563) SULEIKA", "(2353) ALVA", "(4188) KITEZH", "(757) PORTLANDIA", "(3636) PAJDUSAKOVA", "(3451) MENTOR", "(150) NUWA", "(184) DEJOPEJA", "(17480) 1991 PE10", "(2934) ARISTOPHANES", "(3309) BRORFELDE", "(792) METCALFIA", "(4261) GEKKO", "(1131) PORZIA", "(2827) VELLAMO", "(4372) QUINCY", "(512) TAURINENSIS", "(1069) PLANCKIA", "(1293) SONJA", "(3833) CALINGASTA", "(1248 )JUGURTHA", "(2598) MERLIN", "(2746) HISSAO", "(1667) PELS", "(5448) SIEBOLD", "(5641) MCCLEESE", "(2748) PATRICK GENE", "(139) JUEWA", "(1058) GRUBBA", "(1187) AFRA", "(2029) BINOMI", "(2733) HAMINA", "(4900) MAYMELOU", "(3345) TARKOVSKIJ", "(4479) CHARLIEPARKER", "(2409) CHAPMAN", "(2625) JACK LONDON", "(627) CHARIS", "(171) OPHELIA", "(4194) SWEITZER", "(405) THIA", "(7170) LIVESEY", "(42) ISIS", "(1797) SCHAUMASSE", "(322) PHAEO", "(257) SILESIA", "(4604) STEKARSTROM", "(29) AMPHITRITE", "(2879) SHIMIZU", "(52) EUROPA", "(2925) BEATTY", "(3788) STEYAERT", "(4910) KAWASATO", "(146) LUCINA", "(2874) JIM YOUNG", "(5379) ABEHIROSHI", "(5253) FREDCLIFFORD", "(5333) KANAYA", "(872) HOLDA", "(4116) ELACHI", "(4156) OKADANOBORU", "(551) ORTRUD", "(3170) DZHANIBEKOV", "(253) MATHILDE", "(295) THERESIA", "(4838) BILLMCLAUGHLIN", "(950) AHRENSA", "(905) UNIVERSITAS", "(389) INDUSTRIA", "(8333) 1982 VF", "(1196) SHEBA", "(4369) SEIFERT", "(1155) AENNA", "(348) MAY", "(739) MANDEVILLE", "(5956) D'ALEMBERT", "(1065) AMUNDSENIA", "(1660) WOOD", "(6716) 1990 RO1", "(4969) LAWRENCE", "(2169) TAIWAN", "(4650) MORI", "(1695) WALBECK", "(2857) NOT", "(1831) NICHOLSON", "(5329) DECARO", "(929) ALGUNDE", "(2040) CHALONGE", "(57) MNEMOSYNE", "(1860) BARBAROSSA", "(2482) PERKIN", "(310) MARGARITA", "(121) HERMIONE", "(1856) RUZENA", "(3536) SCHLEICHER", "(4702) BEROUNKA", "(4424) ARKHIPOVA", "(243) IDA", "(442) EICHSFELDIA", "(352) GISELA", "(2045) PEKING", "(2566) KIRGHIZIA", "(2065) SPICER", "(586) THEKLA", "(2560) SIEGMA", "(4750) MUKAI", "(713) LUSCINIA", "(2078) NANKING", "(2478) TOKAI", "(870) MANTO", "(94) AURORA", "(275) SAPIENTIA", "(767) BONDIA", "(1508) KEMI", "(234) BARBARA", "(503) EVELYN", "(1016) ANITRA", "(1264) LETABA", "(1747) WRIGHT", "(7397) 1986 QS", "(1847) STOBBE", "(1407) LINDELOF", "(3658) FELDMAN", "(196) PHILOMELA", "(412) ELISABETHA", "(1484) POSTREMA", "(2467) KOLLONTAI", "(6410) FUJIWARA", "(6908) KUNIMOTO", "(1604) TOMBAUGH", "(1046) EDWIN", "(22449) OTTIJEFF", "(2373) IMMO", "(71) NIOBE", "(4534) RIMSKIJ-KORSAKOV", "(4001) PTOLEMAEUS", "(3712) KRAFT", "(572) REBEKKA", "(5230) ASAHINA", "(604) TEKMESSA", "(27) EUTERPE", "(2) PALLAS", "(1278) KENYA", "(3533) TOYOTA", "(3831) PETTENGILL", "(1360) TARKA", "(1350) ROSSELIA", "(66) MAJA", "(32) POMONA", "(2493) ELMER", "(1545) THERNOE", "(5330) SENRIKYU", "(784) PICKERINGIA", "(796) SARITA", "(2873) BINZEL", "(532) HERCULINA", "(4072) YAYOI", "(172) BAUCIS", "(1024) HALE", "(117) LOMIA", "(3028) ZHANGGUOXI", "(456) ABNOBA", "(3819) ROBINSON", "(4849) ARDENNE", "(771) LIBERA", "(1593) FAGNES", "(4839) DAISETSUZAN", "(2872) GENTELEC", "(33) POLYHYMNIA", "(1212) FRANCETTE", "(156) XANTHIPPE", "(1998) TITIUS", "(2087) KOCHERA", "(4711) KATHY", "(4853) MARIELUKAC", "(2001) EINSTEIN", "(2280) KUNIKOV", "(5649) DONNASHIRLEY", "(3972) RICHARD", "(527) EURYANTHE", "(3258) SOMNIUM", "(951) GASPRA", "(4390) MADRETERESA", "(12281) CHAUMONT", "(2977) CHIVILIKHIN", "(3792) PRESTON", "(83) BEATRIX", "(6233) KIMURA", "(1403) IDELSONIA", "(910) ANNELIESE", "(3581) ALVAREZ", "(5565) UKYOUNODAIBU", "(1427) RUVUMA", "(2423) IBARRURI", "(3401) VANPHILOS", "(1948) KAMPALA", "(259) ALETHEIA", "(913) OTILA", "(2382) NONIE", "(4374) TADAMORI", "(4491) OTARU", "(108) HECUBA", "(2953) VYSHESLAVIA", "(3367) ALEX", "(1550) TITO", "(2349) KURCHENKO", "(4327) RIES", "(19) FORTUNA", "(2906) CALTECH", "(479) CAPRERA", "(3567) ALVEMA", "(404) ARSINOE", "(5067) OCCIDENTAL", "(5214) OOZORA", "(2511) PATTERSON", "(3853) HAAS", "(11906) 1992 AE1", "(216) KLEOPATRA", "(2161) GRISSOM", "(2455) SOMVILLE", "(100480) 1996 UK", "(376) GEOMETRIA", "(749) MALZOVIA", "(930) WESTPHALIA", "(4461) SAYAMA", "(6077) MESSNER", "(2816) PIEN", "(5510) 1988 RF7", "(4280) SIMONENKO", "(74) GALATEA", "(3511) TSVETAEVA", "(4340) DENCE", "(141) LUMEN", "(2905) PLASKETT", "(3566) LEVITAN", "(4748) TOKIWAGOZEN", "(688) MELANIE", "(4222) NANCITA", "(661) CLOELIA", "(4407) TAIHAKU", "(39) LAETITIA", "(471) PAPAGENA", "(3385) BRONNINA", "(704) INTERAMNIA", "(1951) LICK", "(403) CYANE", "(123) BRUNHILD", "(349) DEMBOWSKA", "(4844) MATSUYAMA", "(169) ZELIA", "(317) ROXANE", "(2778) TANGSHAN", "(197) ARETE", "(2996) BOWMAN", "(716) BERKELEY", "(6230) FRAM", "(1186) TURNERA", "(629) BERNARDINA", "(3903) KLIMENT OHRIDSKI", "(2053) NUKI", "(3493) STEPANOV", "(5051) RALPH", "(5438) LORRE", "(3096) BEZRUC", "(862) FRANZIA", "(1613) SMILEY", "(3640) GOSTIN", "(82) ALKMENE", "(18) MELPOMENE", "(1553) BAUERSFELDA", "(5013) SUZHOUSANZHONG", "(3527) MCCORD", "(3700) GEOWILLIAMS", "(120) LACHESIS", "(1327) NAMAQUA", "(723) HAMMONIA", "(113) AMALTHEA", "(267) TIRZA", "(5401) MINAMIODA", "(16) PSYCHE", "(2088) SAHLIA", "(2308) SCHILT", "(5485) KAULA", "(5467) 1988 AG", "(5492) THOMA", "(5208) ROYER", "(158) KORONIS", "(4157) IZU", "(47) AGLAJA", "(264) LIBUSSA", "(4343) TETSUYA", "(176) IDUNA", "(1795) WOLTJER", "(2056) NANCY", "(2855) BASTIAN", "(4305) CLAPTON", "(2282) ANDRES BELLO", "(124) ALKESTE", "(41) DAPHNE", "(7562) KAGIROINO-OKA", "(2064) THOMSEN", "(22) KALLIOPE", "(379) HUENNA", "(118) PEITHO", "(77) FRIGGA", "(1414) JEROME", "(11785) SARGENT", "(5294) ONNETOH", "(1032) PAFURI", "(2730) BARKS", "(3860) PLOVDIV", "(2231) DURRELL", "(945) BARCELONA", "(1039) SONNEBERGA", "(1181) LILITH", "(1692) SUBBOTINA", "(3121) TAMINES", "(626) NOTBURGA", "(2306) BAUSCHINGER", "(3085) DONNA", "(4353) ONIZAKI", "(11) PARTHENOPE", "(18514) 1996 TE11", "(4977) RAUTHGUNDIS", "(7512) MONICALAZZARIN", "(2234) SCHMADEL", "(3575) ANYUTA", "(825) TANINA", "(93) MINERVA", "(198) AMPELLA", "(706) HIRUNDO", "(1222) TINA", "(20) MASSALIA", "(5008) MIYAZAWAKENJI", "(54) ALEXANDRA", "(43) ARIADNE", "(446) AETERNITAS", "(4039) SOUSEKI", "(67) ASIA", "(941) MURRAY", "(3886) SHCHERBAKOVIA", "(213) LILAEA", "(5038) OVERBEEK", "(533) SARA", "(545) MESSALINA", "(819) BARNARDIANA", "(5678) DUBRIDGE", "(2606) ODESSA", "(2892) FILIPENKO", "(6704) 1988 CJ", "(183) ISTRIA", "(3592) NEDBAL", "(417) SUEVIA", "(1423) JOSE", "(210) ISABELLA", "(4124) HERRIOT", "(654) ZELINDA", "(1098) HAKONE", "(1331) SOLVEJG", "(1034) MOZARTIA", "(7110) JOHNPEARSE", "(2569) MADELINE", "(2703) RODARI", "(3255) THOLEN", "(289) NENETTA", "(821) FANNY", "(653) BERENIKE", "(3498) BELTON", "(570) KYTHERA", "(3710) BOGOSLOVSKIJ", "(4558) JANESICK", "(2795) LEPAGE", "(4584) AKAN", "(145) ADEONA", "(2807) KARL MARX", "(2268) SZMYTOWNA", "(2451) DOLLFUS", "(391) INGEBORG", "(168) SIBYLLA", "(2438) OLESHKO", "(441) BATHILDE", "(3645) FABINI", "(3254) BUS", "(4299) WIYN", "(45) EUGENIA", "(3179) BERUTI", "(346) HERMENTARIA", "(366) VINCENTINA", "(185) EUNIKE", "(6129) DEMOKRITOS", "(2019) VAN ALBADA", "(3849) INCIDENTIA", "(10) HYGIEA", "(789) LENA", "(4824) STRADONICE", "(2317) GALYA", "(25) PHOCAEA", "(394) ARDUINA", "(863) BENKOELA", "(2956) YEOMANS", "(5622) PERCYJULIAN", "(464) MEGAIRA", "(99) DIKE", "(238) HYPATIA", "(515) ATHALIA", "(5227) BOCACARA", "(92) UNDINA", "(1642) HILL", "(2189) ZARAGOZA", "(4796) LEWIS", "(581) TAUNTONIA", "(908) BUDA", "(3416) DORRIT", "(55) PANDORA", "(3256) DAGUERRE", "(2724) ORLOV", "(3627) SAYERS", "(8513) 1991 PK11", "(376713) 1995 WQ5", "(4332) MILTON", "(4744) ROVERETO", "(1316) KASAN", "(3224) IRKUTSK", "(4142) DERSU-UZALA", "(5585) PARKS", "(4387) TANAKA", "(272) ANTONIA", "(847) AGNIA", "(1372) HAREMARI", "(5349) PAULHARRIS", "(104) KLYMENE", "(40) HARMONIA", "(5142) OKUTAMA", "(1420) RADCLIFFE", "(31) EUPHROSYNE", "(4950) HOUSE", "(1592) MATHIEU", "(284) AMALIA", "(743) EUGENISIS", "(1549) MIKKO", "(2929) HARRIS", "(7402) 1987 YH", "(712) BOLIVIANA", "(332) SIRI", "(1796) RIGA", "(1324) KNYSNA", "(59) ELPIS", "(1272) GEFION", "(163) ERIGONE", "(5732) 1988 WC", "(2073) JANACEK", "(3545) GAFFEY", "(2131) MAYALL", "(143) ADRIA", "(754) MALABAR", "(4523) MIT", "(5275) ZDISLAVA", "(3730) HURBAN", "(1011) LAODAMIA", "(44) NYSA", "(6249) JENNIFER", "(4884) BRAGARIA", "(1) CERES", "(214) ASCHERA", "(3317) PARIS", "(4767) SUTOKU", "(509) IOLANDA", "(601) NERTHUS", "(1139) ATAMI", "(3674) ERBISBUHL", "(129493) 1995 BM2", "(4205) DAVID HUGHES", "(919) ILSEBILL", "(3507) VILAS", "(4456) MAWSON", "(339) DOROTHEA", "(2861) LAMBRECHT", "(1134) KEPLER", "(1343 )NICOLE", "(599) LUISA", "(371) BOHEMIA", "(3958) KOMENDANTOV", "(335) ROBERTA", "(5817) ROBERTFRAZER", "(5407) 1992 AX", "(678) FREDEGUNDIS", "(793) ARIZONA", "(5087) EMEL'YANOV", "(221) EOS", "(81) TERPSICHORE", "(5576) ALBANESE", "(432) PYTHIA", "(1510) CHARLOIS", "(1567) ALIKOSKI", "(1705) TAPIO", "(3000) LEONARDO", "(76) FREIA", "(5392) PARKER", "(5364) 1980 RC1", "(2659) MILLIS", "(1277) DOLORES", "(5222) IOFFE", "(195) EURYKLEIA", "(1655) COMAS SOLA", "(1932) JANSKY", "(1103) SEQUOIA", "(1126) OTERO", "(49) PALES", "(312) PIERRETTA", "(907) RHODA", "(2653) PRINCIPIA", "(2709) SAGAN", "(182) ELSA", "(2763) JEANS", "(797) MONTANA", "(1923) OSIRIS", "1996 PW", "(3060) DELCANO", "(2850) MOZHAISKIJ", "(6847) KUNZ-HALLSTEIN", "(132) AETHRA", "(1629) PECKER", "(718) ERIDA", "(131) VALA", "(5591) KOYO", "(6669) OBI", "(571) DULCINEA", "(2629) RUDRA", "(3824) BRENDALEE", "(91) AEGINA", "(199) BYBLIS", "(3197) WEISSMAN", "(1766) SLIPHER", "(1989) TATRY", "(1662) HOFFMANN", "(699) HELA", "(3065) SARAHILL", "(598) OCTAVIA", "(1114) LORRAINE", "(2316) JO-ANN", "(1768) APPENZELLA", "(2955) NEWBURN", "(96) AEGLE", "(814) TAURIS", "(100) HEKATE", "(3216) HARRINGTON", "(434) HUNGARIA"], "instruments": ["1.3-m Tinsley Cassegrain/Coude reflector", "Mark III Spectrograph", "2.4-m Hiltner Ritchey-Chretien equatorial reflector", "Mark III Spectrograph"], "instrument_hosts": ["McGraw-Hill Observatory", "McGraw-Hill Observatory"], "data_types": ["Document"], "start_date": "1993-08-21", "stop_date": "1999-03-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/collection_gbo.ast.smass2.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.smass2.spectra/document/collection_gbo.ast.smass2.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.751102Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:smallbodiesoccultations:data::3.0", "title": "Small Bodies Occultations V3.0", "description": "This data set is intended to include all reported timings of observed asteroid, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version is complete through to May 2019, with observations up until Sept 2019.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "SATELLITE"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1911-08-14", "stop_date": "2019-09-30", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/collection_smallbodiesoccultations_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/data/collection_smallbodiesoccultations_data.xml", "scraped_at": "2026-02-25T20:02:10.751115Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:smallbodiesoccultations:document::3.0", "title": "Small Bodies Occultations V3.0", "description": "This data set is intended to include all reported timings of observed asteroid, planet, and planetary satellite occultation events made by observers from around the world. Included are occultation axes derived from those timings, and (wherever possible) volume-equivalent diameters derived from fitting to shape models. This version is complete through to May 2019, with observations up until Sept 2019.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "SATELLITE"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1911-08-14", "stop_date": "2019-09-30", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/collection_smallbodiesoccultations_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/smallbodiesoccultations_V3_0/document/collection_smallbodiesoccultations_document.xml", "scraped_at": "2026-02-25T20:02:10.751120Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_binary_parameters_compilation:data::3.0", "title": "BINARY MINOR PLANETS V3.0", "description": "The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1978-12-01", "stop_date": "2019-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/collection_ast_binary_parameters_compilation_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/data/collection_ast_binary_parameters_compilation_data.xml", "scraped_at": "2026-02-25T20:02:10.751124Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_binary_parameters_compilation:document::3.0", "title": "BINARY MINOR PLANETS V3.0", "description": "The data set lists orbital and physical properties for well-observed or suspected binary/multiple minor planets including the Pluto system, compiled from the published literature as inspired by Richardson and Walsh (2006) and similar reviews (Merline et al., 2003; Noll, 2006; Pravec et al., 2006; Pravec and Harris, 2007; Descamps and Marchis, 2008; Noll et al., 2008; Walsh, 2009). In total 370 companions in 351 systems are included. Data are presented in three tables: one for orbital and physical properties; one for companion designations, discovery information, and reference codes for data values; and one giving full references for each reference code. This data set is complete for binary/multiple components reported through 31 March 2019.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1978-12-01", "stop_date": "2019-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/collection_ast_binary_parameters_compilation_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_binary_parameters_compilation_V3_0/document/collection_ast_binary_parameters_compilation_document.xml", "scraped_at": "2026-02-25T20:02:10.751128Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images:data::1.0", "title": "OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0", "description": "This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Purgathofer SA71-20", "Landolt SA114-790", "Landolt SA114-223", "(101955) Bennu", "Purgathofer SA71-07"], "instruments": ["University of Arizona Kuiper 1.54m telescope", "ccd21 camera for the Kuiper 1.54m telescope"], "instrument_hosts": ["Steward Observatory"], "data_types": ["Data"], "start_date": "2005-09-14", "stop_date": "2005-09-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/collection_orex.gbo.ast-bennu.lightcurves-images_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/data/collection_orex.gbo.ast-bennu.lightcurves-images_data.xml", "scraped_at": "2026-02-25T20:02:10.751132Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.gbo.ast-bennu.lightcurves-images:document::1.0", "title": "OSIRIS-REx Mt. Bigelow Ground Based Bennu Observations V1.0", "description": "This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and light curve observations of the asteroid 101955 Bennu as well as the derived light curves. At the time of the observations, September 2005, the asteroid carried the provisional designation 1999 RQ36. Observations were made as a part of the OSIRIS-REx asteroid sample return mission ground observing campaign to characterize potential mission targets. 101955 Bennu was subsequently chosen as the mission target. This particular data set contains observations of 101955 Bennu and a series of 5 standard stars taken at the University of Arizona Observatories Kuiper 1.54-m reflector.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Purgathofer SA71-20", "Landolt SA114-790", "Landolt SA114-223", "(101955) Bennu", "Purgathofer SA71-07"], "instruments": ["University of Arizona Kuiper 1.54m telescope", "ccd21 camera for the Kuiper 1.54m telescope"], "instrument_hosts": ["Steward Observatory"], "data_types": ["Document"], "start_date": "2005-09-14", "stop_date": "2005-09-17", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/collection_orex.gbo.ast-bennu.lightcurves-images_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/orex.gbo.ast-bennu.lightcurves-images_V1_0/document/collection_orex.gbo.ast-bennu.lightcurves-images_document.xml", "scraped_at": "2026-02-25T20:02:10.751137Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.zappala-etal.families:data::1.0", "title": "Zappala et al. (1995) Asteroid Dynamical Families V1.0", "description": "Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search", "Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/collection_ast.zappala-etal.families_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/data/collection_ast.zappala-etal.families_data.xml", "scraped_at": "2026-02-25T20:02:10.751141Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.zappala-etal.families:document::1.0", "title": "Zappala et al. (1995) Asteroid Dynamical Families V1.0", "description": "Dynamical family classification of asteroids by Zappala et al., based on the hierarchical clustering method", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search", "Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/collection_ast.zappala-etal.families_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.zappala-etal.families/document/collection_ast.zappala-etal.families_document.xml", "scraped_at": "2026-02-25T20:02:10.751145Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-1999td10.images-lightcurves:data::1.0", "title": "Visual Imaging and Photometry of (29981) 1999 TD10 V1.0", "description": "The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Landolt PG2213-006", "Landolt SA95", "Landolt PG0231+051", "Landolt SA92", "(29981) 1999 TD10"], "instruments": ["2.13-m Corning Cassegrain/Coude reflector", "CFIM+T2KA"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Data"], "start_date": "2001-09-21", "stop_date": "2002-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/collection_gbo.ast-1999td10.images-lightcurves_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/data/collection_gbo.ast-1999td10.images-lightcurves_data.xml", "scraped_at": "2026-02-25T20:02:10.751149Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-1999td10.images-lightcurves:document::1.0", "title": "Visual Imaging and Photometry of (29981) 1999 TD10 V1.0", "description": "The outer solar system object (29981) 1999 TD10 was observed in the R band in September 2001, and in B, V, R, and I in October 2002. We derive B-V=0.80+/-0.05mag, V-R=0.48+/-0.05mag, and R-I=0.44+/-0.05mag. Combining our data with the data from Rousselot et. al. 2003, we derive a synodic period of 15.382+/-0.001hr in agreement with the period from Rousselot et. al. 2003. Our observations show no evidence of a coma.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Landolt PG2213-006", "Landolt SA95", "Landolt PG0231+051", "Landolt SA92", "(29981) 1999 TD10"], "instruments": ["2.13-m Corning Cassegrain/Coude reflector", "CFIM+T2KA"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Document"], "start_date": "2001-09-21", "stop_date": "2002-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/collection_gbo.ast-1999td10.images-lightcurves_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-1999td10.images-lightcurves/document/collection_gbo.ast-1999td10.images-lightcurves_document.xml", "scraped_at": "2026-02-25T20:02:10.751154Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.phobos.shape-model:data::1.0", "title": "Gaskell Phobos Shape Model V1.0", "description": "The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Viking", "Phobos 2"], "targets": ["Mars I (Phobos)"], "instruments": ["Visual Imaging Subsystem - Camera A", "Visual Imaging Subsystem - Camera B", "VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1", "VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1", "Vsk-fregat"], "instrument_hosts": ["Viking Orbiter 2", "Viking Orbiter 2", "Viking Orbiter 1", "Viking Orbiter 1", "Phobos 2"], "data_types": ["Data"], "start_date": "1976-07-24", "stop_date": "1989-03-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/collection_gaskell.phobos.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/data/collection_gaskell.phobos.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.751159Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.phobos.shape-model:document::1.0", "title": "Gaskell Phobos Shape Model V1.0", "description": "The shape model of Phobos derived by Robert Gaskell from Viking Orbiter 1 and Phobos 2 images. The model is provided in the implicitly connected quadrilateral (ICQ) format. This version of the model was prepared on March 11, 2006. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Viking", "Phobos 2"], "targets": ["Mars I (Phobos)"], "instruments": ["Visual Imaging Subsystem - Camera A", "Visual Imaging Subsystem - Camera B", "VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1", "VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1", "Vsk-fregat"], "instrument_hosts": ["Viking Orbiter 2", "Viking Orbiter 2", "Viking Orbiter 1", "Viking Orbiter 1", "Phobos 2"], "data_types": ["Document"], "start_date": "1976-07-24", "stop_date": "1989-03-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/collection_gaskell.phobos.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.phobos.shape-model/document/collection_gaskell.phobos.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.751164Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra:document::1.0", "title": "document collection for the \"IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS \" bundle", "description": "This is the document collection for the gbo.ast.irtf-spex-collection.spectra bundle. This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1014) Semphyra", "(1020) Arcadia", "(1039) Sonneberga", "(1098) Hakone", "(110) Lydia", "(1103) Sequoia", "(112) Iphigenia", "(1228) Scabiosa", "(1251) Hedera", "(1275) Cimbria", "(129) Antigone", "(1317) Silvretta", "(135) Hertha", "(136) Austria", "(143) Adria", "(144) Vibilia", "(1468) Zomba", "(1545) Thernoe", "(1580) Betulia", "(16) Psyche", "(166) Rhodope", "(1662) Hoffmann", "(17) Thetis", "(173) Ino", "(179) Klytaemnestra", "(1858) Lobachevskij", "(186) Celuta", "(1903) Adzhimushkaj", "(1929) Kollaa", "(2) Pallas", "(2042) Sitarski", "(2045) Peking", "(2048) Dwornik", "(209) Dido", "(21) Lutetia", "(2100) Ra-Shalom", "(213) Lilaea", "(214) Aschera", "(216) Kleopatra", "(217) Eudora", "(221) Eos", "(224) Oceana", "(229) Adelinda", "(233) Asterope", "(234) Barbara", "(2371) Dimitrov", "(2401) Aehlita", "(2442) Corbett", "(246) Asporina", "(250) Bettina", "(2501) Lohja", "(2504) Gaviola", "(2511) Patterson", "(25143) Itokawa", "(2566) Kirghizia", "(2579) Spartacus", "(260) Huberta", "(2606) Odessa", "(2653) Principia", "(27343) Deannashea", "(2763) Jeans", "(2795) Lepage", "(2823) van der Laan", "(283) Emma", "(284) Amalia", "(2851) Harbin", "(289) Nenetta", "(2912) Lapalma", "(304) Olga", "(3103) Eger", "(3155) Lee", "(317) Roxane", "(322) Phaeo", "(335) Roberta", "(3363) Bowen", "(337) Devosa", "(3395) Jitka", "(347) Pariana", "(354) Eleonora", "(359) Georgia", "(3657) Ermolova", "(3703) Volkonskaya", "(375) Ursula", "(3782) Celle", "(379) Huenna", "(38070) Redwine", "(3819) Robinson", "(383) Janina", "(387) Aquitania", "(397) Vienna", "(4) Vesta", "(4038) Kristina", "(409) Aspasia", "(41) Daphne", "(417) Suevia", "(4188) Kitezh", "(419) Aurelia", "(4215) Kamo", "(426) Hippo", "(43) Ariadne", "(434) Hungaria", "(44) Nysa", "(441) Bathilde", "(4426) Roerich", "(446) Aeternitas", "(46) Hestia", "(4796) Lewis", "(497) Iva", "(50) Virginia", "(505) Cava", "(5111) Jacliff", "(517) Edith", "(53) Kalypso", "(536) Merapi", "(547) Praxedis", "(5481) Kiuchi", "(5498) Gustafsson", "(55) Pandora", "(559) Nanon", "(572) Rebekka", "(5840) Raybrown", "(599) Luisa", "(62) Erato", "(64) Angelina", "(661) Cloelia", "(676) Melitta", "(678) Fredegundis", "(679) Pax", "(686) Gersuind", "(709) Fringilla", "(71) Niobe", "(712) Boliviana", "(739) Mandeville", "(742) Edisona", "(75) Eurydike", "(757) Portlandia", "(758) Mancunia", "(768) Struveana", "(77) Frigga", "(771) Libera", "(779) Nina", "(7800) Zhongkeyuan", "(785) Zwetana", "(789) Lena", "(808) Merxia", "(809) Lundia", "(844) Leontina", "(847) Agnia", "(863) Benkoela", "(87) Sylvia", "(872) Holda", "(89) Julia", "(899) Jokaste", "(909) Ulla", "(9481) Menchu", "(9553) Colas", "(956) Elisa", "(97) Klotho", "(973) Aralia", "(976) Benjamina", "(980) Anacostia", "(984) Gretia", "(99) Dike", "Multiple Asteroids", "(10537) 1991 RY16", "(139359) 2001 ME1", "(16416) 1987 SM3", "(26760) 2001 KP41", "(26886) 1994 TJ2", "(29075) 1950 DA", "(33881) 2000 JK66", "(36412) 2000 OP49", "(50098) 2000 AG98", "(97276) 1999 XC143"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "2000-09-04", "stop_date": "2009-08-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/collection_gbo.ast.irtf-spex-collection.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/document/collection_gbo.ast.irtf-spex-collection.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.751178Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.irtf-spex-collection.spectra:data::1.0", "title": "data collection for the \"IRTF NEAR-IR SPECTROSCOPY OF ASTEROIDS \" bundle", "description": "This is the data collection for the gbo.ast.irtf-spex-collection.spectra bundle. This data set contains low-resolution, near-infrared (0.8 - 2.5 micron) spectra of asteroids obtained with SpeX at the NASA Infrared Telescope Facility (IRTF) on Mauna Kea. Since it was commissioned in June 2000, SpeX has been the premier instrument for producing high quality near-IR spectra of asteroids. These spectra have been used for both taxonomic studies of asteroids, and for more detailed mineralogical and compositional investigations. This data set archives the reduced, calibrated spectra that have been published in the peer-reviewed literature, and will be regularly updated as more data become publicly available.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1014) Semphyra", "(1020) Arcadia", "(1039) Sonneberga", "(1098) Hakone", "(110) Lydia", "(1103) Sequoia", "(112) Iphigenia", "(1228) Scabiosa", "(1251) Hedera", "(1275) Cimbria", "(129) Antigone", "(1317) Silvretta", "(135) Hertha", "(136) Austria", "(143) Adria", "(144) Vibilia", "(1468) Zomba", "(1545) Thernoe", "(1580) Betulia", "(16) Psyche", "(166) Rhodope", "(1662) Hoffmann", "(17) Thetis", "(173) Ino", "(179) Klytaemnestra", "(1858) Lobachevskij", "(186) Celuta", "(1903) Adzhimushkaj", "(1929) Kollaa", "(2) Pallas", "(2042) Sitarski", "(2045) Peking", "(2048) Dwornik", "(209) Dido", "(21) Lutetia", "(2100) Ra-Shalom", "(213) Lilaea", "(214) Aschera", "(216) Kleopatra", "(217) Eudora", "(221) Eos", "(224) Oceana", "(229) Adelinda", "(233) Asterope", "(234) Barbara", "(2371) Dimitrov", "(2401) Aehlita", "(2442) Corbett", "(246) Asporina", "(250) Bettina", "(2501) Lohja", "(2504) Gaviola", "(2511) Patterson", "(25143) Itokawa", "(2566) Kirghizia", "(2579) Spartacus", "(260) Huberta", "(2606) Odessa", "(2653) Principia", "(27343) Deannashea", "(2763) Jeans", "(2795) Lepage", "(2823) van der Laan", "(283) Emma", "(284) Amalia", "(2851) Harbin", "(289) Nenetta", "(2912) Lapalma", "(304) Olga", "(3103) Eger", "(3155) Lee", "(317) Roxane", "(322) Phaeo", "(335) Roberta", "(3363) Bowen", "(337) Devosa", "(3395) Jitka", "(347) Pariana", "(354) Eleonora", "(359) Georgia", "(3657) Ermolova", "(3703) Volkonskaya", "(375) Ursula", "(3782) Celle", "(379) Huenna", "(38070) Redwine", "(3819) Robinson", "(383) Janina", "(387) Aquitania", "(397) Vienna", "(4) Vesta", "(4038) Kristina", "(409) Aspasia", "(41) Daphne", "(417) Suevia", "(4188) Kitezh", "(419) Aurelia", "(4215) Kamo", "(426) Hippo", "(43) Ariadne", "(434) Hungaria", "(44) Nysa", "(441) Bathilde", "(4426) Roerich", "(446) Aeternitas", "(46) Hestia", "(4796) Lewis", "(497) Iva", "(50) Virginia", "(505) Cava", "(5111) Jacliff", "(517) Edith", "(53) Kalypso", "(536) Merapi", "(547) Praxedis", "(5481) Kiuchi", "(5498) Gustafsson", "(55) Pandora", "(559) Nanon", "(572) Rebekka", "(5840) Raybrown", "(599) Luisa", "(62) Erato", "(64) Angelina", "(661) Cloelia", "(676) Melitta", "(678) Fredegundis", "(679) Pax", "(686) Gersuind", "(709) Fringilla", "(71) Niobe", "(712) Boliviana", "(739) Mandeville", "(742) Edisona", "(75) Eurydike", "(757) Portlandia", "(758) Mancunia", "(768) Struveana", "(77) Frigga", "(771) Libera", "(779) Nina", "(7800) Zhongkeyuan", "(785) Zwetana", "(789) Lena", "(808) Merxia", "(809) Lundia", "(844) Leontina", "(847) Agnia", "(863) Benkoela", "(87) Sylvia", "(872) Holda", "(89) Julia", "(899) Jokaste", "(909) Ulla", "(9481) Menchu", "(9553) Colas", "(956) Elisa", "(97) Klotho", "(973) Aralia", "(976) Benjamina", "(980) Anacostia", "(984) Gretia", "(99) Dike", "Multiple Asteroids", "(10537) 1991 RY16", "(139359) 2001 ME1", "(16416) 1987 SM3", "(26760) 2001 KP41", "(26886) 1994 TJ2", "(29075) 1950 DA", "(33881) 2000 JK66", "(36412) 2000 OP49", "(50098) 2000 AG98", "(97276) 1999 XC143"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "2000-09-04", "stop_date": "2009-08-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/collection_gbo.ast.irtf-spex-collection.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.irtf-spex-collection.spectra/data/collection_gbo.ast.irtf-spex-collection.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.751191Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.torino.polarimetry:document::1.0", "title": "document collection for the \"TORINO ASTEROID POLARIMETRY\" bundle", "description": "This is the document collection for the gbo.ast.torino.polarimetry bundle. This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Torino Photopolarimeter", "2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"], "instrument_hosts": ["El Leoncito Astronomical Complex"], "data_types": ["Document"], "start_date": "1995-01-01", "stop_date": "2005-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/collection_gbo.ast.torino.polarimetry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/document/collection_gbo.ast.torino.polarimetry_document.xml", "scraped_at": "2026-02-25T20:02:10.751196Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.torino.polarimetry:data::1.0", "title": "data collection for the \"TORINO ASTEROID POLARIMETRY\" bundle", "description": "This is the data collection for the gbo.ast.torino.polarimetry bundle. This data set contains asteroid polarimetric observations made during 1995-2005 with the Torino photopolarimeter at the 2.15-m telescope at El Leoncito Observatory in Argentina. These observations are reported in Cellino et al. (2005).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Torino Photopolarimeter", "2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"], "instrument_hosts": ["El Leoncito Astronomical Complex"], "data_types": ["Data"], "start_date": "1995-01-01", "stop_date": "2005-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/collection_gbo.ast.torino.polarimetry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.torino.polarimetry/data/collection_gbo.ast.torino.polarimetry_data.xml", "scraped_at": "2026-02-25T20:02:10.751200Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.denis.ir-photometry:document::1.0", "title": "document collection for the \"NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS\" bundle", "description": "This is the document collection for the gbo.ast.denis.ir-photometry bundle. The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["DENIS 3-Channel Near-Infrared Camera", "1-m photometric Cassegrain reflector at European Southern Observatory"], "instrument_hosts": ["European Southern Observatory"], "data_types": ["Document"], "start_date": "1995-12-01", "stop_date": "1999-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/collection_gbo.ast.denis.ir-photometry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/document/collection_gbo.ast.denis.ir-photometry_document.xml", "scraped_at": "2026-02-25T20:02:10.751204Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.denis.ir-photometry:data::1.0", "title": "data collection for the \"NEAR-INFRARED PHOTOMETRY OF ASTEROIDS FROM DENIS\" bundle", "description": "This is the data collection for the gbo.ast.denis.ir-photometry bundle. The DENIS program (Deep European Near-Infrared southern sky Survey) was a ground-based survey of the southern sky with the aim of providing an extensive I,J,Ks photometric catalog of point and extended sources. It was carried out at the 1.0 meter ESO telescope at La Silla, Chile from late 1995 through the end of 1999. This data set contains the DENIS I,J,Ks photometry for 2000 known asteroids identified in the DENIS catalog.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["DENIS 3-Channel Near-Infrared Camera", "1-m photometric Cassegrain reflector at European Southern Observatory"], "instrument_hosts": ["European Southern Observatory"], "data_types": ["Data"], "start_date": "1995-12-01", "stop_date": "1999-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/collection_gbo.ast.denis.ir-photometry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.denis.ir-photometry/data/collection_gbo.ast.denis.ir-photometry_data.xml", "scraped_at": "2026-02-25T20:02:10.751209Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-153591.radar.shape-model:document::1.0", "title": "document collection for the \"SHAPE MODEL OF ASTEROID (153591) 2001 SN263\" bundle", "description": "This is the document collection for the gbo.ast-153591.radar.shape-model bundle. We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(153591) 2001 SN263", "(153591) 2001 SN263"], "instruments": ["Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Arecibo Planetary Radar Transmitter", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Table Mountain Observatory 24-inch CCD camera", "61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory", "SBIG ST-8", "Hunters Hill Observatory 0.36-m SCT", "SBIG ST-9E", "Leura 0.25m", "SBIG ST-6", "1-m Grubb reflector", "FLI--FL-PL3041-1-BB", "Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA", "Apogee AP8", "Modra 0.6-m", "Observatoire de Haute-Provence 1.2m CCD 1996-2014", "1.20-m Newtonian reflector at Observatory of Haute-Provence", "Palmer Divide 0.5m CCD", "0.5m"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Table Mountain Observatory", "Hunters Hill Observatory", "Leura", "Crimean Astrophysical Observatory-Simeis", "Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA", "Modra", "Observatory of Haute-Provence", "Palmer Divide Observatory"], "data_types": ["Document"], "start_date": "2007-01-12", "stop_date": "2008-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/collection_gbo.ast-153591.radar.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/document/collection_gbo.ast-153591.radar.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.751217Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-153591.radar.shape-model:data::1.0", "title": "data collection for the \"SHAPE MODEL OF ASTEROID (153591) 2001 SN263\" bundle", "description": "This is the data collection for the gbo.ast-153591.radar.shape-model bundle. We present the three-dimensional shapes and rotation states of the three components of near-Earth asteroid (153591) 2001 SN263 based on radar images and optical lightcurves (Becker et al., 2015. 2001 SN263 was observed in 2003 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(153591) 2001 SN263", "(153591) 2001 SN263"], "instruments": ["Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Arecibo Planetary Radar Transmitter", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Table Mountain Observatory 24-inch CCD camera", "61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory", "SBIG ST-8", "Hunters Hill Observatory 0.36-m SCT", "SBIG ST-9E", "Leura 0.25m", "SBIG ST-6", "1-m Grubb reflector", "FLI--FL-PL3041-1-BB", "Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA", "Apogee AP8", "Modra 0.6-m", "Observatoire de Haute-Provence 1.2m CCD 1996-2014", "1.20-m Newtonian reflector at Observatory of Haute-Provence", "Palmer Divide 0.5m CCD", "0.5m"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Table Mountain Observatory", "Hunters Hill Observatory", "Leura", "Crimean Astrophysical Observatory-Simeis", "Osservatorio Astronomico della Reg. Aut. Valle D'Aosta OAVdA", "Modra", "Observatory of Haute-Provence", "Palmer Divide Observatory"], "data_types": ["Data"], "start_date": "2007-01-12", "stop_date": "2008-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/collection_gbo.ast-153591.radar.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-153591.radar.shape-model/data/collection_gbo.ast-153591.radar.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.751226Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-8567.radar.shape-model:document::1.0", "title": "document collection for the \"SHAPE AND ROTATION OF (8567) 1996 HW1 \" bundle", "description": "This is the document collection for the gbo.ast-8567.radar.shape-model bundle. We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(8567) 1996 HW1"], "instruments": ["Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Arecibo Planetary Radar Transmitter", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Table Mountain Observatory 24-inch CCD camera", "61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory", "SBIG ST-8", "Hunters Hill Observatory 0.36-m SCT", "SBIG ST-8", "SBIG ST-6", "1-m Grubb reflector", "SBIG ST-6", "Apogee AP8", "Modra 0.6-m", "APOGEE AP8"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Table Mountain Observatory", "Hunters Hill Observatory", "Crimean Astrophysical Observatory-Simeis", "Modra"], "data_types": ["Document"], "start_date": "2005-06-26", "stop_date": "2009-01-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/collection_gbo.ast-8567.radar.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/document/collection_gbo.ast-8567.radar.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.751232Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-8567.radar.shape-model:data::1.0", "title": "data collection for the \"SHAPE AND ROTATION OF (8567) 1996 HW1 \" bundle", "description": "This is the data collection for the gbo.ast-8567.radar.shape-model bundle. We present the three-dimensional shape and rotation state of near-Earth asteroid (8567) 1996 HW1 based on radar images and optical lightcurves (Magri et al., 2011). 1996 HW1 was observed in 2008 using the 12.6-cm radar at Arecibo Observatory. Optical lightcurves were obtained at several observatories and used to further constrain the shape modeling.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(8567) 1996 HW1"], "instruments": ["Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Arecibo Planetary Radar Transmitter", "305-m fixed spherical reflecting antenna at Arecibo Observatory", "Table Mountain Observatory 24-inch CCD camera", "61-cm Astro Mechanics Cassegrain/Coude reflector at Table Mountain Observatory", "SBIG ST-8", "Hunters Hill Observatory 0.36-m SCT", "SBIG ST-8", "SBIG ST-6", "1-m Grubb reflector", "SBIG ST-6", "Apogee AP8", "Modra 0.6-m", "APOGEE AP8"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Table Mountain Observatory", "Hunters Hill Observatory", "Crimean Astrophysical Observatory-Simeis", "Modra"], "data_types": ["Data"], "start_date": "2005-06-26", "stop_date": "2009-01-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/collection_gbo.ast-8567.radar.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-8567.radar.shape-model/data/collection_gbo.ast-8567.radar.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.751238Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves:document::1.0", "title": "document collection for the \"SUBMILLIMETER LIGHTCURVES OF ASTEROIDS \" bundle", "description": "This is the document collection for the gbo.ast.chamberlain.sub-mm-lightcurves bundle. Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(12) Victoria", "(2) Pallas", "(3) Juno", "(4) Vesta", "(511) Davida", "(85) Io", "Multiple Asteroids"], "instruments": ["SMT MPIfR 19-channel Bolometer", "10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"], "instrument_hosts": ["Submillimeter Telescope Observatory"], "data_types": ["Document"], "start_date": "2003-01-04", "stop_date": "2004-05-06", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/collection_gbo.ast.chamberlain.sub-mm-lightcurves_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/document/collection_gbo.ast.chamberlain.sub-mm-lightcurves_document.xml", "scraped_at": "2026-02-25T20:02:10.751243Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.chamberlain.sub-mm-lightcurves:data::1.0", "title": "data collection for the \"SUBMILLIMETER LIGHTCURVES OF ASTEROIDS \" bundle", "description": "This is the data collection for the gbo.ast.chamberlain.sub-mm-lightcurves bundle. Submillimeter lightcurves of large asteroids Ceres, Davida, Io, Juno, Pallas, Vesta, and Victoria, observed at the Heinrich-Hertz Submillimeter Telescope from January 2003 through May 2004.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(12) Victoria", "(2) Pallas", "(3) Juno", "(4) Vesta", "(511) Davida", "(85) Io", "Multiple Asteroids"], "instruments": ["SMT MPIfR 19-channel Bolometer", "10-m Heinrich Hertz Submillimeter Telescope (SMT) at Submillimeter Telescope Observatory"], "instrument_hosts": ["Submillimeter Telescope Observatory"], "data_types": ["Data"], "start_date": "2003-01-04", "stop_date": "2004-05-06", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/collection_gbo.ast.chamberlain.sub-mm-lightcurves_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.chamberlain.sub-mm-lightcurves/data/collection_gbo.ast.chamberlain.sub-mm-lightcurves_data.xml", "scraped_at": "2026-02-25T20:02:10.751247Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.skads.astrometry-photometry:document::1.0", "title": "document collection for the \"SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)\" bundle", "description": "This is the document collection for the gbo.ast.skads.astrometry-photometry bundle. The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Kitt Peak Mosaic Camera", "4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Document"], "start_date": "2001-03-21", "stop_date": "2001-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/collection_gbo.ast.skads.astrometry-photometry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/document/collection_gbo.ast.skads.astrometry-photometry_document.xml", "scraped_at": "2026-02-25T20:02:10.751251Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.skads.astrometry-photometry:data::1.0", "title": "data collection for the \"SUB-KILOMETER ASTEROID DIAMETER SURVEY (SKADS)\" bundle", "description": "This is the data collection for the gbo.ast.skads.astrometry-photometry bundle. The Sub-Kilometer Asteroid Diameter Survey (SKADS) (Gladman et al. 2009) acquired good-quality orbital and absolute magnitude (H) determinations for a sample of small main-belt asteroids in order to study the orbital and size distribution beyond H = 15, down to sub-kilometer sizes (H > 18). Based on six observing nights over an 11-night baseline, SKADS detected, measured photometry for, and linked observations of 1087 asteroids which have one-week time baselines or more. This data set contains the astrometry, photometry, and orbits of the 1087 asteroids detected by SKADS.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Kitt Peak Mosaic Camera", "4-m Mayall Ritchey-Chretien equatorial reflector at Kitt Peak National Observatory"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Data"], "start_date": "2001-03-21", "stop_date": "2001-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/collection_gbo.ast.skads.astrometry-photometry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.skads.astrometry-photometry/data/collection_gbo.ast.skads.astrometry-photometry_data.xml", "scraped_at": "2026-02-25T20:02:10.751256Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteoroid.cmor.radar-survey:document::1.0", "title": "document collection for the \"CMOR METEOROID STREAM SURVEY\" bundle", "description": "This is the document collection for the gbo.meteoroid.cmor.radar-survey bundle. A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple"], "instruments": ["Canadian Meteor Orbit Radar (CMOR)", "Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"], "instrument_hosts": ["UWO Meteor Radar Complex"], "data_types": ["Document"], "start_date": "2002-01-01", "stop_date": "2008-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/collection_gbo.meteoroid.cmor.radar-survey_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/document/collection_gbo.meteoroid.cmor.radar-survey_document.xml", "scraped_at": "2026-02-25T20:02:10.751260Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteoroid.cmor.radar-survey:data::1.0", "title": "data collection for the \"CMOR METEOROID STREAM SURVEY\" bundle", "description": "This is the data collection for the gbo.meteoroid.cmor.radar-survey bundle. A seven-year radar survey of meteor showers has been carried out with the Canadian Meteor Orbit Radar (CMOR) from 2002-2008 (Brown et al. 2008, 2010). This survey resulted in the unambiguous detection and orbital characterization of 109 major and minor meteor showers. This data set includes a list of the detected meteor showers along with their orbital parameters.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple"], "instruments": ["Canadian Meteor Orbit Radar (CMOR)", "Canadian Meteor Orbit Radar at UWO Meteor Radar Complex"], "instrument_hosts": ["UWO Meteor Radar Complex"], "data_types": ["Data"], "start_date": "2002-01-01", "stop_date": "2008-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/collection_gbo.meteoroid.cmor.radar-survey_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteoroid.cmor.radar-survey/data/collection_gbo.meteoroid.cmor.radar-survey_data.xml", "scraped_at": "2026-02-25T20:02:10.751264Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-m-type.fornasier.spectra:document::1.0", "title": "document collection for the \"FORNASIER SPECTRA OF M ASTEROIDS\" bundle", "description": "This is the document collection for the gbo.ast-m-type.fornasier.spectra bundle. This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(110) Lydia", "(125) Liberatrix", "(129) Antigone", "(132) Aethra", "(135) Hertha", "(16) Psyche", "(161) Athor", "(201) Penelope", "(216) Kleopatra", "(22) Kalliope", "(224) Oceana", "(250) Bettina", "(325) Heidelberga", "(338) Budrosa", "(347) Pariana", "(369) Aeria", "(382) Dodona", "(418) Alemannia", "(441) Bathilde", "(498) Tokio", "(516) Amherstia", "(55) Pandora", "(558) Carmen", "(69) Hesperia", "(755) Quintilla", "(785) Zwetana", "(849) Ara", "(860) Ursina", "(872) Holda", "(97) Klotho", "Multiple Asteroids"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "ESO Multi-Mode Instrument: RILD Mode", "New Technology Telescope (NTT) at European Southern Observatory", "DOLORES (Device Optimized for LOw RESolution)", "3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "Near Infrared Camera Spectrometer (NICS)", "3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "SOFI (Son OF Isaac)", "New Technology Telescope (NTT) at European Southern Observatory"], "instrument_hosts": ["Mauna Kea Observatory", "European Southern Observatory", "Roque de los Muchachos Observatory", "Roque de los Muchachos Observatory", "European Southern Observatory"], "data_types": ["Document"], "start_date": "2004-02-29", "stop_date": "2008-12-22", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/collection_gbo.ast-m-type.fornasier.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/document/collection_gbo.ast-m-type.fornasier.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.751271Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-m-type.fornasier.spectra:data::1.0", "title": "data collection for the \"FORNASIER SPECTRA OF M ASTEROIDS\" bundle", "description": "This is the data collection for the gbo.ast-m-type.fornasier.spectra bundle. This data set contains reduced composite visual and near-infrared spectra of thirty M-type asteroids, observed over the years 2004-2008 and presented in Fornasier et al. (2010). The spectra were taken with the Dolores and NICS instruments at the Telescopio Nationale Galileo (TNG) in La Palma, with the EMMI and SOFI instruments at the ESO New Technology Telescope (NTT) in Chile, and with the SPeX instrument at the Infrared Telescope Facility (IRTF) in Hawaii. The individual spectra from the various instruments used to produce the composite spectra are also included.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(110) Lydia", "(125) Liberatrix", "(129) Antigone", "(132) Aethra", "(135) Hertha", "(16) Psyche", "(161) Athor", "(201) Penelope", "(216) Kleopatra", "(22) Kalliope", "(224) Oceana", "(250) Bettina", "(325) Heidelberga", "(338) Budrosa", "(347) Pariana", "(369) Aeria", "(382) Dodona", "(418) Alemannia", "(441) Bathilde", "(498) Tokio", "(516) Amherstia", "(55) Pandora", "(558) Carmen", "(69) Hesperia", "(755) Quintilla", "(785) Zwetana", "(849) Ara", "(860) Ursina", "(872) Holda", "(97) Klotho", "Multiple Asteroids"], "instruments": ["SpeX", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory", "ESO Multi-Mode Instrument: RILD Mode", "New Technology Telescope (NTT) at European Southern Observatory", "DOLORES (Device Optimized for LOw RESolution)", "3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "Near Infrared Camera Spectrometer (NICS)", "3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "SOFI (Son OF Isaac)", "New Technology Telescope (NTT) at European Southern Observatory"], "instrument_hosts": ["Mauna Kea Observatory", "European Southern Observatory", "Roque de los Muchachos Observatory", "Roque de los Muchachos Observatory", "European Southern Observatory"], "data_types": ["Data"], "start_date": "2004-02-29", "stop_date": "2008-12-22", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/collection_gbo.ast-m-type.fornasier.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-m-type.fornasier.spectra/data/collection_gbo.ast-m-type.fornasier.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.751279Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.52-color-survey:document::1.0", "title": "document collection for the \"52-COLOR ASTEROID SURVEY\" bundle", "description": "This is the document collection for the gbo.ast.52-color-survey bundle. This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(101) Helena", "(103) Hera", "(1036) Ganymed", "(1056) Azalea", "(106) Dione", "(11) Parthenope", "(113) Amalthea", "(114) Kassandra", "(115) Thyra", "(116) Sirona", "(12) Victoria", "(1219) Britta", "(13) Egeria", "(130) Elektra", "(135) Hertha", "(138) Tolosa", "(145) Adeona", "(15) Eunomia", "(152) Atala", "(153) Hilda", "(16) Psyche", "(1627) Ivar", "(18) Melpomene", "(1866) Sisyphus", "(19) Fortuna", "(2) Pallas", "(20) Massalia", "(21) Lutetia", "(218) Bianca", "(22) Kalliope", "(221) Eos", "(233) Asterope", "(235) Carolina", "(241) Germania", "(246) Asporina", "(25) Phocaea", "(258) Tyche", "(26) Proserpina", "(264) Libussa", "(267) Tirza", "(27) Euterpe", "(270) Anahita", "(289) Nenetta", "(29) Amphitrite", "(3) Juno", "(308) Polyxo", "(31) Euphrosyne", "(317) Roxane", "(32) Pomona", "(324) Bamberga", "(33) Polyhymnia", "(336) Lacadiera", "(346) Hermentaria", "(349) Dembowska", "(352) Gisela", "(354) Eleonora", "(3551) Verenia", "(356) Liguria", "(364) Isara", "(367) Amicitia", "(368) Haidea", "(37) Fides", "(376) Geometria", "(379) Huenna", "(385) Ilmatar", "(387) Aquitania", "(389) Industria", "(39) Laetitia", "(4) Vesta", "(40) Harmonia", "(42) Isis", "(422) Berolina", "(43) Ariadne", "(431) Nephele", "(44) Nysa", "(446) Aeternitas", "(46) Hestia", "(476) Hedwig", "(5) Astraea", "(511) Davida", "(521) Brixia", "(532) Herculina", "(554) Peraga", "(57) Mnemosyne", "(584) Semiramis", "(59) Elpis", "(6) Hebe", "(6063) Jason", "(63) Ausonia", "(639) Latona", "(64) Angelina", "(65) Cybele", "(653) Berenike", "(661) Cloelia", "(67) Asia", "(674) Rachele", "(68) Leto", "(69) Hesperia", "(7) Iris", "(702) Alauda", "(704) Interamnia", "(714) Ulula", "(76) Freia", "(762) Pulcova", "(772) Tanete", "(773) Irmintraud", "(80) Sappho", "(82) Alkmene", "(823) Sisigambis", "(849) Ara", "(86) Semele", "(863) Benkoela", "(89) Julia", "(9) Metis", "(92) Undina", "(96) Aegle", "(980) Anacostia", "Multiple Asteroids"], "instruments": ["Circularly Variable Filter", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "1983-06-11", "stop_date": "1987-04-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/collection_gbo.ast.52-color-survey_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/document/collection_gbo.ast.52-color-survey_document.xml", "scraped_at": "2026-02-25T20:02:10.751289Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.52-color-survey:data::1.0", "title": "data collection for the \"52-COLOR ASTEROID SURVEY\" bundle", "description": "This is the data collection for the gbo.ast.52-color-survey bundle. This data set contains 52-color IR data of asteroids, taken using a double circularly variable filter. The short wavelength portion of the CVF covered the octave from 0.8 to 1.6 microns with 3 percent resolution, while the long wavelength portion covered 1.5 to 2.6 microns with 5 percent resolution. Most of the data are unpublished other than in this PDS data set.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "(10) Hygiea", "(101) Helena", "(103) Hera", "(1036) Ganymed", "(1056) Azalea", "(106) Dione", "(11) Parthenope", "(113) Amalthea", "(114) Kassandra", "(115) Thyra", "(116) Sirona", "(12) Victoria", "(1219) Britta", "(13) Egeria", "(130) Elektra", "(135) Hertha", "(138) Tolosa", "(145) Adeona", "(15) Eunomia", "(152) Atala", "(153) Hilda", "(16) Psyche", "(1627) Ivar", "(18) Melpomene", "(1866) Sisyphus", "(19) Fortuna", "(2) Pallas", "(20) Massalia", "(21) Lutetia", "(218) Bianca", "(22) Kalliope", "(221) Eos", "(233) Asterope", "(235) Carolina", "(241) Germania", "(246) Asporina", "(25) Phocaea", "(258) Tyche", "(26) Proserpina", "(264) Libussa", "(267) Tirza", "(27) Euterpe", "(270) Anahita", "(289) Nenetta", "(29) Amphitrite", "(3) Juno", "(308) Polyxo", "(31) Euphrosyne", "(317) Roxane", "(32) Pomona", "(324) Bamberga", "(33) Polyhymnia", "(336) Lacadiera", "(346) Hermentaria", "(349) Dembowska", "(352) Gisela", "(354) Eleonora", "(3551) Verenia", "(356) Liguria", "(364) Isara", "(367) Amicitia", "(368) Haidea", "(37) Fides", "(376) Geometria", "(379) Huenna", "(385) Ilmatar", "(387) Aquitania", "(389) Industria", "(39) Laetitia", "(4) Vesta", "(40) Harmonia", "(42) Isis", "(422) Berolina", "(43) Ariadne", "(431) Nephele", "(44) Nysa", "(446) Aeternitas", "(46) Hestia", "(476) Hedwig", "(5) Astraea", "(511) Davida", "(521) Brixia", "(532) Herculina", "(554) Peraga", "(57) Mnemosyne", "(584) Semiramis", "(59) Elpis", "(6) Hebe", "(6063) Jason", "(63) Ausonia", "(639) Latona", "(64) Angelina", "(65) Cybele", "(653) Berenike", "(661) Cloelia", "(67) Asia", "(674) Rachele", "(68) Leto", "(69) Hesperia", "(7) Iris", "(702) Alauda", "(704) Interamnia", "(714) Ulula", "(76) Freia", "(762) Pulcova", "(772) Tanete", "(773) Irmintraud", "(80) Sappho", "(82) Alkmene", "(823) Sisigambis", "(849) Ara", "(86) Semele", "(863) Benkoela", "(89) Julia", "(9) Metis", "(92) Undina", "(96) Aegle", "(980) Anacostia", "Multiple Asteroids"], "instruments": ["Circularly Variable Filter", "3.0-m NASA Infrared Telescope Facility (IRTF) at Mauna Kea Observatory"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "1983-06-11", "stop_date": "1987-04-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/collection_gbo.ast.52-color-survey_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.52-color-survey/data/collection_gbo.ast.52-color-survey_data.xml", "scraped_at": "2026-02-25T20:02:10.751300Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.kbo-centaur.magnitudes:document::1.0", "title": "document collection for the \"KBO AND CENTAUR ABSOLUTE MAGNITUDES \" bundle", "description": "This is the document collection for the gbo.kbo-centaur.magnitudes bundle. This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1995-01-01", "stop_date": "2001-05-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/collection_gbo.kbo-centaur.magnitudes_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/document/collection_gbo.kbo-centaur.magnitudes_document.xml", "scraped_at": "2026-02-25T20:02:10.751305Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.kbo-centaur.magnitudes:data::1.0", "title": "data collection for the \"KBO AND CENTAUR ABSOLUTE MAGNITUDES \" bundle", "description": "This is the data collection for the gbo.kbo-centaur.magnitudes bundle. This data set contains absolute visual magnitudes of 90 Kuiper belt objects and Centaurs from Romanishin and Tegler (2005). The absolute magnitudes are derived from V magnitudes observed by Romanishin and Tegler and their collaborators, with geometry from the JPL Horizons data base. As a convenience, R-band absolute magnitudes derived from the V absolute magnitudes and published V-R colors are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1995-01-01", "stop_date": "2001-05-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/collection_gbo.kbo-centaur.magnitudes_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.kbo-centaur.magnitudes/data/collection_gbo.kbo-centaur.magnitudes_data.xml", "scraped_at": "2026-02-25T20:02:10.751309Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:meteoroid.steel.orbits:document::1.0", "title": "document collection for the \"METEOROID ORBITS\" bundle", "description": "This is the document collection for the meteoroid.steel.orbits bundle. This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1936-10-21", "stop_date": "1983-08-15", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/collection_meteoroid.steel.orbits_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/document/collection_meteoroid.steel.orbits_document.xml", "scraped_at": "2026-02-25T20:02:10.751313Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:meteoroid.steel.orbits:data::1.0", "title": "data collection for the \"METEOROID ORBITS\" bundle", "description": "This is the data collection for the meteoroid.steel.orbits bundle. This data set contains meteoroid orbits from photographic, TV system, and radar meteoroid surveys collected from the International Astronomical Union Meteor Data Center (IAU MDC) by Duncan Steel and reviewed and discussed in Steel (1996). The data cover the time period 1940-1983.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1936-10-21", "stop_date": "1983-08-15", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/collection_meteoroid.steel.orbits_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/meteoroid.steel.orbits/data/collection_meteoroid.steel.orbits_data.xml", "scraped_at": "2026-02-25T20:02:10.751317Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.nesvorny.families:document::1.0", "title": "document collection for the \"NESVORNY HCM ASTEROID FAMILIES\" bundle", "description": "This is the document collection for the ast.nesvorny.families bundle. This data set contains asteroid dynamical family memberships for 122 families calculated from synthetic proper elements, including high-inclination families. These families were calculated by David Nesvorny (Nesvorny et al. 2015) using his code based on the Hierarchical Clustering Method (HCM) described in Zappala et al. (1990, 1994). The input synthetic proper elements for 384,337 numbered asteroids were calculated by Knezevic and Milani.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/collection_ast.nesvorny.families_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/document/collection_ast.nesvorny.families_document.xml", "scraped_at": "2026-02-25T20:02:10.751320Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.nesvorny.families:data::1.0", "title": "data collection for the \"NESVORNY HCM ASTEROID FAMILIES\" bundle", "description": "This is the data collection for the ast.nesvorny.families bundle. This data set contains asteroid dynamical family memberships for 122 families calculated from synthetic proper elements, including high-inclination families. These families were calculated by David Nesvorny (Nesvorny et al. 2015) using his code based on the Hierarchical Clustering Method (HCM) described in Zappala et al. (1990, 1994). The input synthetic proper elements for 384,337 numbered asteroids were calculated by Knezevic and Milani.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/collection_ast.nesvorny.families_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.nesvorny.families/data/collection_ast.nesvorny.families_data.xml", "scraped_at": "2026-02-25T20:02:10.751324Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos:document::1.0", "title": "document collection for the \"ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS\" bundle", "description": "This is the document collection for the ast.shevchenko-tedesco.occultation-albedos bundle. This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1958-02-19", "stop_date": "2005-02-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/collection_ast.shevchenko-tedesco.occultation-albedos_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/document/collection_ast.shevchenko-tedesco.occultation-albedos_document.xml", "scraped_at": "2026-02-25T20:02:10.751327Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast.shevchenko-tedesco.occultation-albedos:data::1.0", "title": "data collection for the \"ASTEROID ALBEDOS FROM STELLAR OCCULTATIONS\" bundle", "description": "This is the data collection for the ast.shevchenko-tedesco.occultation-albedos bundle. This data set contains albedos for 57 asteroids determined from diameters obtained from stellar occultations. These albedos are from Shevchenko and Tedesco (2006).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1958-02-19", "stop_date": "2005-02-23", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/collection_ast.shevchenko-tedesco.occultation-albedos_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast.shevchenko-tedesco.occultation-albedos/data/collection_ast.shevchenko-tedesco.occultation-albedos_data.xml", "scraped_at": "2026-02-25T20:02:10.751331Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.olivines.pitman.lab-spectra:document::1.0", "title": "document collection for the \"OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA\" bundle", "description": "This is the document collection for the gbo.olivines.pitman.lab-spectra bundle. Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["METEORITIC FO81", "Natural Fayalite (FO0)", "Natural FO14", "Natural FO31", "Natural FO41", "Natural FO45", "Natural FO54", "Natural FO63", "Natural FO68", "Natural FO9", "Natural FO91", "Natural FO93", "msng (FO0)", "Synthetic FO100", "Synthetic FO50", "Synthetic FO67", "Synthetic FO75", "Synthetic FO80"], "instruments": ["BOMEM DA 3.02 FT-IR SPECTROMETER"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/collection_gbo.olivines.pitman.lab-spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/document/collection_gbo.olivines.pitman.lab-spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.751336Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.olivines.pitman.lab-spectra:data::1.0", "title": "data collection for the \"OLIVINE LABORATORY INFRARED ABSORBANCE SPECTRA\" bundle", "description": "This is the data collection for the gbo.olivines.pitman.lab-spectra bundle. Laboratory measurements quantifying the effect of Fe substituting for Mg in olivine are necessary to distinguish compositional from temperature, grain size and grain shape effects in observational data. This bundle presents room temperature (18-19 degrees Celsius) diamond anvil cell thin film absorption spectra of a large suite of olivines evenly spaced across Mg and Fe compositions at infrared wavelengths. In each file, the left column is the frequency in wave numbers (units: cm**-1). The right column is the chemical absorbance (common logarithm based).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["METEORITIC FO81", "Natural Fayalite (FO0)", "Natural FO14", "Natural FO31", "Natural FO41", "Natural FO45", "Natural FO54", "Natural FO63", "Natural FO68", "Natural FO9", "Natural FO91", "Natural FO93", "msng (FO0)", "Synthetic FO100", "Synthetic FO50", "Synthetic FO67", "Synthetic FO75", "Synthetic FO80"], "instruments": ["BOMEM DA 3.02 FT-IR SPECTROMETER"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/collection_gbo.olivines.pitman.lab-spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.olivines.pitman.lab-spectra/data/collection_gbo.olivines.pitman.lab-spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.751341Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves:document::1.0", "title": "document collection for the \"NEAR EARTH ASTEROID LIGHTCURVES\" bundle", "description": "This is the document collection for the gbo.ast-neo.ondrejov.lightcurves bundle. This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(11066) Sigurd", "(1627) Ivar", "(1943) Anteros", "1998 KY26", "(2063) Bacchus", "(2100) Ra-Shalom", "(2102) Tantalus", "(2212) Hephaistos", "(3103) Eger", "(3122) Florence", "(3199) Nefertiti", "(3200) Phaethon", "(3691) Bede", "(3752) Camillo", "(4341) Poseidon", "(4957) Brucemurray", "(5143) Heracles", "(5751) Zao", "(7341) 1991 VK", "(7474) 1992 TC", "(7480) Norwan", "(8034) Akka", "Multiple Asteroids", "(13651) 1997 BR", "(17511) 1992 QN", "(19356) 1997 GH3", "(422638) 1994 CB", "1995 FX", "1997 GL3", "(35107) 1991 VH", "(5587) 1990 SB", "(6053) 1993 BW3", "(6322) 1991 CQ", "(65679) 1989 UQ", "(6569) Ondaatje", "(7025) 1993 QA", "(7482) 1994 PC1", "(7822) 1991 CS", "(7888) 1993 UC", "(7889) 1994 LX", "(8201) 1994 AH2", "(85490) 1997 SE5", "(99907) 1989 VA"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1984-08-29", "stop_date": "1998-06-05", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/collection_gbo.ast-neo.ondrejov.lightcurves_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/document/collection_gbo.ast-neo.ondrejov.lightcurves_document.xml", "scraped_at": "2026-02-25T20:02:10.751347Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.ondrejov.lightcurves:data::1.0", "title": "data collection for the \"NEAR EARTH ASTEROID LIGHTCURVES\" bundle", "description": "This is the data collection for the gbo.ast-neo.ondrejov.lightcurves bundle. This data set is a collection of photometric lightcurves for 42 near-earth asteroids obtained at Ondrejov Observatory from 1984 through 1998.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(11066) Sigurd", "(1627) Ivar", "(1943) Anteros", "1998 KY26", "(2063) Bacchus", "(2100) Ra-Shalom", "(2102) Tantalus", "(2212) Hephaistos", "(3103) Eger", "(3122) Florence", "(3199) Nefertiti", "(3200) Phaethon", "(3691) Bede", "(3752) Camillo", "(4341) Poseidon", "(4957) Brucemurray", "(5143) Heracles", "(5751) Zao", "(7341) 1991 VK", "(7474) 1992 TC", "(7480) Norwan", "(8034) Akka", "Multiple Asteroids", "(13651) 1997 BR", "(17511) 1992 QN", "(19356) 1997 GH3", "(422638) 1994 CB", "1995 FX", "1997 GL3", "(35107) 1991 VH", "(5587) 1990 SB", "(6053) 1993 BW3", "(6322) 1991 CQ", "(65679) 1989 UQ", "(6569) Ondaatje", "(7025) 1993 QA", "(7482) 1994 PC1", "(7822) 1991 CS", "(7888) 1993 UC", "(7889) 1994 LX", "(8201) 1994 AH2", "(85490) 1997 SE5", "(99907) 1989 VA"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1984-08-29", "stop_date": "1998-06-05", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/collection_gbo.ast-neo.ondrejov.lightcurves_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.ondrejov.lightcurves/data/collection_gbo.ast-neo.ondrejov.lightcurves_data.xml", "scraped_at": "2026-02-25T20:02:10.751353Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-high-inclination.gil-hutton.families:document::1.0", "title": "document collection for the \"HIGH-INCLINATION ASTEROID FAMILIES\" bundle", "description": "This is the document collection for the ast-high-inclination.gil-hutton.families bundle. This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "2005-03-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/collection_ast-high-inclination.gil-hutton.families_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/document/collection_ast-high-inclination.gil-hutton.families_document.xml", "scraped_at": "2026-02-25T20:02:10.751357Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-high-inclination.gil-hutton.families:data::1.0", "title": "data collection for the \"HIGH-INCLINATION ASTEROID FAMILIES\" bundle", "description": "This is the data collection for the ast-high-inclination.gil-hutton.families bundle. This data set contains the high-inclination asteroid families of Gil-Hutton (2006). A data set of 3652 high-inclination numbered asteroids was analyzed to search for dynamical families. The basic data set was the list of 3697 asteroid synthetic proper elements taken from the Asteroid Dynamic Site, March 2005 version; Knezevic and Milani (2000). For this analysis, only asteroids with sine of proper inclination greater than 0.3 were used.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2005-03-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/collection_ast-high-inclination.gil-hutton.families_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-high-inclination.gil-hutton.families/data/collection_ast-high-inclination.gil-hutton.families_data.xml", "scraped_at": "2026-02-25T20:02:10.751360Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot:data::1.0", "title": "Whiteley NEO Photometry V1.0", "description": "This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["2.24-m Cassegrain/Coude reflector", "UH Tektronix 2K CCD"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "1996-02-15", "stop_date": "2000-07-28", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/collection_gbo.ast-neo.whiteley.ecas-phot_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/data/collection_gbo.ast-neo.whiteley.ecas-phot_data.xml", "scraped_at": "2026-02-25T20:02:10.751364Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.whiteley.ecas-phot:document::1.0", "title": "Whiteley NEO Photometry V1.0", "description": "This data set includes the ECAS system (Eight Color Asteroid Survey) photometry and taxonomic types of 77 Near Earth Objects published by R.J. Whiteley in his thesis (Whiteley, 2001. A compositional and dynamical survey of the near-earth asteroids. Ph.D. thesis, University of Hawaii), [WHITELEY2001] The ECAS system is established in Zellner et al. 1985, Icarus 61, 355-416 [ZELLNERETAL1985]. The original ECAS survey is available in PDS as data set EAR-A-2CP-3-RDR-ECAS-V3.0. The data presented here are new measurements based on the ECAS system.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["2.24-m Cassegrain/Coude reflector", "UH Tektronix 2K CCD"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "1996-02-15", "stop_date": "2000-07-28", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/collection_gbo.ast-neo.whiteley.ecas-phot_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.whiteley.ecas-phot/document/collection_gbo.ast-neo.whiteley.ecas-phot_document.xml", "scraped_at": "2026-02-25T20:02:10.751396Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra:data::1.0", "title": "Gaffey Meteorite Spectra V1.0", "description": "This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Hamlet", "Elenovka", "Queen's Mercy", "Barwise", "Chainpur", "Sevrukovo", "Cynthiana", "Murchison", "Shelburne", "Mighei", "Homestead", "Coolidge", "Butler", "Aumale", "Girgenti", "Atlanta", "Bruderheim", "Kainsaz", "Babb's Mill (Troost's Iron)", "Ausson", "Olivenza", "Orgueil", "Pantar", "Alfianello", "Mokoia", "Cold Bokkeveld", "Hvittis", "Pillistfer", "Nerft", "Utrecht", "Collescipoli", "Allegan", "Petersburg", "Olmedilla de Alarcon", "Ochansk", "Chulafinnee", "Tatahouine", "Colby (Wisconsin)", "Nakhla", "Karoonda", "Mezoe-Madaras", "METEORITE", "Leedey", "Lance", "Jonzac", "Zavid", "Manbhoom", "Nanjemoy", "Soko-Banja", "Cabezo de Mayo", "Murray", "Tourinnes-la-Grosse", "Daniel's Kuil", "Veramin", "Bereba", "Vigarano", "Warrenton", "Khairpur", "Shalka", "Zhovtnevyi", "Farmington", "Buschhof", "Casey County", "Paragould", "Parnellee", "Juvinas", "Sioux County", "Rose City", "Frankfort (stone)", "Drake Creek", "Leoville", "Felix", "Andover", "Castalia", "Alais", "Haraiya", "Bald Mountain", "Le Teilleul", "Abee", "Grueneberg", "Tieschitz", "Saratov", "Stannern", "Allende", "St. Mark's", "Johnstown", "Ornans", "Jelica", "Grosnaja", "Forest City", "Roda", "Quenggouk", "Chassigny", "Pasamonte", "Vavilovka", "Nogoya", "Angra dos Reis", "MULTIPLE", "St. Michel", "Nobleborough", "Indarch", "Knyahina", "Lancon", "Padvarninkai", "Pavlovka"], "instruments": ["Beckman DK2A Ratio Recording Spectroreflectometer"], "instrument_hosts": ["Terrestrial Laboratory"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/collection_gbo.meteorite.gaffey.lab-spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/data/collection_gbo.meteorite.gaffey.lab-spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.751407Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteorite.gaffey.lab-spectra:document::1.0", "title": "Gaffey Meteorite Spectra V1.0", "description": "This data set contains 166 laboratory spectra of 108 meteorite samples, as reported by M. J. Gaffey in Gaffey (1976) [GAFFEY1976]. This in turn was based on his PhD thesis work (Gaffey 1974 [GAFFEY1974]).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Hamlet", "Elenovka", "Queen's Mercy", "Barwise", "Chainpur", "Sevrukovo", "Cynthiana", "Murchison", "Shelburne", "Mighei", "Homestead", "Coolidge", "Butler", "Aumale", "Girgenti", "Atlanta", "Bruderheim", "Kainsaz", "Babb's Mill (Troost's Iron)", "Ausson", "Olivenza", "Orgueil", "Pantar", "Alfianello", "Mokoia", "Cold Bokkeveld", "Hvittis", "Pillistfer", "Nerft", "Utrecht", "Collescipoli", "Allegan", "Petersburg", "Olmedilla de Alarcon", "Ochansk", "Chulafinnee", "Tatahouine", "Colby (Wisconsin)", "Nakhla", "Karoonda", "Mezoe-Madaras", "METEORITE", "Leedey", "Lance", "Jonzac", "Zavid", "Manbhoom", "Nanjemoy", "Soko-Banja", "Cabezo de Mayo", "Murray", "Tourinnes-la-Grosse", "Daniel's Kuil", "Veramin", "Bereba", "Vigarano", "Warrenton", "Khairpur", "Shalka", "Zhovtnevyi", "Farmington", "Buschhof", "Casey County", "Paragould", "Parnellee", "Juvinas", "Sioux County", "Rose City", "Frankfort (stone)", "Drake Creek", "Leoville", "Felix", "Andover", "Castalia", "Alais", "Haraiya", "Bald Mountain", "Le Teilleul", "Abee", "Grueneberg", "Tieschitz", "Saratov", "Stannern", "Allende", "St. Mark's", "Johnstown", "Ornans", "Jelica", "Grosnaja", "Forest City", "Roda", "Quenggouk", "Chassigny", "Pasamonte", "Vavilovka", "Nogoya", "Angra dos Reis", "MULTIPLE", "St. Michel", "Nobleborough", "Indarch", "Knyahina", "Lancon", "Padvarninkai", "Pavlovka"], "instruments": ["Beckman DK2A Ratio Recording Spectroreflectometer"], "instrument_hosts": ["Terrestrial Laboratory"], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/collection_gbo.meteorite.gaffey.lab-spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorite.gaffey.lab-spectra/document/collection_gbo.meteorite.gaffey.lab-spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.751416Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.radar.shape-models:data::1.0", "title": "Small Bodies Radar Shape Models V1.0", "description": "This data set contains radar-based shape models for small solar system bodies, prepared by various authors.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1620) Geographos", "(52760) 1998 ML14", "(4769) Castalia", "1998 KY26", "(6489) Golevka", "(216) Kleopatra", "(4179) Toutatis", "(25143) Itokawa", "(2063) Bacchus"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "34-m antenna", "goldstone.dss13_34m.recv_x", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Goldstone Complex", "Goldstone Complex", "Goldstone Complex"], "data_types": ["Data"], "start_date": "1989-08-19", "stop_date": "2001-04-09", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/collection_compil.ast.radar.shape-models_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/data/collection_compil.ast.radar.shape-models_data.xml", "scraped_at": "2026-02-25T20:02:10.751423Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.radar.shape-models:document::1.0", "title": "Small Bodies Radar Shape Models V1.0", "description": "This data set contains radar-based shape models for small solar system bodies, prepared by various authors.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1620) Geographos", "(52760) 1998 ML14", "(4769) Castalia", "1998 KY26", "(6489) Golevka", "(216) Kleopatra", "(4179) Toutatis", "(25143) Itokawa", "(2063) Bacchus"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "34-m antenna", "goldstone.dss13_34m.recv_x", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Arecibo Observatory", "Goldstone Complex", "Goldstone Complex", "Goldstone Complex"], "data_types": ["Document"], "start_date": "1989-08-19", "stop_date": "2001-04-09", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/collection_compil.ast.radar.shape-models_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.radar.shape-models/document/collection_compil.ast.radar.shape-models_document.xml", "scraped_at": "2026-02-25T20:02:10.751429Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra:data::1.0", "title": "Gartrelle et al. IRTF Asteroid Spectra V1.0", "description": "This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(3283) Skorina", "(1542) Schalen", "(1746) Brouwer", "(2207) Antenor", "Multiple Asteroids", "(721) Tabora", "(1269) Rollandia", "(2208) Pushkin", "(1256) Normannia", "(1583) Antilochus", "(2246) Bowell", "(2357) Phereclos", "(2311) El Leoncito", "(884) Priamus", "(336) Lacadiera", "(1702) Kalahari", "(2266) Tchaikovsky", "(368) Haidea", "(1167) Dubiago", "(2872) Gentelec", "(4744) Rovereto", "(2674) Pandarus", "(267) Tirza", "(2893) Peiroos", "(773) Irmintraud", "(3248) Farinella"], "instruments": ["3.0-m NASA Infrared Telescope Facility (IRTF)", "SpeX"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "2016-12-29", "stop_date": "2019-01-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/data/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.751435Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo_ast-dtype_gartrelleetal_irtf_spectra:document::1.0", "title": "Gartrelle et al. IRTF Asteroid Spectra V1.0", "description": "This data set is comprised of the VNIR (0.69-2.5 micron) spectra of twenty-five D-type asteroids from varying Solar System locations. The spectra were obtained from NASA/IRTF on Mauna Kea between 2016-2019 using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit (GuideDog) for targets with apparent magnitude > 15.5. For targets fainter than magnitude 15.5, guiding was accomplished using the MORIS CCD imager.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(3283) Skorina", "(1542) Schalen", "(1746) Brouwer", "(2207) Antenor", "Multiple Asteroids", "(721) Tabora", "(1269) Rollandia", "(2208) Pushkin", "(1256) Normannia", "(1583) Antilochus", "(2246) Bowell", "(2357) Phereclos", "(2311) El Leoncito", "(884) Priamus", "(336) Lacadiera", "(1702) Kalahari", "(2266) Tchaikovsky", "(368) Haidea", "(1167) Dubiago", "(2872) Gentelec", "(4744) Rovereto", "(2674) Pandarus", "(267) Tirza", "(2893) Peiroos", "(773) Irmintraud", "(3248) Farinella"], "instruments": ["3.0-m NASA Infrared Telescope Facility (IRTF)", "SpeX"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "2016-12-29", "stop_date": "2019-01-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-dtype.gartrelleetal.irtf.spectra_V1_0/document/collection_gbo.ast-dtype.gartrelleetal.irtf.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.751440Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.ast-eros.shape-model:data::1.1", "title": "Gaskell Eros Shape Model V1.1", "description": "The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros"], "instruments": ["Multi-spectral Imager"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Data"], "start_date": "2000-02-15", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/collection_gaskell.ast-eros.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/data/collection_gaskell.ast-eros.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.751444Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.ast-eros.shape-model:document::1.1", "title": "Gaskell Eros Shape Model V1.1", "description": "The shape model of 433 Eros derived by Robert Gaskell from NEAR MSI images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on Feb. 23, 2008. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros"], "instruments": ["Multi-spectral Imager"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Document"], "start_date": "2000-02-15", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/collection_gaskell.ast-eros.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-eros.shape-model_V1_1/document/collection_gaskell.ast-eros.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.751449Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.ast-itokawa.shape-model:data::1.1", "title": "Gaskell Itokawa Shape Model V1.1", "description": "The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa"], "targets": ["(25143) Itokawa"], "instruments": ["Asteroid Multi-band Imaging Camera"], "instrument_hosts": ["Hayabusa"], "data_types": ["Data"], "start_date": "2005-09-11", "stop_date": "2005-11-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/collection_gaskell.ast-itokawa.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/data/collection_gaskell.ast-itokawa.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.751452Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gaskell.ast-itokawa.shape-model:document::1.1", "title": "Gaskell Itokawa Shape Model V1.1", "description": "The shape model of 25143 Itokawa derived by Robert Gaskell from Hayabusa AMICA images. The model is provided in the implicitly connected quadrilateral (ICQ) format in four levels of resolution. This version of the model was prepared on August 29, 2007. Vertex-facet versions of the models are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa"], "targets": ["(25143) Itokawa"], "instruments": ["Asteroid Multi-band Imaging Camera"], "instrument_hosts": ["Hayabusa"], "data_types": ["Document"], "start_date": "2005-09-11", "stop_date": "2005-11-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/collection_gaskell.ast-itokawa.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gaskell.ast-itokawa.shape-model_V1_1/document/collection_gaskell.ast-itokawa.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.751457Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-eros.roberts.ponds-catalog:data::1.1", "title": "Roberts Eros Ponds Catalog V1.1", "description": "This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros"], "instruments": ["Multi-spectral Imager"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Data"], "start_date": "2000-05-01", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/collection_ast-eros.roberts.ponds-catalog_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/data/collection_ast-eros.roberts.ponds-catalog_data.xml", "scraped_at": "2026-02-25T20:02:10.751460Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-eros.roberts.ponds-catalog:document::1.1", "title": "Roberts Eros Ponds Catalog V1.1", "description": "This data set contains two tables describing the size and location of ponded deposits on asteroid 433 Eros. Both tables contain the same pond information, but one is presented in the format required for ingestion by a publicly available 3D visualization application, the Small Body Mapping Tool (Ernst et al., 2018; http://sbmt.jhuapl.edu).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros"], "instruments": ["Multi-spectral Imager"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Document"], "start_date": "2000-05-01", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/collection_ast-eros.roberts.ponds-catalog_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-eros.roberts.ponds-catalog_V1_1/document/collection_ast-eros.roberts.ponds-catalog_document.xml", "scraped_at": "2026-02-25T20:02:10.751464Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry:document::1.1", "title": "document collection for the \"POLARIMETRY OF ASTEROID ITOKAWA\" bundle", "description": "This is the document collection for the gbo.ast-itokawa.torino.polarimetry bundle. This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(25143) Itokawa"], "instruments": ["Torino Photopolarimeter", "2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"], "instrument_hosts": ["El Leoncito Astronomical Complex"], "data_types": ["Document"], "start_date": "2004-06-28", "stop_date": "2004-07-04", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/collection_gbo.ast-itokawa.torino.polarimetry_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/document/collection_gbo.ast-itokawa.torino.polarimetry_document.xml", "scraped_at": "2026-02-25T20:02:10.751468Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-itokawa.torino.polarimetry:data::2.0", "title": "data collection for the \"POLARIMETRY OF ASTEROID ITOKAWA\" bundle", "description": "This is the data collection for the gbo.ast-itokawa.torino.polarimetry bundle. This data set contains the polarimetry of asteroid 25143 Itokawa published in Cellino et al. (2005). The observations were made from June 26 through July 3, 2004 with the Torino photopolarimeter at the 2.15 m telescope of the El Leoncito Observatory in Argentina. The degree of linear polarization was measured in five filters (Johnson-Cousins UBVRI).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(25143) Itokawa"], "instruments": ["Torino Photopolarimeter", "2.15-m Boller & Chivens reflector at El Leoncito Astronomical Complex"], "instrument_hosts": ["El Leoncito Astronomical Complex"], "data_types": ["Data"], "start_date": "2004-06-28", "stop_date": "2004-07-04", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/collection_gbo.ast-itokawa.torino.polarimetry_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-itokawa.torino.polarimetry_V1_1/data/collection_gbo.ast-itokawa.torino.polarimetry_data.xml", "scraped_at": "2026-02-25T20:02:10.751472Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.alcdef-database:document::1.0", "title": "Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0", "description": "The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1986-07-03", "stop_date": "2021-09-09", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/collection_gbo.ast.alcdef-database_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/document/collection_gbo.ast.alcdef-database_document.xml", "scraped_at": "2026-02-25T20:02:10.751477Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.alcdef-database:data::1.0", "title": "Asteroid Lightcurve Data Exchange Format (ALCDEF) Database V1.0", "description": "The Asteroid Lightcurve Data Exchange Format (ALCDEF) database contains metadata and data produced by asteroid time-series photometry by amateurs and professionals and submitted to the database using a format that follows ALCDEF standards definition. There are three related data files: metadata, lightcurve data, and - optionally - comparison stars data. The ALCDEF structure is based on the concept of \"lightcurve blocks.\" Each block contains two (optionally, three) sections: metadata, compstars (optional), and lcdata. Because of the very large number of observations (9944193) for 23847 distinct objects, there are multiple files for the metadata, compstars, and lcdata sections. Each compstars and lcdata file covers the same objects that are in a given metadata file. For example, if the metadata file covers objects numbered 1 to 100, then the corresponding compstars and lcdata files will contain data for those objects only. The ordering of the records in a metadata file is based on the object's number with its name used as the first tie-breaker for unnumbered objects, i.e., when number = 0. For lightcurve blocks of the same object, the SessionDateTime, in ascending order, provides the second tie-breaker. If necessary, the Filter is used for the third tie-breaker. There are 222 data files in the archive, which is comprised of sets of three files (metadata, compstars, and lcdata) with each set having the same base name. The metadata files are split by ObjectNumber into groups, each in its own subdirectory under the root\\data directory, containing no more than 100 objects for those numbered between 1 and 999, not more than 1,000 for those numbered between 1,000 and 9,999, and no more than 10,000 for those numbers greater than 10,000. Unnumbered asteroids are grouped into a single file. N.B. Since compstars are not required, it's possible that an entire set of metadata records, e.g., 5400000-550000, will have no compstars at all. The current PDS4 standard does not allow for 0 records in a file so, in this case, a single record is added to the compstars-xxx-xxx.csv that gives the default for a missing entry, e.g., -9 for an integer and '-' for an empty string. Each record in an alcdef_metadata_XXX file includes, among others, the object number and/or name and/or designation, the mid-date (UT) of the data associated with the given lightcurve block, the person submitting the data, contact information for the submitter, equipment used, the filter and magnitude band (e.g., Johnson V) used for the observations, and any corrections applied to the original, raw data (e.g., reduction to unity distances or transformed to a photometric standard such as Johnson-Cousins or SDSS). Each record in an alcdef_lcdata_XXX file gives the JD and magnitude (magnitude error, optional) for a single observation (data point) along with an ID number that ties the observation to a specific metadata record. Each record in an alcdef_compstars_XXX file provides details on one of the comparison stars used during the observations along with an ID number that ties the comp star data to a specific metadata record. Each record includes, among others, the name, RA/DEC (J2000.0), magnitude, and - if used - the color index of each star. Up to 10 comp stars are allowed for each metadata record. The archive includes an alcdef_standard.pdf file that provides extensive details about the ALCDEF standard such as keywords, appropriate values, and cross-checks run during submission to avoid having incomplete data. For example, if the magnitudes have been reduced to unity distances, whether or not a fixed value (at mid-time) was used or point-by-point. The file includes bookmarks for easy navigation to specific sections. Caveats to the data user ======================== The data have been submitted without verification of accuracy. Unlike astrometry, where checks can be run to see if the reported position is reasonable against current orbital parameters, the ALCDEF data should be taken \"as-is\" and so it is up to the end user to determine which individual lightcurve blocks are suitable for his purposes. The ALCDEF standard and software used to generate ALCDEF files have evolved since the format was introduced in 2010. Therefore, a number of fields that would normally have data in a recent entry will have the default value for \"missing\" or NULL data. Also, when magnitudes are simple differentials, e.g., +0.758, early data entry did not provide for the zero point that led to the differential value and so the actual \"sky magnitude\" for the data point is unknown. Also of concern for early submissions is the naming of individual comp stars. Initially, the software often used by amateurs used the X/Y coordinates of the star on a reference image for the name. Afterwards, that software used the Right Ascension and Declination (J2000.0) for the name, e.g., \"102310.58 +213512.6\". This was preferred over using the number/name from the reference star catalog, which was often Zone:Number and not always fixed depending of the catalog and/or its version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1986-07-03", "stop_date": "2021-09-09", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/collection_gbo.ast.alcdef-database_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.alcdef-database_V1_0/data/collection_gbo.ast.alcdef-database_data.xml", "scraped_at": "2026-02-25T20:02:10.751482Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-lightcurve-database:document::4.0", "title": "Asteroid Lightcurve Database (LCDB) V4.0", "description": "The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for for more than 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1913-01-01", "stop_date": "2021-09-02", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/collection_ast-lightcurve-database_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/document/collection_ast-lightcurve-database_document.xml", "scraped_at": "2026-02-25T20:02:10.751485Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-lightcurve-database:data::4.0", "title": "Asteroid Lightcurve Database (LCDB) V4.0", "description": "The asteroid lightcurve database (LCDB) is one of the more widely-used research tools for those doing research that compares and contrasts physical characteristics of asteroid spin axis rates, sizes, pole orientations, and/or taxonomic class - among others. The v4.0 release includes lightcurve photometry results for 34967 targets. Each object has one to several dozen detail records that contain results obtained by reviewing the literature.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1913-01-01", "stop_date": "2021-09-02", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/collection_ast-lightcurve-database_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-lightcurve-database_V4_0/data/collection_ast-lightcurve-database_data.xml", "scraped_at": "2026-02-25T20:02:10.751489Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-sat.thomas.shape-models:document::1.0", "title": "Small Body Optical Shape Models V1.0", "description": "The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HST", "Voyager", "Galileo", "Near Earth Asteroid Rendezvous", "Viking", "Phobos 2", "Mariner71"], "targets": ["(253) Mathilde", "Mars I (Phobos)", "Saturn XI (Epimetheus)", "Mars II (Deimos)", "(243) Ida", "(951) Gaspra", "(4) Vesta", "Mars II (Deimos)", "Saturn VII (Hyperion)", "Saturn VII (Hyperion)", "Saturn X (Janus)", "Mars I (Phobos)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "Visual Imaging Subsystem - Camera A for VO2", "Imaging Science Subsystem", "Visual Imaging Subsystem - Camera B for VO2", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "Multi-spectral Imager", "VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1", "Solid State Imaging System", "VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1", "Vsk-fregat", "Wide Field Planetary Camera 2"], "instrument_hosts": ["Voyager 1", "Viking Orbiter 2", "Mariner 9", "Viking Orbiter 2", "Voyager 2", "Near Earth Asteroid Rendezvous", "Viking Orbiter 1", "Galileo Orbiter", "Viking Orbiter 1", "Phobos 2", "Hubble Space Telescope"], "data_types": ["Document"], "start_date": "1976-06-22", "stop_date": "1997-06-27", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/collection_ast-sat.thomas.shape-models_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/document/collection_ast-sat.thomas.shape-models_document.xml", "scraped_at": "2026-02-25T20:02:10.751498Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-sat.thomas.shape-models:data::1.0", "title": "Small Body Optical Shape Models V1.0", "description": "The Small Body Shape Models data set contains the Peter Thomas shape models for small solar system bodies, as well as image mosaics constructed from these models. These shape models are based upon optical data from a variety of spacecraft instruments, including the Galileo SSI, NEAR MSI, Viking orbiter, Voyager 1 & 2, and the Hubble Space Telescope. The data has been published in a variety of publications between 1984 and 1999.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HST", "Voyager", "Galileo", "Near Earth Asteroid Rendezvous", "Viking", "Phobos 2", "Mariner71"], "targets": ["(253) Mathilde", "Mars I (Phobos)", "Saturn XI (Epimetheus)", "Mars II (Deimos)", "(243) Ida", "(951) Gaspra", "(4) Vesta", "Mars II (Deimos)", "Saturn VII (Hyperion)", "Saturn VII (Hyperion)", "Saturn X (Janus)", "Mars I (Phobos)"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "Visual Imaging Subsystem - Camera A for VO2", "Imaging Science Subsystem", "Visual Imaging Subsystem - Camera B for VO2", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "Multi-spectral Imager", "VISUAL IMAGING SUBSYSTEM - CAMERA A for VO1", "Solid State Imaging System", "VISUAL IMAGING SUBSYSTEM - CAMERA B for VO1", "Vsk-fregat", "Wide Field Planetary Camera 2"], "instrument_hosts": ["Voyager 1", "Viking Orbiter 2", "Mariner 9", "Viking Orbiter 2", "Voyager 2", "Near Earth Asteroid Rendezvous", "Viking Orbiter 1", "Galileo Orbiter", "Viking Orbiter 1", "Phobos 2", "Hubble Space Telescope"], "data_types": ["Data"], "start_date": "1976-06-22", "stop_date": "1997-06-27", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/collection_ast-sat.thomas.shape-models_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-sat.thomas.shape-models_V1_0/data/collection_ast-sat.thomas.shape-models_data.xml", "scraped_at": "2026-02-25T20:02:10.751505Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-bennu.radar.shape-model:document::1.1", "title": "Asteroid (101955) Bennu Radar Shape Model V1.1", "description": "We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(101955) Bennu"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "University of Arizona Kuiper 1.54m telescope", "ccd21 camera for the Kuiper 1.54m telescope", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70 cm AZT-8", "SBIG ST-6 UV camera", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Steward Observatory", "Arecibo Observatory", "Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station", "Goldstone Complex", "Goldstone Complex"], "data_types": ["Document"], "start_date": "1999-09-21", "stop_date": "2005-10-02", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/collection_ast-bennu.radar.shape-model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/document/collection_ast-bennu.radar.shape-model_document.xml", "scraped_at": "2026-02-25T20:02:10.751512Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast-bennu.radar.shape-model:data::1.1", "title": "Asteroid (101955) Bennu Radar Shape Model V1.1", "description": "We present the three-dimensional shape of near-Earth asteroid (101955) Bennu (provisional designation 1999 RQ36) based on radar images and optical lightcurves (Nolan et al., 2013). Bennu was observed both in 1999 at its discovery apparition, and in 2005 using the 12.6-cm radar at the Arecibo Observatory and the 3.5-cm radar at the Goldstone tracking station. Data obtained in both apparitions were used to construct a shape model of this object. Observations were also obtained at many other wavelengths to characterize this object, some of which were used to further constrain the shape modeling (Clark et al., 2011; Hergenrother et al., 2013; Krugly et al., 1999).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(101955) Bennu"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo 2380 MHz Radar Receiver", "University of Arizona Kuiper 1.54m telescope", "ccd21 camera for the Kuiper 1.54m telescope", "305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "70 cm AZT-8", "SBIG ST-6 UV camera", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Receiver", "70-m steerable parabolic radio telescope", "Goldstone Solar System Radar Transmitter"], "instrument_hosts": ["Arecibo Observatory", "Steward Observatory", "Arecibo Observatory", "Chuguev (a.k.a. Chuguevskaya, Chuhuiv) Observational Station", "Goldstone Complex", "Goldstone Complex"], "data_types": ["Data"], "start_date": "1999-09-21", "stop_date": "2005-10-02", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/collection_ast-bennu.radar.shape-model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast-bennu.radar.shape-model_V1_1/data/collection_ast-bennu.radar.shape-model_data.xml", "scraped_at": "2026-02-25T20:02:10.751518Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.primass-l.spectra:document::1.0", "title": "PRIMASS-L V1.0", "description": "PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of June 2021 this library contains spectra of about 642 asteroids from 10 families and two groups that had been sparsely studied before. 85% of our targets did not have published spectra and only 40% had visible photometry. PRIMASS-L contains spectra from a variety of ground-based facilities. This survey is ongoing and is expected to contain about 800 spectra by the end of 2022. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(5116) Korsor", "(24048) Pedroduque", "(96690) 1999 JA73", "(147535) 2004 EH14", "(147777) 2005 QV103", "(122596) 2000 RG35", "(41746) 2000 VD16", "(25381) Jerrynelson", "(250431) 2003 WL117", "(3185) Clintford", "(15202) Yamada-Houkoku", "(6698) Malhotra", "(12051) Picha", "(364204) 2006 QR100", "(52870) 1998 SC26", "(37233) 2000 WV154", "(37354) 2001 TN107", "(39895) 1998 FK15", "(15561) 2000 GU36", "(133123) 2003 PO1", "{109019) 2001 QT6", "(6578) Zapesotskij", "(29626) 1998 TV12", "(107070) 2001 AH16", "(29623) 1998 SR164", "(120190) 2004 CL97", "(28894) Ryanchung", "(940) Kordula", "(15794) 1993 TG31", "(6343) 1993 VK", "(180349) 2003 YW71", "(63310) 2001 FS21", "(249427) 2009 EH18", "(63312) 2001 FH24", "(67918) 2000 WW109", "(57068) 2001 OC1", "(38661) 2000 OC49", "(72384) 2001 CF12", "(100784) 1998 FM61", "(72143) 2000 YQ86", "(252953) 2002 PB91", "(12072) Anupamakotha", "(78921) 2003 SP108", "(132056) 2002 CA141", "(24037) 1999 SB7", "(96463) 1998 HW51", "(106085) 2000 SO355", "(39888) 1998 ES20", "(2081) Sazava", "(25490) Kevinkelly", "(5594) Jimmiller", "(3298) Massandra", "(155162) 2005 UZ104", "(95018) 2002 AZ9", "(6769) Brokoff", "(238992) 2006 BH260", "(76922) 2001 AH15", "(20843) Kuotzuhao", "(262102) 2006 RE98", "(33913) 2000 LK14", "(116717) 2004 DU8", "(27354) Stiklaitis", "(80062) 1999 JX85", "(18759) 1999 HO2", "(59065) 1998 UB43", "(752) Sulamitis", "(39694) 1996 ST2", "(132091) 2002 CC175", "(5327) 1989 EX1", "(74755) 1999 RL199", "(3146) Dato", "(6415) 1993 VR3", "(61560) 2000 QT74", "(33804) 1999 WL4", "(107032) 2000 YB1240", "(26394) Kandola", "(114308) 2002 XY50", "(148658) 2001 SG128", "(175811) 1999 RS193", "(362332) 2010 KW34", "(96405) 1998 ES", "(96768) 1999 RH50", "(5333) Kanaya", "(623) Chimaera", "(14264) 2000 AH142", "(6661) Ikemura", "(50239) 2000 BW3", "(1177) Gonnessia", "(147241) 2002 XW62", "(48153) 2001 FW172", "(121096) 1999 FG51", "(25036) Elizabethof", "(26121) 1992 BX", "(38106) 1999 JG23", "(41525) 2000 QP218", "(135384) 2001 TT166", "(36286) 2000 EL14", "(1183) Jutta", "(3485) Barucci", "(52891) 1998 SM61", "(2279) Barto", "(73205) 2002 JY16", "(5429) 1988 BZ1", "(246226) 2007 RH212", "(84211) 2002 RV141", "(59397) 1999 FT26", "(3130) Hillary", "(15134) 2000 ED92", "(72230) 2001 AN15", "(133197) 2003 QS59", "(5794) Irmina", "(129818) 1999 NE28", "(17230) 2000 CX116", "(138668) 2000 RB103", "(38173) 1999 JZ112", "(66403) 1999 LM13", "(85167) 1989 RS2", "(42431) 1051 T-3", "(42552) 1996 RH25", "(34923) 4870 P-L", "(790) Pretoria", "(313) Chaldaea", "(23916) 1998 SD131", "(113374) 2002 SB8", "(98345) 2000 SQ304", "(169066) 2001 FR157", "(42781) 1998 VL28", "(7030) Colombini", "(7394) Xanthomalitia", "(302) Clarissa", "(77421) 2001 GB", "(7274) Washioyama", "(300289) 2007 OM10", "(162755) Spacesora", "(117745) 2005 GP37", "(10979) Fristephenson", "(32847) 1992 JO3", "(66421) 1999 NQ19", "(66309) 1999 JX41", "(78889) 2003 SA36", "(79610) 1998 RF51", "(186714) 2004 BV88", "(528) Rezia", "(6039) Parmenides", "(20992) 1985 RV2", "(98246) 2000 SY166", "(53537) 2000 AZ239", "(44942) 1999 VM55", "(2918) Salazar", "(203620) 2002 EU125", "(9792) Nonodakesan", "(99691) 2002 JP27", "(69706) 1998 HJ77", "(173657) 2001 HN14", "(401) Ottilia", "(19415) Parvamenon", "(8106) Carpino", "(17233) Stanshapiro", "(18483) 1995 YY2", "(78826) 2003 QE17", "(44773) 1999 TU140", "(10992) Veryuslaviya", "(6374) Beslan", "(72047) 2000 YZ6", "(72169) 2000 YW107", "(186530) 2002 VX78", "(1923) Osiris", "(44766) 1999 TM123", "(67940) 2000 WT143", "(10866) Peru", "(72292) 2001 BE22", "(34857) 2001 TB36", "(225) Henrietta", "(210564) 1999 TR195", "(6142) Tantawi", "(229) Adelinda", "(7231) Porco", "(108631) 2001 NG", "(45846) 2000 RA96", "(208048) 1999 TL149", "(162795) 2000 YF52", "(171027) 2005 EN57", "(56970) 2000 SJ111", "(172478) 2003 SM87", "(334) Chicago", "(53103) 1999 AB2", "(4173) Thicksten", "(90975) 1997 WF37", "(212417) 2006 KJ103", "(9860) Archaeopteryx", "(24907) Alfredhaar", "(20432) 1999 BD12", "(329) Svea", "(1902) Shaposhnikov", "(208039) 1999 RV113", "(256789) 2008 CY45", "(11856) Nicolabonev", "(561) Ingwelde", "(137397) 1999 TH165", "(170184) 2003 MV11", "(5158) Ogarev", "(56600) 2000 JK50", "(50068) 2000 AR77", "(2642) Vesale", "(25932) 2001 DB72", "(106794) 2000 XK26", "(1674) Groeneveld", "(24726) 1991 VY", "Multiple Asteroids", "(265259) 2004 EW82", "(1439) Vogtia", "(80789) 2000 CC85", "(165403) 2000 XM43", "(126046) 2001 YH72", "(42155) 2001 BA63", "(77495) 2001 HM37", "(110819) 2001 UW49", "(174594) 2003 QH56", "(57400) 2001 RR90", "(30043) Lisamichaels", "(70511) 1999 TL103", "(71966) 2000 WP118", "(3626) Ohsaki", "(16090) Lukaszewski", "(2534) Houzeau", "(165536) 2001 DC6", "(1209) Pumma", "(67586) 2000 SH125", "(45892) 2000 WR179", "(149396) 2003 AU39", "(9052) Uhland", "(142751) 2002 TG300", "(142) Polana", "(35627)1998 KW9", "(178844) 2001 HG53", "(25829) 2000 DU108", "(268) Adorea", "(75089) 1999 VY30", "(174120) 2002 JC146", "(55454) 2001 TJ128", "(67352) 2000 JN80", "(107861) 2001 FN80", "(72941) 2002 CD8", "(68685) 2002 CK142", "(107742) 2001 FH33", "(70528) 1999 TF116", "(119526) 2001 UF175", "(43346) 2000 RT103", "(186446) 2002 SM30", "(132509) 2002 JU41", "(151019) 2001 UF119", "(495) Eulalia", "(96918) 1999 TJ113", "(173129) 1994 JH2", "(77278) 2001 FL61", "(213825) 2003 QW63", "(39094) 2000 VQ58", "(1782) Schneller", "(24956) Qiannan", "(3843) OISCA", "(5900) Jensen", "(42006) 2000 YA50", "(60852) 2000 HU65", "Multiple", "(123915) 2001 DK95", "(67891) 2000 WR61", "(66325) 1999 JF55", "(65354) 2002 NG43", "(98391) 2000 TL62", "(13509) Guayaquil", "(334314) 2001 VY132", "(57442) 2001 SF54", "(8032) Michaeladams", "(34326) Zhaurova", "(325852) 2010 TO53", "(18075) Donasharma", "(43152) 1999 XM115", "(242324) 2003 YY12", "(304858) 2007 RQ77", "(1768) Appenzella", "(80754) 2000 CV49", "(66333) 1999 JS60", "(24650) 1986 QM", "(80993) 2000 EY26", "(54286) 2000 JD51", "(249089) 2007 VL55", "(34339) 2000 QH218", "(56349) 2000 AZ90", "(26719) 2001 HQ5", "(120548) 1995 BO", "(7078) Unojonsson", "(71932) 2000 WO61", "(98178) 2000 SU99", "(110518) 2001 TY78", "(332038) 2005 QZ73", "(243648) 1999 TX176", "(92634) 2000 QN19", "(168936) 2000 YN95", "(26807) 1982 RK1", "(44463) 1998 VT18", "(153694) 2001 UV28", "(65264) 2002 GW16", "(133503) 2003 SW288", "(24638) 1981 UC23", "(161079) 2002 LP61", "(14849) 1989 GQ1", "(11214) 1999 HP8", "(253798) 2003 XP17", "(12421) Zhenya", "(53170) 1999 CH19", "(9476) 1998 QQ36", "(3577) Putilin", "(27715) 1989 CR1", "(183911) 2004 CB100", "(131119) 2001 BK4", "(24322) 2000 AM43", "(21176) 1994 CN13", "(34487) 2000 SE133", "(86812) 2000 GB125", "(122871) 2000 SX138", "(85727) 1998 SC75", "(1280) Baillauda", "(32061) 2000 JK48", "(78069) 2002 LU4", "(93347) 2000 SX247", "(6857) Castelli", "(26516) 2000 CW56", "(49859) 1999 XB100", "(45378) 2000 AD118", "(49731) 1999 VR80", "(164286) 2004 XO86", "(79044) 3919 T-2", "(13537) 1991 SG", "(57473) 2001 SE127", "(320575) 2008 AM110", "(123979) 2001 FB38", "(156670) 2002 JK111", "(73860) 1996 XR5", "(255959) 2006 TP34", "(253538) 2003 SX220", "(5771) Somerville", "(3556) Lixiaohua", "(70361) 1999 RK189", "(4648) Tirion", "(72308) 2001 BZ34", "(217593) 2008 FK3", "(81010) 2000 EL35", "(85626) 1998 HM141", "(206344) 2003 PA8", "(34228) 2000 QF90", "(14530) 1997 PR", "(74962) 1999 TW200", "(69266) 1988 RJ6", "(49833) 1999 XB84", "(1144) Oda", "(1386) Storeria", "(237295) 2008 YN7", "(3202) Graff", "(1269) Rollandia", "(60571) 2000 ER116", "(45357) 2000 AC102", "(84536) 2002 UV19", "(42089) 2001 AQ15", "(106919) 2000 YC53", "(106918) 2000 YZ52", "(61309) 2000 OF50", "(6840) 1995 WW5", "(3330) Gantrisch", "(111789) 2002 CQ236", "(2563) Boyarchuk", "(132248) 2002 EM90", "(23270) Kellerman", "(23397) 5122 T-3", "(6806) Kaufmann", "(242858) 2006 GJ9", "(69679) 1998 HR15", "(37437) 2576 P-L", "(166264) 2002 GL74", "(232922) 2005 AP26", "(36469) 2000 QT23", "(40976) 1999 TV272", "(70427) 1999 TB1", "(52951) 1998 SO147", "(36465) 2000 QR19", "(6815) Mutchler", "(132352) 2002 GV54", "(909) Ulla", "(142282) 2002 RT128", "(68114) Deakferenc", "(53918) 2000 GM18", "(120384) 2005 QU29", "(251796) 1999 TO9", "(58240) 1993 FV81", "(70312) 1999 RM137", "(175194) 2005 EL268", "(112414) 2002 NV42", "(71655) 2000 EF121", "(262642) 2006 WT49", "(66062) 1998 RG1", "(208724) 2002 JV130", "(59322) 1999 CB95", "(39955) 1998 FV118", "(35358) Lorifini", "(8091) 1992 BG", "(68490) 2001 TH239", "(27506) 2000 GQ141", "(24358) 2000 AV117", "(2794) Kulik", "(84) Klio", "(112308) 2002 LR47", "(109030) 2001 QL10", "(79143) 1992 BQ2", "(142297) 2002 RF145", "(169633) 2002 HQ12", "(61500) 2000 QV51", "(203141) 2000 UV41", "(177258) 2003 WX39", "(59317) 1999 CN89", "(122109) 2000 HJ94", "(132383) 2002 GQ83"], "instruments": ["3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "DOLORES (Device Optimized for LOw RESolution)", "New Technology Telescope (NTT)", "ESO Faint Object Spectrograph and Camera 2", "Gran Telescopio Canaria (GTC)", "GTC OSIRIS Optical Imager and Spectrograph", "2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)", "Intermediate Dispersion Spectrograph (IDS)", "SOAR", "SOAR-GHTS"], "instrument_hosts": ["Roque de los Muchachos Observatory", "European Southern Observatory", "Roque de los Muchachos Observatory", "Roque de los Muchachos Observatory", "Cerro Tololo Inter-American Observatory"], "data_types": ["Document"], "start_date": "2010-10-12", "stop_date": "2018-04-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/collection_gbo.ast.primass-l.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/document/collection_gbo.ast.primass-l.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.751547Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.primass-l.spectra:data::1.0", "title": "PRIMASS-L V1.0", "description": "PRIMASS-L is a spectral library that contains the results of the PRIMitive Asteroids Spectroscopic Survey (PRIMASS). As of June 2021 this library contains spectra of about 642 asteroids from 10 families and two groups that had been sparsely studied before. 85% of our targets did not have published spectra and only 40% had visible photometry. PRIMASS-L contains spectra from a variety of ground-based facilities. This survey is ongoing and is expected to contain about 800 spectra by the end of 2022. Making PRIMASS-L publicly available at the Small Bodies Node of the Planetary Data System enables synergies with other data sets containing physical parameters (e.g. polarimetric properties and geometric albedo) and family affiliation. This will push the characterization of the families and primitive material to a new level and will improve our understanding of the evolution of our Solar System and other planetary systems.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(5116) Korsor", "(24048) Pedroduque", "(96690) 1999 JA73", "(147535) 2004 EH14", "(147777) 2005 QV103", "(122596) 2000 RG35", "(41746) 2000 VD16", "(25381) Jerrynelson", "(250431) 2003 WL117", "(3185) Clintford", "(15202) Yamada-Houkoku", "(6698) Malhotra", "(12051) Picha", "(364204) 2006 QR100", "(52870) 1998 SC26", "(37233) 2000 WV154", "(37354) 2001 TN107", "(39895) 1998 FK15", "(15561) 2000 GU36", "(133123) 2003 PO1", "{109019) 2001 QT6", "(6578) Zapesotskij", "(29626) 1998 TV12", "(107070) 2001 AH16", "(29623) 1998 SR164", "(120190) 2004 CL97", "(28894) Ryanchung", "(940) Kordula", "(15794) 1993 TG31", "(6343) 1993 VK", "(180349) 2003 YW71", "(63310) 2001 FS21", "(249427) 2009 EH18", "(63312) 2001 FH24", "(67918) 2000 WW109", "(57068) 2001 OC1", "(38661) 2000 OC49", "(72384) 2001 CF12", "(100784) 1998 FM61", "(72143) 2000 YQ86", "(252953) 2002 PB91", "(12072) Anupamakotha", "(78921) 2003 SP108", "(132056) 2002 CA141", "(24037) 1999 SB7", "(96463) 1998 HW51", "(106085) 2000 SO355", "(39888) 1998 ES20", "(2081) Sazava", "(25490) Kevinkelly", "(5594) Jimmiller", "(3298) Massandra", "(155162) 2005 UZ104", "(95018) 2002 AZ9", "(6769) Brokoff", "(238992) 2006 BH260", "(76922) 2001 AH15", "(20843) Kuotzuhao", "(262102) 2006 RE98", "(33913) 2000 LK14", "(116717) 2004 DU8", "(27354) Stiklaitis", "(80062) 1999 JX85", "(18759) 1999 HO2", "(59065) 1998 UB43", "(752) Sulamitis", "(39694) 1996 ST2", "(132091) 2002 CC175", "(5327) 1989 EX1", "(74755) 1999 RL199", "(3146) Dato", "(6415) 1993 VR3", "(61560) 2000 QT74", "(33804) 1999 WL4", "(107032) 2000 YB1240", "(26394) Kandola", "(114308) 2002 XY50", "(148658) 2001 SG128", "(175811) 1999 RS193", "(362332) 2010 KW34", "(96405) 1998 ES", "(96768) 1999 RH50", "(5333) Kanaya", "(623) Chimaera", "(14264) 2000 AH142", "(6661) Ikemura", "(50239) 2000 BW3", "(1177) Gonnessia", "(147241) 2002 XW62", "(48153) 2001 FW172", "(121096) 1999 FG51", "(25036) Elizabethof", "(26121) 1992 BX", "(38106) 1999 JG23", "(41525) 2000 QP218", "(135384) 2001 TT166", "(36286) 2000 EL14", "(1183) Jutta", "(3485) Barucci", "(52891) 1998 SM61", "(2279) Barto", "(73205) 2002 JY16", "(5429) 1988 BZ1", "(246226) 2007 RH212", "(84211) 2002 RV141", "(59397) 1999 FT26", "(3130) Hillary", "(15134) 2000 ED92", "(72230) 2001 AN15", "(133197) 2003 QS59", "(5794) Irmina", "(129818) 1999 NE28", "(17230) 2000 CX116", "(138668) 2000 RB103", "(38173) 1999 JZ112", "(66403) 1999 LM13", "(85167) 1989 RS2", "(42431) 1051 T-3", "(42552) 1996 RH25", "(34923) 4870 P-L", "(790) Pretoria", "(313) Chaldaea", "(23916) 1998 SD131", "(113374) 2002 SB8", "(98345) 2000 SQ304", "(169066) 2001 FR157", "(42781) 1998 VL28", "(7030) Colombini", "(7394) Xanthomalitia", "(302) Clarissa", "(77421) 2001 GB", "(7274) Washioyama", "(300289) 2007 OM10", "(162755) Spacesora", "(117745) 2005 GP37", "(10979) Fristephenson", "(32847) 1992 JO3", "(66421) 1999 NQ19", "(66309) 1999 JX41", "(78889) 2003 SA36", "(79610) 1998 RF51", "(186714) 2004 BV88", "(528) Rezia", "(6039) Parmenides", "(20992) 1985 RV2", "(98246) 2000 SY166", "(53537) 2000 AZ239", "(44942) 1999 VM55", "(2918) Salazar", "(203620) 2002 EU125", "(9792) Nonodakesan", "(99691) 2002 JP27", "(69706) 1998 HJ77", "(173657) 2001 HN14", "(401) Ottilia", "(19415) Parvamenon", "(8106) Carpino", "(17233) Stanshapiro", "(18483) 1995 YY2", "(78826) 2003 QE17", "(44773) 1999 TU140", "(10992) Veryuslaviya", "(6374) Beslan", "(72047) 2000 YZ6", "(72169) 2000 YW107", "(186530) 2002 VX78", "(1923) Osiris", "(44766) 1999 TM123", "(67940) 2000 WT143", "(10866) Peru", "(72292) 2001 BE22", "(34857) 2001 TB36", "(225) Henrietta", "(210564) 1999 TR195", "(6142) Tantawi", "(229) Adelinda", "(7231) Porco", "(108631) 2001 NG", "(45846) 2000 RA96", "(208048) 1999 TL149", "(162795) 2000 YF52", "(171027) 2005 EN57", "(56970) 2000 SJ111", "(172478) 2003 SM87", "(334) Chicago", "(53103) 1999 AB2", "(4173) Thicksten", "(90975) 1997 WF37", "(212417) 2006 KJ103", "(9860) Archaeopteryx", "(24907) Alfredhaar", "(20432) 1999 BD12", "(329) Svea", "(1902) Shaposhnikov", "(208039) 1999 RV113", "(256789) 2008 CY45", "(11856) Nicolabonev", "(561) Ingwelde", "(137397) 1999 TH165", "(170184) 2003 MV11", "(5158) Ogarev", "(56600) 2000 JK50", "(50068) 2000 AR77", "(2642) Vesale", "(25932) 2001 DB72", "(106794) 2000 XK26", "(1674) Groeneveld", "(24726) 1991 VY", "Multiple Asteroids", "(265259) 2004 EW82", "(1439) Vogtia", "(80789) 2000 CC85", "(165403) 2000 XM43", "(126046) 2001 YH72", "(42155) 2001 BA63", "(77495) 2001 HM37", "(110819) 2001 UW49", "(174594) 2003 QH56", "(57400) 2001 RR90", "(30043) Lisamichaels", "(70511) 1999 TL103", "(71966) 2000 WP118", "(3626) Ohsaki", "(16090) Lukaszewski", "(2534) Houzeau", "(165536) 2001 DC6", "(1209) Pumma", "(67586) 2000 SH125", "(45892) 2000 WR179", "(149396) 2003 AU39", "(9052) Uhland", "(142751) 2002 TG300", "(142) Polana", "(35627)1998 KW9", "(178844) 2001 HG53", "(25829) 2000 DU108", "(268) Adorea", "(75089) 1999 VY30", "(174120) 2002 JC146", "(55454) 2001 TJ128", "(67352) 2000 JN80", "(107861) 2001 FN80", "(72941) 2002 CD8", "(68685) 2002 CK142", "(107742) 2001 FH33", "(70528) 1999 TF116", "(119526) 2001 UF175", "(43346) 2000 RT103", "(186446) 2002 SM30", "(132509) 2002 JU41", "(151019) 2001 UF119", "(495) Eulalia", "(96918) 1999 TJ113", "(173129) 1994 JH2", "(77278) 2001 FL61", "(213825) 2003 QW63", "(39094) 2000 VQ58", "(1782) Schneller", "(24956) Qiannan", "(3843) OISCA", "(5900) Jensen", "(42006) 2000 YA50", "(60852) 2000 HU65", "Multiple", "(123915) 2001 DK95", "(67891) 2000 WR61", "(66325) 1999 JF55", "(65354) 2002 NG43", "(98391) 2000 TL62", "(13509) Guayaquil", "(334314) 2001 VY132", "(57442) 2001 SF54", "(8032) Michaeladams", "(34326) Zhaurova", "(325852) 2010 TO53", "(18075) Donasharma", "(43152) 1999 XM115", "(242324) 2003 YY12", "(304858) 2007 RQ77", "(1768) Appenzella", "(80754) 2000 CV49", "(66333) 1999 JS60", "(24650) 1986 QM", "(80993) 2000 EY26", "(54286) 2000 JD51", "(249089) 2007 VL55", "(34339) 2000 QH218", "(56349) 2000 AZ90", "(26719) 2001 HQ5", "(120548) 1995 BO", "(7078) Unojonsson", "(71932) 2000 WO61", "(98178) 2000 SU99", "(110518) 2001 TY78", "(332038) 2005 QZ73", "(243648) 1999 TX176", "(92634) 2000 QN19", "(168936) 2000 YN95", "(26807) 1982 RK1", "(44463) 1998 VT18", "(153694) 2001 UV28", "(65264) 2002 GW16", "(133503) 2003 SW288", "(24638) 1981 UC23", "(161079) 2002 LP61", "(14849) 1989 GQ1", "(11214) 1999 HP8", "(253798) 2003 XP17", "(12421) Zhenya", "(53170) 1999 CH19", "(9476) 1998 QQ36", "(3577) Putilin", "(27715) 1989 CR1", "(183911) 2004 CB100", "(131119) 2001 BK4", "(24322) 2000 AM43", "(21176) 1994 CN13", "(34487) 2000 SE133", "(86812) 2000 GB125", "(122871) 2000 SX138", "(85727) 1998 SC75", "(1280) Baillauda", "(32061) 2000 JK48", "(78069) 2002 LU4", "(93347) 2000 SX247", "(6857) Castelli", "(26516) 2000 CW56", "(49859) 1999 XB100", "(45378) 2000 AD118", "(49731) 1999 VR80", "(164286) 2004 XO86", "(79044) 3919 T-2", "(13537) 1991 SG", "(57473) 2001 SE127", "(320575) 2008 AM110", "(123979) 2001 FB38", "(156670) 2002 JK111", "(73860) 1996 XR5", "(255959) 2006 TP34", "(253538) 2003 SX220", "(5771) Somerville", "(3556) Lixiaohua", "(70361) 1999 RK189", "(4648) Tirion", "(72308) 2001 BZ34", "(217593) 2008 FK3", "(81010) 2000 EL35", "(85626) 1998 HM141", "(206344) 2003 PA8", "(34228) 2000 QF90", "(14530) 1997 PR", "(74962) 1999 TW200", "(69266) 1988 RJ6", "(49833) 1999 XB84", "(1144) Oda", "(1386) Storeria", "(237295) 2008 YN7", "(3202) Graff", "(1269) Rollandia", "(60571) 2000 ER116", "(45357) 2000 AC102", "(84536) 2002 UV19", "(42089) 2001 AQ15", "(106919) 2000 YC53", "(106918) 2000 YZ52", "(61309) 2000 OF50", "(6840) 1995 WW5", "(3330) Gantrisch", "(111789) 2002 CQ236", "(2563) Boyarchuk", "(132248) 2002 EM90", "(23270) Kellerman", "(23397) 5122 T-3", "(6806) Kaufmann", "(242858) 2006 GJ9", "(69679) 1998 HR15", "(37437) 2576 P-L", "(166264) 2002 GL74", "(232922) 2005 AP26", "(36469) 2000 QT23", "(40976) 1999 TV272", "(70427) 1999 TB1", "(52951) 1998 SO147", "(36465) 2000 QR19", "(6815) Mutchler", "(132352) 2002 GV54", "(909) Ulla", "(142282) 2002 RT128", "(68114) Deakferenc", "(53918) 2000 GM18", "(120384) 2005 QU29", "(251796) 1999 TO9", "(58240) 1993 FV81", "(70312) 1999 RM137", "(175194) 2005 EL268", "(112414) 2002 NV42", "(71655) 2000 EF121", "(262642) 2006 WT49", "(66062) 1998 RG1", "(208724) 2002 JV130", "(59322) 1999 CB95", "(39955) 1998 FV118", "(35358) Lorifini", "(8091) 1992 BG", "(68490) 2001 TH239", "(27506) 2000 GQ141", "(24358) 2000 AV117", "(2794) Kulik", "(84) Klio", "(112308) 2002 LR47", "(109030) 2001 QL10", "(79143) 1992 BQ2", "(142297) 2002 RF145", "(169633) 2002 HQ12", "(61500) 2000 QV51", "(203141) 2000 UV41", "(177258) 2003 WX39", "(59317) 1999 CN89", "(122109) 2000 HJ94", "(132383) 2002 GQ83"], "instruments": ["3.5-m Galileo Zeiss Ritchey-Chretien altazimuth reflector", "DOLORES (Device Optimized for LOw RESolution)", "New Technology Telescope (NTT)", "ESO Faint Object Spectrograph and Camera 2", "Gran Telescopio Canaria (GTC)", "GTC OSIRIS Optical Imager and Spectrograph", "2.54-m Isaac Newton Grubb-Parsons Cass. equat. refl. (INT)", "Intermediate Dispersion Spectrograph (IDS)", "SOAR", "SOAR-GHTS"], "instrument_hosts": ["Roque de los Muchachos Observatory", "European Southern Observatory", "Roque de los Muchachos Observatory", "Roque de los Muchachos Observatory", "Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "2010-10-12", "stop_date": "2018-04-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/collection_gbo.ast.primass-l.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.primass-l.spectra_V1_0/data/collection_gbo.ast.primass-l.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.751576Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:asteroid_polarimetric_database:document::2.0", "title": "Asteroid Polarimetric Database V2.0", "description": "The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1958-10-22", "stop_date": "2020-12-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/collection_asteroid_polarimetric_database_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/document/collection_asteroid_polarimetric_database_document.xml", "scraped_at": "2026-02-25T20:02:10.751583Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:asteroid_polarimetric_database:data::2.0", "title": "Asteroid Polarimetric Database V2.0", "description": "The Asteroid Polarimetric Database (APD) is a collection of asteroid polarimetry results compiled by D.F. Lupishko of Karazin Kharkiv National University, Ukraine. It is intended to include most asteroid polarimetry available through November 15, 2021.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1958-10-22", "stop_date": "2020-12-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/collection_asteroid_polarimetric_database_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/asteroid_polarimetric_database_V2_0/data/collection_asteroid_polarimetric_database_data.xml", "scraped_at": "2026-02-25T20:02:10.751588Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-ceres.alma.images-spectra:document::1.0", "title": "ALMA Ceres Imaging and Spectrum V1.0", "description": "This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres"], "instruments": ["Atacama Millimeter/submillimeter Array (ALMA)", "ALMA Radio Receivers"], "instrument_hosts": ["European Southern Observatory - Chajnantor"], "data_types": ["Document"], "start_date": "2015-10-31", "stop_date": "2017-10-26", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/collection_gbo.ast-ceres.alma.images-spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/document/collection_gbo.ast-ceres.alma.images-spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.751592Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-ceres.alma.images-spectra:data::1.0", "title": "ALMA Ceres Imaging and Spectrum V1.0", "description": "This archive package contains the calibrated imaging and spectral data, as well as the integrated photometric (lightcurve) data of Ceres at about 1 mm wavelength obtained from the Atacama Large Millimeter/submillimeter Array (ALMA) in October - November 2015, September 2017, and October 2017. The imaging data were collected with the ALMA 12-meter array in all three epochs with Ceres spatially resolved into about 10, 15, and 15 beams, respectively, and have an average frequency of 265 GHz. Each epoch covers one full rotation of Ceres. The lightcurve data of Ceres were derived from the 12-meter images plus the ALMA Compact Array (ACA) data (effective frequency 259.39 GHz) obtained in the October 2017 epoch. The spectral data cover a frequency range of 256.636 - 266.136 GHz.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres"], "instruments": ["Atacama Millimeter/submillimeter Array (ALMA)", "ALMA Radio Receivers"], "instrument_hosts": ["European Southern Observatory - Chajnantor"], "data_types": ["Data"], "start_date": "2015-10-31", "stop_date": "2017-10-26", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/collection_gbo.ast-ceres.alma.images-spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-ceres.alma.images-spectra_V1_0/data/collection_gbo.ast-ceres.alma.images-spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.751596Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.mission:context::1.2", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Context", "description": "This collection contains the context prodcuts applicable to the OSIRIS-REx mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OCAMS", "TAGCAMS", "OLA", "OTES", "OVIRS", "REXIS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/collection_context.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.753084Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.mission:document::9.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document", "description": "This collection contains the documents applicable to the OSIRIS-REx mission as a whole.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OCAMS", "TAGCAMS", "OLA", "OTES", "OVIRS", "REXIS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.753090Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.mission:xml_schema::6.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): XML_Schema", "description": "This collection contains the xml_schema prodcuts applicable to the OSIRIS-REx mission as a whole; includes the mission dictionary.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OCAMS", "TAGCAMS", "OLA", "OTES", "OVIRS", "REXIS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/collection_xml_schema.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.mission_v9.0/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.753094Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola:data_calibrated::3.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) calibrated science data products.", "description": "This collection contains the calibrated (processing level 2 calibrated) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/collection_ola_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated/collection_ola_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.753098Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola:data_calibrated_v2::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) calibrated science data products.", "description": "This collection contains the calibrated (processing level 2 calibrated) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft. The products in this collection are calibrated with the most refined calibration available for the OLA instrument. Details of this calibration can be found in Version 6.0 of the OLA SIS.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/collection_ola_data_calibrated_v2.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_calibrated_v2/collection_ola_data_calibrated_v2.xml", "scraped_at": "2026-02-25T20:02:10.753103Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola:data_hkl0::4.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) raw state of health (housekeeping) data products.", "description": "This collection contains the raw (processing level 0 raw) state of health (housekeeping) data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/collection_ola_data_hkl0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl0/collection_ola_data_hkl0.xml", "scraped_at": "2026-02-25T20:02:10.753107Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola:data_hkl1::4.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced state of health (housekeeping) data products.", "description": "This collection contains the reduced (processing level 1 reduced) state of health (housekeeping) data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/collection_ola_data_hkl1.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_hkl1/collection_ola_data_hkl1.xml", "scraped_at": "2026-02-25T20:02:10.753110Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola:data_raw::4.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) raw science data products.", "description": "This collection contains the raw (processing level 0 raw) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/collection_ola_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_raw/collection_ola_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.753114Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola:data_reduced::3.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced science data products.", "description": "This collection contains the reduced (processing level 1 reduced) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/collection_ola_data_reduced.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced/collection_ola_data_reduced.xml", "scraped_at": "2026-02-25T20:02:10.753117Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola:data_reduced_v2::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Laser Altimeter (OLA) reduced science data products.", "description": "This collection contains the reduced (processing level 1 reduced) science data products produced by the OLA instrument onboard the OSIRIS-REx spacecraft. The products in this collection are calibrated with the most refined calibration available for the OLA instrument. Details of this calibration can be found in Version 6.0 of the OLA SIS.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/collection_ola_data_reduced_v2.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/data_reduced_v2/collection_ola_data_reduced_v2.xml", "scraped_at": "2026-02-25T20:02:10.753122Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ola:document::4.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OLA Document", "description": "This collection contains the documents applicable to the OSIRIS-REx Laser Altimeter (OLA) instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/collection_ola_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ola_v4.0/document/collection_ola_document.xml", "scraped_at": "2026-02-25T20:02:10.753125Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.otes:data_calibrated::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Calibrated", "description": "This collection contains the calibrated spectra acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/collection_otes_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_calibrated/collection_otes_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.753128Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.otes:data_converted::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Converted", "description": "This collection contains the voltage interferograms acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/collection_otes_converted.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_converted/collection_otes_converted.xml", "scraped_at": "2026-02-25T20:02:10.753132Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.otes:data_engl0::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Raw Engineering", "description": "This collection contains the raw engineering data acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES). Data are grouped by day.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/collection_otes_engl0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl0/collection_otes_engl0.xml", "scraped_at": "2026-02-25T20:02:10.753135Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.otes:data_engl1::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Converted Engineering", "description": "This collection contains the engineering data converted to physical units acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES). Data are grouped by day.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/collection_otes_engl1.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_engl1/collection_otes_engl1.xml", "scraped_at": "2026-02-25T20:02:10.753139Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.otes:data_raw::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Data Raw", "description": "This collection contains the raw interferograms acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/collection_otes_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/data_raw/collection_otes_raw.xml", "scraped_at": "2026-02-25T20:02:10.753142Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.otes:document::10.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document", "description": "This collection contains the documents applicable to the OSIRIS-REx Thermal Emission Spectrometer (OTES) documents.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/collection_otes_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/document/collection_otes_document.xml", "scraped_at": "2026-02-25T20:02:10.753146Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.otes:geometry::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Geometry", "description": "This collection contains the geometric calculations applicable to the science measurements acquired by the OSIRIS-REx Thermal Emission Spectrometer (OTES).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Geometry"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/collection_otes_geometry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.otes_v11.0/geometry/collection_otes_geometry.xml", "scraped_at": "2026-02-25T20:02:10.753150Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ceres:browse::1.0", "title": "DAWN GRaND Ceres Bundle: Browse Collection", "description": "Browse files for the GRaND Ceres bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/collection_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.753153Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ceres:data_raw::1.0", "title": "DAWN GRaND Ceres Bundle: Raw Data Collection", "description": "Raw data files for the GRaND Ceres bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2015-03-13", "stop_date": "2018-10-26", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/collection_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.753157Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ceres:document::1.0", "title": "DAWN GRaND Ceres Bundle: Document Collection", "description": "Document files for the GRaND Ceres bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.753160Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ceres:data_calibrated::1.0", "title": "DAWN GRaND Ceres Bundle: Calibrated Data Collection", "description": "Calibrated data files for the GRaND Ceres bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2015-03-13", "stop_date": "2018-10-26", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/collection_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_calibrated/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.753164Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ceres:data_derived::1.0", "title": "DAWN GRaND Ceres Bundle: Derived Data Collection", "description": "Derived data files for the GRaND Ceres bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2015-12-16", "stop_date": "2016-05-11", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/collection_data_derived.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/data_derived/collection_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.753168Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ceres:miscellaneous::1.0", "title": "DAWN GRaND Ceres Bundle: Miscellaneous Data Collection", "description": "Miscellaneous files for the GRaND Ceres bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Miscellaneous"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/collection_miscellaneous.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ceres_1.0/miscellaneous/collection_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.753171Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-vesta:browse::1.0", "title": "DAWN GRaND Vesta Bundle: Browse Collection", "description": "Browse files for the GRaND Vesta bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(4) Vesta"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/collection_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.753174Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-vesta:data_raw::1.0", "title": "DAWN GRaND Vesta Bundle: Raw Data Collection", "description": "Raw data files for the GRaND Vesta bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(4) Vesta"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2011-05-03", "stop_date": "2012-08-09", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/collection_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.753179Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-vesta:document::1.0", "title": "DAWN GRaND Vesta Bundle: Document Collection", "description": "Document files for the GRaND Vesta bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(4) Vesta"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.753182Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-vesta:data_calibrated::1.0", "title": "DAWN GRaND Vesta Bundle: Calibrated Data Collection", "description": "Calibrated data files for the GRaND Vesta bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(4) Vesta"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2011-05-03", "stop_date": "2012-08-09", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/collection_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_calibrated/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.753185Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-vesta:data_derived::1.0", "title": "DAWN GRaND Vesta Bundle: Derived Data Collection", "description": "Derived data files for the GRaND Vesta bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(4) Vesta"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2011-12-08", "stop_date": "2012-05-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/collection_data_derived.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/data_derived/collection_data_derived.xml", "scraped_at": "2026-02-25T20:02:10.753189Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-vesta:miscellaneous::1.0", "title": "DAWN GRaND Vesta Bundle: Miscellaneous Collection", "description": "Miscellaneous files for the GRaND Vesta bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(4) Vesta"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Miscellaneous"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/collection_miscellaneous.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-vesta_1.0/miscellaneous/collection_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.753192Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-cruise:browse::1.0", "title": "DAWN GRaND Cruise Bundle: Browse Collection", "description": "Browse files for the GRaND Cruise bundle. Browse products are only avaliable for the Vesta-Ceres Cruise phase.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres", "(4) Vesta", "Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/collection_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.753196Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-cruise:data_raw::1.0", "title": "DAWN GRaND Cruise Bundle: Raw Data Collection", "description": "Raw data files for the GRaND Cruise bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres", "(4) Vesta", "Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2007-10-16", "stop_date": "2014-07-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/collection_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.753199Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-cruise:document::1.0", "title": "DAWN GRaND Cruise Bundle: Document Collection", "description": "Document files for the GRaND Cruise bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["(1) Ceres", "(4) Vesta", "Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-cruise_1.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.753203Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ancillary:document::1.0", "title": "DAWN GRaND Ancillary Bundle: Document Collection", "description": "Document for the GRaND instrument that are not specific to any phase of the mission", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": [], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.753207Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-ancillary:miscellaneous::1.0", "title": "DAWN GRaND Ancillary Bundle: Miscellaneous Collection", "description": "Miscellaneous files for the GRaND instrument", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": [], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Miscellaneous"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/collection_miscellaneous.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-ancillary_1.0/miscellaneous/collection_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.753210Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-mars:data_raw::1.0", "title": "DAWN GRaND Mars Bundle: Raw Data Collection", "description": "Raw data files for the GRaND Mars bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2009-01-20", "stop_date": "2009-03-27", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/collection_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.753214Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-mars:document::1.0", "title": "DAWN GRaND Mars Bundle: Document Collection", "description": "Document files for the GRaND Mars bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.753217Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-grand-mars:data_calibrated::1.0", "title": "DAWN GRaND Mars Bundle: Calibrated Data Collection", "description": "Calibrated data files for the GRaND Mars bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN Mission to Vesta and Ceres"], "targets": ["Mars"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR for DAWN"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "2009-02-17", "stop_date": "2009-02-18", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/collection_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/grand/dawn-grand-mars_1.0/data_calibrated/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.753222Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_nirs3:data_ancillary::1.0", "title": "NIRS3 instrument of Hayabusa2 Mission: Ancillary Data", "description": "This collection contains the derived ancillary data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["NIRS3"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/collection_hyb2_nirs3_data_ancillary.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_ancillary/collection_hyb2_nirs3_data_ancillary.xml", "scraped_at": "2026-02-25T20:02:10.753227Z", "keywords": ["Hayabusa2", "NIRS3", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_nirs3:document::1.0", "title": "NIRS3 instrument of Hayabusa2 Mission: Document", "description": "This collection contains the documents applicable to the Hayabusa2 NIRS3 instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": [], "instruments": ["NIRS3"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/collection_hyb2_nirs3_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/document/collection_hyb2_nirs3_document.xml", "scraped_at": "2026-02-25T20:02:10.753232Z", "keywords": ["Hayabusa2", "NIRS3", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_nirs3:data_calibrated::1.0", "title": "NIRS3 instrument of Hayabusa2 Mission: Calibrated Data", "description": "This collection contains the calibrated science data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["NIRS3"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/collection_hyb2_nirs3_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_calibrated/collection_hyb2_nirs3_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.753237Z", "keywords": ["Hayabusa2", "NIRS3", "(162173) Ryugu"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_nirs3:calibration::1.0", "title": "NIRS3 instrument of Hayabusa2 Mission: Calibration Data", "description": "This collection contains the calibration data products for data produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["NIRS3"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Calibration"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/collection_hyb2_nirs3_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/calibration/collection_hyb2_nirs3_calibration.xml", "scraped_at": "2026-02-25T20:02:10.753243Z", "keywords": ["Hayabusa2", "NIRS3", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_nirs3:data_raw::1.0", "title": "NIRS3 instrument of Hayabusa2 Mission: Raw Data", "description": "This collection contains the raw science data products produced by the NIRS3 instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["NIRS3"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/collection_hyb2_nirs3_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_nirs3/data_raw/collection_hyb2_nirs3_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.753248Z", "keywords": ["Hayabusa2", "NIRS3", "(162173) Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_tir:browse::1.0", "title": "TIR Instrument of Hayabusa2 Mission: Browse Collection", "description": "This collection contains the quick-look image data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth"], "instruments": ["TIR"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Browse"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/collection_hyb2_tir_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/browse/collection_hyb2_tir_browse.xml", "scraped_at": "2026-02-25T20:02:10.753253Z", "keywords": ["Hayabusa2", "TIR", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_tir:calibration::1.0", "title": "TIR instrument of Hayabusa2 Mission: Calibration Collection", "description": "This collection contains the calibration data products for data produced by the TIR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["TIR"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Calibration"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/collection_hyb2_tir_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/calibration/collection_hyb2_tir_calibration.xml", "scraped_at": "2026-02-25T20:02:10.753257Z", "keywords": ["Hayabusa2", "TIR", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_tir:document::1.0", "title": "TIR instrument of Hayabusa2 Mission: Document Collection", "description": "This collection contains the documents applicable to the Hayabusa2 TIR instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth"], "instruments": ["TIR"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/collection_hyb2_tir_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/document/collection_hyb2_tir_document.xml", "scraped_at": "2026-02-25T20:02:10.753262Z", "keywords": ["Hayabusa2", "TIR", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_tir:data_btemp::1.0", "title": "TIR instrument of Hayabusa2 Mission: Calibrated Brightness Temperature Data Collection", "description": "This collection contains the calibrated brightness temperature data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth"], "instruments": ["TIR"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/collection_hyb2_tir_data_btemp.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_btemp/collection_hyb2_tir_data_btemp.xml", "scraped_at": "2026-02-25T20:02:10.753267Z", "keywords": ["Hayabusa2", "TIR", "(162173) Ryugu"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_tir:data_raw::1.0", "title": "TIR instrument of Hayabusa2 Mission: Raw Data Collection", "description": "This collection contains the raw binary image data products produced by the TIR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth"], "instruments": ["TIR"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/collection_hyb2_tir_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_tir_v1.0/data_raw/collection_hyb2_tir_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.753271Z", "keywords": ["Hayabusa2", "TIR", "(162173) Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_high_rate_detector:data_calibration::1.0", "title": "data_calibration collection for the \"CASSINI HIGH RATE DETECTOR\" bundle", "description": "This is the data_calibration collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Calibration Target", "Dust"], "instruments": ["HIGH RATE DETECTOR"], "instrument_hosts": ["CASSINI ORBITER"], "data_types": ["Data"], "start_date": "1999-03-25", "stop_date": "2017-09-15", "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/collection_cassini_high_rate_detector_data_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_calibration/collection_cassini_high_rate_detector_data_calibration.xml", "scraped_at": "2026-02-25T20:02:10.753276Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_high_rate_detector:data_engineering::1.0", "title": "data_engineering collection for the \"CASSINI HIGH RATE DETECTOR\" bundle", "description": "This is the data_engineering collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Calibration Target", "Dust"], "instruments": ["HIGH RATE DETECTOR"], "instrument_hosts": ["CASSINI ORBITER"], "data_types": ["Data"], "start_date": "1999-03-25", "stop_date": "2017-09-15", "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/collection_cassini_high_rate_detector_data_engineering.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_engineering/collection_cassini_high_rate_detector_data_engineering.xml", "scraped_at": "2026-02-25T20:02:10.753281Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_high_rate_detector:data_science::1.0", "title": "data_science collection for the \"CASSINI HIGH RATE DETECTOR\" bundle", "description": "This is the data_science collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Calibration Target", "Dust"], "instruments": ["HIGH RATE DETECTOR"], "instrument_hosts": ["CASSINI ORBITER"], "data_types": ["Data"], "start_date": "1999-03-25", "stop_date": "2017-09-15", "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/collection_cassini_high_rate_detector_data_science.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/data_science/collection_cassini_high_rate_detector_data_science.xml", "scraped_at": "2026-02-25T20:02:10.753285Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:cassini_high_rate_detector:document::1.0", "title": "document collection for the \"CASSINI HIGH RATE DETECTOR\" bundle", "description": "This is the document collection for the cassini_high_rate_detector bundle. The High Rate Detector (HRD) from the University of Chicago is an independent part of the CDA instrument on the Cassini Orbiter that measures the dust flux and particle mass distribution of dust particles hitting the HRD detectors. This data set includes all data from the HRD through the end of the mission, Sept. 15, 2017. Please refer to Srama et al. (2004) for a detailed HRD description.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["CASSINI-HUYGENS"], "targets": ["Calibration Target", "Dust"], "instruments": ["HIGH RATE DETECTOR"], "instrument_hosts": ["CASSINI ORBITER"], "data_types": ["Document"], "start_date": "1999-03-25", "stop_date": "2017-09-15", "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/collection_cassini_high_rate_detector_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/cassini_high_rate_detector/document/collection_cassini_high_rate_detector_document.xml", "scraped_at": "2026-02-25T20:02:10.753289Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.amica.itokawa.backplanes:data::1.0", "title": "Hayabusa AMICA Images with Geometry Backplanes V1.0", "description": "The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa"], "targets": ["(25143) Itokawa"], "instruments": ["Asteroid Multi-band Imaging Camera"], "instrument_hosts": ["Hayabusa"], "data_types": ["Data"], "start_date": "2005-09-11", "stop_date": "2005-10-28", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/collection_hay.amica.itokawa.backplanes_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/data/collection_hay.amica.itokawa.backplanes_data.xml", "scraped_at": "2026-02-25T20:02:10.753293Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.amica.itokawa.backplanes:document::1.0", "title": "Hayabusa AMICA Images with Geometry Backplanes V1.0", "description": "The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set provides derived data products for 1339 of those images that includes geometric information for each pixel.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa"], "targets": ["(25143) Itokawa"], "instruments": ["Asteroid Multi-band Imaging Camera"], "instrument_hosts": ["Hayabusa"], "data_types": ["Document"], "start_date": "2005-09-11", "stop_date": "2005-10-28", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/collection_hay.amica.itokawa.backplanes_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica.itokawa.backplanes_v1.0/document/collection_hay.amica.itokawa.backplanes_document.xml", "scraped_at": "2026-02-25T20:02:10.753297Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_spectra_reddy_neos_marscrossers:data::1.0", "title": "data collection for the \"REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS\" bundle", "description": "This is the data collection for the ast_spectra_reddy_neos_marscrossers bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1036) Ganymed", "(1170) Siva", "(1727) Mette", "(1916) Boreas", "2004 RS109", "2008 RW24", "(2035) Stearns", "(323) Brucia", "(391) Ingeborg", "(4179) Toutatis", "(7088) Ishtar", "Multiple Asteroids", "(137032) 1998 UO1", "(137924) 2000 BD19", "(143678) 2003 SA224", "(143947) 2003 YQ117", "(144411) 2004 EW9", "(163000) 2001 SW169", "(21374) 1997 WS22", "(23183) 2000 OY21", "(391151) 2005 YY93", "(39572) 1993 DQ1", "(446791) 1998 SJ70", "(66063) 1998 RO1", "(68950) 2002 QF15", "(85709) 1998 SG36", "(85713) 1998 SS49", "(87684) 2000 SY2"], "instruments": ["SpeX", "Infrared Telescope Facility"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "2001-09-29", "stop_date": "2008-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/collection_ast_spectra_reddy_neos_marscrossers_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/data/collection_ast_spectra_reddy_neos_marscrossers_data.xml", "scraped_at": "2026-02-25T20:02:10.753302Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ast_spectra_reddy_neos_marscrossers:document::1.0", "title": "document collection for the \"REDDY NEAR-EARTH AND MARS-CROSSING ASTEROIDS\" bundle", "description": "This is the document collection for the ast_spectra_reddy_neos_marscrossers bundle. This data set contains low-resolution (R~150) near-infrared (0.7-2.5 microns) spectra of 27 asteroids, 5 Mars-crossing and 22 near-Earth asteroids, observed with the SpeX instrument on the NASA Infrared Telescope Facility (IRTF) on Mauna Kea, Hawai'i. This data set archives reduced, calibrated spectra of targets of opportunity observed from 2001 to 2008.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1036) Ganymed", "(1170) Siva", "(1727) Mette", "(1916) Boreas", "2004 RS109", "2008 RW24", "(2035) Stearns", "(323) Brucia", "(391) Ingeborg", "(4179) Toutatis", "(7088) Ishtar", "Multiple Asteroids", "(137032) 1998 UO1", "(137924) 2000 BD19", "(143678) 2003 SA224", "(143947) 2003 YQ117", "(144411) 2004 EW9", "(163000) 2001 SW169", "(21374) 1997 WS22", "(23183) 2000 OY21", "(391151) 2005 YY93", "(39572) 1993 DQ1", "(446791) 1998 SJ70", "(66063) 1998 RO1", "(68950) 2002 QF15", "(85709) 1998 SG36", "(85713) 1998 SS49", "(87684) 2000 SY2"], "instruments": ["SpeX", "Infrared Telescope Facility"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "2001-09-29", "stop_date": "2008-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/collection_ast_spectra_reddy_neos_marscrossers_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/ast_spectra_reddy_neos_marscrossers_V1_0/document/collection_ast_spectra_reddy_neos_marscrossers_document.xml", "scraped_at": "2026-02-25T20:02:10.753308Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:saturn_satellite_shape_models:document::1.0", "title": "Saturn Small Moon Shape Models V1.0", "description": "Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-huygens"], "targets": ["Saturn XVI (Prometheus)", "Saturn XV (Atlas)", "Saturn XIV (Calypso)", "PAN", "PANDORA", "EPIMETHEUS", "Saturn VII (Hyperion)", "Saturn XXXV (Daphnis)", "Saturn X (Janus)", "Saturn XII (Helene)", "Saturn XIII (Telesto)"], "instruments": ["Imaging Science Subsystem - Narrow Angle"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/collection_saturn_satellite_shape_models_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/document/collection_saturn_satellite_shape_models_document.xml", "scraped_at": "2026-02-25T20:02:10.753312Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:saturn_satellite_shape_models:data::1.0", "title": "Saturn Small Moon Shape Models V1.0", "description": "Digital shape models have been constructed from Cassini Imaging Science Subsystem (ISS) data for eleven of the small satellites of Saturn and delivered to the Planetary Data System. These satellites are: Pan, Daphnis, Atlas, Prometheus, Pandora, Epimetheus, Janus, Telesto, Calypso, Helene, and Hyperion. These models typically have uncertainties well under 0.5 km. They are appropriate for global geometric, geologic, and geophysical studies, and regional slope and topography study. They are useful in studying morphologies of only the relatively largest-sized craters. Studies based on early versions of these shape models are in Thomas et al., 2013", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-huygens"], "targets": ["Saturn XVI (Prometheus)", "Saturn XV (Atlas)", "Saturn XIV (Calypso)", "PAN", "PANDORA", "EPIMETHEUS", "Saturn VII (Hyperion)", "Saturn XXXV (Daphnis)", "Saturn X (Janus)", "Saturn XII (Helene)", "Saturn XIII (Telesto)"], "instruments": ["Imaging Science Subsystem - Narrow Angle"], "instrument_hosts": ["Cassini Orbiter"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/collection_saturn_satellite_shape_models_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/saturn_satellite_shape_models_V1_0/data/collection_saturn_satellite_shape_models_data.xml", "scraped_at": "2026-02-25T20:02:10.753319Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:epoxi_mri:hartley2_photometry::1.0", "title": "EPOXI MRI-VIS 103P/Hartley 2 Encounter Photometry Collection", "description": "We perform photometric measurements of comet 103P/Hartley 2 using images taken through the CLEAR1 (broadband, 200-1100 nm), CN (387 nm), OH (309 nm), C2 (514 nm), and two continuum filters (Ultraviolet at 345 nm and Green at 526 nm) of the Medium Resolution Instrument (MRI) on board the Deep Impact flyby spacecraft from 1 October to 26 November 2010 during the EPOXI mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["EPOXI"], "targets": ["103P/HARTLEY 2 (1986 E2)"], "instruments": ["DEEP IMPACT MEDIUM RESOLUTION INSTRUMENT - VISIBLE CCD"], "instrument_hosts": ["DEEP IMPACT FLYBY SPACECRAFT"], "data_types": ["Data"], "start_date": "2010-10-01", "stop_date": "2010-11-26", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-epoxi_mri-v1.0/hartley2_photometry/collection.xml", "scraped_at": "2026-02-25T20:02:10.753870Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil-comet:halebopp::1.0", "title": "Hale-Bopp Visual Lightcurve", "description": "This dataset contains visual magnitudes of comet C/1995 O1 (Hale-Bopp) that were obtained from the International Comet Quarterly and processed to provide a secular lightcurve from -7 au (pre-perihelion) to +8 au (post-perihelion). The original apparent magnitudes from 17 observers were corrected for geocentric distance and phase angle, and then combined in a systematic way that yielded a self-consistent consensus fit. In analyzing visual data from multiple observers, the questions inevitably arise of which data to reject, and under what justification, and whether combining data from observers, each with their own systematic errors, leads to a biased result. Without instrumental calibration, there is no certain answer to these questions, and such calibration is not available for the observations discussed here. We estimated the shifts with a self-consistent statistical approach, leading to a sharper light curve and improving the precision of the measured slopes. The dataset includes the original apparent magnitudes, those corrected for geocentric distance and phase angle, and the final shifted and weighted values. The final secular lightcurve is the best produced to date for comet Hale-Bopp.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["C/1995 O1 (HALE-BOPP)"], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1995-07-24", "stop_date": "1999-09-23", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/halebopp/collection.xml", "scraped_at": "2026-02-25T20:02:10.753893Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil-comet:polarimetry::1.0", "title": "Compilation of Comet Polarimetry from Published and Unpublished Sources", "description": "This collection presents comet polarimetry results collected and tabulated from both published literature and unpublished sources.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Comets"], "instruments": ["Compilation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1881-06-29", "stop_date": "2016-10-19", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/polarimetry/collection.xml", "scraped_at": "2026-02-25T20:02:10.753898Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil-comet:unid-emis::1.0", "title": "Catalog of Unidentified Cometary Emission Lines", "description": "This data set contains tables of unidentified spectral emission lines and other ancillary information in a variety of comet observations. All these originally unidentified lines have been taken from the reference papers without adding or removing lines or using selection criteria.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1943-02-24", "stop_date": "2004-04-24", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/unid-emis/collection.xml", "scraped_at": "2026-02-25T20:02:10.753901Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil-comet:lightcurves::1.0", "title": "Survey of Comet Lightcurves (PDS4 Format)", "description": "This is a dataset that compiles reported observations of brightness changes in comets from various papers to produce lightcurves. Specifically, the data were based on references in Samarasinha et al. (2004), i.e. they are those lightcurves which were used to find the rotational properties of comet nuclei (periods, rotation vector coordinates, spin mode, etc.) reported by Samarasinha et al. (2004). These data were migrated from the PDS3 dataset EAR-C-COMPIL-5-LIGHTCURVES-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": ["Multiple Comets"], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1957-07-28", "stop_date": "1957-07-28", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/lightcurves/collection.xml", "scraped_at": "2026-02-25T20:02:10.753904Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil-comet:phys_char::1.0", "title": "Physical Charecteristics of Comets (PDS4 Format)", "description": "This dataset is a compilation of observational measurements on comet morphology and magnitude covering just over a thousand apparitions of various comets from -466 to 1975. These data were migrated from the PDS3 dataset EAR-C-5-DDR-PCC-V1.0. For migration, the data files were left untouched and the information in the PDS3 labels was translated into PDS4 format and augmented with additional metadata; the reference list file was converted to a document product; and the PDS3 data set catalog file was edited and updated to create the description document.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": null, "stop_date": "1975-01-01", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/phys_char/collection.xml", "scraped_at": "2026-02-25T20:02:10.753912Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil-comet:nuc_properties::1.0", "title": "Properties of Comet Nuclei (PDS4 Format)", "description": "This collection contains size, shape, albedo and color data for various comets collected from the literature. These data were migrated from the PDS3 dataset EAR-C-COMPIL-5-COMET-NUC-PROPERTIES-V2.0, Properties of Comet Nuclei.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": "2010-08-01", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_properties/collection.xml", "scraped_at": "2026-02-25T20:02:10.753916Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil-comet:nuc_rotation::1.0", "title": "Rotation of Comet Nuclei: Table 1 (PDS4 Format)", "description": "This collection presents Table 1 of Samarasinha, et al. (2004): 'Information on spin states of specific comets', as published in 'Comets II' (Festou, Keller and Weaver, eds.). These data were migrated from the PDS3 dataset and EAR-C-COMPIL-5-COMET-NUC-ROTATION-V1.0, Rotation of Comet Nuclei: Table 1.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-compil-comet-v1.0/nuc_rotation/collection.xml", "scraped_at": "2026-02-25T20:02:10.753919Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:spitzer:spitzer-spec-comet::1.0", "title": "Spitzer Space Telescope Spectroscopy of Comets", "description": "We present spectra of comets observed with the Infrared Spectrograph (IRS) on the Spitzer Space Telescope. The observations are based on a select set of comets with high-quality data, reduced using a uniform approach. We summarize the observations, and detail our reduction methodology. Additional details on the calibration of cometary sources with the IRS instrument are also given, and plots of all spectra are included for reference.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Spitzer Space Telescope"], "targets": ["6P/1851 M1 (d'Arrest 1)", "9P/1867 G1 (Tempel 1)", "8P/1858 A1 (Tuttle 1)", "17P/1892 V1 (Holmes 1)", "21P/1900 Y1 (Giacobini-Zinner 1)", "29P/1927 V1 (Schwassmann-Wachmann 1)", "37P/1929 P1 (Forbes 1)", "41P/1951 H1 (Tuttle-Giacobini-Kresak 1)", "46P/1948 A1 (Wirtanen 1)", "48P/1949 Q1 (Johnson 1)", "62P/1965 A1 (Tsuchinshan 1)", "65P/1970 U2 (Gunn)", "67P/1969 R1 (Churyumov-Gerasimenko 1)", "71P/1973 L1 (Clark 1)", "73P/1930 J1-B (Schwassmann-Wachmann 3 B)", "73P/1930 J1-C (Schwassmann-Wachmann 3 C)", "78P/1973 S1 (Geherls 2)", "88P/1981 Q1 (Howell 1)", "105P/1986 J1 (Singer Brewster 1)", "121P/1989 E2 (Shoemaker-Holt 2)", "123P/1989 E3 (West-Hartley 1)", "132P/1989 U1 (Helin-Roman-Alu 2)", "144P/1994 A1 (Kushida 1)", "C/2001 Q4 (NEAT)", "C/2003 K4 (LINEAR)", "C/2003 T3 (Tabur)", "C/2003 T4 (LINEAR)", "C/2004 B1 (LINEAR)", "C/2004 Q2 (Machholz)", "C/2006 P1 (McNaught)", "C/2006 Q1 (McNaught)", "C/2007 N3 (Lulin)", "C/2008 T2 (Cardinal)"], "instruments": ["Infrared Spectrograph (IRS)"], "instrument_hosts": ["Spitzer Space Telescope"], "data_types": ["Data"], "start_date": "2003-11-23", "stop_date": "2009-04-04", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-spitzer-v1.0/spitzer-spec-comet/collection.xml", "scraped_at": "2026-02-25T20:02:10.753988Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-ctio:cfccd-19p::1.0", "title": "CTIO Images of 19P/Borrelly with Photometry (PDS4 Format)", "description": "This collection contains images of the Deep Space 1 target, comet 19P/Borrelly, and derived photometry from five consecutive nights of observing over 28 July - 1 August 2000. The observations were made using the 1.5m telescope of the Cerro Tololo Interamerican Observatory using the CFCCD camera mounted at the f/7.5 focus. The detector used was a Tek2K, yielding a plate scale of 0.4334 arcseconds/pixel. These data were migrated from the PDS3 dataset EAR-C-CFCCD-5-RDR-CTIO-BORR-PHOTOM-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["19P/1904 Y2 (Borrelly 1)"], "instruments": ["1.5-m Ritchey-Chretien Cassegrain reflector", "Cassegrain Focus Direct Image CCD Camera"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "2000-07-28", "stop_date": "2000-08-01", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-ctio-v1.0/cfccd-19p/collection.xml", "scraped_at": "2026-02-25T20:02:10.753992Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-c2012_s1_ison:feb2013_hfosc_fosc::1.0", "title": "Comet ISON February 2013 HFOSC and FOSC Observations Collection", "description": "This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in February 2013. Imaging data were acquired on February 19, 21 and 22 in R and I Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO), Hanle, Leh, of the Indian Institute of Astrophysics (IIA). Spectroscopic data were taken on February 09 using the Faint Object Spectrograph and Camera (FOSC) mounted on the 40-inch telescope (T40) of the Wise Observatory of the Tel-Aviv University, Israel. Spectroscopic data provides coverage from 380 to 730 nm.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["C/ISON (2012 S1)"], "instruments": ["Himalayan Chandra Telescope (HCT)", "Hanle Faint Object Spectrograph and Camera (HFOSC)", "One Meter Telescope", "Faint Object Spectrographic Camera"], "instrument_hosts": ["Indian Astronomical Observatory (IAO)", "Wise Observatory"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/feb2013_hfosc_fosc/collection.xml", "scraped_at": "2026-02-25T20:02:10.753997Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-c2012_s1_ison:hfosc_solar-analog::1.0", "title": "Comet ISON 2014 Solar Analog Spectroscopy Collection", "description": "This dataset contains raw, processed and derived spectroscopic data of the solar analog star HD195034 taken on May 31, 2014, using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectroscopic data provides coverage from 380 to 830 nm. The manual of the HFOSC instrument is included.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["HD 195034"], "instruments": ["Himalayan Chandra Telescope (HCT)", "Hanle Faint Object Spectrograph and Camera (HFOSC)"], "instrument_hosts": ["Indian Astronomical Observatory (IAO)"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/hfosc_solar-analog/collection.xml", "scraped_at": "2026-02-25T20:02:10.754001Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-c2012_s1_ison:jan2013_hfosc::1.0", "title": "Comet ISON January 2013 HFOSC Observations Collection", "description": "This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken on January 22, 2013, using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2-m Himalayan Chandra Telescope (HCT), Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Photometric data were taken in V, R and I Bessel bands, and images were aligned. Spectroscopic data provides coverage from 380 to 830 nm. The manual of the HFOSC instrument is included.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["C/ISON (2012 S1)"], "instruments": ["Himalayan Chandra Telescope (HCT)", "Hanle Faint Object Spectrograph and Camera (HFOSC)"], "instrument_hosts": ["Indian Astronomical Observatory (IAO)"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/jan2013_hfosc/collection.xml", "scraped_at": "2026-02-25T20:02:10.754005Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-c2012_s1_ison:may2013_hfosc_omr::1.0", "title": "Comet ISON May 2013 HFOSC and OMR Observations Collection", "description": "This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in May 2013. Photometric data was obtained on May 01 and 04 in V and R Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectra were taken using the HFOSC instrument on May 01 and 15; and on May 02 using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 380 to 900 nm.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["C/ISON (2012 S1)"], "instruments": ["Himalayan Chandra Telescope (HCT)", "Hanle Faint Object Spectrograph and Camera (HFOSC)", "2.34-m VBT Telescope", "OMR Spectrograph"], "instrument_hosts": ["Indian Astronomical Observatory (IAO)", "Vainu Bappu Observatory"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/may2013_hfosc_omr/collection.xml", "scraped_at": "2026-02-25T20:02:10.754009Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-c2012_s1_ison:nov2013_hfosc_omr::1.0", "title": "Comet ISON November 2013 HFOSC and OMR Observations Collection", "description": "This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON), taken in November 2013. Two images of the comet were obtained on November 10 in R Bessel band using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Comet spectra were taken on five dates: November 08, 09, 11, 12 and 13, using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 400 to 900 nm.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["C/ISON (2012 S1)"], "instruments": ["Himalayan Chandra Telescope (HCT)", "Hanle Faint Object Spectrograph and Camera (HFOSC)", "2.34-m VBT Telescope", "OMR Spectrograph"], "instrument_hosts": ["Indian Astronomical Observatory (IAO)", "Vainu Bappu Observatory"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/nov2013_hfosc_omr/collection.xml", "scraped_at": "2026-02-25T20:02:10.754014Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-c2012_s1_ison:oct2013_hfosc_omr::1.0", "title": "Comet ISON October 2013 HFOSC and OMR Observations Collection", "description": "This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in October 2013. Photometric data was obtained on October 01 in B and R Bessel bands using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh. Spectra were taken on October 01 using the HFOSC instrument; and on October 17 using the medium-resolution spectrograph from Optomechanics Research (OMR) mounted on the 2.34-m Vainu Bappu Telescope (VBT) of the Vainu Bappu Observatory (VBO) of the IIA, located at Kavalur, Tamil Nadu, India. Spectroscopic data provides coverage from 380 to 900 nm.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["C/ISON (2012 S1)"], "instruments": ["Himalayan Chandra Telescope (HCT)", "Hanle Faint Object Spectrograph and Camera (HFOSC)", "2.34-m VBT Telescope", "OMR Spectrograph"], "instrument_hosts": ["Indian Astronomical Observatory (IAO)", "Vainu Bappu Observatory"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/oct2013_hfosc_omr/collection.xml", "scraped_at": "2026-02-25T20:02:10.754018Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-c2012_s1_ison:sept2013_hfosc::1.0", "title": "Comet ISON September 2013 HFOSC Observations Collection", "description": "This dataset contains raw, processed and derived imaging and spectroscopic data of comet C/2012 S1 (ISON) taken in September 2013 using the Himalayan Faint Object Spectrograph and Camera (HFOSC) mounted on the 2.0-m HCT of the Indian Astrophysical Observatory (IAO) of the Indian Institute of Astrophysics (IIA), located at 4500 m above sea level, Hanle, Leh, Ladakh, India. Photometric data was obtained on September 08 in I Bessel band. Spectroscopic data was obtained on September 29 and provides coverage from 380 to 730 nm.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["C/ISON (2012 S1)"], "instruments": ["Himalayan Chandra Telescope (HCT)", "Hanle Faint Object Spectrograph and Camera (HFOSC)"], "instrument_hosts": ["Indian Astronomical Observatory (IAO)"], "data_types": ["Data"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-c2012_s1_ison-v1.0/sept2013_hfosc/collection.xml", "scraped_at": "2026-02-25T20:02:10.754021Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-irtf:nirimg-9p::1.0", "title": "IRTF Near-IR Imaging of Comet 9P/Tempel 1 during Deep Impact Encounter", "description": "Near-IR images of Comet 9P/Tempel 1 were obtained at the NASA IRTF during the period from June 24 through July 17, 2005 UT. These observations were taken as part of a campaign designed to support the science objectives of the Deep Impact spacecraft around the time of its encounter with Tempel 1. This data set contains all raw images, including those required for reduction and photometric calibration of the comet observations. These data were migrated from the PDS3 dataset DI/EAR-C-I0046-2-IRTF-NIRIMG-TMPL1-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["9P/1867 G1 (Tempel 1)"], "instruments": ["IRTF 3.0-Meter Telescope", "SpeX"], "instrument_hosts": ["NASA Infrared Telescope Facility"], "data_types": ["Data"], "start_date": "2005-06-24", "stop_date": "2005-07-17", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/nirimg-9p/collection.xml", "scraped_at": "2026-02-25T20:02:10.754374Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-irtf:mirsi-9p::1.0", "title": "IRTF Mid-IR Imaging of Comet 9P/Tempel 1 (PDS4 Format)", "description": "Mid-IR images of Comet 9P/Tempel 1 were obtained at the NASA IRTF during the period from July 2-18, 2005 UT. These observations were taken as part of a campaign designed to support the science objectives of the Deep Impact spacecraft around the time of its encounter with Tempel 1. This data set contains all raw images, including those required for reduction and photometric calibration of the comet observations. These data were migrated from the PDS3 dataset DI/EAR-C-I0071-2-IRTF-MIR-TMPL1-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["9P/1867 G1 (Tempel 1)"], "instruments": ["IRTF 3.0-Meter Telescope", "Mid-Infrared Spectrometer and Imager"], "instrument_hosts": ["NASA Infrared Telescope Facility"], "data_types": ["Data"], "start_date": "2005-07-02", "stop_date": "2005-07-18", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-irtf-v1.0/mirsi-9p/collection.xml", "scraped_at": "2026-02-25T20:02:10.754378Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-mcdonald:19p_col_density::1.0", "title": "McDonald Observatory Column Density Observations of 19P/Borrelly (PDS4 Format)", "description": "This data set includes the raw column densities of several gas species observed in the spectra of comet Borrelly, as a function of position in the coma. All measurements were made with the 2.7-m Harlan J Smith Telescope at McDonald Observatory. During the 1981 and 1987-1988 apparitions, the data were obtained with the Intensified Dissector Scanner (IDS), and during the 1994 apparition, the data were obtained with the Large Cassegrain Spectrograph (LCS). These data were migrated from the PDS3 dataset EAR-C-IDS/LCS-3-RDR-BORRELLY-MCDNLD-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["19P/1904 Y2 (Borrelly 1)"], "instruments": ["2.7m Telescope", "Image Dissector Scanner", "Large Cassegrain Spectrograph"], "instrument_hosts": ["McDonald Observatory"], "data_types": ["Data"], "start_date": "1981-01-03", "stop_date": "1994-12-06", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/19p_col_density/collection.xml", "scraped_at": "2026-02-25T20:02:10.754382Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-mcdonald:devico_atlas::1.0", "title": "High Spectral Resolution Atlas of Comet 122P/deVico (PDS4 Format)", "description": "This collection presents an atlas of 12,219 identified and 4,055 unidentified spectral lines from high resolution spectra of comet 122P/deVico. The spectra were obtained at the McDonald Observatory using the 2D Coude cross-dispersed echelle spectrograph (CS2) at the Coude f/32.5 focus of the 2.7m Harlan J. Smith telescope. These data were migrated from the PDS3 dataset EAR-C-CS2-5-RDR-DEVICO-ATLAS-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["122P/1846 D1 (de Vico 1)"], "instruments": ["2.7m Telescope"], "instrument_hosts": ["McDonald Observatory"], "data_types": ["Data"], "start_date": "1995-10-03", "stop_date": "1995-10-04", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/devico_atlas/collection.xml", "scraped_at": "2026-02-25T20:02:10.754386Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-mcdonald:faint_comet_survey::1.0", "title": "McDonald Observatory Faint Comet Spectro-Photometric Survey (PDS4 Format)", "description": "This study presents spectral data from 152 observations of 17 comets obtained using an Intensified Dissector Scanner spectrograph at the McDonald Observatory. A full description of these data and the reduction process, along with Haser model production rates can be found in Cochran et al. (1992). These data were migrated from the PDS3 dataset EAR-C-MCDIDS-3-RDR-MCDNLD-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Comets"], "instruments": ["2.7m Telescope", "Image Dissector Scanner"], "instrument_hosts": ["McDonald Observatory"], "data_types": ["Data"], "start_date": "1981-08-25", "stop_date": "1989-05-08", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/faint_comet_survey/collection.xml", "scraped_at": "2026-02-25T20:02:10.754390Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-mcdonald:igi-19p::1.0", "title": "McDonald Observatory Images of Comet 19P/Borrelly (PDS4 Format)", "description": "Images of comet 19P/Borrelly obtained at the McDonald Observatory with the Imaging Grism Instrument on five observing runs during the 2001 apparition. These data were migrated from the PDS3 dataset EAR-C-IGI-3-EDR-BORRELLY-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["19P/1904 Y2 (Borrelly 1)"], "instruments": ["2.7m Harlan J. Smith telescope", "2.1m Otto Struve telescope", "Imaging Grism Instrument"], "instrument_hosts": ["McDonald Observatory"], "data_types": ["Data"], "start_date": "2001-09-21", "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/igi-19p/collection.xml", "scraped_at": "2026-02-25T20:02:10.754394Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-mcdonald:lcs-9p::1.0", "title": "McDonald Observatory 9P/Tempel 1 Spectral Observations (PDS4 Format)", "description": "We report on low-spectral resolution observations of comet 9P/Tempel 1 from 1983, 1989, 1994 and 2005 using the 2.7m Harlan J. Smith telescope of McDonald Observatory. This comet was the target of NASA's Deep Impact mission and our observations allowed us to characterize the comet prior to the impact. In the published paper, we showed that the comet decreased in gas production from 1983 to 2005, with the decrease being different factors for different species. OH decreased by a factor 2.7, NH by 1.7, CN by 1.6, C3 by 1.8, CH by 1.4 and C2 by 1.3. Despite the decrease in overall gas production and these slightly different decrease factors, we found that the ratios of the gas production rates of OH, NH, C3, CH and C2 that of CN were constant over all of the apparitions. We saw no change in the production rate ratios after the impact. We found that the peak gas production occurred about two months prior to perihelion. This data set represents the integrated fluxes and column densities, mentioned in the published paper, which were used to derive the production rates in the paper. These data were migrated from the PDS3 dataset EAR-C-LCS-5-9PTMPL1-SPECTRA-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["9P/1867 G1 (Tempel 1)"], "instruments": ["2.7m Telescope", "Large Cassegrain Spectrometer"], "instrument_hosts": ["McDonald Observatory"], "data_types": ["Data"], "start_date": "1989-07-01", "stop_date": "2005-07-06", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-mcdonald-v1.0/lcs-9p/collection.xml", "scraped_at": "2026-02-25T20:02:10.754398Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-kpno:document::1.0", "title": "Kitt Peak National Observatory - Documentation Collection", "description": "This collection contains documents describing the facilities, instrumentation, and common procedures relevant to data taken at the Kitt Peak National Observatory (KPNO).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/document/collection.xml", "scraped_at": "2026-02-25T20:02:10.754401Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-kpno:hyakutake_spectra::1.0", "title": "Spectra of C/1996 B2 (Hyakutake) for Multiple Offsets from Photocenter", "description": "High resolution spectra of comet Hyakutake obtained at Kitt Peak National Observatory on the day of closest approach, 26 March 1996, with the echelle spectrograph on the 4m Mayall Telescope. There are spectra for offsets of 0, 2, 7, and 10 arcsec sunward from the photocenter. The wavelength ranges from 3040-4500 Angstroms.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": ["C/1996 B2 (Hyakutake)"], "instruments": ["4m Mayall Telescope", "Echelle Spectrograph"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Data"], "start_date": "1996-03-26", "stop_date": "1996-03-26", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/hyakutake_spectra/collection.xml", "scraped_at": "2026-02-25T20:02:10.754405Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-kpno:image-19p::1.0", "title": "KPNO Images of Comet 19P/Borrelly from 21-23 Sep 2001 (PDS4 Format)", "description": "The data set consists of ground-based images of comet 19P/Borrelly in the R filter taken at the Kitt Peak 2.1m for three nights from September 21-23, 2001, bracketing the Deep Space 1 encounter. Raw, as well as reduced images are included. These data were migrated from the PDS3 dataset EAR-C-I0065-2-IMGBORRELLYKPNO-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["19P/1904 Y2 (Borrelly 1)", "PG0231+051", "PG2213-006"], "instruments": ["2.13-m Corning Cassegrain/Coude reflector", "T2KA Imager"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Data"], "start_date": "2001-09-20", "stop_date": "2001-09-23", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-19p/collection.xml", "scraped_at": "2026-02-25T20:02:10.754409Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-kpno:image-9p::1.0", "title": "KPNO Images of Comet 9P/Tempel 1 from February to June 2005", "description": "The data set consists of raw and reduced ground-based images of comet 9P/Tempel 1 in the broadband R and narrowband HB filters taken at the Kitt Peak 2.1m telescope from February to June 2005 prior to the Deep Impact encounter. These data were migrated from the PDS3 dataset EAR-C-I0065/I1084-3-IMGTEMPEL1KPNO-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["9P/1867 G1 (Tempel 1)"], "instruments": ["2.13-m Corning Cassegrain/Coude reflector", "F3KB CCD Camera"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Data"], "start_date": "2005-02-01", "stop_date": "2005-06-07", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/image-9p/collection.xml", "scraped_at": "2026-02-25T20:02:10.754413Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-kpno:mosaic-9p::1.0", "title": "KPNO MOSAIC Images of 9P/Tempel 1 from 2005 Around the DI Encounter", "description": "The data set consists of ground-based images of comet 9P/Tempel 1 in the broadband R and narrowband HB filters taken at the Kitt Peak Mayall 4m telescope with the MOSAIC camera from July 2-9, 2005 around the Deep Impact encounter. These data were migrated from the PDS3 dataset EAR-C-I0655-2/3-MOSAICTEMPEL1-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["9P/1867 G1 (Tempel 1)"], "instruments": ["4-m Mayall Ritchey-Chretien equatorial reflector", "Kitt Peak Mosaic Camera"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Data"], "start_date": "2005-07-01", "stop_date": "2005-07-09", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/mosaic-9p/collection.xml", "scraped_at": "2026-02-25T20:02:10.754418Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo-kpno:nirimage-9p::1.0", "title": "KPNO Near-Infrared Images of Comet 9P/Tempel 1 during Deep Impact Encounter", "description": "This dataset contains raw and reduced near-infrared images of comet 9P/Tempel 1, the target of the Deep Impact mission. Images were obtained from UT July 2-9, 2005 by M. Knight, R. Swaters, and N. Samarasinha using the Simultaneous Quad Infrared Imaging Device at the KPNO 2.1-m telescope. Results are published in the paper 'Ground-based visible and near-IR observations of Comet 9P/Tempel 1 during the Deep Impact encounter' by Knight et al. 2007. These data were migrated from the PDS3 dataset DI/EAR-C-SQIID-3-9PNIRIMAGES-V1.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["9P/1867 G1 (Tempel 1)"], "instruments": ["2.13-m Corning Cassegrain/Coude reflector", "NOAO Simultaneous Quad Infrared Imaging Device"], "instrument_hosts": ["Kitt Peak National Observatory"], "data_types": ["Data"], "start_date": "2005-07-02", "stop_date": "2005-07-09", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-gbo-kpno-v1.0/nirimage-9p/collection.xml", "scraped_at": "2026-02-25T20:02:10.754421Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ro_derived:dfms_ts_abundance::1.0", "title": "Rosetta ROSINA DFMS Time Series Abundances", "description": "This collection contains time series abundance data files derived from observations made with the Rosetta Orbiter Spectrometer for Ion and Neutral Analysis (ROSINA) Double Focusing Mass Spectrometer (DFMS) instrument onboard the Rosetta spacecraft. The data in this collection span the comet encounter Prelanding through Extension 3 mission phases of the Rosetta mission to comet 67P/Churyumov-Gerasimenko.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["INTERNATIONAL ROSETTA MISSION"], "targets": ["67P/1969 R1 (Churyumov-Gerasimenko 1)"], "instruments": ["ROSETTA ORBITER SPECTROMETER FOR ION AND NEUTRAL ANALYSIS"], "instrument_hosts": ["Rosetta-orbiter"], "data_types": ["Data"], "start_date": "2014-09-01", "stop_date": "2016-09-05", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/collection.xml", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-ro_derived-v1.0/dfms_ts_abundance/collection.xml", "scraped_at": "2026-02-25T20:02:10.754857Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_mvic:calibration_files::1.0", "title": "Reference Files Used in Calibrating Data from the New Horizons Multispectral Visible Imaging Camera (MVIC)", "description": "This collection is a migration from PDS3 of the cumulative set of ancillary files (filter curves, reference spectra, etc.) used in calibrating the data sets delivered by the MVIC instrument over the course of the New Horizons primary and extended missions. Provenance, as far as it could be determined, is included in the label for each product.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/collection.lblx", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/calibration_files/collection.lblx", "scraped_at": "2026-02-25T20:02:10.754860Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_mvic:kem1_cal::1.0", "title": "New Horizons KEM1 Encounter Multispectral Visible Imaging Camera (MVIC) Partially Processed Data", "description": "This data set contains partially processed data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. The data includes functional tests and images during the approach and departure of Arrokoth. A look back at Pluto was also performed after the Arrokoth flyby. A Color Scan of Neptune and Uranus was done along with a Solar Star Calibration and Radiometric Calibration. These data were migrated from the PDS3 dataset: NH-A-MVIC-3-KEM1-V6.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission 1"], "targets": ["(486958) Arrokoth"], "instruments": ["Multispectral Visible Imaging Camera (MVIC)"], "instrument_hosts": ["New Horizons Spacecraft"], "data_types": ["Data"], "start_date": "2018-08-31", "stop_date": "2019-09-02", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/collection.lblx", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_cal/collection.lblx", "scraped_at": "2026-02-25T20:02:10.754864Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_mvic:kem1_raw::1.0", "title": "New Horizons KEM1 Encounter Multispectral Visible Imaging Camera (MVIC) Raw Data", "description": "This data set contains Raw data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. The data includes functional tests and images during the approach and departure of Arrokoth. A look back at Pluto was also performed after the Arrokoth flyby. A Color Scan of Neptune and Uranus was done along with a Solar Star Calibration and Radiometric Calibration. These data were migrated from the PDS3 dataset: NH-A-MVIC-2-KEM1-V6.0. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission 1"], "targets": ["(486958) Arrokoth"], "instruments": ["Multispectral Visible Imaging Camera (MVIC)"], "instrument_hosts": ["New Horizons Spacecraft"], "data_types": ["Data"], "start_date": "2018-08-31", "stop_date": "2019-09-02", "browse_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/", "download_url": null, "label_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/collection.lblx", "source_url": "https://pds-smallbodies.astro.umd.edu/holdings/pds4-nh_mvic-v1.0/kem1_raw/collection.lblx", "scraped_at": "2026-02-25T20:02:10.754868Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbl-classe:charon_exosphere::1.0", "title": "Center for Laboratory Astrophysics and Space Science Experiments (CLASSE) Charon Exospheric Simulation Data", "description": "This dataset includes exospheric simulations and laboratory data relevant to the Charon red polar region. The dataset provides predictions for methane accretion relative to Lyman-Alpha flux at Charon's winter polar region and the photolytic production of higher order hydrocarbons. We also provide infrared spectra of photolyzed films under conditions found at Charon's polar (high phi) and mid-latitude (low phi) regions.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Charon Laboratory Analog"], "instruments": ["Mordor (Ultra-high Vacuum) UHV System"], "instrument_hosts": ["CLASSE"], "data_types": ["Data"], "start_date": "2022-02-15", "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-gbl-classe:charon_exosphere-v1.0/collection.xml", "scraped_at": "2026-02-25T20:02:10.756571Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents:alice::1.0", "title": "New Horizons Documents for the Alice Ultraviolet Imaging Spectrograph Instrument", "description": "This collection contains documents applicable to the Alice Ultraviolet Imaging Spectrograph instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of this instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:alice-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758053Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents:swap::1.0", "title": "New Horizons Documents for the Solar Wind Around Pluto (SWAP) Instrument", "description": "This collection contains documents applicable to the Solar Wind Around Pluto (SWAP) instrument onboard the New Horizons spacecraft, such as documents describing the detector field of view, calibration techniques, and mission phase sequences of this instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:swap-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758137Z", "keywords": ["Solar wind", "Pluto", "Kuiper belt", "Asteroids", "Trans-Neptunian objects", "Flyby missions"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents:mission::2.0", "title": "New Horizons Mission Documents", "description": "This collection contains documents applicable to the entire New Horizons mission, such as the Interface Control Document (ICD), instrument descriptions, and trajectory information, among others.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission", "New Horizons Kuiper Belt Extended Mission 2"], "targets": [], "instruments": [], "instrument_hosts": ["New Horizons"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:mission-v2.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758141Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2:context::2.0", "title": "Hayabusa2 Mission: Context", "description": "This collection contains the context products applicable to the Hayabusa2 mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["CAM-H", "LIDAR", "NIRS3", "ONC", "SCI", "TIR", "DCAM3-A", "DCAM3-D", "MasCam", "MasMag", "MARA", "MicrOmega"], "instrument_hosts": ["Hayabusa2 Spacecraft", "DCAM3", "MASCOT", "MINERVA-II1 Rover-1a HIBOU", "MINERVA-II1 Rover-1b OWL", "MINERVA-II2 Rover-2 ULULA"], "data_types": ["Context"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/collection_context.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.758286Z", "keywords": ["Hayabusa2", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2:xml_schema::3.0", "title": "Hayabusa2 Mission: XML Schema", "description": "This collection contains the xml_schema prodcuts applicable to the Hayabusa2 mission as a whole; includes the mission dictionary.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["CAM-H", "LIDAR", "NIRS3", "ONC", "SCI", "TIR", "DCAM3-A", "DCAM3-D", "MasCam", "MasMag", "MARA", "MicrOmega"], "instrument_hosts": ["Hayabusa2 Spacecraft", "DCAM3", "MASCOT", "MINERVA-II1 Rover-1a HIBOU", "MINERVA-II1 Rover-1b OWL", "MINERVA-II2 Rover-2 ULULA"], "data_types": ["XML Schema"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/collection_xml_schema.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.758293Z", "keywords": ["Hayabusa2", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar:data_link_timing::1.0", "title": "Hayabusa2 LIDAR Partially Processed Laser Link Experiment Timing Data Collection", "description": "This collection contains the partially processed timing science data products of laser link experiment produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["Earth"], "instruments": ["LIght Detection And Ranging"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/collection_hyb2_lidar_data_link_timing.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_timing/collection_hyb2_lidar_data_link_timing.xml", "scraped_at": "2026-02-25T20:02:10.758298Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar:data_link_intensity::1.0", "title": "Hayabusa2 LIDAR Calibrated Laser Link Experiment Intensity Data Collection", "description": "This collection contains the calibrated intensity data product of laser link experiment produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["Earth"], "instruments": ["LIght Detection And Ranging"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/collection_hyb2_lidar_data_link_intensity.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_link_intensity/collection_hyb2_lidar_data_link_intensity.xml", "scraped_at": "2026-02-25T20:02:10.758304Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar:data_range::1.0", "title": "Hayabusa2 LIDAR Calibrated and Derived Range Data Collection", "description": "This collection contains the calibrated and the derived range data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["LIght Detection And Ranging"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/collection_hyb2_lidar_data_range.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_range/collection_hyb2_lidar_data_range.xml", "scraped_at": "2026-02-25T20:02:10.758309Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": "Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar:data_dust::1.0", "title": "Hayabusa2 LIDAR Calibrated and Derived Dust Count Data Collection", "description": "This collection contains the calibrated and the derived science dust data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Dust"], "instruments": ["LIght Detection And Ranging"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/collection_hyb2_lidar_data_dust.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_dust/collection_hyb2_lidar_data_dust.xml", "scraped_at": "2026-02-25T20:02:10.758314Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": "Calibrated | Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar:data_raw::1.0", "title": "Hayabusa2 LIDAR Raw Data Collection", "description": "This collection contains the raw data product produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["Earth"], "instruments": ["LIght Detection And Ranging"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/collection_hyb2_lidar_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar/data_raw/collection_hyb2_lidar_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.758319Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo_ast_fieber-beyer_spectra:data::2.0", "title": "Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0", "description": "The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer and archives reduced, calibrated spectra.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(495) Eulalia", "Multiple Asteroids", "(897) Lysistrata", "(6212) Franzthaler", "(1215) Boyer", "(292) Ludovica", "(2038) Bistro", "(329) Svea", "(248) Lameia", "(3637) O'Meara", "(198) Ampella", "(115) Thyra", "(335) Roberta", "(421) Zahringia", "(1064) Aethusa", "(162385) 2000 BM19", "(1644) Rafita", "(1772) Gagarin", "(1368) Numidia", "(1379) Lomonosowa", "(1722) Goffin", "(714) Ulula", "(556) Phyllis", "(6) Hebe", "(6649) Yokotatakao", "(797) Montana", "(46) Hestia", "(3066) McFadden", "(974) Lioba", "(1158) Luda", "(285263) 1998 QE2", "(481532) 2007 LE", "(695) Bella", "(19727) Allen", "(619) Triberga", "(3345) Tarkovskij", "(5676) Voltaire", "(355) Gabriella", "(3999) Aristarchus", "(623) Chimaera", "(1166) Sakuntala", "(518) Halawe", "(1391) Carelia", "(908) Buda", "(1854) Skvortsov", "(1607) Mavis", "(1587) Kahrstedt", "(3760) Poutanen", "(5129) Groom", "(652) Jubilatrix", "(1501) Baade", "(2497) Kulikovskij", "(1447) Utra", "(660) Crescentia", "(875) Nymphe", "(1960) Guisan", "(1018) Arnolda", "(787) Moskva", "(1036) Ganymed", "(354) Eleonora", "(879) Ricarda", "(2089) Cetacea", "(1358) Gaika"], "instruments": ["3.0-m NASA Infrared Telescope Facility (IRTF)", "SpeX"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Data"], "start_date": "2000-06-30", "stop_date": "2017-12-13", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/collection_gbo.ast.fieber-beyer.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/data/collection_gbo.ast.fieber-beyer.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.758327Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo_ast_fieber-beyer_spectra:document::2.0", "title": "Fieber-Beyer IRTF Mainbelt Asteroid Spectra V2.0", "description": "The data set contains observations obtained with the NASA IRTF SpeX instrument covering the 0.7 to 2.5 micron near-infrared portion of the spectrum. The data set archives reduced, calibrated spectra which were obtained by Sherry Fieber-Beyer and archives reduced, calibrated spectra.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(495) Eulalia", "Multiple Asteroids", "(897) Lysistrata", "(6212) Franzthaler", "(1215) Boyer", "(292) Ludovica", "(2038) Bistro", "(329) Svea", "(248) Lameia", "(3637) O'Meara", "(198) Ampella", "(115) Thyra", "(335) Roberta", "(421) Zahringia", "(1064) Aethusa", "(162385) 2000 BM19", "(1644) Rafita", "(1772) Gagarin", "(1368) Numidia", "(1379) Lomonosowa", "(1722) Goffin", "(714) Ulula", "(556) Phyllis", "(6) Hebe", "(6649) Yokotatakao", "(797) Montana", "(46) Hestia", "(3066) McFadden", "(974) Lioba", "(1158) Luda", "(285263) 1998 QE2", "(481532) 2007 LE", "(695) Bella", "(19727) Allen", "(619) Triberga", "(3345) Tarkovskij", "(5676) Voltaire", "(355) Gabriella", "(3999) Aristarchus", "(623) Chimaera", "(1166) Sakuntala", "(518) Halawe", "(1391) Carelia", "(908) Buda", "(1854) Skvortsov", "(1607) Mavis", "(1587) Kahrstedt", "(3760) Poutanen", "(5129) Groom", "(652) Jubilatrix", "(1501) Baade", "(2497) Kulikovskij", "(1447) Utra", "(660) Crescentia", "(875) Nymphe", "(1960) Guisan", "(1018) Arnolda", "(787) Moskva", "(1036) Ganymed", "(354) Eleonora", "(879) Ricarda", "(2089) Cetacea", "(1358) Gaika"], "instruments": ["3.0-m NASA Infrared Telescope Facility (IRTF)", "SpeX"], "instrument_hosts": ["Mauna Kea Observatory"], "data_types": ["Document"], "start_date": "2000-06-30", "stop_date": "2017-12-13", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/collection_gbo.ast.fieber-beyer.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.fieber-beyer.spectra_V2_0/document/collection_gbo.ast.fieber-beyer.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.758335Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents:ralph::2.0", "title": "New Horizons Documents for the Ralph Instrument Package", "description": "This collection contains documents applicable to the Ralph instrument package (housing both the MVIC and LEISA instruments) onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Multispectral Visible Imaging Camera Instrument (MVIC) for New Horizons", "Linear Etalon Imaging Spectral Array"], "instrument_hosts": ["New Horizons"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:ralph-v2.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758339Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.nirs:calibration::1.0", "title": "Hayabusa NIRS Calibration Files", "description": "This collection includes the calibration tables and calibration frames for Hayabusa NIRS", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": ["* alf Sco", "* alf Aur", "Area Light Source", "* alf Ori", "Sun", "Calibration Field", "Calibration Lamp", "Point Light Source"], "instruments": ["NEAR-INFRARED SPECTROMETER"], "instrument_hosts": ["HAYABUSA"], "data_types": ["Calibration"], "start_date": "2005-08-31", "stop_date": "2005-11-24", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/collection_hay.nirs_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/calibration/collection_hay.nirs_calibration.xml", "scraped_at": "2026-02-25T20:02:10.758343Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.nirs:data_calibrated::1.0", "title": "Hayabusa NIRS Calibrated Data", "description": "This data set includes the 111,226 calibrated spectra of asteroid 25143 Itokawa returned by the Near-Infrared Spectrometer (NIRS) instrument of the Hayabusa mission. The data cover the Itokawa encounter phases of the mission, from Aug. 31 through November 24, 2005.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": ["(25143) Itokawa"], "instruments": ["NEAR-INFRARED SPECTROMETER"], "instrument_hosts": ["HAYABUSA"], "data_types": ["Data"], "start_date": "2005-08-31", "stop_date": "2005-11-24", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/collection_hay.nirs_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_calibrated/collection_hay.nirs_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.758348Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.nirs:data_raw::1.0", "title": "Hayabusa NIRS Raw Data", "description": "This collection includes the 117,937 raw spectra returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The data cover the period from May 12, 2003 through November 24, 2005.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": ["Earth", "Mars", "Saturn", "Jupiter", "(25143) Itokawa", "Earth I (Moon)"], "instruments": ["NEAR-INFRARED SPECTROMETER"], "instrument_hosts": ["HAYABUSA"], "data_types": ["Data"], "start_date": "2005-08-31", "stop_date": "2005-11-24", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/collection_hay.nirs_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/data_raw/collection_hay.nirs_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.758352Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.nirs:document::1.0", "title": "Hayabusa NIRS Raw document collection", "description": "This collection includes the documents for the Hayabusa NIRS instrument data bundle. During the Hayabusa mission 117,937 raw spectra were returned by the Near-Infrared Spectrometer (NIRS) of the Hayabusa mission. The targets include the asteroid 25143 Itokawa as well as Earth, Moon, Mars, Jupiter, Saturn, stars, and calibration frames. The data cover the period from May 12, 2003 through November 24, 2005.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/collection_hay.nirs_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.nirs/document/collection_hay.nirs_document.xml", "scraped_at": "2026-02-25T20:02:10.758355Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents:rex::1.0", "title": "Documentation for the New Horizons Radio Science Experiment (REX)", "description": "This collection presents documentation and ancillary data tables specific to the Radio Science Experiment (REX) on the New Horizons Spacecraft. It covers both the primary New Horizons mission, as well as the first extended mission to the Kuiper Belt referred to as \"KEM1\".", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Radio Science Experiment"], "instrument_hosts": ["New Horizons"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:rex-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758359Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_leisa:calibration_files::1.0", "title": "Reference Files Used in Calibrating Data from the New Horizons Linear Etalon Imaging Spectral Array (LEISA)", "description": "This collection contains calibration files applicable to the LEISA instrument onboard the New Horizons spacecraft, used to process raw data into calibrated files.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Linear Etalon Imaging Spectral Array"], "instrument_hosts": ["New Horizons"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:calibration_files-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758363Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_leisa:kem1_cal::1.0", "title": "New Horizons Linear Etalon Imaging Spectral Array KEM1 Encounter Calibrated Data", "description": "This collection contains a set of calibrated images in .FIT format for the New Horizons Linear Etalong Imaging Spectral Array (LEISA) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-LEISA-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/20/2018 and 09/05/2019. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["(486958) Arrokoth"], "instruments": ["Linear Etalon Imaging Spectral Array"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-20", "stop_date": "2019-09-05", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758367Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_leisa:kem1_raw::1.0", "title": "New Horizons Linear Etalon Imaging Spectral Array KEM1 Encounter Raw Data", "description": "This collection contains a set of raw images in .FIT format for the New Horizons Linear Etalong Imaging Spectral Array (LEISA) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-LEISA-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/20/2018 and 09/05/2019. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["(486958) Arrokoth"], "instruments": ["Linear Etalon Imaging Spectral Array"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-20", "stop_date": "2019-09-05", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:kem1_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758370Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_sdc:calibration_files::1.0", "title": "Reference Files Used in Calibrating Data from the New Horizons Student Dust Counter (SDC) Instrument", "description": "This collection is a migration from PDS3 of the cumulative set of ancillary files (coefficient table, mean DN table and DN standard deviation table, calibration matrix) used in calibrating the data sets delivered by the Student Dust Counter (SDC) instrument over the course of the New Horizons primary and extended missions.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Student Dust Counter"], "instrument_hosts": ["New Horizons"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:calibration_files-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758375Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_sdc:kem1_cal::1.0", "title": "New Horizons Student Dust Counter (SDC) KEM1 Encounter Calibrated Data", "description": "This collection contains a set of calibrated tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SDC-3-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. This version includes Dust Counts from prior to, during, and after the Arrokoth Encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["Dust"], "instruments": ["Student Dust Counter"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-14", "stop_date": "2022-04-09", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758380Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_sdc:kem1_raw::1.0", "title": "New Horizons Student Dust Counter (SDC) KEM1 Encounter Raw Data", "description": "This collection contains a set of raw tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SDC-2-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. This version includes Dust Counts from prior to, during, and after the Arrokoth Encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["Dust"], "instruments": ["Student Dust Counter"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-14", "stop_date": "2022-04-09", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:kem1_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758383Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap:calibration_files::1.0", "title": "Reference Files Used in Calibrating Data from the New Horizons (NH) Solar Wind Around Pluto (SWAP) Electrostatic Instrument", "description": "This collection is a migration from PDS3 of the cumulative set of ancillary files (background, response functions, field of view mask, energy bins) used in calibrating the data sets delivered by the Solar Wind Around Pluto (SWAP) instrument over the course of the New Horizons (NH) primary and extended missions.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:calibration_files-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758387Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap:kem1_raw::1.0", "title": "New Horizons Solar Wind Around Pluto KEM1 Encounter Raw Data", "description": "This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["Solar Wind"], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-14", "stop_date": "2022-04-30", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758391Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap:kem1_data_summary_plots::1.0", "title": "New Horizons Kuiper Belt Extended Mission KEM1 Encounter Mission Phase Solar Wind Around Pluto Data Summary Plots", "description": "This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the first Kuiper Belt Extended Mission KEM1 Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["Solar Wind"], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Browse"], "start_date": "2018-08-14", "stop_date": "2022-04-24", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_data_summary_plots-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758394Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap:kem1_cal::1.0", "title": "New Horizons Solar Wind Around Pluto KEM1 Encounter Calibrated Data", "description": "This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 04/24/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The data includes SWAP observations and plasma rolls in the approach and departure of Arrokoth. A gain test was also performed. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["Solar Wind"], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-14", "stop_date": "2022-04-24", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:kem1_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758399Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_pepssi:kem1_raw::1.0", "title": "New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) KEM1 Encounter Raw Data", "description": "This data set contains Raw data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-PEPSSI-2-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/10/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. Data acquired after April 10, 2022 has been held back until the next dataset version because it was collected and downlinked with a new flight software version. The results and format have not been verified by the New Horizons science teams yet. This version includes observations from prior to, during, and after the ASTEROID 486958 Arrokoth (2014 MU69) encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["Solar Wind"], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-13", "stop_date": "2022-04-10", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758403Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:data_iof_coregistered::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Co-registered Radiance Factor (I/F) Data Collection", "description": "This collection contains the derived co-registered radiance factor (I/F) science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2drc product of Hayabusa2 ONC processing level.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/collection_hyb2_onc_data_iof_coregistered.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof_coregistered/collection_hyb2_onc_data_iof_coregistered.xml", "scraped_at": "2026-02-25T20:02:10.758408Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:geometry::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Geometry Collection", "description": "This collection contains the geometry data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2dbpc product of Hayabusa2 ONC processing level.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Geometry"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/collection_hyb2_onc_geometry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/geometry/collection_hyb2_onc_geometry.xml", "scraped_at": "2026-02-25T20:02:10.758413Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:data_partially_processed::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Partially Processed Data Collection", "description": "This collection contains the partially processed science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes Level 2b product of Hayabusa2 ONC processing level.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/collection_hyb2_onc_data_partially_processed.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_partially_processed/collection_hyb2_onc_data_partially_processed.xml", "scraped_at": "2026-02-25T20:02:10.758418Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:data_reflectance::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Reflectance Data Collection", "description": "This collection contains the derived reflectance science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2e product of Hayabusa2 ONC processing level.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/collection_hyb2_onc_data_reflectance.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance/collection_hyb2_onc_data_reflectance.xml", "scraped_at": "2026-02-25T20:02:10.758423Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:document::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Document Collection", "description": "This collection contains the documents applicable to Optical Navigation Camera (ONC) of the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/collection_hyb2_onc_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/document/collection_hyb2_onc_document.xml", "scraped_at": "2026-02-25T20:02:10.758427Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:data_calibrated::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Calibrated Data Collection", "description": "This collection contains the calibrated science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2c product of Hayabusa2 ONC processing level.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/collection_hyb2_onc_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_calibrated/collection_hyb2_onc_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.758432Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:browse::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Browse Collection", "description": "This collection contains the quick-look image products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Browse"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/collection_hyb2_onc_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/browse/collection_hyb2_onc_browse.xml", "scraped_at": "2026-02-25T20:02:10.758437Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:data_iof::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Radiance Factor (I/F) Data Collection", "description": "This collection contains the derived radiance factor (I/F) science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2d product of Hayabusa2 ONC processing level.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/collection_hyb2_onc_data_iof.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_iof/collection_hyb2_onc_data_iof.xml", "scraped_at": "2026-02-25T20:02:10.758441Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:calibration::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Calibration Collection", "description": "This collection contains the calibration data products for data produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Calibration"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/collection_hyb2_onc_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/calibration/collection_hyb2_onc_calibration.xml", "scraped_at": "2026-02-25T20:02:10.758446Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:data_reflectance_coregistered::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Co-registered Reflectance Data Collection", "description": "This collection contains the derived co-registered reflectance science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes L2erc product of Hayabusa2 ONC processing level.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/collection_hyb2_onc_data_reflectance_coregistered.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_reflectance_coregistered/collection_hyb2_onc_data_reflectance_coregistered.xml", "scraped_at": "2026-02-25T20:02:10.758452Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_onc:data_raw::1.0", "title": "Hayabusa2 Optical Navigation Camera (ONC) Raw Data Collection", "description": "This collection contains the raw science data products produced by Optical Navigation Camera (ONC) onboard the Hayabusa2 spacecraft. This product includes Level 2a product of Hayabusa2 ONC processing level.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu", "Earth", "Moon"], "instruments": ["Optical Navigation Camera (ONC)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/collection_hyb2_onc_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_onc/data_raw/collection_hyb2_onc_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.758456Z", "keywords": ["Hayabusa2", "ONC", "(162173) Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:pluto_albedo::1.0", "title": "Bolometric Hemispherical Albedo Map of Pluto from New Horizons Observations", "description": "Map of Pluto's incidence-angle-average bolometric hemispherical albedo (local energy-balance albedo, equal to one minus absorption). The map is based on analyses of New Horizons Long Range Reconnaissance Imager (LORRI) and Multispectral Visible Imaging Camera (MVIC) images of Pluto in 2015. Users are strongly encouraged to read the publication titled 'Bolometric Hemispherical Albedo Map of Pluto from New Horizons Observations' in the Planetary Science Journal by Hofgartner et al. in 2023.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(134340) Pluto"], "instruments": ["LONG RANGE RECONNAISSANCE IMAGER", "MULTISPECTRAL VISIBLE IMAGING CAMERA"], "instrument_hosts": ["NEW HORIZONS", "NEW HORIZONS"], "data_types": ["Data"], "start_date": "2015-07-08", "stop_date": "2015-07-14", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:pluto_albedo-v1.0/collection.xml", "scraped_at": "2026-02-25T20:02:10.758460Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:arrokoth_shapemodel_porter2024::1.0", "title": "New Horizons Porter (2024) Arrokoth Shape Model Collection", "description": "This collection contains a shape model of (486958) Arrokoth created by Simon Porter in 2024 using New Horizons LORRI data, as well as supporting products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["(486958) Arrokoth"], "instruments": ["LOng Range Reconnaissance Imager"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-12-31", "stop_date": "2024-01-01", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_shapemodel_porter2024-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758464Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mag:calibration::1.0", "title": "Collection of document products: Mascot MasMag", "description": "Collection of document products for the MASCOT Fluxgate Magnetometer.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MASMAG"], "instrument_hosts": ["MASCOT"], "data_types": ["Calibration"], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/collection_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.758469Z", "keywords": ["Hayabusa2", "MASCOT", "MASMAG", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mag:data::1.0", "title": "Collection of data products: Mascot MasMag", "description": "Collection of data products for the MASCOT Fluxgate Magnetometer.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MASMAG"], "instrument_hosts": ["MASCOT"], "data_types": ["Data"], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/collection_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.758475Z", "keywords": ["Hayabusa2", "MASCOT", "MASMAG", "(162173) Ryugu"], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mag:document::1.0", "title": "Collection of document products: Mascot MasMag", "description": "Collection of document products for the MASCOT Fluxgate Magnetometer.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MASMAG"], "instrument_hosts": ["MASCOT"], "data_types": ["Document"], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mag/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.758479Z", "keywords": ["Hayabusa2", "MASCOT", "MASMAG", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mara:calibration::1.0", "title": "Collection of document products: Mascot Mara", "description": "Collection of calibratiion files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MARA"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Calibration"], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/collection_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.758484Z", "keywords": ["MASCOT", "MARA", "Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mara:data_calibrated::1.0", "title": "Collection of calibrated products: Mascot Mara", "description": "Collection of calibrated data files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MARA"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Data"], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/collection_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_calibrated/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.758737Z", "keywords": ["MASCOT", "MARA", "Ryugu"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mara:data_hk::1.0", "title": "Collection of housekeeping products: Mascot Mara", "description": "Collection of housekeeping data files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MARA"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Data"], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/collection_data_hk.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_hk/collection_data_hk.xml", "scraped_at": "2026-02-25T20:02:10.758742Z", "keywords": ["MASCOT", "MARA", "Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mara:data_raw::1.0", "title": "Collection of raw products: Mascot Mara", "description": "Collection of raw data files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MARA"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Data"], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/collection_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.758746Z", "keywords": ["MASCOT", "MARA", "Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mara:document::1.0", "title": "Collection of document products: Mascot Mara", "description": "Collection of document files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MARA"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Document"], "start_date": "2018-10-02", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mara/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.758751Z", "keywords": ["MASCOT", "MARA", "Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mascam:calibration::1.0", "title": "Collection of calibration products: Mascot MasCAM", "description": "Collection of calibration files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MASCAM"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Calibration"], "start_date": "2018-10-03", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/collection_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/calibration/collection_calibration.xml", "scraped_at": "2026-02-25T20:02:10.758755Z", "keywords": ["MASCOT", "MasCAM", "Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mascam:data_calibrated::1.0", "title": "Collection of calibrated data products: Mascot MasCam", "description": "Collection of data files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MASCAM"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Data"], "start_date": "2018-10-03", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/collection_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_calibrated/collection_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.758759Z", "keywords": ["MASCOT", "MasCam", "Ryugu"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mascam:document::1.0", "title": "Collection of document products: Mascot MasCAM", "description": "Collection of document files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MASCAM"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Document"], "start_date": "2018-10-03", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.758764Z", "keywords": ["MASCOT", "MasCAM", "Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_mascot_mascam:data_raw::1.0", "title": "Collection of data products: Mascot MasCam", "description": "Collection of data files used in this archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2"], "targets": ["(162173) Ryugu"], "instruments": ["MASCAM"], "instrument_hosts": ["Hayabusa2", "MASCOT"], "data_types": ["Data"], "start_date": "2018-10-03", "stop_date": "2018-10-03", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/collection_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_mascot_mascam/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.758768Z", "keywords": ["MASCOT", "MasCam", "Ryugu"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_pepssi:kem1_cal::1.0", "title": "New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) KEM1 Encounter Calibrated Data", "description": "This data set contains Calibrated data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-PEPSSI-3-KEM1-V6.0. This version includes data acquired by the spacecraft between 08/14/2018 and 04/10/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. Data acquired after April 10, 2022 has been held back until the next dataset version because it was collected and downlinked with a new flight software version. The results and format have not been verified by the New Horizons science teams yet. This version includes observations from prior to, during, and after the ASTEROID 486958 Arrokoth (2014 MU69) encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["Solar Wind"], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-13", "stop_date": "2022-04-10", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:kem1_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758773Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_alice:kem1_raw::1.0", "title": "New Horizons Alice Ultraviolet Imaging Spectrograph KEM1 Encounter Raw Data", "description": "This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-ALICE-2-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 05/01/2022. All Alice data obtained before 05/01/2022 were fully successfully downlinked before that date. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["(486958) Arrokoth"], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-09-30", "stop_date": "2021-09-30", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.758778Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_shapemodel:document::1.0", "title": "Documentation Collection for the DART Shapemodel Archive Bundle", "description": "This documentation collection includes documentation describing the shape model derived data products and the DART impact locations corresponding to the Dimorphos shape models.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": [], "instruments": ["DRACO", "LUKE"], "instrument_hosts": ["DART", "LICIACube"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/collection_document.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:document-v1.0/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.758935Z", "keywords": ["DART"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_shapemodel:data_derived_didymos_model_v003::1.0", "title": "Derived data products for DART shapemodel: didymos_model_v003", "description": "This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for didymos_model_v003. It is the final model of Didymos produced by the DART project using both LICIACube and DART images. It has an accuracy uncertainty of ~14 m in x, y, and z, with ~ 3.3% volume uncertainty. See SIS for details on ancillary information provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": ["DRACO", "LUKE"], "instrument_hosts": ["DART", "LICIACube"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/collection_data_derived_didymos_model_v003.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_didymos_model_v003-v1.0/collection_data_derived_didymos_model_v003.xml", "scraped_at": "2026-02-25T20:02:10.758941Z", "keywords": ["DART"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v003::1.0", "title": "Derived data products for DART shapemodel: dimorphos_model_v003", "description": "This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for dimorphos_model_v003. To learn about the model including its quality, see 'Daly et al., 2023. \"Successful Kinetic Impact into an Asteroid for Planetary Defense.\" Nature 1\u20133. https://doi.org/10.1038/s41586-023-05810-5.\" See SIS for details on ancillary information provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["(65803) Didymos I (Dimorphos)"], "instruments": ["DRACO", "LUKE"], "instrument_hosts": ["DART", "LICIACube"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/collection_data_derived_dimorphos_model_v003.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v003-v1.0/collection_data_derived_dimorphos_model_v003.xml", "scraped_at": "2026-02-25T20:02:10.758946Z", "keywords": ["DART"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart_shapemodel:data_derived_dimorphos_model_v004::1.0", "title": "Derived data products for DART shapemodel: dimorphos_model_v004", "description": "This data collection contains a set of digital terrain maps and ancillary information (slope, magnitude of gravity, etc) for dimorphos_model_v004. This is the final pre-impact model of the asteroid Dimorphos produced by the DART project. It has an accuracy uncertainty of 1 m in x, 4 m in y, and 1 m in z, with ~ 5% volume uncertainty and shows significant improvement relative to the earlier dimorphos_model_v003. See SIS for details on ancillary information provided, including references on how the ancillary information is calculated.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["(65803) Didymos I (Dimorphos)"], "instruments": ["DRACO", "LUKE"], "instrument_hosts": ["DART", "LICIACube"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/collection_data_derived_dimorphos_model_v004.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart_shapemodel:data_derived_dimorphos_model_v004-v1.0/collection_data_derived_dimorphos_model_v004.xml", "scraped_at": "2026-02-25T20:02:10.758951Z", "keywords": ["DART"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart:document_rs::1.0", "title": "DART Radio Science Document Collection", "description": "The document_rs collection contains documentation describing the data collections that store radio science data from the Double Asteroid Redirection Test (DART) mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": [], "instruments": ["DART High Gain Antenna (HGA)"], "instrument_hosts": ["DART", "DSN"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/collection_document_rs.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_rs-v1.0/collection_document_rs.xml", "scraped_at": "2026-02-25T20:02:10.758967Z", "keywords": ["DART"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart:data_trk234::1.0", "title": "DART Radio Science Tracking and Navigation Files (TRK-2-34) Data Collection", "description": "The DART mission receives Tracking and Navigation Files (TRK-2-34) from the Deep Space Network (DSN) collected primarily from signals emitted by the high gain antenna (HGA) onboard the DART spacecraft. These are binary files of table data whose fields and format are described by the TRK-2-34 DSN Tracking System Data Archival Format document referenced in the DART Radio Science SIS. These files have been sorted by data record type, of which there are approximately 18. Both mission navigators and those working on radio science investigations use these data.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["(65803) Didymos I (Dimorphos)"], "instruments": ["DART High Gain Antenna (HGA)"], "instrument_hosts": ["DART", "DSN"], "data_types": ["Data"], "start_date": "2021-11-24", "stop_date": "2022-09-26", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/collection_data_trk234.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk234-v1.0/collection_data_trk234.xml", "scraped_at": "2026-02-25T20:02:10.758971Z", "keywords": ["DART"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart:data_trk223::1.0", "title": "DSN Media Calibration (TRK-2-23) Files for DART Data Collection", "description": "The DART mission receives Ionosphere Media Calibration Files (TRK-2-23) from the Deep Space Network (DSN) collected primarily from signals emitted by the high gain antenna (HGA) onboard the DART spacecraft. These are ASCII files that correspond to either Doppler and range data (indicated with 'dop') or Delta Differenced One-way Ranging (DDOR) data (indicated with 'vlb'). They are useful for compensating for media transmission effects on the propagation of radiometric signals. The format of these files is described in detail in the TRK-2-23 DSN Media Calibration Interface document that is referenced in the DART Radio Science SIS.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["(65803) Didymos I (Dimorphos)"], "instruments": ["DART High Gain Antenna (HGA)"], "instrument_hosts": ["DART", "DSN"], "data_types": ["Data"], "start_date": "2021-11-24", "stop_date": "2022-09-02", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/collection_data_trk223.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_trk223-v1.0/collection_data_trk223.xml", "scraped_at": "2026-02-25T20:02:10.758976Z", "keywords": ["DART"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart:data_maf::1.0", "title": "DART Maneuver Acceleration Files (MAF) Data Collection", "description": "The DART mission provides a small forces file, or Maneuver Acceleration File (MAF), that describes the thrusting undertaken by DART and aids in carrying out science associated with the DART radio science data. These files record the cumulative delta-v effect of attitude thruster firing over specified time periods. Estimates of mass loss due to usage are also included. The files are fixed-width column ASCII csv files containing a header and a table. Table header and table data descriptions can be found in the DART Radio Science SIS document.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["(65803) Didymos I (Dimorphos)"], "instruments": ["DART High Gain Antenna (HGA)"], "instrument_hosts": ["DART", "DSN"], "data_types": ["Data"], "start_date": "2021-11-24", "stop_date": "2022-09-26", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/collection_data_maf.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_maf-v1.0/collection_data_maf.xml", "scraped_at": "2026-02-25T20:02:10.758980Z", "keywords": ["DART"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart:data_dracoddp::1.0", "title": "Calibrated Images with Geometric Backplanes for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument", "description": "DART Spacecraft Bundle, Calibrated Images with Geometric Backplanes", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": ["DRACO"], "instrument_hosts": ["DART"], "data_types": ["Data"], "start_date": "2022-09-26", "stop_date": "2022-09-26", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/collection_data_dracoddp.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoddp-v1.0/collection_data_dracoddp.xml", "scraped_at": "2026-02-25T20:02:10.758984Z", "keywords": ["DART"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart:data_dracoraw::3.0", "title": "Raw Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument", "description": "This data collection contains the raw images returned by the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART) mission. These images have been put into a simple 2D FITS format ready for calibration and analysis. The DART mission was a planetary defense mission designed to test and measure the deflection caused by a kinetic impactor (the spacecraft) on the orbit of Dimorphos asteroid around its primary, (65803) Didymos.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": ["DRACO"], "instrument_hosts": ["DART"], "data_types": ["Data"], "start_date": "2021-12-02", "stop_date": "2022-09-26", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/collection_data_dracoraw.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracoraw-v3.0/collection_data_dracoraw.xml", "scraped_at": "2026-02-25T20:02:10.758997Z", "keywords": ["DART"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart:data_dracocal::3.0", "title": "Calibrated Images for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument", "description": "This data collection contains calibrated images from the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard the impactor spacecraft of NASA's Double Asteroid Redirection Test (DART) mission. These images have been calibrated to either radiance or reflectance, depending on the mission phase, and have been put into a simple 2D fits format. Ancillary files used in the calibration process are included in the data set as either 2D fits format or ASCII fixed-width table format. The DART mission was a planetary defense mission designed to test and measure the deflection caused by a kinetic impactor (the spacecraft) on the orbit of Dimorphos asteroid around its primary, (65803) Didymos.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": ["65803 Didymos"], "instruments": ["DRACO"], "instrument_hosts": ["DART"], "data_types": ["Data"], "start_date": "2021-01-01", "stop_date": "2022-09-26", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/collection_data_dracocal.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:data_dracocal-v3.0/collection_data_dracocal.xml", "scraped_at": "2026-02-25T20:02:10.759001Z", "keywords": ["DART"], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dart:document_draco::3.0", "title": "Documentation for the Didymos Reconnaissance and Asteroid Camera for OpNav (DRACO) instrument", "description": "This documentation collection includes documentation describing the raw, and calibrated data collections from the Didymos Reconnaissance and Asteroid Camera for Optical navigation (DRACO) instrument flown aboard NASA's Double Asteroid Redirection Test (DART) Mission and two documents describing the Coordinate System for the Dimorphos and Didymos asteroids.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Double Asteroid Redirection Test"], "targets": [], "instruments": ["DRACO"], "instrument_hosts": ["DART"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/collection_document_draco.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-dart:document_draco-v3.0/collection_document_draco.xml", "scraped_at": "2026-02-25T20:02:10.759004Z", "keywords": ["DART"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:soho:document::1.1", "title": "SOHO Documentation Collection", "description": "This document collection contains overview documents as well as instrument-specific and data collection support documents for the various SOHO data collections in the PDS archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["SOHO"], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho:document-v1.1/collection.xml", "scraped_at": "2026-02-25T20:02:10.759016Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_alice:pluto_raw::1.0", "title": "New Horizons Alice Ultraviolet Imaging Spectrograph Pluto Encounter Raw Data", "description": "This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-ALICE-2-PLUTO-V3.0. This version includes data downlinked from 1/31/2016 through 10/31/2016. This data set contains Alice observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. It includes multi-map and Lyman-alpha observations of Pluto and Charon, histograms of the Pluto system moons, and a number of calibration observations of Rho Leo and other stars. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "Charon", "Nix", "Hydra"], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-25", "stop_date": "2016-07-15", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759120Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_alice:pluto_cal::1.0", "title": "New Horizons Alice Ultraviolet Imaging Spectrograph Pluto Encounter Calibrated Data", "description": "This collection contains a set of raw images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-ALICE-3-PLUTO-V3.0. This version includes data downlinked from 1/31/2016 through 10/31/2016. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. It includes multi-map and Lyman-alpha observations of Pluto and Charon, histograms of the Pluto system moons, and a number of calibration observations of Rho Leo and other stars. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "Charon", "Nix", "Hydra"], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-25", "stop_date": "2016-07-15", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:pluto_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759124Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents:sdc::2.0", "title": "New Horizons Documents for the Student Dust Counter (SDC) Instrument", "description": "This collection contains documents applicable to the Student Dust Counter (SDC) instrument onboard the New Horizons spacecraft. There are several tables that list the times when the instrument power was turned on and off.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Student Dust Counter"], "instrument_hosts": ["New Horizons"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:sdc-v2.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759129Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_leisa:pluto_raw::1.0", "title": "New Horizons Linear Etalon Imaging Spectral Array Pluto Encounter Raw Data", "description": "This collection contains a set of raw images in .FIT format for the New Horizons Linear Etalon Imaging Spectral Array (LEISA) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-LEISA-2-PLUTO-V3.0. This data set contains LEISA observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, and hi-res departure observations. It also includes functional tests from the Calibration Campaign including scans across the detector of Arcturus, and a second test of the Solar Illumination Assembly. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "Charon", "Nix", "Hydra", "Kerberos"], "instruments": ["Linear Etalon Imaging Spectral Array"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-03-03", "stop_date": "2016-07-16", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759133Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_leisa:pluto_cal::1.0", "title": "New Horizons Linear Etalon Imaging Spectral Array Pluto Encounter Calibrated Data", "description": "This collection contains a set of calibrated images in .FIT format for the New Horizons Linear Etalon Imaging Spectral Array (LEISA) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-LEISA-3-PLUTO-V3.0. This data set contains LEISA observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, and hi-res departure observations. It also includes functional tests from the Calibration Campaign including scans across the detector of Arcturus, and a second test of the Solar Illumination Assembly. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "Charon", "Nix", "Hydra", "Kerberos"], "instruments": ["Linear Etalon Imaging Spectral Array"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-03-03", "stop_date": "2016-07-16", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_leisa:pluto_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759137Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_mvic:pluto_raw::1.0", "title": "New Horizons Multispectral Visible Imaging Camera (MVIC) Pluto Encounter Raw Data", "description": "This collection contains a set of raw images tables in .FIT format for the Multispectral Visible Imaging Camera (MVIC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-MVIC-2-PLUTO-V3.0. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "Charon", "Nix", "Hydra", "Kerberos"], "instruments": ["Multispectral Visible Imaging Camera"], "instrument_hosts": ["New Horizons Spacecraft"], "data_types": ["Data"], "start_date": "2015-03-03", "stop_date": "2016-07-16", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759141Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_mvic:pluto_cal::1.0", "title": "New Horizons Multispectral Visible Imaging Camera (MVIC) Pluto Encounter Partially Processed Data", "description": "This collection contains a set of partially processed images tables in .FIT format for the Multispectral Visible Imaging Camera (MVIC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-MVIC-3-PLUTO-V3.0. This data set contains MVIC observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "Charon", "Nix", "Hydra", "Kerberos"], "instruments": ["Multispectral Visible Imaging Camera"], "instrument_hosts": ["New Horizons Spacecraft"], "data_types": ["Data"], "start_date": "2015-03-03", "stop_date": "2016-07-16", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_mvic:pluto_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759145Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_sdc:pluto_raw::1.0", "title": "New Horizons Student Dust Counter (SDC) Pluto Encounter Raw Data", "description": "This collection contains a set of raw tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-SDC-2-PLUTO-V3.0. This data set contains SDC observations taken during the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Dust"], "instruments": ["Student Dust Counter"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-17", "stop_date": "2016-10-17", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759149Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_sdc:pluto_cal::1.0", "title": "New Horizons Student Dust Counter (SDC) Pluto Encounter Calibrated Data", "description": "This collection contains a set of calibrated tables in .FIT format for the New Horizons Student Dust Counter (SDC) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-SDC-3-PLUTO-V3.0. This data set contains SDC observations taken during the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Dust"], "instruments": ["Student Dust Counter"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-17", "stop_date": "2016-10-17", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_sdc:pluto_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759152Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:soho:swan_derived::4.0", "title": "SOHO SWAN Derived Cometary Water Production Rates Collection", "description": "This data collection contains derived water production rates for numerous comets observed by the SOHO SWAN instrument from 1996 to 2021. Multiple measurements were made for each comet through a single perihelion passage and some comets were observed over multiple epochs. The production rates were derived by modeling the observed distribution of atomic hydrogen in the comae of the comets. This version corrects issues discovered in the previous version of the water_c_1995_o1_hale_bopp table.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Solar and Heliospheric Observatory"], "targets": ["Multiple Comets"], "instruments": ["Solar Wind ANisotropies (SWAN)"], "instrument_hosts": ["SOlar and Heliospheric Observatory"], "data_types": ["Data"], "start_date": "1996-01-22", "stop_date": "2021-10-17", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-soho:swan_derived-v4.0/collection.xml", "scraped_at": "2026-02-25T20:02:10.759162Z", "keywords": ["water production rate"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_pepssi:calibration_files::2.0", "title": "New Horizons Calibrations for the PEPSSI Instrument", "description": "This collection contains calibration files applicable to the PEPSSI instrument onboard the New Horizons spacecraft, used to process raw data into calibrated files.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:calibration_files-v2.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759165Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents:pepssi::2.0", "title": "New Horizons Documents for the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) Instrument", "description": "This collection contains documents applicable to the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument onboard the New Horizons spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:pepssi-v2.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759168Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lucy.llorri:document::1.0", "title": "Lucy LOng Range Reconnaissance Imager (L'LORRI) Documentation", "description": "Documentation for the Lucy LOng Range Reconnaissance Imager (L'LORRI) data archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Lucy Mission"], "targets": [], "instruments": ["Lucy Long Range Reconnaissance Imager (L'LORRI)"], "instrument_hosts": ["Lucy"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/collection_document_v1.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:document-v1.0/collection_document_v1.xml", "scraped_at": "2026-02-25T20:02:10.759172Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lucy.llorri:calibration::1.0", "title": "Lucy LOng Range Reconnaissance Imager (L'LORRI) Calibration Data", "description": "Calibration data for the Lucy LOng Range Reconnaissance Imager (L'LORRI) data archive. The calibrations include bias, flat field, and time corrections.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Lucy Mission"], "targets": [], "instruments": ["Lucy Long Range Reconnaissance Imager (L'LORRI)"], "instrument_hosts": ["Lucy"], "data_types": ["Calibration"], "start_date": "2022-09-26", "stop_date": "2022-09-27", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/collection_calibration_v1.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:calibration-v1.0/collection_calibration_v1.xml", "scraped_at": "2026-02-25T20:02:10.759175Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lucy.llorri:data_didymos_raw::1.0", "title": "Lucy LOng Range Reconnaissance Imager (L'LORRI) Raw Data for the Didymos Observation Data Archive", "description": "This data collection contains raw images for the Lucy LOng Range Reconnaissance Imager (L'LORRI) Didymos/Double Asteroid Redirection Test (DART) data archive. The Lucy team found that the Lucy spacecraft and the L'LORRI instrument would be able to image the DART impact experiment on the Didymos system. The Lucy spacecraft observed the DART mission impact on 2022 September 26 with the L'LORRI instrument for about 36 hours surrounding the time of impact, resulting in 1549 observational products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Lucy Mission"], "targets": ["(65803) Didymos"], "instruments": ["Lucy Long Range Reconnaissance Imager (L'LORRI)"], "instrument_hosts": ["Lucy"], "data_types": ["Data"], "start_date": "2022-09-26", "stop_date": "2022-09-27", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/collection_data_didymos_raw_v1.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_raw-v1.0/collection_data_didymos_raw_v1.xml", "scraped_at": "2026-02-25T20:02:10.759180Z", "keywords": ["Near-Earth objects"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:lucy.llorri:data_didymos_partially_processed::1.0", "title": "Lucy LOng Range Reconnaissance Imager (L'LORRI) Partially Processed Data for the Didymos Observation Data Archive", "description": "This data collection contains partially processed images for the Lucy LOng Range Reconnaissance Imager (L'LORRI) Didymos/Double Asteroid Redirection Test (DART) data archive. The Lucy team found that the Lucy spacecraft and the L'LORRI instrument would be able to image the DART impact experiment on the Didymos system. The Lucy spacecraft observed the DART mission impact on 2022 September 26 with the L'LORRI instrument for about 36 hours surrounding the time of impact, resulting in 1549 observational products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Lucy Mission"], "targets": ["(65803) Didymos"], "instruments": ["Lucy Long Range Reconnaissance Imager (L'LORRI)"], "instrument_hosts": ["Lucy"], "data_types": ["Data"], "start_date": "2022-09-26", "stop_date": "2022-09-27", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/collection_data_didymos_partially_processed_v1.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-lucy.llorri:data_didymos_partially_processed-v1.0/collection_data_didymos_partially_processed_v1.xml", "scraped_at": "2026-02-25T20:02:10.759185Z", "keywords": ["Near-Earth objects"], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_secondary:aliceocc_charon_sources::1.0", "title": "Raw Product Source List for urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0", "description": "This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Charon provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_cocc_1s_spectra_v10::1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto I (Charon)"], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-07-14", "stop_date": "2015-07-14", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/collection_aliceocc_charon_sources.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_charon_sources-v1.0/collection_aliceocc_charon_sources.lblx", "scraped_at": "2026-02-25T20:02:10.759274Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_secondary:aliceocc_pluto_sources::1.0", "title": "Raw Product Source List for urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0", "description": "This secondary collection contains only an inventory table which lists the LIDVIDs of the raw Alice source products used to derive the solar occultation results for Pluto provided in urn:nasa:pds:nh_derived:plutosystem_atmospherics:pa_pocc_1s_spectra_v10::1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto"], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-07-14", "stop_date": "2015-07-14", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/collection_aliceocc_pluto_sources.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_secondary:aliceocc_pluto_sources-v1.0/collection_aliceocc_pluto_sources.lblx", "scraped_at": "2026-02-25T20:02:10.759278Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap:pluto_raw::1.0", "title": "New Horizons Solar Wind Around Pluto - Pluto Raw Data", "description": "This collection contains a set of raw real-time, science summary, and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-2-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/14/2015 and 10/29/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Solar Wind"], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-14", "stop_date": "2016-10-29", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759282Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap:pluto_cal::1.0", "title": "New Horizons Solar Wind Around Pluto - Pluto Calibrated Data", "description": "This collection contains a set of calibrated real-time and science histogram data in .FIT format for the New Horizons Solar Wind Around Pluto (SWAP) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-SWAP-3-PLUTO-V3.0. This collection includes data acquired by the spacecraft between 01/15/2015 and 10/25/2016. This dataset contains data from Pluto's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Solar Wind"], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-15", "stop_date": "2016-10-25", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759286Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap:pluto_data_summary_plots::1.0", "title": "New Horizons Pluto Encounter Mission Phase Solar Wind Around Pluto Data Summary Plots", "description": "This collection contains data summary plots of the solar wind encountered by the New Horizons (NH) Solar Wind Around Pluto (SWAP) instrument during the time period of the Pluto Encounter Mission Phase. The data includes SWAP observations and plasma rolls in the approach and departure of Pluto. A gain test was also performed. The Pluto flyby was on the 14th of July 2015. The data are summarized as plots covering both 1-day, 10-day, 25-day, 100-day, and annual increments in time. The plots compose images, and the images are provided in Portable Network Graphic (PNG) format.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Solar Wind"], "instruments": ["The Solar Wind Around Pluto (SWAP) Instrument for New Horizons"], "instrument_hosts": ["The New Horizons (NH) Spacecraft"], "data_types": ["Browse"], "start_date": "2015-01-15", "stop_date": "2016-10-25", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:pluto_data_summary_plots-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759290Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:arrokoth_composition::1.0", "title": "New Horizons (486958) Arrokoth Encounter Surface Composition Maps", "description": "This dataset presents surface composition maps of the trans-Neptunian object (486958) Arrokoth, encountered by the New Horizons spacecraft on its first extended mission to the Kuiper Belt. The dataset includes calibrated spectral cubes derived from observations made by the LEISA and MVIC spectral imagers.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["(486958) Arrokoth"], "instruments": ["Linear Etalon Imaging Spectral Array", "Multispectral Visible Imaging Camera"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_composition-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759310Z", "keywords": ["Surface composition", "Trans-Neptunian objects"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:arrokoth_geophysics::1.0", "title": "New Horizons Encounter with (486958) Arrokoth: Derived Shape Models and Surface Maps", "description": "This data set contains the New Horizons Arrokoth Encounter geology and geophysics science theme team derived shape models and maps of albedo, elevation, modeled surface temperature, and elevation. These results were derived from observations made by the LORRI and MVIC instruments.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["(486958) Arrokoth"], "instruments": ["Long Range Reconnaissance Imager", "Multispectral Visible Imaging Camera"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:arrokoth_geophysics-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759315Z", "keywords": ["Trans-Neptunian objects"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:ipm_lyman_alpha::1.0", "title": "New Horizons Kuiper Belt Extended Mission: Alice Ultraviolet Imaging Spectrograph Scans of Lyman-alpha Emission from the Interplanetary Medium", "description": "This one-file data collection contains scans of Lyman-alpha emission from neutral hydrogen in the interplanetary medium taken by the New Horizons Alice Ultraviolet Imaging Spectrograph. The period covers is 2007-10 (following Jupiter encounter) to 2020-04 (during the Kuiper Belt Extended mission KEM1).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": ["Interplanetary Medium"], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2007-10-07", "stop_date": "2020-04-27", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_lyman_alpha-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759320Z", "keywords": ["Interplanetary medium"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:ipm_solar_wind::1.0", "title": "New Horizons Primary and Extended Missions: Solar Wind Parameters", "description": "This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument as well as pickup ions. It contains two data products. The solar wind product each product compiles the CODMAC level 2 source data used, the solar wind proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, and spacecraft position. These data were derived from observations obtained during cruise, Pluto encounter (excluding the period inside the Pluto system), and afterwards. The pickup ion product provides the interstellar pickup ion density, temperature, and pressure. These data were culled for times when the solar wind speed varied over the ~24 hour period by >1% (~13% of the samples). This PDS4 version was created by migrating labels (only) from the PDS3 V2.0 data set.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": ["Solar Wind"], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2008-10-10", "stop_date": "2020-01-27", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:ipm_solar_wind-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759325Z", "keywords": ["Solar wind"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:oss_plasma_fluxes::1.0", "title": "New Horizons Primary and Extended Mission in the Outer Solar System: Averaged Energetic Particle Flux Rates and Counts-per-Second from PEPSSI Observations, 2012-2020", "description": "This dataset contains one-hour averaged energetic particle flux rate values and counts-per-second generated by the New Horizons Particles and Plasma science team from data taken by the Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument. The data covers a time range from early 2012 through late 2020. Flux rates and sums are presented for each of the six instrument look directions.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": ["Solar Wind"], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2012-01-01", "stop_date": "2020-12-31", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:oss_plasma_fluxes-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759329Z", "keywords": ["Solar energetic particles"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:plutosystem_atmospherics::1.0", "title": "New Horizons Encounter with the Pluto System: Atmospheric Opacities and Composition, Temperature, Pressure, and Haze Profiles from the LORRI, Alice, and REX Instruments", "description": "This data set contains derived atmospheric data from the New Horizons mission during the Pluto Encounter mission phase, based on data from the Alice UV imaging spectrograph instrument, the Radio EXperiment instrument, and the LOng Range Reconnaissance Imager instrument. The data set includes a solar spectrum of Pluto and Charon; atmospheric composition on Pluto for N2, CH4, C2H2, C2H4, C2H6, and haze, and the haze brightness profiles; Pluto lower atmospheric temperature and pressure profiles; stellar occultation and appulse data of Pluto; and temperatures of the diametric and winter pole thermscans of Pluto.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "(134340) Pluto I (Charon)"], "instruments": ["Alice Ultraviolet Imaging Spectrograph", "Long Range Reconnaissance Imager", "Radio Science Experiment"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-07-14", "stop_date": "2015-07-15", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_atmospherics-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759335Z", "keywords": ["Pluto", "Plutonian satellites", "Planetary atmospheres"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:plutosystem_composition::1.0", "title": "New Horizons Encounter with the Pluto System: Global Color Maps, Image Cubes, and Absorption Band Maps from the LEISA and MVIC Instruments", "description": "This data set contains global color maps, image cubes, and absorption band maps created from calibrated data taken during the PLUTO mission phase by the Linear Etalon Imaging Spectral Array (LEISA) instrument and the Multispectral Visible Imaging Camera (MVIC) instrument on the New Horizons spacecraft. Image cubes are provided per instrument and target body, covering the surfaces of Pluto, Charon, Nix, Hydra, and Kerberos. Color maps and absorption band maps for N2, CO, CH4, and H2O are provided for both Pluto and Charon.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "(134340) Pluto I (Charon)", "(134340) Pluto III (Hydra)", "(134340) Pluto II (Nix)", "(134340) Pluto IV (Kerberos)"], "instruments": ["Linear Etalon Imaging Spectral Array", "Multispectral Visible Imaging Camera"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-07-09", "stop_date": "2015-07-14", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_composition-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759343Z", "keywords": ["Pluto", "Plutonian satellites", "Planetary surfaces", "Natural satellite surfaces", "Surface composition"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:plutosystem_geophysics::1.0", "title": "New Horizons Encounter with the Pluto System: Mosaics, Topographic Maps, and Bond Albedo Maps for Pluto and Charon from LORRI and MVIC Observations", "description": "This data set contains derived geology and geophysical maps of Pluto and Charon derived from data taken by the New Horizons Multispectral Visible Imaging Camera (MVIC) and the Long-range Reconnaissance Imager (LORRI) instruments during the Pluto Encounter mission phase.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto", "(134340) Pluto I (Charon)"], "instruments": ["Long Range Reconnaissance Imager", "Multispectral Visible Imaging Camera"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_geophysics-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759349Z", "keywords": ["Pluto", "Plutonian satellites", "Planetary surfaces", "Natural satellite surfaces", "Albedo"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:plutosystem_plasma_fluxes::1.0", "title": "New Horizons Encounter with the Pluto System: Time-Averaged Solar Winds Particle and Ion Fluxes from PEPSSI Observations", "description": "This data set contains higher level products derived from data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the Pluto encounter mission phase. The data products contain proton and ion fluxes at five second, five minute, and three hour averages, with the corresponding attitude and ephemeris data.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Solar Wind"], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-07-12", "stop_date": "2015-07-16", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_plasma_fluxes-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759353Z", "keywords": ["Solar wind"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:plutosystem_solar_wind::1.0", "title": "New Horizons Encounter with the Pluto System: Solar Wind Parameters from SWAP Observations", "description": "This data set presents characteristics of the solar wind derived from data taken by the New Horizons Solar Wind Around Pluto (SWAP) instrument during the Pluto encounter. This archive contains two data products. Each product compiles the CODMAC level 2 source data used, the solar wind speed, proton density, proton speed, proton temperature, proton dynamic pressure, proton thermal pressure, spacecraft position and speed. The two product files differ in that one is in Heliographic Inertial (HGI) coordinates and the other is in Pluto centric J2000 and IAU J2000 coordinates.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Solar Wind"], "instruments": ["Solar Wind Around Pluto"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-07-14", "stop_date": "2015-07-14", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:plutosystem_solar_wind-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759358Z", "keywords": ["Solar wind"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_lorri:kem1_raw::1.0", "title": "New Horizons LORRI KEM1 Encounter Raw Data", "description": "This data set contains Raw data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the KEM1 ENCOUNTER mission phase. This version includes Distant Kuiper Belt Object (DKBO) observations of 2011 HF103, 2011 HK103, 2011 HZ102, 2011 JA32, 2011 JW31, 2011 JX31, 2011 JY31, 2014 OE394, 2014 OJ394, 2014 OS393, 2014 PN70, 2020 KP11, 2020 KR11, and 2020 KT11, plus data from a Cosmic Optical Background Demo and a Microlensing demo. There are also observations of 50000 QUAOAR (2002 LM60), ASTEROID 307261 (2002 MS4), ASTEROID 486958 (2014 MU69), HD 37962, INTERPLANETARY DUST, M7, NGC 3532, PROXIMA CENTAURI, TRITON, and WOLF 359. It includes images of the approach and departure field around Arrokoth. The data cover the actual Arrokoth encounter. These data were migrated from the previously released PDS3 data set NH-A-LORRI-2-KEM1-V6.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission 1"], "targets": ["(486958) Arrokoth"], "instruments": ["Long Range Reconnaissance Imager"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-16", "stop_date": "2021-09-30", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759362Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_lorri:calibration_files::1.0", "title": "Reference Files Used in Calibrating Data from the New Horizons Long Range Reconnaissance Imager (LORRI)", "description": "This collection is a migration from PDS3 of the set of ancillary files (flat fields, bad pixel maps, etc.) used in calibrating the data sets delivered by the LORRI instrument over the course of the New Horizons primary and extended missions.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Long Range Reconnaissance Imager"], "instrument_hosts": ["New Horizons"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:calibration_files-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759372Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_lorri:kem1_cal::1.0", "title": "New Horizons LORRI KEM1 Encounter Partially Processed Data", "description": "This data set contains Partially Processed data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the KEM1 ENCOUNTER mission phase. This version includes Distant Kuiper Belt Object (DKBO) observations of 2011 HF103, 2011 HK103, 2011 HZ102, 2011 JA32, 2011 JW31, 2011 JX31, 2011 JY31, 2014 OE394, 2014 OJ394, 2014 OS393, 2014 PN70, 2020 KP11, 2020 KR11, and 2020 KT11, plus data from a Cosmic Optical Background Demo and a Microlensing demo. There are also observations of 50000 QUAOAR (2002 LM60), ASTEROID 307261 (2002 MS4), ASTEROID 486958 (2014 MU69), HD 37962, INTERPLANETARY DUST, M7, NGC 3532, PROXIMA CENTAURI, TRITON, and WOLF 359. It includes images of the approach and departure field around Arrokoth. The data cover the actual Arrokoth encounter. These data were migrated from the previously released PDS3 data set NH-A-LORRI-3-KEM1-V6.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission 1"], "targets": ["(486958) Arrokoth"], "instruments": ["Long Range Reconnaissance Imager"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-08-16", "stop_date": "2021-09-30", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:kem1_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759376Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_alice:calibration_files::1.0", "title": "Reference Files Used in Calibrating Data from the New Horizons Alice Ultraviolet Imaging Spectrograph Instrument", "description": "This collection is a migration from PDS3 of the cumulative set of ancillary files (dark, effective area, wavelength, flat) used in calibrating the data sets delivered by the Alice Ultraviolet Imaging Spectrograph instrument over the course of the New Horizons primary and extended missions.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": [], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:calibration_files-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759381Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_alice:kem1_cal::1.0", "title": "New Horizons Alice Ultraviolet Imaging Spectrograph KEM1 Encounter Calibrated Data", "description": "This collection contains a set of calibrated images in .FIT format for the New Horizons Alice Ultraviolet Imaging Spectrograph instrument during the KEM1 ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-A-ALICE-3-KEM1-V6.0. This collection includes data acquired by the spacecraft between 08/14/2018 and 05/01/2022. All Alice data obtained before 05/01/2022 were fully successfully downlinked before that date. This dataset contains data from Arrokoth's encounter. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission"], "targets": ["(486958) Arrokoth"], "instruments": ["Alice Ultraviolet Imaging Spectrograph"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2018-09-30", "stop_date": "2021-09-30", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_alice:kem1_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759385Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_rex:kem1_raw::1.0", "title": "New Horizons Radio Science Experiment (REX) KEM1 Encounter Raw Data", "description": "This data set contains Raw data taken by the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-2-KEM1-V5.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEW HORIZONS KUIPER BELT EXTENDED MISSION"], "targets": ["(486958) Arrokoth"], "instruments": ["RADIO SCIENCE EXPERIMENT"], "instrument_hosts": ["NEW HORIZONS"], "data_types": ["Data"], "start_date": "2018-09-09", "stop_date": "2022-02-18", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759572Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_rex:kem1_cal::1.0", "title": "New Horizons Radio Science Experiment (REX) KEM1 Encounter Calibrated Data", "description": "This data set contains Calibrated data taken by the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-3-KEM1-V5.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEW HORIZONS KUIPER BELT EXTENDED MISSION"], "targets": ["(486958) Arrokoth"], "instruments": ["RADIO SCIENCE EXPERIMENT"], "instrument_hosts": ["NEW HORIZONS"], "data_types": ["Data"], "start_date": "2018-09-09", "stop_date": "2022-01-13", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759585Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_rex:kem1_tnf::1.0", "title": "New Horizons Radio Science Experiment (REX) KEM1 Encounter Tracking and Navigation Files (TNF)", "description": "This data set contains Tracking and Navigation Files (TNF) created for the New Horizons Radio Science Experiment (REX) instrument during the KEM1 ENCOUNTER mission phase. The collection includes TRK-2-34 radiometric tracking data files and TRK-2-23 media calibration files. The media calibration data that are provided by the Radiometric Modeling and Calibration Subsystem (RMC). These calibrations are used by project navigation and radio science teams, multi-mission spacecraft navigation, and other investigators to improve the accuracy of spacecraft orbit determination and radio science investigations by compensating for the media transmission effects of the Earth's troposphere and ionosphere on the propagation of radiometric signals. This version includes data acquired by the spacecraft between 08/14/2018 and 04/30/2022. It only includes data downlinked before 05/01/2022. Future datasets may include more data acquired by the spacecraft after 08/13/2018 but downlinked after 04/30/2022. The REX datasets over the mission include calibrations using known radio sources, Jupiter, and cold sky measurements; operational readiness tests (ORTs); internal test pattern calibration; and prime science radiometry and occultation observations during the Arrokoth Encounter. These data were migrated from the previously released PDS3 data set NH-A-REX-3-KEM1-V5.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEW HORIZONS KUIPER BELT EXTENDED MISSION"], "targets": ["(486958) Arrokoth"], "instruments": ["RADIO SCIENCE EXPERIMENT", "NASA Deep Space Network Radio Science"], "instrument_hosts": ["NEW HORIZONS"], "data_types": ["Data"], "start_date": "2018-09-08", "stop_date": "2022-01-12", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_rex:kem1_tnf-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759589Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_derived:lorri_cob::1.0", "title": "New Horizons Cosmic Optical Background Observations", "description": "This data collection contains FITS files with calibrated images and masks derived from images taken with the Long Range Reconnaissance Imager (LORRI) instrument onboard the New Horizons spacecraft. These images were used in an analysis of the Cosmic Optical Background.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons Kuiper Belt Extended Mission (kem1)", "New Horizons"], "targets": ["Cosmic Optical Background"], "instruments": ["LONG RANGE RECONNAISSANCE IMAGER"], "instrument_hosts": ["NEW HORIZONS"], "data_types": ["Data"], "start_date": "2007-10-06", "stop_date": "2019-09-04", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/collection.xml", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_derived:lorri_cob-v1.0/collection.xml", "scraped_at": "2026-02-25T20:02:10.759593Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_pepssi:pluto_raw::1.0", "title": "New Horizons Pluto Energetic Particle Spectrometer Science Investigation Pluto Encounter Raw Data", "description": "This data set contains Raw data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-PEPSSI-2-PLUTO-V3.0. During the Pluto Charon Encounter mission phase starting in January, 2015, there were several sub-phases: three Approach sub-phases, (AP1, AP2 and AP3); a CORE sequence for the Pluto flyby on 14 July, 2015 (Day Of Year 195), sometimes also referred to as NEP (Near-Encounter Phase); three Departure sub-phases (DP1, DP2, DP3); a Transition sub-phase ending in late October, 2016, closing out the Pluto Encounter mission phase. For this final PEPSSI delivery for the Pluto mission phase, this data set includes the Approach data plus the CORE and Departure sequences' data, as well as normal operation and Calibration Campaign data during Transition, and has all data downlinked through the end of October, 2016. Due to a spacecraft safing event on 04 July, 2015 (DOY 185), the balance of the science load from then-executing 15184 sequence (nominal start time on DOY 184 in 2015) was sacrificed to ensure the 15188 CORE load with the flyby sequence could be loaded onto the spacecraft and started on time. As a result, there is a gap in the PEPSSI data from approximately DOY 186 to DOY 188. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Solar Wind"], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-14", "stop_date": "2016-10-29", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759693Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_pepssi:pluto_cal::1.0", "title": "New Horizons Pluto Energetic Particle Spectrometer Science Investigation Pluto Encounter Calibrated Data", "description": "This data set contains Calibrated data taken by the New Horizons Pluto Energetic Particle Spectrometer Science Investigation (PEPSSI) instrument during the PLUTO ENCOUNTER mission phase. These data were migrated from the PDS3 dataset: NH-P-PEPSSI-3-PLUTO-V3.0. During the Pluto Charon Encounter mission phase starting in January, 2015, there were several sub-phases: three Approach sub-phases, (AP1, AP2 and AP3); a CORE sequence for the Pluto flyby on 14 July, 2015 (Day Of Year 195), sometimes also referred to as NEP (Near-Encounter Phase); three Departure sub-phases (DP1, DP2, DP3); a Transition sub-phase ending in late October, 2016, closing out the Pluto Encounter mission phase. For this final PEPSSI delivery for the Pluto mission phase, this data set includes the Approach data plus the CORE and Departure sequences' data, as well as normal operation and Calibration Campaign data during Transition, and has all data downlinked through the end of October, 2016. Due to a spacecraft safing event on 04 July, 2015 (DOY 185), the balance of the science load from then-executing 15184 sequence (nominal start time on DOY 184 in 2015) was sacrificed to ensure the 15188 CORE load with the flyby sequence could be loaded onto the spacecraft and started on time. As a result, there is a gap in the PEPSSI data from approximately DOY 186 to DOY 188. Labels were redesigned during migration using the .FIT header and PDS3 .LBL files, but the data files are unchanged from their PDS3 version.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["Solar Wind"], "instruments": ["Pluto Energetic Particle Spectrometer Science Investigation"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-14", "stop_date": "2016-10-29", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_pepssi:pluto_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.759697Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_swap:trajectory::2.0", "title": "New Horizons Spacecraft Trajectory", "description": "This collection contains New Horizons (NH) spacecraft trajectory in various reference frames. For the time period from launch through the end of 2028, the sampling period is 86400 NH spacecraft seconds, about one day. The data will contain placeholder flags for some (future) dates where there is not enough information to predict the spacecraft location accurately. Locations before 2022-JUN-01 01:36:23.288 come from 'reconstructed' SPICE kernels, whereas later locations are estimated from 'predicted' SPICE kernel information. For the Pluto Time of Closest Approach (TCA) plus or minus approximately 30 days, there are additional files available. During this time period the sampling rate varies.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission"], "targets": ["New Horizons"], "instruments": [], "instrument_hosts": ["New Horizons"], "data_types": ["Geometry"], "start_date": "2006-01-20", "stop_date": "2028-02-29", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_swap:trajectory-v2.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.760209Z", "keywords": ["Astronomical coordinate systems"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_documents:lorri::2.0", "title": "New Horizons Documents for the LORRI Instrument", "description": "This collection contains documents applicable to the LORRI instrument onboard the New Horizons spacecraft, such as documents describing the boresights, calibration techniques, and mission phase sequences of these instruments.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons", "New Horizons Kuiper Belt Extended Mission (KEM1)"], "targets": [], "instruments": ["Long Range Reconnaissance Imager"], "instrument_hosts": ["New Horizons"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_documents:lorri-v2.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.760212Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_lorri:pluto_raw::1.0", "title": "New Horizons LOng Range Reconnaissance Imager (LORRI) Pluto Encounter Raw Data", "description": "This data set contains Raw data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the PLUTO ENCOUNTER mission phase. This data set contains LORRI observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Departure observations include a ring search of the Pluto system and 1994 JR1 observations. This data set completes the Pluto mission phase deliveries for LORRI. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, hi-res, full-frame observations from Pluto Encounter and Departure, sliver maps, and ring search observations. There may be some overlap between prior datasets and this dataset, due to only partial, windowed, or lossy data in prior datasets. Observations at closest approach to Pluto are marked with _CA in the Request ID. This dataset also includes functional tests from the Calibration Campaign, including a regular observation of NGC3532. Finally it includes the first set of distant KBO observations. These data were migrated from the previously released PDS3 data set NH-P-LORRI-2-PLUTO-V3.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto"], "instruments": ["The Long-Range Reconnaissance Imager (LORRI) for New Horizons"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-25", "stop_date": "2016-07-16", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_raw-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.760876Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:nh_lorri:pluto_cal::1.0", "title": "New Horizons LOng Range Reconnaissance Imager (LORRI) Pluto Encounter Partially Processed Data", "description": "This data set contains Partially Processed data taken by the New Horizons LOng Range Reconnaissance Imager (LORRI) instrument during the PLUTO ENCOUNTER mission phase. This data set contains LORRI observations taken during the the Approach (Jan-Jul, 2015), Encounter, Departure, and Transition mission sub-phases, including flyby observations taken on 14 July, 2015, and departure and calibration data through late October, 2016. Departure observations include a ring search of the Pluto system and 1994 JR1 observations. This data set completes the Pluto mission phase deliveries for LORRI. Changes since prior versions include the addition of data downlinked between the end of January, 2016 and the end of October, 2016, completing the delivery of all data covering the Pluto Encounter and subsequent Calibration Campaign. It includes multi-map observations from the Approach phase, observations of the moons, hi-res, full-frame observations from Pluto Encounter and Departure, sliver maps, and ring search observations. There may be some overlap between prior datasets and this dataset, due to only partial, windowed, or lossy data in prior datasets. Observations at closest approach to Pluto are marked with _CA in the Request ID. This dataset also includes functional tests from the Calibration Campaign, including a regular observation of NGC3532. Finally it includes the first set of distant KBO observations. These data were migrated from the previously released PDS3 data set NH-P-LORRI-3-PLUTO-V3.0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["New Horizons"], "targets": ["(134340) Pluto"], "instruments": ["The Long-Range Reconnaissance Imager (LORRI) for New Horizons"], "instrument_hosts": ["New Horizons"], "data_types": ["Data"], "start_date": "2015-01-25", "stop_date": "2016-07-16", "browse_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/", "download_url": null, "label_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/collection.lblx", "source_url": "https://pdssbn.astro.umd.edu/holdings/pds4-nh_lorri:pluto_cal-v1.0/collection.lblx", "scraped_at": "2026-02-25T20:02:10.760880Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar:data_albedo::1.0", "title": "Hayabusa2 LIDAR Derived Albedo Data Collection", "description": "This collection contains the derived albedo data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["LIght Detection And Ranging (LIDAR)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/collection_hyb2_lidar_data_albedo_v001.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo/collection_hyb2_lidar_data_albedo_v001.xml", "scraped_at": "2026-02-25T20:02:10.761012Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar:data_albedo_map::1.0", "title": "Hayabusa2 LIDAR Derived Albedo Map Data Collection", "description": "This collection contains the derived albedo map data products produced by the LIDAR instrument onboard the Hayabusa2 spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["LIght Detection And Ranging (LIDAR)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Data"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/collection_hyb2_lidar_data_albedo_map_v001.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/data_albedo_map/collection_hyb2_lidar_data_albedo_map_v001.xml", "scraped_at": "2026-02-25T20:02:10.761020Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2_lidar:document::2.0", "title": "Hayabusa2 LIDAR Document Collection", "description": "This collection contains the documents applicable to the Hayabusa2 LIDAR instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": [], "instruments": ["LIght Detection And Ranging (LIDAR)"], "instrument_hosts": ["Hayabusa2"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/collection_hyb2_lidar_document_v002.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_lidar_v2.0/document/collection_hyb2_lidar_document_v002.xml", "scraped_at": "2026-02-25T20:02:10.761028Z", "keywords": ["Hayabusa2", "LIDAR", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:jaxa:darts:hyb2:document::4.0", "title": "Hayabusa2 Mission: Document", "description": "This collection contains the documents applicable to the Hayabusa2 mission as a whole.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Hayabusa2 Asteroid Sample Return Mission"], "targets": ["(162173) Ryugu"], "instruments": ["Small Monitor Camera (CAM-H)", "LIght Detection And Ranging (LIDAR)", "Near InfraRed Spectrometer (NIRS3)", "Optical Navigation Camera", "Small Carry-on Impactor (SCI)", "Thermal Infrared Imager (TIR)", "DCAM3-A (DCAM3 Analog)", "DCAM3-D (DCAM3 Digital)", "MASCOT Camera", "MASCOT Fluxgate Magnetometer", "MARA", "MicrOmega"], "instrument_hosts": ["Hayabusa2", "DCAM3 (Deployable Camera 3)", "MASCOT", "MINERVA-II1 Rover-1a HIBOU", "MINERVA-II1 Rover-1b OWL", "MINERVA-II2 Rover-2 ULULA"], "data_types": ["Document"], "start_date": "2014-12-03", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/collection_document_v004.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa2/hyb2_v4.0/document/collection_document_v004.xml", "scraped_at": "2026-02-25T20:02:10.761039Z", "keywords": ["Hayabusa2", "(162173) Ryugu"], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.satellite.colors:data::1.0", "title": "Small Planetary Satellite Colors V1.0", "description": "This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["MULTIPLE"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1977-09-11", "stop_date": "2002-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/collection_compil.satellite.colors_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/data/collection_compil.satellite.colors_data.xml", "scraped_at": "2026-02-25T20:02:10.761045Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.satellite.colors:document::1.0", "title": "Small Planetary Satellite Colors V1.0", "description": "This data set is intended to include published colors of small planetary satellites published up through December 2003. Small planetary satellites are defined as all those except the Moon, the Galilean satellites, Titan, and Triton.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["MULTIPLE"], "instruments": ["Literature search"], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1977-09-11", "stop_date": "2002-03-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/collection_compil.satellite.colors_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.satellite.colors/document/collection_compil.satellite.colors_document.xml", "scraped_at": "2026-02-25T20:02:10.761049Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics:data::1.0", "title": "Ceres Urvara Dawn FC C2E mosaics data collection", "description": "Data collection for the Ceres Urvara Dawn FC C2E mosaics bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn Mission To Vesta And Ceres"], "targets": ["(1) Ceres"], "instruments": ["FRAMING CAMERA 2", "Framing Camera 1"], "instrument_hosts": ["DAWN"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/data/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_data.xml", "scraped_at": "2026-02-25T20:02:10.761053Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dwarf_planet-ceres.dawn-fc.urvara-mosaics:document::1.0", "title": "Ceres Urvara Dawn FC C2E mosaics document collection", "description": "Document collection for the Ceres Urvara Dawn FC C2E mosaics bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn-fc.urvara-mosaics/document/collection_dwarf_planet-ceres.dawn-fc.urvara-mosaics_document.xml", "scraped_at": "2026-02-25T20:02:10.761057Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo-dds:data::1.0", "title": "Galileo Dust Detection System data collection", "description": "This is the data collection for the galileo-dds bundle. This data set contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission. Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO"], "targets": ["Dust", "Calibration Target"], "instruments": ["GALILEO DUST DETECTION SYSTEM"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1989-10-18", "stop_date": "2003-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/collection_galileo-dds_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/data/collection_galileo-dds_data.xml", "scraped_at": "2026-02-25T20:02:10.761062Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo-dds:document::1.0", "title": "Galileo Dust Detection System Document Collection", "description": "This is the document collection for the galileo-dds bundle. This data set contains the data from the Galileo dust detector system (GDDS) from start of mission through the end of mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["GALILEO"], "targets": ["Calibration Target", "Dust"], "instruments": ["GALILEO DUST DETECTION SYSTEM"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": "1989-10-18", "stop_date": "2003-09-21", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/collection_galileo-dds_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/galileo-dds/document/collection_galileo-dds_document.xml", "scraped_at": "2026-02-25T20:02:10.761068Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra:data::1.0", "title": "Data collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0", "description": "Data collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "2005-06-30", "stop_date": "2009-10-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/collection_gbo.ast-neo.reddy.irtf.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/data/collection_gbo.ast-neo.reddy.irtf.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761074Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.reddy.irtf.spectra:document::1.0", "title": "Document collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0", "description": "Document collection for the Reddy IRTF Near Earth Asteroid Spectra Bundle V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/collection_gbo.ast-neo.reddy.irtf.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.reddy.irtf.spectra/document/collection_gbo.ast-neo.reddy.irtf.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761079Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra:data::1.0", "title": "Data Collection for the gbo.ast-neo.sanchez-reddy.spectra bundle", "description": "Data Collection for the gbo.ast-neo.sanchez-reddy.spectra bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["2019 JX7", "2016 CO247", "2007 EC", "2020 HS6", "2014 WZ120", "(438908) 2009 XO", "2016 EV27", "2019 JL3", "(501647) 2014 SD224", "2012 ER14", "2002 LY1", "2006 XY", "2017 BY93", "(459872) 2014 EK24", "2019 UO13", "2020 KC5", "2016 BC14", "2014 WY119", "(85990) 1999 JV6", "2020 SN", "2020 YQ3", "2019 RC", "2001 YV3", "2013 XA22", "2016 CM194", "2015 LK24", "2019 AN5", "2014 VQ", "2015 AK45", "2014 PL51", "2016 EB1", "2014 PR62", "(469737) 2005 NW44", "(163348) 2002 NN4", "(496816) 1989 UP", "2017 CR32", "2015 HA1", "2019 GT3", "2015 WF13", "2017 OL1", "2017 RR15", "(528159) 2008 HS3", "2014 SS1", "2016 EF28", "2016 FV13", "2016 LG", "2015 BC", "2019 YM3", "(436724) 2011 UW158", "2015 TB25", "2005 TF", "2017 BS5", "2020 ST1", "2017 OP68", "2018 XG5", "2020 DZ1", "2014 WN4", "2015 TF", "2005 NE21", "2017 WX12", "2020 RO6", "(412995) 1999 LP28", "2018 XS4", "2015 BK509", "2015 FL", "2019 SH6", "2017 FU64", "(471240) 2011 BT15", "(467336) 2002 LT38", "2017 DR34", "2015 XC", "(515767) 2015 JA2", "2015 VE66", "2015 AP43", "2014 VH2", "(363599) 2004 FG11", "2016 GU", "2015 NA14", "2013 CW32", "2000 TU28", "2017 BW", "(437844) 1999 MN"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "2013-10-14", "stop_date": "2021-01-15", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/collection_gbo.ast-neo.sanchez-reddy.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/data/collection_gbo.ast-neo.sanchez-reddy.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761089Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-neo.sanchez-reddy.spectra:document::1.0", "title": "Document collection for the gbo.ast-neo.sanchez-reddy.spectra bundle", "description": "Document collection for the gbo.ast-neo.sanchez-reddy.spectra bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["2019 JX7", "2016 CO247", "2007 EC", "2020 HS6", "2014 WZ120", "(438908) 2009 XO", "2016 EV27", "2019 JL3", "(501647) 2014 SD224", "2012 ER14", "2002 LY1", "2006 XY", "2017 BY93", "(459872) 2014 EK24", "2019 UO13", "2020 KC5", "2016 BC14", "2014 WY119", "(85990) 1999 JV6", "2020 SN", "2020 YQ3", "2019 RC", "2001 YV3", "2013 XA22", "2016 CM194", "2015 LK24", "2019 AN5", "2014 VQ", "2015 AK45", "2014 PL51", "2016 EB1", "2014 PR62", "(469737) 2005 NW44", "(163348) 2002 NN4", "(496816) 1989 UP", "2017 CR32", "2015 HA1", "2019 GT3", "2015 WF13", "2017 OL1", "2017 RR15", "(528159) 2008 HS3", "2014 SS1", "2016 EF28", "2016 FV13", "2016 LG", "2015 BC", "2019 YM3", "(436724) 2011 UW158", "2015 TB25", "2005 TF", "2017 BS5", "2020 ST1", "2017 OP68", "2018 XG5", "2020 DZ1", "2014 WN4", "2015 TF", "2005 NE21", "2017 WX12", "2020 RO6", "(412995) 1999 LP28", "2018 XS4", "2015 BK509", "2015 FL", "2019 SH6", "2017 FU64", "(471240) 2011 BT15", "(467336) 2002 LT38", "2017 DR34", "2015 XC", "(515767) 2015 JA2", "2015 VE66", "2015 AP43", "2014 VH2", "(363599) 2004 FG11", "2016 GU", "2015 NA14", "2013 CW32", "2000 TU28", "2017 BW", "(437844) 1999 MN"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/collection_gbo.ast-neo.sanchez-reddy.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-neo.sanchez-reddy.spectra/document/collection_gbo.ast-neo.sanchez-reddy.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761097Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.hardersen.spectra:data::1.0", "title": "Hardersen IRTF NIR Asteroid Reflectance Spectra V1.0", "description": "Data collection for Hardersen IRTF NIR Asteroid Reflectance Spectra V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "2001-04-29", "stop_date": "2015-01-19", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/collection_gbo.ast.hardersen.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/data/collection_gbo.ast.hardersen.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761102Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.hardersen.spectra:document::1.0", "title": "Document Collection for the Hardersen IRTF NIR Asteroid Reflectance Spectra Bundle", "description": "Document Collection for the Hardersen IRTF NIR Asteroid Reflectance Spectra Bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/collection_gbo.ast.hardersen.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.hardersen.spectra/document/collection_gbo.ast.hardersen.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761107Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra:data::1.0", "title": "Data Collection for the Rivkin Three Micron Asteroid Data Bundle", "description": "This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids", "Phobos", "Deimos"], "instruments": ["IRTF 3.2m", "RC2", "NSFCam", "Infrared cold coronagraph (CoCo)"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/collection_gbo.ast.rivkin.3-micron-spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/data/collection_gbo.ast.rivkin.3-micron-spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761115Z", "keywords": ["3-micron data", "asteroids", "Phobos", "Deimos"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.rivkin.3-micron-spectra:document::1.0", "title": "Document Collection for the Rivkin Three Micron Asteroid Data Bundle", "description": "This data set includes 3-micron spectra of asteroids and other small bodies taken by Andy Rivkin and collaborators.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["Multiple Asteroids", "Phobos", "Deimos"], "instruments": ["IRTF 3.2m", "RC2", "NSFCam", "Infrared cold coronagraph (CoCo)"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/collection_gbo.ast.rivkin.3-micron-spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.rivkin.3-micron-spectra/document/collection_gbo.ast.rivkin.3-micron-spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761124Z", "keywords": ["3-micron data", "asteroids", "Phobos", "Deimos"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.s3os2.spectra:data::1.0", "title": "Data Collection for the Small Solar System Objects Spectroscopic Survey V1.0", "description": "Data collection for Small Solar System Objects Spectroscopic Survey V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": [], "instruments": ["1.52-m spectrographic Cassegrain/Coude reflector", "ESO Boller and Chivens Spectrograph"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": ["Data"], "start_date": "1996-11-17", "stop_date": "2000-10-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/collection_gbo.ast.s3os2.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/data/collection_gbo.ast.s3os2.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761130Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.s3os2.spectra:document::1.0", "title": "Document collection for the Small Solar System Objects Spectroscopic Survey V1.0", "description": "Document collection for Small Solar System Objects Spectroscopic Survey V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": [], "instruments": ["1.52-m spectrographic Cassegrain/Coude reflector", "ESO Boller and Chivens Spectrograph"], "instrument_hosts": ["European Southern Observatory-La Silla"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/collection_gbo.ast.s3os2.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.s3os2.spectra/document/collection_gbo.ast.s3os2.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761135Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteorites.friability:data::1.0", "title": "Data collection for Friability of Meteorites V1.0", "description": "Data collection for Friability of Meteorites V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["Aguas Zarcas", "New Concord", "Murchison", "Zhob", "Richardton", "Tamdakht", "Allende"], "instruments": ["PTF 100 Friability Tester"], "instrument_hosts": ["EM3 Lab"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/collection_gbo.meteorites.friability_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/data/collection_gbo.meteorites.friability_data.xml", "scraped_at": "2026-02-25T20:02:10.761140Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.meteorites.friability:document::1.0", "title": "Document collection for Friability of Meteorites V1.0", "description": "Document collection for Friability of Meteorites V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["Aguas Zarcas", "New Concord", "Murchison", "Zhob", "Richardton", "Tamdakht", "Allende"], "instruments": ["PTF 100 Friability Tester"], "instrument_hosts": ["EM3 Lab"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/collection_gbo.meteorites.friability_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.meteorites.friability_v1.0/document/collection_gbo.meteorites.friability_document.xml", "scraped_at": "2026-02-25T20:02:10.761146Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.pluto.benecchi-etal.occultation:data::1.0", "title": "Data collection for Occultation of star P445.3 by Pluto", "description": "Data collection for Occultation of star P445.3 by Pluto", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["(134340) Pluto", "(134340) Pluto"], "instruments": ["6.5-m Single Mirror (MMT)", "POETS: Portable Occultation, Eclipse, and Transit System", "USNO 1.55m", "POETS: Portable Occultation, Eclipse, and Transit System", "8.4/8.4-m Large Binocular Telescope (LBT)", "LBC Guide Camera", "MRO 2.4m", "POETS: Portable Occultation, Eclipse, and Transit System", "FPO 0.32m", "SBIG ST-10XME", "6.5-m Single Mirror (MMT)", "PISCES"], "instrument_hosts": ["MMT Observatory", "US Naval Observatory", "Large Binocular Telescope Observatory", "Magdelena Ridge Observatory", "Fremont Peak Observatory", "MMT Observatory"], "data_types": ["Data"], "start_date": "2007-03-18", "stop_date": "2007-03-18", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/collection_gbo.pluto.benecchi-etal.occultation_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/data/collection_gbo.pluto.benecchi-etal.occultation_data.xml", "scraped_at": "2026-02-25T20:02:10.761156Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.pluto.benecchi-etal.occultation:document::1.0", "title": "Document collection for Occultation of star P445.3 by Pluto", "description": "Document collection for Occultation of star P445.3 by Pluto V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["(134340) Pluto", "(134340) Pluto"], "instruments": ["6.5-m Single Mirror (MMT)", "POETS: Portable Occultation, Eclipse, and Transit System", "USNO 1.55m", "POETS: Portable Occultation, Eclipse, and Transit System", "8.4/8.4-m Large Binocular Telescope (LBT)", "LBC Guide Camera", "MRO 2.4m", "POETS: Portable Occultation, Eclipse, and Transit System", "FPO 0.32m", "SBIG ST-10XME", "6.5-m Single Mirror (MMT)", "PISCES"], "instrument_hosts": ["MMT Observatory", "US Naval Observatory", "Large Binocular Telescope Observatory", "Magdelena Ridge Observatory", "Fremont Peak Observatory", "MMT Observatory"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/collection_gbo.pluto.benecchi-etal.occultation_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.pluto.benecchi-etal.occultation/document/collection_gbo.pluto.benecchi-etal.occultation_document.xml", "scraped_at": "2026-02-25T20:02:10.761163Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.grs:calibration::1.0", "title": "The NEAR Gamma-Ray Spectrometer (GRS) Calibration Collection", "description": "This collection contains all the calibration files for the the NEAR GRS instrument data.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros"], "instruments": ["GAMMA RAY SPECTROMETER"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Data"], "start_date": "2000-01-11", "stop_date": "2001-08-15", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/collection_near.grs_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/calibration/collection_near.grs_calibration.xml", "scraped_at": "2026-02-25T20:02:10.761167Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.grs:data_calibrated::1.0", "title": "The NEAR Gamma-Ray Spectrometer (GRS) Data Calibrated Collection", "description": "This collection contains all the calibrated data collected from the GRS instrument during the NEAR mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "Earth", "SOLAR_SYSTEM"], "instruments": ["GAMMA RAY SPECTROMETER"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Data"], "start_date": "2000-01-11", "stop_date": "2001-08-15", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/collection_near.grs_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/data_calibrated/collection_near.grs_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.761172Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.grs:data_raw::1.0", "title": "The NEAR Gamma-Ray Spectrometer (GRS) Data Raw Collection", "description": "This collection contains all the raw data collected from the GRS instrument during the NEAR mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "Earth", "SOLAR_SYSTEM"], "instruments": ["GAMMA RAY SPECTROMETER"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Data"], "start_date": "1997-08-27", "stop_date": "2001-02-28", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/collection_near.grs_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/data_raw/collection_near.grs_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.761176Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.grs:document::1.0", "title": "The NEAR Gamma-Ray Spectrometer (GRS) Document Collection", "description": "This collection contains all of the documentation pertaining to the NEAR GRS instrument data bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "Earth", "SOLAR_SYSTEM"], "instruments": ["GAMMA RAY SPECTROMETER"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Document"], "start_date": "2000-01-11", "stop_date": "2001-08-15", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/document/collection_near.grs_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_grs/document/collection_near.grs_document.xml", "scraped_at": "2026-02-25T20:02:10.761201Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.nlr:browse::1.0", "title": "The NEAR LASER RANGEFINDER Browse Collection", "description": "This browse collection contains a series of JPG files that provide a simple method for browsing through the NEAR NLR archive. Each JPEG image represents a Level 2 time series profile data product found on the volume.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "SOLAR_SYSTEM"], "instruments": ["NEAR LASER RANGEFINDER for NEAR"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Browse"], "start_date": "2000-02-28", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/collection_near.nlr_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/browse/collection_near.nlr_browse.xml", "scraped_at": "2026-02-25T20:02:10.761206Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.nlr:data_calibrated::1.0", "title": "The NEAR NEAR Laser Rangefinder (NLR) Along-Track Time Series Level 2 data", "description": "This collection contains the NEAR Laser Rangefinder (NLR) Level 2 Data Products. These products include the along-track profiles of NLR data in SI units, together with spacecraft position, orientation, and timing data. The radius of 433 Eros with respect to its center of mass is the primary profile parameter", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "SOLAR_SYSTEM"], "instruments": ["NEAR LASER RANGEFINDER for NEAR"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Data"], "start_date": "2000-02-28", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/collection_near.nlr_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/data_calibrated/collection_near.nlr_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.761210Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.nlr:data_raw::1.0", "title": "The NEAR Laser Rangefinder (NLR) Data Raw Collection", "description": "This collection contains the NEAR Laser Rangefinder (NLR) instrument raw data products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "SOLAR_SYSTEM"], "instruments": ["NEAR LASER RANGEFINDER for NEAR"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Data"], "start_date": "1996-04-25", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/collection_near.nlr_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/data_raw/collection_near.nlr_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.761213Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.nlr:document::1.0", "title": "The NEAR Laser Rangefinder (NLR) document collection", "description": "This collection contains all the documentation needed to use the NEAR NLR instrument bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Near Earth Asteroid Rendezvous"], "targets": ["(433) Eros", "SOLAR_SYSTEM"], "instruments": ["NEAR LASER RANGEFINDER for NEAR"], "instrument_hosts": ["Near Earth Asteroid Rendezvous"], "data_types": ["Document"], "start_date": "1996-04-19", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/document/collection_near.nlr_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near.nlr/document/collection_near.nlr_document.xml", "scraped_at": "2026-02-25T20:02:10.761217Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:neowise_diameters_albedos:data::2.0", "title": "NEOWISE Diameters and Albedos V2.0", "description": "This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEOWISE"], "targets": ["Multiple Asteroids", "SATELLITE", "COMET"], "instruments": ["WISE Camera"], "instrument_hosts": ["Wide-Field Infrared Survey Explorer"], "data_types": ["Data"], "start_date": "2010-01-07", "stop_date": "2016-12-13", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/collection_neowise_diameters_albedos_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/data/collection_neowise_diameters_albedos_data.xml", "scraped_at": "2026-02-25T20:02:10.761222Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:neowise_diameters_albedos:document::2.0", "title": "NEOWISE Diameters and Albedos V2.0", "description": "This PDS data set represents a compilation of published diameters, optical albedos, near-infrared albedos, and beaming parameters for minor planets detected by NEOWISE during the fully cryogenic, 3-band cryo, post-cryo and NEOWISE-Reactivation Years 1 through 3 operations. It contains data covering near-Earth asteroids, Main Belt asteroids, active Main Belt objects, Hildas, Jupiter Trojans, Centaurs, and Jovian and Saturnian irregular satellites. Methodology for physical property determination is described in the referenced articles.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEOWISE"], "targets": ["Multiple Asteroids", "SATELLITE", "COMET"], "instruments": ["WISE Camera"], "instrument_hosts": ["Wide-Field Infrared Survey Explorer"], "data_types": ["Document"], "start_date": "2010-01-07", "stop_date": "2016-12-13", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/collection_neowise_diameters_albedos_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/neowise_diameters_albedos_V2_0/document/collection_neowise_diameters_albedos_document.xml", "scraped_at": "2026-02-25T20:02:10.761227Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ast-bennu.simulated-shape-models:data::1.0", "title": "OSIRIS-REx Simulated Test Models V1.0", "description": "This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"], "targets": ["(101955) Bennu"], "instruments": ["Simulation", "Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": ["OSIRIS-REx"], "data_types": ["Data"], "start_date": "2016-02-03", "stop_date": "2016-10-21", "browse_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/collection_orex.ast-bennu.simulated-shape-models_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/data/collection_orex.ast-bennu.simulated-shape-models_data.xml", "scraped_at": "2026-02-25T20:02:10.761231Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ast-bennu.simulated-shape-models:document::1.0", "title": "OSIRIS-REx Simulated Test Models V1.0", "description": "This dataset contains the data used by the OSIRIS-REx mission to test and validate the software tools needed to generate shape models of the target asteroid, Bennu. Several synthetic truth models were created as simulated Bennu asteroids for testing. This package contains these truth models as well as the resulting models that were generated by the software during the test.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpreation, Resource Identification, Security, Regolith Explorer (osiris-rex) Mission"], "targets": ["(101955) Bennu"], "instruments": ["Simulation", "Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": ["OSIRIS-REx"], "data_types": ["Document"], "start_date": "2016-02-03", "stop_date": "2016-10-21", "browse_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/collection_orex.ast-bennu.simulated-shape-models_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/certified/orex.ast-bennu.simulated-shape-models_V1_0/document/collection_orex.ast-bennu.simulated-shape-models_document.xml", "scraped_at": "2026-02-25T20:02:10.761235Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.grs:data_raw::2.0", "title": "Collection of raw data products for the Psyche Gamma Ray Spectrometer instrument", "description": "This data collection contains the raw spectrometer and engineering products returned by the Gamma Ray Spectrometer (GRS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission. These data products are formatted as binary tables of time series data. The Psyche mission is a planetary mission to investigate the Psyche asteroid and accomplish several scientific objectives, among them determining whether the asteroid is the exposed core of a proto-planetary body.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Psyche Mission"], "targets": ["Solar System"], "instruments": ["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"], "instrument_hosts": ["The Psyche Spacecraft"], "data_types": ["Data"], "start_date": "2025-04-01", "stop_date": "2025-06-30", "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/collection_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.761241Z", "keywords": ["Psyche", "Gamma Ray Spectrometer", "GRS"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.grs:document::2.0", "title": "Documentation for the Psyche Gamma Ray Spectrometer Instrument, Raw through Calibrated Products", "description": "This documentation collection includes documentation describing the raw and calibrated data collections from the Gamma Ray Spectrometer (GRS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Psyche Mission"], "targets": [], "instruments": ["The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft"], "instrument_hosts": ["The Psyche Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.grs_v2.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.761245Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps:data::2.0", "title": "Data collection for Ceres SPC Shape and Regional Models V2.0", "description": "Data collection for Ceres SPC Shape and Regional Models V2.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["The Dawn Mission To Vesta And Ceres"], "targets": ["1 Ceres"], "instruments": ["Framing Camera 2 (FC2) for Dawn", "Framing Camera 1 (FC1) for Dawn"], "instrument_hosts": ["The Dawn Spacecraft", "The Dawn Spacecraft"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/collection_dwarf_planet-ceres.dawn.shape-models-maps_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/data/collection_dwarf_planet-ceres.dawn.shape-models-maps_data.xml", "scraped_at": "2026-02-25T20:02:10.761249Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dwarf_planet-ceres.dawn.shape-models-maps:document::2.0", "title": "Ceres SPC Shape and Regional Models V1.0", "description": "Inventory of the document collection for this bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn Mission To Vesta And Ceres"], "targets": ["(1) Ceres"], "instruments": ["FRAMING CAMERA 2", "Framing Camera 1"], "instrument_hosts": ["DAWN", "DAWN"], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/collection_dwarf_planet-ceres.dawn.shape-models-maps_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/dwarf_planet-ceres.dawn.shape-models-maps_v2.0/document/collection_dwarf_planet-ceres.dawn.shape-models-maps_document.xml", "scraped_at": "2026-02-25T20:02:10.761253Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.mission:context::1.0", "title": "Psyche: Context", "description": "This collection contains the context products applicable to the Psyche mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Psyche Mission"], "targets": [], "instruments": ["The Psyche Imager (PMI) aboard the Psyche spacecraft", "The Psyche Gamma Ray Spectrometer (GRS) aboard the Psyche spacecraft", "The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft", "The Psyche Magnetometer (MAG) aboard the Psyche spacecraft", "Psyche Radio Science Subsystem (RSS)"], "instrument_hosts": ["The Psyche Spacecraft"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/collection_context.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.761258Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.mission:document::1.0", "title": "Collection of documents: Psyche Mission Bundle", "description": "This collection contains the documents applicable to the Psyche mission as a whole.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.761262Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.mission:xml_schema::1.0", "title": "Collection of schema: Psyche Mission Bundle XML Schema", "description": "Collection of XML Schema products applicable to the Psyche archive.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/collection_xml_schema.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.mission/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.761269Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.ns:data_raw::2.0", "title": "Collection of raw data products for the Psyche Neutron Spectrometer instrument", "description": "This data collection contains the raw spectrometer and engineering products returned by the Neutron Spectrometer (NS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission. These data products are formatted as binary tables of time series data. The Psyche mission is a planetary mission to investigate the Psyche asteroid and accomplish several scientific objectives, among them determining whether the asteroid is the exposed core of a proto-planetary body.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Psyche Mission"], "targets": ["Solar System"], "instruments": ["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"], "instrument_hosts": ["The Psyche Spacecraft"], "data_types": ["Data"], "start_date": "2025-04-01", "stop_date": "2025-06-30", "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/collection_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/data_raw/collection_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.761275Z", "keywords": ["Psyche", "Neutron Spectrotometer"], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:psyche.ns:document::2.0", "title": "Documentation for the Psyche Neutron Spectrometer Instrument, Raw through Calibrated Products", "description": "This documentation collection includes documentation describing the raw and calibrated data collections from the Neutron Spectrometer (NS) instrument flown aboard the Psyche spacecraft of NASA's Psyche mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Psyche Mission"], "targets": [], "instruments": ["The Psyche Neutron Spectrometer (NS) aboard the Psyche spacecraft"], "instrument_hosts": ["The Psyche Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/psyche/psyche.ns_v2.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.761279Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-dione.cassini.shape-models-maps:data::1.0", "title": "Data collection for Dione SPC Shape Models and Assessment Products V1.0", "description": "Data collection for Dione SPC Shape Models and Assessment Products V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Dione"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/collection_satellite-dione.cassini.shape-models-maps_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/data/collection_satellite-dione.cassini.shape-models-maps_data.xml", "scraped_at": "2026-02-25T20:02:10.761283Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-dione.cassini.shape-models-maps:document::1.0", "title": "Document collection for Dione SPC Shape Models and Assessment Products V1.0", "description": "Document collection for Dione SPC Shape Models and Assessment Products V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Dione"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/collection_satellite-dione.cassini.shape-models-maps_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-dione.cassini.shape-models-maps/document/collection_satellite-dione.cassini.shape-models-maps_document.xml", "scraped_at": "2026-02-25T20:02:10.761286Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-mimas.cassini.shape-models-maps:data::1.0", "title": "Data collection for Mimas SPC Shape Model and Assessment Products V1.0", "description": "Data collection for Mimas SPC Shape Model and Assessment Products V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Mimas"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/collection_satellite-mimas.cassini.shape-models-maps_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/data/collection_satellite-mimas.cassini.shape-models-maps_data.xml", "scraped_at": "2026-02-25T20:02:10.761291Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-mimas.cassini.shape-models-maps:document::1.0", "title": "Document collection for Mimas SPC Shape Model and Assessment Products V1.0", "description": "Document collection for Mimas SPC Shape Model and Assessment Products V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Mimas"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/collection_satellite-mimas.cassini.shape-models-maps_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-mimas.cassini.shape-models-maps/document/collection_satellite-mimas.cassini.shape-models-maps_document.xml", "scraped_at": "2026-02-25T20:02:10.761294Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-rhea.cassini.shape-models-maps:data::1.0", "title": "Data collection for Rhea SPC Shape Model and Assessment Products V1.0", "description": "Data collection for Rhea SPC Shape Model and Assessment Products V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Rhea"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/collection_satellite-rhea.cassini.shape-models-maps_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/data/collection_satellite-rhea.cassini.shape-models-maps_data.xml", "scraped_at": "2026-02-25T20:02:10.761299Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-rhea.cassini.shape-models-maps:document::1.0", "title": "Document collection for Rhea SPC Shape Model and Assessment Products V1.0", "description": "Document collection for Rhea SPC Shape Model and Assessment Products V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Rhea"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/collection_satellite-rhea.cassini.shape-models-maps_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-rhea.cassini.shape-models-maps/document/collection_satellite-rhea.cassini.shape-models-maps_document.xml", "scraped_at": "2026-02-25T20:02:10.761303Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-tethys.cassini.shape-models-maps:data::1.0", "title": "Data collection for Tethys SPC Shape Models and Assessment Products V1.0", "description": "Data collection for Tethys SPC Shape Models and Assessment Products V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Tethys"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/collection_satellite-tethys.cassini.shape-models-maps_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/data/collection_satellite-tethys.cassini.shape-models-maps_data.xml", "scraped_at": "2026-02-25T20:02:10.761306Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-tethys.cassini.shape-models-maps:document::1.0", "title": "Document collection for Tethys SPC Shape Models and Assessment Products V1.0", "description": "Document collection for Tethys SPC Shape Models and Assessment Products V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-Huygens"], "targets": ["Tethys"], "instruments": ["Imaging Science Subsystem - Wide Angle for CO", "Imaging Science Subsystem - Narrow Angle for CO"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/collection_satellite-tethys.cassini.shape-models-maps_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-tethys.cassini.shape-models-maps/document/collection_satellite-tethys.cassini.shape-models-maps_document.xml", "scraped_at": "2026-02-25T20:02:10.761310Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:small_bodies.stooke.maps:data::1.0", "title": "Data collection for the Stooke small bodies maps bundle", "description": "Data Collection for the Stooke small bodies maps bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo", "Near Earth Asteroid Rendezvous Mission", "International Rosetta Mission", "Hayabusa Mission", "Viking Project", "Mars Global Surveyor", "Mars Express", "Mars Reconnaissance Orbiter", "The Mariner Mars '71 (Mariner 9) Mission", "Voyager"], "targets": ["103P/Hartley 2", "19P/Borrelly", "243 Ida", "25143 Itokawa", "253 Mathilde", "2867 Steins", "433 Eros", "81P/Wild 2", "951 Gaspra", "Amalthea", "Phobos", "Deimos", "Epimetheus", "Hyperion"], "instruments": ["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker", "Solid State Imaging System for GO", "The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter", "The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter", "The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa", "Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A", "Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B", "Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A", "Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B", "Mars Global Surveyor Spacecraft Mars Orbiter Camera", "Mars Express Orbiter High Resolution Stereo Camera", "Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment", "Imaging Science Subsystem for MR9", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"], "instrument_hosts": ["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft", "GALILEO ORBITER", "The Rosetta Orbiter Spacecraft", "The Hayabusa Spacecraft", "The Viking Orbiter 1 Spacecraft", "The Viking Orbiter 2 Spacecraft", "The Mars Global Surveyor Spacecraft", "Mars Express", "Mars Reconnaissance Orbiter", "The Mariner 9 Spacecraft", "VOYAGER 1", "VOYAGER 2"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/collection_small_bodies.stooke.maps_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/data/collection_small_bodies.stooke.maps_data.xml", "scraped_at": "2026-02-25T20:02:10.761321Z", "keywords": ["maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:small_bodies.stooke.maps:document::1.0", "title": "Document collection for the Stooke small bodies maps bundle", "description": "Document Collection for the Stooke small bodies maps bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo", "Near Earth Asteroid Rendezvous Mission", "International Rosetta Mission", "Hayabusa Mission", "Viking Project", "Mars Global Surveyor", "Mars Express", "Mars Reconnaissance Orbiter", "The Mariner Mars '71 (Mariner 9) Mission", "Voyager"], "targets": ["103P/Hartley 2", "19P/Borrelly", "243 Ida", "25143 Itokawa", "253 Mathilde", "2867 Steins", "433 Eros", "81P/Wild 2", "951 Gaspra", "Amalthea", "Phobos", "Deimos", "Epimetheus", "Hyperion"], "instruments": ["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker", "Solid State Imaging System for GO", "The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter", "The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter", "The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa", "Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A", "Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B", "Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A", "Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B", "Mars Global Surveyor Spacecraft Mars Orbiter Camera", "Mars Express Orbiter High Resolution Stereo Camera", "Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment", "Imaging Science Subsystem for MR9", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"], "instrument_hosts": ["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft", "GALILEO ORBITER", "The Rosetta Orbiter Spacecraft", "The Hayabusa Spacecraft", "The Viking Orbiter 1 Spacecraft", "The Viking Orbiter 2 Spacecraft", "The Mars Global Surveyor Spacecraft", "Mars Express", "Mars Reconnaissance Orbiter", "The Mariner 9 Spacecraft", "VOYAGER 1", "VOYAGER 2"], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/collection_small_bodies.stooke.maps_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/document/collection_small_bodies.stooke.maps_document.xml", "scraped_at": "2026-02-25T20:02:10.761331Z", "keywords": ["maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:small_bodies.stooke.maps:miscellaneous::1.0", "title": "Miscellanous collection for the Stooke small bodies maps bundle", "description": "Miscellanous Collection for the Stooke small bodies maps bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo", "Near Earth Asteroid Rendezvous Mission", "International Rosetta Mission", "Hayabusa Mission", "Viking Project", "Mars Global Surveyor", "Mars Express", "Mars Reconnaissance Orbiter", "The Mariner Mars '71 (Mariner 9) Mission", "Voyager"], "targets": ["103P/Hartley 2", "19P/Borrelly", "243 Ida", "25143 Itokawa", "253 Mathilde", "2867 Steins", "433 Eros", "81P/Wild 2", "951 Gaspra", "Amalthea", "Phobos", "Deimos", "Epimetheus", "Hyperion"], "instruments": ["The Multi-Spectral Imager (MSI) for the NEAR Shoemaker", "Solid State Imaging System for GO", "The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Wide Angle Camera (WAC) for the Rosetta Orbiter", "The Optical, Spectroscopic, and Infrared Remote Imaging System (OSIRIS) Narrow Angle Camera (NAC) for the Rosetta Orbiter", "The Asteroid Multi-band Imaging Camera (AMICA) for Hayabusa", "Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera A", "Viking Orbiter 1 Spacecraft Visual Imaging Subsystem - Camera B", "Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera A", "Viking Orbiter 2 Spacecraft Visual Imaging Subsystem - Camera B", "Mars Global Surveyor Spacecraft Mars Orbiter Camera", "Mars Express Orbiter High Resolution Stereo Camera", "Mars Reconnaissance Orbiter High Resolution Imaging Science Experiment", "Imaging Science Subsystem for MR9", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "IMAGING SCIENCE SUBSYSTEM - WIDE ANGLE for VG2"], "instrument_hosts": ["The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft", "GALILEO ORBITER", "The Rosetta Orbiter Spacecraft", "The Hayabusa Spacecraft", "The Viking Orbiter 1 Spacecraft", "The Viking Orbiter 2 Spacecraft", "The Mars Global Surveyor Spacecraft", "Mars Express", "Mars Reconnaissance Orbiter", "The Mariner 9 Spacecraft", "VOYAGER 1", "VOYAGER 2"], "data_types": ["Miscellaneous"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/collection_small_bodies.stooke.maps_miscellaneous.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.maps/miscellaneous/collection_small_bodies.stooke.maps_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.761340Z", "keywords": ["maps"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:small_bodies.stooke.shape-models:data::1.0", "title": "Data Collection for the Stooke small bodies shape models bundle", "description": "Data Collection for the Stooke small bodies shape models bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["243 Ida", "253 Mathilde", "951 Gaspra", "Pandora", "Amalthea", "Thebe", "Larissa", "Proteus", "Janus", "Epimetheus", "Prometheus", "1P/Halley"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "The Halley Multicolor Camera (HMC) for Giotto", "The Television System (TVS) for Vega 1", "The Television System (TVS) for Vega 2", "Solid State Imaging System for GO", "The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"], "instrument_hosts": ["VOYAGER 1", "VOYAGER 2", "The Giotto Spacecraft", "The Vega 1 Spacecraft", "The Vega 2 Spacecraft", "GALILEO ORBITER", "The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/collection_small_bodies.stooke.shape-models_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/data/collection_small_bodies.stooke.shape-models_data.xml", "scraped_at": "2026-02-25T20:02:10.761348Z", "keywords": ["shape models"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:small_bodies.stooke.shape-models:document::1.0", "title": "Document collection for the Stooke small bodies shape models bundle", "description": "Document Collection for the Stooke small bodies shape models bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["243 Ida", "253 Mathilde", "951 Gaspra", "Pandora", "Amalthea", "Thebe", "Larissa", "Proteus", "Janus", "Epimetheus", "Prometheus", "1P/Halley"], "instruments": ["IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG1", "IMAGING SCIENCE SUBSYSTEM - NARROW ANGLE for VG2", "The Halley Multicolor Camera (HMC) for Giotto", "The Television System (TVS) for Vega 1", "The Television System (TVS) for Vega 2", "Solid State Imaging System for GO", "The Multi-Spectral Imager (MSI) for the NEAR Shoemaker"], "instrument_hosts": ["VOYAGER 1", "VOYAGER 2", "The Giotto Spacecraft", "The Vega 1 Spacecraft", "The Vega 2 Spacecraft", "GALILEO ORBITER", "The Near-Earth Asteroid Rendezvous (NEAR) Shoemaker Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/collection_small_bodies.stooke.shape-models_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/small_bodies.stooke.shape-models/document/collection_small_bodies.stooke.shape-models_document.xml", "scraped_at": "2026-02-25T20:02:10.761355Z", "keywords": ["shape models"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ulysses-udds:data::1.0", "title": "data collection for the \"ULYSSES DUST DETECTION SYSTEM\" bundle", "description": "This is the data collection for the ulysses.udds bundle. This collection contains the data from the Ulysses dust detector system (UDDS) from start of mission through the end of mission, 1990-2007. (As the dust detector was turned off after Nov. 30, 2007, this is the last date for which UDDS data is recorded.) Included are the dust impact data, noise data, laboratory calibration data, and location and orientation of the spacecraft and instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["ULYSSES"], "targets": ["Calibration Target", "Dust"], "instruments": ["ULYSSES DUST DETECTION SYSTEM", "UNIFIED RADIO AND PLASMA WAVE EXPERIMENT"], "instrument_hosts": ["ULYSSES", "ULYSSES"], "data_types": ["Data"], "start_date": "1990-01-01", "stop_date": "2007-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/collection_ulysses.udds_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/data/collection_ulysses.udds_data.xml", "scraped_at": "2026-02-25T20:02:10.761359Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:ulysses-udds:document::1.0", "title": "document collection for the \"ULYSSES DUST DETECTION SYSTEM\" bundle", "description": "This is the document collection for the ulysses.udds bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["ULYSSES"], "targets": ["Calibration Target", "Dust"], "instruments": ["ULYSSES DUST DETECTION SYSTEM", "UNIFIED RADIO AND PLASMA WAVE EXPERIMENT"], "instrument_hosts": ["ULYSSES", "ULYSSES"], "data_types": ["Document"], "start_date": "1990-01-01", "stop_date": "2007-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/collection_ulysses.udds_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/ulysses/ulysses.udds/document/collection_ulysses.udds_document.xml", "scraped_at": "2026-02-25T20:02:10.761364Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.tagcams:data_hkl0::12.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) raw housekeeping (or status) data products.", "description": "This collection contains the housekeeping data products produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/collection_tagcams_hkl0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl0/collection_tagcams_hkl0.xml", "scraped_at": "2026-02-25T20:02:10.761370Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.tagcams:data_hkl1::12.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) converted housekeeping (or status) data products.", "description": "This collection contains the converted housekeeping data products produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/collection_tagcams_hkl1.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_hkl1/collection_tagcams_hkl1.xml", "scraped_at": "2026-02-25T20:02:10.761375Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.tagcams:data_raw::13.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) raw image observational data products.", "description": "This collection contains the raw images produced by the TAGCAMS instrument suite onboard the OSIRIS-REx spacecraft. These images were acquired for optical navigation, natural feature tracking, or sample stowage documentation.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/collection_tagcams_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/data_raw/collection_tagcams_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.761381Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.tagcams:document::12.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document", "description": "This collection contains the documents applicable to the OSIRIS-REx Touch-and-Go Camera Suite (TAGCAMS).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/collection_tagcams_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/document/collection_tagcams_document.xml", "scraped_at": "2026-02-25T20:02:10.761386Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.tagcams:miscellaneous::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Touch-and-Go Camera Suite (TAGCAMS) miscellaneous data products.", "description": "This collection contains the raw images produced by the STOWCAM element of the TAGCAMS instrument onboard the OSIRIS-REx spacecraft. These images were acquired for engineering purposes to monitor the state of the sample return capsule.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Miscellaneous"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/collection_tagcams_miscellaneous.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.tagcams_v13.0/miscellaneous/collection_tagcams_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.761391Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msx.mimps:data::1.0", "title": "Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Data Collection", "description": "This collection contains Infrared observations of asteroids serendipitously observed by the Midcourse Space Experiment", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["The Midcourse Space Experiment"], "targets": ["Multiple Asteroids"], "instruments": ["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"], "instrument_hosts": ["The Midcourse Space Experiment (MSX) Spacecraft"], "data_types": ["Data"], "start_date": "1996-04-01", "stop_date": "1997-02-28", "browse_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/collection_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.761396Z", "keywords": [], "processing_level": "Raw | Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msx.mimps:document::1.0", "title": "Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) Document Collection", "description": "This collection contains all the documentation for the Midcourse Space Experiment (MSX) Infrared Minor Planet Survey (MIMPS) bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1996-04-01", "stop_date": "1997-02-28", "browse_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/msx/msx.mimps_v1.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.761400Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msx.zody.dust:browse::1.0", "title": "Midcourse Space Experiment (MSX) Zodiacal Dust Browse Collection", "description": "This collection contains the Midcourse Space Experiment (MSX) Zodiacal Dust browse products as jpeg images that contain plots of the MSX zodiacal data.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["The Midcourse Space Experiment"], "targets": ["Multiple Asteroids"], "instruments": ["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"], "instrument_hosts": ["The Midcourse Space Experiment (MSX) Spacecraft"], "data_types": ["Data"], "start_date": "1986-05-28", "stop_date": "1997-02-04", "browse_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/collection_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/browse/collection_browse.xml", "scraped_at": "2026-02-25T20:02:10.761404Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ovirs:data_calibrated::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) calibrated science spectral data products.", "description": "This collection contains the calibrated (processing level 2 radiometrically calibrated) science spectral data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/collection_ovirs_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_calibrated/collection_ovirs_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.761408Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msx.zody.dust:data::1.0", "title": "Midcourse Space Experiment (MSX) Zodiacal Dust Data Collection", "description": "This collection contains the Midcourse Space Experiment (MSX) mid-infrared emission measurements from the zodiacal dust cloud in spectral bands centered at 8.3 12, 15, and 21 microns.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["The Midcourse Space Experiment"], "targets": ["Multiple Asteroids"], "instruments": ["The Spatial Infrared Imaging Telescope (SPIRIT III) for the Midcourse Space Experiment"], "instrument_hosts": ["The Midcourse Space Experiment (MSX) Spacecraft"], "data_types": ["Data"], "start_date": "1986-05-28", "stop_date": "1997-02-04", "browse_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/collection_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/data/collection_data.xml", "scraped_at": "2026-02-25T20:02:10.761412Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:msx.zody.dust:document::1.0", "title": "Midcourse Space Experiment (MSX) Zodiacal Dust Document Collection", "description": "This is the document collection for the Midcourse Space Experiment (MSX) Zodiacal Dust bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/collection_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/msx/msx.zody.dust_v1.0/document/collection_document.xml", "scraped_at": "2026-02-25T20:02:10.761416Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ovirs:data_hkl0::10.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) raw instrument housekeeping data products.", "description": "This collection contains the raw (processing level 0) instrument housekeeping data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/collection_ovirs_data_hkl0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl0/collection_ovirs_data_hkl0.xml", "scraped_at": "2026-02-25T20:02:10.761420Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ovirs:data_hkl1::10.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) converted instrument housekeeping data products.", "description": "This collection contains the converted (processing level 1) instrument housekeeping data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/collection_ovirs_data_hkl1.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_hkl1/collection_ovirs_data_hkl1.xml", "scraped_at": "2026-02-25T20:02:10.761423Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ovirs:data_raw::10.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) raw science spectral data products.", "description": "This collection contains the raw (processing level 0) science data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/collection_ovirs_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/data_raw/collection_ovirs_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.761428Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ovirs:document::9.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OVIRS Document", "description": "This collection contains the documents applicable to the OSIRIS-REx Visible and Infra-Red Spectrometer (OVIRS) instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/collection_ovirs_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ovirs.v11_0/document/collection_ovirs_document.xml", "scraped_at": "2026-02-25T20:02:10.761432Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-ceres:data-shadr::1.0", "title": "Dawn Ceres ASCII Spherical Harmonic Models Data Collection", "description": "This collection includes ASCII spherical harmonic model of Ceres's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["1 Ceres"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Data"], "start_date": "2015-02-02", "stop_date": "2018-10-31", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/collection-data-shadr-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shadr/collection-data-shadr-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761436Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-ceres:data-shbdr::1.0", "title": "Dawn Ceres Binary Spherical Harmonic Models Data Collection", "description": "This collection includes binary spherical harmonic model of Ceres's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["1 Ceres"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Data"], "start_date": "2015-02-02", "stop_date": "2018-10-31", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/collection-data-shbdr-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/data-shbdr/collection-data-shbdr-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761440Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-ceres:document::1.0", "title": "Dawn Ceres Gravity Science Derived Document Collection", "description": "This collection contains the document files associated with the Dawn Ceres Gravity Science Derived Data Bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["1 Ceres", "4 Vesta", "Mars"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/collection-document-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/document/collection-document-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761444Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-ceres:maps::1.0", "title": "Dawn Ceres Gravity Radio Science Digital Maps Data Collection", "description": "This collection includes radio science digital map files.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["1 Ceres"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Data"], "start_date": "2015-02-02", "stop_date": "2016-09-02", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/collection-maps-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-ceres_v1.0/maps/collection-maps-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761449Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-vesta:data-shadr::1.0", "title": "Dawn Vesta ASCII Spherical Harmonic Model Data Collection", "description": "This collection includes files that contain ASCII spherical harmonic model of Vesta's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["4 Vesta"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Data"], "start_date": "2011-07-13", "stop_date": "2012-07-25", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/collection-data-shadr-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shadr/collection-data-shadr-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761453Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-vesta:data-shbdr::1.0", "title": "Dawn Vesta Binary Spherical Harmonic Model Data Collection", "description": "This collection includes a file that contains binary spherical harmonic model of Vesta's gravity field generated by the Jet Propulsion Laboratory; these results were derived from raw radio tracking data.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["4 Vesta"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Data"], "start_date": "2011-07-13", "stop_date": "2012-07-25", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/collection-data-shbdr-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/data-shbdr/collection-data-shbdr-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761457Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-vesta:document::1.0", "title": "Dawn Vesta Gravity Science Derived Data Bundle Document Collection", "description": "This collection contains the document files associated with the Dawn Vesta Gravity Science Derived Data Bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["1 Ceres", "4 Vesta", "Mars"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/collection-document-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/document/collection-document-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761462Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-der-vesta:maps::1.0", "title": "Dawn Vesta Gravity Radio Science Digital Maps Data Collection", "description": "This collection includes radio science digital map files for Vesta.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["4 Vesta"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Data"], "start_date": "2011-07-13", "stop_date": "2012-07-25", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/collection-maps-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-der-vesta_v1.0/maps/collection-maps-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761466Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.thermal:data_thermal_maps::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Derived Thermal Map Products.", "description": "This collection contains the calibrated (processing level 2 radiometrically calibrated) science spectral data products produced by the OVIRS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS", "OTES", "OCAMS", "OLA"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/collection_data_thermal_maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/data_thermal_maps/collection_data_thermal_maps.xml", "scraped_at": "2026-02-25T20:02:10.761470Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.thermal:document::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document", "description": "This collection contains the documents applicable to the OSIRIS-REx Derived Thermal Map Products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OVIRS", "OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/collection_thermal_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.thermal/document/collection_thermal_document.xml", "scraped_at": "2026-02-25T20:02:10.761474Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.radioscience:document::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Radio Science Documents", "description": "This collection contains the documents applicable to the OSIRIS-REx Radio Science data products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OSIRIS-REx Radio Science (Telecom) Subsystem", "OSIRIS-REx Propulsion Subsystem", "NASA Deep Space Network Radio Science"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/collection_radioscience_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/document/collection_radioscience_document.xml", "scraped_at": "2026-02-25T20:02:10.761480Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.radioscience:naf018_sff::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Small Forces Files", "description": "This collection contains the Small Forces Files calculated for the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["OSIRIS-Rex Spacecraft"], "instruments": ["OSIRIS-REx Propulsion Subsystem"], "instrument_hosts": ["OSIRIS-REx Spacecraft", "DSN"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/collection_radioscience_naf018_sff.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/naf018_sff/collection_radioscience_naf018_sff.xml", "scraped_at": "2026-02-25T20:02:10.761484Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.radioscience:trk223_ion_dopr::1.0", "title": "OSIRIS-REx DSN Ionospheric Doppler Calibration", "description": "This collection contains data products that provide ionospheric calibration for Doppler radio tracking measurements of the OSIRIS-REx spacecraft during its Bennu encounter.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["OSIRIS-REx Mission", "DSN Media Calibration"], "targets": ["Earth"], "instruments": ["Global Positioning System"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2018-08-01", "stop_date": "2021-06-01", "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/collection_trk223_ion_dopr.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_dopr/collection_trk223_ion_dopr.xml", "scraped_at": "2026-02-25T20:02:10.761488Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.radioscience:trk223_ion_vlbi::1.0", "title": "OSIRIS-REx DSN Ionospheric VLBI Calibration", "description": "This collection contains data products that provide ionospheric calibration for VLBI radio tracking measurements of the OSIRIS-REx spacecraft during its Bennu encounter.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["OSIRIS-REx Mission", "DSN Media Calibration"], "targets": ["Earth"], "instruments": ["Global Positioning System"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2018-08-19", "stop_date": "2021-05-30", "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/collection_trk223_ion_vlbi.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk223_ion_vlbi/collection_trk223_ion_vlbi.xml", "scraped_at": "2026-02-25T20:02:10.761492Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.radioscience:trk234_trknav::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Deep Space Network TRK-2-34 data files.", "description": "This collection contains the OSIRIS-REx liens resolved DSN TRK234 binary data files.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OSIRIS-REx Radio Science (Telecom) Subsystem", "NASA Deep Space Network Radio Science"], "instrument_hosts": ["OSIRIS-REx Spacecraft", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/collection_radioscience_trk234_traknav.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.radioscience_v1.0/trk234_trknav/collection_radioscience_trk234_traknav.xml", "scraped_at": "2026-02-25T20:02:10.761498Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.apc.lightcurves:data::1.0", "title": "Asteroid Photometric Catalog V1.0", "description": "This collection contains the documents applicable to the Asteroid Photometric Catalog bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(1) Ceres", "Multiple Asteroids", "(4) Vesta", "(10) Hygiea", "(100) Hekate", "(101) Helena", "(1012) Sarema", "(1013) Tombecka", "(1018) Arnolda", "(102) Miriam", "(1029) La Plata", "(103) Hera", "(1036) Ganymed", "(104) Klymene", "(105) Artemis", "(1057) Wanda", "(1058) Grubba", "(106) Dione", "(1062) Ljuba", "(1063) Aquilegia", "(1067) Lunaria", "(1068) Nofretete", "(107) Camilla", "(1076) Viola", "(1079) Mimosa", "(1084) Tamariwa", "(109) Felicitas", "(1090) Sumida", "(1092) Lilium", "(1095) Tulipa", "(11) Parthenope", "(110) Lydia", "(111) Ate", "(1111) Reinmuthia", "(1112) Polonia", "(1129) Neujmina", "(113) Amalthea", "(1137) Raissa", "(1139) Atami", "(114) Kassandra", "(1143) Odysseus", "(1149) Volga", "(115) Thyra", "(1159) Granada", "(116) Sirona", "(1167) Dubiago", "(1168) Brandia", "(1173) Anchises", "(1178) Irmela", "(118) Peitho", "(1180) Rita", "(1186) Turnera", "(11868) Kleinrichert", "(119) Althaea", "(1192) Prisma", "(1196) Sheba", "(1197) Rhodesia", "(12) Victoria", "(120) Lachesis", "(1207) Ostenia", "(121) Hermione", "(1210) Morosovia", "(1212) Francette", "(1219) Britta", "(1220) Crocus", "(1223) Neckar", "(1224) Fantasia", "(123) Brunhild", "(1234) Elyna", "(1236) Thais", "(1237) Genevieve", "(124) Alkeste", "(1240) Centenaria", "(1245) Calvinia", "(125) Liberatrix", "(1250) Galanthus", "(1256) Normannia", "(1257) Mora", "(1259) Ogyalla", "(126) Velleda", "(1262) Sniadeckia", "(1267) Geertruida", "(1279) Uganda", "(128) Nemesis", "(1284) Latvia", "(1288) Santa", "(1289) Kutaissi", "(129) Antigone", "(1291) Phryne", "(13) Egeria", "(130) Elektra", "(13014) Hasslacher", "(1305) Pongola", "(1317) Silvretta", "(132) Aethra", "(1321) Majuba", "(1322) Coppernicus", "(133) Cyrene", "(1331) Solvejg", "(1337) Gerarda", "(134) Sophrosyne", "(1346) Gotha", "(135) Hertha", "(1350) Rosselia", "(136) Austria", "(1362) Griqua", "(1366) Piccolo", "(1368) Numidia", "(137) Meliboea", "(1379) Lomonosowa", "(138) Tolosa", "(1389) Onnie", "(139) Juewa", "(1392) Pierre", "(1397) Umtata", "(14) Irene", "(140) Siwa", "(1404) Ajax", "(141) Lumen", "(1416) Renauxa", "(143) Adria", "(1434) Margot", "(1437) Diomedes", "(144) Vibilia", "(145) Adeona", "(146) Lucina", "(1468) Zomba", "(147) Protogeneia", "(1478) Vihuri", "(148) Gallia", "(1481) Tubingia", "(1482) Sebastiana", "(14827) Hypnos", "(149) Medusa", "(15) Eunomia", "(150) Nuwa", "(1504) Lappeenranta", "(151) Abundantia", "(1513) Matra", "(152) Atala", "(1522) Kokkola", "(1523) Pieksmaki", "(153) Hilda", "(1533) Saimaa", "(154) Bertha", "(1556) Wingolfia", "(156) Xanthippe", "(1562) Gondolatsch", "(1566) Icarus", "(1576) Fabiola", "(158) Koronis", "(1580) Betulia", "(1583) Antilochus", "(1584) Fuji", "(1585) Union", "(159) Aemilia", "(1590) Tsiolkovskaja", "(1593) Fagnes", "(16) Psyche", "(1604) Tombaugh", "(1609) Brenda", "(161) Athor", "(1615) Bardwell", "(161989) Cacus", "(162) Laurentia", "(1620) Geographos", "(1627) Ivar", "(1628) Strobel", "(163) Erigone", "(164) Eva", "(1641) Tana", "(1644) Rafita", "(1646) Rosseland", "(165) Loreley", "(1665) Gaby", "(167) Urda", "(1670) Minnaert", "(1672) Gezelle", "(1674) Groeneveld", "(1685) Toro", "(1687) Glarona", "(1689) Floris-Jan", "(169) Zelia", "(1693) Hertzsprung", "(17) Thetis", "(1709) Ukraina", "(171) Ophelia", "(1715) Salli", "(172) Baucis", "(1722) Goffin", "(1723) Klemola", "(1727) Mette", "(173) Ino", "(174) Phaedra", "(1742) Schaifers", "(1743) Schmidt", "(1753) Mieke", "(1757) Porvoo", "(1759) Kienle", "(1772) Gagarin", "(178) Belisana", "(1780) Kippes", "(1789) Dobrovolsky", "(179) Klytaemnestra", "(1793) Zoya", "(18) Melpomene", "(181) Eucharis", "(182) Elsa", "(183) Istria", "(184) Dejopeja", "(185) Eunike", "(186) Celuta", "(1862) Apollo", "(1863) Antinous", "(1864) Daedalus", "(1865) Cerberus", "(189) Phthia", "(1892) Lucienne", "(19) Fortuna", "(190) Ismene", "(1902) Shaposhnikov", "(1915) Quetzalcoatl", "(1917) Cuyo", "(192) Nausikaa", "(1928) Summa", "(194) Prokne", "(1941) Wild", "(1943) Anteros", "(1946) Walraven", "(1951) Lick", "(1957) Angara", "(196) Philomela", "(1960) Guisan", "(197) Arete", "(1972) Yi Xing", "(2) Pallas", "(20) Massalia", "(200) Dynamene", "(201) Penelope", "(2017) Wesson", "(203) Pompeja", "(204) Kallisto", "(206) Hersilia", "95P/1977 UB (Chiron) [(2060) Chiron]", "(2061) Anza", "(2064) Thomsen", "(2072) Kosmodemyanskaya", "(208) Lacrimosa", "(2088) Sahlia", "(209) Dido", "(21) Lutetia", "(2100) Ra-Shalom", "(2109) Dhotel", "(211) Isolda", "(2113) Ehrdni", "(213) Lilaea", "(214) Aschera", "(2156) Kate", "(2159) Kukkamaki", "(216) Kleopatra", "(2167) Erin", "(218) Bianca", "(219) Thusnelda", "(22) Kalliope", "(2201) Oljato", "(221) Eos", "(222) Lucia", "(224) Oceana", "(225) Henrietta", "(226) Weringia", "(23) Thalia", "(230) Athamantis", "(2317) Galya", "(233) Asterope", "(2339) Anacreon", "(234) Barbara", "(235) Carolina", "(236) Honoria", "(2363) Cebriones", "(238) Hypatia", "(24) Themis", "(241) Germania", "(243) Ida", "(245) Vera", "(246) Asporina", "(247) Eukrate", "(248) Lameia", "(249) Ilse", "(25) Phocaea", "(250) Bettina", "(254) Augusta", "(255) Oppavia", "(258) Tyche", "(259) Aletheia", "(26) Proserpina", "(2608) Seneca", "(261) Prymno", "(263) Dresda", "(264) Libussa", "(267) Tirza", "(2674) Pandarus", "(268) Adorea", "(2687) Tortali", "(269) Justitia", "(27) Euterpe", "(270) Anahita", "(273) Atropos", "(2744) Birgitta", "(277) Elvira", "(279) Thule", "(2797) Teucer", "(28) Bellona", "(280) Philia", "(281) Lucretia", "(282) Clorinde", "(283) Emma", "(2830) Greenwich", "(284) Amalia", "(287) Nephthys", "(288) Glauke", "(289) Nenetta", "(2895) Memnon", "(29) Amphitrite", "(291) Alice", "(292) Ludovica", "(2952) Lilliputia", "(3) Juno", "(30) Urania", "(302) Clarissa", "(304) Olga", "(306) Unitas", "(3063) Makhaon", "(308) Polyxo", "(31) Euphrosyne", "(3102) Krok", "(3103) Eger", "(311) Claudia", "Chaldaea", "(3169) Ostro", "(317) Roxane", "(3199) Nefertiti", "(32) Pomona", "(321) Florentina", "(322) Phaeo", "(323) Brucia", "(324) Bamberga", "(325) Heidelberga", "(3254) Bus", "(326) Tamara", "(3268) De Sanctis", "(329) Svea", "(33) Polyhymnia", "(3317) Paris", "(332) Siri", "(334) Chicago", "(335) Roberta", "(336) Lacadiera", "(3361) Orpheus", "(337) Devosa", "(338) Budrosa", "(34) Circe", "(340) Eduarda", "(343) Ostara", "(344) Desiderata", "(345) Tercidina", "(346) Hermentaria", "(347) Pariana", "(349) Dembowska", "(35) Leukothea", "(352) Gisela", "(3536) Schleicher", "(354) Eleonora", "(3540) Protesilaos", "(3551) Verenia", "(3552) Don Quixote", "(356) Liguria", "(357) Ninina", "(359) Georgia", "(36) Atalante", "(360) Carlova", "(361) Bononia", "(362) Havnia", "(363) Padua", "(364) Isara", "(3651) Friedman", "(3671) Dionysus", "(3686) Antoku", "(369) Aeria", "(37) Fides", "(372) Palma", "(3737) Beckman", "(375) Ursula", "(376) Geometria", "(377) Campania", "(379) Huenna", "(38) Leda", "(381) Myrrha", "(382) Dodona", "(383) Janina", "(385) Ilmatar", "(386) Siegena", "(387) Aquitania", "(388) Charybdis", "(389) Industria", "(39) Laetitia", "(3908) Nyx", "(393) Lampetia", "(394) Arduina", "(396) Aeolia", "(397) Vienna", "(40) Harmonia", "107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]", "(404) Arsinoe", "(405) Thia", "(407) Arachne", "(409) Aspasia", "(41) Daphne", "(410) Chloris", "(412) Elisabetha", "(416) Vaticana", "(417) Suevia", "(418) Alemannia", "(419) Aurelia", "(42) Isis", "(420) Bertholda", "(422) Berolina", "(423) Diotima", "(429) Lotis", "(43) Ariadne", "(431) Nephele", "(432) Pythia", "(433) Eros", "(434) Hungaria", "(435) Ella", "(437) Rhodia", "(439) Ohio", "(44) Nysa", "(441) Bathilde", "(4432) McGraw-Hill", "(444) Gyptis", "(449) Hamburga", "(45) Eugenia", "(451) Patientia", "(454) Mathesis", "(458) Hercynia", "(459) Signe", "(46) Hestia", "(462) Eriphyla", "(464) Megaira", "(4659) Roddenberry", "(468) Lina", "(47) Aglaja", "(470) Kilia", "(471) Papagena", "(476) Hedwig", "(478) Tergeste", "(48) Doris", "(482) Petrina", "(483) Seppina", "(484) Pittsburghia", "(485) Genua", "(487) Venetia", "(488) Kreusa", "(489) Comacina", "(49) Pales", "(4924) Hiltner", "(495) Eulalia", "(497) Iva", "(498) Tokio", "(5) Astraea", "(50) Virginia", "(501) Urhixidur", "(502) Sigune", "(504) Cora", "(505) Cava", "(5080) Oja", "(51) Nemausa", "(510) Mabella", "(511) Davida", "(512) Taurinensis", "(513) Centesima", "(514) Armida", "(5145) Pholus", "(516) Amherstia", "(517) Edith", "(519) Sylvania", "(52) Europa", "(520) Franziska", "(521) Brixia", "(528) Rezia", "(529) Preziosa", "(53) Kalypso", "(532) Herculina", "(534) Nassovia", "(537) Pauly", "(5370) Taranis", "(539) Pamina", "(54) Alexandra", "(545) Messalina", "(55) Pandora", "(550) Senta", "(554) Peraga", "(556) Phyllis", "(558) Carmen", "(56) Melete", "(560) Delila", "(562) Salome", "(563) Suleika", "(566) Stereoskopia", "(568) Cheruskia", "(57) Mnemosyne", "(5761) Andreivanov", "(579) Sidonia", "(5797) Bivoj", "(58) Concordia", "(584) Semiramis", "(588) Achilles", "(59) Elpis", "(590) Tomyris", "(591) Irmgard", "(593) Titania", "(594) Mireille", "(599) Luisa", "(6) Hebe", "(60) Echo", "(600) Musa", "(602) Marianna", "(606) Brangane", "(61) Danae", "(618) Elfriede", "(619) Triberga", "(62) Erato", "(621) Werdandi", "(622) Esther", "(624) Hektor", "(628) Christine", "(63) Ausonia", "(631) Philippina", "(632) Pyrrha", "(639) Latona", "(64) Angelina", "(641) Agnes", "(644) Cosima", "(645) Agrippina", "(65) Cybele", "(653) Berenike", "(654) Zelinda", "(657) Gunlod", "(658) Asteria", "(659) Nestor", "(66) Maja", "(660) Crescentia", "(67) Asia", "(674) Rachele", "(675) Ludmilla", "(677) Aaltje", "(678) Fredegundis", "(679) Pax", "(68) Leto", "(683) Lanzia", "(684) Hildburg", "(688) Melanie", "(69) Hesperia", "(690) Wratislavia", "(692) Hippodamia", "(694) Ekard", "(695) Bella", "(699) Hela", "(7) Iris", "(70) Panopaea", "(700) Auravictrix", "(702) Alauda", "(704) Interamnia", "(7041) Nantucket", "(705) Erminia", "(709) Fringilla", "(71) Niobe", "(712) Boliviana", "(714) Ulula", "(716) Berkeley", "(72) Feronia", "(720) Bohlinia", "(721) Tabora", "(726) Joella", "(73) Klytia", "(733) Mocia", "(736) Harvard", "(737) Arequipa", "(739) Mandeville", "(74) Galatea", "(746) Marlu", "(747) Winchester", "(75) Eurydike", "(751) Faina", "(753) Tiflis", "(7550) Woolum", "(76) Freia", "(766) Moguntia", "(77) Frigga", "(771) Libera", "(775) Lumiere", "(776) Berbericia", "(778) Theobalda", "(779) Nina", "(78) Diana", "(783) Nora", "(785) Zwetana", "(79) Eurynome", "(790) Pretoria", "(792) Metcalfia", "(796) Sarita", "(798) Ruth", "(8) Flora", "(80) Sappho", "(800) Kressmannia", "(8013) Gordonmoore", "(804) Hispania", "(807) Ceraskia", "(81) Terpsichore", "(811) Nauheima", "(814) Tauris", "(82) Alkmene", "(83) Beatrix", "(832) Karin", "(838) Seraphina", "(8395) Rembaut", "(84) Klio", "(841) Arabella", "(846) Lipperta", "(849) Ara", "(85) Io", "(850) Altona", "(852) Wladilena", "(853) Nansenia", "(856) Backlunda", "(8589) Stellaris", "(86) Semele", "(863) Benkoela", "(87) Sylvia", "(870) Manto", "(873) Mechthild", "(876) Scott", "(877) Walkure", "(88) Thisbe", "(887) Alinda", "(89) Julia", "(9) Metis", "(900) Rosalinde", "(905) Universitas", "(908) Buda", "(91) Aegina", "(911) Agamemnon", "(914) Palisana", "(916) America", "(92) Undina", "(925) Alphonsina", "(93) Minerva", "(939) Isberga", "(94) Aurora", "(940) Kordula", "(944) Hidalgo", "(945) Barcelona", "(95) Arethusa", "(951) Gaspra", "(952) Caia", "(96) Aegle", "(97) Klotho", "(974) Lioba", "(98) Ianthe", "(980) Anacostia", "(984) Gretia", "(987) Wallia", "(99) Dike", "(994) Otthild", "(995) Sternberga", "(10475) Maxpoilane", "(11457) Hitomikobayashi", "(129442) 1981 EC15", "(12989) Chriseanderson", "(14761) 6608 P-L", "(16382) 1981 ER27", "(17383) 1981 EE12", "(20749) 2000 AD199", "(23429) 1981 EO35", "(29196) Dius", "(30762) 1981 ES42", "(32755) 1981 EP15", "(37546) 1981 ET20", "(3757) Anagolay", "(5646) 1990 TR", "(58119) 1981 EJ9", "(6178) 1986 DA", "(8252) Elkins-Tanton", "(8253) Brunetto", "(8794) Joepatterson", "(8796) Sonnett", "(9286) Patricktaylor", "(9527) Sherrypervan", "(9723) Binyang", "(99980) 1981 ER18"], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "1913-08-20", "stop_date": "1992-03-22", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/collection_compil.ast.apc.lightcurves_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/data/collection_compil.ast.apc.lightcurves_data.xml", "scraped_at": "2026-02-25T20:02:10.761564Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:compil.ast.apc.lightcurves:document::1.0", "title": "Asteroid Photometric Catalog V1.0", "description": "This collection contains the documents applicable to the Asteroid Photometric Catalog bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": [], "instruments": ["Various Ground-Based Telescopes", "Various Ground-Based Detectors"], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/collection_compil.ast.apc.lightcurves_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/compil.ast.apc.lightcurves_V1_0/document/collection_compil.ast.apc.lightcurves_document.xml", "scraped_at": "2026-02-25T20:02:10.761574Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-mission:document-fc::1.0", "title": "Framing Camera Document Collection", "description": "This collection contains documents associated with Dawn Framing Camera instruments.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["Mars", "4 Vesta", "1 Ceres"], "instruments": ["Framing Camera 1", "Framing Camera 2"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/collection-document-fc-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-fc/collection-document-fc-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761580Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-mission:document-grand::1.0", "title": "Gamma Ray and Neutron Detector (GRaND) Document Collection", "description": "This collection contains documents associated with the Dawn GRaND instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["Mars", "4 Vesta", "1 Ceres"], "instruments": ["GAMMA-RAY AND NEUTRON DETECTOR"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/collection-document-grand-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-grand/collection-document-grand-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761584Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-mission:document-mission::1.0", "title": "Dawn Mission Document Collection", "description": "This collection contains documents associated with the Dawn Mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["Mars", "4 Vesta", "1 Ceres"], "instruments": ["Framing Camera 1", "Framing Camera 2", "GRAVITY SCIENCE INSTRUMENT", "GAMMA-RAY AND NEUTRON DETECTOR", "VISIBLE AND INFRARED SPECTROMETER"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/collection-document-mission-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-mission/collection-document-mission-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761589Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-mission:document-rss::1.0", "title": "Gravity Science Document Collection", "description": "This collection contains documents associated with the Dawn Gravity Science instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["Mars", "4 Vesta", "1 Ceres"], "instruments": ["GRAVITY SCIENCE INSTRUMENT"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/collection-document-rss-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-rss/collection-document-rss-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761593Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-mission:document-vir::1.0", "title": "Dawn VIR Instrument Document Collection", "description": "This collection contains documents associated with Dawn Visual and Infrared Imaging Spectrometer (VIR) instrument.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DAWN MISSION TO VESTA AND CERES"], "targets": ["4 Vesta", "1 Ceres"], "instruments": ["VISIBLE AND INFRARED SPECTROMETER"], "instrument_hosts": ["The Dawn Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/collection-document-vir-1.0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/mission/dawn-mission_v1.0/document-vir/collection-document-vir-1.0.xml", "scraped_at": "2026-02-25T20:02:10.761597Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:calib-apc::1.0", "title": "Dawn Radio Science Spacecraft Antenna Phase Center Time History Collection", "description": "This collection contains one data product that provides the phase center time history of the spacecraft antenna during the Dawn encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["Dawn"], "instruments": ["RSS"], "instrument_hosts": ["Dawn"], "data_types": ["Data"], "start_date": "2014-12-27", "stop_date": "2018-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/collection_dawn-rss-raw-ceres_apc.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-apc/collection_dawn-rss-raw-ceres_apc.xml", "scraped_at": "2026-02-25T20:02:10.761602Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:calib-ion::1.0", "title": "Dawn Radio Science Ionospheric Calibration Data Collection", "description": "This collection contains several data products that provide ionospheric calibration information for the Dawn spacecraft during its encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn", "DSN Media Calibration"], "targets": ["Earth"], "instruments": ["Global Positioning System"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2015-01-01", "stop_date": "2018-12-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/collection_dawn-rss-raw-ceres_ion.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-ion/collection_dawn-rss-raw-ceres_ion.xml", "scraped_at": "2026-02-25T20:02:10.761606Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:calib-scm::1.0", "title": "Dawn Radio Science Spacecraft Mass History Collection", "description": "This collection contains one data product that provides the history of propellant usage and mass for the Dawn spacecraft through its encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["Dawn"], "instruments": [], "instrument_hosts": ["Dawn"], "data_types": ["Data"], "start_date": "2007-09-27", "stop_date": "2018-10-31", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/collection_dawn-rss-raw-ceres_scm.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-scm/collection_dawn-rss-raw-ceres_scm.xml", "scraped_at": "2026-02-25T20:02:10.761612Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:calib-sff::1.0", "title": "Dawn Radio Science Small Forces File Collection", "description": "This collection contains two data products that provide the cumulative delta-V effect on the spacecraft due to thruster firing, mass loss due to the expenditure of propellant, and cumulative on-times for each individual thruster during the Dawn encounter with 1 Ceres. The files have been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["Dawn"], "instruments": [], "instrument_hosts": ["Dawn"], "data_types": ["Data"], "start_date": "2014-09-15", "stop_date": "2018-12-07", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/collection_dawn-rss-raw-ceres_sff.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-sff/collection_dawn-rss-raw-ceres_sff.xml", "scraped_at": "2026-02-25T20:02:10.761650Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:calib-tro::1.0", "title": "Dawn Radio Science Tropospheric Calibration Data Collection", "description": "This collection contains several data products that provide tropospheric calibration information for the Dawn spacecraft through its encounter with 1 Ceres. Files have been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DSN Media Calibration"], "targets": ["Earth"], "instruments": ["Global Positioning System"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2015-01-01", "stop_date": "2018-12-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/collection_dawn-rss-raw-ceres_tro.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-tro/collection_dawn-rss-raw-ceres_tro.xml", "scraped_at": "2026-02-25T20:02:10.761656Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:calib-wea::1.0", "title": "Dawn Radio Science DSN Weather Data Collection", "description": "This collection contains several data products that provide DSN weather calibration information for the Dawn spacecraft during its encounter with 1 Ceres. It has been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DSN Media Calibration"], "targets": ["Earth"], "instruments": ["DSN Media Instrumentation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2015-01-01", "stop_date": "2018-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/collection_dawn-rss-raw-ceres_wea.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/calib-wea/collection_dawn-rss-raw-ceres_wea.xml", "scraped_at": "2026-02-25T20:02:10.761660Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:context::1.0", "title": "Dawn Radio Science Ceres Context Collection", "description": "This collection contains context products for the Dawn Raw Radio Science Ceres bundle. All of the members of the collection are secondary members.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/collection_dawn-rss-raw-ceres_context.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/context/collection_dawn-rss-raw-ceres_context.xml", "scraped_at": "2026-02-25T20:02:10.761663Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:data-odf::1.0", "title": "Dawn Radio Science Orbit Data File (ODF) Product Collection", "description": "This is the collection of Radio Science Orbit Data File (ODF) data products acquired during the Dawn mission. These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio Metric Data Conditioning Team for use in determining spacecraft trajectories, gravity fields affecting them, and radio propagation conditions.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["1 Ceres"], "instruments": ["RSS", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 35", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Dawn", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "2015-01-02", "stop_date": "2016-09-06", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/collection_dawn-rss-raw-ceres_odf.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-odf/collection_dawn-rss-raw-ceres_odf.xml", "scraped_at": "2026-02-25T20:02:10.761670Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:data-tnf::1.0", "title": "Dawn Radio Science Tracking and Navigation (TNF) Data Products Collection", "description": "This is the collection of Radio Science Tracking and Navigation (TNF) data products acquired during the Dawn mission. Data were originally stored as chronological records in DSN format TRK-2-34; but they have been sorted according to data type (retaining chronological order within each data type) during migration from PDS3 to PDS4.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["1 Ceres"], "instruments": ["RSS", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 35", "DSN Antenna DSS 36", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Dawn", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "2018-06-06", "stop_date": "2018-11-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/collection_dawn-rss-raw-ceres_tnf.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/data-tnf/collection_dawn-rss-raw-ceres_tnf.xml", "scraped_at": "2026-02-25T20:02:10.761676Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-ceres:document::1.0", "title": "Dawn Ceres Radio Science Document Collection", "description": "This collection contains the documents associated with the Dawn Radio Science (RS) Raw Data Archive (RDA) Ceres bundle. Except for minor differences in labels, this collection should be identical to the Dawn RS RDA Vesta document collection.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": [], "instruments": ["RSS"], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/collection_document-cgrs.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-ceres/document/collection_document-cgrs.xml", "scraped_at": "2026-02-25T20:02:10.761680Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.nims.spectra:data::1.0", "title": "Data collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0", "description": "Data collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1991-10-29", "stop_date": "1991-10-29", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/collection_galileo.ast-gaspra.nims.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/data/collection_galileo.ast-gaspra.nims.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761686Z", "keywords": ["NIMS spectra", "951 Gaspra"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.nims.spectra:document::1.0", "title": "Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0", "description": "Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/collection_galileo.ast-gaspra.nims.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectra/document/collection_galileo.ast-gaspra.nims.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761691Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:browse::1.0", "title": "Browse collection for Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0", "description": "Browse collection for Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/collection_galileo.ast-gaspra.nims.spectral-cube_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/browse/collection_galileo.ast-gaspra.nims.spectral-cube_browse.xml", "scraped_at": "2026-02-25T20:02:10.761694Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:data::1.0", "title": "Data collection for the Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0", "description": "Data collection for the Hi-Res Galileo NIMS Gaspra Spectral Image Cube V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1991-10-29", "stop_date": "1991-10-29", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/collection_galileo.ast-gaspra.nims.spectral-cube_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/data/collection_galileo.ast-gaspra.nims.spectral-cube_data.xml", "scraped_at": "2026-02-25T20:02:10.761699Z", "keywords": ["NIMS Spectral Cube", "951 Gaspra"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.nims.spectral-cube:document::1.0", "title": "Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0", "description": "Document collection for Galileo NIMS Radiance Point Spectra of Gaspra V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/collection_galileo.ast-gaspra.nims.spectral-cube_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.nims.spectral-cube_v1.0/document/collection_galileo.ast-gaspra.nims.spectral-cube_document.xml", "scraped_at": "2026-02-25T20:02:10.761702Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images:data::1.0", "title": "Data collection for Galileo SSI radiometrically calibrated image of 951 Gaspra V1.0", "description": "Data collection for Galileo SSI radiometrically calibrated image of 951 Gaspra V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Solid State Imaging System for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1991-10-29", "stop_date": "1991-10-29", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/collection_galileo.ast-gaspra.ssi.cal-images_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/data/collection_galileo.ast-gaspra.ssi.cal-images_data.xml", "scraped_at": "2026-02-25T20:02:10.761707Z", "keywords": ["calibrated spectra", "951 Gaspra"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-gaspra.ssi.cal-images:document::1.0", "title": "Document collection for Galileo SSI Gaspra Radiometrically Calibrated Images V1.0", "description": "Document collection forGalileo SSI Gaspra Radiometrically Calibrated Images V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["951 Gaspra"], "instruments": ["Solid State Imaging System for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/collection_galileo.ast-gaspra.ssi.cal-images_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-gaspra.ssi.cal-images_v1.0/document/collection_galileo.ast-gaspra.ssi.cal-images_document.xml", "scraped_at": "2026-02-25T20:02:10.761711Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.nims.spectra:data::1.0", "title": "Data collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0", "description": "Data collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["243 Ida", "(243) Ida I (Dactyl)"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1993-08-28", "stop_date": "1993-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/collection_galileo.ast-ida.nims.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/data/collection_galileo.ast-ida.nims.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761716Z", "keywords": ["NIMS spectra", "241 Ida", "Dactyl (243 Ida I)"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.nims.spectra:document::1.0", "title": "Document collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0", "description": "Document collection for Galileo NIMS Radiance Point Spectra of Ida and Dactyl V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["243 Ida", "(243) Ida I (Dactyl)"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/collection_galileo.ast-ida.nims.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectra/document/collection_galileo.ast-ida.nims.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761719Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:browse::1.0", "title": "Browse collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0", "description": "Browse collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["243 Ida"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Browse"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/collection_galileo.ast-ida.nims.spectral-cubes_browse.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/browse/collection_galileo.ast-ida.nims.spectral-cubes_browse.xml", "scraped_at": "2026-02-25T20:02:10.761724Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:data::1.0", "title": "Data collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0", "description": "Data collection for Hi-Res Galileo NIMS Ida Spectral Image Cubes V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["243 Ida"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1993-08-28", "stop_date": "1993-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/collection_galileo.ast-ida.nims.spectral-cubes_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/data/collection_galileo.ast-ida.nims.spectral-cubes_data.xml", "scraped_at": "2026-02-25T20:02:10.761727Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.nims.spectral-cubes:document::1.0", "title": "Document collection for Galileo NIMS Radiance Point Spectra of Ida V1.0", "description": "Document collection for Galileo NIMS Radiance Point Spectra of Ida V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["243 Ida"], "instruments": ["Near Infrared Mapping Spectrometer for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/collection_galileo.ast-ida.nims.spectral-cubes_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.nims.spectral-cubes_v1.0/document/collection_galileo.ast-ida.nims.spectral-cubes_document.xml", "scraped_at": "2026-02-25T20:02:10.761731Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.ssi.cal-images:data::1.0", "title": "Data collection for Galileo SSI radiometrically calibrated image of 243 Ida V1.0", "description": "Data collection for Galileo SSI radiometrically calibrated image of 243 Ida V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["243 Ida"], "instruments": ["Solid State Imaging System for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Data"], "start_date": "1993-08-28", "stop_date": "1993-08-28", "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/collection_galileo.ast-ida.ssi.cal-images_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/data/collection_galileo.ast-ida.ssi.cal-images_data.xml", "scraped_at": "2026-02-25T20:02:10.761735Z", "keywords": ["calibrated spectra", "243 Ida"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:galileo.ast-ida.ssi.cal-images:document::1.0", "title": "Document collection for Galileo SSI Ida Radiometrically Calibrated Images V1.0", "description": "Document collection forGalileo SSI Ida Radiometrically Calibrated Images V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Galileo"], "targets": ["243 Ida"], "instruments": ["Solid State Imaging System for GO"], "instrument_hosts": ["GALILEO ORBITER"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/collection_galileo.ast-ida.ssi.cal-images_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/galileo/derived/galileo.ast-ida.ssi.cal-images_v1.0/document/collection_galileo.ast-ida.ssi.cal-images_document.xml", "scraped_at": "2026-02-25T20:02:10.761738Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:calib-apc::1.0", "title": "Dawn Radio Science Spacecraft Antenna Phase Center Time History Collection", "description": "This collection contains one data product that provides the phase center time history of the spacecraft antenna during the Dawn encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["Dawn"], "instruments": ["RSS"], "instrument_hosts": ["Dawn"], "data_types": ["Data"], "start_date": "2011-07-13", "stop_date": "2012-08-26", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/collection_dawn-rss-raw-vesta_apc.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-apc/collection_dawn-rss-raw-vesta_apc.xml", "scraped_at": "2026-02-25T20:02:10.761742Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:calib-ion::1.0", "title": "Dawn Radio Science Ionospheric Calibration Data Collection", "description": "This collection contains several data products that provide ionospheric calibration information for the Dawn spacecraft during its encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn", "DSN Media Calibration"], "targets": ["Earth"], "instruments": ["Global Positioning System"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2011-07-01", "stop_date": "2012-10-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/collection_dawn-rss-raw-vesta_ion.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-ion/collection_dawn-rss-raw-vesta_ion.xml", "scraped_at": "2026-02-25T20:02:10.761747Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:calib-scm::1.0", "title": "Dawn Radio Science Spacecraft Mass History Collection", "description": "This collection contains one data product that provides the history of propellant usage and mass for the Dawn spacecraft through its encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["Dawn"], "instruments": [], "instrument_hosts": ["Dawn"], "data_types": ["Data"], "start_date": "2007-09-27", "stop_date": "2012-08-03", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/collection_dawn-rss-raw-vesta_scm.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-scm/collection_dawn-rss-raw-vesta_scm.xml", "scraped_at": "2026-02-25T20:02:10.761750Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:calib-sff::1.0", "title": "Dawn Radio Science Small Forces File Collection", "description": "This collection contains two data products that provide the cumulative delta-V effect on the spacecraft due to thruster firing, mass loss due to the expenditure of propellant, and cumulative on-times for each individual thruster during the Dawn encounter with 4 Vesta. The files have been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["Dawn"], "instruments": [], "instrument_hosts": ["Dawn"], "data_types": ["Data"], "start_date": "2011-07-01", "stop_date": "2012-08-02", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/collection_dawn-rss-raw-vesta_sff.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-sff/collection_dawn-rss-raw-vesta_sff.xml", "scraped_at": "2026-02-25T20:02:10.761754Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:calib-tro::1.0", "title": "Dawn Radio Science Tropospheric Calibration Data Collection", "description": "This collection contains several data products that provide tropospheric calibration information for the Dawn spacecraft through its encounter with 4 Vesta. Files have been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DSN Media Calibration"], "targets": ["Earth"], "instruments": ["Global Positioning System"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2011-07-01", "stop_date": "2012-10-01", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/collection_dawn-rss-raw-vesta_tro.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-tro/collection_dawn-rss-raw-vesta_tro.xml", "scraped_at": "2026-02-25T20:02:10.761758Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:calib-wea::1.0", "title": "Dawn Radio Science DSN Weather Data Collection", "description": "This collection contains several data products that provide DSN weather calibration information for the Dawn spacecraft during its encounter with 4 Vesta. It has been migrated to PDS4 from the original delivery under PDS3 standards.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["DSN Media Calibration"], "targets": ["Earth"], "instruments": ["DSN Media Instrumentation"], "instrument_hosts": [], "data_types": ["Data"], "start_date": "2011-01-01", "stop_date": "2012-12-31", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/collection_dawn-rss-raw-vesta_wea.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/calib-wea/collection_dawn-rss-raw-vesta_wea.xml", "scraped_at": "2026-02-25T20:02:10.761762Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:context::1.0", "title": "Dawn Radio Science Vesta Context Collection", "description": "This collection contains context products for the Dawn Raw Radio Science Vesta bundle. All of the members of the collection are secondary members.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/collection_dawn-rss-raw-vesta_context.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/context/collection_dawn-rss-raw-vesta_context.xml", "scraped_at": "2026-02-25T20:02:10.761765Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:data-odf::1.0", "title": "Dawn Radio Science Orbit Data File (ODF) Product Collection", "description": "This is the collection of Radio Science Orbit Data File (ODF) data products acquired during the Dawn mission. These ODF files were produced by the NASA/JPL Multi-Mission Navigation Radio Metric Data Conditioning Team for use in determining spacecraft trajectories, gravity fields affecting them, and radio propagation conditions.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": ["4 Vesta"], "instruments": ["RSS", "DSN Instrumentation", "DSN Antenna DSS 14", "DSN Antenna DSS 15", "DSN Antenna DSS 24", "DSN Antenna DSS 25", "DSN Antenna DSS 26", "DSN Antenna DSS 34", "DSN Antenna DSS 43", "DSN Antenna DSS 45", "DSN Antenna DSS 54", "DSN Antenna DSS 55", "DSN Antenna DSS 63", "DSN Antenna DSS 65"], "instrument_hosts": ["Dawn", "NASA Deep Space Network"], "data_types": ["Data"], "start_date": "2011-07-10", "stop_date": "2012-09-05", "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/collection_dawn-rss-raw-vesta_odf.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/data-odf/collection_dawn-rss-raw-vesta_odf.xml", "scraped_at": "2026-02-25T20:02:10.761770Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:dawn-rss-raw-vesta:document::1.0", "title": "Dawn Vesta Radio Science Document Collection", "description": "This collection contains the documents associated with the Dawn Radio Science (RS) Raw Data Archive (RDA) Vesta bundle. Except for minor differences in labels, this collection should be identical to the Dawn RS RDA Ceres document collection.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Dawn"], "targets": [], "instruments": ["RSS"], "instrument_hosts": [], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/collection_document-vgrs.xml", "source_url": "https://sbnarchive.psi.edu/pds4/dawn/gravity/dawn-rss-raw-vesta/document/collection_document-vgrs.xml", "scraped_at": "2026-02-25T20:02:10.761774Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.des.taxonomy:data::1.0", "title": "DES_Asteroid_taxonomy V1.0", "description": "Inventory of the data collection for the DES Asteroid Taxonomy Bundle V1.0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "Asteroids"], "instruments": ["Victor Blanco 4.0m Telescope", "Dark Energy Camera (DECam)"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Data"], "start_date": "2013-08-31", "stop_date": "2019-01-09", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/collection_gbo.ast.des.taxonomy_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/data/collection_gbo.ast.des.taxonomy_data.xml", "scraped_at": "2026-02-25T20:02:10.761778Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.des.taxonomy:document::1.0", "title": "DES_Asteroid_taxonomy V1.0", "description": "We provide taxonomical information from Dark Energy Survey (DES) data for 16517 asteroids for which gri slope and i-z colors are available, taxonomical complex information for 58116 asteroids with DES colors g-r, g-i, and a list of 409 new possible V-type objects.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["Multiple Asteroids", "Asteroids"], "instruments": ["Victor Blanco 4.0m Telescope", "Dark Energy Camera (DECam)"], "instrument_hosts": ["Cerro Tololo Inter-American Observatory"], "data_types": ["Document"], "start_date": "2013-08-31", "stop_date": "2024-03-13", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/collection_gbo.ast.des.taxonomy_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.des.taxonomy_V1_0/document/collection_gbo.ast.des.taxonomy_document.xml", "scraped_at": "2026-02-25T20:02:10.761781Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021:data::1.0", "title": "MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0", "description": "This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["2020 RC", "(415029) 2011 UL21", "(65996) 1998 MX5", "(3288) Seleucus", "2018 MM8", "(11405) 1999 CV3", "(143404) 2003 BD44", "(6569) Ondaatje", "1996 AE2", "2002 LY1", "(5011) Ptah", "2015 FS332", "(5626) Melissabrucker", "(7888) 1993 UC", "(52762) 1998 MT24", "(7358) Oze", "(613512) 2006 SK134", "2019 YH2", "2016 NL15", "(1627) Ivar", "2011 WN15", "(612098) 1999 RM45", "(19356) 1997 GH3", "(137126) 1999 CF9", "107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]", "(137799) 1999 YB", "(154302) 2002 UQ3", "2008 QS11", "(318411) 2005 AH14", "(163348) 2002 NN4", "(496816) 1989 UP", "(380128) 1997 WB21", "2007 XY9", "(454177) 2013 GJ35", "(142040) 2002 QE15", "(438902) 2009 WF104", "(11066) Sigurd", "2016 LG", "(455148) 1994 UG", "(52768) 1998 OR2", "(612484) 2002 TS67", "(301964) 2000 EJ37", "(53426) 1999 SL5", "(217796) 2000 TO64", "(186822) 2004 FE31", "(413577) 2005 UL5", "(523586) 1999 LK1", "(380981) 2006 SU131", "(4953) 1990 MU", "(217807) 2000 XK44", "(36017) 1999 ND43", "(3691) Bede", "(194386) 2001 VG5", "(480004) 2014 KD91", "(495102) 2011 UU106", "2003 AF23", "2018 WX1", "(4179) Toutatis", "2014 QK434", "2015 OX78", "(101955) Bennu", "(162142) 1998 VR", "(503871) 2000 SL", "(7482) 1994 PC1", "2014 AD17", "(496817) 1989 VB", "(411165) 2010 DF1", "(457260) 2008 RY24", "2015 BF92", "2019 CH", "2015 WH9", "(153814) 2001 WN5", "(363067) 2000 CO101", "(144332) 2004 DV24", "(2335) James", "(163697) 2003 EF54", "(200840) 2001 XN254", "(141525) 2002 FV5", "(528650) 2008 WX32", "(155110) 2005 TB", "(163081) 2002 AG29", "(275611) 1999 XX262", "2018 TT1", "(162186) 1999 OP3", "(3554) Amun", "2002 AV", "(2340) Hathor", "(437844) 1999 MN", "(85989) 1999 JD6", "(488645) 2003 OV", "(511684) 2015 BN509", "(24445) 2000 PM8", "(326290) Akhenaten", "2017 BQ93", "(67367) 2000 LY27", "2011 UA", "(21088) Chelyabinsk", "(100926) 1998 MQ", "(1011) Laodamia", "2020 WU5", "(6585) O'Keefe", "(163373) 2002 PZ39", "2018 QN1", "(88188) 2000 XH44", "(170502) 2003 WM7", "(171819) 2001 FZ6", "(137924) 2000 BD19", "(363831) 2005 PY16", "(143651) 2003 QO104", "(1916) Boreas", "(1508) Kemi", "(65717) 1993 BX3", "(357024) 1999 YR14", "(3833) Calingasta", "(2212) Hephaistos", "(4688) 1980 WF", "(236716) 2007 FV42", "(612143) 2000 BO28", "2015 NU13", "2014 UR116", "(161998) 1988 PA", "(440212) 2004 OB", "(1468) Zomba", "2018 RC", "(310442) 2000 CH59", "(99907) 1989 VA", "2015 OL35", "(194126) 2001 SG276", "2013 PY6", "(68216) 2001 CV26", "(5653) Camarillo", "(138937) 2001 BK16", "(398188) Agni", "(453707) 2010 XY72", "(13553) Masaakikoyama", "(2063) Bacchus", "(214869) 2007 PA8", "(2449) Kenos", "(10145) 1994 CK1", "(5604) 1992 FE", "(24475) 2000 VN2", "(5587) 1990 SB", "2016 ED85", "2020 RO6", "(457768) 2009 KN4", "(413002) 1999 VG22", "(96189) Pygmalion", "2020 ME1", "2015 BK509", "(349063) 2006 XA", "2020 RF", "(3199) Nefertiti", "(5261) Eureka", "(468583) 2007 LS", "2018 KE3", "(244670) 2003 KN18", "2016 CL136", "2019 DN", "(612813) 2004 RF84", "(370307) 2002 RH52", "(523631) 2009 SX1", "(19127) Olegefremov", "(162058) 1997 AE12", "(88254) 2001 FM129", "2020 TB12", "(3402) Wisdom", "(523817) 2009 TK", "(144898) 2004 VD17", "(159504) 2000 WO67", "(4769) Castalia", "(18736) 1998 NU", "(154007) 2002 BY", "(450648) 2006 UC63", "(484795) 2009 DE47", "2020 PM7", "(11398) 1998 YP11", "2019 BK", "(189552) 2000 RL77", "2016 LX48", "(453778) 2011 JK", "(699) Hela", "2006 NL", "(380359) 2002 TN30", "(496818) 1993 RA", "(137199) 1999 KX4", "2011 WA", "(250706) 2005 RR6", "(265962) 2006 CG", "(518735) 2009 JL1", "(85990) 1999 JV6", "2020 XU6", "(226514) 2003 UX34", "2017 MC4", "(154347) 2002 XK4", "(496005) 2007 XJ16", "2017 CS", "(6053) 1993 BW3", "(3361) Orpheus", "2017 YE5", "(1951) Lick", "(416186) 2002 TD60", "(6386) Keithnoll", "(99942) Apophis", "(35107) 1991 VH", "(414586) 2009 UV18", "(137084) 1998 XS16", "(18882) 1999 YN4", "(329437) 2002 OA22", "(433) Eros", "(17182) 1999 VU", "(1139) Atami", "(36284) 2000 DM8", "2014 YM9", "(3988) Huma", "2011 YS62", "(242708) 2005 UK1", "(380160) 2000 JO78", "(505657) 2014 SR339", "2019 FU", "(465749) 2009 WO6", "(141354) 2002 AJ29", "(169675) 2002 JM97", "2013 UX14", "(159402) 1999 AP10", "2015 RF36", "(441987) 2010 NY65", "(54690) 2001 EB", "(480883) 2001 YE4", "(4995) Griffin", "(25916) 2001 CP44", "(66063) 1998 RO1", "(303174) 2004 FH11", "(1981) Midas", "(450649) 2006 UY64", "(527715) 2007 YQ56", "(137120) 1999 BJ8", "(4183) Cuno", "(1685) Toro", "(471240) 2011 BT15", "(153201) 2000 WO107", "(154807) 2004 PP97", "(138258) 2000 GD2", "(162911) 2001 LL5", "(90416) 2003 YK118", "(25143) Itokawa", "(2368) Beltrovata", "(337866) 2001 WL15", "(376864) 2001 TP103", "(474179) 1999 VS6", "(162082) 1998 HL1", "(297300) 1998 SC15", "(1865) Cerberus", "2016 NV38", "(5407) 1992 AX", "2016 GU", "(54789) 2001 MZ7", "(4451) Grieve", "(86450) 2000 CK33", "(312473) 2008 SX245", "(242211) 2003 QB90", "(1198) Atlantis", "2007 EC", "(4341) Poseidon", "(66146) 1998 TU3", "(162004) 1991 VE", "(1580) Betulia", "2018 NB", "(1204) Renzia", "2016 AZ8", "(458198) 2010 RT11", "(21374) 1997 WS22", "(388945) 2008 TZ3", "(2102) Tantalus", "(68950) 2002 QF15", "(136874) 1998 FH74", "(243025) 2006 UM216", "(11500) Tomaiyowit", "(385343) 2002 LV", "2021 CG", "(2078) Nanking", "(5693) 1993 EA", "2018 PP10", "(354030) 2001 RB18", "(24761) Ahau", "(8014) 1990 MF", "(7336) Saunders", "2014 LW21", "(132) Aethra", "2016 XH1", "(4197) Morpheus", "2017 RL", "(361123) 2006 GW2", "(444584) 2006 UK", "(382503) 2001 RE8", "(66272) 1999 JW6", "(53435) 1999 VM40", "(162998) 2001 SK162", "(3920) Aubignan", "(7304) Namiki", "2015 BC", "2016 ES155", "(283460) 2001 PD1", "(152563) 1992 BF", "(1566) Icarus", "(17511) 1992 QN", "(1862) Apollo", "(3200) Phaethon", "(141018) 2001 WC47", "(25330) 1999 KV4", "(265482) 2005 EE", "(3671) Dionysus", "(241662) 2000 KO44", "(452389) 2002 NW16", "(206378) 2003 RB", "(138911) 2001 AE2", "(138404) 2000 HA24", "(389694) 2011 QD48", "(85628) 1998 KV2", "(887) Alinda", "(139622) 2001 QQ142", "(15817) Lucianotesi", "(1310) Villigera", "(452561) 2005 AB", "(68359) 2001 OZ13", "(531060) 2012 DJ61", "(416151) 2002 RQ25", "(399774) 2005 NB7", "(53319) 1999 JM8", "2016 UE101", "(8567) 1996 HW1", "(381677) 2009 BJ81", "(612777) 2004 LU3", "(416584) 2004 JB12", "2017 DA36", "(203217) 2001 FX9", "(22771) 1999 CU3", "(153842) 2001 XT30", "(302830) 2003 FB", "2017 MB1", "2020 RJ3", "(31345) 1998 PG", "(7088) Ishtar", "2020 DX", "(86819) 2000 GK137", "(99799) 2002 LJ3", "(163899) 2003 SD220", "(523811) 2008 TQ2", "(6239) Minos", "(20790) 2000 SE45", "(495615) 2015 PQ291", "(6411) Tamaga", "(138524) 2000 OJ8", "(719) Albert", "(175189) 2005 EC224", "(189040) 2000 MU1", "2018 LQ2", "(141053) 2001 XT1", "(512) Taurinensis", "(5131) 1990 BG", "(489486) 2007 GS3", "(294739) 2008 CM", "(86039) 1999 NC43", "2019 AN5", "2020 TY1", "(140158) 2001 SX169", "2020 SY4", "2015 TA25", "(3103) Eger", "(7889) 1994 LX", "2018 BP", "2016 PR8", "(267494) 2002 JB9", "(4486) Mithra", "(190208) 2006 AQ", "(5392) Parker", "(451157) 2009 SQ104", "(137108) 1999 AN10", "(2059) Baboquivari", "(482650) 2013 BK18", "(365424) 2010 KX7", "2015 XB379", "2017 RR15", "(163249) 2002 GT", "(5817) Robertfrazer", "(96590) 1998 XB", "(338292) 2002 UA31", "(98943) 2001 CC21", "(163902) 2003 SW222", "(333888) 1998 ST4", "(5189) 1990 UQ", "(63164) 2000 YU14", "(141498) 2002 EZ16", "2015 JJ2", "(29075) 1950 DA", "(65679) 1989 UQ", "(5646) 1990 TR", "(326777) 2003 SV222", "(39572) 1993 DQ1", "2015 DB", "(35396) 1997 XF11", "(152931) 2000 EA107", "2005 GR33", "(10115) 1992 SK", "2015 JY1", "(4954) Eric", "(163696) 2003 EB50", "(3102) Krok", "(86212) 1999 TG21", "(142464) 2002 TC9", "(5879) Almeria", "2018 JA", "(66391) Moshup", "(7341) 1991 VK", "(450160) 2000 RM12", "(414960) 2011 CS4", "2008 SR1", "(326291) 1998 HM3", "(363599) 2004 FG11", "(348400) 2005 JF21", "(3908) Nyx", "(88710) 2001 SL9", "(470510) 2008 CJ116", "(3552) Don Quixote", "2020 PD1", "2013 CW32", "(6611) 1993 VW", "(163000) 2001 SW169", "(410778) 2009 FG19", "(250577) 2005 AC", "(175706) 1996 FG3", "2018 QV1", "2016 LV", "(313276) 2002 AX1", "(164202) 2004 EW", "(5230) Asahina", "(237805) 2002 CF26", "(52760) 1998 ML14", "(173664) 2001 JU2", "(162173) Ryugu", "2020 WL3", "(102528) 1999 US3", "(153591) 2001 SN263", "(5660) 1974 MA", "(443103) 2013 WT67", "(162510) 2000 QW69", "(483422) 2000 CE59", "(162781) 2000 XL44", "Multiple Asteroids", "(422686) 2000 AC6", "(512245) 2016 AU8", "(66251) 1999 GJ2", "(469737) 2005 NW44", "2020 QW", "(1640) Nemo", "2015 SV2", "2019 HC", "(308635) 2005 YU55", "(141670) 2002 JS100", "(438955) 2010 LN14", "(4558) Janesick", "(194268) 2001 UY4", "2017 AE5", "(612199) 2000 WL63", "(154244) 2002 KL6", "(355256) 2007 KN4", "(34613) 2000 UR13", "(5143) Heracles", "(612348) 2002 GZ8", "(2099) Opik", "(467963) 2012 JT17", "(22753) 1998 WT", "(87684) 2000 SY2", "2016 YM", "(405058) 2001 TX16", "(154330) 2002 VX94", "2017 BM123", "2018 QU1", "(437316) 2013 OS3", "2014 UF206", "(85709) 1998 SG36", "(2062) Aten", "2020 WM3", "(1374) Isora", "(154993) 2005 EA94", "(90147) 2002 YK14", "2007 RU17", "(455322) 2002 NX18", "(1036) Ganymed", "(410777) 2009 FD", "(448003) 2008 DE", "2019 CD5", "(68278) 2001 FC7", "(1131) Porzia", "(413038) 2001 MF1", "(5786) Talos", "(154276) 2002 SY50", "(454100) 2013 BO73", "(6455) 1992 HE", "2020 PS", "(9400) 1994 TW1", "(13353) 1998 TU12", "(297418) 2000 SP43", "(143992) 2004 AF", "(333889) 1998 SV4", "2019 AP3", "2005 WS3", "(141593) 2002 HK12", "(37336) 2001 RM", "(475665) 2006 VY13", "(85804) 1998 WQ5", "(203015) 1999 YF3", "(523667) 2012 TM139", "(112221) 2002 KH4", "2016 UU80", "(250620) 2005 GE59", "(1864) Daedalus", "2015 DP155", "2016 YK", "(416591) 2004 LC2", "(401857) 2000 PG3", "(3674) Erbisbuhl", "2012 SG32", "(137170) 1999 HF1", "(162687) 2000 UH1", "(1565) Lemaitre", "2020 SN", "2004 QD3", "(85818) 1998 XM4", "(136923) 1998 JH2", "(190166) 2005 UP156", "2009 SV17", "2015 AZ43", "(326683) 2002 WP", "(33342) 1998 WT24", "(26760) 2001 KP41", "(526238) 2005 YY36", "(2074) Shoemaker", "(329340) 2001 LM5", "(3753) Cruithne", "(438429) 2006 WN1", "(385186) 1994 AW1", "(471241) 2011 BX18", "2011 WK15", "(451397) 2011 EZ78", "(5836) 1993 MF", "(523788) 2015 FP118", "2015 SY", "(2064) Thomsen", "(2061) Anza", "2005 TF", "(163364) 2002 OD20", "2020 ST1", "(108519) 2001 LF", "(30825) 1990 TG1", "(68347) 2001 KB67", "2018 WD2", "2018 XG5", "(311554) 2006 BQ147", "(253841) 2003 YG118", "(481394) 2006 SF6", "(3352) McAuliffe", "(442243) 2011 MD11", "2015 QT9", "(155334) 2006 DZ169", "2020 WK3", "(32906) 1994 RH", "(144411) 2004 EW9", "2018 UQ1", "(410088) 2007 EJ", "(477885) 2011 JT9", "(52340) 1992 SY", "2014 RL12", "2019 UC", "(219071) 1997 US9", "(485652) 2011 WO41", "(498066) 2007 RM133", "2015 SZ", "(8037) 1993 HO1", "(345705) 2006 VB14", "(65690) 1991 DG", "(153958) 2002 AM31", "(136993) 1998 ST49", "(154029) 2002 CY46", "(14402) 1991 DB", "2016 CO247", "(302311) 2002 AA", "2020 XH1", "(106589) 2000 WN107", "(285263) 1998 QE2", "(481532) 2007 LE", "2011 HP", "(459872) 2014 EK24", "2007 TQ24", "(420302) 2011 XZ1", "(525477) 2005 FC3", "(89355) 2001 VS78", "(220839) 2004 VA", "(2329) Orthos", "(422699) 2000 PD3", "(68346) 2001 KZ66", "2020 RB6", "(1980) Tezcatlipoca", "(145656) 4788 P-L", "(96631) 1999 FP59", "(506459) 2002 AL14", "2003 YJ", "(416071) 2002 NV", "2010 GT7", "2016 NA1", "(3635) Kreutz", "(8566) 1996 EN", "(19764) 2000 NF5", "(152978) 2000 GJ147", "(388838) 2008 EZ5", "(16834) 1997 WU22", "(461501) 2003 FT3", "(69230) Hermes", "(10636) 1998 QK56", "2020 SS4", "(492143) 2013 OE", "2011 CT4", "2017 CR32", "(89830) 2002 CE", "(137062) 1998 WM", "2019 GT3", "(1620) Geographos", "2018 EJ4", "(1917) Cuyo", "(1943) Anteros", "(15745) Yuliya", "(141052) 2001 XR1", "(1866) Sisyphus", "2017 VC", "(3198) Wallonia", "(500080) 2011 WV134", "(7822) 1991 CS", "(143624) 2003 HM16", "2019 YP5", "(137032) 1998 UO1", "(16960) 1998 QS52", "(4581) Asclepius", "(3858) Dorchester", "(3122) Florence", "(6037) 1988 EG", "(5863) Tara", "(442037) 2010 PR66", "(192563) 1998 WZ6", "(446833) 2001 RB12", "(465616) 2009 EC", "(462959) 2011 DU", "2019 SH6", "2014 WG365", "(174050) 2002 CC19", "(138852) 2000 WN10", "(4055) Magellan", "(515767) 2015 JA2", "(3255) Tholen", "(411201) 2010 LJ14", "2002 NY40", "(17274) 2000 LC16", "(433953) 1997 XR2", "(159608) 2002 AC2", "(5645) 1990 SP", "(40329) 1999 ML", "(12711) Tukmit", "(2100) Ra-Shalom", "(243147) 2007 TX18", "(331471) 1984 QY1", "(464798) 2004 JX20"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Data"], "start_date": "2000-09-04", "stop_date": "2021-02-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/collection_gbo.ast.mithneos.spectra_2000-2021_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/data/collection_gbo.ast.mithneos.spectra_2000-2021_data.xml", "scraped_at": "2026-02-25T20:02:10.761823Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.mithneos.spectra_2000-2021:document::1.0", "title": "MITHNEOS IRTF Spectra of Asteroids from 2000 to 2021 V1.0", "description": "This dataset is comprised of the near-infrared (0.65-2.5 micron) spectra of near-Earth objects (NEOs) and Mars crossing asteroids (MCs) as part of the MIT-Hawaii Near-Earth Object Spectroscopic Survey (MITHNEOS). The spectra were obtained from the 3-meter NASA Infrared Telescope Facility (IRTF) on Mauna Kea using the SpeX instrument in Low-Resolution Prism mode and the 0.8 x 15\" slit. Guiding was performed using spillover light from the slit with GuideDog for data taken prior to 2014, and using the MORIS CCD imager 2014 and later.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["2020 RC", "(415029) 2011 UL21", "(65996) 1998 MX5", "(3288) Seleucus", "2018 MM8", "(11405) 1999 CV3", "(143404) 2003 BD44", "(6569) Ondaatje", "1996 AE2", "2002 LY1", "(5011) Ptah", "2015 FS332", "(5626) Melissabrucker", "(7888) 1993 UC", "(52762) 1998 MT24", "(7358) Oze", "(613512) 2006 SK134", "2019 YH2", "2016 NL15", "(1627) Ivar", "2011 WN15", "(612098) 1999 RM45", "(19356) 1997 GH3", "(137126) 1999 CF9", "107P/1979 VA (Wilson-Harrington) [(4015) Wilson-Harrington]", "(137799) 1999 YB", "(154302) 2002 UQ3", "2008 QS11", "(318411) 2005 AH14", "(163348) 2002 NN4", "(496816) 1989 UP", "(380128) 1997 WB21", "2007 XY9", "(454177) 2013 GJ35", "(142040) 2002 QE15", "(438902) 2009 WF104", "(11066) Sigurd", "2016 LG", "(455148) 1994 UG", "(52768) 1998 OR2", "(612484) 2002 TS67", "(301964) 2000 EJ37", "(53426) 1999 SL5", "(217796) 2000 TO64", "(186822) 2004 FE31", "(413577) 2005 UL5", "(523586) 1999 LK1", "(380981) 2006 SU131", "(4953) 1990 MU", "(217807) 2000 XK44", "(36017) 1999 ND43", "(3691) Bede", "(194386) 2001 VG5", "(480004) 2014 KD91", "(495102) 2011 UU106", "2003 AF23", "2018 WX1", "(4179) Toutatis", "2014 QK434", "2015 OX78", "(101955) Bennu", "(162142) 1998 VR", "(503871) 2000 SL", "(7482) 1994 PC1", "2014 AD17", "(496817) 1989 VB", "(411165) 2010 DF1", "(457260) 2008 RY24", "2015 BF92", "2019 CH", "2015 WH9", "(153814) 2001 WN5", "(363067) 2000 CO101", "(144332) 2004 DV24", "(2335) James", "(163697) 2003 EF54", "(200840) 2001 XN254", "(141525) 2002 FV5", "(528650) 2008 WX32", "(155110) 2005 TB", "(163081) 2002 AG29", "(275611) 1999 XX262", "2018 TT1", "(162186) 1999 OP3", "(3554) Amun", "2002 AV", "(2340) Hathor", "(437844) 1999 MN", "(85989) 1999 JD6", "(488645) 2003 OV", "(511684) 2015 BN509", "(24445) 2000 PM8", "(326290) Akhenaten", "2017 BQ93", "(67367) 2000 LY27", "2011 UA", "(21088) Chelyabinsk", "(100926) 1998 MQ", "(1011) Laodamia", "2020 WU5", "(6585) O'Keefe", "(163373) 2002 PZ39", "2018 QN1", "(88188) 2000 XH44", "(170502) 2003 WM7", "(171819) 2001 FZ6", "(137924) 2000 BD19", "(363831) 2005 PY16", "(143651) 2003 QO104", "(1916) Boreas", "(1508) Kemi", "(65717) 1993 BX3", "(357024) 1999 YR14", "(3833) Calingasta", "(2212) Hephaistos", "(4688) 1980 WF", "(236716) 2007 FV42", "(612143) 2000 BO28", "2015 NU13", "2014 UR116", "(161998) 1988 PA", "(440212) 2004 OB", "(1468) Zomba", "2018 RC", "(310442) 2000 CH59", "(99907) 1989 VA", "2015 OL35", "(194126) 2001 SG276", "2013 PY6", "(68216) 2001 CV26", "(5653) Camarillo", "(138937) 2001 BK16", "(398188) Agni", "(453707) 2010 XY72", "(13553) Masaakikoyama", "(2063) Bacchus", "(214869) 2007 PA8", "(2449) Kenos", "(10145) 1994 CK1", "(5604) 1992 FE", "(24475) 2000 VN2", "(5587) 1990 SB", "2016 ED85", "2020 RO6", "(457768) 2009 KN4", "(413002) 1999 VG22", "(96189) Pygmalion", "2020 ME1", "2015 BK509", "(349063) 2006 XA", "2020 RF", "(3199) Nefertiti", "(5261) Eureka", "(468583) 2007 LS", "2018 KE3", "(244670) 2003 KN18", "2016 CL136", "2019 DN", "(612813) 2004 RF84", "(370307) 2002 RH52", "(523631) 2009 SX1", "(19127) Olegefremov", "(162058) 1997 AE12", "(88254) 2001 FM129", "2020 TB12", "(3402) Wisdom", "(523817) 2009 TK", "(144898) 2004 VD17", "(159504) 2000 WO67", "(4769) Castalia", "(18736) 1998 NU", "(154007) 2002 BY", "(450648) 2006 UC63", "(484795) 2009 DE47", "2020 PM7", "(11398) 1998 YP11", "2019 BK", "(189552) 2000 RL77", "2016 LX48", "(453778) 2011 JK", "(699) Hela", "2006 NL", "(380359) 2002 TN30", "(496818) 1993 RA", "(137199) 1999 KX4", "2011 WA", "(250706) 2005 RR6", "(265962) 2006 CG", "(518735) 2009 JL1", "(85990) 1999 JV6", "2020 XU6", "(226514) 2003 UX34", "2017 MC4", "(154347) 2002 XK4", "(496005) 2007 XJ16", "2017 CS", "(6053) 1993 BW3", "(3361) Orpheus", "2017 YE5", "(1951) Lick", "(416186) 2002 TD60", "(6386) Keithnoll", "(99942) Apophis", "(35107) 1991 VH", "(414586) 2009 UV18", "(137084) 1998 XS16", "(18882) 1999 YN4", "(329437) 2002 OA22", "(433) Eros", "(17182) 1999 VU", "(1139) Atami", "(36284) 2000 DM8", "2014 YM9", "(3988) Huma", "2011 YS62", "(242708) 2005 UK1", "(380160) 2000 JO78", "(505657) 2014 SR339", "2019 FU", "(465749) 2009 WO6", "(141354) 2002 AJ29", "(169675) 2002 JM97", "2013 UX14", "(159402) 1999 AP10", "2015 RF36", "(441987) 2010 NY65", "(54690) 2001 EB", "(480883) 2001 YE4", "(4995) Griffin", "(25916) 2001 CP44", "(66063) 1998 RO1", "(303174) 2004 FH11", "(1981) Midas", "(450649) 2006 UY64", "(527715) 2007 YQ56", "(137120) 1999 BJ8", "(4183) Cuno", "(1685) Toro", "(471240) 2011 BT15", "(153201) 2000 WO107", "(154807) 2004 PP97", "(138258) 2000 GD2", "(162911) 2001 LL5", "(90416) 2003 YK118", "(25143) Itokawa", "(2368) Beltrovata", "(337866) 2001 WL15", "(376864) 2001 TP103", "(474179) 1999 VS6", "(162082) 1998 HL1", "(297300) 1998 SC15", "(1865) Cerberus", "2016 NV38", "(5407) 1992 AX", "2016 GU", "(54789) 2001 MZ7", "(4451) Grieve", "(86450) 2000 CK33", "(312473) 2008 SX245", "(242211) 2003 QB90", "(1198) Atlantis", "2007 EC", "(4341) Poseidon", "(66146) 1998 TU3", "(162004) 1991 VE", "(1580) Betulia", "2018 NB", "(1204) Renzia", "2016 AZ8", "(458198) 2010 RT11", "(21374) 1997 WS22", "(388945) 2008 TZ3", "(2102) Tantalus", "(68950) 2002 QF15", "(136874) 1998 FH74", "(243025) 2006 UM216", "(11500) Tomaiyowit", "(385343) 2002 LV", "2021 CG", "(2078) Nanking", "(5693) 1993 EA", "2018 PP10", "(354030) 2001 RB18", "(24761) Ahau", "(8014) 1990 MF", "(7336) Saunders", "2014 LW21", "(132) Aethra", "2016 XH1", "(4197) Morpheus", "2017 RL", "(361123) 2006 GW2", "(444584) 2006 UK", "(382503) 2001 RE8", "(66272) 1999 JW6", "(53435) 1999 VM40", "(162998) 2001 SK162", "(3920) Aubignan", "(7304) Namiki", "2015 BC", "2016 ES155", "(283460) 2001 PD1", "(152563) 1992 BF", "(1566) Icarus", "(17511) 1992 QN", "(1862) Apollo", "(3200) Phaethon", "(141018) 2001 WC47", "(25330) 1999 KV4", "(265482) 2005 EE", "(3671) Dionysus", "(241662) 2000 KO44", "(452389) 2002 NW16", "(206378) 2003 RB", "(138911) 2001 AE2", "(138404) 2000 HA24", "(389694) 2011 QD48", "(85628) 1998 KV2", "(887) Alinda", "(139622) 2001 QQ142", "(15817) Lucianotesi", "(1310) Villigera", "(452561) 2005 AB", "(68359) 2001 OZ13", "(531060) 2012 DJ61", "(416151) 2002 RQ25", "(399774) 2005 NB7", "(53319) 1999 JM8", "2016 UE101", "(8567) 1996 HW1", "(381677) 2009 BJ81", "(612777) 2004 LU3", "(416584) 2004 JB12", "2017 DA36", "(203217) 2001 FX9", "(22771) 1999 CU3", "(153842) 2001 XT30", "(302830) 2003 FB", "2017 MB1", "2020 RJ3", "(31345) 1998 PG", "(7088) Ishtar", "2020 DX", "(86819) 2000 GK137", "(99799) 2002 LJ3", "(163899) 2003 SD220", "(523811) 2008 TQ2", "(6239) Minos", "(20790) 2000 SE45", "(495615) 2015 PQ291", "(6411) Tamaga", "(138524) 2000 OJ8", "(719) Albert", "(175189) 2005 EC224", "(189040) 2000 MU1", "2018 LQ2", "(141053) 2001 XT1", "(512) Taurinensis", "(5131) 1990 BG", "(489486) 2007 GS3", "(294739) 2008 CM", "(86039) 1999 NC43", "2019 AN5", "2020 TY1", "(140158) 2001 SX169", "2020 SY4", "2015 TA25", "(3103) Eger", "(7889) 1994 LX", "2018 BP", "2016 PR8", "(267494) 2002 JB9", "(4486) Mithra", "(190208) 2006 AQ", "(5392) Parker", "(451157) 2009 SQ104", "(137108) 1999 AN10", "(2059) Baboquivari", "(482650) 2013 BK18", "(365424) 2010 KX7", "2015 XB379", "2017 RR15", "(163249) 2002 GT", "(5817) Robertfrazer", "(96590) 1998 XB", "(338292) 2002 UA31", "(98943) 2001 CC21", "(163902) 2003 SW222", "(333888) 1998 ST4", "(5189) 1990 UQ", "(63164) 2000 YU14", "(141498) 2002 EZ16", "2015 JJ2", "(29075) 1950 DA", "(65679) 1989 UQ", "(5646) 1990 TR", "(326777) 2003 SV222", "(39572) 1993 DQ1", "2015 DB", "(35396) 1997 XF11", "(152931) 2000 EA107", "2005 GR33", "(10115) 1992 SK", "2015 JY1", "(4954) Eric", "(163696) 2003 EB50", "(3102) Krok", "(86212) 1999 TG21", "(142464) 2002 TC9", "(5879) Almeria", "2018 JA", "(66391) Moshup", "(7341) 1991 VK", "(450160) 2000 RM12", "(414960) 2011 CS4", "2008 SR1", "(326291) 1998 HM3", "(363599) 2004 FG11", "(348400) 2005 JF21", "(3908) Nyx", "(88710) 2001 SL9", "(470510) 2008 CJ116", "(3552) Don Quixote", "2020 PD1", "2013 CW32", "(6611) 1993 VW", "(163000) 2001 SW169", "(410778) 2009 FG19", "(250577) 2005 AC", "(175706) 1996 FG3", "2018 QV1", "2016 LV", "(313276) 2002 AX1", "(164202) 2004 EW", "(5230) Asahina", "(237805) 2002 CF26", "(52760) 1998 ML14", "(173664) 2001 JU2", "(162173) Ryugu", "2020 WL3", "(102528) 1999 US3", "(153591) 2001 SN263", "(5660) 1974 MA", "(443103) 2013 WT67", "(162510) 2000 QW69", "(483422) 2000 CE59", "(162781) 2000 XL44", "Multiple Asteroids", "(422686) 2000 AC6", "(512245) 2016 AU8", "(66251) 1999 GJ2", "(469737) 2005 NW44", "2020 QW", "(1640) Nemo", "2015 SV2", "2019 HC", "(308635) 2005 YU55", "(141670) 2002 JS100", "(438955) 2010 LN14", "(4558) Janesick", "(194268) 2001 UY4", "2017 AE5", "(612199) 2000 WL63", "(154244) 2002 KL6", "(355256) 2007 KN4", "(34613) 2000 UR13", "(5143) Heracles", "(612348) 2002 GZ8", "(2099) Opik", "(467963) 2012 JT17", "(22753) 1998 WT", "(87684) 2000 SY2", "2016 YM", "(405058) 2001 TX16", "(154330) 2002 VX94", "2017 BM123", "2018 QU1", "(437316) 2013 OS3", "2014 UF206", "(85709) 1998 SG36", "(2062) Aten", "2020 WM3", "(1374) Isora", "(154993) 2005 EA94", "(90147) 2002 YK14", "2007 RU17", "(455322) 2002 NX18", "(1036) Ganymed", "(410777) 2009 FD", "(448003) 2008 DE", "2019 CD5", "(68278) 2001 FC7", "(1131) Porzia", "(413038) 2001 MF1", "(5786) Talos", "(154276) 2002 SY50", "(454100) 2013 BO73", "(6455) 1992 HE", "2020 PS", "(9400) 1994 TW1", "(13353) 1998 TU12", "(297418) 2000 SP43", "(143992) 2004 AF", "(333889) 1998 SV4", "2019 AP3", "2005 WS3", "(141593) 2002 HK12", "(37336) 2001 RM", "(475665) 2006 VY13", "(85804) 1998 WQ5", "(203015) 1999 YF3", "(523667) 2012 TM139", "(112221) 2002 KH4", "2016 UU80", "(250620) 2005 GE59", "(1864) Daedalus", "2015 DP155", "2016 YK", "(416591) 2004 LC2", "(401857) 2000 PG3", "(3674) Erbisbuhl", "2012 SG32", "(137170) 1999 HF1", "(162687) 2000 UH1", "(1565) Lemaitre", "2020 SN", "2004 QD3", "(85818) 1998 XM4", "(136923) 1998 JH2", "(190166) 2005 UP156", "2009 SV17", "2015 AZ43", "(326683) 2002 WP", "(33342) 1998 WT24", "(26760) 2001 KP41", "(526238) 2005 YY36", "(2074) Shoemaker", "(329340) 2001 LM5", "(3753) Cruithne", "(438429) 2006 WN1", "(385186) 1994 AW1", "(471241) 2011 BX18", "2011 WK15", "(451397) 2011 EZ78", "(5836) 1993 MF", "(523788) 2015 FP118", "2015 SY", "(2064) Thomsen", "(2061) Anza", "2005 TF", "(163364) 2002 OD20", "2020 ST1", "(108519) 2001 LF", "(30825) 1990 TG1", "(68347) 2001 KB67", "2018 WD2", "2018 XG5", "(311554) 2006 BQ147", "(253841) 2003 YG118", "(481394) 2006 SF6", "(3352) McAuliffe", "(442243) 2011 MD11", "2015 QT9", "(155334) 2006 DZ169", "2020 WK3", "(32906) 1994 RH", "(144411) 2004 EW9", "2018 UQ1", "(410088) 2007 EJ", "(477885) 2011 JT9", "(52340) 1992 SY", "2014 RL12", "2019 UC", "(219071) 1997 US9", "(485652) 2011 WO41", "(498066) 2007 RM133", "2015 SZ", "(8037) 1993 HO1", "(345705) 2006 VB14", "(65690) 1991 DG", "(153958) 2002 AM31", "(136993) 1998 ST49", "(154029) 2002 CY46", "(14402) 1991 DB", "2016 CO247", "(302311) 2002 AA", "2020 XH1", "(106589) 2000 WN107", "(285263) 1998 QE2", "(481532) 2007 LE", "2011 HP", "(459872) 2014 EK24", "2007 TQ24", "(420302) 2011 XZ1", "(525477) 2005 FC3", "(89355) 2001 VS78", "(220839) 2004 VA", "(2329) Orthos", "(422699) 2000 PD3", "(68346) 2001 KZ66", "2020 RB6", "(1980) Tezcatlipoca", "(145656) 4788 P-L", "(96631) 1999 FP59", "(506459) 2002 AL14", "2003 YJ", "(416071) 2002 NV", "2010 GT7", "2016 NA1", "(3635) Kreutz", "(8566) 1996 EN", "(19764) 2000 NF5", "(152978) 2000 GJ147", "(388838) 2008 EZ5", "(16834) 1997 WU22", "(461501) 2003 FT3", "(69230) Hermes", "(10636) 1998 QK56", "2020 SS4", "(492143) 2013 OE", "2011 CT4", "2017 CR32", "(89830) 2002 CE", "(137062) 1998 WM", "2019 GT3", "(1620) Geographos", "2018 EJ4", "(1917) Cuyo", "(1943) Anteros", "(15745) Yuliya", "(141052) 2001 XR1", "(1866) Sisyphus", "2017 VC", "(3198) Wallonia", "(500080) 2011 WV134", "(7822) 1991 CS", "(143624) 2003 HM16", "2019 YP5", "(137032) 1998 UO1", "(16960) 1998 QS52", "(4581) Asclepius", "(3858) Dorchester", "(3122) Florence", "(6037) 1988 EG", "(5863) Tara", "(442037) 2010 PR66", "(192563) 1998 WZ6", "(446833) 2001 RB12", "(465616) 2009 EC", "(462959) 2011 DU", "2019 SH6", "2014 WG365", "(174050) 2002 CC19", "(138852) 2000 WN10", "(4055) Magellan", "(515767) 2015 JA2", "(3255) Tholen", "(411201) 2010 LJ14", "2002 NY40", "(17274) 2000 LC16", "(433953) 1997 XR2", "(159608) 2002 AC2", "(5645) 1990 SP", "(40329) 1999 ML", "(12711) Tukmit", "(2100) Ra-Shalom", "(243147) 2007 TX18", "(331471) 1984 QY1", "(464798) 2004 JX20"], "instruments": ["IRTF 3.2m", "SpeX"], "instrument_hosts": ["Infra Red Telescope Facility-Maunakea"], "data_types": ["Document"], "start_date": "2000-09-04", "stop_date": "2021-02-08", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/collection_gbo.ast.mithneos.spectra_2000-2021_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.mithneos.spectra_2000-2021_V1_0/document/collection_gbo.ast.mithneos.spectra_2000-2021_document.xml", "scraped_at": "2026-02-25T20:02:10.761866Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.sawyer.spectra:data::1.0", "title": "Sawyer Asteroid Spectra V1.0", "description": "This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(107) Camilla", "(34) Circe", "(230) Athamantis", "(419) Aurelia", "(704) Interamnia", "(410) Chloris", "(130) Elektra", "(91) Aegina", "(203) Pompeja", "(85) Io", "(476) Hedwig", "(5) Astraea", "(72) Feronia", "(65) Cybele", "(87) Sylvia", "(45) Eugenia", "(27) Euterpe", "(1268) Libya", "(14) Irene", "(173) Ino", "(57) Mnemosyne", "(532) Herculina", "(51) Nemausa", "Multiple Asteroids", "(64) Angelina", "(386) Siegena", "(41) Daphne", "(712) Boliviana", "(111) Ate", "(171) Ophelia", "(1167) Dubiago", "(702) Alauda", "(52) Europa", "Solar Analog Stars", "(148) Gallia", "(434) Hungaria", "(19) Fortuna", "(2) Pallas", "(804) Hispania", "(63) Ausonia", "(329) Svea", "(1172) Aneas", "(128) Nemesis", "(30) Urania", "(70) Panopaea", "(54) Alexandra", "(10) Hygiea", "(127) Johanna", "(387) Aquitania", "(190) Ismene", "(212) Medea", "(194) Prokne", "(13) Egeria", "(511) Davida", "(48) Doris", "(137) Meliboea", "(241) Germania", "(95) Arethusa", "(98) Ianthe", "(537) Pauly", "(405) Thia", "(9) Metis", "(602) Marianna", "(93) Minerva", "(409) Aspasia", "(617) Patroclus", "(44) Nysa", "(20) Massalia", "(431) Nephele", "(505) Cava"], "instruments": ["2.7m Telescope", "Large Cassegrain Spectrometer", "2.1-m Struve Warner & Swasey reflector", "Cassegrain Spectrometer", "Literature search"], "instrument_hosts": ["McDonald Observatory", "McDonald Observatory"], "data_types": ["Data"], "start_date": "1983-09-15", "stop_date": "1990-07-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/collection_gbo.ast.sawyer.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/data/collection_gbo.ast.sawyer.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761884Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast.sawyer.spectra:document::1.0", "title": "Sawyer Asteroid Spectra V1.0", "description": "This data set contains 94 optical asteroid spectra obtained by Scott Sawyer as part of his Ph.D. dissertation at the University of Texas at Austin. Observational circumstances and processing level are also provided.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["None"], "targets": ["(107) Camilla", "(34) Circe", "(230) Athamantis", "(419) Aurelia", "(704) Interamnia", "(410) Chloris", "(130) Elektra", "(91) Aegina", "(203) Pompeja", "(85) Io", "(476) Hedwig", "(5) Astraea", "(72) Feronia", "(65) Cybele", "(87) Sylvia", "(45) Eugenia", "(27) Euterpe", "(1268) Libya", "(14) Irene", "(173) Ino", "(57) Mnemosyne", "(532) Herculina", "(51) Nemausa", "Multiple Asteroids", "(64) Angelina", "(386) Siegena", "(41) Daphne", "(712) Boliviana", "(111) Ate", "(171) Ophelia", "(1167) Dubiago", "(702) Alauda", "(52) Europa", "Solar Analog Stars", "(148) Gallia", "(434) Hungaria", "(19) Fortuna", "(2) Pallas", "(804) Hispania", "(63) Ausonia", "(329) Svea", "(1172) Aneas", "(128) Nemesis", "(30) Urania", "(70) Panopaea", "(54) Alexandra", "(10) Hygiea", "(127) Johanna", "(387) Aquitania", "(190) Ismene", "(212) Medea", "(194) Prokne", "(13) Egeria", "(511) Davida", "(48) Doris", "(137) Meliboea", "(241) Germania", "(95) Arethusa", "(98) Ianthe", "(537) Pauly", "(405) Thia", "(9) Metis", "(602) Marianna", "(93) Minerva", "(409) Aspasia", "(617) Patroclus", "(44) Nysa", "(20) Massalia", "(431) Nephele", "(505) Cava"], "instruments": ["2.7m Telescope", "Large Cassegrain Spectrometer", "2.1-m Struve Warner & Swasey reflector", "Cassegrain Spectrometer", "Literature search"], "instrument_hosts": ["McDonald Observatory", "McDonald Observatory"], "data_types": ["Document"], "start_date": "1983-09-15", "stop_date": "1990-07-14", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/collection_gbo.ast.sawyer.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast.sawyer.spectra_V1_0/document/collection_gbo.ast.sawyer.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761895Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hst.ast-ceres.images-albedo-shape:data::1.0", "title": "HST images, albedo maps, and shape of (1) Ceres V1.0", "description": "This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HST"], "targets": ["(1) Ceres"], "instruments": ["Advance Camera For Surveys"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": ["Data"], "start_date": "2003-12-28", "stop_date": "2004-01-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/collection_hst.ast-ceres.images-albedo-shape_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/data/collection_hst.ast-ceres.images-albedo-shape_data.xml", "scraped_at": "2026-02-25T20:02:10.761900Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hst.ast-ceres.images-albedo-shape:document::1.0", "title": "HST images, albedo maps, and shape of (1) Ceres V1.0", "description": "This dataset contains 267 HST ACS/HRC images of asteroid (1) Ceres obtained in 2003/2004 at three wavelengths, 535 nm, 335 nm, and 223 nm. They have been photometrically calibrated to standard reflectance unit I/F. The dataset also includes a shape for Ceres, as well as three surface albedo maps covering the area between +/-50 deg latitude, derived from these images.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HST"], "targets": ["(1) Ceres"], "instruments": ["Advance Camera For Surveys"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": ["Document"], "start_date": "2003-12-28", "stop_date": "2004-01-24", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/collection_hst.ast-ceres.images-albedo-shape_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.images-albedo-shape_V1_0/document/collection_hst.ast-ceres.images-albedo-shape_document.xml", "scraped_at": "2026-02-25T20:02:10.761903Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hst.ast-ceres.uv-spectra:data::1.0", "title": "HST UV Slitless Reflectance Spectra of (1) Ceres V1.0", "description": "This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HST"], "targets": ["(1) Ceres", "(1) Ceres"], "instruments": ["Advance Camera For Surveys"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": ["Data"], "start_date": "2007-11-25", "stop_date": "2007-11-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/collection_hst.ast-ceres.uv-spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/data/collection_hst.ast-ceres.uv-spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761907Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hst.ast-ceres.uv-spectra:document::1.0", "title": "HST UV Slitless Reflectance Spectra of (1) Ceres V1.0", "description": "This archive package contains the reflectance spectra of Ceres from 121 nm to 198 nm based on the slitless spectrographic observations using HST/ACS SBC performed on 2007 November 25. Ceres was spatially resolved to about 21 pixels in diameter. The raw spectra were extracted from the raw 2D spectral image corresponding to all pixels within the disk of Ceres, calibrated to intensity unit and then to reflectance unit. The final reflectance spectra of Ceres is the average of all spectra over the whole disk of Ceres. All intermediate data and the final average reflectance spectra are included in the data set.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HST"], "targets": ["(1) Ceres", "(1) Ceres"], "instruments": ["Advance Camera For Surveys"], "instrument_hosts": ["Hubble Space Telescope"], "data_types": ["Document"], "start_date": "2007-11-25", "stop_date": "2007-11-25", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/collection_hst.ast-ceres.uv-spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/hst.ast-ceres.uv-spectra_V1_0/document/collection_hst.ast-ceres.uv-spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761911Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.amica:calibration::1.0", "title": "Hayabusa AMICA Calibration Collection", "description": "This is the calibration collection for the hay.amica bundle. The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encount. This data set includes two types of calibration data. The ecas_ground_cal directory contains the ground based calibration of stars observed by the Hayabusa AMICA instrument during the cruise phase of the mission. The preflight directory contains preflight flat field data. The filters directory contains the filter profiles", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": ["x Filter", "zs Filter", "p Filter", "Calibration Target", "b Filter", "v Filter", "w Filter", "ul Filter", "Flat Field"], "instruments": ["ASTEROID MULTI-BAND IMAGING CAMERA", "SBIG ST-9E", "Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"], "instrument_hosts": ["HAYABUSA", "Goodricke-Pigott Observatory"], "data_types": ["Calibration"], "start_date": "2003-03-18", "stop_date": "2005-11-19", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/collection_hay.amica_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/calibration/collection_hay.amica_calibration.xml", "scraped_at": "2026-02-25T20:02:10.761918Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.amica:data_raw::1.0", "title": "Hayabusa AMICA Data Raw Collection", "description": "This is the data_raw collection for the hay.amica bundle. The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": ["* tau Sco", "Mars", "Earth I (Moon)", "Earth", "* 31 Leo", "* bet Tau", "* alf Sco", "* alf Ori", "* alf Leo", "Saturn", "Calibration Lamp", "(25143) Itokawa", "* alf Aur", "* alf Crv", "* alf Vir", "Sky"], "instruments": ["ASTEROID MULTI-BAND IMAGING CAMERA", "SBIG ST-9E", "Orion Astroview 120ST EQ at Goodricke-Pigott Observatory"], "instrument_hosts": ["HAYABUSA", "Goodricke-Pigott Observatory"], "data_types": ["Data"], "start_date": "2003-03-18", "stop_date": "2005-11-19", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/collection_hay.amica_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/data_raw/collection_hay.amica_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.761924Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.amica:document::1.0", "title": "Hayabusa AMICA Document Collection", "description": "This is the document collection for the Hayabusa AMICA instrument data.The Asteroid Multi-band Imaging Camera (AMICA) of the Hayabusa mission to the asteroid 25143 Itokawa obtained 1662 images from May 11, 2003, shortly after launch, until November 19, 2005, after Itokawa encounter. This data set includes all images from the mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/collection_hay.amica_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.amica/document/collection_hay.amica_document.xml", "scraped_at": "2026-02-25T20:02:10.761927Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.lidar:data_calibrated::1.0", "title": "data_calibrated collection for the \"HAYABUSA LIDAR\" bundle", "description": "This is the data_calibrated collection for the hay.lidar bundle. The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": ["(25143) Itokawa"], "instruments": ["LIGHT DETECTION AND RANGING INSTRUMENT"], "instrument_hosts": ["HAYABUSA"], "data_types": ["Data"], "start_date": "2005-09-11", "stop_date": "2005-11-25", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/collection_hay.lidar_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_calibrated/collection_hay.lidar_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.761932Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.lidar:data_raw::1.0", "title": "data_raw collection for the \"HAYABUSA LIDAR\" bundle", "description": "This is the data_raw collection for the hay.lidar bundle. The HAYABUSA spacecraft included a LIght Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": ["(25143) Itokawa"], "instruments": ["LIGHT DETECTION AND RANGING INSTRUMENT"], "instrument_hosts": ["HAYABUSA"], "data_types": ["Data"], "start_date": "2005-09-11", "stop_date": "2005-11-25", "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/collection_hay.lidar_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/data_raw/collection_hay.lidar_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.761936Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.lidar:document::1.0", "title": "Document collection for the \"HAYABUSA LIDAR\" bundle", "description": "This is the document collection for the hayabusa LIDAR instrument dataset. The HAYABUSA spacecraft included a Light Detection and Ranging (LIDAR) altimeter. The primary objective of LIDAR was to establish the range between the HAYABUSA spacecraft and the asteroid Itokawa for navigation purposes during the surveying and collection phases of the mission. It provided excellent estimates of the location of the spacecraft relative to the asteroid. The Experiment Data Record (EDR) and Calibrated Data Record (CDR) from the Hayabusa LIDAR experiment are included in this data set. This updated version of the HAYABUSA LIDAR data includes a new CDR where the offsets between a high resolution shape model and the LIDAR data were minimized by optmizing the spacecraft trajectory.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/collection_hay.lidar_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.lidar/document/collection_hay.lidar_document.xml", "scraped_at": "2026-02-25T20:02:10.761939Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.mission:context::1.0", "title": "Hayabusa: Context", "description": "This collection contains the context prodcuts applicable to the Hayabusa mission as a whole; includes context products such as mission overview, mission host, and instrument overviews.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": [], "instruments": ["ASTEROID MULTI-BAND IMAGING CAMERA", "LIGHT DETECTION AND RANGING INSTRUMENT", "NEAR-INFRARED SPECTROMETER"], "instrument_hosts": ["HAYABUSA"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/collection_context.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.761943Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.mission:document::1.0", "title": "The document collection for the Hayabusa mission bundle", "description": "This collection contains the documents pertaining to the PDS Hayabusa mission archive as a whole.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/collection_hay.mission_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/document/collection_hay.mission_document.xml", "scraped_at": "2026-02-25T20:02:10.761947Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:hay.mission:xml_schema::1.0", "title": "Hayabusa: XML_Schema", "description": "This collection contains the xml_schema prodcuts applicable to the Hayabusa mission as a whole.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["HAYABUSA"], "targets": [], "instruments": ["ASTEROID MULTI-BAND IMAGING CAMERA", "LIGHT DETECTION AND RANGING INSTRUMENT", "NEAR-INFRARED SPECTROMETER"], "instrument_hosts": ["HAYABUSA"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/collection_xml_schema.xml", "source_url": "https://sbnarchive.psi.edu/pds4/hayabusa/hay.mission/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.761954Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iras:data_9p_images::1.0", "title": "IRAS Images of 9P/Tempel 1", "description": "This data set contains radiance and noise maps based on reprocessed images of comet 9P/Tempel 1 acquired by IRAS during months before and after its perihelion on July 9, 1983.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Infrared Astronomical Satellite (IRAS)"], "targets": ["9P/TEMPEL 1"], "instruments": ["Focal Plane Array"], "instrument_hosts": ["Infrared Astronomical Satellite"], "data_types": ["Data"], "start_date": "1983-06-18", "stop_date": "1983-10-08", "browse_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/collection_iras_data_9p_images.xml", "source_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_images/collection_iras_data_9p_images.xml", "scraped_at": "2026-02-25T20:02:10.761958Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iras:data_9p_photometry::1.0", "title": "IRAS Photometry of 9P/Tempel 1", "description": "This data set contains 12-, 25-, 60-, and 100-micron photometry of the dust coma of comet 9P/Tempel 1 during its 1983 apparition. The photometry was derived from reconstructed observations acquired by the Focal Plane Array (FPA) instrument on the Infrared Astronomical Satellite (IRAS).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Infrared Astronomical Satellite (IRAS)"], "targets": ["9P/TEMPEL 1"], "instruments": ["Focal Plane Array"], "instrument_hosts": ["Infrared Astronomical Satellite"], "data_types": ["Data"], "start_date": "1983-06-18", "stop_date": "1983-10-08", "browse_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/collection_iras_data_9p_photometry.xml", "source_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_9p_photometry/collection_iras_data_9p_photometry.xml", "scraped_at": "2026-02-25T20:02:10.761962Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iras:data_simps::1.0", "title": "IRAS Minor Planet Survey (SIMPS) data collection", "description": "The Supplemental IRAS Minor Planet Survey (SIMPS) provides diameters and albedos for asteroids detected by the 1983 IRAS mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Infrared Astronomical Satellite (IRAS)"], "targets": ["Multiple Asteroids"], "instruments": ["Focal Plane Array"], "instrument_hosts": ["Infrared Astronomical Satellite"], "data_types": ["Data"], "start_date": "1983-02-09", "stop_date": "1983-11-18", "browse_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/collection_iras_data_simps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_simps/collection_iras_data_simps.xml", "scraped_at": "2026-02-25T20:02:10.761965Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iras:data_zodiacal::1.0", "title": "The IRAS Zodiacal Data Collection", "description": "The IRAS Zodiacal collection contains the data stream output of the Infrared Astronomical Satellite (IRAS) as organized in the Low and Medium-Resolution Zodiacal History Files.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Infrared Astronomical Satellite (IRAS)"], "targets": ["DUST"], "instruments": ["Focal Plane Array"], "instrument_hosts": ["Infrared Astronomical Satellite"], "data_types": ["Data"], "start_date": "1983-02-08", "stop_date": "1983-11-21", "browse_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/collection_iras_data_zodiacal.xml", "source_url": "https://sbnarchive.psi.edu/pds4/iras/iras/data_zodiacal/collection_iras_data_zodiacal.xml", "scraped_at": "2026-02-25T20:02:10.761969Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iras:document::1.0", "title": "The IRAS Document Collection", "description": "The document collection for the IRAS bundle.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": [], "targets": [], "instruments": [], "instrument_hosts": [], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/iras/iras/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/iras/iras/document/collection_iras_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/iras/iras/document/collection_iras_document.xml", "scraped_at": "2026-02-25T20:02:10.761972Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iras:miscellaneous::1.0", "title": "The IRAS Miscellaneous Collection", "description": "The IRAS miscellaneous data collection contains the filter curves and detector parameters for the FPA instrument, the template for 4 data sets containing the transmission profiles of the IRAS broadband filters, and the spacecraft position vectors and scan parameters.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Infrared Astronomical Satellite (IRAS)"], "targets": ["filter"], "instruments": ["Focal Plane Array"], "instrument_hosts": ["Infrared Astronomical Satellite"], "data_types": ["Data"], "start_date": "1983-02-08", "stop_date": "1983-11-22", "browse_url": "https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/collection_iras_miscellaneous.xml", "source_url": "https://sbnarchive.psi.edu/pds4/iras/iras/miscellaneous/collection_iras_miscellaneous.xml", "scraped_at": "2026-02-25T20:02:10.761975Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iue.ast.hendrix.spectra:data::2.0", "title": "Hendrix IUE asteroid reflectance spectra V2.0", "description": "This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Iue"], "targets": ["(308) Polyxo", "(41) Daphne", "(42) Isis", "(12) Victoria", "(1620) Geographos", "(40) Harmonia", "(14) Irene", "(433) Eros", "(29) Amphitrite", "(410) Chloris", "(27) Euterpe", "(654) Zelinda", "(10) Hygiea", "(471) Papagena", "(16) Psyche", "(63) Ausonia", "(8) Flora", "(135) Hertha", "(4179) Toutatis", "(18) Melpomene", "(51) Nemausa", "(20) Massalia", "(511) Davida", "(75) Eurydike", "(349) Dembowska", "(21) Lutetia", "(54) Alexandra", "(9) Metis", "(23) Thalia", "Multiple Asteroids", "(129) Antigone", "(324) Bamberga", "(88) Thisbe", "(15) Eunomia", "(216) Kleopatra", "(44) Nysa", "(532) Herculina", "(1566) Icarus", "(354) Eleonora", "(704) Interamnia"], "instruments": ["LONG-WAVELENGTH REDUNDANT for IUE", "LONG-WAVELENGTH PRIME for IUE"], "instrument_hosts": ["International Ultraviolet Explorer", "International Ultraviolet Explorer"], "data_types": ["Data"], "start_date": "1978-05-21", "stop_date": "1994-09-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/collection_iue.ast.hendrix.spectra_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/data/collection_iue.ast.hendrix.spectra_data.xml", "scraped_at": "2026-02-25T20:02:10.761981Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:iue.ast.hendrix.spectra:document::2.0", "title": "Hendrix IUE asteroid reflectance spectra V2.0", "description": "This archive includes derived International Ultraviolet Observer (IUE) reflectance spectra for nearly all asteroid targets observed using IUE. We include derived reflectance spectra and, where appropriate, an average reflectance spectrum for each target. We include thumbnail plots of the reflectance spectra and the original IUE header files for each observation.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Iue"], "targets": ["(308) Polyxo", "(41) Daphne", "(42) Isis", "(12) Victoria", "(1620) Geographos", "(40) Harmonia", "(14) Irene", "(433) Eros", "(29) Amphitrite", "(410) Chloris", "(27) Euterpe", "(654) Zelinda", "(10) Hygiea", "(471) Papagena", "(16) Psyche", "(63) Ausonia", "(8) Flora", "(135) Hertha", "(4179) Toutatis", "(18) Melpomene", "(51) Nemausa", "(20) Massalia", "(511) Davida", "(75) Eurydike", "(349) Dembowska", "(21) Lutetia", "(54) Alexandra", "(9) Metis", "(23) Thalia", "Multiple Asteroids", "(129) Antigone", "(324) Bamberga", "(88) Thisbe", "(15) Eunomia", "(216) Kleopatra", "(44) Nysa", "(532) Herculina", "(1566) Icarus", "(354) Eleonora", "(704) Interamnia"], "instruments": ["LONG-WAVELENGTH REDUNDANT for IUE", "LONG-WAVELENGTH PRIME for IUE"], "instrument_hosts": ["International Ultraviolet Explorer", "International Ultraviolet Explorer"], "data_types": ["Document"], "start_date": "1978-05-21", "stop_date": "1994-09-01", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/collection_iue.ast.hendrix.spectra_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/iue.ast.hendrix.spectra_V2_0/document/collection_iue.ast.hendrix.spectra_document.xml", "scraped_at": "2026-02-25T20:02:10.761988Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps:data::1.0", "title": "Phoebe SPC Shape Model and Assessment Products V1.0", "description": "This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-huygens"], "targets": ["Saturn IX (Phoebe)"], "instruments": ["Imaging Science Subsystem - Wide Angle", "Imaging Science Subsystem - Narrow Angle"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/collection_satellite-phoebe.cassini.shape-models-maps_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/data/collection_satellite-phoebe.cassini.shape-models-maps_data.xml", "scraped_at": "2026-02-25T20:02:10.761993Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:satellite-phoebe.cassini.shape-models-maps:document::1.0", "title": "Phoebe SPC Shape Model and Assessment Products V1.0", "description": "This bundle contains a shape model for the Saturnian moon Phoebe, along with quality assessment data. The global model is similar to the previously archived \"Gaskell Phoebe Shape Model\", but is provided in multiple formats.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Cassini-huygens"], "targets": ["Saturn IX (Phoebe)"], "instruments": ["Imaging Science Subsystem - Wide Angle", "Imaging Science Subsystem - Narrow Angle"], "instrument_hosts": ["Cassini Orbiter", "Cassini Orbiter"], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/collection_satellite-phoebe.cassini.shape-models-maps_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/cassini/satellite-phoebe.cassini.shape-models-maps_V1_0/document/collection_satellite-phoebe.cassini.shape-models-maps_document.xml", "scraped_at": "2026-02-25T20:02:10.761997Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.mission:context::2.0", "title": "The NEAR Mission Bundle Context Collection", "description": "This collection contains the context products applicable to the NEAR mission as a whole; including context products such as mission, spacecraft, instrument, and target context products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR"], "targets": ["433 Eros", "253 Mathilde", "Earth", "C/1996 B2 (Hyakutake)", "SOLAR_SYSTEM", "SPACE"], "instruments": ["GAMMA RAY SPECTROMETER for NEAR", "MAGNETOMETER for NEAR", "MULTI-SPECTRAL IMAGER for NEAR", "NEAR INFRARED SPECTROMETER for NEAR", "NEAR LASER RANGEFINDER for NEAR", "XRAY SPECTROMETER for NEAR", "RADIO SCIENCE SUBSYSTEM for NEAR"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Context"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/collection_context.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/context/collection_context.xml", "scraped_at": "2026-02-25T20:02:10.762002Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.mission:document::2.0", "title": "NEAR Mission Bundle Document Collection", "description": "This collection contains the documents applicable to the NEAR mission archive as a whole.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR"], "targets": ["433 Eros", "253 Mathilde", "Earth", "C/1996 B2 (Hyakutake)", "Earth", "SOLAR_SYSTEM"], "instruments": ["GAMMA RAY SPECTROMETER for NEAR", "MAGNETOMETER for NEAR", "MULTI-SPECTRAL IMAGER for NEAR", "NEAR INFRARED SPECTROMETER for NEAR", "NEAR LASER RANGEFINDER for NEAR", "XRAY SPECTROMETER for NEAR", "RADIO SCIENCE SUBSYSTEM for NEAR"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/collection_near.mission_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/document/collection_near.mission_document.xml", "scraped_at": "2026-02-25T20:02:10.762007Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near.mission:xml_schema::1.0", "title": "The NEAR Mission Bundle XML Schema Collection", "description": "This collection contains the xml_schema prodcuts applicable to the NEAR mission as a whole.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR"], "targets": ["433 Eros", "253 Mathilde", "Earth", "SOLAR_SYSTEM", "C/1996 B2 (Hyakutake)"], "instruments": ["GAMMA RAY SPECTROMETER for NEAR", "MAGNETOMETER for NEAR", "MULTI-SPECTRAL IMAGER for NEAR", "NEAR INFRARED SPECTROMETER for NEAR", "NEAR LASER RANGEFINDER for NEAR", "XRAY SPECTROMETER for NEAR", "RADIO SCIENCE SUBSYSTEM for NEAR"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["XML Schema"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/collection_xml_schema.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_mission_V2_0/xml_schema/collection_xml_schema.xml", "scraped_at": "2026-02-25T20:02:10.762011Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.spectral_analysis:calibration::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document", "description": "This collection contains the calibration files applicable to the OSIRIS-REx Derived Spectral Anlaysis Products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OVIRS", "OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Calibration"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/collection_calibration_spectral_analysis.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/calibration/collection_calibration_spectral_analysis.xml", "scraped_at": "2026-02-25T20:02:10.762016Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.spectral_analysis:data_tir_maps::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Map Collection", "description": "This collection contains the Thermal Infrared map products produced by the OSIRIS-REx Spectral Analysis team during various mission phases in the Bennu encounter.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/collection_data_tir_maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_maps/collection_data_tir_maps.xml", "scraped_at": "2026-02-25T20:02:10.762020Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.spectral_analysis:data_tir_tmp_emissivity::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Temperature Emissivity Collection", "description": "This collection contains the thermal infrared temperature emissivity products produced by the OSIRIS-REx Spectral Analysis team during the mission.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/collection_data_tir_tmp_emissivity.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_tir_tmp_emissivity/collection_data_tir_tmp_emissivity.xml", "scraped_at": "2026-02-25T20:02:10.762028Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.spectral_analysis:data_vnir_iof_spectra::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible Near Infrared IOF Spectra Collection", "description": "This collection contains the reflectance (IOF) spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) during the Bennu encounter.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/collection_data_vnir_iof_spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_iof_spectra/collection_data_vnir_iof_spectra.xml", "scraped_at": "2026-02-25T20:02:10.762032Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.spectral_analysis:data_vnir_maps::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Thermal Infrared Map Collection", "description": "This collection contains the visible-near infrared map products produced by the OSIRIS-REx Spectral Analysis team during various mission phases in the Bennu encounter.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/collection_data_vnir_maps.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_maps/collection_data_vnir_maps.xml", "scraped_at": "2026-02-25T20:02:10.762035Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.spectral_analysis:data_vnir_resampled_spectra::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Visible Near Infrared Resampled Spectra Collection", "description": "This collection contains the resampled spectral data products produced by the OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) during the Bennu encounter.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/collection_data_vnir_resampled_spectra.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/data_vnir_resampled_spectra/collection_data_vnir_resampled_spectra.xml", "scraped_at": "2026-02-25T20:02:10.762039Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.spectral_analysis:document::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OTES Document", "description": "This collection contains the documents applicable to the OSIRIS-REx Derived Spectral Anlaysis Products.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OVIRS", "OTES"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/collection_document_spectral_analysis.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.spectral_analysis_v1_0/document/collection_document_spectral_analysis.xml", "scraped_at": "2026-02-25T20:02:10.762042Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_raw:data_eop::1.0", "title": "NEAR RSS Raw Earth Orientation Parameters Collection", "description": "NEAR Raw EOP Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "1996-10-27", "stop_date": "2000-12-21", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/collection_data_eop.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_eop/collection_data_eop.xml", "scraped_at": "2026-02-25T20:02:10.762070Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_raw:data_ion::1.0", "title": "NEAR RSS Raw Ionosphere Data Collection", "description": "NEAR Raw ION Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "1997-06-01", "stop_date": "2000-09-26", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/collection_data_ion.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_ion/collection_data_ion.xml", "scraped_at": "2026-02-25T20:02:10.762074Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_raw:data_nmlmodl::1.0", "title": "NEAR Gravity Numerical Model Collection", "description": "This collection contains the nominal set of namelist parameters used to define physical characteristics of the spacecraft's motion and tracking observable used by the JPL orbit determination software suite. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["253 Mathilde", "433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "1996-01-01", "stop_date": "2002-03-31", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/collection_data_nmlmodl.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_nmlmodl/collection_data_nmlmodl.xml", "scraped_at": "2026-02-25T20:02:10.762078Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_raw:data_odf::1.0", "title": "NEAR RSS Raw Orbit Data File Collection", "description": "NEAR Raw ODF Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "1997-05-30", "stop_date": "2001-02-28", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/collection_data_odf.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_odf/collection_data_odf.xml", "scraped_at": "2026-02-25T20:02:10.762105Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_raw:data_paramsum::1.0", "title": "NEAR Gravity Solution Page Collection", "description": "Solution pages summarizing data arc, physical model nominal and estimated parameter values, along with formal uncertainties This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["253 Mathilde", "433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "1997-07-03", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/collection_data_paramsum.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_paramsum/collection_data_paramsum.xml", "scraped_at": "2026-02-25T20:02:10.762110Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_raw:data_tro::1.0", "title": "NEAR RSS Raw Troposphere Data Collection", "description": "NEAR Raw TRO Data Collection This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "1972-01-01", "stop_date": "2048-01-01", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/collection_data_tro.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/data_tro/collection_data_tro.xml", "scraped_at": "2026-02-25T20:02:10.762117Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_raw:document::1.0", "title": "NEAR Radio Science Raw Archive Document Collection", "description": "The NEAR Radio Science Raw Archive document collection consists of documents supporting the data types and instrument. This collection was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the raw data from the PDS3 data sets NEAR_A_RSS_1_5_EROS_FLYBY_V1_0, NEAR_A_RSS_1_5_EROS_ORBIT_V1_0, and NEAR_A_RSS_1_5_MATHILDE_V1_0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros", "253 Mathilde"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/collection_document_inventory.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_raw/document/collection_document_inventory.xml", "scraped_at": "2026-02-25T20:02:10.762121Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_derived:data_img::1.0", "title": "NEAR Gravity Map Collection", "description": "This collection contains a set of gravity maps of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["RADIO SCIENCE SUBSYSTEM"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "2000-02-14", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/collection_data_img.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_img/collection_data_img.xml", "scraped_at": "2026-02-25T20:02:10.762125Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_derived:data_landmark::1.0", "title": "NEAR Gravity Landmark Collection", "description": "This collection contains a table giving X, Y, and Z coordinates of the centers of craters on the asteroid Eros projected onto a plane tangent to each crater's rim. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "2000-02-14", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/collection_data_landmark.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_landmark/collection_data_landmark.xml", "scraped_at": "2026-02-25T20:02:10.762129Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_derived:data_shadr::1.0", "title": "NEAR Gravity Spherical ASCII Binary Data Record Collection", "description": "This collection contains a set of spherical harmonic coefficients of the gravity field of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "2000-02-14", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/collection_data_shadr.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shadr/collection_data_shadr.xml", "scraped_at": "2026-02-25T20:02:10.762132Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_derived:data_shbdr::1.0", "title": "NEAR Gravity Spherical Harmonic Binary Data Record Collection", "description": "This collection contains a set of spherical harmonic coeffients of the gravity field of the asteroid Eros derived from data acquired from the Radio Science Subsystem on the Near Earth Asteroid Rendezvous mission. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Data"], "start_date": "2000-02-14", "stop_date": "2001-02-12", "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/collection_data_shbdr.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/data_shbdr/collection_data_shbdr.xml", "scraped_at": "2026-02-25T20:02:10.762137Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:near_rss_derived:document::1.0", "title": "NEAR Radio Science Derived Archive Document Collection", "description": "The NEAR Radio Science Derived Archive document collection consists of documents supporting the data types and instrument. It was migrated from PDS3 to PDS4 in 2024 by the Radio Science Sub-Node. This bundle contains all the derived data from the PDS3 data set NEAR_A_RSS_5_EROS_GRAVITY_V1_0.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["NEAR EARTH ASTEROID RENDEZVOUS"], "targets": ["433 Eros", "253 Mathilde"], "instruments": ["Radio Science Subsystem"], "instrument_hosts": ["NEAR EARTH ASTEROID RENDEZVOUS"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/collection_document_inventory.xml", "source_url": "https://sbnarchive.psi.edu/pds4/near/near_rss/near_rss_derived/document/collection_document_inventory.xml", "scraped_at": "2026-02-25T20:02:10.762141Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams:calibration::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) calibration file collection.", "description": "This collection contains the calibration files used to calibrate and correct the images acquired by the OCAMS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Calibration"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/collection_ocams_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/calibration/collection_ocams_calibration.xml", "scraped_at": "2026-02-25T20:02:10.762146Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams:data_calibrated::13.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) calibrated science image data products.", "description": "This collection contains the calibrated (processing level 2 radiometrically calibrated and reflectance) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/collection_ocams_data_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_calibrated/collection_ocams_data_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.762150Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams:data_eng::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) ancillary image information data products.", "description": "This collection contains the ancillary image information data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft. This product contains all instrument housekeeping data collected at the time of image acquisition.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/collection_ocams_eng.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_eng/collection_ocams_eng.xml", "scraped_at": "2026-02-25T20:02:10.762154Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams:data_hkl0::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) raw housekeeping data products.", "description": "This collection contains the raw housekeeping data products produced by the OCAMS instrument suite onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/collection_ocams_data_hkl0.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl0/collection_ocams_data_hkl0.xml", "scraped_at": "2026-02-25T20:02:10.762158Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams:data_hkl1::11.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) converted housekeeping data products.", "description": "This collection contains the converted housekeeping data products produced by the OCAMS instrument suite onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/collection_ocams_data_hkl1.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_hkl1/collection_ocams_data_hkl1.xml", "scraped_at": "2026-02-25T20:02:10.762162Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams:data_raw::13.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) raw science image data products.", "description": "This collection contains the raw (processing level 0) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/collection_ocams_data_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_raw/collection_ocams_data_raw.xml", "scraped_at": "2026-02-25T20:02:10.762165Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams:data_reduced::13.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Camera Suite (OCAMS) reduced science image data products.", "description": "This collection contains the reduced (processing level 1 - bias, dark and flat field corrected) science image data products produced by the OCAMS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/collection_ocams_data_reduced.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/data_reduced/collection_ocams_data_reduced.xml", "scraped_at": "2026-02-25T20:02:10.762169Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ovirs:calibration::5.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): OSIRIS-REx Visible and InfraRed Spectrometer (OVIRS) calibration file collection.", "description": "This collection contains the calibration files used to calibrate and correct the spectra acquired by the OVIRS instrument onboard the OSIRIS-REx spacecraft.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": ["(101955) Bennu"], "instruments": ["OVIRS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Data"], "start_date": "2016-09-08", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/calibration/collection_ovirs_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/calibration/collection_ovirs_calibration.xml", "scraped_at": "2026-02-25T20:02:10.762172Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.ocams:document::9.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Document", "description": "This collection contains the documents applicable to the OSIRIS-REx Camera Suite (OCAMS).", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/collection_ocams_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.ocams_v11.1/document/collection_ocams_document.xml", "scraped_at": "2026-02-25T20:02:10.762175Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.sample_site:document_final::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final", "description": "This collection includes three comprehensive catalogs characterizing the final sample site selection: DL15 (Nightingale). Each catalog represents a different sampling location within Nightingale - East (DL15E), Grid 37 (DL15Grid27), and West (DL15W) - and encompasses geospatial maps of dispersion, tilt, tip over during backaway, sampleability, texture, color, and boulder counts.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OCAMS", "OLA", "OTES", "OVIRS", "TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/collection_final.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final/collection_final.xml", "scraped_at": "2026-02-25T20:02:10.762180Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.sample_site:document_final_eight::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final Eight", "description": "This collection includes a comprehensive catalog of geospatial maps characterizing eight sample site options: BB03, BB21, CQ13, DL06, DL08, DL09, DL15, and EX07. The catalog encompasses PolyCam-derived imagery, shadow mapping, surface texture analysis, boulder distribution, reflectance imagery, and false color composite visualizations for each site.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OCAMS", "OLA", "OTES", "OVIRS", "TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/collection_final_eight.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_eight/collection_final_eight.xml", "scraped_at": "2026-02-25T20:02:10.762185Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:orex.sample_site:document_final_four::1.0", "title": "Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx): Sample Site Final Four", "description": "This collection includes comprehensive catalogs of geospatial maps characterizing four sample site options: CQ13 (Kingfisher), DL06 (Osprey), DL15 (Nightingale), and EX07 (Sandpiper). The catalog encompasses PolyCam-derived imagery, shadow mapping, surface texture analysis, boulder distribution, reflectance imagery, and false color composite visualizations for each site.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Origins, Spectral Interpretation, Resource Identification, Security, Regolith Explorer (OSIRIS-REx)"], "targets": [], "instruments": ["OCAMS", "OLA", "OTES", "OVIRS", "TAGCAMS"], "instrument_hosts": ["OSIRIS-REx Spacecraft"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/collection_final_four.xml", "source_url": "https://sbnarchive.psi.edu/pds4/orex/orex.sample_site_v1.0/document_final_four/collection_final_four.xml", "scraped_at": "2026-02-25T20:02:10.762189Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clipper.sud_ground_cal:calibration::1.0", "title": "Europa Clipper SUDA Calibration Collection", "description": "This collection contains lookup tables for unit conversions of signals from the SUDA instrument during ground calibration.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Europa Clipper Mission"], "targets": ["DUST"], "instruments": ["SUrface Dust Analyzer (SUDA)"], "instrument_hosts": ["Europa Clipper Spacecraft"], "data_types": ["Data"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/collection_suda_calibration.xml", "source_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/calibration/collection_suda_calibration.xml", "scraped_at": "2026-02-25T20:02:10.762227Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clipper.sud_ground_cal:data_cal_calibrated::1.0", "title": "Europa Clipper SUDA Calibrated Data", "description": "This collection contains the calibrated (L2a and L2b) data products produced by the SUDA instrument during ground calibration.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Europa Clipper Mission"], "targets": ["DUST"], "instruments": ["SUrface Dust Analyzer (SUDA)"], "instrument_hosts": ["Europa Clipper Spacecraft"], "data_types": ["Data"], "start_date": "2022-07-07", "stop_date": "2022-08-31", "browse_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/collection_suda_data_cal_calibrated.xml", "source_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_calibrated/collection_suda_data_cal_calibrated.xml", "scraped_at": "2026-02-25T20:02:10.762230Z", "keywords": [], "processing_level": "Calibrated", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clipper.sud_ground_cal:data_cal_hsk_raw::1.0", "title": "Europa Clipper SUDA Housekeeping Collection", "description": "This collection contains 'housekeeping' engineering data from the SUDA instrument during ground calibration.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Europa Clipper Mission"], "targets": ["DUST"], "instruments": ["SUrface Dust Analyzer (SUDA)"], "instrument_hosts": ["Europa Clipper Spacecraft"], "data_types": ["Data"], "start_date": "2022-07-07", "stop_date": "2022-08-31", "browse_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/collection_suda_data_cal_hsk_raw.xml", "source_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_hsk_raw/collection_suda_data_cal_hsk_raw.xml", "scraped_at": "2026-02-25T20:02:10.762234Z", "keywords": [], "processing_level": "Raw", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clipper.sud_ground_cal:data_cal_partially_processed::1.0", "title": "Europa Clipper SUDA Partially Processed Data", "description": "This collection contains the partially processed (L1a and L1b) data products produced by the SUDA instrument during ground calibration.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Europa Clipper Mission"], "targets": ["DUST"], "instruments": ["SUrface Dust Analyzer (SUDA)"], "instrument_hosts": ["Europa Clipper Spacecraft"], "data_types": ["Data"], "start_date": "2022-07-07", "stop_date": "2022-08-31", "browse_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/collection_suda_data_cal_partially_processed.xml", "source_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/data_cal_partially_processed/collection_suda_data_cal_partially_processed.xml", "scraped_at": "2026-02-25T20:02:10.762238Z", "keywords": [], "processing_level": "Partially Processed", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:clipper.sud_ground_cal:document::1.0", "title": "Europa Clipper SUDA Document Collection", "description": "This collection contains the documents applicable to the SUDA instrument during ground calibration.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["Europa Clipper Mission"], "targets": ["DUST"], "instruments": ["SUrface Dust Analyzer (SUDA)"], "instrument_hosts": ["Europa Clipper Spacecraft"], "data_types": ["Document"], "start_date": "1965-01-01", "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/collection_suda_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/clipper/clipper.sud_ground_cal_v1.0/document/collection_suda_document.xml", "scraped_at": "2026-02-25T20:02:10.762242Z", "keywords": [], "processing_level": null, "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model:data::1.0", "title": "Data Collection for the Radar shape model of asteroid (99942) Apophis bundle", "description": "The near-Earth asteroid (99942) Apophis spin state at epoch December 23 2012, 14:14:00 UTC with zero-epoch time and rotational phase as stated by Brozovic et al. (2018). The rotation state is the same as Model R in the Supplementary Table 1 in Brozovic et al. 2018.", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["(99942) Apophis"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "Arecibo 2380 MHz Radar Receiver", "DSS-14 70-m Radio Telescope", "DSS-14 X-band Goldstone Solar System Radar Transmitter", "DSS-14 X-band Goldstone Solar System Radar Receiver"], "instrument_hosts": ["Arecibo Observatory", "Goldstone Deep Space Communications Complex"], "data_types": ["Data"], "start_date": "2012-12-21", "stop_date": "2013-03-16", "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/collection_gbo.ast-apophis.jpl.radar.shape_model_data.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/data/collection_gbo.ast-apophis.jpl.radar.shape_model_data.xml", "scraped_at": "2026-02-25T20:02:10.762268Z", "keywords": [], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} +{"id": "urn:nasa:pds:gbo.ast-apophis.jpl.radar.shape_model:document::1.0", "title": "Document collection for the \"Radar shape model of asteroid (99942) Apophis bundle", "description": "Document Collection for the Radar shape model of asteroid (99942) Apophis bundle", "node": "sbn", "pds_version": "PDS4", "type": "collection", "missions": ["No Specific Investigation"], "targets": ["(99942) Apophis"], "instruments": ["305-m fixed spherical reflecting antenna", "Arecibo Planetary Radar Transmitter", "Arecibo 2380 MHz Radar Receiver", "DSS-14 70-m Radio Telescope", "DSS-14 X-band Goldstone Solar System Radar Transmitter", "DSS-14 X-band Goldstone Solar System Radar Receiver"], "instrument_hosts": ["Arecibo Observatory", "Goldstone Deep Space Communications Complex"], "data_types": ["Document"], "start_date": null, "stop_date": null, "browse_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/", "download_url": null, "label_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/collection_gbo.ast-apophis.jpl.radar.shape_model_document.xml", "source_url": "https://sbnarchive.psi.edu/pds4/non_mission/gbo.ast-apophis.jpl.radar.shape_model_v1.0/document/collection_gbo.ast-apophis.jpl.radar.shape_model_document.xml", "scraped_at": "2026-02-25T20:02:10.762274Z", "keywords": ["radar shape model"], "processing_level": "Derived", "file_count": null, "total_size_bytes": null} From f0bc30ac9cdab24ff7a5e67b8a566067d78cbc0a Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Tue, 17 Mar 2026 18:31:07 -0500 Subject: [PATCH 15/16] Add some changes for better narrowing --- akd_ext/tools/pds/pds4/get_product.py | 40 +- akd_ext/tools/pds/pds4/search_bundles.py | 11 +- akd_ext/tools/pds/pds_catalog/get_dataset.py | 98 +- akd_ext/tools/pds/tests/conftest.py | 89 ++ akd_ext/tools/pds/tests/test_validation.py | 955 ++++++++++++++++++ akd_ext/tools/pds/utils/img_api_models.py | 7 +- akd_ext/tools/pds/utils/ode_api_models.py | 5 +- akd_ext/tools/pds/utils/pds4_client.py | 8 +- .../tools/pds/utils/pds_catalog_api_models.py | 3 +- akd_ext/tools/pds/utils/pds_catalog_client.py | 53 +- 10 files changed, 1215 insertions(+), 54 deletions(-) create mode 100644 akd_ext/tools/pds/tests/conftest.py create mode 100644 akd_ext/tools/pds/tests/test_validation.py diff --git a/akd_ext/tools/pds/pds4/get_product.py b/akd_ext/tools/pds/pds4/get_product.py index bce6967..c516d15 100644 --- a/akd_ext/tools/pds/pds4/get_product.py +++ b/akd_ext/tools/pds/pds4/get_product.py @@ -12,6 +12,37 @@ from akd_ext.mcp.decorators import mcp_tool from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError +_RELEVANT_KEYS = { + "id", "type", "title", "description", "lid", "lidvid", + "investigations", "observing_system_components", "targets", + "pds:Time_Coordinates.pds:start_date_time", + "pds:Time_Coordinates.pds:stop_date_time", + "pds:Primary_Result_Summary.pds:processing_level", + "ref_lid_instrument", "ref_lid_target", + "ref_lid_instrument_host", "ref_lid_investigation", + "metadata", +} + + +def _filter_product_response(raw: dict[str, Any]) -> dict[str, Any]: + """Filter a raw product response to keep only relevant keys.""" + filtered: dict[str, Any] = {} + for key, value in raw.items(): + if key in _RELEVANT_KEYS: + filtered[key] = value + elif key == "properties" and isinstance(value, dict): + useful_props = {} + for prop_key, prop_val in value.items(): + if any(term in prop_key.lower() for term in [ + "title", "description", "processing_level", + "time_coordinates", "target", "instrument", + "investigation", "purpose", "collection_type", + ]): + useful_props[prop_key] = prop_val + if useful_props: + filtered["properties"] = useful_props + return filtered + class PDS4GetProductInputSchema(InputSchema): """Input schema for PDS4GetProductTool.""" @@ -22,7 +53,7 @@ class PDS4GetProductInputSchema(InputSchema): class PDS4GetProductOutputSchema(OutputSchema): """Output schema for PDS4GetProductTool.""" - product: dict[str, Any] = Field(..., description="Raw product data from PDS4 API") + product: dict[str, Any] = Field(..., description="Filtered product data from PDS4 API") class PDS4GetProductToolConfig(BaseToolConfig): @@ -48,8 +79,8 @@ class PDS4GetProductTool(BaseTool[PDS4GetProductInputSchema, PDS4GetProductOutpu - urn:nasa:pds:context:target:planet.mars - urn:nasa:pds:cassini_iss - The returned product data includes all available metadata fields for the product, - including identification, investigation areas, time coordinates, and more. + Returns filtered product data including identification, related context products, + time coordinates, and processing level. """ @@ -67,7 +98,8 @@ async def _arun(self, params: PDS4GetProductInputSchema) -> PDS4GetProductOutput ) as client: result = await client.get_product(params.urn) - return PDS4GetProductOutputSchema(product=result) + filtered = _filter_product_response(result) + return PDS4GetProductOutputSchema(product=filtered) except PDS4ClientError as e: logger.error(f"PDS4 client error in get_product: {e}") diff --git a/akd_ext/tools/pds/pds4/search_bundles.py b/akd_ext/tools/pds/pds4/search_bundles.py index 380f1b3..17dbc52 100644 --- a/akd_ext/tools/pds/pds4/search_bundles.py +++ b/akd_ext/tools/pds/pds4/search_bundles.py @@ -31,12 +31,20 @@ class PDS4SearchBundlesInputSchema(InputSchema): """Input schema for PDS4SearchBundlesTool.""" title_query: str | None = Field(None, description="Search query for bundle titles (e.g., 'Lunar', 'Mars')") + lid_query: str | None = Field( + None, + description=( + "Search by LID substring (e.g., 'hirise', 'mars2020_meda'). " + "Matches against the bundle's logical identifier (URN). " + "Use this when you know part of the bundle LID but not the full title." + ), + ) start_time: str | None = Field( None, description="Start of time range (ISO 8601 format, e.g., '2020-01-01T00:00:00Z')" ) end_time: str | None = Field(None, description="End of time range (ISO 8601 format)") processing_level: PROCESSING_LEVEL | None = Field(None, description="Filter by processing level") - limit: int = Field(0, ge=0, le=100, description="Number of actual products to return (set to 0 for facets only)") + limit: int = Field(10, ge=0, le=100, description="Number of bundle results to return (default 10, set to 0 for facets only)") facet_fields: str | None = Field( None, description="Comma-separated list of fields to facet on (e.g., 'pds:Identification_Area.pds:title,lidvid')", @@ -116,6 +124,7 @@ async def _arun(self, params: PDS4SearchBundlesInputSchema) -> PDS4SearchBundles ) as client: response = await client.search_bundles( title_query=params.title_query, + lid_query=params.lid_query, start_time=params.start_time, end_time=params.end_time, processing_level=params.processing_level, diff --git a/akd_ext/tools/pds/pds_catalog/get_dataset.py b/akd_ext/tools/pds/pds_catalog/get_dataset.py index 3fc8b53..926935c 100644 --- a/akd_ext/tools/pds/pds_catalog/get_dataset.py +++ b/akd_ext/tools/pds/pds_catalog/get_dataset.py @@ -1,5 +1,7 @@ """Get detailed information about a specific PDS dataset.""" +import re + from loguru import logger from typing import Any @@ -15,28 +17,42 @@ filter_dataset, ) +_PDS3_ID_PATTERN = re.compile(r"^[A-Z0-9][A-Z0-9_\-\.]+$", re.IGNORECASE) +_PDS4_URN_PATTERN = re.compile(r"^urn:nasa:pds:", re.IGNORECASE) + + +def _sanitize_dataset_id(raw_id: str) -> str: + """Strip set-notation braces, whitespace, quotes from malformed inputs.""" + cleaned = raw_id.strip() + if cleaned.startswith("{") or cleaned.startswith("["): + cleaned = cleaned.strip("{}[]") + if "," in cleaned: + cleaned = cleaned.split(",")[0] + cleaned = cleaned.strip().strip("\"'") + return cleaned + class PDSCatalogGetDatasetInputSchema(InputSchema): """Input schema for PDSCatalogGetDatasetTool.""" dataset_id: str = Field( ..., - description="The dataset ID (LIDVID for PDS4, VOLUME_ID for PDS3)", + description=( + "The exact dataset ID to look up. Must be a real ID returned by a prior search tool — " + "do NOT guess or fabricate IDs. " + "PDS4 format: LIDVID (e.g., 'urn:nasa:pds:cassini_iss::1.0'). " + "PDS3 format: DATA_SET_ID (e.g., 'MRO-M-HIRISE-3-RDR-V1.1')." + ), ) class PDSCatalogGetDatasetOutputSchema(OutputSchema): """Output schema for PDSCatalogGetDatasetTool.""" - status: str = Field(..., description="Status of the request ('success' or 'not_found')") - dataset: dict[str, Any] | None = Field( - None, - description="Full dataset information if found", - ) - error: str | None = Field( - None, - description="Error message if dataset not found", - ) + status: str = Field(..., description="Status of the request ('success', 'not_found', or 'invalid_input')") + dataset: dict[str, Any] | None = Field(None, description="Full dataset information if found") + error: str | None = Field(None, description="Error message if dataset not found or input is invalid") + suggestions: list[str] | None = Field(None, description="Similar dataset IDs if the requested ID was not found") class PDSCatalogGetDatasetToolConfig(BaseToolConfig): @@ -53,19 +69,14 @@ class PDSCatalogGetDatasetTool(BaseTool[PDSCatalogGetDatasetInputSchema, PDSCata """Get detailed information about a specific dataset. This tool retrieves full metadata for a specific PDS dataset by its ID. - Use this when you have a dataset ID from search results and need complete details. + Use this ONLY with dataset IDs that were returned by a prior search tool. + Do NOT guess or fabricate dataset IDs. + + If the exact ID is not found, similar IDs will be suggested. Dataset IDs: - PDS4: LIDVID format (e.g., "urn:nasa:pds:cassini_iss::1.0") - - PDS3: VOLUME_ID format (e.g., "GO_0017") - - Returns all available metadata including: - - Basic info: ID, title, description - - Classification: node, PDS version, type - - Discovery metadata: missions, targets, instruments - - Temporal coverage: start and stop dates - - Access URLs: browse, download, label - - Additional metadata: keywords, processing level + - PDS3: DATA_SET_ID format (e.g., "MRO-M-HIRISE-3-RDR-V1.1") """ @@ -74,31 +85,48 @@ class PDSCatalogGetDatasetTool(BaseTool[PDSCatalogGetDatasetInputSchema, PDSCata config_schema = PDSCatalogGetDatasetToolConfig async def _arun(self, params: PDSCatalogGetDatasetInputSchema) -> PDSCatalogGetDatasetOutputSchema: - """Execute the dataset retrieval. + try: + dataset_id = _sanitize_dataset_id(params.dataset_id) - Args: - params: Input parameters with dataset ID + if not dataset_id: + return PDSCatalogGetDatasetOutputSchema( + status="invalid_input", + error="Empty dataset ID provided.", + ) - Returns: - Dataset information if found, error message otherwise + is_pds4 = bool(_PDS4_URN_PATTERN.match(dataset_id)) + is_pds3 = bool(_PDS3_ID_PATTERN.match(dataset_id)) and not is_pds4 - Raises: - PDSCatalogClientError: If the catalog cannot be accessed - """ - try: - # Create client - client = PDSCatalogClient(catalog_dir=self.config.catalog_dir) + if not is_pds4 and not is_pds3: + return PDSCatalogGetDatasetOutputSchema( + status="invalid_input", + error=( + f"Malformed dataset ID: '{dataset_id}'. " + "Expected PDS3 format (e.g., 'MRO-M-HIRISE-3-RDR-V1.1') or " + "PDS4 LIDVID (e.g., 'urn:nasa:pds:cassini_iss::1.0'). " + "Use pds_catalog_search_tool to find valid dataset IDs first." + ), + ) - # Get dataset - dataset = await client.get_dataset(params.dataset_id) + client = PDSCatalogClient(catalog_dir=self.config.catalog_dir) + dataset = await client.get_dataset(dataset_id) if dataset is None: + similar = client.index.find_similar_dataset_ids(dataset_id, max_suggestions=5) + suggestion_ids = [sid for sid, score in similar if score >= 55] + + error_msg = f"Dataset not found: {dataset_id}" + if suggestion_ids: + error_msg += f". Did you mean one of: {', '.join(suggestion_ids)}?" + else: + error_msg += ". Use pds_catalog_search_tool to find valid dataset IDs." + return PDSCatalogGetDatasetOutputSchema( status="not_found", - error=f"Dataset not found: {params.dataset_id}", + error=error_msg, + suggestions=suggestion_ids if suggestion_ids else None, ) - # Return full fields field_set = FIELD_PROFILES["full"] filtered_dataset = filter_dataset(dataset, field_set) diff --git a/akd_ext/tools/pds/tests/conftest.py b/akd_ext/tools/pds/tests/conftest.py new file mode 100644 index 0000000..b468ae5 --- /dev/null +++ b/akd_ext/tools/pds/tests/conftest.py @@ -0,0 +1,89 @@ +"""Conftest: shimming akd_ext.tools.pds.* so tests can import without the full framework.""" + +import importlib.util +import sys +import types +from pathlib import Path + +PDS_ROOT = Path(__file__).resolve().parent.parent + +# ── Step 1: stub the framework packages the source files import from ── +for name in [ + "akd", "akd._base", "akd.tools", + "akd_ext", "akd_ext.tools", "akd_ext.mcp", "akd_ext.mcp.decorators", +]: + if name not in sys.modules: + m = types.ModuleType(name) + m.__package__ = name + m.__path__ = [] + sys.modules[name] = m + +sys.modules["akd._base"].InputSchema = type("InputSchema", (), {}) +sys.modules["akd._base"].OutputSchema = type("OutputSchema", (), {}) +sys.modules["akd.tools"].BaseTool = type( + "BaseTool", (), {"__class_getitem__": classmethod(lambda cls, *a: cls)} +) +sys.modules["akd.tools"].BaseToolConfig = type("BaseToolConfig", (), {}) +sys.modules["akd_ext.mcp.decorators"].mcp_tool = lambda cls: cls + +# ── Step 2: build akd_ext.tools.pds namespace ── +akd_ext = sys.modules["akd_ext"] +akd_ext_tools = sys.modules["akd_ext.tools"] +akd_ext.tools = akd_ext_tools + +pds = types.ModuleType("akd_ext.tools.pds") +pds.__package__ = "akd_ext.tools.pds" +pds.__path__ = [str(PDS_ROOT)] +sys.modules["akd_ext.tools.pds"] = pds +akd_ext_tools.pds = pds + + +def _load(full_name: str, filepath: Path, package: str): + if full_name in sys.modules: + return sys.modules[full_name] + spec = importlib.util.spec_from_file_location(full_name, str(filepath)) + if not spec or not spec.loader: + return None + mod = importlib.util.module_from_spec(spec) + mod.__package__ = package + sys.modules[full_name] = mod + try: + spec.loader.exec_module(mod) + except Exception: + pass # partial is fine + return mod + + +# ── Step 3: load utils/*.py ── +utils = types.ModuleType("akd_ext.tools.pds.utils") +utils.__package__ = "akd_ext.tools.pds.utils" +utils.__path__ = [str(PDS_ROOT / "utils")] +sys.modules["akd_ext.tools.pds.utils"] = utils +pds.utils = utils + +for f in sorted((PDS_ROOT / "utils").glob("*.py")): + if f.name == "__init__.py": + continue + full = f"akd_ext.tools.pds.utils.{f.stem}" + mod = _load(full, f, "akd_ext.tools.pds.utils") + if mod: + setattr(utils, f.stem, mod) + +# ── Step 4: load sub-packages (opus, ode, img, sbn, pds4, pds_catalog) ── +for pkg in ["opus", "ode", "img", "sbn", "pds4", "pds_catalog"]: + pkg_dir = PDS_ROOT / pkg + if not pkg_dir.is_dir(): + continue + full_pkg = f"akd_ext.tools.pds.{pkg}" + ns = types.ModuleType(full_pkg) + ns.__package__ = full_pkg + ns.__path__ = [str(pkg_dir)] + sys.modules[full_pkg] = ns + setattr(pds, pkg, ns) + for f in sorted(pkg_dir.glob("*.py")): + if f.name == "__init__.py": + continue + full = f"{full_pkg}.{f.stem}" + mod = _load(full, f, full_pkg) + if mod: + setattr(ns, f.stem, mod) diff --git a/akd_ext/tools/pds/tests/test_validation.py b/akd_ext/tools/pds/tests/test_validation.py new file mode 100644 index 0000000..d6862ee --- /dev/null +++ b/akd_ext/tools/pds/tests/test_validation.py @@ -0,0 +1,955 @@ +"""Comprehensive validation tests for all PDS MCP server modules. + +Tests response parsing, input validation, edge cases, error handling, +type coercion, XML parsing, retry logic, and context managers across +OPUS, ODE, IMG, PDS4, SBN, and PDS Catalog modules. +""" + +import pytest +import httpx +from unittest.mock import AsyncMock, MagicMock + +from akd_ext.tools.pds.utils.opus_api_models import ( + OPUSObservation, OPUSSearchResponse, OPUSCountResponse, + OPUSMetadata, OPUSMetadataResponse, OPUSFiles, OPUSFilesResponse, + _parse_float as opus_parse_float, _parse_int as opus_parse_int, +) +from akd_ext.tools.pds.utils.opus_client import ( + OPUSClient, OPUSClientError, OPUSRateLimitError, +) +from akd_ext.tools.pds.utils.ode_api_models import ( + ODEProduct, ODEProductFile, ODEProductSearchResponse, + ODEProductCountResponse, ODEInstrumentInfo, ODEIIPTResponse, + ODEFeatureDataResponse, ODEFeatureClassesResponse, + ODEFeatureNamesResponse, + _parse_float as ode_parse_float, _parse_int as ode_parse_int, +) +from akd_ext.tools.pds.utils.ode_client import ( + ODEClient, ODEClientError, ODERateLimitError, +) +from akd_ext.tools.pds.utils.img_api_models import ( + IMGSearchResponse, IMGCountResponse, IMGFacetResponse, IMGProduct, +) +from akd_ext.tools.pds.utils.img_client import ( + IMGAtlasClient, IMGAtlasClientError, +) +from akd_ext.tools.pds.utils.pds4_client import ( + PDS4Client, PDS4ClientError, PDS4RateLimitError, + validate_urn, validate_coordinates, +) +from akd_ext.tools.pds.utils.sbn_api_models import ( + CatchSourcesResponse, CatchJobResponse, + CatchResultsResponse, CatchStatusResponse, CatchFixedResponse, +) +from akd_ext.tools.pds.utils.sbn_client import ( + SBNCatchClient, SBNCatchClientError, SBNCatchRateLimitError, SBNCatchJobError, +) +from akd_ext.tools.pds.utils.pds_catalog_client import ( + CatalogIndex, PDSCatalogClient, _matches_term, filter_dataset, + MISSION_ABBREVIATIONS, INSTRUMENT_ABBREVIATIONS, + ESSENTIAL_FIELDS, SUMMARY_FIELDS, FULL_FIELDS, +) + +from datetime import date + + +# ╔══════════════════════════════════════════════════════════════╗ +# ║ HELPER: mock datasets ║ +# ╚══════════════════════════════════════════════════════════════╝ + +def _make_ds( + id="DS-1", title="Title", node="atm", missions=None, instruments=None, + targets=None, description="desc", pds_version="PDS3", dataset_type="volume", + start_date=None, stop_date=None, keywords=None, +): + ds = MagicMock() + ds.id = id + ds.title = title + ds.description = description + ds.node = MagicMock(value=node) + ds.pds_version = MagicMock(value=pds_version) + ds.type = MagicMock(value=dataset_type) + ds.missions = missions or [] + ds.instruments = instruments or [] + ds.targets = targets or [] + ds.instrument_hosts = [] + ds.data_types = [] + ds.start_date = start_date + ds.stop_date = stop_date + ds.keywords = keywords or [] + ds.processing_level = None + ds.browse_url = f"https://pds.nasa.gov/{id}" + ds.label_url = None + ds.source_url = ds.browse_url + ds.to_search_text = MagicMock( + return_value=f"{id} {title} {' '.join(missions or [])} {' '.join(targets or [])} {' '.join(instruments or [])}".lower() + ) + return ds + + +# ╔══════════════════════════════════════════════════════════════╗ +# ║ OPUS TESTS ║ +# ╚══════════════════════════════════════════════════════════════╝ + +class TestOPUSParsers: + def test_parse_float_valid(self): + assert opus_parse_float(3.14) == 3.14 + assert opus_parse_float("2.7") == 2.7 + assert opus_parse_float(42) == 42.0 + + def test_parse_float_none_and_invalid(self): + assert opus_parse_float(None) is None + assert opus_parse_float("bad") is None + assert opus_parse_float("") is None + assert opus_parse_float([]) is None + + def test_parse_int_valid(self): + assert opus_parse_int(42) == 42 + assert opus_parse_int("100") == 100 + + def test_parse_int_none_and_invalid(self): + assert opus_parse_int(None) is None + assert opus_parse_int("abc") is None + + +class TestOPUSObservation: + def test_from_raw_data_complete(self): + obs = OPUSObservation.from_raw_data({ + "opusid": "co-iss-test", "instrument": "Cassini ISS", + "planet": "Saturn", "target": "Titan", "mission": "Cassini", + "time1": "2004-01-01", "time2": "2004-01-02", + "observationduration": "60.0", "ringobsid": "RING_1", + }) + assert obs.opusid == "co-iss-test" + assert obs.observation_duration == 60.0 + assert obs.ring_obs_id == "RING_1" + + def test_from_raw_data_empty(self): + obs = OPUSObservation.from_raw_data({}) + assert obs.opusid == "" + assert obs.observation_duration is None + + def test_from_raw_data_bad_duration(self): + obs = OPUSObservation.from_raw_data({"opusid": "x", "observationduration": "N/A"}) + assert obs.observation_duration is None + + def test_from_row_data(self): + cols = ["OPUS ID", "Instrument Name", "Planet", "Intended Target Name(s)", + "Observation Start Time (YMDhms)", "Observation Duration (secs)"] + row = ["id-1", "ISS", "Saturn", "Titan", "2004-01-01", "120"] + obs = OPUSObservation.from_row_data(cols, row) + assert obs.opusid == "id-1" + assert obs.observation_duration == 120.0 + + def test_from_row_data_mismatched(self): + obs = OPUSObservation.from_row_data(["OPUS ID", "Extra"], ["only-id"]) + assert obs.opusid == "only-id" + + +class TestOPUSSearchResponse: + def test_array_format(self): + resp = OPUSSearchResponse.from_raw_data({ + "page": [["id1", "ISS", "Saturn", "Titan", "2004", "60"]], + "columns": ["OPUS ID", "Instrument Name", "Planet", + "Intended Target Name(s)", "Observation Start Time (YMDhms)", + "Observation Duration (secs)"], + "count": 1, "available": 500, "start_obs": 1, "limit": 100, + }) + assert resp.status == "success" + assert len(resp.observations) == 1 + assert resp.available == 500 + + def test_dict_format(self): + resp = OPUSSearchResponse.from_raw_data({ + "page": [{"opusid": "t1", "target": "Io"}], "columns": [], + "count": 1, "available": 1, + }) + assert resp.observations[0].opusid == "t1" + + def test_error(self): + resp = OPUSSearchResponse.from_raw_data({"error": "Bad param"}) + assert resp.status == "error" + assert resp.error == "Bad param" + + def test_empty_page(self): + resp = OPUSSearchResponse.from_raw_data({"page": [], "columns": []}) + assert len(resp.observations) == 0 + + def test_non_list_page_and_columns(self): + resp = OPUSSearchResponse.from_raw_data({"page": "bad", "columns": 42}) + assert len(resp.observations) == 0 + + def test_defaults_when_keys_missing(self): + resp = OPUSSearchResponse.from_raw_data({}) + assert resp.start_obs == 1 + assert resp.limit == 100 + + +class TestOPUSCountResponse: + def test_success(self): + resp = OPUSCountResponse.from_raw_data({"data": [{"result_count": 42}]}) + assert resp.count == 42 + + def test_error(self): + resp = OPUSCountResponse.from_raw_data({"error": "fail"}) + assert resp.status == "error" + + def test_empty_data(self): + assert OPUSCountResponse.from_raw_data({"data": []}).count == 0 + + def test_non_list_data(self): + assert OPUSCountResponse.from_raw_data({"data": "x"}).count == 0 + + +class TestOPUSMetadata: + def test_instrument_constraint_extraction(self): + meta = OPUSMetadata.from_raw_data("id1", { + "General Constraints": {"planet": "Saturn"}, + "Cassini ISS Constraints": {"filter1": "CL1"}, + }) + assert meta.instrument_constraints == {"filter1": "CL1"} + + def test_no_instrument_constraints(self): + meta = OPUSMetadata.from_raw_data("id1", {}) + assert meta.instrument_constraints == {} + + def test_metadata_response_error(self): + resp = OPUSMetadataResponse.from_raw_data("id1", {"error": "Not found"}) + assert resp.status == "error" + + +class TestOPUSFiles: + def test_full_files(self): + f = OPUSFiles.from_raw_data("oid", {"data": {"oid": { + "browse_thumb": ["http://t.jpg"], "browse_full": ["http://f.jpg"], + "raw_image": ["http://r1.img", "http://r2.img"], + "calibrated_image": ["http://c.img"], + }}}) + assert f.browse_thumb == "http://t.jpg" + assert len(f.raw_files) == 2 + assert len(f.calibrated_files) == 1 + + def test_empty_data(self): + f = OPUSFiles.from_raw_data("oid", {"data": {}}) + assert f.raw_files == [] + + def test_wrong_opusid(self): + f = OPUSFiles.from_raw_data("missing", {"data": {"other": {}}}) + assert f.raw_files == [] + + def test_browse_as_string(self): + f = OPUSFiles.from_raw_data("oid", {"data": {"oid": { + "browse_thumb": "http://s.jpg", + }}}) + assert f.browse_thumb == "http://s.jpg" + + def test_extract_first_url_edge_cases(self): + assert OPUSFiles._extract_first_url([]) is None + assert OPUSFiles._extract_first_url(None) is None + assert OPUSFiles._extract_first_url(42) is None + + def test_files_response_error(self): + resp = OPUSFilesResponse.from_raw_data("id", {"error": "nope"}) + assert resp.status == "error" + + +class TestOPUSClient: + def test_defaults(self): + c = OPUSClient() + assert "opus.pds-rings.seti.org" in c.base_url + assert c.max_retries == 3 + + def test_build_search_params_minimal(self): + p = OPUSClient()._build_search_params() + assert p["limit"] == "100" + assert "target" not in p + + def test_build_search_params_full(self): + p = OPUSClient()._build_search_params( + target="Titan", planet="saturn", time_min="2004-01-01", limit=50) + assert p["target"] == "Titan" + assert p["time1"] == "2004-01-01" + assert p["limit"] == "50" + + @pytest.mark.asyncio + async def test_context_manager(self): + async with OPUSClient() as c: + assert c._client is not None + assert c._client is None + + @pytest.mark.asyncio + async def test_no_init_raises(self): + with pytest.raises(RuntimeError, match="Client not initialized"): + await OPUSClient()._request("test") + + @pytest.mark.asyncio + async def test_rate_limit_raises(self): + c = OPUSClient(max_retries=0, retry_delay=0.01) + mock_resp = MagicMock(status_code=429, headers={"retry-after": "0"}) + c._client = AsyncMock(); c._client.get = AsyncMock(return_value=mock_resp) + with pytest.raises(OPUSRateLimitError): + await c._request("test") + + @pytest.mark.asyncio + async def test_http_error_retries_exhausted(self): + c = OPUSClient(max_retries=1, retry_delay=0.01) + c._client = AsyncMock() + c._client.get = AsyncMock(side_effect=httpx.ConnectError("fail")) + with pytest.raises(OPUSClientError, match="failed after"): + await c._request("test") + + +# ╔══════════════════════════════════════════════════════════════╗ +# ║ ODE TESTS ║ +# ╚══════════════════════════════════════════════════════════════╝ + +class TestODEParsers: + def test_parse_float(self): + assert ode_parse_float("3.14") == 3.14 + assert ode_parse_float(None) is None + assert ode_parse_float("N/A") is None + + def test_parse_int(self): + assert ode_parse_int("42") == 42 + assert ode_parse_int(None) == 0 + assert ode_parse_int("bad") == 0 + + +class TestODEProduct: + def test_full_product(self): + p = ODEProduct.from_raw_data({ + "pdsid": "ESP_012600", "ode_id": 12345, + "Center_latitude": "45.5", "Emission_angle": "5.2", + "Product_files": {"Product_file": [ + {"FileName": "f.img", "URL": "http://x"}, + ]}, + }) + assert p.pdsid == "ESP_012600" + assert p.ode_id == "12345" # int coerced to str + assert p.center_latitude == 45.5 + assert len(p.product_files) == 1 + + def test_ode_id_none(self): + assert ODEProduct.from_raw_data({"ode_id": None}).ode_id is None + + def test_single_file_dict(self): + p = ODEProduct.from_raw_data({"Product_files": { + "Product_file": {"FileName": "one.img"} + }}) + assert len(p.product_files) == 1 + + def test_no_files(self): + assert ODEProduct.from_raw_data({}).product_files == [] + + def test_bad_float_values(self): + p = ODEProduct.from_raw_data({ + "Center_latitude": "N/A", "Emission_angle": "", "Map_scale": "?", + }) + assert p.center_latitude is None + assert p.emission_angle is None + + +class TestODESearchResponse: + def test_success(self): + r = ODEProductSearchResponse.from_raw_data({"ODEResults": { + "Status": "Success", "Count": "2", + "Products": {"Product": [ + {"pdsid": "A", "ode_id": "1"}, {"pdsid": "B", "ode_id": "2"}, + ]}, + }}) + assert r.count == 2 + assert len(r.products) == 2 + + def test_single_product_as_dict(self): + r = ODEProductSearchResponse.from_raw_data({"ODEResults": { + "Status": "Success", "Count": "1", + "Products": {"Product": {"pdsid": "ONLY"}}, + }}) + assert len(r.products) == 1 + + def test_error(self): + r = ODEProductSearchResponse.from_raw_data( + {"ODEResults": {"Status": "ERROR", "Error": "bad target"}}) + assert r.status == "ERROR" + + def test_no_products_string(self): + r = ODEProductSearchResponse.from_raw_data({"ODEResults": { + "Status": "Success", "Count": "0", "Products": "No Products Found" + }}) + assert r.products == [] + + def test_non_dict_top_level(self): + r = ODEProductSearchResponse.from_raw_data("not-a-dict") + assert r.status == "ERROR" + + def test_non_dict_items_filtered(self): + r = ODEProductSearchResponse.from_raw_data({"ODEResults": { + "Status": "Success", + "Products": {"Product": [{"pdsid": "OK"}, "bad", 42]}, + }}) + assert len(r.products) == 1 + + +class TestODECountResponse: + def test_success(self): + r = ODEProductCountResponse.from_raw_data( + {"ODEResults": {"Status": "Success", "Count": "150"}}) + assert r.count == 150 + + def test_error(self): + r = ODEProductCountResponse.from_raw_data( + {"ODEResults": {"Status": "ERROR", "Error": "missing"}}) + assert r.error == "missing" + + +class TestODEIIPT: + def test_success(self): + r = ODEIIPTResponse.from_raw_data({"ODEResults": { + "Status": "Success", "IIPT": {"IIPTSet": [ + {"IHID": "MRO", "IHName": "MRO", "IID": "HIRISE", + "IName": "HiRISE", "PT": "EDR", "PTName": "EDR", + "NumberProducts": "5000", "IHN": "", "IIN": ""}, + ]}, + }}) + assert len(r.instruments) == 1 + assert r.instruments[0].number_products == 5000 + assert r.instruments[0].instrument_host_name == "MRO" + + def test_single_dict(self): + r = ODEIIPTResponse.from_raw_data({"ODEResults": { + "Status": "Success", "IIPT": {"IIPTSet": + {"IHID": "LRO", "IID": "LROC", "PT": "E", "PTName": "E"}}, + }}) + assert len(r.instruments) == 1 + + def test_fallback_property(self): + info = ODEInstrumentInfo( + IHID="X", IHN="Old Host", IHName="", IID="Y", + IIN="Old Inst", IName="", PT="Z", PTName="Z") + assert info.instrument_host_name == "Old Host" + assert info.instrument_name == "Old Inst" + + +class TestODEFeatures: + def test_json_success(self): + r = ODEFeatureDataResponse.from_raw_data({"ODEResults": { + "Status": "Success", "Count": "1", + "Features": {"Feature": [{ + "FeatureClass": "Crater", "FeatureName": "Gale", + "MinLat": "-6", "MaxLat": "-4", "WestLon": "136", "EastLon": "138", + }]}, + }}) + assert r.features[0].feature_name == "Gale" + + def test_single_feature_dict(self): + r = ODEFeatureDataResponse.from_raw_data({"ODEResults": { + "Status": "Success", + "Features": {"Feature": { + "FeatureClass": "Mons", "FeatureName": "Olympus", + "MinLat": "15", "MaxLat": "25", "WestLon": "220", "EastLon": "230", + }}, + }}) + assert len(r.features) == 1 + + def test_xml_success(self): + r = ODEFeatureDataResponse.from_xml( + "Success1" + "Crater" + "Jezero18" + "197778" + "") + assert r.features[0].feature_name == "Jezero" + + def test_xml_error(self): + r = ODEFeatureDataResponse.from_xml( + "ERRORbad") + assert r.error == "bad" + + def test_xml_parse_error(self): + r = ODEFeatureDataResponse.from_xml("xml") + assert "XML parse error" in r.error + + def test_feature_classes(self): + r = ODEFeatureClassesResponse.from_raw_data({"ODEResults": { + "Status": "Success", + "FeatureTypes": {"FeatureType": ["Crater", "Mons"]}, + }}) + assert len(r.feature_classes) == 2 + + def test_feature_classes_string(self): + r = ODEFeatureClassesResponse.from_raw_data({"ODEResults": { + "Status": "Success", + "FeatureTypes": {"FeatureType": "Crater"}, + }}) + assert r.feature_classes == ["Crater"] + + def test_feature_names(self): + r = ODEFeatureNamesResponse.from_raw_data({"ODEResults": { + "Status": "Success", + "FeatureNames": {"FeatureName": ["Gale", "Jezero"]}, + }}) + assert "Gale" in r.feature_names + + +class TestODEClient: + def test_validate_target_valid(self): + ODEClient()._validate_target("mars") + + def test_validate_target_invalid(self): + with pytest.raises(ValueError, match="Invalid target"): + ODEClient()._validate_target("earth") + + @pytest.mark.asyncio + async def test_missing_required_params(self): + async with ODEClient() as c: + with pytest.raises(ValueError, match="Must provide"): + await c.search_products(target="mars") + + @pytest.mark.asyncio + async def test_context_manager(self): + async with ODEClient() as c: + assert c._client is not None + assert c._client is None + + @pytest.mark.asyncio + async def test_no_init_raises(self): + with pytest.raises(RuntimeError, match="Client not initialized"): + await ODEClient()._request({"q": "x"}) + + +# ╔══════════════════════════════════════════════════════════════╗ +# ║ IMG TESTS ║ +# ╚══════════════════════════════════════════════════════════════╝ + +class TestIMGFilters: + def setup_method(self): + self.c = IMGAtlasClient() + + def test_empty(self): + assert self.c._build_filter_queries() == [] + + def test_target(self): + assert self.c._build_filter_queries(target="Mars") == ["TARGET:Mars"] + + def test_mission_with_space(self): + fq = self.c._build_filter_queries(mission="Mars 2020") + assert fq == ['ATLAS_MISSION_NAME:"Mars 2020"'] + + def test_mission_no_space(self): + fq = self.c._build_filter_queries(mission="MSL") + assert fq == ["ATLAS_MISSION_NAME:*MSL*"] + + def test_time_range_both(self): + fq = self.c._build_filter_queries(start_time="2020-01-01", stop_time="2020-12-31") + assert fq == ["START_TIME:[2020-01-01 TO 2020-12-31]"] + + def test_sol_range_min_zero(self): + fq = self.c._build_filter_queries(sol_min=0) + assert fq == ["PLANET_DAY_NUMBER:[0 TO *]"] + + def test_multiple(self): + fq = self.c._build_filter_queries(target="Mars", mission="MSL", sol_min=0, sol_max=100) + assert len(fq) == 3 + + +class TestIMGResponses: + def test_search_success(self): + r = IMGSearchResponse.from_raw_data({ + "responseHeader": {"status": 0, "QTime": 5}, + "response": {"numFound": 100, "start": 0, "docs": [ + {"uuid": "abc", "PRODUCT_ID": "IMG_001", "TARGET": "MARS"}, + ]}, + }) + assert r.status == "success" + assert r.num_found == 100 + assert len(r.products) == 1 + + def test_search_error(self): + r = IMGSearchResponse.from_raw_data({"error": {"msg": "bad"}}) + assert r.status == "error" + + def test_search_solr_error_status(self): + r = IMGSearchResponse.from_raw_data( + {"responseHeader": {"status": 400}, "response": {}}) + assert r.status == "error" + + def test_count_success(self): + r = IMGCountResponse.from_raw_data({ + "responseHeader": {"status": 0}, + "response": {"numFound": 5000}, + }) + assert r.count == 5000 + + def test_facet_success(self): + r = IMGFacetResponse.from_raw_data({ + "responseHeader": {"status": 0}, + "facet_counts": {"facet_fields": { + "TARGET": ["MARS", 50000, "SATURN", 30000], + }}, + }, "TARGET") + assert len(r.values) == 2 + assert r.values[0].value == "MARS" + assert r.values[0].count == 50000 + + def test_facet_zero_filtered(self): + r = IMGFacetResponse.from_raw_data({ + "responseHeader": {"status": 0}, + "facet_counts": {"facet_fields": {"TARGET": ["MARS", 100, "EMPTY", 0]}}, + }, "TARGET") + assert len(r.values) == 1 + + def test_facet_empty(self): + r = IMGFacetResponse.from_raw_data({ + "responseHeader": {"status": 0}, + "facet_counts": {"facet_fields": {"TARGET": []}}, + }, "TARGET") + assert r.values == [] + + @pytest.mark.asyncio + async def test_invalid_facet_field(self): + async with IMGAtlasClient() as c: + with pytest.raises(IMGAtlasClientError, match="Invalid facet"): + await c.get_facets(facet_field="BOGUS") + + @pytest.mark.asyncio + async def test_client_context_manager(self): + async with IMGAtlasClient() as c: + assert c._client is not None + assert c._client is None + + +class TestIMGProduct: + def test_solr_array_unwrapping(self): + """Solr returns some fields as single-element arrays.""" + p = IMGProduct.from_raw_data({ + "uuid": "abc", "TARGET": ["MARS"], + "PLANET_DAY_NUMBER": [100], "EXPOSURE_DURATION": [0.5], + }) + assert p.target == "MARS" + assert p.planet_day_number == 100 + assert p.exposure_duration == 0.5 + + def test_null_string_handling(self): + p = IMGProduct.from_raw_data({ + "uuid": "abc", "TARGET": "null", "PRODUCT_TYPE": "None", + }) + assert p.target is None + assert p.product_type is None + + +# ╔══════════════════════════════════════════════════════════════╗ +# ║ PDS4 TESTS ║ +# ╚══════════════════════════════════════════════════════════════╝ + +class TestPDS4URNValidation: + def test_valid(self): + assert validate_urn("urn:nasa:pds:context:investigation:mission.juno") \ + == "urn:nasa:pds:context:investigation:mission.juno" + + def test_valid_with_version(self): + urn = "urn:nasa:pds:context:target:planet.mars::1.0" + assert validate_urn(urn) == urn + + def test_digits_in_bundle_segment(self): + """Bundle segment can contain digits (e.g. mars2020_meda).""" + urn = "urn:nasa:pds:mars2020_meda:data_raw:collection" + assert validate_urn(urn) == urn + + def test_hyphens_in_bundle_segment(self): + """Bundle segment can contain hyphens.""" + urn = "urn:nasa:pds:mars-science:data_calibrated:collection_01" + assert validate_urn(urn) == urn + + def test_invalid_prefix(self): + with pytest.raises(ValueError): + validate_urn("not:a:urn") + + def test_empty(self): + with pytest.raises(ValueError): + validate_urn("") + + +class TestPDS4CoordinateValidation: + def test_valid(self): + validate_coordinates(bbox_north=45, bbox_south=-45, bbox_east=180, bbox_west=-180) + + def test_planetary_longitude(self): + validate_coordinates(bbox_east=350, bbox_west=10) + + def test_all_none(self): + validate_coordinates() + + def test_north_out_of_range(self): + with pytest.raises(ValueError, match="bbox_north"): + validate_coordinates(bbox_north=91) + + def test_south_out_of_range(self): + with pytest.raises(ValueError, match="bbox_south"): + validate_coordinates(bbox_south=-91) + + def test_north_lt_south(self): + with pytest.raises(ValueError, match="must be >="): + validate_coordinates(bbox_north=10, bbox_south=20) + + def test_east_out_of_range(self): + with pytest.raises(ValueError, match="bbox_east"): + validate_coordinates(bbox_east=361) + + def test_boundaries_exact(self): + validate_coordinates(bbox_north=90, bbox_south=-90, bbox_east=360, bbox_west=-180) + + def test_equal_north_south(self): + validate_coordinates(bbox_north=0, bbox_south=0) + + +class TestPDS4Client: + def test_clean_urn_with_version(self): + c = PDS4Client() + assert c._clean_urn("urn:nasa:pds:context:mission.juno::1.0") \ + == "urn:nasa:pds:context:mission.juno" + + def test_clean_urn_no_version(self): + urn = "urn:nasa:pds:context:target" + assert PDS4Client()._clean_urn(urn) == urn + + def test_build_search_url_filters_none(self): + url = PDS4Client()._build_search_url("http://api/search", {"q": "mars", "x": None, "y": ""}) + assert "q=mars" in url + assert "x" not in url + assert "y" not in url + + def test_build_search_url_empty_params(self): + assert PDS4Client()._build_search_url("http://api/search", {}) == "http://api/search" + + @pytest.mark.asyncio + async def test_context_manager(self): + async with PDS4Client() as c: + assert c._client is not None + assert c._client is None + + @pytest.mark.asyncio + async def test_no_init_raises(self): + with pytest.raises(RuntimeError, match="Client not initialized"): + await PDS4Client()._request("GET", "test") + + def test_rate_limit_error(self): + e = PDS4RateLimitError(retry_after=60) + assert e.retry_after == 60 + assert "60" in str(e) + + +# ╔══════════════════════════════════════════════════════════════╗ +# ║ SBN TESTS ║ +# ╚══════════════════════════════════════════════════════════════╝ + +class TestSBNSources: + def test_list_format(self): + r = CatchSourcesResponse.from_raw_data([ + {"source": "neat_palomar", "source_name": "NEAT"}, + ]) + assert r.status == "success" + assert len(r.sources) == 1 + + def test_empty_list(self): + r = CatchSourcesResponse.from_raw_data([]) + assert len(r.sources) == 0 + + def test_error_dict(self): + r = CatchSourcesResponse.from_raw_data({"error": "bad"}) + assert r.status == "error" + + +class TestSBNJob: + def test_queued(self): + r = CatchJobResponse.from_raw_data({"job_id": "abc", "queued": True}) + assert r.job_id == "abc" + assert r.queued is True + + def test_error(self): + r = CatchJobResponse.from_raw_data({"error": "not found"}) + assert r.status == "error" + assert r.error == "not found" + + +class TestSBNResults: + def test_with_data(self): + r = CatchResultsResponse.from_raw_data({ + "count": 1, "data": [{"product_id": "obs1", "source": "neat"}], + }) + assert r.count == 1 + assert len(r.observations) == 1 + + def test_empty(self): + r = CatchResultsResponse.from_raw_data({"count": 0, "data": []}) + assert r.count == 0 + + def test_missing_data_key(self): + r = CatchResultsResponse.from_raw_data({}) + assert r.count == 0 + + +class TestSBNStatus: + def test_running(self): + r = CatchStatusResponse.from_raw_data({ + "status": [{"source": "neat_palomar", "status": "running"}], + }) + assert len(r.source_status) == 1 + + +class TestSBNClient: + def test_defaults(self): + c = SBNCatchClient() + assert "catch-api" in c.base_url + + @pytest.mark.asyncio + async def test_context_manager(self): + async with SBNCatchClient() as c: + assert c._client is not None + assert c._client is None + + @pytest.mark.asyncio + async def test_no_init_raises(self): + with pytest.raises(RuntimeError, match="Client not initialized"): + await SBNCatchClient()._request("GET", "test") + + def test_job_error(self): + e = SBNCatchJobError("j1", "timeout") + assert "j1" in str(e) and "timeout" in str(e) + + def test_rate_limit_error(self): + e = SBNCatchRateLimitError(retry_after=30) + assert e.retry_after == 30 + + +# ╔══════════════════════════════════════════════════════════════╗ +# ║ PDS CATALOG TESTS ║ +# ╚══════════════════════════════════════════════════════════════╝ + +class TestMatchesTerm: + def test_match_in_list(self): + ds = _make_ds(missions=["Cassini-Huygens"]) + assert _matches_term(ds, "Cassini", ds.missions, MISSION_ABBREVIATIONS) + + def test_match_in_title(self): + ds = _make_ds(title="JUNO JADE Raw Data") + assert _matches_term(ds, "JUNO", ds.missions, MISSION_ABBREVIATIONS) + + def test_match_in_id(self): + ds = _make_ds(id="JNO-J-JAD-2-EDR") + assert _matches_term(ds, "jno", ds.missions, MISSION_ABBREVIATIONS) + + def test_no_match(self): + ds = _make_ds(id="MRO-X", title="Mars", missions=["MRO"]) + assert not _matches_term(ds, "Cassini", ds.missions, MISSION_ABBREVIATIONS) + + +class TestFilterDataset: + def test_essential(self): + r = filter_dataset(_make_ds(), ESSENTIAL_FIELDS) + assert "id" in r and "title" in r + assert "description" not in r + + def test_full(self): + r = filter_dataset(_make_ds(description="hello", start_date=date(2004, 1, 1)), FULL_FIELDS) + assert "description" in r and "start_date" in r + + def test_empty_optional_excluded(self): + r = filter_dataset(_make_ds(missions=[], targets=[], description=None), FULL_FIELDS) + assert "missions" not in r + assert "description" not in r + + +class TestNormalizeId: + def test_clean(self): + assert CatalogIndex._normalize_id("CLEAN-ID") == "CLEAN-ID" + + def test_braces_quotes(self): + assert CatalogIndex._normalize_id('{"MESSY-ID",') == "MESSY-ID" + + def test_parens(self): + assert CatalogIndex._normalize_id("(ID)") == "ID" + + def test_whitespace(self): + assert CatalogIndex._normalize_id(" ID ") == "ID" + + +class TestCatalogIndex: + def setup_method(self): + self.ds1 = _make_ds( + id="CASS-1", title="Cassini ISS", node="rings", + missions=["Cassini"], targets=["Saturn"], instruments=["ISS"], + pds_version="PDS3", start_date=date(2004, 1, 1), stop_date=date(2017, 9, 15)) + self.ds2 = _make_ds( + id="JUNO-1", title="Juno JADE", node="ppi", + missions=["Juno"], targets=["Jupiter"], instruments=["JADE"], + pds_version="PDS4", dataset_type="bundle", + start_date=date(2016, 7, 1), stop_date=date(2025, 1, 1)) + self.idx = CatalogIndex([self.ds1, self.ds2]) + + def test_search_all(self): + _, total = self.idx.search() + assert total == 2 + + def test_search_by_node(self): + res, total = self.idx.search(node="rings") + assert total == 1 + + def test_search_by_mission(self): + res, total = self.idx.search(mission="Cassini") + assert total == 1 + + def test_search_by_pds_version(self): + res, total = self.idx.search(pds_version="PDS4") + assert total == 1 + + def test_search_pagination(self): + res, total = self.idx.search(limit=1) + assert len(res) == 1 and total == 2 + + def test_search_offset_beyond(self): + res, _ = self.idx.search(offset=10) + assert len(res) == 0 + + def test_get_dataset_by_id(self): + assert self.idx.get_dataset_by_id("CASS-1") is not None + assert self.idx.get_dataset_by_id("NOPE") is None + + def test_get_dataset_normalized(self): + ds = _make_ds(id='{"MALFORMED-ID",') + idx = CatalogIndex([ds]) + assert idx.get_dataset_by_id("MALFORMED-ID") is not None + + def test_stats(self): + stats = self.idx.get_stats() + assert stats["total_datasets"] == 2 + assert "rings" in stats["by_node"] + + def test_list_missions(self): + ms = self.idx.list_missions() + assert len(ms) == 2 + + def test_list_missions_node_filter(self): + ms = self.idx.list_missions(node="rings") + assert len(ms) == 1 + + def test_list_targets(self): + ts = self.idx.list_targets() + assert len(ts) == 2 + + def test_find_similar(self): + similar = self.idx.find_similar_dataset_ids("CASS") + assert len(similar) >= 1 + assert similar[0][1] >= 50 # score + + +class TestPDSCatalogClient: + @pytest.mark.asyncio + async def test_search_empty_dir(self): + c = PDSCatalogClient(catalog_dir="/nonexistent") + res, total = await c.search() + assert total == 0 + + @pytest.mark.asyncio + async def test_get_dataset_not_found(self): + c = PDSCatalogClient(catalog_dir="/nonexistent") + assert await c.get_dataset("NOPE") is None diff --git a/akd_ext/tools/pds/utils/img_api_models.py b/akd_ext/tools/pds/utils/img_api_models.py index 9275563..19cbd42 100644 --- a/akd_ext/tools/pds/utils/img_api_models.py +++ b/akd_ext/tools/pds/utils/img_api_models.py @@ -41,11 +41,14 @@ def _parse_int(value: Any) -> int | None: def _parse_str(value: Any) -> str | None: - """Parse a value to string, handling arrays.""" + """Parse a value to string, handling arrays and null-like values.""" value = _unwrap_value(value) if value is None: return None - return str(value) + s = str(value) + if s in ("null", "None", ""): + return None + return s class IMGProduct(BaseModel): diff --git a/akd_ext/tools/pds/utils/ode_api_models.py b/akd_ext/tools/pds/utils/ode_api_models.py index 0229977..53e72f6 100644 --- a/akd_ext/tools/pds/utils/ode_api_models.py +++ b/akd_ext/tools/pds/utils/ode_api_models.py @@ -107,9 +107,12 @@ def from_raw_data(cls, data: dict[str, Any]) -> "ODEProduct": for file_data in file_list: product_files.append(ODEProductFile(**file_data)) + raw_ode_id = data.get("ode_id") + ode_id = str(raw_ode_id) if raw_ode_id is not None else None + return cls( pdsid=data.get("pdsid"), - ode_id=data.get("ode_id"), + ode_id=ode_id, data_set_id=data.get("Data_Set_Id"), ihid=data.get("ihid"), iid=data.get("iid"), diff --git a/akd_ext/tools/pds/utils/pds4_client.py b/akd_ext/tools/pds/utils/pds4_client.py index 3c7687a..a68b727 100644 --- a/akd_ext/tools/pds/utils/pds4_client.py +++ b/akd_ext/tools/pds/utils/pds4_client.py @@ -40,7 +40,8 @@ def validate_urn(urn: str) -> str: ValueError: If the URN format is invalid """ # Basic URN pattern - starts with urn:nasa:pds: and contains valid characters - pattern = r"^urn:nasa:pds:[a-z_]+:[a-z_\.\-\w:]+$" + # Bundle segment allows letters, digits, underscores, and hyphens (e.g. mars2020_meda) + pattern = r"^urn:nasa:pds:[a-z0-9_\-]+:[a-z_\.\-\w:]+$" if not re.match(pattern, urn, re.IGNORECASE): raise ValueError(f"Invalid URN format: {urn}") return urn @@ -225,6 +226,7 @@ async def _request( async def search_bundles( self, title_query: str | None = None, + lid_query: str | None = None, start_time: str | None = None, end_time: str | None = None, processing_level: str | None = None, @@ -236,6 +238,7 @@ async def search_bundles( Args: title_query: Search query for bundle titles (e.g., "Lunar") + lid_query: Search by LID substring (e.g., "hirise", "mars2020_meda") start_time: Start of time range (ISO 8601 format, e.g., "2020-01-01T00:00:00Z") end_time: End of time range (ISO 8601 format) processing_level: Filter by processing level ("Raw", "Calibrated", "Derived") @@ -255,6 +258,9 @@ async def search_bundles( if title_query: filters.append(f'(title like "{title_query}")') + if lid_query: + filters.append(f'(lid like "*{lid_query.lower()}*")') + # Temporal filters if start_time: filters.append(f'(pds:Time_Coordinates.pds:start_date_time ge "{start_time}")') diff --git a/akd_ext/tools/pds/utils/pds_catalog_api_models.py b/akd_ext/tools/pds/utils/pds_catalog_api_models.py index 446fb3d..f6ef2be 100644 --- a/akd_ext/tools/pds/utils/pds_catalog_api_models.py +++ b/akd_ext/tools/pds/utils/pds_catalog_api_models.py @@ -84,8 +84,9 @@ class PDSDataset(BaseModel): total_size_bytes: int | None = Field(default=None, description="Total size in bytes") def to_search_text(self) -> str: - """Generate searchable text from all fields.""" + """Generate searchable text from all fields including the dataset ID.""" parts = [ + self.id, self.title, self.description or "", " ".join(self.missions), diff --git a/akd_ext/tools/pds/utils/pds_catalog_client.py b/akd_ext/tools/pds/utils/pds_catalog_client.py index 382c95a..1ecec86 100644 --- a/akd_ext/tools/pds/utils/pds_catalog_client.py +++ b/akd_ext/tools/pds/utils/pds_catalog_client.py @@ -240,15 +240,12 @@ def search( Returns: Tuple of (matching datasets, total count) """ - # Start with all datasets or filtered subset + # Start with all datasets or filtered subset using indexes for speed if node: results = self._by_node.get(node.lower(), []) elif target: - # Target can use direct index lookup since target metadata is reliable results = self._by_target.get(target.lower(), []) else: - # For mission filter or no filter, start with all datasets - # Mission filter needs full scan due to ID/title fallback matching results = self.datasets # Apply mission filter with fallback to ID/title matching @@ -259,11 +256,9 @@ def search( if instrument: results = [d for d in results if _matches_term(d, instrument, d.instruments, INSTRUMENT_ABBREVIATIONS)] - # Apply node filter if combined with mission or target - if node and (mission or target): - results = [d for d in results if d.node.value == node.lower()] - - if target and not node: + # Apply target filter — always apply when target is specified, + # even if node was also used to narrow the initial set + if target: target_lower = target.lower() results = [d for d in results if any(target_lower in t.lower() for t in d.targets)] @@ -322,9 +317,21 @@ def search( return paginated, total + @staticmethod + def _normalize_id(raw_id: str) -> str: + """Normalize a dataset ID by stripping set/tuple notation artifacts.""" + import re + cleaned = raw_id.strip() + cleaned = re.sub(r'^[\(\{\["\s]+', '', cleaned) + cleaned = re.sub(r'[,\)\}\]"\s]+$', '', cleaned) + return cleaned + def get_dataset_by_id(self, dataset_id: str) -> PDSDataset | None: """Get a dataset by its ID. + Performs exact match first, then falls back to normalized comparison + to handle malformed IDs from catalog scraping. + Args: dataset_id: The dataset ID (LIDVID for PDS4, VOLUME_ID for PDS3) @@ -334,8 +341,36 @@ def get_dataset_by_id(self, dataset_id: str) -> PDSDataset | None: for dataset in self.datasets: if dataset.id == dataset_id: return dataset + + normalized_query = self._normalize_id(dataset_id) + for dataset in self.datasets: + if self._normalize_id(dataset.id) == normalized_query: + return dataset + return None + def find_similar_dataset_ids(self, dataset_id: str, max_suggestions: int = 5) -> list[tuple[str, int]]: + """Find dataset IDs similar to the given ID using fuzzy matching. + + Args: + dataset_id: The dataset ID to find similar matches for + max_suggestions: Maximum number of suggestions to return + + Returns: + List of (dataset_id, similarity_score) tuples, sorted by score descending + """ + scored = [] + dataset_id_lower = dataset_id.lower() + for dataset in self.datasets: + score = max( + fuzz.ratio(dataset_id_lower, dataset.id.lower()), + fuzz.partial_ratio(dataset_id_lower, dataset.id.lower()), + ) + if score >= 50: + scored.append((dataset.id, score)) + scored.sort(key=lambda x: x[1], reverse=True) + return scored[:max_suggestions] + def get_stats(self) -> dict[str, Any]: """Get catalog statistics.""" stats = { From 1ab925ec5966a8d708c746facb4014206f2ab4b8 Mon Sep 17 00:00:00 2001 From: iamsims <074bct541.simran@pcampus.edu.np> Date: Tue, 17 Mar 2026 20:46:56 -0500 Subject: [PATCH 16/16] Reduce limit in tools --- akd_ext/tools/pds/img/get_facets.py | 2 +- akd_ext/tools/pds/img/search.py | 2 +- akd_ext/tools/pds/ode/list_feature_names.py | 4 +- akd_ext/tools/pds/opus/opus_search.py | 6 +- akd_ext/tools/pds/pds4/get_product.py | 36 +- akd_ext/tools/pds/pds4/search_bundles.py | 6 +- akd_ext/tools/pds/pds4/search_collections.py | 2 +- .../tools/pds/pds4/search_instrument_hosts.py | 2 +- akd_ext/tools/pds/pds4/search_instruments.py | 2 +- .../tools/pds/pds4/search_investigations.py | 2 +- akd_ext/tools/pds/pds4/search_products.py | 2 +- akd_ext/tools/pds/pds4/search_targets.py | 2 +- akd_ext/tools/pds/tests/conftest.py | 13 +- akd_ext/tools/pds/tests/test_validation.py | 584 ++++++++++++------ akd_ext/tools/pds/utils/opus_client.py | 4 +- akd_ext/tools/pds/utils/pds4_client.py | 2 +- akd_ext/tools/pds/utils/pds_catalog_client.py | 5 +- 17 files changed, 456 insertions(+), 220 deletions(-) diff --git a/akd_ext/tools/pds/img/get_facets.py b/akd_ext/tools/pds/img/get_facets.py index ec84ec1..2a66805 100644 --- a/akd_ext/tools/pds/img/get_facets.py +++ b/akd_ext/tools/pds/img/get_facets.py @@ -36,7 +36,7 @@ class IMGGetFacetsInputSchema(InputSchema): "- 'pds_standard': PDS version (PDS3, PDS4)" ), ) - limit: int = Field(100, ge=1, le=1000, description="Maximum number of values to return") + limit: int = Field(10, ge=1, le=25, description="Maximum number of values to return (default 10, max 25)") target: IMGTarget | None = Field(None, description="Optional target filter to narrow results") mission: IMGMission | None = Field(None, description="Optional mission filter to narrow results") instrument: IMGInstrument | None = Field(None, description="Optional instrument filter to narrow results") diff --git a/akd_ext/tools/pds/img/search.py b/akd_ext/tools/pds/img/search.py index 6ae121d..cbb3c11 100644 --- a/akd_ext/tools/pds/img/search.py +++ b/akd_ext/tools/pds/img/search.py @@ -100,7 +100,7 @@ class IMGSearchInputSchema(InputSchema): ) sort_by: IMGSortField | None = Field(None, description="Field to sort results by") sort_order: IMGSortOrder = Field("desc", description="Sort direction: 'asc' or 'desc'") - rows: int = Field(100, ge=1, le=1000, description="Maximum number of products to return") + rows: int = Field(10, ge=1, le=25, description="Maximum number of products to return (default 10, max 25)") start: int = Field(0, ge=0, description="Pagination offset (for retrieving additional pages)") diff --git a/akd_ext/tools/pds/ode/list_feature_names.py b/akd_ext/tools/pds/ode/list_feature_names.py index 0928493..6f5e89e 100644 --- a/akd_ext/tools/pds/ode/list_feature_names.py +++ b/akd_ext/tools/pds/ode/list_feature_names.py @@ -13,7 +13,7 @@ from akd_ext.tools.pds.utils.ode_client import ODEClient, ODEClientError -MAX_FEATURE_NAMES_LIMIT = 50 # Max feature names +MAX_FEATURE_NAMES_LIMIT = 25 # Max feature names class ODEListFeatureNamesInputSchema(InputSchema): @@ -21,7 +21,7 @@ class ODEListFeatureNamesInputSchema(InputSchema): target: TargetType = Field(..., description="Planetary body to query") feature_class: str = Field(..., description="Feature type (e.g., 'crater', 'chasma', 'mons', 'vallis', 'mare')") - limit: int = Field(50, ge=1, le=50, description="Maximum names to return (default 50, max 50)") + limit: int = Field(25, ge=1, le=25, description="Maximum names to return (default 25, max 25)") class ODEListFeatureNamesOutputSchema(OutputSchema): diff --git a/akd_ext/tools/pds/opus/opus_search.py b/akd_ext/tools/pds/opus/opus_search.py index 13eec4f..77c3738 100644 --- a/akd_ext/tools/pds/opus/opus_search.py +++ b/akd_ext/tools/pds/opus/opus_search.py @@ -65,10 +65,10 @@ class OPUSSearchInputSchema(InputSchema): description="End of time range (ISO 8601 format)", ) limit: int = Field( - 100, + 10, ge=1, - le=1000, - description="Maximum observations to return", + le=25, + description="Maximum observations to return (default 10, max 25)", ) startobs: int = Field( 1, diff --git a/akd_ext/tools/pds/pds4/get_product.py b/akd_ext/tools/pds/pds4/get_product.py index c516d15..019f9fc 100644 --- a/akd_ext/tools/pds/pds4/get_product.py +++ b/akd_ext/tools/pds/pds4/get_product.py @@ -13,13 +13,22 @@ from akd_ext.tools.pds.utils.pds4_client import PDS4Client, PDS4ClientError _RELEVANT_KEYS = { - "id", "type", "title", "description", "lid", "lidvid", - "investigations", "observing_system_components", "targets", + "id", + "type", + "title", + "description", + "lid", + "lidvid", + "investigations", + "observing_system_components", + "targets", "pds:Time_Coordinates.pds:start_date_time", "pds:Time_Coordinates.pds:stop_date_time", "pds:Primary_Result_Summary.pds:processing_level", - "ref_lid_instrument", "ref_lid_target", - "ref_lid_instrument_host", "ref_lid_investigation", + "ref_lid_instrument", + "ref_lid_target", + "ref_lid_instrument_host", + "ref_lid_investigation", "metadata", } @@ -33,11 +42,20 @@ def _filter_product_response(raw: dict[str, Any]) -> dict[str, Any]: elif key == "properties" and isinstance(value, dict): useful_props = {} for prop_key, prop_val in value.items(): - if any(term in prop_key.lower() for term in [ - "title", "description", "processing_level", - "time_coordinates", "target", "instrument", - "investigation", "purpose", "collection_type", - ]): + if any( + term in prop_key.lower() + for term in [ + "title", + "description", + "processing_level", + "time_coordinates", + "target", + "instrument", + "investigation", + "purpose", + "collection_type", + ] + ): useful_props[prop_key] = prop_val if useful_props: filtered["properties"] = useful_props diff --git a/akd_ext/tools/pds/pds4/search_bundles.py b/akd_ext/tools/pds/pds4/search_bundles.py index 17dbc52..f934aa1 100644 --- a/akd_ext/tools/pds/pds4/search_bundles.py +++ b/akd_ext/tools/pds/pds4/search_bundles.py @@ -44,12 +44,14 @@ class PDS4SearchBundlesInputSchema(InputSchema): ) end_time: str | None = Field(None, description="End of time range (ISO 8601 format)") processing_level: PROCESSING_LEVEL | None = Field(None, description="Filter by processing level") - limit: int = Field(10, ge=0, le=100, description="Number of bundle results to return (default 10, set to 0 for facets only)") + limit: int = Field( + 10, ge=0, le=25, description="Number of bundle results to return (default 10, set to 0 for facets only)" + ) facet_fields: str | None = Field( None, description="Comma-separated list of fields to facet on (e.g., 'pds:Identification_Area.pds:title,lidvid')", ) - facet_limit: int = Field(25, ge=1, le=100, description="Maximum number of facet values to return (default: 25)") + facet_limit: int = Field(25, ge=1, le=25, description="Maximum number of facet values to return (default: 25)") class PDS4SearchBundlesOutputSchema(OutputSchema): diff --git a/akd_ext/tools/pds/pds4/search_collections.py b/akd_ext/tools/pds/pds4/search_collections.py index 4e40fa0..f4494d8 100644 --- a/akd_ext/tools/pds/pds4/search_collections.py +++ b/akd_ext/tools/pds/pds4/search_collections.py @@ -50,7 +50,7 @@ class PDS4SearchCollectionsInputSchema(InputSchema): None, description="End of time range in ISO 8601 format (e.g., '2021-01-01T00:00:00Z')" ) processing_level: PROCESSING_LEVEL | None = Field(None, description="Filter by calibration level") - limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") + limit: int = Field(10, ge=0, le=25, description="Max results (default 10, max 25)") class PDS4SearchCollectionsOutputSchema(OutputSchema): diff --git a/akd_ext/tools/pds/pds4/search_instrument_hosts.py b/akd_ext/tools/pds/pds4/search_instrument_hosts.py index 713bf7a..f0a55f8 100644 --- a/akd_ext/tools/pds/pds4/search_instrument_hosts.py +++ b/akd_ext/tools/pds/pds4/search_instrument_hosts.py @@ -30,7 +30,7 @@ class PDS4SearchInstrumentHostsInputSchema(InputSchema): None, description="Space-delimited search terms (e.g. 'mars rover', 'voyager spacecraft')" ) instrument_host_type: INSTRUMENT_HOST_TYPE | None = Field(None, description="Filter by instrument host type") - limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") + limit: int = Field(10, ge=0, le=25, description="Max results (default 10, max 25)") class PDS4SearchInstrumentHostsOutputSchema(OutputSchema): diff --git a/akd_ext/tools/pds/pds4/search_instruments.py b/akd_ext/tools/pds/pds4/search_instruments.py index ae73351..a2df50b 100644 --- a/akd_ext/tools/pds/pds4/search_instruments.py +++ b/akd_ext/tools/pds/pds4/search_instruments.py @@ -30,7 +30,7 @@ class PDS4SearchInstrumentsInputSchema(InputSchema): None, description="Space-delimited search terms (e.g. 'camera mars', 'spectrometer cassini')" ) instrument_type: INSTRUMENT_TYPE | None = Field(None, description="Filter by instrument type") - limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") + limit: int = Field(10, ge=0, le=25, description="Max results (default 10, max 25)") class PDS4SearchInstrumentsOutputSchema(OutputSchema): diff --git a/akd_ext/tools/pds/pds4/search_investigations.py b/akd_ext/tools/pds/pds4/search_investigations.py index 6d628e2..cff1034 100644 --- a/akd_ext/tools/pds/pds4/search_investigations.py +++ b/akd_ext/tools/pds/pds4/search_investigations.py @@ -29,7 +29,7 @@ class PDS4SearchInvestigationsInputSchema(InputSchema): keywords: str | None = Field( None, description="Space-delimited search terms (e.g. 'mars rover', 'jupiter cassini')" ) - limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") + limit: int = Field(10, ge=0, le=25, description="Max results (default 10, max 25)") class PDS4SearchInvestigationsOutputSchema(OutputSchema): diff --git a/akd_ext/tools/pds/pds4/search_products.py b/akd_ext/tools/pds/pds4/search_products.py index d3bb57c..e33613e 100644 --- a/akd_ext/tools/pds/pds4/search_products.py +++ b/akd_ext/tools/pds/pds4/search_products.py @@ -48,7 +48,7 @@ class PDS4SearchProductsInputSchema(InputSchema): ref_lid_target: str | None = Field( None, description="URN identifier for target (e.g., 'urn:nasa:pds:context:target:planet.mars')" ) - limit: int = Field(100, ge=0, le=100, description="Maximum results to return (default 100)") + limit: int = Field(10, ge=0, le=25, description="Maximum results to return (default 10, max 25)") class PDS4SearchProductsOutputSchema(OutputSchema): diff --git a/akd_ext/tools/pds/pds4/search_targets.py b/akd_ext/tools/pds/pds4/search_targets.py index 71bc5f6..9df3207 100644 --- a/akd_ext/tools/pds/pds4/search_targets.py +++ b/akd_ext/tools/pds/pds4/search_targets.py @@ -31,7 +31,7 @@ class PDS4SearchTargetsInputSchema(InputSchema): None, description="Space-delimited search terms (e.g. 'jupiter moon', 'asteroid belt')" ) target_type: TARGET_TYPE | None = Field(None, description="Filter by target type") - limit: int = Field(10, ge=0, le=100, description="Max results (default 10)") + limit: int = Field(10, ge=0, le=25, description="Max results (default 10, max 25)") class PDS4SearchTargetsOutputSchema(OutputSchema): diff --git a/akd_ext/tools/pds/tests/conftest.py b/akd_ext/tools/pds/tests/conftest.py index b468ae5..99c9957 100644 --- a/akd_ext/tools/pds/tests/conftest.py +++ b/akd_ext/tools/pds/tests/conftest.py @@ -9,8 +9,13 @@ # ── Step 1: stub the framework packages the source files import from ── for name in [ - "akd", "akd._base", "akd.tools", - "akd_ext", "akd_ext.tools", "akd_ext.mcp", "akd_ext.mcp.decorators", + "akd", + "akd._base", + "akd.tools", + "akd_ext", + "akd_ext.tools", + "akd_ext.mcp", + "akd_ext.mcp.decorators", ]: if name not in sys.modules: m = types.ModuleType(name) @@ -20,9 +25,7 @@ sys.modules["akd._base"].InputSchema = type("InputSchema", (), {}) sys.modules["akd._base"].OutputSchema = type("OutputSchema", (), {}) -sys.modules["akd.tools"].BaseTool = type( - "BaseTool", (), {"__class_getitem__": classmethod(lambda cls, *a: cls)} -) +sys.modules["akd.tools"].BaseTool = type("BaseTool", (), {"__class_getitem__": classmethod(lambda cls, *a: cls)}) sys.modules["akd.tools"].BaseToolConfig = type("BaseToolConfig", (), {}) sys.modules["akd_ext.mcp.decorators"].mcp_tool = lambda cls: cls diff --git a/akd_ext/tools/pds/tests/test_validation.py b/akd_ext/tools/pds/tests/test_validation.py index d6862ee..1387aac 100644 --- a/akd_ext/tools/pds/tests/test_validation.py +++ b/akd_ext/tools/pds/tests/test_validation.py @@ -10,44 +10,71 @@ from unittest.mock import AsyncMock, MagicMock from akd_ext.tools.pds.utils.opus_api_models import ( - OPUSObservation, OPUSSearchResponse, OPUSCountResponse, - OPUSMetadata, OPUSMetadataResponse, OPUSFiles, OPUSFilesResponse, - _parse_float as opus_parse_float, _parse_int as opus_parse_int, + OPUSObservation, + OPUSSearchResponse, + OPUSCountResponse, + OPUSMetadata, + OPUSMetadataResponse, + OPUSFiles, + OPUSFilesResponse, + _parse_float as opus_parse_float, + _parse_int as opus_parse_int, ) from akd_ext.tools.pds.utils.opus_client import ( - OPUSClient, OPUSClientError, OPUSRateLimitError, + OPUSClient, + OPUSClientError, + OPUSRateLimitError, ) from akd_ext.tools.pds.utils.ode_api_models import ( - ODEProduct, ODEProductFile, ODEProductSearchResponse, - ODEProductCountResponse, ODEInstrumentInfo, ODEIIPTResponse, - ODEFeatureDataResponse, ODEFeatureClassesResponse, + ODEProduct, + ODEProductSearchResponse, + ODEProductCountResponse, + ODEInstrumentInfo, + ODEIIPTResponse, + ODEFeatureDataResponse, + ODEFeatureClassesResponse, ODEFeatureNamesResponse, - _parse_float as ode_parse_float, _parse_int as ode_parse_int, + _parse_float as ode_parse_float, + _parse_int as ode_parse_int, ) from akd_ext.tools.pds.utils.ode_client import ( - ODEClient, ODEClientError, ODERateLimitError, + ODEClient, ) from akd_ext.tools.pds.utils.img_api_models import ( - IMGSearchResponse, IMGCountResponse, IMGFacetResponse, IMGProduct, + IMGSearchResponse, + IMGCountResponse, + IMGFacetResponse, + IMGProduct, ) from akd_ext.tools.pds.utils.img_client import ( - IMGAtlasClient, IMGAtlasClientError, + IMGAtlasClient, + IMGAtlasClientError, ) from akd_ext.tools.pds.utils.pds4_client import ( - PDS4Client, PDS4ClientError, PDS4RateLimitError, - validate_urn, validate_coordinates, + PDS4Client, + PDS4RateLimitError, + validate_urn, + validate_coordinates, ) from akd_ext.tools.pds.utils.sbn_api_models import ( - CatchSourcesResponse, CatchJobResponse, - CatchResultsResponse, CatchStatusResponse, CatchFixedResponse, + CatchSourcesResponse, + CatchJobResponse, + CatchResultsResponse, + CatchStatusResponse, ) from akd_ext.tools.pds.utils.sbn_client import ( - SBNCatchClient, SBNCatchClientError, SBNCatchRateLimitError, SBNCatchJobError, + SBNCatchClient, + SBNCatchRateLimitError, + SBNCatchJobError, ) from akd_ext.tools.pds.utils.pds_catalog_client import ( - CatalogIndex, PDSCatalogClient, _matches_term, filter_dataset, - MISSION_ABBREVIATIONS, INSTRUMENT_ABBREVIATIONS, - ESSENTIAL_FIELDS, SUMMARY_FIELDS, FULL_FIELDS, + CatalogIndex, + PDSCatalogClient, + _matches_term, + filter_dataset, + MISSION_ABBREVIATIONS, + ESSENTIAL_FIELDS, + FULL_FIELDS, ) from datetime import date @@ -57,10 +84,20 @@ # ║ HELPER: mock datasets ║ # ╚══════════════════════════════════════════════════════════════╝ + def _make_ds( - id="DS-1", title="Title", node="atm", missions=None, instruments=None, - targets=None, description="desc", pds_version="PDS3", dataset_type="volume", - start_date=None, stop_date=None, keywords=None, + id="DS-1", + title="Title", + node="atm", + missions=None, + instruments=None, + targets=None, + description="desc", + pds_version="PDS3", + dataset_type="volume", + start_date=None, + stop_date=None, + keywords=None, ): ds = MagicMock() ds.id = id @@ -91,6 +128,7 @@ def _make_ds( # ║ OPUS TESTS ║ # ╚══════════════════════════════════════════════════════════════╝ + class TestOPUSParsers: def test_parse_float_valid(self): assert opus_parse_float(3.14) == 3.14 @@ -114,12 +152,19 @@ def test_parse_int_none_and_invalid(self): class TestOPUSObservation: def test_from_raw_data_complete(self): - obs = OPUSObservation.from_raw_data({ - "opusid": "co-iss-test", "instrument": "Cassini ISS", - "planet": "Saturn", "target": "Titan", "mission": "Cassini", - "time1": "2004-01-01", "time2": "2004-01-02", - "observationduration": "60.0", "ringobsid": "RING_1", - }) + obs = OPUSObservation.from_raw_data( + { + "opusid": "co-iss-test", + "instrument": "Cassini ISS", + "planet": "Saturn", + "target": "Titan", + "mission": "Cassini", + "time1": "2004-01-01", + "time2": "2004-01-02", + "observationduration": "60.0", + "ringobsid": "RING_1", + } + ) assert obs.opusid == "co-iss-test" assert obs.observation_duration == 60.0 assert obs.ring_obs_id == "RING_1" @@ -134,8 +179,14 @@ def test_from_raw_data_bad_duration(self): assert obs.observation_duration is None def test_from_row_data(self): - cols = ["OPUS ID", "Instrument Name", "Planet", "Intended Target Name(s)", - "Observation Start Time (YMDhms)", "Observation Duration (secs)"] + cols = [ + "OPUS ID", + "Instrument Name", + "Planet", + "Intended Target Name(s)", + "Observation Start Time (YMDhms)", + "Observation Duration (secs)", + ] row = ["id-1", "ISS", "Saturn", "Titan", "2004-01-01", "120"] obs = OPUSObservation.from_row_data(cols, row) assert obs.opusid == "id-1" @@ -148,22 +199,36 @@ def test_from_row_data_mismatched(self): class TestOPUSSearchResponse: def test_array_format(self): - resp = OPUSSearchResponse.from_raw_data({ - "page": [["id1", "ISS", "Saturn", "Titan", "2004", "60"]], - "columns": ["OPUS ID", "Instrument Name", "Planet", - "Intended Target Name(s)", "Observation Start Time (YMDhms)", - "Observation Duration (secs)"], - "count": 1, "available": 500, "start_obs": 1, "limit": 100, - }) + resp = OPUSSearchResponse.from_raw_data( + { + "page": [["id1", "ISS", "Saturn", "Titan", "2004", "60"]], + "columns": [ + "OPUS ID", + "Instrument Name", + "Planet", + "Intended Target Name(s)", + "Observation Start Time (YMDhms)", + "Observation Duration (secs)", + ], + "count": 1, + "available": 500, + "start_obs": 1, + "limit": 100, + } + ) assert resp.status == "success" assert len(resp.observations) == 1 assert resp.available == 500 def test_dict_format(self): - resp = OPUSSearchResponse.from_raw_data({ - "page": [{"opusid": "t1", "target": "Io"}], "columns": [], - "count": 1, "available": 1, - }) + resp = OPUSSearchResponse.from_raw_data( + { + "page": [{"opusid": "t1", "target": "Io"}], + "columns": [], + "count": 1, + "available": 1, + } + ) assert resp.observations[0].opusid == "t1" def test_error(self): @@ -203,10 +268,13 @@ def test_non_list_data(self): class TestOPUSMetadata: def test_instrument_constraint_extraction(self): - meta = OPUSMetadata.from_raw_data("id1", { - "General Constraints": {"planet": "Saturn"}, - "Cassini ISS Constraints": {"filter1": "CL1"}, - }) + meta = OPUSMetadata.from_raw_data( + "id1", + { + "General Constraints": {"planet": "Saturn"}, + "Cassini ISS Constraints": {"filter1": "CL1"}, + }, + ) assert meta.instrument_constraints == {"filter1": "CL1"} def test_no_instrument_constraints(self): @@ -220,11 +288,19 @@ def test_metadata_response_error(self): class TestOPUSFiles: def test_full_files(self): - f = OPUSFiles.from_raw_data("oid", {"data": {"oid": { - "browse_thumb": ["http://t.jpg"], "browse_full": ["http://f.jpg"], - "raw_image": ["http://r1.img", "http://r2.img"], - "calibrated_image": ["http://c.img"], - }}}) + f = OPUSFiles.from_raw_data( + "oid", + { + "data": { + "oid": { + "browse_thumb": ["http://t.jpg"], + "browse_full": ["http://f.jpg"], + "raw_image": ["http://r1.img", "http://r2.img"], + "calibrated_image": ["http://c.img"], + } + } + }, + ) assert f.browse_thumb == "http://t.jpg" assert len(f.raw_files) == 2 assert len(f.calibrated_files) == 1 @@ -238,9 +314,16 @@ def test_wrong_opusid(self): assert f.raw_files == [] def test_browse_as_string(self): - f = OPUSFiles.from_raw_data("oid", {"data": {"oid": { - "browse_thumb": "http://s.jpg", - }}}) + f = OPUSFiles.from_raw_data( + "oid", + { + "data": { + "oid": { + "browse_thumb": "http://s.jpg", + } + } + }, + ) assert f.browse_thumb == "http://s.jpg" def test_extract_first_url_edge_cases(self): @@ -265,8 +348,7 @@ def test_build_search_params_minimal(self): assert "target" not in p def test_build_search_params_full(self): - p = OPUSClient()._build_search_params( - target="Titan", planet="saturn", time_min="2004-01-01", limit=50) + p = OPUSClient()._build_search_params(target="Titan", planet="saturn", time_min="2004-01-01", limit=50) assert p["target"] == "Titan" assert p["time1"] == "2004-01-01" assert p["limit"] == "50" @@ -286,7 +368,8 @@ async def test_no_init_raises(self): async def test_rate_limit_raises(self): c = OPUSClient(max_retries=0, retry_delay=0.01) mock_resp = MagicMock(status_code=429, headers={"retry-after": "0"}) - c._client = AsyncMock(); c._client.get = AsyncMock(return_value=mock_resp) + c._client = AsyncMock() + c._client.get = AsyncMock(return_value=mock_resp) with pytest.raises(OPUSRateLimitError): await c._request("test") @@ -303,6 +386,7 @@ async def test_http_error_retries_exhausted(self): # ║ ODE TESTS ║ # ╚══════════════════════════════════════════════════════════════╝ + class TestODEParsers: def test_parse_float(self): assert ode_parse_float("3.14") == 3.14 @@ -317,13 +401,19 @@ def test_parse_int(self): class TestODEProduct: def test_full_product(self): - p = ODEProduct.from_raw_data({ - "pdsid": "ESP_012600", "ode_id": 12345, - "Center_latitude": "45.5", "Emission_angle": "5.2", - "Product_files": {"Product_file": [ - {"FileName": "f.img", "URL": "http://x"}, - ]}, - }) + p = ODEProduct.from_raw_data( + { + "pdsid": "ESP_012600", + "ode_id": 12345, + "Center_latitude": "45.5", + "Emission_angle": "5.2", + "Product_files": { + "Product_file": [ + {"FileName": "f.img", "URL": "http://x"}, + ] + }, + } + ) assert p.pdsid == "ESP_012600" assert p.ode_id == "12345" # int coerced to str assert p.center_latitude == 45.5 @@ -333,49 +423,63 @@ def test_ode_id_none(self): assert ODEProduct.from_raw_data({"ode_id": None}).ode_id is None def test_single_file_dict(self): - p = ODEProduct.from_raw_data({"Product_files": { - "Product_file": {"FileName": "one.img"} - }}) + p = ODEProduct.from_raw_data({"Product_files": {"Product_file": {"FileName": "one.img"}}}) assert len(p.product_files) == 1 def test_no_files(self): assert ODEProduct.from_raw_data({}).product_files == [] def test_bad_float_values(self): - p = ODEProduct.from_raw_data({ - "Center_latitude": "N/A", "Emission_angle": "", "Map_scale": "?", - }) + p = ODEProduct.from_raw_data( + { + "Center_latitude": "N/A", + "Emission_angle": "", + "Map_scale": "?", + } + ) assert p.center_latitude is None assert p.emission_angle is None class TestODESearchResponse: def test_success(self): - r = ODEProductSearchResponse.from_raw_data({"ODEResults": { - "Status": "Success", "Count": "2", - "Products": {"Product": [ - {"pdsid": "A", "ode_id": "1"}, {"pdsid": "B", "ode_id": "2"}, - ]}, - }}) + r = ODEProductSearchResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "Count": "2", + "Products": { + "Product": [ + {"pdsid": "A", "ode_id": "1"}, + {"pdsid": "B", "ode_id": "2"}, + ] + }, + } + } + ) assert r.count == 2 assert len(r.products) == 2 def test_single_product_as_dict(self): - r = ODEProductSearchResponse.from_raw_data({"ODEResults": { - "Status": "Success", "Count": "1", - "Products": {"Product": {"pdsid": "ONLY"}}, - }}) + r = ODEProductSearchResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "Count": "1", + "Products": {"Product": {"pdsid": "ONLY"}}, + } + } + ) assert len(r.products) == 1 def test_error(self): - r = ODEProductSearchResponse.from_raw_data( - {"ODEResults": {"Status": "ERROR", "Error": "bad target"}}) + r = ODEProductSearchResponse.from_raw_data({"ODEResults": {"Status": "ERROR", "Error": "bad target"}}) assert r.status == "ERROR" def test_no_products_string(self): - r = ODEProductSearchResponse.from_raw_data({"ODEResults": { - "Status": "Success", "Count": "0", "Products": "No Products Found" - }}) + r = ODEProductSearchResponse.from_raw_data( + {"ODEResults": {"Status": "Success", "Count": "0", "Products": "No Products Found"}} + ) assert r.products == [] def test_non_dict_top_level(self): @@ -383,72 +487,116 @@ def test_non_dict_top_level(self): assert r.status == "ERROR" def test_non_dict_items_filtered(self): - r = ODEProductSearchResponse.from_raw_data({"ODEResults": { - "Status": "Success", - "Products": {"Product": [{"pdsid": "OK"}, "bad", 42]}, - }}) + r = ODEProductSearchResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "Products": {"Product": [{"pdsid": "OK"}, "bad", 42]}, + } + } + ) assert len(r.products) == 1 class TestODECountResponse: def test_success(self): - r = ODEProductCountResponse.from_raw_data( - {"ODEResults": {"Status": "Success", "Count": "150"}}) + r = ODEProductCountResponse.from_raw_data({"ODEResults": {"Status": "Success", "Count": "150"}}) assert r.count == 150 def test_error(self): - r = ODEProductCountResponse.from_raw_data( - {"ODEResults": {"Status": "ERROR", "Error": "missing"}}) + r = ODEProductCountResponse.from_raw_data({"ODEResults": {"Status": "ERROR", "Error": "missing"}}) assert r.error == "missing" class TestODEIIPT: def test_success(self): - r = ODEIIPTResponse.from_raw_data({"ODEResults": { - "Status": "Success", "IIPT": {"IIPTSet": [ - {"IHID": "MRO", "IHName": "MRO", "IID": "HIRISE", - "IName": "HiRISE", "PT": "EDR", "PTName": "EDR", - "NumberProducts": "5000", "IHN": "", "IIN": ""}, - ]}, - }}) + r = ODEIIPTResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "IIPT": { + "IIPTSet": [ + { + "IHID": "MRO", + "IHName": "MRO", + "IID": "HIRISE", + "IName": "HiRISE", + "PT": "EDR", + "PTName": "EDR", + "NumberProducts": "5000", + "IHN": "", + "IIN": "", + }, + ] + }, + } + } + ) assert len(r.instruments) == 1 assert r.instruments[0].number_products == 5000 assert r.instruments[0].instrument_host_name == "MRO" def test_single_dict(self): - r = ODEIIPTResponse.from_raw_data({"ODEResults": { - "Status": "Success", "IIPT": {"IIPTSet": - {"IHID": "LRO", "IID": "LROC", "PT": "E", "PTName": "E"}}, - }}) + r = ODEIIPTResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "IIPT": {"IIPTSet": {"IHID": "LRO", "IID": "LROC", "PT": "E", "PTName": "E"}}, + } + } + ) assert len(r.instruments) == 1 def test_fallback_property(self): info = ODEInstrumentInfo( - IHID="X", IHN="Old Host", IHName="", IID="Y", - IIN="Old Inst", IName="", PT="Z", PTName="Z") + IHID="X", IHN="Old Host", IHName="", IID="Y", IIN="Old Inst", IName="", PT="Z", PTName="Z" + ) assert info.instrument_host_name == "Old Host" assert info.instrument_name == "Old Inst" class TestODEFeatures: def test_json_success(self): - r = ODEFeatureDataResponse.from_raw_data({"ODEResults": { - "Status": "Success", "Count": "1", - "Features": {"Feature": [{ - "FeatureClass": "Crater", "FeatureName": "Gale", - "MinLat": "-6", "MaxLat": "-4", "WestLon": "136", "EastLon": "138", - }]}, - }}) + r = ODEFeatureDataResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "Count": "1", + "Features": { + "Feature": [ + { + "FeatureClass": "Crater", + "FeatureName": "Gale", + "MinLat": "-6", + "MaxLat": "-4", + "WestLon": "136", + "EastLon": "138", + } + ] + }, + } + } + ) assert r.features[0].feature_name == "Gale" def test_single_feature_dict(self): - r = ODEFeatureDataResponse.from_raw_data({"ODEResults": { - "Status": "Success", - "Features": {"Feature": { - "FeatureClass": "Mons", "FeatureName": "Olympus", - "MinLat": "15", "MaxLat": "25", "WestLon": "220", "EastLon": "230", - }}, - }}) + r = ODEFeatureDataResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "Features": { + "Feature": { + "FeatureClass": "Mons", + "FeatureName": "Olympus", + "MinLat": "15", + "MaxLat": "25", + "WestLon": "220", + "EastLon": "230", + } + }, + } + } + ) assert len(r.features) == 1 def test_xml_success(self): @@ -457,12 +605,12 @@ def test_xml_success(self): "Crater" "Jezero18" "197778" - "") + "" + ) assert r.features[0].feature_name == "Jezero" def test_xml_error(self): - r = ODEFeatureDataResponse.from_xml( - "ERRORbad") + r = ODEFeatureDataResponse.from_xml("ERRORbad") assert r.error == "bad" def test_xml_parse_error(self): @@ -470,24 +618,36 @@ def test_xml_parse_error(self): assert "XML parse error" in r.error def test_feature_classes(self): - r = ODEFeatureClassesResponse.from_raw_data({"ODEResults": { - "Status": "Success", - "FeatureTypes": {"FeatureType": ["Crater", "Mons"]}, - }}) + r = ODEFeatureClassesResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "FeatureTypes": {"FeatureType": ["Crater", "Mons"]}, + } + } + ) assert len(r.feature_classes) == 2 def test_feature_classes_string(self): - r = ODEFeatureClassesResponse.from_raw_data({"ODEResults": { - "Status": "Success", - "FeatureTypes": {"FeatureType": "Crater"}, - }}) + r = ODEFeatureClassesResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "FeatureTypes": {"FeatureType": "Crater"}, + } + } + ) assert r.feature_classes == ["Crater"] def test_feature_names(self): - r = ODEFeatureNamesResponse.from_raw_data({"ODEResults": { - "Status": "Success", - "FeatureNames": {"FeatureName": ["Gale", "Jezero"]}, - }}) + r = ODEFeatureNamesResponse.from_raw_data( + { + "ODEResults": { + "Status": "Success", + "FeatureNames": {"FeatureName": ["Gale", "Jezero"]}, + } + } + ) assert "Gale" in r.feature_names @@ -521,6 +681,7 @@ async def test_no_init_raises(self): # ║ IMG TESTS ║ # ╚══════════════════════════════════════════════════════════════╝ + class TestIMGFilters: def setup_method(self): self.c = IMGAtlasClient() @@ -554,12 +715,18 @@ def test_multiple(self): class TestIMGResponses: def test_search_success(self): - r = IMGSearchResponse.from_raw_data({ - "responseHeader": {"status": 0, "QTime": 5}, - "response": {"numFound": 100, "start": 0, "docs": [ - {"uuid": "abc", "PRODUCT_ID": "IMG_001", "TARGET": "MARS"}, - ]}, - }) + r = IMGSearchResponse.from_raw_data( + { + "responseHeader": {"status": 0, "QTime": 5}, + "response": { + "numFound": 100, + "start": 0, + "docs": [ + {"uuid": "abc", "PRODUCT_ID": "IMG_001", "TARGET": "MARS"}, + ], + }, + } + ) assert r.status == "success" assert r.num_found == 100 assert len(r.products) == 1 @@ -569,40 +736,52 @@ def test_search_error(self): assert r.status == "error" def test_search_solr_error_status(self): - r = IMGSearchResponse.from_raw_data( - {"responseHeader": {"status": 400}, "response": {}}) + r = IMGSearchResponse.from_raw_data({"responseHeader": {"status": 400}, "response": {}}) assert r.status == "error" def test_count_success(self): - r = IMGCountResponse.from_raw_data({ - "responseHeader": {"status": 0}, - "response": {"numFound": 5000}, - }) + r = IMGCountResponse.from_raw_data( + { + "responseHeader": {"status": 0}, + "response": {"numFound": 5000}, + } + ) assert r.count == 5000 def test_facet_success(self): - r = IMGFacetResponse.from_raw_data({ - "responseHeader": {"status": 0}, - "facet_counts": {"facet_fields": { - "TARGET": ["MARS", 50000, "SATURN", 30000], - }}, - }, "TARGET") + r = IMGFacetResponse.from_raw_data( + { + "responseHeader": {"status": 0}, + "facet_counts": { + "facet_fields": { + "TARGET": ["MARS", 50000, "SATURN", 30000], + } + }, + }, + "TARGET", + ) assert len(r.values) == 2 assert r.values[0].value == "MARS" assert r.values[0].count == 50000 def test_facet_zero_filtered(self): - r = IMGFacetResponse.from_raw_data({ - "responseHeader": {"status": 0}, - "facet_counts": {"facet_fields": {"TARGET": ["MARS", 100, "EMPTY", 0]}}, - }, "TARGET") + r = IMGFacetResponse.from_raw_data( + { + "responseHeader": {"status": 0}, + "facet_counts": {"facet_fields": {"TARGET": ["MARS", 100, "EMPTY", 0]}}, + }, + "TARGET", + ) assert len(r.values) == 1 def test_facet_empty(self): - r = IMGFacetResponse.from_raw_data({ - "responseHeader": {"status": 0}, - "facet_counts": {"facet_fields": {"TARGET": []}}, - }, "TARGET") + r = IMGFacetResponse.from_raw_data( + { + "responseHeader": {"status": 0}, + "facet_counts": {"facet_fields": {"TARGET": []}}, + }, + "TARGET", + ) assert r.values == [] @pytest.mark.asyncio @@ -621,18 +800,26 @@ async def test_client_context_manager(self): class TestIMGProduct: def test_solr_array_unwrapping(self): """Solr returns some fields as single-element arrays.""" - p = IMGProduct.from_raw_data({ - "uuid": "abc", "TARGET": ["MARS"], - "PLANET_DAY_NUMBER": [100], "EXPOSURE_DURATION": [0.5], - }) + p = IMGProduct.from_raw_data( + { + "uuid": "abc", + "TARGET": ["MARS"], + "PLANET_DAY_NUMBER": [100], + "EXPOSURE_DURATION": [0.5], + } + ) assert p.target == "MARS" assert p.planet_day_number == 100 assert p.exposure_duration == 0.5 def test_null_string_handling(self): - p = IMGProduct.from_raw_data({ - "uuid": "abc", "TARGET": "null", "PRODUCT_TYPE": "None", - }) + p = IMGProduct.from_raw_data( + { + "uuid": "abc", + "TARGET": "null", + "PRODUCT_TYPE": "None", + } + ) assert p.target is None assert p.product_type is None @@ -641,10 +828,13 @@ def test_null_string_handling(self): # ║ PDS4 TESTS ║ # ╚══════════════════════════════════════════════════════════════╝ + class TestPDS4URNValidation: def test_valid(self): - assert validate_urn("urn:nasa:pds:context:investigation:mission.juno") \ + assert ( + validate_urn("urn:nasa:pds:context:investigation:mission.juno") == "urn:nasa:pds:context:investigation:mission.juno" + ) def test_valid_with_version(self): urn = "urn:nasa:pds:context:target:planet.mars::1.0" @@ -705,8 +895,7 @@ def test_equal_north_south(self): class TestPDS4Client: def test_clean_urn_with_version(self): c = PDS4Client() - assert c._clean_urn("urn:nasa:pds:context:mission.juno::1.0") \ - == "urn:nasa:pds:context:mission.juno" + assert c._clean_urn("urn:nasa:pds:context:mission.juno::1.0") == "urn:nasa:pds:context:mission.juno" def test_clean_urn_no_version(self): urn = "urn:nasa:pds:context:target" @@ -742,11 +931,14 @@ def test_rate_limit_error(self): # ║ SBN TESTS ║ # ╚══════════════════════════════════════════════════════════════╝ + class TestSBNSources: def test_list_format(self): - r = CatchSourcesResponse.from_raw_data([ - {"source": "neat_palomar", "source_name": "NEAT"}, - ]) + r = CatchSourcesResponse.from_raw_data( + [ + {"source": "neat_palomar", "source_name": "NEAT"}, + ] + ) assert r.status == "success" assert len(r.sources) == 1 @@ -773,9 +965,12 @@ def test_error(self): class TestSBNResults: def test_with_data(self): - r = CatchResultsResponse.from_raw_data({ - "count": 1, "data": [{"product_id": "obs1", "source": "neat"}], - }) + r = CatchResultsResponse.from_raw_data( + { + "count": 1, + "data": [{"product_id": "obs1", "source": "neat"}], + } + ) assert r.count == 1 assert len(r.observations) == 1 @@ -790,9 +985,11 @@ def test_missing_data_key(self): class TestSBNStatus: def test_running(self): - r = CatchStatusResponse.from_raw_data({ - "status": [{"source": "neat_palomar", "status": "running"}], - }) + r = CatchStatusResponse.from_raw_data( + { + "status": [{"source": "neat_palomar", "status": "running"}], + } + ) assert len(r.source_status) == 1 @@ -825,6 +1022,7 @@ def test_rate_limit_error(self): # ║ PDS CATALOG TESTS ║ # ╚══════════════════════════════════════════════════════════════╝ + class TestMatchesTerm: def test_match_in_list(self): ds = _make_ds(missions=["Cassini-Huygens"]) @@ -876,14 +1074,28 @@ def test_whitespace(self): class TestCatalogIndex: def setup_method(self): self.ds1 = _make_ds( - id="CASS-1", title="Cassini ISS", node="rings", - missions=["Cassini"], targets=["Saturn"], instruments=["ISS"], - pds_version="PDS3", start_date=date(2004, 1, 1), stop_date=date(2017, 9, 15)) + id="CASS-1", + title="Cassini ISS", + node="rings", + missions=["Cassini"], + targets=["Saturn"], + instruments=["ISS"], + pds_version="PDS3", + start_date=date(2004, 1, 1), + stop_date=date(2017, 9, 15), + ) self.ds2 = _make_ds( - id="JUNO-1", title="Juno JADE", node="ppi", - missions=["Juno"], targets=["Jupiter"], instruments=["JADE"], - pds_version="PDS4", dataset_type="bundle", - start_date=date(2016, 7, 1), stop_date=date(2025, 1, 1)) + id="JUNO-1", + title="Juno JADE", + node="ppi", + missions=["Juno"], + targets=["Jupiter"], + instruments=["JADE"], + pds_version="PDS4", + dataset_type="bundle", + start_date=date(2016, 7, 1), + stop_date=date(2025, 1, 1), + ) self.idx = CatalogIndex([self.ds1, self.ds2]) def test_search_all(self): diff --git a/akd_ext/tools/pds/utils/opus_client.py b/akd_ext/tools/pds/utils/opus_client.py index 6f27f16..ad1d09e 100644 --- a/akd_ext/tools/pds/utils/opus_client.py +++ b/akd_ext/tools/pds/utils/opus_client.py @@ -148,7 +148,7 @@ def _build_search_params( planet: str | None = None, time_min: str | None = None, time_max: str | None = None, - limit: int = 100, + limit: int = 25, startobs: int = 1, order: str = "time1,opusid", ) -> dict[str, Any]: @@ -187,7 +187,7 @@ async def search_observations( planet: str | None = None, time_min: str | None = None, time_max: str | None = None, - limit: int = 100, + limit: int = 25, startobs: int = 1, order: str = "time1,opusid", ) -> OPUSSearchResponse: diff --git a/akd_ext/tools/pds/utils/pds4_client.py b/akd_ext/tools/pds/utils/pds4_client.py index a68b727..6831347 100644 --- a/akd_ext/tools/pds/utils/pds4_client.py +++ b/akd_ext/tools/pds/utils/pds4_client.py @@ -97,7 +97,7 @@ class PDS4Client: BASE_URL = "https://pds.mcp.nasa.gov/api/search/1/" DEFAULT_TIMEOUT = 30.0 DEFAULT_PAGE_SIZE = 25 - MAX_PAGE_SIZE = 1000 + MAX_PAGE_SIZE = 100 def __init__( self, diff --git a/akd_ext/tools/pds/utils/pds_catalog_client.py b/akd_ext/tools/pds/utils/pds_catalog_client.py index 1ecec86..bd72c97 100644 --- a/akd_ext/tools/pds/utils/pds_catalog_client.py +++ b/akd_ext/tools/pds/utils/pds_catalog_client.py @@ -321,9 +321,10 @@ def search( def _normalize_id(raw_id: str) -> str: """Normalize a dataset ID by stripping set/tuple notation artifacts.""" import re + cleaned = raw_id.strip() - cleaned = re.sub(r'^[\(\{\["\s]+', '', cleaned) - cleaned = re.sub(r'[,\)\}\]"\s]+$', '', cleaned) + cleaned = re.sub(r'^[\(\{\["\s]+', "", cleaned) + cleaned = re.sub(r'[,\)\}\]"\s]+$', "", cleaned) return cleaned def get_dataset_by_id(self, dataset_id: str) -> PDSDataset | None: